/* mobile header css starts */
.mobile-header {
  position: relative;
  display: none;
  padding: 1rem !important;
  background: #F9EFEB;
}


.mobile-header .header-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}


.mobile-header .logo img {
  max-height: 100%;
  width: 14rem;
}


.mobile-header .search-icon {
  font-size: 25px;
  color: #333;
  cursor: pointer;
}


.mobile-header .person-icon {
  font-size: 25px;
  color: #333;
}


.mobile-header .hamburger {
  display: block;
  cursor: pointer;
  font-size: 25px;
}

.mobile-header .menu-right {
  display: flex;
  gap: 17px;
}

.mobile-header .menu-wrapper {
  padding: 1.2rem 1.5rem;
}

.mobile-header .menu-wrapper a {
  color: #fff;
  font-size: 14px;
}

.mobile-header .nav-links ul {
  text-align: left;
}

.mobile-header .nav-links ul li {
  margin: 12px 0;
}

.mobile-header .nav-links ul li img {
  margin-right: 10px;
}

.mobile-header li.nav-item.for-employer {
  border: 1px solid #fff;
  text-align: center;
}

.mobile-header .terms-privacy {
  gap: 10px;
}

.mobile-header .terms-privacy li a {
  font-size: 12px !important;
  text-decoration: underline !important;
}


@media (max-width: 991px) {
  .mobile-header {
    display: block;
  }

  .desktop-header {
    display: none;
  }


  .mobile-header .nav-links {
    /* display: none; */
    position: fixed;
    top: 0;
    right: -80px;
    width: 0;
    /* left: 0;
      width: 100vw; */
    height: 100vh;
    background: #03288C;
    text-align: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
    transition: 0.5s;
  }

  .mobile-header .nav-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mobile-header .nav-links ul li {
    margin: 20px 0;
  }

  .mobile-header .nav-links .bold-link {
    font-weight: 600;

  }

  .mobile-header .nav-links div.bold-link {
    text-align: left;
    margin: 12px 0;
  }

  .mobile-header .nav-links ul li a {
    color: #E3EBFF;
    text-decoration: none;
  }

  .mobile-header .nav-links.open {
    /* display: block; */
    right: 0px;
    width: 100%;
  }

  .mobile-header .close-menu {
    position: absolute;
    top: 0;
    right: 20px;
    font-size: 35px;
    cursor: pointer;
    color: #E3EBFF;
    caret-color: transparent;
  }

  .employer-dash .account-details {
    width: 100%;
    height: auto;
    overflow-y: hidden;
  }
  .employer-dash .account-details ul li img{
    margin-right: 1rem;
  }
  .employer-dash .account-details ul li:first-child{
    margin-top: 20px !important;
  }
  .employer-dash .account-details ul li.active{
    background-color: #BAE5F5;
  }
  .employer-dash .aditya-button{
    height: auto;
  }

  .employer-dash .account-details .name img {
    width: 40px;
    height: 40px;
    margin-top: 3px;
    border-radius: 48px;
  }

  .employer-dash .account-details .name {
    text-align: left;
  }

  .employer-dash .account-details .candidate-lists {
    margin: 0;
  }
  .employer-dash .employer-closeside{
    top: 20px;
    right: 25px;
  }
}

/* mobile header css ends */


/* candidates header */
@media (max-width: 991px) {
  .candidates-outer-header.mobile-header .nav-links ul li {
    margin: 12px 0;
  }

  .skilling-sub li {
    list-style-type: disc;
    margin-top: ;
  }

  .skilling-sub li::marker {
    color: #E3EBFF;
  }

  .mobile-header .person-icon img {
    width: 25px;
    height: 25px;
  }
}

/* candidates header */