.text-gray {
  color: #A3A6AC;
}

.view-all {
  font-family: "Samsung Sharp Sans";
  font-weight: 700;
  font-size: 17px;
  line-height: 21px;
  color: #2196F3;
  display: block;
  width: max-content;
  margin: 0 auto;
  transition: 0.2s linear;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}
.view-all:hover {
  border-color: #2196F3;
}

.section-title {
  font-weight: 700;
  font-size: 17px;
  line-height: 21px;
  text-transform: uppercase;
  color: #2196F3;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  width: 100%;
}
.section-title:before {
  content: "";
  width: 3px;
  height: 24px;
  background-color: #2196F3;
  display: block;
  margin-right: 16px;
  border-radius: 10px;
}

.header-link {
  padding: 20px 0;
  background-color: #2196F3;
  font-family: "Inter" !important;
}
.header-link ul {
  display: flex;
  object-fit: cover;
}
.header-link ul li {
  display: flex;
}
.header-link ul li:after {
  content: "";
  display: block;
  margin: 0 16px;
  width: 1px;
  height: 100%;
  background-color: white;
}
.header-link ul li:last-child:after {
  display: none;
}
.header-link ul li a {
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  color: white;
}
.header-link ul li a.active {
  font-weight: 700;
  font-size: 18px;
}
@media (max-width: 767px) {
  .header-link {
    padding: 24px 0;
  }
  .header-link ul {
    justify-content: center;
  }
  .header-link ul li:after {
    margin: 0 24px;
  }
  .header-link ul li a {
    font-size: 16px;
    line-height: 20px;
  }
}

.breadcrumbs-block {
  margin: 24px 0;
  font-family: "Inter";
}
.breadcrumbs-block .breadcrumbs {
  display: flex;
  align-items: baseline;
}
.breadcrumbs-block .breadcrumbs li {
  display: flex;
}
.breadcrumbs-block .breadcrumbs li:after {
  content: "/";
  display: block;
  margin: 0 5px;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #A3A6AC;
}
.breadcrumbs-block .breadcrumbs li:last-child:after {
  display: none;
}
.breadcrumbs-block .breadcrumbs li a {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #A3A6AC;
}
@media (max-width: 767px) {
  .breadcrumbs-block .breadcrumbs {
    overflow-x: auto;
    padding-bottom: 10px;
  }
  .breadcrumbs-block .breadcrumbs li:nth-child(2) a span {
    display: none;
  }
  .breadcrumbs-block .breadcrumbs li:after {
    line-height: 15px;
  }
  .breadcrumbs-block .breadcrumbs li a {
    white-space: nowrap;
    line-height: 15px;
  }
}

.profile__bar {
  background-color: #212944;
  padding: 24px;
  display: flex;
  flex-direction: column;
  width: 290px;
  height: 100vh;
  position: fixed;
  left: 0;
  transition: 0.2s linear;
  overflow-y: auto;
  z-index: 50;
}
.profile__bar::-webkit-scrollbar {
  width: 5px;
  height: 8px;
}
.profile__bar::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px #f4f6f9;
  border-radius: 2.5px;
}
.profile__bar::-webkit-scrollbar-thumb {
  background-color: #2196F3;
  outline: none;
  border-radius: 2.5px;
}
.profile__bar__links {
  margin-bottom: 24px;
}
.profile__bar__links li {
  margin-bottom: 12px;
}
.profile__bar__links li:last-child {
  margin-bottom: 0;
}
.profile__bar__links li a {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  border-radius: 8px;
}
.profile__bar__links li a:hover, .profile__bar__links li a.active {
  background-color: #2C375A;
  color: white;
}
.profile__bar__links li a:hover span, .profile__bar__links li a.active span {
  border-color: white;
}
.profile__bar__links li a:hover span img, .profile__bar__links li a.active span img {
  filter: unset;
}
.profile__bar__links li a span {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 6px;
  width: 24px;
  height: 24px;
  margin-right: 24px;
}
.profile__bar__links li a span img {
  filter: brightness(0) saturate(100%) invert(79%) sepia(0%) saturate(3312%) hue-rotate(332deg) brightness(91%) contrast(109%);
}
.profile__bar__btns .profile__header__dark {
  display: none;
}
.profile__bar__btns .btn {
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
  color: white;
  padding: 10.5px;
  border-radius: 8px;
  background: #2196F3;
  border: 1px solid transparent;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.profile__bar__btns .btn.btn-transparent {
  border: 1px solid white;
  background-color: transparent;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .profile__bar {
    width: 250px;
  }
  .profile__bar__links li a {
    font-size: 14px;
    padding: 10px 16px;
  }
  .profile__bar__links li a span {
    width: 20px;
    height: 20px;
    margin-right: 16px;
  }
}
@media (max-width: 767px) {
  .profile__bar {
    left: -100%;
    top: 62px;
    height: calc(100vh - 62px);
    padding: 32px 16px 16px;
  }
  .profile__bar__links li a {
    font-size: 16px;
    padding: 12px 24px;
  }
  .profile__bar__links li a span {
    width: 24px;
    height: 24px;
    margin-right: 24px;
  }
  .profile__bar__btns .profile__header__dark {
    display: flex;
    background: #2C375A;
    border-radius: 8px;
    width: 48px;
    height: 48px;
    min-width: 48px;
    border: 0;
    margin-right: 0;
  }
  .profile__bar__btns .profile__header__dark img {
    width: 18px;
    height: 18px;
  }
  .profile__bar__btns .btn-transparent {
    margin-right: 16px;
  }
}

.popup {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1003;
  font-family: "Inter";
  opacity: 0;
  visibility: hidden;
  transition: 0.3s linear;
}
.popup.dont-close .popup__blur {
  pointer-events: none;
}
.popup.dont-close .popup__close {
  display: none;
}
.popup.open {
  opacity: 1;
  visibility: visible;
}
.popup__blur {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(7, 7, 7, 0.28);
}
.popup__close {
  position: absolute;
  right: 16px;
  top: 16px;
  border-radius: 8.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  border: 0;
}
.popup__body {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #FFFFFF;
  padding: 70px;
  display: flex;
  flex-direction: column;
  max-width: 920px;
  min-width: 700px;
  box-shadow: 0px 20px 24px -4px rgba(16, 24, 40, 0.1), 0px 8px 8px -4px rgba(16, 24, 40, 0.04);
  border-radius: 12px;
}
.popup--login .popup__close {
  position: absolute;
}
.popup--login .popup__body {
  min-width: 400px;
  width: 400px;
  padding: 24px;
}
.popup--login .popup__head {
  text-align: center;
  margin-bottom: 20px;
}
.popup--login .popup__head__icon {
  margin-bottom: 16px;
}
.popup--login .popup__head__icon.report {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #E4E7EC;
  box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
  border-radius: 10px;
}
.popup--login .popup__head__text {
  font-size: 13px;
  line-height: 20px;
  color: #475467;
  font-weight: 500;
}
.popup--login .popup__head__text h3 {
  font-size: 17px;
  line-height: 28px;
  color: #101828;
  margin-bottom: 4px;
}
.popup--login .popup__form .form-group {
  margin-bottom: 16px;
}
.popup--login .popup__form .form-group label {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #344054;
  margin-bottom: 6px;
  display: block;
}
.popup--login .popup__form .form-group .form-control {
  border: 1px solid #D0D5DD;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
  border-radius: 8px;
  padding: 9px 14px;
  font-size: 16px;
  line-height: 24px;
  color: #101828;
  height: auto;
}
.popup--login .popup__form .form-group .form-control.error {
  border-color: #FFA6A6;
}
.popup--login .popup__form .form-group .form-control.error:focus {
  border-color: #FFA6A6 !important;
}
.popup--login .popup__form .form-group .form-control:disabled {
  background: #F4F6F9;
}
.popup--login .popup__form__otp {
  display: flex;
}
.popup--login .popup__form__otp.error input {
  border-color: #F44C4C;
  color: #F44C4C;
}
.popup--login .popup__form__otp.error input:focus {
  border-color: #F44C4C !important;
}
.popup--login .popup__form__otp input {
  font-weight: 500;
  font-size: 48px;
  line-height: 60px;
  text-align: center;
  letter-spacing: -0.02em;
  color: #2196F3;
  width: 80px;
  height: 80px;
  border: 2px solid #2196F3;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
  margin-right: 12px;
  transition: 0.2s linear;
}
.popup--login .popup__form__otp input:last-child {
  margin-right: 0;
}
.popup--login .popup__form__otp input:focus {
  background-color: #F7F9FF;
}
.popup--login .popup__form__social span {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  margin: 20px 0;
}
.popup--login .popup__form__social span:after, .popup--login .popup__form__social span:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #E4E7EC;
  flex: 1;
}
.popup--login .popup__form__social span:after {
  margin-left: 8px;
}
.popup--login .popup__form__social span:before {
  margin-right: 8px;
}
.popup--login .popup__form__social .btn {
  padding: 10px;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #344054;
  border: 1px solid #D0D5DD;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.popup--login .popup__form__social .btn:last-child {
  margin-top: 12px;
}
.popup--login .popup__form__social .btn img {
  margin-right: 12px;
}
.popup--login .popup__btns {
  display: flex;
  margin-top: 16px;
}
.popup--login .popup__btns .btn {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  background: #2196F3;
  padding: 10px;
  text-align: center;
  border: 1px solid #2196F3;
  box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
  border-radius: 8px;
  color: white;
  width: 100%;
}
.popup--login .popup__btns .btn-transparent {
  color: #344054;
  border-color: #D0D5DD;
  background-color: transparent;
  margin-left: 12px;
}
.popup--login .popup__link {
  font-size: 12px;
  line-height: 20px;
  color: #475467;
  margin: 24px auto 0;
  font-weight: 500;
}
.popup--login .popup__link a {
  text-decoration-line: underline;
  text-underline-offset: 5px;
  color: inherit;
}
.popup--login .popup__error-msg {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #F44C4C;
  text-align: center;
}
.popup--login .popup__list li {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.popup--login .popup__list li:last-child {
  margin-bottom: 0;
}
.popup--login .popup__list li:before {
  content: "";
  display: block;
  background-image: url("/content/assets/images/resume/svg-icons/check.svg");
  width: 24px;
  height: 24px;
  margin-right: 14px;
}
.popup.login .popup__body {
  min-width: 400px;
  max-height: unset;
  width: 400px;
  padding: 24px;
}
.popup.login .popup__head__icon {
  width: 48px;
  height: 48px;
  border: 1px solid #EAECF0;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.popup.login .popup__head__text {
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #475467;
}
.popup.login .popup__head__text h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #101828;
  margin-bottom: 4px;
}
.popup.login .popup__form .form-group {
  margin-bottom: 16px;
}
.popup.login .popup__form .form-group label {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #344054;
  margin-bottom: 6px;
  display: block;
}
.popup.login .popup__form .form-group .form-control {
  border: 1px solid #D0D5DD;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
  border-radius: 8px;
  padding: 9px 14px;
  font-size: 16px;
  line-height: 24px;
  color: #101828;
  height: auto;
}
.popup.login .popup__form .form-group .form-control.error {
  border-color: #FFA6A6;
}
.popup.login .popup__form .form-group .form-control.error:focus {
  border-color: #FFA6A6 !important;
}
.popup.login .popup__form .form-group .form-control:disabled {
  background: #F4F6F9;
}
.popup.login .popup__form .form-group select.form-control {
  background: url("/content/assets/images/login/arrow-bottom.svg") right 20px top 50% no-repeat;
  background-size: 12.5px 6.75px;
  padding-right: 40px;
}
.popup.login .popup__form__social span {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  margin: 12.5px 0;
}
.popup.login .popup__form__social span:after, .popup.login .popup__form__social span:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #E4E7EC;
  flex: 1;
}
.popup.login .popup__form__social span:after {
  margin-left: 8px;
}
.popup.login .popup__form__social span:before {
  margin-right: 8px;
}
.popup.login .popup__form__social .btn {
  padding: 10px;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #344054;
  border: 1px solid #D0D5DD;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.popup.login .popup__form__social .btn:first-child {
  margin-bottom: 12px;
}
.popup.login .popup__form__social .btn img {
  margin-right: 12px;
}
.popup.login .form-group--checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.popup.login .form-group--checkbox input {
  padding: 0;
  width: 16px;
  height: 16px;
  min-width: 16px;
  border: 1px solid #D0D5DD;
  border-radius: 4px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  transition: 0.2s linear;
  cursor: pointer;
}
.popup.login .form-group--checkbox input:focus {
  border-color: #D0D5DD !important;
}
.popup.login .form-group--checkbox input:checked {
  background-image: url("/content/assets/images/login/check.svg");
}
.popup.login .form-group--checkbox label {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #344054;
  margin-left: 8px;
  user-select: none;
  cursor: pointer;
}
.popup.login .popup__tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.popup.login .popup__tools a {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #1f9dff;
}
.popup.login .popup__btns .btn {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  background: #1f9dff;
  padding: 10px;
  text-align: center;
  border: 1px solid #1f9dff;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
  border-radius: 8px;
  color: white;
  width: 100%;
}
.popup.login .popup__btns .btn-transparent {
  color: #344054;
  border-color: #D0D5DD;
  background-color: transparent;
  margin-top: 20px;
}
.popup.login--choose .popup__body {
  min-width: 640px;
  width: 640px;
  padding: 0;
}
.popup.login--choose .popup__head {
  display: flex;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid #E4E7EC;
}
.popup.login--choose .popup__head__icon {
  margin-bottom: 0;
  margin-right: 16px;
}
.popup.login--choose .popup__head__text {
  margin-bottom: 0;
}
.popup.login--choose .popup__form {
  padding: 20px 24px 24px;
}
.popup.login--choose .popup__form .row {
  margin: 0 -10px;
}
.popup.login--choose .popup__form .row > * {
  padding: 0 10px;
}
.popup.login--choose .popup__form .form-group--radio {
  height: calc(100% - 16px);
}
.popup.login--choose .popup__form .form-group--radio input:checked + label {
  border: 2px solid #1f9dff;
}
.popup.login--choose .popup__form .form-group--radio input:checked + label .d-flex span {
  background-color: #1f9dff;
  border-color: #1f9dff;
}
.popup.login--choose .popup__form .form-group--radio input:checked + label .d-flex span img {
  opacity: 1;
  visibility: visible;
}
.popup.login--choose .popup__form .form-group--radio label {
  border: 2px solid #E4E7EC;
  box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
  border-radius: 12px;
  padding: 20px;
  height: 100%;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #101828;
  cursor: pointer;
  transition: 0.2s linear;
}
.popup.login--choose .popup__form .form-group--radio label .d-flex {
  margin-bottom: 10px;
}
.popup.login--choose .popup__form .form-group--radio label .d-flex span {
  border: 1px solid #D0D5DD;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s linear;
}
.popup.login--choose .popup__form .form-group--radio label .d-flex span img {
  opacity: 0;
  visibility: hidden;
}
.popup.login--choose .popup__form .form-group--radio label h2 {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: #101828;
  margin-bottom: 8px;
}
.popup.login--choose .popup__btns .btn {
  width: max-content;
  margin: 0 auto;
  display: block;
  padding: 10px 18px;
}
.popup--company .popup__close img {
  filter: brightness(0) saturate(100%) invert(0%) sepia(4%) saturate(0%) hue-rotate(331deg) brightness(105%) contrast(100%);
}
@media (max-width: 767px) {
  .popup.login .popup__body {
    width: 91%;
    min-width: 91%;
    max-height: 95%;
  }
  .popup.login .popup__close {
    position: absolute;
    margin: 0;
  }
  .popup.login .popup__form__social span {
    margin: 10px 0;
  }
  .popup.login .popup__form__social .btn {
    padding: 8px;
  }
  .popup.login .popup__form__social .btn:first-child {
    margin-bottom: 8px;
  }
  .popup.login .popup__btns .btn-transparent {
    margin-top: 10px;
  }
  .popup__body {
    flex-direction: column;
    width: 91%;
    min-width: auto;
    padding: 14px;
    max-height: 95%;
    overflow-y: auto;
    border-radius: 6px;
  }
  .popup__close {
    position: unset;
    margin-left: auto;
    margin-bottom: 14px;
    width: 30px;
    height: 30px;
  }
  .popup__close img {
    width: 15px;
    height: 15px;
  }
  .popup--login .popup__body {
    width: 91%;
    min-width: auto;
  }
}

.resume {
  font-family: "Inter" !important;
  color: #212944;
}
.resume__block {
  border: 1px solid #e2e9f2;
  border-radius: 8px;
  background-color: white;
  padding: 16px;
  margin-bottom: 32px;
  color: #061e40;
  word-break: break-word;
}
.resume__block p {
  font-size: 15px;
  line-height: 22px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #000;
}
.resume__block ul:not(.resume__skills) {
  padding-left: 16px;
}
.resume__block ul:not(.resume__skills) li {
  list-style: disc;
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 10px;
}
.resume__block ul:not(.resume__skills) li p {
  font-size: inherit;
  margin-bottom: 0;
}
.resume__block--contact {
  position: sticky;
  top: 30px;
  box-shadow: none;
  height: auto;
}
.resume__block--contact .contact__head {
  display: none;
}
.resume__block--contact .contact__top__info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid #e2e9f2;
  margin: 0 -16px;
  padding: 0 16px;
  margin-bottom: 24px;
}
.resume__block--contact .contact__top__info .resume__item__text {
  flex: unset;
}
@media (max-width: 767px) {
  .resume__block--contact .contact__top__info {
    padding: 0;
    margin: 0 0 24px;
  }
}
.resume__block--contact .contact__top, .resume__block--contact .contact__bottom {
  border: 1px solid #e2e9f2;
  border-radius: 8px 8px 0 0;
  padding: 16px;
}
.resume__block--contact .contact__top h4:not(.resume__item__text h4), .resume__block--contact .contact__bottom h4:not(.resume__item__text h4) {
  margin-bottom: 16px;
}
.resume__block--contact .contact__bottom {
  border-top: 0;
  border-radius: 0 0 8px 8px;
}
.resume__block--contact .contact__btn {
  display: flex;
  margin-top: 24px;
}
.resume__block--contact .contact__btn .btn {
  padding: 10px 12px;
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #FF7F00;
  width: 100%;
  border: 1px solid #FF7F00;
  transition: 0.2s linear;
  white-space: nowrap;
}
.resume__block--contact .contact__btn .btn img {
  margin-right: 8px;
  width: 18px;
}
.resume__block--contact .contact__btn .btn.resume__up-btn {
  border-color: #2196F3;
  color: #2196F3;
  margin-left: 32px;
}
.resume__block--contact .resume__item {
  margin-bottom: 24px;
}
.resume__block .apply_cv_inputs .form-group--radio label {
  position: relative;
}
.resume__block .apply_cv_inputs .form-group--radio label:after {
  left: 3px !important;
}
.resume__item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
}
.resume__item__text {
  flex: 1;
}
.resume__item__text h4 {
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 4px;
}
.resume__item__text h4.hidd_num, .resume__item__text h4.hidd_email {
  cursor: pointer;
}
.resume__item__text p {
  font-size: 12px;
  line-height: 15px;
}
.resume__item__text a {
  color: #212944;
  text-decoration: underline;
}
.resume__item__right {
  font-size: 12px;
  line-height: 15px;
  margin-left: 16px;
  text-align: end;
  display: flex;
  flex-direction: column;
}
.resume__item__right span {
  margin-bottom: 8px;
}
.resume__item__right span:last-child {
  margin-bottom: 0;
}
.resume__item__btns {
  display: flex;
}
.resume__item__btns a:last-child {
  margin-right: 0 !important;
}
.resume__item--full {
  border-bottom: 1px solid #F4F6F9;
}
.resume__item--full:last-child {
  border: 0;
  margin-bottom: 0;
}
.resume__item--full:last-child .resume__item__text p {
  margin-bottom: 0;
}
.resume__item--full .resume__item__text p {
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 18px;
}
.resume__item--lang {
  border: 1px solid #F4F6F9;
  border-radius: 8px;
  padding: 8px;
  max-width: 240px;
  margin-bottom: 24px;
}
.resume__item--lang span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-weight: 700;
  font-size: 16px;
  line-height: normal;
  color: white;
  margin-right: 8px;
  background-color: #212944;
  border-radius: 4px;
  text-transform: uppercase;
}
.resume__item__desc--editor table {
  width: 100% !important;
}
.resume__item__desc--editor p {
  font-size: 12px !important;
}
.resume__item__desc--editor ul li {
  font-size: 12px !important;
}
.resume__icon {
  width: 40px;
  height: 40px;
  background: #F4F6F9;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  min-width: 40px;
  position: unset;
}
.resume__icon--download {
  background-color: #2196F3;
}
.resume__icon.hidden_toggle {
  background-image: url("/content/assets/images/resume/svg-icons/lock.svg");
  background-repeat: no-repeat;
  background-position: center;
}
.resume__icon.hidden_toggle.active {
  background-image: url("/content/assets/images/resume/svg-icons/lock-open.svg");
}
.resume__icon.apply_like {
  cursor: pointer;
}
.resume__icon.apply_like .heart_icon {
  background-image: url("/content/assets/images/resume/svg-icons/heart.svg");
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
}
.resume__icon.apply_liked .heart_icon {
  background-image: url("/content/assets/images/resume/svg-icons/heart-blue.svg");
}
.resume__title {
  font-weight: 700;
  font-size: 17px;
  line-height: 21px;
  text-transform: uppercase;
  color: #2196F3;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.resume__title:before {
  content: "";
  width: 3px;
  height: 24px;
  background-color: #2196F3;
  display: block;
  margin-right: 16px;
  border-radius: 10px;
}
.resume__premium {
  padding: 4px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF7F00;
  background: #FEF9E6;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0 6px;
}
.resume__premium p {
  font-weight: 500;
  font-size: 10px;
  line-height: 16px;
  margin-bottom: 0;
}
.resume__premium img {
  margin-right: 8px;
  margin-bottom: 1px;
}
.resume__header {
  display: flex;
  align-items: center;
  position: relative;
}
.resume__header__img {
  border: 5px solid #e2e9f2;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 30px;
}
.resume__header__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.resume__header__img .first-letter {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 48px;
  line-height: 60px;
  color: white;
}
.resume__header__desc {
  flex: 1;
}
.resume__header__name {
  font-weight: 700;
  font-size: 20px;
  line-height: 25px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
}
.resume__header__speciality {
  font-size: 16px !important;
  line-height: 20px !important;
}
.resume__skills {
  display: flex;
  flex-wrap: wrap;
}
.resume__skills li {
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
  margin-bottom: 16px;
  margin-right: 24px;
  padding: 4px 12px;
  background: #F4F6F9;
  border-radius: 8px;
}
.resume__skills li a {
  color: inherit;
}
@media (max-width: 1199px) {
  .resume .row .col-md-4, .resume .row .col-md-8 {
    min-width: 100%;
  }
}
@media (max-width: 767px) {
  .resume__header {
    flex-direction: unset !important;
  }
  .resume__header__img {
    width: 80px !important;
    height: 80px !important;
    margin-right: 10px;
    margin-bottom: 0 !important;
  }
  .resume__header__speciality {
    font-size: 14px !important;
    line-height: 18px !important;
  }
  .resume__block {
    margin-bottom: 24px;
  }
  .resume__block--contact {
    position: fixed;
    top: unset;
    height: auto;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 15;
    margin-bottom: 0;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.05);
    padding: 7px 24px;
    background-color: white;
  }
  .resume__block--contact .contact__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .resume__block--contact .contact__head .contact-btn img {
    transition: 0.2s linear;
    transform: rotate(180deg);
  }
  .resume__block--contact .contact__head .contact-btn.open img {
    transform: unset;
  }
  .resume__block--contact .contact__body {
    display: none;
  }
  .resume__block--contact .contact__top, .resume__block--contact .contact__bottom {
    border: 0;
    padding: 0;
  }
  .resume__block--contact .contact__top h4:not(.resume__item__text h4), .resume__block--contact .contact__bottom h4:not(.resume__item__text h4) {
    display: none;
  }
  .resume__block--contact .contact__top {
    margin-top: 24px;
  }
  .resume__block--contact .contact__bottom {
    border-top: 1px solid #e2e9f2;
    padding-top: 24px;
  }
  .resume__block--contact .contact__btn {
    margin-bottom: 17px;
    width: 100%;
  }
  .resume__block--contact .contact__btn .btn {
    width: 49%;
  }
  .resume__block--contact .contact__btn .btn.resume__up-btn {
    margin-left: 10px;
  }
  .resume .row .col-md-6:last-child .resume__item {
    margin-bottom: 0 !important;
  }
  .resume__item {
    margin-bottom: 16px !important;
  }
  .resume__item__right {
    text-align: start;
    margin-left: 0;
    margin-bottom: 8px;
  }
  .resume__item--full .resume__item__text {
    margin-bottom: 16px;
  }
  .resume__skills li {
    margin-right: 16px;
  }
  .resume .contact-content {
    display: none;
  }
  .resume__premium p {
    font-size: 10px;
  }
}

.similar-resume {
  margin-top: 16px;
  font-family: "Inter" !important;
  padding-bottom: 50px;
}
.similar-resume .resume__block {
  height: calc(100% - 30px);
}
.similar-resume .resume__title {
  font-size: 20px;
  line-height: 25px;
  color: #212944;
  margin-bottom: 24px;
}
.similar-resume .resume__icon {
  position: unset;
}
.similar-resume .resume__icon--like {
  width: 48px;
  height: 48px;
}
.similar-resume .resume__icon--like:before {
  content: "";
  background-image: url("/content/assets/images/resume/svg-icons/heart.svg");
  background-repeat: no-repeat;
  background-position: center;
  width: 24px;
  height: 24px;
  transition: 0.2s linear;
}
.similar-resume .resume__icon--like:hover:before {
  filter: brightness(0) saturate(100%) invert(50%) sepia(79%) saturate(3326%) hue-rotate(187deg) brightness(102%) contrast(91%);
}
.similar-resume .resume__icon--like.active:before {
  background-image: url("/content/assets/images/resume/svg-icons/heart-blue.svg");
}
.similar-resume .resume__premium {
  position: unset;
  border-radius: 6px;
  margin: 0 16px;
}
.similar-resume .resume__header {
  margin-bottom: 24px;
  position: unset;
}
.similar-resume .resume__header__desc {
  margin-right: 30px;
}
.similar-resume .resume__header .d-flex {
  flex: 1;
}
.similar-resume .resume__header__btn {
  padding: 12px 28px;
  background-color: #2196F3;
  border-radius: 8px;
  color: white;
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
  min-width: 160px;
  border: 1px solid transparent;
  text-align: center;
  transition: 0.2s linear;
}
.similar-resume .resume__header__btn:hover {
  border-color: #2196F3;
  background-color: white;
  color: #2196F3;
}
.similar-resume .resume__item {
  margin-right: 24px;
  margin-bottom: 0;
}
.similar-resume .resume__item:last-child {
  margin-right: 0;
}
.similar-resume .resume__item__text {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.similar-resume .resume__item__text h4 {
  font-size: 13px;
}
.similar-resume .resume__item__text p {
  margin-top: auto;
  font-size: 11px;
}
.similar-resume .resume__footer {
  display: flex;
}
@media (max-width: 1199px) {
  .similar-resume .resume__header__img {
    width: 100px;
    height: 100px;
  }
  .similar-resume .resume__header__name {
    font-size: 18px;
  }
  .similar-resume .resume__header__speciality {
    font-size: 14px;
  }
}
@media (max-width: 990px) {
  .similar-resume .resume__header {
    flex-direction: column;
  }
  .similar-resume .resume__header__img {
    margin-bottom: 16px;
  }
  .similar-resume .resume__item {
    margin-bottom: 16px;
  }
  .similar-resume .resume__item:last-child {
    margin-bottom: 0;
  }
  .similar-resume .resume__footer {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .similar-resume {
    position: relative;
    z-index: 15;
    background-color: white;
  }
  .similar-resume .resume__block {
    position: relative;
  }
  .similar-resume .resume__icon--like, .similar-resume .resume__icon.card_like {
    width: 32px;
    height: 32px;
    position: absolute;
    top: 8px !important;
    right: 8px;
    min-width: 32px;
  }
  .similar-resume .resume__icon--like:before, .similar-resume .resume__icon.card_like:before {
    background-size: 15px;
  }
  .similar-resume .resume__premium {
    position: absolute;
    width: 32px;
    height: 32px;
    top: 48px;
    right: 8px;
    min-width: 32px;
    padding: 0;
    margin: 0;
  }
  .similar-resume .resume__premium img {
    margin-right: 0;
    width: 16px;
    height: 16px;
  }
  .similar-resume .resume__premium p {
    display: none;
  }
}

.profile {
  display: flex;
  font-family: "Inter";
}
.profile .add_btn, .profile .delete_added_box1 {
  position: unset;
  font-family: "Inter" !important;
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
  color: black;
  padding: 10.5px 20px;
  background: #F4F6F9;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  transition: 0.2s linear;
  margin: 24px auto 0;
}
.profile .add_btn:hover, .profile .delete_added_box1:hover {
  border-color: #2196F3;
}
.profile .add_btn img, .profile .delete_added_box1 img {
  margin-right: 10px;
}
.profile__content {
  flex: 1;
  flex: 0 0 calc(100% - 290px);
  margin-left: auto;
  width: calc(100% - 370px);
}
.profile__content__body {
  padding: 0 24px;
  margin-bottom: 50px;
}
.profile__logo {
  margin-bottom: 50px;
}
.profile__header {
  padding: 12px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 24px;
  position: sticky;
  top: 0;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 51;
}
.profile__header .profile__logo {
  margin-bottom: 0;
}
.profile__header__tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
}
.profile__header__tools .btn-site {
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #A3A6AC;
  border: 1px solid #F4F6F9;
  border-radius: 8px;
  margin-right: 24px;
  padding: 11px 27px;
  white-space: nowrap;
}
.profile__header__user {
  padding: 12px 16px;
  background-color: #F4F6F9;
  border-radius: 14px;
  position: relative;
  white-space: nowrap;
}
.profile__header__user:hover .profile__header__user__drop {
  opacity: 1;
  visibility: visible;
}
.profile__header__user a {
  color: black;
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
}
.profile__header__user__name {
  display: flex;
  align-items: center;
}
.profile__header__user__name img {
  margin-right: 8px;
  filter: brightness(0) saturate(100%) invert(0%) sepia(4%) saturate(7483%) hue-rotate(151deg) brightness(111%) contrast(106%);
}
.profile__header__user__drop {
  position: absolute;
  background-color: #F4F6F9;
  width: 100%;
  left: 0;
  padding: 12px 6px;
  border-radius: 0 0 14px 14px;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s linear;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.profile__header__user__drop li a {
  padding: 5px 10px;
  border-radius: 8px;
  width: 100%;
  transition: 0.2s linear;
  font-size: 12px;
}
.profile__header__user__drop li a:hover {
  background-color: #2196F3;
  color: white;
}
.profile__header__wishlist {
  margin-right: 24px;
}
.profile__header__wishlist, .profile__header__dark {
  width: 48px;
  height: 48px;
  background: #F4F6F9;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.profile__section__title {
  font-weight: 500;
  font-size: 17px;
  line-height: 21px;
  color: #2196F3;
}
.profile__title {
  font-family: "Inter" !important;
  font-weight: 700;
  font-size: 17px;
  line-height: 21px;
  text-transform: uppercase;
  color: #2196F3;
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.profile__title:before {
  content: "";
  width: 3px;
  height: 24px;
  background-color: #2196F3;
  display: block;
  margin-right: 16px;
  border-radius: 16px;
}
.profile__form .form-group {
  margin-bottom: 26px;
}
.profile__form .form-group .check {
  position: absolute;
  top: 55%;
  transform: translateY(50%);
}
.profile__form .form-group label {
  font-weight: 500;
  font-size: 14px;
  line-height: normal;
  margin-bottom: 8px;
  display: block;
}
.profile__form .form-group select {
  background: url("/content/assets/images/profile/svg-icons/arrow-down.svg") right 20px top 50% no-repeat;
  background-size: 12.5px 6.75px;
  padding-right: 40px;
}
.profile__form .form-group .form-control, .profile__form .form-group .chosen-single {
  border-radius: 8px;
  background-color: #F4F6F9;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  border: 1px solid transparent;
  padding: 14px 12px;
  height: auto;
}
.profile__form .form-group .form-control::placeholder, .profile__form .form-group .chosen-single::placeholder {
  color: rgba(33, 41, 68, 0.5);
  font-family: "Inter" !important;
}
.profile__form .form-group .form-control[type=password]::placeholder, .profile__form .form-group .chosen-single[type=password]::placeholder {
  font-size: 50px;
  color: #212944;
}
.profile__form .form-group .bootstrap-tagsinput {
  margin-bottom: 0;
}
.profile__form .form-group--file .image_input {
  width: 120px;
  height: 120px;
}
.profile__form .form-group--file .image_input img {
  object-fit: contain;
}
.profile__form .form-group--file .image_input .uploaded_image_label p {
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
}
.profile__form .form-group--file .image_input .uploaded_image_label img {
  position: unset;
  opacity: 1;
  width: auto;
  height: auto;
  border-radius: 0;
  margin-right: 8px;
}
.profile__form .form-group--swich .form-control {
  height: 48px;
  display: flex;
  align-items: center;
}
.profile__form .form-group--swich .form-control label {
  margin-bottom: 0;
}
.profile__form .form-group--swich .switch {
  width: 52px;
}
.profile__form .form-group--swich .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.profile__form .form-group--swich .slider {
  position: absolute;
  cursor: pointer;
  top: 50%;
  left: auto;
  transform: translateY(-50%);
  right: 12px;
  bottom: 0;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  width: 46px;
  height: 25px;
  border: 1px solid #2196F3;
}
.profile__form .form-group--swich .slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 2px;
  bottom: 2px;
  background-color: #2196F3;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.profile__form .form-group--swich input:checked + .slider {
  background-color: #2196F3;
}
.profile__form .form-group--swich input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(21px);
  background-color: white;
}
.profile__form .form-group--swich .slider.round {
  border-radius: 34px;
}
.profile__form .form-group--swich .slider.round:before {
  border-radius: 50%;
}
.profile__form .form-group--checkbox {
  display: flex;
  align-items: center;
  height: 100%;
  margin-top: 12px;
}
.profile__form .form-group--checkbox input:checked + label:after {
  background-color: #2196F3;
  background-image: url("/content/assets/images/white-check.svg");
}
.profile__form .form-group--checkbox label, .profile__form .form-group--checkbox .label {
  position: relative;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-bottom: 0;
}
.profile__form .form-group--checkbox label:before, .profile__form .form-group--checkbox .label:before {
  content: "";
  display: block;
  width: 24px;
  border-radius: 4px;
  height: 24px;
  margin-right: 8px;
}
.profile__form .form-group--checkbox label:after, .profile__form .form-group--checkbox .label:after {
  content: "";
  position: absolute;
  width: 24px;
  border: 1px solid #2196F3;
  border-radius: 4px;
  height: 24px;
  margin-right: 8px;
  background-repeat: no-repeat;
  background-position: center;
}
.profile__form .form-group--checkbox .label:after, .profile__form .form-group--checkbox .label:before {
  display: none;
  background-color: transparent;
  border: 0;
}
.profile__form .form-group--checkbox .marriage {
  width: 100%;
}
.profile__form .form-group--checkbox .marriage .label {
  margin-bottom: 8px;
}
.profile__form .form-group--checkbox .marriage label {
  flex-direction: row-reverse;
  height: 48px;
  background-color: #F4F6F9;
  border-radius: 8px;
  padding: 14px 12px;
  width: 100%;
  justify-content: space-between;
  user-select: none;
}
.profile__form .form-group--checkbox.stat {
  height: auto;
  margin-top: 0;
}
.profile__form .form-group--cv label {
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
  background-color: #F4F6F9;
  border-radius: 8px;
  cursor: pointer;
}
.profile__form .form-group--cv label img {
  margin-right: 8px;
}
.profile__form .form-group--phone select.form-control {
  position: absolute;
  top: 13px;
  bottom: 13px;
  padding: 0 25px 0 12px;
  left: 1px;
  width: auto;
  border-radius: 0;
  border: none !important;
  border-right: 1px solid #ced4da;
  background-position: right 10px center;
  background-color: transparent !important;
}
.profile__form .form-group--phone select.form-control:focus {
  border-right: 1px solid #ced4da !important;
  border-left: 0 !important;
  border-bottom: 0 !important;
  border-top: 0 !important;
}
.profile__form .form-group--phone input.form-control {
  padding-left: 78px;
  padding-right: 65px;
}
.profile__block {
  padding: 24px;
  border: 1px solid #F4F6F9;
  border-radius: 8px;
}
@media (max-width: 1200px) {
  .profile__content {
    flex: 0 0 calc(100% - 250px);
    width: calc(100% - 250px);
  }
  .profile__logo img {
    width: 170px;
  }
}
@media (max-width: 991px) {
  .profile__section__title {
    margin-bottom: 24px;
  }
}
@media (max-width: 767px) {
  .profile__header {
    background-color: #212944;
    padding: 16px;
  }
  .profile__header__burger {
    background-image: url("/content/assets/images/profile/svg-icons/burger.svg");
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    min-width: 20px;
    background-color: transparent;
    margin-right: 16px;
    cursor: pointer;
    background-size: 20px;
    transition: 0.2s linear;
  }
  .profile__header__user {
    width: 24px;
    height: 24px;
    border: 0.5px solid white;
    border-radius: 6px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    margin-right: 8px;
  }
  .profile__header__user__name span {
    display: none;
  }
  .profile__header__user__name img {
    width: 14px;
    height: 14px;
    margin-right: 0;
    filter: brightness(0) saturate(100%) invert(100%) sepia(2%) saturate(8%) hue-rotate(79deg) brightness(104%) contrast(100%);
  }
  .profile__header__user__drop {
    top: 100%;
    left: -90px;
    min-width: 100%;
    width: auto;
    margin-top: 10px;
    border-radius: 8px;
    padding: 8px 4px;
  }
  .profile__header__user__drop li a {
    white-space: nowrap;
    font-size: 10px;
    padding: 5px 8px;
    border-radius: 4px;
    line-height: normal;
  }
  .profile__header__wishlist, .profile__header__dark {
    width: 24px;
    height: 24px;
    border: 0.5px solid white;
    border-radius: 6px;
    background-color: transparent;
    margin-right: 8px;
    display: none;
  }
  .profile__header__wishlist img, .profile__header__dark img {
    width: 14px;
    height: 14px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(2%) saturate(8%) hue-rotate(79deg) brightness(104%) contrast(100%);
  }
  .profile__logo {
    display: none;
  }
  .profile__logo--mob {
    display: block;
    height: 30px;
  }
  .profile__logo--mob img {
    height: 30px;
    width: 142px;
  }
  .profile__content {
    flex: 0 0 100%;
  }
  .profile__content__body {
    padding: 0 16px;
  }
  .profile__block {
    padding: 0;
    border: 0;
  }
}

#menu-toggle:checked ~ .profile .profile__bar {
  left: 0;
  width: 100%;
}
#menu-toggle:checked ~ .profile .profile__header__burger {
  background-image: url("/content/assets/images/profile/svg-icons/close.svg");
  height: 24px;
}

.wish-list__tab-links {
  display: flex;
  border-bottom: 1px solid #F4F6F9;
  margin-bottom: 14px;
  width: max-content;
}
.wish-list__tab-links li {
  margin-right: 30px;
}
.wish-list__tab-links li a {
  border-bottom: 1px solid transparent;
  padding-bottom: 18px;
  color: #A3A6AC;
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
}
.wish-list__tab-links li a.active {
  border-color: #2196F3;
  color: #2196F3;
  font-weight: bold;
}
.wish-list__tab {
  display: none;
}
.wish-list__tab.active {
  display: block;
}
.wish-list__vacancies .resume__status {
  display: flex;
  align-items: center;
  gap: 8px;
}
.wish-list__vacancies .resume__status:before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #1CA73A;
}
.wish-list__vacancies .resume__status--orange:before {
  background-color: #FF7F00;
}
.wish-list__vacancies .resume__status--red:before {
  background-color: #FF1158;
}
.wish-list__vacancies .resume__status--black:before {
  background-color: #595F73;
}
.wish-list__vacancies .resume__block {
  padding-right: 52px;
  position: relative;
  height: auto !important;
}
.wish-list__vacancies .resume__header {
  color: #061e40;
  margin-bottom: 0;
  align-items: flex-start;
}
.wish-list__vacancies .resume__footer {
  justify-content: unset !important;
  color: #061e40;
}
.wish-list__vacancies .resume__footer .resume__item {
  margin-right: 150px;
}
.wish-list__vacancies .resume__footer .resume__item p {
  margin-bottom: 0;
}
@media (max-width: 1600px) {
  .wish-list__vacancies .resume__block {
    padding-right: 16px;
  }
  .wish-list__vacancies .companies__item__right {
    flex-direction: column;
    gap: 10px;
  }
  .wish-list__vacancies .companies__item__right a {
    font-size: 14px;
    padding: 10px 14px;
    margin: 0 !important;
    width: 100%;
    justify-content: center;
    white-space: nowrap;
  }
}
@media (max-width: 1440px) {
  .wish-list__vacancies .companies__item__right a {
    font-size: 12px;
  }
  .wish-list__vacancies .resume__footer {
    flex-wrap: wrap;
  }
  .wish-list__vacancies .resume__header__name {
    font-size: 18px;
  }
  .wish-list__vacancies .resume__item {
    margin-bottom: 16px;
  }
}
@media (max-width: 1300px) {
  .wish-list__vacancies .resume__block .resume__item {
    margin-right: 60px;
  }
  .wish-list__vacancies .resume__block .resume__footer p {
    margin-top: 0;
  }
}
@media (max-width: 1100px) {
  .wish-list__vacancies .companies__item__right a {
    font-size: 12px;
    margin-right: 10px !important;
  }
  .wish-list__vacancies .companies__item__right a:last-child {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
}
@media (max-width: 991px) {
  .wish-list__vacancies .resume__header .d-flex {
    align-items: center;
  }
  .wish-list__vacancies .companies__item__right {
    position: absolute;
    right: 8px;
    top: 8px;
  }
  .wish-list__vacancies .companies__item__right a {
    margin-bottom: 6px;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    margin-right: 0 !important;
    max-width: 40px;
  }
  .wish-list__vacancies .companies__item__right a img {
    margin: 0;
    width: 14px;
    height: 14px;
  }
  .wish-list__vacancies .companies__item__right a:last-child {
    margin-right: 0 !important;
    margin-left: 0 !important;
    margin-bottom: 0;
    margin-top: 0;
  }
  .wish-list__vacancies .companies__item__right a span {
    display: none;
  }
}

.companies {
  border: 1px solid #e2e9f2;
  border-radius: 10px;
  padding: 16px;
}
.companies__msg {
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
  color: #2196F3;
  margin-bottom: 24px;
}
.companies__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 30px;
  border-bottom: 1px solid #e2e9f2;
  margin-bottom: 30px;
}
.companies__item:last-child {
  border: 0;
  padding: 0;
  margin: 0;
}
.companies__item__left, .companies__item__right {
  display: flex;
  align-items: center;
}
.companies__item__right .appeal_count {
  font-weight: 500;
  font-size: 9px;
  line-height: normal;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  color: #FFFFFF;
  background-color: #2196F3;
  border-radius: 50%;
  padding: 5px;
  max-height: 20px;
  max-width: 20px;
  margin-left: 10px;
  white-space: nowrap;
  min-width: 20px;
}
@media (max-width: 991px) {
  .companies__item__right .appeal_count {
    position: absolute;
    top: -6px;
    right: -6px;
    display: flex !important;
    font-size: 8px;
    max-height: 20px;
    max-width: 20px;
    min-width: 20px;
    margin-left: 0;
    height: 20px;
    white-space: nowrap;
    font-weight: 400;
  }
}
.companies__item__right .btn {
  border-radius: 10px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  border: 1px solid transparent;
  background-color: #F4F6F9;
  color: black;
  font-weight: 500;
}
.companies__item__right .btn img {
  margin-right: 8px;
}
.companies__item__right .btn.ppc_delete {
  background-color: white;
  border-color: #F4F6F9;
  color: #A3A6AC;
  margin-left: 24px;
}
.companies__logo {
  width: 150px;
  height: 100px;
  margin-right: 30px;
}
.companies__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.companies__name {
  font-weight: 700;
  font-size: 20px;
  line-height: 25px;
  color: #212944;
}
.companies__add {
  border-bottom: 1px solid #F4F6F9;
  margin-bottom: 26px;
  padding-bottom: 26px;
}
.companies__add:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
.companies__add .form-group--img .img_file {
  padding: 8px;
  background: #F4F6F9;
  border-radius: 8px;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
  font-size: 10px;
  line-height: 25px;
}
.companies__add .form-group--img .img_file span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 71px;
  height: 32px;
  border-radius: 6px;
  background-color: #2196F3;
  margin-right: 12px;
  color: white;
}
.companies__add .form-group--img .img_file p {
  color: rgba(33, 41, 68, 0.5);
}
.companies__add .form-group--img .data-temporary-file-pl-rg-j i {
  width: 20px;
  height: 20px;
  min-width: 20px;
}
.companies__add .form-group--img .data-temporary-file-pl-rg-j {
  width: 150px !important;
  height: 100px !important;
  margin: 16px 0 !important;
}
.companies__add .form-group--img .data-temporary-file-pl-rg-j span:not(.cntr-spec-position) {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  top: -13px !important;
}
.companies__add .form-group--img .result_file {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.companies__add .form-group--img .result_file li {
  padding: 4px 12px;
  background: #F4F6F9;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
  display: flex;
  align-items: center;
}
.companies__add .form-group--img .result_file li:last-child {
  margin-right: 0;
}
.companies__add .form-group--img .result_file li button {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background-color: transparent;
}
.companies__add .form-group--img .result_file li img {
  margin-left: 12px;
}
.companies .profile__add-cv__remove-add {
  display: flex;
  align-items: center;
  width: max-content;
  margin: 0 auto;
}
.companies .profile__add-cv__remove-add .add_usefull {
  margin-left: 24px;
}
@media (max-width: 991px) {
  .companies__logo {
    margin-right: 0;
    margin-bottom: 16px;
  }
  .companies__item__left, .companies__item__right {
    flex-direction: column;
  }
  .companies__item__right .btn.ppc_delete {
    margin-left: 0;
    margin-top: 16px;
    width: 100%;
    justify-content: center;
  }
  .companies__add .form-group--img {
    margin-bottom: 26px !important;
  }
}
@media (max-width: 767px) {
  .companies__item__right .btn {
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    justify-content: center;
  }
  .companies__item__right .btn img {
    margin: 0;
  }
  .companies__item__right .btn span {
    display: none;
  }
}

.packages {
  display: flex;
}
.packages.profile__content__body {
  display: block;
}
.packages [name=packages__link]:checked:nth-child(1) ~ .packages__tabs label:nth-child(1) {
  background-color: #2196F3;
  color: white;
}
.packages [name=packages__link]:checked:nth-child(1) ~ .packages__blocks .profile__block:nth-child(1) {
  display: block;
}
.packages [name=packages__link]:checked:nth-child(2) ~ .packages__tabs label:nth-child(2) {
  background-color: #2196F3;
  color: white;
}
.packages [name=packages__link]:checked:nth-child(2) ~ .packages__blocks .profile__block:nth-child(2) {
  display: block;
}
.packages [name=packages__link]:checked:nth-child(3) ~ .packages__tabs label:nth-child(3) {
  background-color: #2196F3;
  color: white;
}
.packages [name=packages__link]:checked:nth-child(3) ~ .packages__blocks .profile__block:nth-child(3) {
  display: block;
}
.packages [name=packages__link]:checked:nth-child(4) ~ .packages__tabs label:nth-child(4) {
  background-color: #2196F3;
  color: white;
}
.packages [name=packages__link]:checked:nth-child(4) ~ .packages__blocks .profile__block:nth-child(4) {
  display: block;
}
.packages [name=packages__link]:checked:nth-child(5) ~ .packages__tabs label:nth-child(5) {
  background-color: #2196F3;
  color: white;
}
.packages [name=packages__link]:checked:nth-child(5) ~ .packages__blocks .profile__block:nth-child(5) {
  display: block;
}
.packages [name=packages__link]:checked:nth-child(6) ~ .packages__tabs label:nth-child(6) {
  background-color: #2196F3;
  color: white;
}
.packages [name=packages__link]:checked:nth-child(6) ~ .packages__blocks .profile__block:nth-child(6) {
  display: block;
}
.packages [name=packages__link]:checked:nth-child(7) ~ .packages__tabs label:nth-child(7) {
  background-color: #2196F3;
  color: white;
}
.packages [name=packages__link]:checked:nth-child(7) ~ .packages__blocks .profile__block:nth-child(7) {
  display: block;
}
.packages [name=packages__link]:checked:nth-child(8) ~ .packages__tabs label:nth-child(8) {
  background-color: #2196F3;
  color: white;
}
.packages [name=packages__link]:checked:nth-child(8) ~ .packages__blocks .profile__block:nth-child(8) {
  display: block;
}
.packages [name=packages__link]:checked:nth-child(9) ~ .packages__tabs label:nth-child(9) {
  background-color: #2196F3;
  color: white;
}
.packages [name=packages__link]:checked:nth-child(9) ~ .packages__blocks .profile__block:nth-child(9) {
  display: block;
}
.packages [name=packages__link]:checked:nth-child(10) ~ .packages__tabs label:nth-child(10) {
  background-color: #2196F3;
  color: white;
}
.packages [name=packages__link]:checked:nth-child(10) ~ .packages__blocks .profile__block:nth-child(10) {
  display: block;
}
.packages__tabs {
  display: flex;
  align-items: center;
  background: #F4F6F9;
  border-radius: 8px;
  padding: 4px;
  width: max-content;
  margin: 0 auto 32px;
}
.packages__tabs label {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #212944;
  border-radius: 4px;
  cursor: pointer;
  padding: 8px 16px;
  transition: 0.2s linear;
}
.packages__blocks .profile__block {
  display: none;
}
.packages__item {
  width: calc(30% - 24px);
  margin-right: 24px;
}
.packages__item:first-child {
  width: 100%;
}
.packages__item:first-child li {
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  color: rgba(33, 41, 68, 0.5);
  border-bottom: 1px solid #F4F6F9;
  justify-content: flex-start;
  background-color: transparent;
}
.packages__item:first-child li:last-child, .packages__item:first-child li:first-child {
  border-bottom: 0;
}
.packages__item:last-child {
  margin-right: 0;
}
.packages__item li {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F4F6F9;
}
.packages__item li:first-child, .packages__item li:last-child {
  background-color: transparent;
}
.packages__item li:nth-child(2) {
  border-radius: 8px 8px 0 0;
}
.packages__item li:nth-last-child(2) {
  border-radius: 0 0 8px 8px;
}
.packages__item li:nth-last-child(2) h2 {
  color: #2196F3;
}
.packages__item li h2 {
  font-weight: 700;
  font-size: 18px;
  line-height: 23px;
  color: #212944;
}
.packages__item li .btn {
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
  padding: 11.5px 49.5px;
  background: #2196F3;
  border-radius: 8px;
  color: white;
  margin-top: 24px;
  white-space: nowrap;
}
.packages__item li span {
  display: none;
}
.packages__info {
  display: flex;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: rgba(33, 41, 68, 0.5);
  max-width: 800px;
  align-items: flex-start;
  margin-top: 16px;
}
.packages__info img {
  margin-right: 8px;
  margin-top: 3px;
}
.packages__info a {
  color: #212944;
}
.packages__my {
  width: 100%;
}
.packages__my table {
  width: 100%;
  border-spacing: 0;
}
.packages__my table thead tr th {
  padding: 0 16px 8px 16px;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  color: rgba(33, 41, 68, 0.5);
}
.packages__my table tbody tr {
  background: #F4F6F9;
}
.packages__my table tbody tr.space {
  height: 16px;
  background-color: white;
}
.packages__my table tbody tr td {
  font-weight: 700;
  font-size: 18px;
  line-height: 23px;
  color: #212944;
  padding: 28px 16px;
}
.packages__my table tbody tr td:first-child {
  border-radius: 8px 0 0 8px;
}
.packages__my table tbody tr td:last-child {
  border-radius: 0 8px 8px 0;
  padding-left: 100px;
}
.packages__my table tbody tr td:nth-child(2) {
  color: #2196F3;
}
.packages__my .btn {
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
  padding: 11.5px 15px;
  background: #2196F3;
  border-radius: 8px;
  color: white;
  margin: 24px auto 0;
  display: block;
  width: max-content;
}
@media (max-width: 1099px) {
  .packages {
    flex-direction: column;
  }
  .packages__item {
    margin-right: 16px;
    width: 100%;
    margin-bottom: 24px;
  }
  .packages__item:last-child {
    margin-bottom: 0;
  }
  .packages__item:first-child {
    display: none;
  }
  .packages__item li {
    flex-direction: column;
    min-height: auto;
    text-align: center;
    padding: 10px;
  }
  .packages__item li:first-child, .packages__item li:nth-child(6), .packages__item li:last-child {
    border-bottom: 0;
  }
  .packages__item li:last-child {
    padding: 0;
  }
  .packages__item li span {
    display: block;
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    color: rgba(33, 41, 68, 0.5);
    margin-bottom: 5px;
  }
  .packages__item li .btn {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .packages__item {
    margin-right: 0;
  }
  .packages__tabs {
    width: 100%;
    margin: 0 auto 24px;
  }
  .packages__tabs label {
    width: 100%;
    justify-content: center;
  }
}

.resumes {
  font-family: "Inter" !important;
  color: #212944;
  margin: 40px 0 80px 0;
}
.resumes a.cv_count {
  border-bottom: 1px solid black;
}
.resumes .cv_count {
  font-size: 14px;
  font-weight: 500;
}
.resumes .cv_count span {
  font-weight: 700;
}
@media (max-width: 767px) {
  .resumes .cv_count {
    margin-top: 14px;
  }
}
.resumes__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 25px;
  text-transform: uppercase;
  display: flex;
  margin-bottom: 35px;
  align-items: center;
}
.resumes__title:before {
  content: "";
  width: 3px;
  height: 24px;
  background-color: #2196F3;
  display: block;
  margin-right: 16px;
  border-radius: 10px;
}
.resumes .form-group {
  margin-bottom: 16px;
}
.resumes .form-group .form-control {
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  background-color: #F4F6F9;
  border: 1px solid #F4F6F9;
  border-radius: 4px;
  padding: 12px;
  height: auto !important;
}
.resumes .form-group .form-control::placeholder {
  color: #A3A6AC;
  font-family: "Inter" !important;
}
.resumes .form-group select.form-control {
  background: url("/content/assets/images/arrow-bottom.svg") right 20px top 50% no-repeat;
  background-color: #F4F6F9;
  padding: 10px 45px 11px 25px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
}
.resumes .form-group label {
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
  color: #A3A6AC;
  margin-right: 24px;
}
.resumes .form-group--search {
  margin-bottom: 0;
}
.resumes .form-group--search .selectize-input {
  margin: 8px 0;
  max-height: 100px;
  overflow-y: auto;
  background-color: #F4F6F9;
  padding: 9px !important;
  box-shadow: unset;
  border: 1px solid transparent;
}
.resumes .form-group--search .selectize-input.focus, .resumes .form-group--search .selectize-input.input-active {
  box-shadow: unset !important;
  background-color: #F4F6F9 !important;
  border: 1px solid #2196F3;
}
.resumes .form-group--search .selectize-input input {
  font-size: 12px;
  line-height: 15px;
  font-family: "Inter" !important;
}
.resumes .form-group--search .selectize-input input::placeholder {
  color: #A3A6AC;
}
.resumes .form-group--search .selectize-input::-webkit-scrollbar {
  width: 2px;
  height: 5px;
}
.resumes .form-group--search .selectize-input::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px #f4f6f9;
  border-radius: 2.5px;
}
.resumes .form-group--search .selectize-input::-webkit-scrollbar-thumb {
  background-color: #2196F3;
  outline: none;
  border-radius: 2.5px;
}
.resumes .form-group--search .selectize-input li {
  margin: 0 16px 16px 0;
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
  background: #F4F6F9;
  border-radius: 8px;
  border: 0;
}
.resumes .form-group--search .selectize-input li span {
  background-color: transparent;
  border: 0;
}
.resumes__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
}
.resumes__head__tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.resumes__head__tools .cv_count {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #212944;
  opacity: 0.75;
}
.resumes__head__tools #clear_filters2 {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #212944;
  opacity: 0.5;
  margin-right: 32px;
}
.resumes__head__tools .form-group select.form-control {
  padding: 6px 45px 7px 25px;
}
.resumes__head__tools .btn-transparent {
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
  padding: 8px 12px;
  border: 1px solid #e2e9f2;
  border-radius: 8px;
  color: black;
  margin-right: 40px;
  display: flex;
  align-items: center;
}
.resumes__head__tools .btn-transparent img {
  margin-right: 8px;
}
.resumes__head .resumes__title {
  margin-bottom: 0;
}
.resumes__head .form-group {
  margin-bottom: 0;
}
.resumes .resumes__filters__item--profession {
  padding-bottom: 16px;
}
.resumes__filters {
  padding: 16px;
  background-color: white;
  border: 1px solid #e2e9f2;
  border-radius: 8px;
}
.resumes__filters .resumes__title {
  font-size: 17px;
  line-height: 21px;
  color: #2196F3;
  margin-bottom: 16px;
}
.resumes__filters__item {
  border-bottom: 1px solid #e2e9f2;
  margin-bottom: 16px;
}
.resumes__filters__profession {
  max-height: 225px;
  min-height: 225px;
  overflow-y: auto;
}
.resumes__filters__profession::-webkit-scrollbar {
  width: 2px;
  height: 5px;
}
.resumes__filters__profession::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px #f4f6f9;
  border-radius: 2.5px;
}
.resumes__filters__profession::-webkit-scrollbar-thumb {
  background-color: #2196F3;
  outline: none;
  border-radius: 2.5px;
}
.resumes__filters__checkbox li {
  margin-bottom: 16px;
}
.resumes__filters__checkbox li:last-child {
  margin-bottom: 0;
}
.resumes__filters__checkbox li input:checked + label:after {
  background-color: #2196F3;
  background-image: url("/content/assets/images/white-check.svg");
}
.resumes__filters__checkbox li label {
  position: relative;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.resumes__filters__checkbox li label:before {
  content: "";
  display: block;
  width: 24px;
  border: 1px solid #A3A6AC;
  border-radius: 4px;
  height: 24px;
  margin-right: 8px;
}
.resumes__filters__checkbox li label:after {
  content: "";
  position: absolute;
  width: 24px;
  border: 1px solid #2196F3;
  border-radius: 4px;
  height: 24px;
  margin-right: 8px;
  background-repeat: no-repeat;
  background-position: center;
}
.resumes__filters__interval {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  margin-top: 8px;
}
.resumes__filters #amount, .resumes__filters #amount2 {
  text-align: center;
  width: 100%;
  margin-bottom: 3px;
  font-weight: 500;
  font-size: 12px;
  line-height: 10px;
}
.resumes__filters .ui-slider {
  border-radius: 8px;
  background-color: #F4F6F9;
  border: 0;
  height: 8px;
}
.resumes__filters .ui-slider .ui-slider-range {
  background-color: #2196F3;
}
.resumes__filters .ui-slider .ui-slider-handle {
  background-color: #F4F6F9;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  border: 5px solid #2196F3;
}
.resumes__filters__btns .btn {
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
  color: white;
  padding: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2196F3;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: 0.2s linear;
}
.resumes__filters__btns .btn:hover {
  border-color: #2196F3;
  background-color: white;
  color: #212944;
}
.resumes__filters__btns .btn:focus {
  box-shadow: unset;
}
.resumes__filters__btns .btn span {
  font-size: 12px;
  margin-left: 5px;
  display: block;
}
.resumes__filters__btns .btn-grey {
  background: #F4F6F9;
  color: #212944;
  margin-top: 16px;
}
.resumes .similar-resume {
  margin-top: 0;
}
.resumes .similar-resume .resume__footer {
  justify-content: space-between;
}
.resumes .similar-resume .resume__item:last-child {
  margin-right: 100px;
}
.resumes .similar-resume .resume__item__text h4 {
  font-size: 14px;
}
.resumes .similar-resume .resume__item__text p {
  font-size: 12px;
}
.resumes .similar-resume .resume__block {
  margin-bottom: 24px;
  height: calc(100% - 24px);
}
.resumes__banner {
  height: auto !important;
}
@media (max-width: 991px) {
  .resumes .row .col-md-3 {
    max-width: 35%;
    flex: 0 0 35%;
  }
  .resumes .row .col-md-9 {
    max-width: 65%;
    flex: 0 0 65%;
  }
  .resumes .row .col-md-9 > .d-flex {
    flex-direction: column-reverse;
    align-items: flex-start !important;
  }
  .resumes .row .col-md-9 > .d-flex .form-group {
    margin-bottom: 16px !important;
  }
}
@media (max-width: 767px) {
  .resumes {
    margin-top: 10px;
  }
  .resumes .row .col-md-3 {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .resumes .row .col-md-9 {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .resumes .row .col-md-9 > .d-flex {
    flex-direction: column-reverse;
    align-items: center !important;
  }
  .resumes .row .col-md-9 > .d-flex .form-group {
    margin-bottom: 16px !important;
  }
  .resumes__head {
    margin-bottom: 10px;
  }
  .resumes__head__btns--mobile {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
  .resumes__head__btns--mobile .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F4F6F9;
    font-weight: 500;
    font-size: 14px;
    line-height: 25px;
    border-radius: 8px;
    width: 100%;
    padding: 10.5px;
  }
  .resumes__head__btns--mobile .btn:focus {
    box-shadow: none;
  }
  .resumes__head__btns--mobile .btn:first-child {
    margin-right: 16px;
  }
  .resumes__head__btns--mobile .btn img {
    margin-left: 8px;
  }
  .resumes__head__btns--mobile .btn span {
    width: 16px;
    height: 16px;
    font-weight: 500;
    font-size: 10px;
    line-height: 25px;
    color: white;
    background-color: #2196F3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 4px;
  }
  .resumes__sort {
    padding: 16px;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px 8px 0 0;
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    z-index: 21;
    background-color: white;
    transition: 0.3s linear;
  }
  .resumes__sort.open {
    bottom: 0;
  }
  .resumes__sort h4 {
    font-weight: 700;
    font-size: 17px;
    line-height: 21px;
    margin-bottom: 24px;
  }
  .resumes__sort ul li {
    margin-bottom: 16px;
  }
  .resumes__sort ul li:last-child {
    margin-bottom: 0;
  }
  .resumes__sort ul li input:checked + label:after {
    background-color: #2196F3;
  }
  .resumes__sort ul li label {
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    position: relative;
    display: flex;
    align-items: center;
  }
  .resumes__sort ul li label:before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid #2196F3;
    right: 0;
  }
  .resumes__sort ul li label:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: transparent;
    right: 4px;
    transition: 0.2s linear;
  }
  .resumes__filters {
    overflow-y: auto;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px 8px 0 0;
    position: fixed;
    top: 60px;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    left: 0;
    right: 0;
    z-index: 21;
    transition: 0.3s linear;
  }
  .resumes__filters.open {
    opacity: 1;
    visibility: visible;
  }
  .resumes__filters::-webkit-scrollbar {
    width: 2px;
    height: 5px;
  }
  .resumes__filters::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px #f4f6f9;
    border-radius: 2.5px;
  }
  .resumes__filters::-webkit-scrollbar-thumb {
    background-color: #2196F3;
    outline: none;
    border-radius: 2.5px;
  }
  .resumes__filters__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
  }
  .resumes__filters__profession {
    max-height: 100%;
    min-height: 100%;
  }
  .resumes__filters__close {
    background: #F4F6F9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
  }
}

.announcement-add {
  font-family: "Inter" !important;
  border-radius: 8px;
}
.announcement-add__item {
  display: flex;
  width: 100%;
}
.announcement-add__item__questions .form-group--answer {
  display: flex;
  align-items: center;
}
.announcement-add__item__questions .form-group--answer button {
  background-color: transparent;
  margin-left: 12px;
  transition: 0.2s linear;
}
.announcement-add__item__questions .form-group--answer button:hover {
  transform: scale(1.1);
}
.announcement-add__item__questions .profile__add-cv__remove-add.d-flex {
  justify-content: center;
}
.announcement-add__item__questions .profile__add-cv__remove-add.d-flex .add_btn {
  margin: 0;
}
.announcement-add__item__questions .profile__add-cv__remove-add.d-flex .add_btn.delete_questions {
  margin-left: 20px;
}
.announcement-add__item__questions .announcement-add__inputs {
  margin-bottom: 32px;
}
.announcement-add__inputs {
  flex: 1;
  width: 100%;
  align-items: flex-end;
}
.announcement-add__inputs .form-group {
  margin-bottom: 36px;
}
.announcement-add__inputs .form-group label {
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  color: #101828;
  margin-bottom: 8px;
  display: block;
}
.announcement-add__inputs .form-group .error_note {
  position: absolute;
}
.announcement-add__inputs .form-group .form-control {
  border: 1px solid #D0D5DD;
  box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
  border-radius: 8px;
  padding: 17px 20px;
  height: auto;
}
.announcement-add__inputs .form-group .form-control::placeholder {
  font-weight: 300;
  font-size: 14px;
  line-height: 25px;
  color: rgba(33, 41, 68, 0.5);
}
.announcement-add__inputs .form-group select.placeholder-shown {
  color: rgba(33, 41, 68, 0.5);
}
.announcement-add__inputs .form-group select.placeholder-hidden {
  color: #101828;
}
.announcement-add__inputs .form-group select.form-control {
  background: url("/content/assets/images/profile/svg-icons/arrow-bottom.svg") right 20px top 50% no-repeat;
  background-size: 12.5px 6.75px;
  padding-right: 40px;
  font-size: 14px;
}
.announcement-add__inputs .form-group select.form-control option:disabled {
  color: rgba(33, 41, 68, 0.5);
}
.announcement-add__inputs .ei_agree_rules {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #344054;
  margin-top: auto;
  user-select: none;
}
.announcement-add__inputs .ei_agree_rules input {
  width: 16px;
  height: 16px;
  min-width: 16px;
  border: 1px solid #D0D5DD;
  border-radius: 4px;
  background-color: transparent;
  background-size: 10px;
}
.announcement-add__inputs .ei_agree_rules a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.announcement-add__inputs .tox {
  border: 1px solid #D0D5DD;
  box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
  border-radius: 8px;
}
.announcement-add__inputs .tox .tox-toolbar__primary {
  background: unset;
  margin-top: 20px;
  padding-left: 10px;
}
.announcement-add__inputs .tox .tox-statusbar {
  display: none;
}
.announcement-add__inputs .tox .tox-edit-area {
  padding-left: 10px;
}
.announcement-add__inputs .profile__add-cv__btn {
  min-width: 100%;
}
.announcement-add__title {
  margin-right: 14px;
  min-width: 180px;
  font-weight: 500;
  font-size: 17px;
  line-height: 21px;
  color: #2196F3;
}
@media (max-width: 991px) {
  .announcement-add__inputs {
    flex-direction: column;
  }
  .announcement-add__inputs .col-md-6, .announcement-add__inputs .col-md-3 {
    max-width: 100%;
  }
}
@media (max-width: 1024px) {
  .announcement-add__item {
    flex-direction: column;
  }
  .announcement-add__title {
    margin-right: 0;
    margin-bottom: 24px;
  }
  .announcement-add__inputs {
    width: auto;
  }
  .announcement-add__inputs .ei_agree_rules {
    margin-top: 24px;
  }
}
@media (max-width: 767px) {
  .announcement-add {
    padding: 0;
    border: 0;
  }
}

.profile__add-cv .view-status {
  margin-top: 35px;
}
.profile__add-cv .view-status p {
  display: none;
  align-items: flex-start;
}
.profile__add-cv .view-status p img {
  margin-right: 12px;
  margin-top: 3px;
}
.profile__add-cv__btns {
  display: flex;
  margin-top: 24px;
  width: 100%;
  justify-content: flex-end;
}
.profile__add-cv__btn {
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
  border-radius: 8px;
  background-color: #2196F3;
  color: white;
  padding: 10.5px 38px;
  min-width: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  border: 1px solid transparent;
  transition: 0.2s linear;
}
.profile__add-cv__btn:hover {
  border-color: #2196F3;
  background-color: white;
  color: #2196F3;
}
.profile__add-cv__btn.back, .profile__add-cv__btn.other_prev {
  min-width: 120px;
  background-color: #F4F6F9;
  color: rgba(33, 41, 68, 0.5);
  margin-right: 12px;
}
.profile__add-cv__btn.back:hover, .profile__add-cv__btn.other_prev:hover {
  border-color: #2196F3;
}
.profile__add-cv__block {
  padding-top: 24px;
  border-top: 1px solid #F4F6F9;
  margin-top: 24px;
}
.profile__add-cv__block.first-child {
  padding-top: 0;
  border-top: none;
  margin-top: 0;
}
.profile__add-cv__block .skills_info input {
  background-color: white !important;
  border: 1px solid #D0D5DD !important;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05) !important;
}
.profile__add-cv__parts {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  overflow-x: auto;
}
.profile__add-cv__parts::-webkit-scrollbar {
  display: none;
}
.profile__add-cv__parts::-webkit-scrollbar-track {
  box-shadow: none;
}
.profile__add-cv__parts::-webkit-scrollbar-thumb {
  background-color: transparent;
  outline: none;
}
.profile__add-cv__parts li {
  width: 100%;
  margin-right: 5px;
}
.profile__add-cv__parts li:last-child {
  margin-right: 0;
}
.profile__add-cv__parts li a {
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #A3A6AC;
  padding-bottom: 8px;
  border-bottom: 4px solid #F4F6F9;
  width: 100%;
  white-space: nowrap;
}
.profile__add-cv__parts li a.active, .profile__add-cv__parts li a.prev {
  color: #2196F3;
  border-color: #2196F3;
}
.profile__add-cv__form {
  display: none;
}
.profile__add-cv__form .tab_inner {
  padding: 24px;
  border: 1px solid #F4F6F9;
  border-radius: 8px;
  color: #212944;
}
.profile__add-cv__form.activeTab {
  display: block;
}
.profile__add-cv__form .form-group {
  margin-bottom: 34px;
}
.profile__add-cv__form .form-group label {
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 8px;
  color: #212944;
  display: block;
}
.profile__add-cv__form .form-group select {
  background: url("/content/assets/images/profile/svg-icons/arrow-down.svg") right 20px top 50% no-repeat;
  background-size: 12.5px 6.75px;
  padding-right: 40px;
}
.profile__add-cv__form .form-group .form-control, .profile__add-cv__form .form-group .chosen-single {
  border-radius: 8px;
  background-color: white;
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
  border: 1px solid #D0D5DD;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
  padding: 16px 20px;
  height: auto;
}
.profile__add-cv__form .form-group .form-control::placeholder, .profile__add-cv__form .form-group .chosen-single::placeholder {
  color: rgba(33, 41, 68, 0.5);
  font-family: "Inter" !important;
}
.profile__add-cv__form .form-group .bootstrap-tagsinput {
  margin-bottom: 0;
}
.profile__add-cv__form .form-group--file {
  display: flex;
  align-items: center;
}
.profile__add-cv__form .form-group--file label:not(.label) {
  border: 1px solid #E4E7EC;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  width: 100%;
  flex: 1;
  margin-left: 20px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.profile__add-cv__form .form-group--file label:not(.label) img {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
}
.profile__add-cv__form .form-group--file label:not(.label) span {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #2196F3;
  display: block;
  margin-bottom: 4px;
}
.profile__add-cv__form .form-group--file label:not(.label) p {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #475467;
}
.profile__add-cv__form .form-group--file .image_input {
  width: 120px;
  height: 120px;
  overflow: visible;
}
.profile__add-cv__form .form-group--file .image_input .check_img {
  position: absolute;
  left: auto;
  top: auto;
  right: 0;
  bottom: 0;
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
}
.profile__add-cv__form .form-group--file .image_input img {
  object-fit: contain;
}
.profile__add-cv__form .form-group--file .image_input .uploaded_image_label p {
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
}
.profile__add-cv__form .form-group--file .image_input .uploaded_image_label img {
  position: unset;
  opacity: 1;
  border-radius: 0;
  width: 50px;
  height: 50px;
}
.profile__add-cv__form .form-group--swich .form-control {
  height: 48px;
  display: flex;
  align-items: center;
}
.profile__add-cv__form .form-group--swich .form-control label {
  margin-bottom: 0;
}
.profile__add-cv__form .form-group--swich .switch {
  width: 52px;
}
.profile__add-cv__form .form-group--swich .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.profile__add-cv__form .form-group--swich .slider {
  position: absolute;
  cursor: pointer;
  top: 50%;
  left: auto;
  transform: translateY(-50%);
  right: 12px;
  bottom: 0;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  width: 46px;
  height: 25px;
  border: 1px solid #2196F3;
}
.profile__add-cv__form .form-group--swich .slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 2px;
  bottom: 2px;
  background-color: #2196F3;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.profile__add-cv__form .form-group--swich input:checked + .slider {
  background-color: #2196F3;
}
.profile__add-cv__form .form-group--swich input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(21px);
  background-color: white;
}
.profile__add-cv__form .form-group--swich .slider.round {
  border-radius: 34px;
}
.profile__add-cv__form .form-group--swich .slider.round:before {
  border-radius: 50%;
}
.profile__add-cv__form .form-group--checkbox {
  display: flex;
  align-items: center;
  height: 100%;
  margin: auto 0;
}
.profile__add-cv__form .form-group--checkbox input:checked + label:after {
  background-color: #2196F3;
  background-image: url("/content/assets/images/white-check.svg");
}
.profile__add-cv__form .form-group--checkbox label, .profile__add-cv__form .form-group--checkbox .label {
  position: relative;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-bottom: 0;
}
.profile__add-cv__form .form-group--checkbox label:before, .profile__add-cv__form .form-group--checkbox .label:before {
  content: "";
  display: block;
  width: 24px;
  border-radius: 4px;
  height: 24px;
  margin-right: 8px;
}
.profile__add-cv__form .form-group--checkbox label:after, .profile__add-cv__form .form-group--checkbox .label:after {
  content: "";
  position: absolute;
  width: 24px;
  border: 1px solid #2196F3;
  border-radius: 4px;
  height: 24px;
  margin-right: 8px;
  background-repeat: no-repeat;
  background-position: center;
}
.profile__add-cv__form .form-group--checkbox .label:after, .profile__add-cv__form .form-group--checkbox .label:before {
  display: none;
  background-color: transparent;
  border: 0;
}
.profile__add-cv__form .form-group--checkbox .marriage {
  width: 100%;
}
.profile__add-cv__form .form-group--checkbox .marriage .label {
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  color: #212944;
}
.profile__add-cv__form .form-group--checkbox .marriage label {
  flex-direction: row-reverse;
  height: 59px;
  background-color: white;
  border-radius: 8px;
  padding: 14px 12px;
  width: 100%;
  justify-content: space-between;
  user-select: none;
  border: 1px solid #D0D5DD;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
}
.profile__add-cv__form .form-group--checkbox.stat {
  height: auto;
  margin-top: 0;
}
.profile__add-cv__form .form-group--cv label {
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
  background-color: #F4F6F9;
  border-radius: 8px;
  cursor: pointer;
}
.profile__add-cv__form .form-group--cv label img {
  margin-right: 8px;
}
.profile__add-cv__form .form-group--phone select.form-control {
  position: absolute;
  top: 13px;
  bottom: 13px;
  padding: 0 25px 0 12px;
  left: 1px;
  width: auto;
  border-radius: 0;
  border: none !important;
  border-right: 1px solid #ced4da;
  background-position: right 10px center;
  background-color: transparent !important;
}
.profile__add-cv__form .form-group--phone select.form-control:focus {
  border-right: 1px solid #ced4da !important;
  border-left: 0 !important;
  border-bottom: 0 !important;
  border-top: 0 !important;
}
.profile__add-cv__form .form-group--phone input.form-control {
  padding-left: 78px;
  padding-right: 65px;
}
.profile__add-cv__form .form-group .tox {
  border: 1px solid #D0D5DD;
  box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
  border-radius: 8px;
}
.profile__add-cv__form .form-group .tox .tox-toolbar__primary {
  background: unset;
  margin-top: 20px;
  padding-left: 10px;
}
.profile__add-cv__form .form-group .tox .tox-statusbar {
  display: none;
}
.profile__add-cv__form .form-group .tox .tox-edit-area {
  padding-left: 10px;
}
.profile__add-cv__file {
  display: flex;
  background: #FFFFFF;
  border: 1px solid #2196F3;
  border-radius: 12px;
  padding: 16px 14px;
  align-items: flex-start;
  position: relative;
}
.profile__add-cv__file .check {
  position: absolute;
  top: 16px;
  right: 54px;
  margin: 0;
}
.profile__add-cv__file .remove {
  position: absolute;
  top: 13px;
  right: 20px;
  margin: 0;
  background-color: transparent;
}
.profile__add-cv__file .remove img {
  margin: 0;
}
.profile__add-cv__file img {
  margin-right: 14px;
}
.profile__add-cv__file__name {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #344054;
}
.profile__add-cv__file__size {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #475467;
  margin-bottom: 10px;
  display: block;
}
.profile__add-cv__file__progress {
  display: flex;
  align-items: center;
  width: 100%;
}
.profile__add-cv__file__progress .progressbar {
  width: 100%;
  margin-right: 12px;
  background-color: #2196F3;
  border-radius: 4px;
  height: 8px;
}
.profile__add-cv__file__progress span {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #344054;
}
.profile__add-cv__other-parts {
  display: flex;
  margin-bottom: 24px;
  border-bottom: 1px solid #F4F6F9;
  width: max-content;
  overflow-x: auto;
}
.profile__add-cv__other-parts::-webkit-scrollbar {
  display: none;
}
.profile__add-cv__other-parts::-webkit-scrollbar-track {
  box-shadow: none;
}
.profile__add-cv__other-parts::-webkit-scrollbar-thumb {
  background-color: transparent;
  outline: none;
}
.profile__add-cv__other-parts li {
  margin-right: 40px;
}
.profile__add-cv__other-parts li:last-child {
  margin-right: 0;
}
.profile__add-cv__other-parts li a {
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #2196F3;
  padding-bottom: 8px;
  border-bottom: 1px solid transparent;
  white-space: nowrap;
}
.profile__add-cv__other-parts li a.active {
  font-weight: 700;
  border-color: #2196F3;
}
.profile__add-cv__other-item {
  padding-bottom: 14px !important;
  margin-bottom: 10px;
  border-bottom: 1px solid #F4F6F9;
}
.profile__add-cv__other-item.apply_container {
  display: block;
}
.profile__add-cv__other-item .profile__title {
  display: none;
}
.profile__add-cv__other-item.active {
  display: block;
}
.profile__add-cv__other-item .file_upload_inputbox {
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
  background-color: #F4F6F9;
  border-radius: 8px;
  cursor: pointer;
  border: 0;
}
.profile__add-cv__other-item .file_upload_inputbox .uploaded_file_name img {
  margin-right: 8px;
}
.profile__add-cv__other-item .file_upload_inputbox .uploaded_file_name p {
  font-size: 14px;
  line-height: 25px;
}
.profile__add-cv__other-item .file_upload_inputbox .delete_uploaded_file {
  width: auto;
  height: auto;
  top: 50%;
  background: none;
  transform: translateY(-50%);
}
.profile__add-cv__other-item .tab_inners {
  display: none;
  padding: 0;
  border: 0;
  margin-top: 24px;
}
.profile__add-cv__other-title {
  font-size: 14px;
  line-height: 18px;
  color: #2196F3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-weight: 500;
}
.profile__add-cv__other-title.disable {
  pointer-events: none;
}
.profile__add-cv__other-title.active {
  font-weight: 700;
}
.profile__add-cv__other-title.active img {
  transform: rotate(90deg);
}
.profile__add-cv__other-title img {
  transition: 0.2s linear;
}
@media (max-width: 1420px) {
  .profile__add-cv__other-parts {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .profile__add-cv__form .form-group {
    margin-bottom: 36px;
  }
  .profile__add-cv__form .form-group.mb-32 {
    margin-bottom: 32px !important;
  }
  .profile__add-cv__form .form-group--checkbox {
    margin: 0;
    height: auto;
  }
  .profile__add-cv__btn {
    min-width: 100%;
  }
}
@media (max-width: 767px) {
  .profile__add-cv__btn {
    min-width: auto;
  }
  .profile__add-cv__btn.back {
    width: 30%;
  }
  .profile__add-cv__btn.next {
    width: 70%;
  }
  .profile__add-cv__form .tab_inner {
    padding: 0;
    border: 0;
  }
  .profile__add-cv__form .form-group--file {
    flex-direction: column;
  }
  .profile__add-cv__form .form-group--file label {
    margin-left: 0;
  }
  .profile__add-cv__form .form-group--file .image_input {
    margin: 0 auto 16px;
  }
  .profile__add-cv__other-parts {
    display: none;
  }
  .profile__add-cv__other-parts li {
    margin-right: 32px;
  }
}

.vacancy_company {
  font-family: "Inter";
  margin-bottom: 50px;
  color: black;
}
.vacancy_company .email {
  position: relative;
}
.vacancy_company .email.active:before, .vacancy_company .email.active:after {
  opacity: 1;
  visibility: visible;
}
.vacancy_company .email:before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  background: #101828;
  border-radius: 8px;
  padding: 8px;
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 8px;
  display: block;
  width: max-content;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s linear;
}
.vacancy_company .email:after {
  position: absolute;
  content: "";
  left: 50%;
  width: 12px;
  height: 12px;
  background: #101828;
  border-radius: 1px;
  transform: rotate(45deg) translateX(-50%);
  top: -13px;
  opacity: 0;
  visibility: hidden;
}
.vacancy_company .number {
  margin-left: 14px;
}
.vacancy_company .contact .email:before {
  color: white;
}
.vacancy_company .contact .email:after {
  left: 25% !important;
  transform: rotate(45deg) translateX(-50%);
  top: -10px;
}
.vacancy_company .show_number {
  margin-left: 14px;
  width: max-content !important;
}
.vacancy_company .card_like, .vacancy_company .course_like {
  width: max-content;
  height: 40px;
  font-family: "Inter";
  padding: 0 10px;
  background-color: transparent;
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
}
@media (max-width: 767px) {
  .vacancy_company .card_like, .vacancy_company .course_like {
    background-color: #F4F6F9;
  }
  .vacancy_company .card_like span, .vacancy_company .course_like span {
    display: none;
  }
  .vacancy_company .card_like i, .vacancy_company .course_like i {
    margin-right: 0;
  }
}
.vacancy_company__share {
  font-family: "Inter";
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 14px;
  position: relative;
  margin-left: 20px;
  cursor: pointer;
}
.vacancy_company__share:hover .vacancy_company__share__item {
  opacity: 1;
  visibility: visible;
}
.vacancy_company__share__item {
  position: absolute;
  padding: 14px 16px;
  background-color: white;
  border-radius: 6px;
  filter: drop-shadow(0px 2px 40px rgba(104, 104, 104, 0.2));
  bottom: 100%;
  right: 0;
  display: flex;
  width: max-content;
  gap: 15px;
  margin-bottom: 6px;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease-in-out;
}
.vacancy_company__share__item:after {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  background-color: white;
  right: 17px;
  bottom: -3px;
  transform: rotate(45deg);
  border-radius: 2px;
}
.vacancy_company__share__item ul {
  display: flex;
  gap: 15px;
}
.vacancy_company__share__item ul li {
  height: max-content;
}
.vacancy_company__share__item ul li a {
  display: block;
  width: 34px;
  height: 34px;
}
.vacancy_company__share__item button {
  display: flex;
  align-items: center;
  background: #2196F3;
  color: white;
  border-radius: 6px;
  padding: 4px 8px;
  font-weight: 500;
  font-size: 14px;
  gap: 8px;
}
.vacancy_company__share .fixed_section__tool {
  display: none;
}
@media (max-width: 1199px) {
  .vacancy_company__share .fixed_section__tool {
    display: flex;
  }
}
.vacancy_company .resume__item__text {
  color: black;
}
.vacancy_company .resume__item__text p {
  margin-bottom: 0;
}
.vacancy_company .resume__header {
  color: black;
  padding: 24px;
}
.vacancy_company .resume__header .resume__header__img {
  border: 0;
  width: 56px;
  height: 56px;
  margin-right: 24px;
  background: white;
}
.vacancy_company .resume__header .resume__header__img img {
  object-fit: contain;
}
.vacancy_company .resume__header .resume__header__name {
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 24px;
  color: black;
  font-size: 16px;
  max-width: 300px;
}
.vacancy_company .resume__header .resume__header__speciality {
  font-weight: 400;
  line-height: 19px;
  color: black;
  margin-bottom: 0;
}
.vacancy_company .resume__header .resume__premium--out {
  background: rgba(249, 34, 99, 0.1);
  color: #F92263;
  font-weight: 500;
  font-size: 10px;
  line-height: 16px;
}
.vacancy_company .resume__header .card_like {
  background-color: #F4F6F9;
}
@media (max-width: 767px) {
  .vacancy_company .resume__header .card_like {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }
  .vacancy_company .resume__header .card_like i {
    width: 16px;
    height: 16px;
    background-size: 16px;
  }
}
.vacancy_company .resume__header .vacancies__price:after {
  display: none;
}
.vacancy_company .dont-fixed {
  height: auto;
  margin-bottom: 36px;
}
.vacancy_company .resume__block ul {
  list-style-type: disc;
  padding-left: 20px;
}
.vacancy_company .resume__block ul li {
  list-style-type: disc;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: black;
}
.vacancy_company .resume__block--contact__mobile {
  display: none;
}
.vacancy_company__warn {
  margin: 8px 0 40px;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
  color: rgba(249, 34, 99, 0.75);
}
.vacancy_company__warn img {
  margin-right: 8px;
}
.vacancy_company__warn a {
  color: #212944;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.vacancy_company__warn--2 {
  color: #212944;
  margin: 24px 0;
}
.vacancy_company__warn--2 img {
  filter: brightness(0) saturate(100%) invert(15%) sepia(9%) saturate(2930%) hue-rotate(189deg) brightness(89%) contrast(94%);
}
.vacancy_company .tags {
  background-color: transparent;
}
.vacancy_company .tags li a {
  color: #595F73;
  background: #F4F6F9;
  border-radius: 6px;
}
.vacancy_company__banner {
  max-width: 300px;
  display: block;
  height: 300px;
  margin: 48px auto 0;
}
.vacancy_company__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1199px) {
  .vacancy_company .resume__block--contact__mobile {
    display: block;
    position: unset;
    margin-bottom: 24px;
  }
  .vacancy_company .resume__block--contact__mobile .contact__btn {
    display: none;
  }
  .vacancy_company .dont-fixed .hovered {
    left: 0 !important;
    right: 0 !important;
  }
  .vacancy_company .resume__block--contact__desk {
    display: none;
  }
  .vacancy_company__share .contact__btn .btn span {
    display: block;
    margin-right: auto;
    margin-left: 10px;
  }
  .vacancy_company__share__item {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .vacancy_company .resume__header {
    flex-direction: column !important;
    align-items: flex-start;
    padding: 16px;
  }
  .vacancy_company .resume__header .card_like {
    position: absolute;
    right: 12px;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }
  .vacancy_company .resume__header__name {
    font-size: 16px;
    margin-bottom: 0;
    line-height: 18px;
    margin-right: 36px;
  }
  .vacancy_company .resume__header .resume__header__img {
    width: 48px !important;
    height: 48px !important;
    margin-right: 15px;
  }
  .vacancy_company .resume__header .vacancies__item__right {
    padding-left: 62px;
    margin-top: 6px;
  }
  .vacancy_company .resume__block--contact {
    position: unset;
    box-shadow: unset;
    border: 1px solid #e2e9f2;
    padding: 0;
    border-radius: 8px;
  }
  .vacancy_company .resume__block--contact .contact__bottom .row .col-md-6:last-child .resume__item {
    margin-bottom: 16px !important;
  }
  .vacancy_company .resume__block--contact .resume__item {
    padding: 0 14px;
  }
  .vacancy_company .resume__block--contact .contact__body {
    display: block;
  }
  .vacancy_company .resume__block--contact .contact__btn {
    padding: 0 14px;
  }
  .vacancy_company .resume__block--contact .contact__btn .btn {
    font-size: 12px;
  }
  .vacancy_company .resume__block--contact .contact__btn .resume__up-btn {
    margin-left: 16px;
  }
  .vacancy_company__warn {
    margin-bottom: 24px;
    align-items: flex-start;
    line-height: normal;
  }
  .vacancy_company .show_email {
    height: 40px !important;
    background-color: #2196F3 !important;
    width: 100% !important;
    margin-top: 0 !important;
    justify-content: center !important;
  }
  .vacancy_company .btn-apply {
    height: 40px !important;
  }
  .vacancy_company .dont-fixed .vacancy_company__share .vacancy_company__share__item.open {
    opacity: 1 !important;
    visibility: visible !important;
  }
  .vacancy_company__share {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background-color: #F4F6F9;
    justify-content: center;
    margin-left: 10px;
  }
  .vacancy_company__share span {
    display: none;
  }
  .vacancy_company__share__item {
    margin-bottom: 0;
  }
  .vacancy_company__share__item .copy-link span {
    display: block;
  }
}

.vacany_like {
  width: max-content;
  font-family: "Inter";
  height: 40px;
  padding: 0 10px;
  background-color: transparent;
  font-size: 14px;
  line-height: 25px;
  font-weight: 500;
}
.vacany_like i {
  margin-right: 8px;
}
@media (max-width: 767px) {
  .vacany_like {
    background-color: #F4F6F9;
  }
  .vacany_like span {
    display: none;
  }
  .vacany_like i {
    margin-right: 0;
  }
}

.content {
  color: #212944;
}
.content p {
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
}

.company {
  font-family: "Inter" !important;
  margin-bottom: 50px;
}
.company .resumes .similar-resume .resume__header__img {
  border: 0;
  border-radius: 50%;
  overflow: hidden;
}
.company .tab__item {
  display: none;
}
.company .tab__item.active {
  display: block;
}
.company__head {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
}
.company__head__top {
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  padding: 14px;
  border: 1px solid #F4F6F9;
  position: relative;
  min-height: 76px;
}
.company__head__logo {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  border: 5px solid #F4F6F9;
  min-width: 112px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: -70px;
  overflow: hidden;
}
.company__head__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.company__head__text {
  color: white;
  font-weight: 500;
  font-size: 8px;
  line-height: 10px;
  margin-left: 70px;
}
.company__head__text h1 {
  font-weight: 700;
  font-size: 17px;
  line-height: 21px;
  margin-bottom: 4px;
}
.company__head__img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 60px;
}
.company__head__bottom {
  border: 1px solid #F4F6F9;
  border-top: 0;
  padding: 20px 16px 0;
  border-radius: 0 0 8px 8px;
}
.company__head__name {
  font-weight: 700;
  font-size: 20px;
  line-height: 25px;
  margin-left: 120px;
}
.company__head__nav {
  margin-top: 35px;
}
.company__head__nav ul {
  display: flex;
}
.company__head__nav ul li {
  display: flex;
}
.company__head__nav ul li:last-child:after {
  display: none;
}
.company__head__nav ul li:after {
  content: "";
  display: block;
  margin: 3px 12px 0;
  width: 1px;
  height: 17px;
  background-color: #F4F6F9;
}
.company__head__nav ul li a {
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  color: #212944;
  padding-bottom: 16px;
  border-bottom: 1px solid transparent;
}
.company__head__nav ul li a.active {
  font-weight: 700;
  border-color: #2196F3;
}
.company__head.active .company__head__top {
  border-bottom: 0;
  padding: 0;
  min-height: unset;
}
.company__head.active .company__head__name {
  margin-left: 0;
  padding-left: 0;
}
@media (max-width: 768px) {
  .company__head.active .company__head__bottom {
    padding: 0;
    border: 0;
  }
  .company__head.active .company__head__top {
    border: 0;
  }
  .company__head.active .company__head__name {
    margin: 0;
    border-top: 1px solid #F4F6F9;
    border-radius: 8px;
    padding: 16px;
  }
  .company__head.active .company__head__nav {
    margin: 24px 0 0;
  }
}
.company__contact {
  border: 1px solid #F4F6F9;
  border-radius: 8px;
  background-color: white;
  padding: 16px;
  position: sticky;
  top: 30px;
}
.company__contact h4 {
  font-weight: 700;
  font-size: 17px;
  line-height: 21px;
  margin-bottom: 16px;
}
.company__contact ul li {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
}
.company__contact ul li:last-child {
  margin-bottom: 0;
}
.company__contact__icon {
  background: #F4F6F9;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.company__contact__icon.hidden_toggle {
  background-image: url("/content/assets/images/resume/svg-icons/lock.svg");
  background-repeat: no-repeat;
  background-position: center;
}
.company__contact__icon.hidden_toggle.active {
  background-image: url("/content/assets/images/resume/svg-icons/lock-open.svg");
}
.company__contact__text {
  margin-left: 8px;
}
.company__contact__text h5 {
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 4px;
}
.company__contact__text h5 a {
  color: inherit;
  border-bottom: 1px solid #212944;
}
.company__contact__text p {
  font-size: 12px;
  line-height: 15px;
}
.company__useful__item {
  padding: 16px;
  display: flex;
  border: 1px solid #F4F6F9;
  border-radius: 8px;
  margin-bottom: 16px;
}
.company__useful__img {
  margin-right: 16px;
  width: 120px;
  height: 120px;
  min-width: 120px;
  overflow: hidden;
}
.company__useful__img img {
  width: 100%;
  height: 100%;
}
.company__useful__text {
  color: #212944;
}
.company__useful__text h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 25px;
  margin-bottom: 8px;
}
.company__useful__text p {
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
}
.company__work__row {
  overflow: hidden;
  margin-right: -32px;
}
.company__work__row:nth-child(even) .company__work__img:first-child {
  float: right;
}
.company__work__img {
  border-radius: 8px;
  overflow: hidden;
  height: 184px;
  margin-bottom: 32px;
  float: left;
  width: calc(50% - 32px);
}
.company__work__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.company__work__img:first-child {
  height: 400px;
  margin-right: 32px;
}
@media (max-width: 1200px) {
  .company__head__text {
    margin-left: 20px;
  }
  .company__head__img {
    right: 0;
  }
  .company__work__img {
    height: 159px;
  }
  .company__work__img:first-child {
    height: 350px;
  }
}
@media (max-width: 991px) {
  .company__contact {
    position: fixed;
    top: unset;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 15;
    margin-bottom: 0;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.05);
    padding: 7px 24px;
  }
  .company__contact h4 {
    margin-bottom: 0;
  }
  .company .contact-btn.open img {
    transform: unset;
  }
  .company .contact-btn img {
    transition: 0.2s linear;
    transform: rotate(180deg);
  }
  .company .contact-content {
    display: none;
    margin-top: 16px;
  }
}
@media (max-width: 767px) {
  .company .resumes .similar-resume .resume__header__name {
    font-size: 16px;
  }
  .company .resumes .similar-resume .resume__icon {
    position: unset;
  }
  .company__head {
    border-radius: 0;
  }
  .company__head__top {
    border-radius: 8px 8px 0 0;
  }
  .company__head__logo {
    width: 80px;
    height: 80px;
    min-width: 80px;
  }
  .company__head__text h1 {
    font-size: 12px;
    line-height: 15px;
  }
  .company__head__text p {
    font-size: 6px;
    line-height: 8px;
  }
  .company__head__img {
    display: none;
  }
  .company__head__bottom {
    border: none;
  }
  .company__head__name {
    border-bottom: 1px solid #F4F6F9;
    border-right: 1px solid #F4F6F9;
    border-left: 1px solid #F4F6F9;
    margin: -20px -16px 0 -15px;
    padding-bottom: 34px;
    border-radius: 0 0 8px 8px;
    padding-top: 16px;
    padding-left: 110px;
  }
  .company__head__nav {
    margin: 24px -16px 0;
  }
  .company__head__nav ul {
    overflow-x: auto;
  }
  .company__head__nav ul::-webkit-scrollbar {
    display: none;
  }
  .company__head__nav ul::-webkit-scrollbar-track {
    box-shadow: none;
  }
  .company__head__nav ul::-webkit-scrollbar-thumb {
    background-color: transparent;
    outline: none;
  }
  .company__head__nav ul li a {
    padding-bottom: 12px;
    white-space: nowrap;
  }
  .company__useful__item {
    flex-direction: column;
    align-items: center;
  }
  .company__useful__img {
    margin-right: 0;
    margin-bottom: 24px;
  }
  .company__work__row {
    margin-right: -16px;
  }
  .company__work__img {
    margin-bottom: 16px;
    width: calc(50% - 16px);
    height: 74px;
  }
  .company__work__img:first-child {
    height: 164px;
    margin-right: 16px;
  }
}

.apply_cv {
  font-family: "Inter";
  margin-bottom: 50px;
}
.apply_cv .resume__item {
  margin-bottom: 16px;
}
.apply_cv .resume__item p {
  margin-bottom: 0;
}
.apply_cv .apply_cv_inputs .form-group--radio {
  margin-bottom: 16px;
}
.apply_cv .apply_cv_inputs .form-group--radio input:checked + label:before {
  border-color: #2196F3;
}
.apply_cv .apply_cv_inputs .form-group--radio input:checked + label:after {
  opacity: 1;
  visibility: visible;
}
.apply_cv .apply_cv_inputs .form-group--radio label {
  font-size: 14px;
  line-height: 18px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.apply_cv .apply_cv_inputs .form-group--radio label:before {
  content: "";
  display: block;
  border: 1px solid #D0D5DD;
  width: 16px;
  height: 16px;
  min-width: 16px;
  background-size: 12px;
  border-radius: 50%;
  margin-right: 8px;
}
.apply_cv .apply_cv_inputs .form-group--radio label:after {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #2196F3;
  border-radius: 50%;
  position: absolute;
  left: 18px;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s linear;
}
.apply_cv .form-group--file .image_input {
  background-color: #E7F4FF;
}
.apply_cv form ul {
  list-style: none;
  padding: 0 !important;
}
.apply_cv form ul li {
  list-style: none !important;
}
.apply_cv form .form-group label {
  font-weight: 500;
}
.apply_cv form .form-group textarea {
  resize: none;
}
.apply_cv form .form-group--checkbox {
  margin-bottom: 16px;
}
.apply_cv form .form-group--checkbox label:before, .apply_cv form .form-group--checkbox label:after {
  width: 16px;
  height: 16px;
  min-width: 16px;
  border-color: #D0D5DD;
  background-size: 12px;
}
.apply_cv form .form-group--radio-btn input:checked + label {
  background: #2196F3;
  color: white;
}
.apply_cv form .form-group--radio-btn input:checked + label img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}
.apply_cv form .form-group--radio-btn label {
  padding: 10px 16px;
  background: #F4F6F9;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
  color: black;
  display: flex;
  align-items: center;
  cursor: pointer;
  width: max-content;
}
.apply_cv form .form-group--radio-btn label img {
  margin-right: 8px;
}
.apply_cv .btn {
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
  padding: 6.5px 32px;
  background: #2196F3;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 16px;
}
.apply_cv .label {
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  color: #212944;
  display: block;
}
.apply_cv__choose {
  border: 1px solid #e2e9f2;
  border-radius: 8px;
  margin-bottom: 24px;
}
.apply_cv__choose__head {
  font-weight: 500;
  font-size: 17px;
  line-height: 21px;
  color: #212944;
  padding: 16px;
  border-bottom: 1px solid #e2e9f2;
}
.apply_cv__choose__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid #e2e9f2;
}
.apply_cv__choose__item:last-child {
  border-bottom: 0;
}
.apply_cv__choose__left, .apply_cv__choose__right {
  display: flex;
  align-items: center;
}
.apply_cv__choose__left {
  flex: 0 0 70%;
  cursor: pointer;
}
.apply_cv__choose__right {
  flex: 1 0 27%;
}
.apply_cv__choose__img {
  width: 85px;
  height: 85px;
  border: 5px solid #e2e9f2;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 16px;
}
.apply_cv__choose__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.apply_cv__choose__text {
  flex: 1;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #212944;
}
.apply_cv__choose__text h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #212944;
  margin-bottom: 5px;
}
.apply_cv__choose .form-group--radio {
  margin-bottom: 0;
  margin-right: 20px;
}
.apply_cv__choose .form-group--radio input:checked + label:after {
  opacity: 1;
  visibility: visible;
}
.apply_cv__choose .form-group--radio label {
  margin-bottom: 0;
  cursor: pointer;
  position: relative;
}
.apply_cv__choose .form-group--radio label:before, .apply_cv__choose .form-group--radio label:after {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  border: 1px solid #2196F3;
  border-radius: 50%;
}
.apply_cv__choose .form-group--radio label:after {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  border: 0;
  top: 0;
  background-image: url("/content/assets/images/profile/svg-icons/check.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
.apply_cv__choose .btn {
  background: #F4F6F9;
  border-radius: 14px;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  padding: 10.5px 16px;
}
.apply_cv__choose .btn img {
  margin-right: 8px;
}
.apply_cv__choose .btn-img {
  width: 48px;
  height: 48px;
  padding: 0;
}
.apply_cv__choose .btn-img img {
  margin-right: 0;
}
.apply_cv .profile__add-cv__file {
  display: none;
}
.apply_cv .profile__add-cv__file.active {
  display: flex !important;
}
@media (max-width: 1200px) {
  .apply_cv .resume__block--contact {
    margin-top: 32px;
  }
}
@media (max-width: 767px) {
  .apply_cv .resume__block--contact {
    margin-top: 32px;
    position: unset;
    box-shadow: unset;
    padding: 16px;
  }
  .apply_cv .form-group--file {
    flex-direction: row;
    gap: 24px;
  }
  .apply_cv .form-group--file .image_input {
    width: 80px;
    height: 80px;
    margin-bottom: 0;
  }
  .apply_cv .form-group--file .image_input .uploaded_image_label img {
    width: 35px;
    height: 35px;
  }
  .apply_cv .form-group--file label {
    padding: 7px;
    max-height: 80px;
    margin-bottom: 0;
  }
  .apply_cv .form-group--file label img, .apply_cv .form-group--file label span, .apply_cv .form-group--file label p {
    margin-bottom: 0;
  }
  .apply_cv .form-group--file label img {
    width: 32px;
    height: 32px;
  }
  .apply_cv .form-group--file label span {
    font-size: 12px;
  }
  .apply_cv .form-group--file label p {
    font-size: 10px;
  }
  .apply_cv .form-group--file.mb-4 {
    margin-bottom: 16px;
  }
  .apply_cv__choose__item {
    flex-direction: column;
    align-items: flex-start;
    position: relative;
  }
  .apply_cv__choose .form-group--radio {
    margin-right: 0;
    margin-left: 20px;
  }
  .apply_cv__choose__left {
    flex: 0 0 100%;
    width: 100%;
    padding-right: 40px;
  }
  .apply_cv__choose__right {
    position: absolute;
    right: 8px;
    top: 8px;
    flex-direction: column;
  }
  .apply_cv__choose__right a {
    width: 32px !important;
    height: 32px !important;
    border-radius: 8px !important;
    margin-right: 0 !important;
    margin-bottom: 6px;
  }
  .apply_cv__choose__right a img {
    margin: 0 !important;
    max-width: 14px;
  }
  .apply_cv__choose__right a span {
    display: none;
  }
  .apply_cv .btn {
    width: 100%;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    padding: 14px;
  }
}

.seo {
  margin: 35px 0;
  color: #212944;
}
.seo__head {
  margin-bottom: 40px;
}
.seo__head h1 {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #212944;
}
.seo__head h2 {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
}
.seo__head p {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
}
.seo__head h1, .seo__head h2 {
  margin-bottom: 20px;
}

.my-profile {
  font-family: "Inter";
  padding-top: 18px;
}
.my-profile__head {
  margin-bottom: 32px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #667085;
}
.my-profile__head h1 {
  font-weight: 500;
  font-size: 30px;
  line-height: 38px;
  color: #101828;
  margin-bottom: 4px;
}
.my-profile__name {
  font-weight: 500;
  font-size: 30px;
  line-height: 38px;
  color: #101828;
  margin-bottom: 4px;
}
.my-profile__item {
  border: 1px solid #EAECF0;
  box-shadow: 0px 1px 3px rgba(16, 24, 40, 0.1), 0px 1px 2px rgba(16, 24, 40, 0.06);
  border-radius: 8px;
  color: #000D4A;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: 0.2s linear;
}
.my-profile__item_name, .my-profile__item h2 {
  font-weight: 600;
  font-size: 20px;
  line-height: normal;
  letter-spacing: -0.02em;
}
.my-profile__item__icon {
  margin-bottom: 16px;
}
.my-profile__item:hover {
  box-shadow: 0px 1px 20px rgba(16, 24, 40, 0.1), 0px 1px 2px rgba(16, 24, 40, 0.06);
}
.my-profile .row {
  margin: 0 -12px;
}
.my-profile .row > * {
  padding: 0 12px;
}
@media (max-width: 1440px) {
  .my-profile__item {
    padding: 24px 16px;
  }
  .my-profile__item__name, .my-profile__item h2 {
    font-size: 16px;
  }
}
@media (max-width: 1100px) {
  .my-profile .row > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .my-profile__item {
    margin-bottom: 24px;
    height: calc(100% - 24px);
  }
}
@media (max-width: 767px) {
  .my-profile {
    padding-top: 0;
  }
  .my-profile .row > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .my-profile__item {
    padding: 16px;
    margin-bottom: 16px;
    height: calc(100% - 16px);
  }
  .my-profile__item__icon {
    margin-bottom: 10px;
  }
  .my-profile__item__name, .my-profile__item h2 {
    font-size: 16px;
  }
}

body.night_mode .new-categories-slider:after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #081833 78%, #081833 100%);
}
body.night_mode .user_drop ul li a {
  color: white;
  border-radius: 0 !important;
}
body.night_mode .swal2-popup {
  background-color: #071C40;
  border: 1px solid #003075;
}
body.night_mode .tags ul li a {
  background-color: transparent;
  border: 1px solid #003075;
  color: white;
}
body.night_mode .cat_tabs {
  background-color: transparent;
}
body.night_mode .cat_tabs .cat_tabs__slider:after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #081833 78%, #081833 100%);
}
body.night_mode .cat_tabs .cat_tabs__list li a {
  background-color: transparent;
  border: 1px solid #003075;
  color: white;
}
body.night_mode .resumes .cv_count {
  color: white !important;
  border-color: white !important;
}
body.night_mode .resumes .form-group .form-control {
  background-color: transparent;
  border-color: #003075;
  color: white;
}
body.night_mode .resumes .form-group select.form-control {
  background: url("/content/assets/images/resume/svg-icons/arrow-bottom-white.svg") right 20px top 50% no-repeat;
}
body.night_mode .resumes .form-group select.form-control option {
  color: black !important;
}
body.night_mode .resumes .form-group .range-input {
  background: transparent;
  color: white;
}
body.night_mode .resumes .form-group--search .selectize-input, body.night_mode .resumes .form-group--search input {
  background-color: transparent !important;
  color: white;
}
body.night_mode .resumes .form-group--search .selectize-dropdown-content {
  background-color: #081833;
}
body.night_mode .resumes .form-group--search .item {
  background-color: #081833;
  background-image: none;
  border-color: #2196F3 !important;
}
body.night_mode .resumes .form-group--search .selectize-control.plugin-remove_button [data-value].active .remove {
  border-left-color: #2196F3;
}
body.night_mode .resumes .form-group--search .selectize-control.plugin-remove_button [data-value] .remove {
  border-left-color: #2196F3;
}
body.night_mode .resumes__filters {
  background-color: #071C40;
}
body.night_mode .resumes__filters__btns .btn-grey {
  background-color: transparent;
  color: white;
  border: 1px solid #003075;
}
body.night_mode .resumes .similar-resume {
  background-color: #081833;
}
body.night_mode .resumes .similar-resume .resume__block {
  background: #071C40;
  border-color: #003075;
}
body.night_mode .resumes .similar-resume .resume__icon {
  background: transparent;
  border: 1px solid;
}
body.night_mode .resumes .similar-resume .resume__icon img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(157deg) brightness(102%) contrast(101%);
}
body.night_mode .resumes .similar-resume .resume__premium {
  background-color: #fcedb5;
}
body.night_mode .resumes .similar-resume .resume__premium p {
  color: #071C40 !important;
}
body.night_mode .resumes__sort {
  background: #071C40;
  border-color: #003075;
}
body.night_mode .resumes .resumes__head__btns--mobile a {
  background: #071C40;
  border-color: #003075;
  color: white;
}
body.night_mode .resumes .resumes__head__btns--mobile a img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(157deg) brightness(102%) contrast(101%);
}
body.night_mode .resume__block {
  background: #071C40;
  border-color: #003075;
}
body.night_mode .resume__icon {
  background-color: transparent;
  border: 1px solid;
}
body.night_mode .resume__icon img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(157deg) brightness(102%) contrast(101%);
}
body.night_mode .resume__premium {
  background-color: #fcedb5;
}
body.night_mode .resume__premium p {
  color: #071C40 !important;
}
body.night_mode .resume .resume__block--contact {
  background: transparent;
}
body.night_mode .resume .resume__block--contact .resume__icon {
  border-color: #003075;
}
body.night_mode .resume .resume__block--contact .resume__icon.hidden_toggle {
  background-image: url("/content/assets/images/resume/svg-icons/lock-white.svg");
}
body.night_mode .resume .resume__block--contact .resume__icon.hidden_toggle.active {
  background-image: url("/content/assets/images/resume/svg-icons/lock-open-white.svg");
}
body.night_mode .resume .resume__block--contact .contact__top, body.night_mode .resume .resume__block--contact .contact__bottom {
  background: #071C40;
}
body.night_mode .resume .resume__item__text a {
  color: white;
}
body.night_mode .resume .resume__skills li {
  background-color: transparent;
  border: 1px solid #003075;
}
@media (max-width: 767px) {
  body.night_mode .resume .resume__block--contact {
    background-color: #071C40;
    box-shadow: 0px 5px 25px 0px rgba(255, 255, 255, 0.11);
  }
}
@media (max-width: 767px) {
  body.night_mode .similar-resume {
    background-color: transparent;
  }
}
body.night_mode .company__head__nav ul li a {
  color: white;
  border-color: transparent !important;
}
body.night_mode .company__head__nav ul li a.active {
  border-color: white !important;
}
body.night_mode .company__head__name {
  border-color: #003075 !important;
}
body.night_mode .popup__body {
  background-color: #071C40;
  border: 1px solid #003075;
}
body.night_mode .popup__blur {
  background: rgba(8, 24, 51, 0.7);
}
body.night_mode .popup a {
  color: white;
  border-bottom: 1px solid white;
}
body.night_mode .popup .popup__error-msg {
  color: #dc3545 !important;
}
body.night_mode .popup .text-danger {
  color: #dc3545 !important;
}
body.night_mode .popup__close img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(157deg) brightness(102%) contrast(101%);
}
body.night_mode .popup .popup__head__icon.report img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(157deg) brightness(102%) contrast(101%);
}
body.night_mode .popup .form-group .form-control {
  background-color: transparent;
  border-color: #003075;
  color: white;
}
body.night_mode .popup .form-group .form-control:disabled {
  background-color: #081833;
  color: grey;
}
body.night_mode .popup .btn-transparent {
  color: white;
  border-color: #003075;
}
body.night_mode .popup .ap-otp-input {
  background-color: transparent;
  color: white;
}
body.night_mode .popup.login .popup__close button {
  color: white;
}
body.night_mode .popup.login .form-group--radio input:checked + label {
  border-color: #7F56D9 !important;
}
body.night_mode .popup.login .form-group--radio label .d-flex img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(1%) hue-rotate(122deg) brightness(102%) contrast(101%);
}
body.night_mode .popup.login .popup__head__icon img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(1%) hue-rotate(122deg) brightness(102%) contrast(101%);
}
body.night_mode .popup.login .popup__form__social a {
  color: white;
  border-color: #003075;
}
body.night_mode .popup.login .form-control {
  color: white !important;
  border-color: #003075 !important;
}
body.night_mode .popup.login .popup__tools a {
  border-bottom: 0 !important;
}
body.night_mode .popup.login .popup__btns .btn {
  color: white;
  border-color: #003075 !important;
}
body.night_mode .apply_cv__choose {
  background-color: #071C40;
}
body.night_mode .apply_cv__choose__head {
  border-color: #003075;
}
body.night_mode .apply_cv__choose__right a {
  background-color: #2196F3 !important;
  border: 1px solid #003075;
}
body.night_mode .apply_cv__choose__right a img {
  filter: brightness(0) saturate(100%) invert(99%) sepia(0%) saturate(2%) hue-rotate(288deg) brightness(108%) contrast(101%);
}
body.night_mode .apply_cv .apply_cv_inputs .form-control {
  background-color: #071C40 !important;
  color: white;
  border-color: #003075;
}
body.night_mode .apply_cv .form-group--radio-btn label {
  background-color: #071C40;
}
body.night_mode .apply_cv .form-group--radio-btn label img {
  filter: brightness(0) saturate(100%) invert(99%) sepia(0%) saturate(2%) hue-rotate(288deg) brightness(108%) contrast(101%);
}
body.night_mode .apply_cv .resume__block--contact {
  background-color: #071C40;
}
body.night_mode .apply_cv .form-control {
  border-color: #003075;
  background-color: transparent;
  color: white !important;
}
body.night_mode .apply_cv .form-control::placeholder {
  color: white !important;
}
body.night_mode .apply_cv .form-group--phone select.form-control {
  border-right: 1px solid #ced4da !important;
}
body.night_mode .apply_cv select {
  background: url("/content/assets/images/resume/svg-icons/arrow-bottom-white.svg") right 20px top 50% no-repeat;
  background-size: 11px;
}
body.night_mode .apply_cv select option {
  color: black !important;
}
body.night_mode .apply_cv .chosen-container, body.night_mode .apply_cv .chosen-single {
  background-color: transparent !important;
  border-color: #003075;
}
body.night_mode .section-title {
  color: white !important;
}
body.night_mode .tags {
  background-color: transparent;
}
body.night_mode .vacancies__item {
  border-color: #003075 !important;
}
body.night_mode .vacancies__item__right .card_like {
  background: transparent !important;
  border: 1px solid #003075;
}
body.night_mode .vacancies__premium span {
  color: #081833 !important;
}
body.night_mode .vacancies__company {
  border-color: #003075 !important;
}
body.night_mode .custom-pagination li:last-child a img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(3134%) hue-rotate(284deg) brightness(114%) contrast(101%);
}
body.night_mode .custom-pagination li a {
  color: white;
}
body.night_mode .custom-pagination li a.disabled img {
  filter: brightness(0) saturate(100%) invert(12%) sepia(10%) saturate(3873%) hue-rotate(189deg) brightness(90%) contrast(87%);
}
body.night_mode .custom-pagination li a.active, body.night_mode .custom-pagination li a:hover {
  color: #2196F3;
}
body.night_mode .blogs__desc h3 img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(3134%) hue-rotate(284deg) brightness(114%) contrast(101%);
}
body.night_mode .vacancy_company__warn a {
  color: white;
}
body.night_mode .vacancy_company__warn--2 img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(1%) hue-rotate(319deg) brightness(104%) contrast(101%);
}
body.night_mode .vacancy_company .resume__header .card_like_vacancies {
  background-color: transparent !important;
  border: 1px solid #003075 !important;
}
body.night_mode .vacancy_company .resume__block--contact__mobile {
  box-shadow: none !important;
}
body.night_mode .vacancy_company .dont-fixed {
  background-color: transparent !important;
}
body.night_mode .vacancy_company .show_number {
  background-color: #2196F3 !important;
}
body.night_mode .vacancy_company .show_number img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}
body.night_mode .vacancy_company .card_like_vacancies {
  border: 0 !important;
}
@media (max-width: 767px) {
  body.night_mode .vacancy_company .card_like_vacancies {
    border: 1px solid #003075 !important;
  }
}
body.night_mode .vacancy_company .vacancy_company__share > img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}
body.night_mode .vacancy_company .vacancy_company__share__item {
  background: #0c306e !important;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.11) !important;
  filter: none !important;
}
body.night_mode .vacancy_company .vacancy_company__share__item:after {
  background-color: #0c306e !important;
}
@media (max-width: 767px) {
  body.night_mode .vacancy_company .vacancy_company__share {
    border: 1px solid #003075 !important;
    background: transparent !important;
  }
  body.night_mode .vacancy_company .vacancy_company__share .hovered {
    background: #0c306e !important;
  }
  body.night_mode .vacancy_company .vacancy_company__share .hovered:after {
    background: #0c306e !important;
  }
  body.night_mode .vacancy_company .vacancy_company__share .hovered .fixed_section__tool {
    background: #0c306e !important;
    border-color: #003075 !important;
  }
}
body.night_mode .fixed_section .show_number {
  background-color: #2196F3 !important;
}
body.night_mode .fixed_section .show_number img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}
body.night_mode .fixed_section .show_email {
  background-color: #2196F3 !important;
}
body.night_mode .fixed_section .card_like_vacancies {
  border: 0 !important;
}
@media (max-width: 767px) {
  body.night_mode .fixed_section .card_like_vacancies {
    border: 1px solid #003075 !important;
  }
}
body.night_mode .fixed_section .vacancy_company__share__icon img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}
body.night_mode .fixed_section .vacancy_company__share__item {
  background: #0c306e !important;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.11) !important;
  filter: none !important;
}
body.night_mode .fixed_section .vacancy_company__share__item:after {
  background-color: #0c306e !important;
}
@media (max-width: 767px) {
  body.night_mode .fixed_section .vacancy_company__share {
    border: 1px solid #003075 !important;
    background: transparent !important;
  }
  body.night_mode .fixed_section .vacancy_company__share .hovered {
    background: #0c306e !important;
  }
  body.night_mode .fixed_section .vacancy_company__share .hovered:after {
    background: #0c306e !important;
  }
  body.night_mode .fixed_section .vacancy_company__share .hovered .fixed_section__tool {
    background: #0c306e !important;
    border-color: #003075 !important;
  }
}

.vacancy-apply {
  font-family: "Inter";
  margin-top: 32px;
}
.vacancy-apply .scroll {
  overflow-x: auto;
}
.vacancy-apply .scroll::-webkit-scrollbar {
  display: none;
}
.vacancy-apply .scroll::-webkit-scrollbar-track {
  box-shadow: none;
}
.vacancy-apply .scroll::-webkit-scrollbar-thumb {
  background-color: transparent;
  outline: none;
}
.vacancy-apply .blur {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 7;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.2s linear;
}
.vacancy-apply .blur.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.vacancy-apply__name {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  display: flex;
  align-items: center;
  color: #212944;
  margin-bottom: 32px;
}
.vacancy-apply .resume__block {
  padding: 0;
}
.vacancy-apply .resume__header__img {
  width: 100px;
  height: 100px;
}
.vacancy-apply .resume__header__name {
  margin-bottom: 12px;
}
.vacancy-apply .resumes__head {
  margin-bottom: 24px;
}
.vacancy-apply .resume__header__desc {
  margin-right: 0;
}
.vacancy-apply .resume__header__desc .resume__item:last-child {
  margin-right: 0;
}
.vacancy-apply .resume__block__left {
  display: flex;
  align-items: center;
  padding: 16px;
  flex: 1;
  color: black;
}
.vacancy-apply .resume__block__right {
  padding: 16px;
}
.vacancy-apply .resume__block__right .resume__icon {
  height: 42px;
  width: 42px;
  margin: 0 12px !important;
}
.vacancy-apply .resume__block__right a {
  margin-top: 0 !important;
}
.vacancy-apply .resume__block__right a.ppc_edit {
  margin-right: 12px;
}
.vacancy-apply .resume__block__right a img {
  margin-right: 12px;
}
.vacancy-apply .resumes__head__mobile {
  display: none;
}
.vacancy-apply .resumes__sort {
  display: none;
}
.vacancy-apply .resumes__head__btns--mobile {
  display: none;
}
.vacancy-apply .resumes__filters__head--mob {
  display: none;
}
@media (max-width: 1560px) {
  .vacancy-apply__row {
    position: relative;
  }
  .vacancy-apply__row .col-lg-9 {
    flex: 0 0 65%;
    max-width: 65%;
  }
  .vacancy-apply__row .col-lg-3 {
    flex: 0 0 35%;
    max-width: 35%;
  }
  .vacancy-apply .resume__block {
    flex-direction: column;
    align-items: flex-start !important;
  }
  .vacancy-apply .resume__block__left {
    margin-bottom: 16px;
    width: 100%;
  }
  .vacancy-apply .resumes__head .col-lg-9 {
    flex: 0 0 65%;
    max-width: 65%;
  }
  .vacancy-apply .resumes__head .col-lg-3 {
    flex: 0 0 35%;
    max-width: 35%;
  }
  .vacancy-apply .resumes__head .resumes__head__tools #clear_filters2 {
    margin: 0 !important;
    width: max-content;
    padding-top: 3px;
  }
  .vacancy-apply .resumes__head .resumes__head__tools .d-flex:first-child {
    flex-direction: column;
  }
  .vacancy-apply .resumes__head .resumes__head__tools .btn-transparent {
    margin-right: 12px;
  }
}
@media (max-width: 1300px) {
  .vacancy-apply .resumes__head .row {
    flex-direction: column;
    align-items: flex-start !important;
  }
  .vacancy-apply .resumes__head .col-lg-9 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 16px;
  }
}
@media (max-width: 991px) {
  .vacancy-apply .resumes__filters__head--mob {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
  }
  .vacancy-apply .resumes__filters__head--mob .resumes__filters__close {
    background: #F4F6F9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
  }
  .vacancy-apply .resumes__head__btns--mobile {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 16px;
  }
  .vacancy-apply .resumes__head__btns--mobile .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F4F6F9;
    font-weight: 500;
    font-size: 14px;
    line-height: 25px;
    border-radius: 8px;
    width: 100%;
    padding: 10.5px;
  }
  .vacancy-apply .resumes__head__btns--mobile .btn:focus {
    box-shadow: none;
  }
  .vacancy-apply .resumes__head__btns--mobile .btn:first-child {
    margin-right: 16px;
  }
  .vacancy-apply .resumes__head__btns--mobile .btn img {
    margin-left: 8px;
  }
  .vacancy-apply .resumes__head__btns--mobile .btn span {
    width: 16px;
    height: 16px;
    font-weight: 500;
    font-size: 10px;
    line-height: 25px;
    color: white;
    background-color: #2196F3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 4px;
  }
  .vacancy-apply .resumes__head__mobile {
    display: block;
  }
  .vacancy-apply .resumes__sort {
    padding: 16px;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px 8px 0 0;
    position: fixed;
    display: block;
    bottom: -100%;
    right: 0;
    left: 250px;
    z-index: 21;
    background-color: white;
    transition: 0.3s linear;
  }
  .vacancy-apply .resumes__sort.open {
    bottom: 0;
  }
  .vacancy-apply .resumes__sort h4 {
    font-weight: 700;
    font-size: 17px;
    line-height: 21px;
    margin-bottom: 24px;
  }
  .vacancy-apply .resumes__sort ul li {
    margin-bottom: 16px;
  }
  .vacancy-apply .resumes__sort ul li:last-child {
    margin-bottom: 0;
  }
  .vacancy-apply .resumes__sort ul li input:checked + label:after {
    background-color: #2196F3;
  }
  .vacancy-apply .resumes__sort ul li label {
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    position: relative;
    display: flex;
    align-items: center;
  }
  .vacancy-apply .resumes__sort ul li label:before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid #2196F3;
    right: 0;
  }
  .vacancy-apply .resumes__sort ul li label:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: transparent;
    right: 4px;
    transition: 0.2s linear;
  }
  .vacancy-apply__row {
    position: relative;
  }
  .vacancy-apply__row .col-lg-9 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .vacancy-apply .resumes__head {
    margin-bottom: 16px;
    display: block;
  }
  .vacancy-apply .resumes__head .btn-transparent {
    margin-right: 0 !important;
  }
  .vacancy-apply .resumes__head__tools .cv_count {
    margin-top: 0;
  }
  .vacancy-apply .resumes__head .col-lg-9 {
    margin-top: 0;
    padding: 0;
  }
  .vacancy-apply .resumes__head .resumes__title {
    display: none;
  }
  .vacancy-apply .resumes__head .form-group {
    display: none !important;
  }
  .vacancy-apply .resume__block__right {
    width: 100%;
  }
  .vacancy-apply .companies__item__right {
    flex-direction: row !important;
    width: 100%;
  }
  .vacancy-apply .companies__item__right .btn.ppc_delete {
    width: max-content;
  }
  .vacancy-apply .resumes__filters {
    position: fixed;
    bottom: -100%;
    overflow-y: auto;
    z-index: 22;
    left: 250px;
    right: 0;
    max-height: 500px;
    transition: 0.2s linear;
  }
  .vacancy-apply .resumes__filters.open {
    bottom: 0;
  }
}
@media (max-width: 767px) {
  .vacancy-apply .resume__block__left {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0;
  }
  .vacancy-apply .resume__block__left .resume__header {
    margin-bottom: 12px !important;
  }
  .vacancy-apply .resume__block__left .resume__item {
    margin-bottom: 0 !important;
  }
  .vacancy-apply .resume__block__right {
    padding: 0;
  }
  .vacancy-apply .resume__block__right .companies__item__right {
    position: absolute;
    right: 8px;
    top: 8px;
    width: max-content;
    flex-direction: column !important;
  }
  .vacancy-apply .resume__block__right .companies__item__right .apply_like {
    margin: 6px 0 !important;
    width: 32px !important;
    height: 32px;
    min-width: 32px;
  }
  .vacancy-apply .resume__block__right .companies__item__right .apply_like i {
    margin: 0;
    width: 15px;
    height: 15px;
    background-size: 15px;
  }
  .vacancy-apply .resume__block__right .companies__item__right a {
    width: 32px !important;
    height: 32px;
    min-width: 32px;
  }
  .vacancy-apply .resume__block__right .companies__item__right a.ppc_edit {
    margin-right: 0;
    margin-bottom: 6px;
  }
  .vacancy-apply .resume__block__right .companies__item__right a img {
    margin: 0;
    width: 50%;
    height: 50%;
  }
  .vacancy-apply .scroll {
    margin: 0 -15px;
  }
  .vacancy-apply .scroll .wish-list__tab-links {
    padding: 0 16px;
  }
  .vacancy-apply .blur {
    z-index: 21;
  }
  .vacancy-apply .resumes__sort {
    left: 0;
  }
  .vacancy-apply .resumes__filters__head--mob {
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 5;
    padding: 16px;
    margin: 0 -16px;
  }
  .vacancy-apply .resumes__filters {
    z-index: 22;
    top: auto;
    left: 0;
    padding-top: 0;
  }
}

.vacancies {
  font-family: "Inter";
  margin-bottom: 26px;
}
.vacancies.inner {
  margin-top: 40px;
}
.vacancies.inner .d-flex.align-items-center.justify-content-between {
  margin-bottom: 24px;
}
.vacancies.inner .section-title {
  margin-bottom: 0;
}
.vacancies.inner .chosen-single {
  margin-left: 0;
}
@media (max-width: 767px) {
  .vacancies.inner .title_right_links {
    padding-right: 15px !important;
  }
}
@media (max-width: 767px) {
  .vacancies.inner {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .vacancies.wish-list {
    margin-top: 0;
  }
}
.vacancies__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: #212944;
  padding: 18px;
  border: 1px solid #E4E7EC;
  border-radius: 6px;
  position: relative;
  margin-bottom: 26px;
}
.vacancies__item__left, .vacancies__item__right {
  display: flex;
  align-items: center;
}
.vacancies__item__left {
  gap: 24px;
  max-width: 390px;
}
.vacancies__item__right {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
}
.vacancies__item__right .card_like {
  position: unset;
  width: 32px;
  height: 32px;
  background: #F4F6F9;
  border-radius: 6px;
  margin-left: 28px;
}
.vacancies__item__right .card_like.liked i, .vacancies__item__right .card_like:hover i {
  filter: brightness(0) saturate(100%) invert(45%) sepia(86%) saturate(2370%) hue-rotate(187deg) brightness(103%) contrast(91%);
}
.vacancies__icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  overflow: hidden;
  border-radius: 50%;
  overflow: hidden;
}
.vacancies__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vacancies__desc {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
}
.vacancies__desc h3 {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 10px;
}
.vacancies__premium {
  position: absolute;
  right: 0;
  top: 0;
  background-color: #E7FCE8;
  border-radius: 0 6px;
  font-weight: 500;
  font-size: 10px;
  line-height: 16px;
  color: #1CA73A;
  display: flex;
  align-items: center;
  padding: 4px 16px;
  gap: 8px;
  font-family: "Inter" !important;
}
.vacancies__price {
  color: #2196F3;
  display: flex;
  align-items: center;
}
.vacancies__price:after {
  display: block;
  content: "";
  width: 1px;
  height: 16px;
  background-color: #E4E7EC;
  margin: 0 12px;
}
.vacancies__banner {
  height: 96px;
  border-radius: 6px;
  overflow: hidden;
  display: block;
  margin-bottom: 26px;
}
.vacancies__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}
.vacancies__banner--main {
  height: 370px;
  margin-bottom: 24px;
}
.vacancies__company {
  padding: 10px;
  border: 1px solid #E4E7EC;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #212944;
  margin-bottom: 24px;
}
.vacancies__company img {
  margin-bottom: 24px;
  object-fit: contain;
}
.vacancies__company img.n_company_images {
  height: 30px;
}
.vacancies .sticky_element {
  max-width: 370px;
  transition: 0.3s ease-in-out;
}
.vacancies .sticky_element.sticky_active_top {
  position: sticky;
  top: 24px;
}
.vacancies .sticky_element.sticky_active_bottom {
  position: sticky;
  top: -370px;
}
@media (max-width: 767px) {
  .vacancies .container > .row > .col-md-4 {
    display: none;
  }
  .vacancies__item {
    padding: 12px;
    margin-bottom: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .vacancies__item__left {
    align-items: flex-start;
    gap: 15px;
    padding-right: 36px;
  }
  .vacancies__item__right {
    font-size: 12px;
    line-height: 10px;
    padding-left: 42px;
  }
  .vacancies__item__right .card_like {
    position: absolute;
    right: 12px;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 24px;
    height: 24px;
  }
  .vacancies__item__right .card_like i {
    background-size: 12px;
  }
  .vacancies__price:after {
    height: 8px;
    margin: 0 8px;
  }
  .vacancies__icon {
    width: 27px;
    height: 27px;
    min-width: 27px;
  }
  .vacancies__desc {
    font-weight: 400;
    font-size: 13px;
    line-height: 15px;
  }
  .vacancies__desc h3 {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 10px;
  }
  .vacancies__premium {
    width: 23px;
    height: 16px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .vacancies__premium img {
    margin: 0;
    max-width: 12px;
  }
  .vacancies__premium span {
    display: none;
  }
  .vacancies__banner {
    height: 70px;
    margin-bottom: 16px;
  }
}

.similar__vacancies {
  margin-top: 34px;
}

.banner {
  border-radius: 6px;
  display: flex;
  align-items: stretch;
  font-family: "Inter";
  margin-bottom: 24px;
}
.banner__desc {
  color: black;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  flex: 0 0 auto;
  width: 50%;
}
.banner__desc h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 12px;
}
.banner__desc p {
  margin-bottom: 24px;
}
.banner__desc .btn {
  padding: 12px 42px;
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
  color: white;
  border-radius: 6px;
  margin-top: auto;
  width: max-content;
}
.banner__desc .btn:focus {
  outline: 0;
  box-shadow: none;
}
.banner__img {
  flex: 0 0 auto;
  width: 50%;
  display: flex;
}
.banner__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom right;
}
@media (max-width: 991px) {
  .banner {
    flex-direction: column-reverse;
    align-items: center;
  }
  .banner__desc {
    width: 100%;
  }
  .banner__desc h3 {
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 8px;
  }
  .banner__desc p {
    margin-bottom: 10px;
  }
  .banner__desc .btn {
    font-size: 15px;
    line-height: 18px;
  }
  .banner__img {
    width: 100%;
    padding-right: 0;
    margin-bottom: 10px;
  }
  .banner__img img {
    object-position: center;
  }
}
@media (max-width: 767px) {
  .banner {
    border-radius: 0;
    margin: 0 -15px 24px;
  }
}

.blogs {
  font-family: "Inter";
  margin-bottom: 40px;
}
.blogs__item {
  display: flex;
  flex-direction: column;
  color: #212944;
}
.blogs__img {
  border-radius: 6px;
  height: 240px;
  overflow: hidden;
  margin-bottom: 32px;
}
.blogs__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blogs__desc {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
}
.blogs__desc p {
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}
.blogs__desc h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 32px;
  display: flex;
  align-items: flex-start;
  position: relative;
}
.blogs__desc h3 p {
  margin-right: 40px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}
.blogs__desc h3 img {
  margin-left: 16px;
  position: absolute;
  right: 0;
  top: 4px;
}
.blogs__date {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 12px;
  display: block;
  color: #2196F3;
}
.blogs .btn {
  margin: 45px auto 0;
  display: block;
  width: max-content;
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
  padding: 10.5px 52px;
  color: #2196F3;
  border: 1px solid #2196F3;
  border-radius: 6px;
  font-family: "Inter" !important;
}
.blogs .btn:hover {
  background-color: #2196F3;
  color: white;
}
@media (max-width: 767px) {
  .blogs .container {
    padding: 0;
  }
  .blogs .section-title {
    padding-left: 15px;
  }
  .blogs .row {
    flex-wrap: nowrap;
    overflow-x: auto;
    margin: 0;
    width: 100%;
    padding: 0 7px 16px;
  }
  .blogs .row::-webkit-scrollbar {
    width: 100px;
    height: 1px;
  }
  .blogs .row::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px #E4E7EC;
    border-radius: 2.5px;
  }
  .blogs .row::-webkit-scrollbar-thumb {
    background-color: #2196F3;
    outline: none;
    border-radius: 2.5px;
  }
  .blogs .row > * {
    padding: 0 8px;
    flex: 0 0 auto;
    width: 82.3%;
  }
  .blogs__img {
    height: 204px;
    margin-bottom: 24px;
  }
  .blogs__date {
    margin-bottom: 12px;
  }
  .blogs__desc h3 {
    font-size: 18px;
    line-height: 24px;
  }
}

.footer {
  background-color: #212944;
  padding: 64px 0 24px;
  font-family: "Inter";
  overflow: hidden;
}
.footer__top {
  padding-bottom: 50px;
  border-bottom: 0.5px solid #2196F3;
  margin-bottom: 38px;
}
.footer__logo {
  width: 230px;
}
.footer__logo img {
  margin-bottom: 13px;
}
.footer__logo p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: white;
}
.footer__menu ul li {
  margin-bottom: 12px;
}
.footer__menu ul li:last-child {
  margin-bottom: 0;
}
.footer__menu ul li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: white;
  border-bottom: 1px solid transparent;
  transition: 0.2s ease-in-out;
}
.footer__menu ul li a:hover {
  border-color: #2196F3;
}
.footer__head {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #70B9F2;
  margin-bottom: 16px;
  display: block;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #E4E7EC;
}
.footer__social {
  display: flex;
  gap: 16px;
}
.footer__social li a:hover img {
  filter: brightness(0) saturate(100%) invert(41%) sepia(79%) saturate(2199%) hue-rotate(191deg) brightness(108%) contrast(90%);
}
@media (max-width: 767px) {
  .footer {
    padding: 40px 0;
  }
  .footer .container {
    text-align: center;
  }
  .footer__menu {
    display: none;
  }
  .footer__top {
    padding-bottom: 40px;
    margin: 0 -15px 40px;
  }
  .footer__bottom {
    flex-direction: column-reverse;
  }
  .footer__social {
    margin-bottom: 32px;
    gap: 40px;
  }
}

.courses {
  font-family: "Inter";
}
.courses .resume__block {
  padding: 30px;
  margin-bottom: 30px;
  height: calc(100% - 30px);
}
.courses .similar-resume {
  font-family: "Inter";
}
.courses .resume__header {
  margin-bottom: 0;
}
.courses .resume__header__img {
  border: 0;
}
.courses .resume__header__name {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 12px;
}
.courses .resume__header__speciality {
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 0 !important;
}
.courses .resume__header__desc {
  margin-bottom: 26px;
}
.courses .resume__item__text p {
  margin-bottom: 0;
}
.courses .resume__premium {
  position: absolute;
  top: 0;
  right: 0;
  background: #E7FCE8;
  color: #1CA73A;
  border-radius: 0 0 0 6px;
  margin: 0;
  min-width: 104px;
}
.courses .resume__premium img {
  filter: brightness(0) saturate(100%) invert(45%) sepia(41%) saturate(916%) hue-rotate(81deg) brightness(103%) contrast(90%);
}
.courses .resume__premium--scholarship {
  background: #EDE9FF;
  color: #4361EE;
}
.courses .resume__premium--scholarship img {
  filter: brightness(0) saturate(100%) invert(29%) sepia(62%) saturate(2308%) hue-rotate(219deg) brightness(98%) contrast(91%);
}
.courses .resume__footer {
  justify-content: flex-start !important;
}
.courses .course_like {
  width: 48px;
  height: 48px;
}
.courses .course_like i {
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
}
.courses .course_like i.unliked_ico {
  background-image: url("/content/assets/images/courses/heart.svg");
}
.courses .course_like i.liked_ico {
  background-image: url("/content/assets/images/courses/heart2.svg");
}
.courses .show_more {
  padding: 15px 40px;
  background: #F4F6F9;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  display: flex;
  align-items: center;
  text-align: center;
  width: max-content;
  margin: 0 auto;
  color: #212944;
}
.courses .resumes__filters__checkbox li input:checked + label:after {
  border-color: #2196F3;
}
.courses .resumes__filters__checkbox li label:after {
  border-color: #A3A6AC;
}
@media (max-width: 767px) {
  .courses .resume__block {
    padding: 16px;
  }
  .courses .resume__header {
    flex-direction: column !important;
    align-items: flex-start;
  }
  .courses .resume__header__img {
    margin-bottom: 16px !important;
  }
  .courses .resume__header__name {
    margin-bottom: 6px;
  }
  .courses .resume__footer .resume__item:last-child {
    margin-bottom: 0 !important;
  }
  .courses .resume__premium {
    top: 8px;
    right: 8px;
    border-radius: 6px;
    gap: 5px;
  }
  .courses .resume__premium p {
    display: block !important;
    font-weight: 600;
  }
  .courses .course_like {
    width: 32px;
    height: 32px;
    position: absolute;
    right: 8px;
    min-width: 32px;
    top: 48px;
  }
  .courses .course_like i {
    background-size: 16px;
  }
}

.course .course_like {
  width: 32px;
  height: 32px;
  min-width: 32px;
  padding: 0;
}
.course .course_like i {
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
}
.course .course_like i.unliked_ico {
  background-image: url("/content/assets/images/courses/heart.svg");
}
.course .course_like i.liked_ico {
  background-image: url("/content/assets/images/courses/heart2.svg");
}
.course .resume__header .course_like {
  background-color: #F4F6F9;
}
.course .resume__header__img {
  width: 80px !important;
  height: 80px !important;
}
.course .resume__premium {
  position: absolute;
  top: 0;
  right: 0;
  background: #E7FCE8;
  color: #1CA73A;
  border-radius: 0 0 0 6px;
  margin: 0;
  min-width: 104px;
}
.course .resume__premium img {
  filter: brightness(0) saturate(100%) invert(45%) sepia(41%) saturate(916%) hue-rotate(81deg) brightness(103%) contrast(90%);
}
.course .resume__premium--scholarship {
  background: #EDE9FF;
  color: #4361EE;
}
.course .resume__premium--scholarship img {
  filter: brightness(0) saturate(100%) invert(29%) sepia(62%) saturate(2308%) hue-rotate(219deg) brightness(98%) contrast(91%);
}
.course .dont-fixed .course_like {
  width: auto;
  padding: 0;
  height: auto;
}
.course .dont-fixed .course_like .btn {
  padding: 0;
  background-color: transparent;
}
.course .resume__skills {
  padding: 0 !important;
}
.course .resume__skills li {
  list-style: none !important;
}
.course .resume__block--contact .btn {
  font-size: 14px;
  line-height: 20px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 8px;
  color: #FFFFFF;
  padding: 17px;
  background: #2196F3;
  border-radius: 6px;
  margin-bottom: 26px;
}
.course .resume__block--contact .btn img {
  width: 18px;
  height: 18px;
}
@media (max-width: 767px) {
  .course .resume__premium {
    top: 8px;
    right: 8px;
    border-radius: 6px;
    min-width: 32px;
    height: 32px;
    position: unset !important;
  }
  .course .resume__premium img {
    margin-right: 0;
  }
  .course .resume__premium p {
    display: none;
  }
  .course .resume__header {
    flex-direction: row !important;
  }
  .course .resume__header .course_like {
    width: 32px;
    height: 32px;
    position: unset !important;
    right: 8px;
    min-width: 32px;
    top: 48px;
  }
  .course .resume__header .course_like i {
    background-size: 16px;
  }
  .course .vacancy_company__share .hovered .vacancy_company__share__item {
    padding: 14px 16px !important;
  }
  .course .course_like {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background-color: #F4F6F9 !important;
  }
  .course .course_like i {
    margin: 0 !important;
  }
}

html {
  scroll-behavior: smooth;
}

#blur {
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: -75px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 21;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s linear;
}
#blur.open {
  opacity: 1;
  visibility: visible;
}

#loading-image {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
}
#loading-image img {
  width: 100%;
  height: 100%;
}

.section-title {
  font-weight: 600;
  font-size: 17px;
  line-height: 21px;
  text-transform: uppercase;
  color: #212944;
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  width: 100%;
  font-family: "Inter" !important;
}
@media (max-width: 767px) {
  .section-title {
    margin-bottom: 16px;
  }
}

.custom-pagination {
  font-family: "Inter";
  display: flex;
  width: max-content;
}
.custom-pagination li {
  margin: 0;
}
.rotate-pagination-item {
  transform: rotate(180deg);
}
.custom-pagination li a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #212944;
  width: 40px;
  height: 40px;
}
.custom-pagination li a:hover, .custom-pagination li a.active {
  background: #F4F6F9;
  color: #2196F3;
}
.custom-pagination li a.disabled {
  cursor: default;
}
.custom-pagination li a.disabled:hover {
  background: transparent;
}
.custom-pagination li a.disabled img {
  filter: unset;
}
.custom-pagination li a img {
  filter: brightness(0) saturate(100%) invert(12%) sepia(10%) saturate(3873%) hue-rotate(189deg) brightness(90%) contrast(87%);
}
@media (max-width: 767px) {
  .custom-pagination {
    margin: 0 auto;
  }
}

.new-categories-container .section-title {
  font-weight: 700 !important;
  font-size: 17px !important;
  line-height: 21px !important;
  text-transform: uppercase;
  color: #212944 !important;
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 24px;
}
.new-categories-container .section-title:before {
  content: "";
  width: 3px;
  height: 24px;
  background-color: #2196F3;
  display: block;
  margin-right: 16px;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .main_new_search_panel {
    margin-bottom: 0 !important;
  }
}

.tags {
  position: relative;
  padding: 24px 0;
  background-color: #F4F6F9;
}
.tags .swiper-container {
  position: relative;
  overflow: hidden;
}
.tags .swiper-container:after {
  height: 100%;
  width: 100px;
  top: 0;
  z-index: 5;
  content: "";
  position: absolute;
  right: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, white 97%, white 100%);
}
.tags .swiper-button-next, .tags .swiper-button-prev {
  width: 32px;
  height: 32px;
  background-image: url("/content/assets/images/profile/svg-icons/arrow-right-dark.svg");
  background-repeat: no-repeat;
  background-position: center;
  border-color: #e0e0e0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  margin: 0;
  transform: translateY(-50%);
  margin-top: -3px;
  background-color: white;
}
.tags .swiper-button-next:before, .tags .swiper-button-next:after, .tags .swiper-button-prev:before, .tags .swiper-button-prev:after {
  display: none;
}
.tags .swiper-button-prev {
  transform: translateY(-50%) rotate(180deg);
  margin-top: 0;
  left: 0 !important;
}
.tags .swiper-button-next {
  right: 0 !important;
}
.tags ul {
  display: flex;
  flex-wrap: nowrap;
}
.tags ul li {
  width: max-content !important;
}
.tags ul li a {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  background-color: white;
  color: #2196F3;
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
}
.new-categories-section {
  margin-bottom: 40px;
}
.new-categories-section .section_title {
  margin-top: 40px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .new-categories-section {
    margin-bottom: 8px;
  }
  .new-categories-section .section_title {
    margin-top: 32px;
  }
  .new-categories-section .swiper {
    overflow: visible;
  }
  .new-categories-section .container {
    padding: 0;
  }
  .new-categories-section .new-categories-carousel {
    padding: 0 15px;
  }
  .new-categories-section .new-stores-carousel {
    padding: 0 15px;
  }
  .new-categories-section .new-categories-container {
    padding: 0 15px;
  }
}

.new-categories-slider {
  margin-bottom: 20px;
}
.new-categories-slider.active:after {
  display: none;
}
.new-categories-slider:after {
  height: 100%;
  width: 60px;
  top: 0;
  z-index: 5;
  content: "";
  position: absolute;
  right: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, white 70%, white 100%);
  pointer-events: none;
}
.new-categories-slider .new-cat-count {
  font-family: "Inter" !important;
  font-size: 14px !important;
  line-height: 19px !important;
}
.new-categories-slider .new-cat-name {
  font-weight: 600 !important;
  font-family: "Inter" !important;
  font-size: 16px !important;
  line-height: 21px !important;
}
.new-categories-slider .new-cat-card {
  max-width: 170px;
}
.new-categories-slider .new-cat-card.apply-cv .new-cat-name {
  color: #2196F3;
}
.new-categories-slider .swiper-button-next, .new-categories-slider .swiper-button-prev {
  width: 48px;
  height: 48px;
  background-image: url("/content/assets/images/profile/svg-icons/arrow-right-dark.svg");
  background-repeat: no-repeat;
  background-position: center;
  border-color: #e0e0e0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  margin: 0;
  transform: translateY(-50%);
  margin-top: -3px;
  background-color: white;
  background-size: 25%;
}
.new-categories-slider .swiper-button-next:before, .new-categories-slider .swiper-button-next:after, .new-categories-slider .swiper-button-prev:before, .new-categories-slider .swiper-button-prev:after {
  display: none;
}
.new-categories-slider .swiper-button-prev {
  transform: translateY(-50%) rotate(180deg);
  margin-top: 0;
  box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
}
.new-categories-slider .swiper-button-next {
  right: -25px !important;
}
@media (max-width: 767px) {
  .new-categories-slider .swiper-wrapper {
    gap: 8px;
    overflow-x: auto;
    margin: 0 -15px;
    padding: 0 15px 16px;
  }
  .new-categories-slider .swiper-wrapper::-webkit-scrollbar {
    width: 100px;
    height: 1px;
  }
  .new-categories-slider .swiper-wrapper::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px #E4E7EC;
    border-radius: 2.5px;
  }
  .new-categories-slider .swiper-wrapper::-webkit-scrollbar-thumb {
    background-color: #2196F3;
    outline: none;
    border-radius: 2.5px;
  }
  .new-categories-slider .new-cat-count {
    font-size: 10px !important;
    line-height: 10px !important;
  }
  .new-categories-slider .new-cat-name {
    font-size: 14px !important;
    line-height: 15px !important;
    margin-top: auto !important;
    margin-bottom: 12px !important;
  }
  .new-categories-slider .new-categories-carousel {
    padding-bottom: 0;
  }
  .new-categories-slider .new-stores-carousel {
    padding-bottom: 0;
  }
  .new-categories-slider .swiper-slide {
    width: 99px;
  }
  .new-categories-slider:after {
    display: none;
  }
  .new-categories-slider .swiper-button-next, .new-categories-slider .swiper-button-prev {
    display: none;
  }
}

.vacancy_cat_tabs .row::-webkit-scrollbar {
  display: none;
}
.vacancy_cat_tabs .row::-webkit-scrollbar-track {
  box-shadow: none;
}
.vacancy_cat_tabs .row::-webkit-scrollbar-thumb {
  background-color: transparent;
  outline: none;
}

.cat_tabs {
  padding: 26px 0 0;
  margin: 0;
  background-color: white;
}
.cat_tabs .cat_tabs__slider {
  overflow-x: hidden;
  position: relative;
}
.cat_tabs .cat_tabs__slider.active:after {
  display: none;
}
.cat_tabs .cat_tabs__slider:after {
  height: 100%;
  width: 100px;
  top: 0;
  z-index: 5;
  content: "";
  position: absolute;
  right: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, white 70%, white 100%);
  pointer-events: none;
}
.cat_tabs .cat_tabs__slider .swiper-button-next, .cat_tabs .cat_tabs__slider .swiper-button-prev, .cat_tabs .cat_tabs__slider .swiper-button-prev1 {
  width: 32px;
  height: 32px;
  background-image: url("/content/assets/images/profile/svg-icons/arrow-right-dark.svg");
  background-repeat: no-repeat;
  background-position: center;
  border-color: #e0e0e0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  margin: 0;
  transform: translateY(-50%);
  margin-top: -3px;
  background-color: white;
  background-size: 25%;
}
.cat_tabs .cat_tabs__slider .swiper-button-next:before, .cat_tabs .cat_tabs__slider .swiper-button-next:after, .cat_tabs .cat_tabs__slider .swiper-button-prev:before, .cat_tabs .cat_tabs__slider .swiper-button-prev:after, .cat_tabs .cat_tabs__slider .swiper-button-prev1:before, .cat_tabs .cat_tabs__slider .swiper-button-prev1:after {
  display: none;
}
.cat_tabs .cat_tabs__slider .swiper-button-prev, .cat_tabs .cat_tabs__slider .swiper-button-prev1 {
  transform: translateY(-50%) rotate(180deg);
  margin-top: 0;
  box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
  left: 0 !important;
}
.cat_tabs .cat_tabs__slider .swiper-button-next, .cat_tabs .cat_tabs__slider .swiper-button-next1 {
  right: 0 !important;
}
@media (max-width: 768px) {
  .cat_tabs .cat_tabs__slider:after {
    display: none;
  }
  .cat_tabs .cat_tabs__slider .swiper-button-next, .cat_tabs .cat_tabs__slider .swiper-button-prev {
    display: none;
  }
}
.cat_tabs__list {
  display: flex;
}
.cat_tabs__list li {
  margin-right: 16px;
  width: max-content !important;
}
.cat_tabs__list li:last-child {
  margin-right: 0;
}
.cat_tabs__list li a {
  background: #F4F6F9;
  border-radius: 5px;
  padding: 8px 16px;
  font-size: 14px;
  line-height: 25px;
  display: flex;
  align-items: center;
  color: #212944;
  font-family: "Inter";
  margin-bottom: 0;
  white-space: nowrap;
}
.cat_tabs__list li a:hover {
  color: #212944;
  background-color: #eaeef4;
}
.cat_tabs__list li a span {
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
  display: block;
  color: #2196F3;
  width: unset;
  height: unset;
  font-family: "Inter";
  background-color: transparent;
}
@media (max-width: 768px) {
  .cat_tabs {
    padding: 0;
    margin-bottom: 32px;
  }
  .cat_tabs .container {
    padding-left: 0;
    padding-right: 0;
  }
  .cat_tabs .cat_tabs__slider {
    padding: 16px 0 0 15px;
  }
  .cat_tabs.child_cat_tabs .cat_tabs__slider {
    padding: 16px 0 0 30px;
  }
  .cat_tabs__list li a {
    width: max-content;
    white-space: nowrap;
  }
}

.main_cards_Section .section_title {
  margin-top: 10px;
  margin-bottom: 0;
}
.main_cards_Section .card_box {
  margin-bottom: 20px;
}

.vacancy_tab_links {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .vacancy_tab_links {
    margin-top: 32px;
  }
  .vacancy_tab_links h1 {
    padding-top: 0px;
  }
}

.cat_sec_title {
  margin-top: 40px;
  margin-bottom: 25px !important;
}
.cat_sec_title h2 {
  margin-bottom: 0;
}

.mfp-content .logo {
  left: 0;
}

.elan_inner .inner_fixed_bottom.dont-fixed {
  position: relative !important;
  box-shadow: unset !important;
  transition: unset !important;
  transform: unset !important;
}

.fixed_section {
  background: #FFFFFF;
  box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.05);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 0;
  z-index: 1000;
  font-family: "Inter" !important;
}
.fixed_section .email {
  position: relative;
}
.fixed_section .email.active:before, .fixed_section .email.active:after {
  opacity: 1;
  visibility: visible;
}
.fixed_section .email:before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  background: #101828;
  border-radius: 8px;
  padding: 8px;
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 8px;
  display: block;
  width: max-content;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s linear;
}
.fixed_section .email:after {
  position: absolute;
  content: "";
  left: 50%;
  width: 12px;
  height: 12px;
  background: #101828;
  border-radius: 1px;
  transform: rotate(45deg) translateX(-50%);
  top: -13px;
  opacity: 0;
  visibility: hidden;
}
.fixed_section .btn-tool {
  display: none !important;
}
.fixed_section.dont-fixed {
  position: relative !important;
  box-shadow: unset !important;
  transition: unset !important;
  transform: unset !important;
  padding: 0;
}
.fixed_section.dont-fixed .container {
  padding: 0;
}
.fixed_section.dont-fixed .fixed_section__left {
  flex-wrap: wrap;
}
.fixed_section.dont-fixed .fixed_section__left .btn {
  margin-right: 0;
}
.fixed_section__left, .fixed_section__right {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
.fixed_section__left .d-flex, .fixed_section__right .d-flex {
  flex: 1;
}
@media (max-width: 767px) {
  .fixed_section__left {
    flex-wrap: wrap;
  }
  .fixed_section__left .d-flex {
    justify-content: flex-start !important;
  }
}
.fixed_section__right {
  display: none;
}
.fixed_section .btn {
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
  padding: 6.5px 32px;
  background: #2196F3;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 16px;
}
.fixed_section .btn.show_email {
  margin-right: 0;
}
.fixed_section .btn.number {
  margin-left: 14px;
  width: max-content !important;
}
.fixed_section .btn.show_number {
  width: max-content !important;
}
.fixed_section .btn img {
  margin-right: 8px;
}
.fixed_section .btn-grey, .fixed_section .btn-img {
  background-color: #F4F6F9;
  color: rgba(33, 41, 68, 0.75);
  padding: 6.5px 9px;
  margin-right: 0;
}
.fixed_section .btn-img {
  margin-right: 0;
  padding: 0;
  width: 40px;
  height: 40px;
}
.fixed_section .btn-img img {
  margin: 0;
}
.fixed_section .course_like {
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
  background-color: transparent;
  width: auto;
}
.fixed_section .course_like i {
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 12px;
}
.fixed_section .course_like i.unliked_ico {
  background-image: url("/content/assets/images/courses/heart.svg");
}
.fixed_section .course_like i.liked_ico {
  background-image: url("/content/assets/images/courses/heart2.svg");
}
@media (max-width: 1199px) {
  .fixed_section .vacancy_company__share:hover .hovered, .fixed_section .vacancy_company__share:focus .hovered {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .fixed_section .row .col-md-8 {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .fixed_section .btn-tool {
    display: flex !important;
    margin-left: 10px;
  }
  .fixed_section .btn-tool:hover, .fixed_section .btn-tool:focus {
    box-shadow: none;
  }
  .fixed_section .btn-tool:hover .fixed_section__tool, .fixed_section .btn-tool:focus .fixed_section__tool {
    opacity: 1;
    visibility: visible;
  }
  .fixed_section .hovered {
    position: absolute;
    bottom: 100%;
    right: 0;
    background-color: white;
    filter: drop-shadow(0px 2px 40px rgba(104, 104, 104, 0.2));
    border-radius: 6px;
    display: block !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.2s ease-in-out;
  }
  .fixed_section .hovered:after {
    position: absolute;
    content: "";
    width: 12px;
    height: 12px;
    background-color: white;
    right: 17px;
    bottom: -5px;
    transform: rotate(45deg);
    border-radius: 2px;
  }
  .fixed_section .hovered .vacancy_company__share__item {
    position: unset !important;
    opacity: 1;
    visibility: visible;
    filter: none;
    padding-top: 0;
    width: 100%;
  }
  .fixed_section .hovered .vacancy_company__share__item:after {
    display: none;
  }
  .fixed_section .hovered .vacancy_company__share__item button {
    width: 100%;
    justify-content: center;
  }
  .fixed_section .fixed_section__tool {
    padding: 16px 16px 14px;
    background: #FFFFFF;
    border-radius: 6px;
    margin-bottom: 10px;
    transition: 0.2s linear;
    border-bottom: 1px solid #F4F6F9;
  }
  .fixed_section .fixed_section__tool .contact__btn {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
  }
  .fixed_section .fixed_section__tool .contact__btn .btn {
    background-color: transparent;
    padding: 10px 8px;
    width: 100%;
    margin: 0;
    white-space: nowrap;
    height: 42px;
    min-height: 42px;
  }
  .fixed_section .fixed_section__tool .contact__btn .btn img {
    margin-right: 8px;
    width: 20px;
  }
  .fixed_section .fixed_section__tool .contact__btn .resume__premium-btn {
    border: 1px solid #FF7F00;
    border-radius: 6px;
    color: #FF7F00;
  }
  .fixed_section .fixed_section__tool .contact__btn .resume__up-btn {
    border: 1px solid #2196F3;
    color: #2196F3;
  }
}
@media (max-width: 767px) {
  .fixed_section__left, .fixed_section__right {
    align-items: flex-start;
  }
  .fixed_section.dont-fixed .fixed_section__left .d-flex {
    flex: 1;
  }
  .fixed_section .vacancy_company__share {
    position: unset;
  }
  .fixed_section .vacancy_company__share .hovered {
    margin-bottom: 30px;
    opacity: 0 !important;
    visibility: hidden !important;
    right: 15px;
    left: 15px;
  }
  .fixed_section .vacancy_company__share .hovered.open {
    opacity: 1 !important;
    visibility: visible !important;
  }
  .fixed_section__left {
    gap: 10px;
  }
  .fixed_section__left .d-flex {
    gap: 10px;
    flex: 0;
    margin-right: auto;
  }
  .fixed_section__left .vacancy_company__share {
    margin: 0 !important;
    width: 48px;
    height: 48px;
    min-width: 48px;
  }
  .fixed_section__left .card_like {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }
  .fixed_section__left .card_like i {
    margin: 0 !important;
  }
  .fixed_section .btn-apply {
    width: 100%;
    flex: 1;
  }
  .fixed_section .btn {
    font-size: 12px;
    margin-right: 0;
    min-height: 48px;
    white-space: nowrap;
  }
  .fixed_section .btn.show_number {
    margin: 0 !important;
    width: 48px !important;
    height: 48px !important;
    min-width: 48px;
  }
  .fixed_section .btn.show_email {
    margin: 0 !important;
    width: 100% !important;
  }
  .fixed_section .btn.number {
    margin: 0 !important;
  }
  .fixed_section .btn.email {
    margin: 0 !important;
  }
  .fixed_section .btn span {
    display: none;
  }
  .fixed_section .btn img {
    margin: 0;
  }
  .fixed_section__right {
    align-items: flex-end;
  }
  .fixed_section .course_like {
    width: 48px;
    height: 48px;
    background-color: #F4F6F9 !important;
  }
  .fixed_section .course_like span {
    display: none;
  }
  .fixed_section .course_like i {
    margin: 0;
  }
}

.wihlist_new .container {
  padding: 0 15px;
}
.wihlist_new .row {
  width: 100%;
}
@media (max-width: 767px) {
  .wihlist_new {
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .fixed_section__course .hovered .vacancy_company__share__item {
    padding: 14px 16px;
  }
}

.vacancy_company__share__icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.nsp_bottom * {
  font-weight: 400 !important;
}

.chosen-container * {
  font-weight: 400 !important;
}

/*# sourceMappingURL=build.css.map */
