/*------------------------------------*\
  LAYOUT FOUNDATIONS
\*------------------------------------*/

#bar,
#b-bar {
  height: 72px;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1001;
  transition: background-color 0.2s ease-in;
}

#bar.nb--transparent {
  background-color: transparent;
}

#homepage-main > #bar {
  box-shadow: none;
  position: fixed !important;
}

#bar > #bar-border,
#b-bar > #bar-border {
  background-color: var(--cgrey200);
  height: 1px;
  margin: 0;
}

#b-bar {
  transform: scaleY(0);
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
  transition: transform 0.3s;
  transform-origin: top;
  background-color: #fff;
}

#b-bar.nb--extended {
  transform: scaleY(1);
}

@media screen and (max-width: 810px) {
  #b-bar {
    transform: scaleY(1);
    transition: transform 0s;
  }
}

#bar.nb--dark {
  background-color: var(--cgrey900) !important;
}

#bar.nb--white {
  box-shadow: 0 -2px 10px 0 var(--cgrey200);

  background-color: #fff;
}

.nb-l-page {
  width: 85%;
  margin: auto;
  /* max-width: 1150px; */
}

.nb-l-page-new {
  width: 100%;
  margin: auto;
  max-width: 1150px;
}

#jobViewModal {
  z-index: 9999;
}

#jobViewModal .nb-l-page {
  width: 100%;
}

.nb-l-page.nb-l-padding {
  padding-top: 91px;
}

.nb-l-page-new.nb-l-padding-new {
  padding-top: 81px;
}

/* becomepremium surendra */
.card.pricing-card {
  /* border-color: var(--cgrey100); */
  padding: var(--s3);
  background: #ffffff;
  border: 1px solid var(--cgrey100);
  -webkit-border-radius: var(--s-1);
  -moz-border-radius: var(--s-1);
  border-radius: var(--s-1);
  transition: 0.5s all;
  margin-top: var(--s3);
}
.card.pricing-card p.pricing-plan-title {
  color: var(--primary700);
  text-transform: uppercase;
  font-size: var(--t2);
  line-height: var(--lh1);
  text-align: center;
  font-weight: 600;
  letter-spacing: var(--ls2);
  clear: both;
}
.card.pricing-card h3.pricing-plan-cost {
  color: var(--cgrey700);
  font-style: normal;
  text-transform: capitalize;
  margin: var(--s1) auto;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  text-align: center;
  font-size: var(--t5);
  border-bottom: 2px solid #eff4fa;
  padding-bottom: var(--s1);
  margin-bottom: var(--s1);
}
.card.pricing-card .card-body .icon {
  display: block;
  float: left;
  height: 100px;
  margin: 0 0 10px;
  position: relative;
  width: 100%;
  text-align: center;
}
.card.pricing-card .card-body .icon i.pricing-plan-icon {
  font-size: var(--t6);
  bottom: 0;
  left: 0;
  line-height: 98px;
  margin: 0;
  position: absolute;
  right: 0;
  top: 0;
  vertical-align: middle;
  z-index: 99;
}
.card.pricing-card .card-body .icon::after {
  border: 1px solid;
  bottom: 0;
  content: '';
  height: 70px;
  width: 70px;
  left: 0;
  margin: 15px auto;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transition: 0.5s all;
}
.card.pricing-card .card-body ul.pricing-plan-features li {
  list-style: none;
  margin: 0;
  padding: var(--s-1) 0;
  text-align: left;
  font-size: var(--t1);
}
.card.pricing-card .card-body ul.pricing-plan-features li span {
  float: right;
  color: var(--primary700);
}
.card.pricing-card .card-body ul.pricing-plan-features {
  margin-bottom: 30px;
}
.pricing-plan-purchase-btn {
  border-radius: var(--s3);
  padding: var(--s-2) var(--s1);
  width: 120px;
}
.card.pricing-card:hover {
  border-color: var(--primary700);
  /* background-color: #f3f5f7; */
  box-shadow: var(--sh3a);
  -moz-box-shadow: var(--sh3a);
  -webkit-box-shadow: var(--sh3a);
  border-width: 1px;
}
.card.pricing-card:hover .icon::after {
  border-color: #0366d6;
  background-color: #0366d6;
  border-radius: var(--s-3);
}
.card.pricing-card:hover i.pricing-plan-icon {
  color: #fff;
}
/* end becomepremium surendra */

@media screen and (max-width: 810px) {
  #bar {
    position: relative;
    height: auto;
    min-height: 53px;
  }

  /* If the bar child doesn't have the page layout, add margins */
  #bar > :not(.nb-l-page) {
    padding: 0 3%;
  }
  .nb-2-barSecound {
    height: auto !important;
  }
  .search_Text {
    padding-top: 10px;
  }

  .nb-l-page.nb-l-padding {
    padding-top: 0px;
  }

  #container.nb-l-split {
    display: block;
  }
}

/*------------------------------------*\
  GRID CONTAINER
\*------------------------------------*/

#grid-container {
  display: grid;
  grid-template-columns: 3fr 5fr 2fr;
  grid-template-areas: 'side1 content side2';
  grid-gap: var(--s2);
}

@media (max-width: 1000px) {
  #grid-container {
    grid-template-columns: 3fr 5fr;
    grid-template-areas: 'side1 content';
  }
}

@media (max-width: 810px) {
  #grid-container {
    grid-template-columns: auto;
    grid-template-areas: 'content' 'side1' 'side2';
  }
}
/*------------------------------------*\
FOOTER
\*------------------------------------*/

#homepage-main {
  min-height: 0;
}

#homepage-main ~ #footer {
  margin-top: 0;
}

#homepage-main ~ #footer .nb-footer-main {
  border-top: none;
}

#footer {
  margin-top: 0;
}

/*------------------------------------*\
SIDE PANEL & CENTRAL
\*------------------------------------*/

#side-panel {
  min-height: 100vh;
  width: 30%;
  max-width: 450px;
  padding: 91px 2em 4rem;
  box-sizing: border-box;

  background-color: var(--primary700);

  color: #fff;

  transition: background-color 0.2s ease-in, color 0.2s ease-in;
}

#side-panel.nb--dark {
  background-color: #000;

  color: var(--cgrey600);
}

#central-container {
  min-height: 100vh;
  padding: 91px 2em 4rem;
  flex: 1;
  box-sizing: border-box;

  background: var(--cgrey100);

  transition: background-color 0.2s ease-in;
}

#central-container.nb--dark {
  background-color: #000;
}

#central {
  max-width: 900px;
  margin: auto;
  padding-top: 1.7em;
}

@media screen and (max-width: 810px) {
  #side-panel,
  #central-container {
    width: 100%;
    max-width: inherit;
    min-height: inherit;
    padding-top: 22px;
  }
}

/*------------------------------------*\
HOMEPAGE
\*------------------------------------*/

/* Employee new css */
.employee_panel {
  /* background-image: linear-gradient(#ffffff54, #c1c1c1ba), url(../images/employee-backgroud.jpg) !important; */
  background: none !important;
}
.employee_panel .image-outer {
  position: absolute;
  right: 0;
  top: 0;
  width: 45%;
}
.employee_panel .image-outer .image {
  position: relative;
  margin-left: var(--n6);
}
.employee_panel .image-outer .image img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.employee_social_media {
  position: fixed;
  left: var(--s-1);
  bottom: var(--s6);
  width: 50px;
  height: 120px;
}
.employee_social_media::before {
  position: absolute;
  width: 1px;
  height: 40px;
  background-color: var(--primary700);
  left: var(--s1);
  content: '';
  top: var(--n3);
}
.employee_social_media::after {
  position: absolute;
  width: 1px;
  height: 40px;
  background-color: var(--primary700);
  left: var(--s1);
  content: '';
  top: var(--s7);
}
.employee_social_media a {
  display: block;
  margin-top: var(--s2);
}
.employee_social_media a i {
  font-size: var(--t5);
}
.default_div {
  font-size: var(--t3);
  color: var(--primary700);
}
.default_div .img-responsive {
  max-width: 300px;
  margin: var(--s-1) auto;
  opacity: 0.5;
}

/* End Employee new css */

#homepage {
  min-height: 100vh;
  background-image: linear-gradient(#ffffff54, #ffffff54),
    url(../images/homepage-background.jpg);
  background-position: center right;
  background-size: cover;
}

@media screen and (max-width: 810px) {
  #homepage {
    min-height: calc(100vh - 53px);
  }
  .employee_panel .image-outer {
    display: none;
  }
  .employee_social_media {
    position: absolute;
    width: 100%;
    text-align: center;
    left: inherit;
    height: auto;
    overflow: hidden;
    bottom: 10%;
  }
  .employee_social_media a {
    display: inline-block;
    margin: 0px 6px;
  }
}

/*------------------------------------*\
 CONTAINER -> SIDEBAR / CONTENT
\*------------------------------------*/

#container {
  display: flex;
}

#container.onboarding::before {
  content: '';
  height: calc(100vh + var(--s4));
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url('../images/ru-background.webp');
  background-size: cover;
  z-index: -1;
}

@media (max-width: 810px) {
  #container {
    flex-flow: column;
  }
}

#sidebar {
  width: 23.5%;
  display: flex;
  flex-flow: column;
}

@media (min-width: 810px) {
  #sidebar.sticky {
    align-self: start;
    position: sticky;
    top: calc(54px + var(--s3));
  }
}

#content {
  width: 75%;
}

#content.nb--single {
  --max-width: 768px;
  /* --width: 75%; */
  width: clamp(0px, var(--width), var(--max-width));
  margin: auto;
}

#content + #sidebar,
#sidebar + #content {
  margin-left: 2%;
}

@media screen and (max-width: 810px) {
  #content + #sidebar,
  #sidebar + #content {
    margin-left: 0;
  }

  #sidebar {
    order: -1;
  }
}

.clendar-setting-css .fc-header-toolbar.fc-toolbar {
  padding: 15px 10px;
  background-color: #f3f5f7;
  margin: 0px !important;
}
.fc-col-header-cell {
  padding: 10px !important;
}
.margin-custome {
  margin: 18px 18px 6px !important;
  max-width: 85%;
}
.table-header thead th {
  font-size: 18px;
  font-weight: 500;
  color: #313131;
}
.table-header tbody td {
  color: #333;
  font-size: 14px;
}
.card.bg-white {
  border-radius: 4px;
}
.bg-white.padding-set {
  border-radius: 4px;
}
.card-header.Active-Offers h1 {
  margin: 0px;
  padding: var(--s-0) var(--s-0) var(--s3);
  font-size: var(--t4);
}
.img_card_event a {
  position: relative;
  height: 100%;
  width: 100%;
  display: block;
}
.img_card_event a img {
  height: 200px;
  width: 100%;
  object-fit: cover;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.gt-content {
  background: #ffffff;
  position: relative;
  z-index: 2;
  padding: var(--s2) var(--s1);
  overflow: hidden;
  border: 1px solid #eaeaea;
  border-top: 0;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.footer_create_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--cgrey500);
  margin-top: var(--s1);
  padding-top: var(--s-2);
}

#sidebar.nb-l-flipped {
  float: right;
  padding-left: 3%;
  padding-right: 0;
}
.radius-bottom {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.radius-top {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
@media screen and (max-width: 810px) {
  #sidebar {
    width: 100%;
    /* margin-bottom: var(--s1); */
    padding-right: 0;
  }

  #content {
    min-height: inherit;
    padding: 0 !important;
    width: 100% !important;

    box-shadow: none;
  }

  #content.nb-l-border:before {
    display: none;
  }
  .clendar-setting-css .fc-header-toolbar.fc-toolbar {
    display: block;
    text-align: center;
  }
}

/*------------------------------------*\
CAMPUS
\*------------------------------------*/

#campus {
  display: grid;
  grid-template-columns: 30% 50% 20%;
  grid-column-gap: var(--s1) !important;
}

#campus-nav-button {
  display: none;
}

#campus-nav {
  margin-top: var(--s1);
  max-width: 100vw;
}

@media (min-width: 810px) {
  #campus {
    margin-top: 70px;
  }
}

#group-timeline-container {
  position: relative;
}

.group-content {
  margin-top: var(--s1);
  display: grid;
  /* grid-template-rows: auto auto;
  grid-template-columns: 2fr 1fr;
  grid-template-areas:
    'tl-top side'
    'tl-bottom side'; */
  gap: var(--s1);
  position: relative;
}

.group-content_company {
  margin-top: var(--s1);
  display: grid;
  grid-template-rows: auto auto;
  /* grid-template-columns: 2fr 1.2fr;
    grid-template-areas:
      'tl-top side'
      'tl-bottom side'; */
  gap: var(--s1);
  position: relative;
}

#home {
  opacity: 1;
}

@media (max-width: 810px) {
  .group-content {
    display: flex;
    flex-flow: column;
  }
}

@media (min-width: 1000px) {
  #campus-nav {
    position: sticky;
    top: 70px;
    /* max-height: 100vh; */
  }
}

@media (max-width: 1000px) {
  #campus {
    grid-template-columns: 100%;
  }

  #campus-nav-button {
    display: flex;
    position: sticky;
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 2;
    padding: var(--s-1) var(--s1);
    box-shadow: var(--sh2);
  }

  @media (min-width: 800px) {
    #campus-nav-button {
      top: calc(53px + var(--s-1));
    }
  }

  @media (min-width: 810px) {
    #campus-nav-button {
      top: calc(72px + var(--s-1));
    }
  }

  #campus-nav-container {
    visibility: hidden;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 5;
    background-color: transparent;
    transition: background-color 0.3s;
    top: 0;
  }

  #campus-nav-container.nb--visible {
    visibility: visible;
    background-color: rgba(0, 0, 0, 0.3);
  }

  #campus-nav {
    visibility: hidden;
    position: fixed;
    height: calc(100vh - var(--bar-height));
    min-width: 250px;
    margin-top: var(--bar-height);
    left: 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    background: #fff;
    box-shadow: var(--sh4);
    padding: 0;
  }

  @media (max-width: 1000px) {
    #campus-nav {
      --bar-height: 56px;
    }
  }

  #campus-nav-container.nb--visible > #campus-nav {
    visibility: visible;
    transform: translateX(0);
  }
}

#add-group-content {
  position: fixed;
  bottom: 0;
}

#group-side {
  grid-area: side;
  overflow: hidden;
  visibility: hidden;
}

#group-side.nb--loaded {
  /* height: auto; */
  visibility: visible;
  overflow: visible;
}

#company-side {
  grid-area: side;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

#company-side.nb--loaded {
  height: auto;
  visibility: visible;
  overflow: visible;
}

/*------------------------------------*\
TOOLBAR
\*------------------------------------*/

#toolbar {
  position: fixed;
  box-sizing: border-box;
  height: 53px;
  /* Page width * % content width */
  width: 67.7%;
  /* Page max-width * % content width */
  max-width: 756px;
  bottom: 0;

  border-top: 1px solid var(--cgrey300);

  background-color: #fff;
}

@media screen and (max-width: 810px) {
  #toolbar {
    width: 94%;
    max-width: none;
  }
}

/*------------------------------------*\
PROFILE
\*------------------------------------*/

#cover {
  height: clamp(0px, 27vw, 338px);
  margin: 72px auto 0;
  position: relative;
  background-size: cover;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

#jobViewModal #cover {
  margin: auto;
  border-radius: 5px;
  max-width: 1150px;
}

#card {
  position: relative;
  margin-right: 2%;
  margin-left: 2%;
  box-shadow: var(--sh2);
  background-color: #fff;
  margin-top: -30px;
  padding: var(--s2);
  border-radius: 5px;
  align-self: flex-start;
  width: 30%;
  flex-shrink: 0;
}
.nb_hosted_event {
  display: flex;
  gap: 15px;
  align-items: center;
  margin: var(--s1) 0px;
}
.event_details_ h2 {
  color: var(--cgrey-800, #1d2939);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
}
a.visit_profile {
  border-radius: 8px;
  border: 1px solid var(--primary-50, #f5d5d1);
  background: var(--primary-50, #f5d5d1);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  padding: 8px 14px;
  color: var(--primary-700, #a22316);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
.event-detail-view-who p {
  color: var(--cgrey-700, #344054);
  font-size: var(--s1);
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
#profile-picture {
  height: 60px;
  width: 60px;
  border: 2px solid var(--cgrey200);
  box-sizing: border-box;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.event-hosted_person h4 {
  color: var(--gray-600, #475467);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  margin: 0px;
}
h3.event_detail_h3 {
  color: var(--cgrey-700, #344054);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
}
#profile-picture > form {
  position: absolute;
  white-space: nowrap;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 180%);
}

#profile-picture > form > .awesome-cropper {
  margin-bottom: 0;
}

#timeline {
  display: flex;
  position: relative;
  margin-top: -30px;
  border-radius: 3px;
  margin-right: 2%;
  flex-grow: 2;
  flex-flow: column;
  width: 64%;
}

#timeline-bar {
  height: 53px;
  box-sizing: border-box;

  background: #fff;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  box-shadow: var(--sh2);
  width: 100%;
  overflow: auto;
}

#timeline-bar.no-bio {
  margin-bottom: var(--s2);
  border-radius: 5px;
}
.font_40 {
  font-size: 40px !important;
}
@media screen and (min-width: 811px) {
  #timeline-bar.nb-l--fixed {
    top: 53px;
    position: fixed;
    /* % width of page * % width of timeline*/
    width: 65.8%;
    /* max-width of page * % width of timeline*/
    max-width: 735px;
  }

  #timeline-bar.nb-l--fixed + * {
    margin-top: 53px;
  }
}

@media screen and (max-width: 810px) {
  .mbt-3 {
    margin-top: 2rem !important;
  }
  .font_40 {
    font-size: 32px !important;
  }
  .connect_with {
    background-color: #fff;
    padding: var(--s3) 0px var(--s3) !important;
  }
  #cover {
    height: 238px;
    width: 100%;
    margin-top: 0;
  }

  #card {
    position: relative;
    width: 100%;
    margin-right: 0;
    margin-bottom: var(--s1);
    margin-top: var(--n2);
    margin-left: 0;
  }

  #profile-picture {
    height: 60px;
    width: 60px;
    border-width: 3px;
    border-color: #fff;
  }

  #timeline {
    width: 100%;
    padding: 0;
    margin-top: 0;
  }
}

@media screen and (max-width: 550px) {
  #cover {
    height: 161px;
    background-size: cover;
  }
}

/*------------------------------------*\
GRID
\*------------------------------------*/

/* Columns with same width trying to stay side by side */
.nb-l-grid-col {
  display: flex;
  flex-wrap: wrap;
}

.nb-l-grid-col > * {
  flex: 1 0 auto;
}

.nb-l-grid-col > *:not(:last-child) {
  margin-right: 0.5em;
}

/* Row that will split into colums on obile */
.nb-l-snap-reverse {
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 810px) {
  .nb-l-snap-reverse {
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .nb-l-snap-reverse > * {
    flex: 1;
  }

  .nb-l-snap-reverse > :not(:last-child) {
    margin-right: 3%;
  }
}
/*  ajax loader CSS */

#overlay {
  position: fixed;
  top: 0;
  z-index: 100000;
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(0, 0, 0, 0.6);
}
.cv-spinner {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.spinner {
  width: 40px;
  height: 40px;
  border: 4px var(--cgrey100) solid;
  border-top: 4px var(--primary600) solid;
  border-radius: 50%;
  animation: sp-anime 0.8s infinite linear;
}
@keyframes sp-anime {
  100% {
    transform: rotate(360deg);
  }
}
.is-hide {
  display: none;
}

#cover-spin {
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 9999999;
  display: none;
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

#cover-spin::after {
  content: '';
  display: block;
  position: absolute;
  left: 48%;
  top: 40%;
  width: 40px;
  height: 40px;
  border-style: solid;
  border-color: black;
  border-top-color: transparent;
  border-width: 4px;
  border-radius: 50%;
  -webkit-animation: spin 0.8s linear infinite;
  animation: spin 0.8s linear infinite;
}

#banner_image_insert {
  object-fit: contain;
  object-position: left;
  width: 100%;
}

.find-job {
  background-color: var(--primary700);
  padding: var(--s1) var(--s-2) var(--s2);
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .find-job {
    margin-top: 0px;
  }
}
.contribute-find {
  min-height: 195px;
}
.contribute-find p {
  display: inline-block;
  margin-bottom: 1.5rem;
  line-height: 1.4rem;
}
.find-job h2 {
  color: #fff;
  font-size: 20px;
  line-height: 35px;
}
.justify-content-between {
  justify-content: space-between;
}
.banner-hero {
  max-height: calc(80vh - 100px);
  overflow: hidden;
}
.match_job {
  background-color: var(--cgrey200);
  padding: var(--s4) 0 var(--s5);
}
.title_new {
  font-size: 24px;
  line-height: 35px;
  color: var(--primary700);
  font-weight: 600;
}
.no-gutters {
  padding: 0;
  margin: 0px;
}
.text-content {
  font-size: 16px;
  line-height: 1.4;
  max-width: 700px;
}
.img_right img {
  border-radius: 2px;
}
.connect_with {
  background-color: #fff;
  padding: var(--s4) 0px var(--s5);
}
.get_mentoring {
  padding: var(--s5) 0px var(--s5);
}
.divider {
  display: block;
  width: 50px;
  height: 2px;
  background-color: #666;
  margin: 0 auto 30px;
  border-radius: 5px;
}
.mt-28 {
  margin-top: 28%;
}
section.chat_with {
  background-color: #e9eef4;
}
.mx-auto {
  margin-right: auto !important;
}
.img_fixe_height {
  margin-bottom: 2rem;
}
.img_fixe_height img.img-responsive {
  height: 207px;
  object-fit: cover;
}
@media screen and (max-width: 810px) {
  .img_fixe_height img.img-responsive {
    height: auto;
  }
}
/*Event*/
.card.event_details_card {
  position: relative;
  box-shadow: var(--sh2);
  background-color: #fff;
  /*    margin-top: -30px;*/
  padding: var(--s2);
  border-radius: 8px;
  align-self: flex-start;
  flex-shrink: 0;
}
.event_details_card .card-title {
  color: var(--cgrey-900, #101828);
  font-size: 30px;
  margin-bottom: var(--s-2);
  font-weight: 600;
  line-height: 38px;
}
.event-date-time span:first-child {
  color: var(--cgrey-800, #1d2939);
  padding-right: var(--s-2);
  font-size: var(--s1);
}
.event-date-time span i {
  color: #d9d9d9;
  font-size: 9px;
  padding-right: var(--s-3);
}
.event-date-time {
  margin-bottom: var(--s2);
}
.other-event-deails li {
  margin: var(--s-2) 0px;
  color: var(--gray-800, #1d2939);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}
.other-event-deails li label {
  font-size: var(--t1);
  color: var(--gray-600, #475467);
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
}
.card-footer {
  clear: both;

  padding-top: var(--s2);
  margin-top: var(--s-1);
}
a.company_event_link {
  font-size: var(--t2);
  font-weight: 600;
  margin: 10px auto;
  display: block;
  color: var(--gray-800, #1d2939);
}
.other-event-deails {
  border-radius: 8px;
  background: var(--gray-50, #f9fafb);
  padding: var(--s-1);
  margin-top: var(--s-1);
}
.event_details_card .card-title h2 {
  color: var(--cgrey-700, #344054);
  font-size: var(--t5);
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
}
.nb_event_details_card h3 {
  color: var(--cgrey-700, #344054);
  font-size: var(--t3);
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
}
.card-body.about_event.nb-job-long-description {
  color: var(--cgrey-600, #475467);
  font-size: var(--t2);
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  margin-top: var(--s2);
  overflow-wrap: break-word;
}
.new_event_set_top {
  margin-top: 24px !important;
  border-radius: 8px;
  background: var(--base-white, #fff);
  padding: 20px 24px;
}
.ln-1 {
  line-height: 1.4;
}

@media only screen and (max-width: 767px) {
}
