@charset "UTF-8";
/* Start Animation Loader */

.animation_loader {
  display: none;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 999;
  position: fixed;
  background: rgba(255,255,255,0.7);
}
.animation_loader_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}

.animation_loader .item {
  width: 20px;
  height: 20px;
  margin: 10px;
  list-style-type: none;
  transition: 0.5s all ease;
}

.animation_loader .item:nth-child(1) {
  animation: right-1 1s infinite alternate;
  background-color: #49b8e5;
  animation-delay: 100ms;
}
@keyframes right-1 {
  0% {
    transform: translateY(-60px);
  }
  100% {
    transform: translateY(60px);
  }
}

.animation_loader .item:nth-child(2) {
  animation: right-2 1s infinite alternate;
  background-color: #1e98d4;
  animation-delay: 200ms;
}
@keyframes right-2 {
  0% {
    transform: translateY(-70px);
  }
  100% {
    transform: translateY(70px);
  }
}

.animation_loader .item:nth-child(3) {
  animation: right-3 1s infinite alternate;
  background-color: #2a92d0;
  animation-delay: 300ms;
}
@keyframes right-3 {
  0% {
    transform: translateY(-80px);
  }
  100% {
    transform: translateY(80px);
  }
}

.animation_loader .item:nth-child(4) {
  animation: right-4 1s infinite alternate;
  background-color: #3a88c8;
  animation-delay: 400ms;
}
@keyframes right-4 {
  0% {
    transform: translateY(-90px);
  }
  100% {
    transform: translateY(90px);
  }
}

.animation_loader .item:nth-child(5) {
  animation: right-5 1s infinite alternate;
  background-color: #507cbe;
  animation-delay: 500ms;
}
@keyframes right-5 {
  0% {
    transform: translateY(-100px);
  }
  100% {
    transform: translateY(100px);
  }
}

/* End Animation Loader */


.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 31px 0;
  position: relative;
}
.header__logo {
  font-family: "WorkSans-Medium";
  font-size: calc((100vw - 320px)/1600*(24 - 18) + 18px);
  color: #1E3368;
  min-height: 50px;
  position: relative;
  padding: 15px 0 0 0;
}
.header__logo::before {
  content: "";
  display: block;
  height: 50px;
  width: 72%;
  border-radius: 0 26px;
  background-color: #ACD2FD;
  position: absolute;
  left: -20px;
  top: 3px;
  z-index: -1;
}
.header__logo span {
  font-size: calc((100vw - 320px)/1600*(16 - 15) + 15px);
  color: #1E3368;
  position: absolute;
  bottom: -16px;
  right: 0;
  font-family: "WorkSans-SemiBold";
}
.header__buttons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header__buttons .register {
  margin-left: 15px;
}
.header__buttons .icon-close {
  display: none;
  position: absolute;
  top: 18px;
  right: 19px;
  font-size: 27px;
}
.header .burger-menu {
  height: 25px;
  width: 36px;
  font-size: 25px;
  cursor: pointer;
  display: none;
  position: relative;
}
.header .burger-menu .amount {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 27px;
  height: 27px;
  top: 3px;
  left: -11px;
  border-radius: 50%;
  background-color: #ACD2FD;
  font-family: "WorkSans-Medium";
  font-size: 15px;
  line-height: 1;
  color: #1E3368;
}
.header.user {
  align-items: flex-start;
}
.header.user .header__logo {
  padding-bottom: 13px;
  margin-right: 20px;
}
.header.user .header__logo img {
  display: block;
}
.header.user .header__user {
  position: relative;
  margin-left: auto;
}
.header.user .header__user-name {
  position: relative;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px 20px 0 0;
  background-color: transparent;
  padding: 0 42px 0 21px;
  color: #1E3368;
  transition: ease 0.4s;
  box-shadow: none;
  cursor: pointer;
}
.header.user .header__user-name .icon {
  font-size: 21px;
}
.header.user .header__user-name p {
  margin: 0;
  max-width: 175px;
  min-width: 50px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  margin: 5px 0 0 10px;
}
.header.user .header__user-name::after {
  content: "";
  font-family: "icomoon";
  font-size: 8px;
  color: #1E3368;
  position: absolute;
  right: 20px;
  top: 19px;
  transform: rotateX(0deg);
  transition: ease 0.4s;
}
.header.user .header__user-name.active {
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  transition: ease 0.4s;
}
.header.user .header__user-name.active + .header__user-menu {
  opacity: 1;
  visibility: visible;
  transition: ease 0.4s;
}
.header.user .header__user-name.active::after {
  transform: rotateX(180deg);
  transition: ease 0.4s;
}
.header.user .header__user-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  margin-top: 2px;
  text-align: center;
  font-size: 18px;
  color: #1E3368;
  z-index: 5;
  border-radius: 0 0 20px 20px;
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.05);
  padding: 10px 0 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: ease 0.4s;
}
.header.user .header__user-menu li a {
  padding: 9px 20px 10px;
  background-color: transparent;
  color: inherit;
  display: inline-block;
  width: 100%;
  transition: background-color ease 0.4s;
}
.header.user .header__user-menu li a:hover {
  background-color: #ACD2FD;
  transition: background-color ease 0.4s;
}
.header.user .header__buttons {
  margin: 2px 0 0 4.2%;
}
.header.user .header__buttons .button {
  min-width: 160px;
}
.header.user .header__buttons .button:not(:first-of-type) {
  margin-left: 30px;
}
.header.user .logout {
  max-width: 115px;
  margin-left: 30px;
  min-width: 115px;
}
.header.user.header__clinician .header__buttons .button {
  min-width: 150px;
}
.header.user.header__clinician .header__buttons .button:not(:first-of-type) {
  margin-left: 15px;
}
.header.user .header__buttons .button.disabled {
  background-color: rgba(30, 51, 104, 0.6);
  cursor: not-allowed;
  box-shadow: none;
}

a.disabled, 
.disabled > a {
  cursor: not-allowed;
}

.footer {
  margin-top: auto;
  background-color: #1E3368;
  padding: 38px 0 20px;
}
.footer .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.footer__menu {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.footer__menu li {
  margin-right: 30px;
  margin-bottom: 20px;
}
.footer__menu li a {
  color: #fff;
  font-size: calc((100vw - 320px)/1600*(18 - 16) + 16px);
  display: inline-block;
  line-height: 1.1;
}
.footer .copyright {
  color: #A8A6DA;
  font-size: 16px;
  margin: 0;
}

body {
  font-family: "WorkSans-Regular";
  font-size: 18px;
  color: #828282;
  line-height: 1.4;
  background-color: #fff;
  background-image: url(../image/bg/main-bg.svg);
  background-size: 100% auto;
  background-repeat: repeat-y;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  max-width: 100vw;
  overflow-x: hidden;
}
body::after {
  content: "";
  display: block;
  height: 100vh;
  width: 100vw;
  background-color: rgba(62, 66, 91, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  transition: opacity ease 0.4s;
}
body.modal-open::after {
  opacity: 1;
  visibility: visible;
  transition: opacity ease 0.4s;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
.form {
  position: relative;
}
.form-item {
  margin-bottom: 31px;
  position: relative;
}
.form-item label {
  font-family: "WorkSans-Medium";
  color: #1E3368;
  font-size: 18px;
  line-height: 21px;
  max-width: 100%;
}
.form-item label.required::after {
  content: "*";
  display: inline-block;
  color: inherit;
  font-size: inherit;
}
.form-item label > span.text {
  opacity: 0.5;
}
.form-item input.name {
  text-transform: capitalize;
}
.form-item input.masked {
  color: rgba(30, 51, 104, 0.5);
}
.form-item input.masked.placeholder {
  color: #1e3368;
}
.form-item input, .form-item textarea, .form-item select {
  color: #1e3368;
  border-bottom: 1px solid #ACD2FD;
  transition: border ease 0.4s, color ease 0.4s;
  filter: none;
}
.form-item input.error, .form-item textarea.error, .form-item select.error {
  border-bottom: 1px solid #EB5757;
  transition: border ease 0.4s;
}
.form-item input:focus, .form-item input:active, .form-item textarea:focus, .form-item textarea:active, .form-item select:focus, .form-item select:active {
  color: #1E3368;
  border-bottom: 1px solid #1E3368;
  transition: border ease 0.4s, color ease 0.4s;
}
.form-item input.placeholder, .form-item textarea.placeholder, .form-item select.placeholder {
  color: #1e3368;
}
.form-item input:disabled, .form-item textarea:disabled, .form-item select:disabled {
  background-color: transparent;
}
.form-item input:disabled:focus, .form-item input:disabled:active, .form-item textarea:disabled:focus, .form-item textarea:disabled:active, .form-item select:disabled:focus, .form-item select:disabled:active {
  color: #1e3368;
  border-bottom: 1px solid #ACD2FD;
}
.form-item input:-webkit-autofill, .form-item input:-webkit-autofill:hover, .form-item input:-webkit-autofill:focus, .form-item textarea:-webkit-autofill, .form-item textarea:-webkit-autofill:hover, .form-item textarea:-webkit-autofill:focus, .form-item select:-webkit-autofill, .form-item select:-webkit-autofill:hover, .form-item select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(0, 174, 255, 0.04) 50%, rgba(255, 255, 255, 0) 51%, rgba(0, 174, 255, 0.03) 100%);
}
.form-item textarea {
  min-height: 150px;
  border: 1px solid #ACD2FD;
  border-radius: 20px;
  padding: 15px 20px;
  resize: none;
  overflow: auto;
  margin-top: 4px;
  box-sizing: border-box;
  display: block;
}
.form-item textarea.error {
  border: 1px solid #EB5757;
}
.form-item textarea:focus, .form-item textarea:active {
  border: 1px solid #1E3368;
}
.form-item .date-wrapper {
  position: relative;
  margin-bottom: 24px;
  height: 41px;
}
.form-item .date-wrapper::after {
  content: "";
  font-family: "icomoon";
  display: inline-block;
  font-size: 23px;
  color: #1E3368;
  opacity: 0.5;
  position: absolute;
  bottom: 4px;
  right: 0;
  pointer-events: none;
  background-color: #fff;
  transition: opacity ease 0.25s;
}
.form-item .date-wrapper.disabled::after {
  opacity: 0;
  transition: opacity ease 0.25s;
}
.form-item .file-wrapper {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.form-item .file-wrapper label {
  flex-grow: 1;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ACD2FD;
  cursor: pointer;
  max-width: calc(100% - 237px);
  min-height: 44px;
  transition: ease 0.25s;
}
.form-item .file-wrapper label input[type=file] {
  display: none;
}
.form-item .file-wrapper label input[type=file] + span {
  color: #1E3368;
  font-family: "WorkSans-Regular";
}
.form-item .file-wrapper label .filename {
  opacity: 0.5;
  word-wrap: break-word;
  overflow: hidden;
  font-family: "WorkSans-Regular";
}
.form-item .file-wrapper .button {
  max-width: 217px !important;
  margin: 0 !important;
  align-self: flex-end;
}
.form-item .file-wrapper.active .button {
  background-color: #ACD2FD;
}
.form-item .file-wrapper.error label {
  border-bottom: 1px solid #EB5757;
  transition: ease 0.25s;
}
.form-item .file-wrapper.uploaded label {
  align-items: flex-end;
  border-bottom: 1px solid transparent;
  margin-top: 20px;
  min-height: 0;
}
.form-item .file-wrapper.uploaded label .filename {
  opacity: 1;
}
.form-item .file-wrapper.uploaded .remove {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  margin-left: 20px;
}
.form-item.uploaded-files.empty::after {
  content: attr(data-empty);
  display: block;
  font-size: 18px;
  line-height: 21px;
  color: #1E3368;
  width: 100%;
  margin-top: 20px;
}
.form-item-half {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
}
.form-item-toggle label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.form-item-toggle label input {
  display: none;
}
.form-item-toggle label input:checked ~ span {
  transition: ease 0.4s;
}
.form-item-toggle label input:checked ~ span.yes {
  color: #1E3368;
}
.form-item-toggle label input:checked ~ span.no {
  color: rgba(30, 51, 104, 0.4);
}
.form-item-toggle label input:checked ~ span.switch::before {
  left: 2px;
}
.form-item-toggle label input:disabled ~ span {
  transition: ease 0.4s;
}
.form-item-toggle label input:disabled ~ span.switch {
  border: 1px solid rgba(30, 51, 104, 0.25);
}
.form-item-toggle label input:disabled ~ span.switch::before {
  background-color: rgba(30, 51, 104, 0.6);
}
.form-item-toggle span {
  font-size: 18px;
  transition: ease 0.4s;
}
.form-item-toggle span.yes {
  color: rgba(30, 51, 104, 0.4);
  margin-right: 13px;
}
.form-item-toggle span.no {
  color: #1E3368;
  margin-left: 10px;
}
.form-item-toggle span.switch {
  display: block;
  width: 54px;
  height: 27px;
  background-color: transparent;
  border: 1px solid #A2ECC0;
  position: relative;
  border-radius: 13px;
}
.form-item-toggle span.switch::before {
  content: "";
  display: block;
  width: 21px;
  height: 21px;
  background-color: #4ECA80;
  border-radius: 50%;
  box-shadow: 0px 0px 2.5px rgba(0, 0, 0, 0.25);
  top: 2px;
  left: 29px;
  position: absolute;
  transition: ease 0.4s;
}

.login-page .form-item-toggle {
  margin: 0 40px 0 30px;
}
.login-page .form-item-toggle span.switch {
  background: #DDDDDD;
  box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 50px;
  border: unset;
  width: 46px;
  height: 28px;
  transition: all .5s ease;
}
.login-page .form-item-toggle span.switch::before {
  background: #DDDDDD;
  border: 1px solid #FFFFFF;
  width: 22px;
  height: 22px;
  left: 3px;
  transition: all .5s ease;
}
.login-page .form-item-toggle label input:checked ~ span.switch {
  background: #4ECA80;
}
.login-page .form-item-toggle label input:checked ~ span.switch::before {
  background: #4ECA80;
  top: 2px;
  left: 19px;
}
.login-page .form-item-toggle label input:disabled ~ span.switch {
  border: unset;
}
.login-page .toggle-passcode .form-item-toggle {
  margin: 20px;
}
.login-page .toggle-passcode .form-item-toggle span.label {
  margin-left: 10px;
}
.login-page .form-item.disabled {
  opacity: 0.5;
}
.login-passcode-page .passcode-text {
  text-align: center;
}
.login-passcode-page .form-item.passcode-inputs {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 31px;
}
.login-passcode-page .form-item.passcode-inputs input {
  margin: 10px;
  border: 1px solid #ACD2FD;
  max-width: 41px;
  text-align: center;
}
.login-passcode-page .form-item.passcode-inputs input:focus {
  border: 1px solid #1E3368;
}
.login-passcode-page .resend-passcode {
  display: inline-block;
  cursor: pointer;
}
.form-item-wrap {
  display: flex;
  align-items: center;
}
.form-item-wrap > label {
  font-size: 18px;
  font-family: "WorkSans-Medium";
  display: inline-block;
  margin-right: 20px;
  color: #1E3368;
  max-width: 100%;
}
.form-item-wrap > label.required::after {
  content: "*";
  display: inline-block;
  color: inherit;
  font-size: inherit;
}
.form-item.else {
  display: none;
  order: 2;
}
.form-item span.pseudo {
  color: #1E3368;
  position: absolute;
  bottom: 6px;
  right: 0;
  font-size: 18px;
  background-color: #fff;
}
.form-item .attachment {
  display: flex;
  width: 100%;
  min-height: 41px;
}
.form-item .attachment a {
  display: inline-flex;
  align-items: flex-end;
  width: auto;
  font-size: 18px;
  color: #2D9CDB;
  border-bottom: 1px solid #2D9CDB;
  transition: ease 0.25s;
  line-height: 1;
  padding: 0;
}
.form-item .attachment a:hover {
  border-bottom: 1px solid transparent;
  transition: ease 0.25s;
}
.form-field {
  width: 100%;
  font-size: 18px;
  padding: 9px 0;
  min-height: 41px;
  box-shadow: none;
}
.form-checkbox input, .form-radiobox input {
  display: none;
}
.form-checkbox input:checked + span::after, .form-radiobox input:checked + span::after {
  opacity: 1;
  width: 14px;
  height: 14px;
  top: 4px;
  left: 4px;
  transition: all ease 0.25s;
}
.form-checkbox input.error + span::before, .form-radiobox input.error + span::before {
  border: 1px solid #EB5757;
  transition: all ease 0.25s;
}
.form-checkbox span, .form-radiobox span {
  position: relative;
  color: #1E3368;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  line-height: 1.15;
  font-size: calc((100vw - 320px)/1600*(18 - 16) + 16px);
  cursor: pointer;
  min-height: 22px;
  padding-left: 32px;
}
.form-checkbox span::before, .form-checkbox span::after, .form-radiobox span::before, .form-radiobox span::after {
  content: "";
  display: block;
  position: absolute;
  box-sizing: border-box;
}
.form-checkbox span::before, .form-radiobox span::before {
  width: 22px;
  height: 22px;
  left: 0;
  top: 0;
  background-color: transparent;
  transition: all ease 0.25s;
  border: 1px solid #A2ECC0;
}
.form-checkbox span::after, .form-radiobox span::after {
  width: 0px;
  height: 0px;
  background-color: #4ECA80;
  top: 10px;
  left: 10px;
  opacity: 0;
  transition: all ease 0.25s;
}
.form-radiobox span::before, .form-radiobox span::after {
  border-radius: 50%;
}
.form .error-block {
  display: none;
  color: #EB5757;
  padding: 0 0 30px;
  font-size: calc((100vw - 320px)/1600*(18 - 16) + 16px);
  line-height: 1.125;
  font-family: "WorkSans-Medium";
}
.form .error-block.visible {
  display: block;
}
.form .error-block span {
  display: block;
  margin-bottom: 5px;
}
.form.pseudo::before {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  background-color: #fff;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
}
.form > *.hidden {
  display: none !important;
}

.title {
  font-family: "WorkSans-Bold";
  color: #1E3368;
  font-size: calc((100vw - 320px)/1600*(58 - 32) + 32px);
  line-height: 1.24;
}

.subtitle {
  font-family: "WorkSans-Regular";
  color: #1E3368;
  font-size: calc((100vw - 320px)/1600*(30 - 20) + 20px);
  line-height: 1.38;
}

.standart {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 30px;
  padding-bottom: 30px;
  overflow: hidden;
}
.standart .left {
  width: 44%;
  position: relative;
}
.standart .left .title {
  margin: 53px 0 0 0;
}
.standart .left .text {
  font-size: calc((100vw - 320px)/1600*(20 - 18) + 18px);
  padding-right: 10px;
  margin: 15px 0;
}
.standart .left::after {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}
.standart .form {
  width: 100%;
  max-width: 66%;
  padding: 60px 107px 70px;
  display: flex;
  flex-direction: column;
}
.standart .form::before {
  border-radius: 135px 0;
}
.standart .form .buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.standart .form .buttons a {
  display: inline-block;
  font-size: 18px;
  transition: border ease 0.4s;
}
.standart .form .buttons a.link-grey {
  border-bottom: 1px solid #828282;
  line-height: 1;
  color: #828282;
}
.standart .form .button {
  margin: 10px auto 0;
  font-family: "WorkSans-SemiBold";
  width: 66%;
}
.standart .form .success__message {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.4s;
}
.standart .form .success__message .subtitle {
  font-family: "WorkSans-SemiBold";
  font-size: calc((100vw - 320px)/1600*(22 - 20) + 20px);
  color: #1E3368;
  margin: 0 auto 40px !important;
  text-align: center;
  justify-content: center;
}
.standart .form .success__message .buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
.standart .form .success__message .buttons .button {
  display: inline-flex;
  max-width: 240px;
  margin: 0 20px;
  width: 100%;
  transition: all ease 0.4s;
}
.standart .form .success__message.visible {
  position: relative;
  left: 0;
  transform: translateX(0%);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.25s, visibility 0.4s;
}
.standart.job-details .form .success__message .buttons {
  margin-bottom: 0;
}

.blue-border-link {
  border-bottom: 1px solid #1E3368;
  line-height: 1;
  color: #1E3368;
}
.blue-border-link:hover {
  border-bottom: 1px solid transparent;
  transition: border ease 0.4s;
}

.page-wrapper {
  max-width: 100%;
  overflow-x: hidden;
}

.wrapper {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 145px;
  text-align: center;
  transition: border-color ease 0.4s, background-color ease 0.4s, color ease 0.4s, box-shadow ease 0.4s, opacity ease 0.4s;
  vertical-align: middle;
  cursor: pointer;
  position: relative;
}
.button-lightblue {
  color: #1E3368;
  font-size: 18px;
  line-height: 1.2;
  background-color: #ACD2FD;
}
.button-lightblue:hover {
  background-color: #1E3368;
  color: #fff;
}
.button-border-lightblue {
  color: #1E3368;
  font-size: 18px;
  line-height: 1.2;
  background-color: transparent;
  border: 3px solid #ACD2FD;
}
.button-border-lightblue.thin {
  font-family: "WorkSans-Regular" !important;
  border: 1px solid #ACD2FD;
}
.button-border-lightblue:hover {
  background-color: #ACD2FD;
}
.button-border-white {
  color: #1E3368;
  font-size: 18px;
  line-height: 1.2;
  background-color: transparent;
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.05);
  border: 3px solid #fff;
}
.button-border-white.active, .button-border-white:hover {
  background-color: #fff;
}
.button-border-white.pseudo::after {
  background-color: #4ECA80;
}
.button-border-green {
  color: #4ECA80;
  font-size: 18px;
  line-height: 1.2;
  background-color: transparent;
  border: 1px solid #4ECA80;
  box-shadow: 0px 10px 20px rgba(41, 168, 92, 0.25);
}
.button-border-green:hover {
  background-color: #4ECA80;
  color: #fff;
}
.button-green {
  background-color: #4ECA80;
  color: #fff;
  box-shadow: 0px 10px 20px rgba(41, 168, 92, 0.25);
}
.button-green:hover {
  background-color: #32B165;
}
.button-green.pseudo::after {
  background-color: #fff;
}
.button-large {
  max-height: 54px;
  height: 54px;
  border-radius: 30px;
  padding: 13px 15px;
}
.button-medium {
  max-height: 45px;
  height: 45px;
  border-radius: 25px;
  padding: 10px 15px;
}
.button .icon-loader {
  margin-left: 5px;
  font-size: 14px;
  display: none;
}
.button .amount {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  top: -8px;
  right: -5px;
  border-radius: 50%;
  background-color: #ACD2FD;
  font-family: "WorkSans-Medium";
  font-size: 15px;
  line-height: 1;
  color: #1E3368;
}
.button .amount.green {
  background-color: #4ECA80;
  color: #fff;
}
.button.loading {
  cursor: not-allowed !important;
}
.button.loading .icon-loader {
  display: inline-block;
  animation: spin 2s infinite linear;
}
.button.unactive {
  cursor: not-allowed !important;
  opacity: 0.5;
}
.button.pseudo {
  flex-direction: column;
}
.button.pseudo::after {
  content: "";
  display: block;
  width: 40px;
  height: 4px;
  min-height: 4px;
  border-radius: 2px;
  margin: 2px 0 -2px 0;
}
.button:hover {
  transition: ease 0.4s;
}

.phone_verification {
  position: relative;
  width: 100%;
}

.standart .form .verify_phone_btn.button,
.verify_phone_btn.button {
  font-family: "WorkSans-Medium";
  font-size: 18px;
  line-height: 21px;
  border-radius: 50px;
  padding: 7px;
  max-width: 100% !important;
  margin: 0;
  top: calc(100% + 15px);
  width: 100%;
  position: absolute;
}

.verify_phone_btn.button svg {
  margin-right: 14px;
}

.phone_verified_text {
  font-family: "WorkSans-Medium";
  font-size: 18px;
  line-height: 21px;
  color: #4ECA80;
  max-width: 100%;
  margin: 10px 0 0;
  width: 100%;
  position: absolute;
  display: flex;
  align-items: center;
}

.phone_verified_text svg {
  margin-right: 4px;
}

.form-item-half.phone_row_field {
  margin-bottom: 41px;
}

#modal-phone-verification .subtitle {
  margin: 30px auto 0px;
}
#modal-phone-verification p {
  max-width: 670px;
  margin: 10px auto 34px;
}

.sms_code_field {
  max-width: 414px;
  margin: 0 auto;
}

.toggle-wrapper {
  position: relative;
  padding: 10px 20px;
}
.toggle-wrapper.filter .toggle-button {
  z-index: 4;
}
.toggle-wrapper.filter .toggle-menu {
  width: 186px;
  z-index: 3;
}
.toggle-wrapper.filter .icon {
  font-size: 22px;
  color: #1E3368;
  opacity: 0.5;
  cursor: pointer;
}
.toggle-wrapper.config {
  padding: 5px 6px;
}
.toggle-wrapper.config .toggle-menu {
  width: 181px;
  top: -11px;
  right: -15px;
}
.toggle-wrapper.config .toggle-button .icon {
  font-size: 22px;
  cursor: pointer;
  color: #1E3368;
  opacity: 0.5;
}
.toggle-wrapper.config .toggle-title {
  padding: 4px 0 0 11px;
}
.toggle-wrapper.active .toggle-title {
  opacity: 1;
  visibility: visible;
  width: 120px;
  transition: ease 0.4s;
}
.toggle-wrapper.active .toggle-menu {
  opacity: 1;
  visibility: visible;
  transition: opacity ease 0.4s;
}
.toggle-button {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.toggle-title {
  opacity: 0;
  visibility: hidden;
  width: 0px;
  overflow: hidden;
  position: absolute;
  top: 1px;
  right: 22px;
  display: inline-block;
  font-family: "WorkSans-Medium";
  color: rgba(30, 51, 104, 0.5);
  font-size: 16px;
  margin: -3px 10px 0 0;
  white-space: nowrap;
  transition: ease 0.4s;
}
.toggle-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  padding: 47px 0 0;
  top: -7px;
  right: 5px;
  z-index: 1;
  transition: opacity ease 0.4s;
}
.toggle-menu li a {
  padding: 10px 20px;
  color: #1E3368;
  font-size: 18px;
  line-height: 21px;
  display: block;
  transition: ease 0.4s;
}
.toggle-menu li a:hover {
  background-color: #ACD2FD;
  transition: ease 0.4s;
}

.pagination-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 48px 0 31px;
}
.pagination-list {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination-item {
  margin: 0 4px;
}
.pagination-item a {
  color: rgba(30, 51, 104, 0.5);
  font-size: 17px;
  font-family: "WorkSans-Medium";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  min-width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: ease 0.4s;
}
.pagination-item a.active {
  color: #fff;
  background-color: #4ECA80;
  font-family: "WorkSans-SemiBold";
}
.pagination-item a.active:hover {
  color: #fff;
}
.pagination-item a:hover {
  color: #1e3368;
}

.main-page {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
}
.main-page .left-half {
  max-width: calc(50% - 10px);
  width: 100%;
}
.main-page .left-half .title {
  margin: 65px 0 0 0;
  max-width: 520px;
}
.main-page .left-half .subtitle {
  margin: 20px 0 168px;
  max-width: 400px;
}
.main-page .left-half .buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
}
.main-page .left-half .buttons .button {
  width: calc(50% - 10px);
  font-size: calc((100vw - 320px)/1600*(20 - 18) + 18px);
  font-family: "WorkSans-Medium";
  position: relative;
  z-index: 2;
}
.main-page .right-half {
  width: calc(50% - 64px);
  margin-left: 64px;
  display: flex;
  align-items: flex-end;
  position: relative;
}
.main-page .right-half::before {
  content: "";
  display: block;
  width: 50vw;
  height: calc(100% + 112px);
  position: absolute;
  top: -112px;
  left: 0;
  background: linear-gradient(231.84deg, #EEF5FF 43.75%, #C3DCF8 100%);
  z-index: -1;
  border-radius: 235px 0 0 0;
  /* border-bottom: 139px solid #fff; */
  box-sizing: border-box;
}
.main-page .right-half::after {
  content: "";
  display: block;
  width: 780px;
  height: 417px;
  background-image: url(../image/bg/main-bg3.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -22px;
  left: -266px;
  z-index: 1;
}
.main-page p.email {
  width: 100%;
  font-size: 18px;
  margin: 32px 0;
  padding-left: calc(50% + 54px);
}
.main-page p.email a {
  color: #2D9CDB;
  border-bottom: 1px solid #2D9CDB;
  display: inline-block;
  line-height: 1;
  transition: border ease 0.4s;
}
.main-page p.email a:hover {
  border-bottom: 1px solid transparent;
  transition: border ease 0.4s;
}
.main-page .home_content {
  background: #fff;
  padding: 108px 0 50px;
  margin-top: -108px;
  position: relative;
}
.main-page .home_content .home_content_row {
  display: flex;
}
.main-page .home_content:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  right: 100%;
  top: 0;
  background: #fff;
}
.main-page .home_content:after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 100%;
  top: 0;
  background: #fff;
}
.main-page .home_content .home_content_left {
  flex: none;
  width: 100%;
  max-width: 397px;
  margin-right: 27px;
}
.main-page .home_content h3 {
  font-family: "WorkSans-Medium";
  font-size: calc((100vw - 320px)/1600*(30 - 20) + 20px);
  line-height: 1.42;
  color: #1E3368;
  margin: 0 0 9px;
}
.main-page .home_content p {
  font-size: calc((100vw - 320px)/1600*(19 - 20) + 20px);
  line-height: 1.313;
  color: #1E3368;
  margin: 0;
}
.main-page .home_content .home_button {
  max-width: 305px;
  margin: 50px auto 0;
}

.login-page .left {
  padding-right: 18%;
}
.login-page .left::after {
  width: 273px;
  height: 364px;
  background-image: url(../image/bg/login-bg.svg);
  left: 48%;
  top: 17px;
}

.forgot-password-page {
  overflow-y: hidden;
  margin-top: -30px;
  padding-top: 60px;
  min-height: calc(100vh - 185px);
}
.forgot-password-page .left {
  padding-right: 12%;
}
.forgot-password-page .left::after {
  height: 430px;
  width: 248px;
  background-image: url(../image/bg/reset-pass-bg.svg);
  left: 46.5%;
  top: -48px;
  opacity: 1;
  transition: opacity ease 0.25s;
}
.forgot-password-page .left::before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  height: 390px;
  width: 402px;
  background-image: url(../image/bg/reset-pass-bg2.svg);
  left: 39.35%;
  top: -32px;
  opacity: 0;
  transition: opacity ease 0.25s;
}
.forgot-password-page .form .success {
  color: #1E3368;
  font-family: "WorkSans-Medium";
  font-size: calc((100vw - 320px)/1600*(24 - 20) + 20px);
  margin: 0;
  padding: 13px 10px 3px 6px;
  text-align: center;
  line-height: 1.42;
}
.forgot-password-page.success .left .text {
  opacity: 0;
  visibility: hidden;
  transition: ease 0.4s;
}
.forgot-password-page.success .left::after {
  opacity: 0;
  transition: opacity ease 0.25s;
}
.forgot-password-page.success .left::before {
  opacity: 1;
  transition: opacity ease 0.25s;
}

.recover-password-page {
  overflow: visible;
}
.recover-password-page .left {
  padding-right: 10%;
}
.recover-password-page .left::after {
  background-image: url(../image/bg/recover-pass-bg.svg);
  height: 420px;
  width: 156px;
  left: 47%;
  top: -35px;
  z-index: -1;
}

.register-page .left {
  width: 25%;
  padding-right: 20px;
}
.register-page .left .title {
  margin-top: 4px;
}
.register-page .left .text {
  margin: 7px 0 15px;
}
.register-page .form {
  padding: 60px 42px 70px;
  width: 74.5%;
  max-width: 74.5%;
  flex-direction: row;
  flex-wrap: wrap;
}
.register-page .form .block {
  width: 50%;
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.register-page .form .block__img {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 200px;
  max-height: 200px;
  border-radius: 50%;
  overflow: hidden;
}
.register-page .form .block__img img {
  width: 100%;
}
.register-page .form .block .button {
  width: 70%;
  margin: 38px auto 0;
  font-family: "WorkSans-Medium";
  min-width: 165px;
}
.register-page .form .block .button .mobile {
  display: none;
  font-size: 18px;
  color: inherit;
  font-family: inherit;
}
.register-page .form .center {
  width: 85%;
  margin: 40px auto 0;
  border-top: 1px solid #ACD2FD;
  padding: 20px 0 0 0;
}
.register-page .form .center a {
  white-space: nowrap;
  margin-top: 10px;
  display: inline-block;
}

.register-as .left {
  width: 25%;
  padding-right: 20px;
}
.register-as .left .title {
  margin: 13px 0 0 0;
  line-height: 1;
}
.register-as .left .subtitle {
  font-family: "WorkSans-Bold";
  color: #1E3368;
  font-size: calc((100vw - 320px)/1600*(26 - 20) + 20px);
}
.register-as .left .text {
  margin: 12px 0 0;
}
.register-as .right {
  max-width: 74.5%;
}
.register-as .right .register_content {
  padding-left: 86px;
  padding-bottom: 25px;
}
.register-as .right .register_content h3 {
  font-family: "WorkSans-Medium";
  font-size: calc((100vw - 320px)/1600*(26 - 20) + 20px);
  line-height: 141.8%;
  color: #1E3368;
  margin: 0 0 10px;
}
.register-as .right .register_content p,
.register-as .right .register_content span {
  font-family: "WorkSans-Regular";
  font-size: calc((100vw - 320px)/1600*(18 - 16) + 16px);
  line-height: 141.8%;
  color: #1E3368;
}
.register-as .right .register_content p strong {
  font-family: "WorkSans-Bold";
}
.register-as .right .register_content h4 {
  font-family: "WorkSans-Regular";
  font-size: calc((100vw - 320px)/1600*(18 - 16) + 16px);
  line-height: 141.8%;
  color: #1E3368;
  margin: 0;
}
.register-as .right .register_content ul {
  list-style-type: disc;
  padding-left: 45px;
}
.register-as .right .register_content ul li {
  font-family: "WorkSans-Regular";
  font-size: calc((100vw - 320px)/1600*(18 - 16) + 16px);
  line-height: 141.8%;
  color: #1E3368;
}
.register-as .form {
  padding: 60px 150px 40px 173px;
  max-width: 100%;
}
.register-as .form-item-half .form-item {
  width: calc(50% - 11px);
}
.register-as .form .required {
  margin: 0 0 30px 0;
}
.register-as .form p.required {
  font-size: calc((100vw - 320px)/1600*(18 - 16) + 16px);
}
.register-as .form .button {
  margin: 40px auto 30px;
  max-width: 345px;
}
.register-as .form .center p {
  font-size: calc((100vw - 320px)/1600*(18 - 16) + 16px);
}
.register-as.register-clinican .left::after {
  content: "";
  display: block;
  height: 480px;
  width: 204px;
  background-image: url(../image/bg/register-clinican.svg);
  background-repeat: no-repeat;
  background-size: contain;
  margin: 8px 0 0 21px;
}
.register-as.register-facility .left::after {
  content: "";
  display: block;
  height: 480px;
  width: 207px;
  background-image: url(../image/bg/register-facility.svg);
  background-repeat: no-repeat;
  background-size: contain;
  margin: 8px 0 0 34px;
}

.welcome-page {
  overflow: hidden;
}
.welcome-page .left {
  padding-right: 20px;
}
.welcome-page .left .title {
  position: relative;
  z-index: 2;
}
.welcome-page .left::after {
  width: 354px;
  height: 420px;
  background-image: url(../image/bg/welcome.svg);
  position: absolute;
  top: -13px;
  left: 42.5%;
}
.welcome-page .form {
  color: #1E3368;
  margin: 10px 0 0 0;
}
.welcome-page .form .bold {
  font-size: calc((100vw - 320px)/1600*(22 - 20) + 20px);
  font-family: "WorkSans-SemiBold";
  margin: 2px 0 12px;
}
.welcome-page .form .button {
  margin: 20px auto 0;
}

.welcome-as .left {
  width: 25%;
  padding-right: 20px;
}
.welcome-as .left .title {
  margin: 8px 0 25px 0;
}
.welcome-as .left::after {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
}
.welcome-as .form {
  max-width: 74.5%;
}
.welcome-as .form .bold {
  font-family: "WorkSans-SemiBold";
  color: #1E3368;
  font-size: 22px;
  margin: 0 0 25px 0;
}
.welcome-as .form .user-list__item {
  display: flex;
  align-items: flex-start;
}
.welcome-as .form .user-list__item:not(:last-of-type) {
  margin: 0 0 45px;
}
.welcome-as .form .user-list__icon {
  font-size: calc((100vw - 320px)/1600*(90 - 60) + 60px);
  max-height: 90px;
  margin: 4px 20px 0 0;
  line-height: 1;
}
.welcome-as .form .user-list__content {
  font-size: 18px;
  color: #1E3368;
  line-height: 1.4;
}
.welcome-as .form .user-list__title {
  font-family: "WorkSans-SemiBold";
  margin: 4px 0 3px 0;
}
.welcome-as .form .user-list__title a {
  color: inherit;
  border-bottom: 1px solid #1E3368;
  line-height: 0.85;
  display: inline-block;
  transition: ease 0.25s;
}
.welcome-as .form .user-list__title a:hover {
  border-bottom: 1px solid transparent;
  transition: ease 0.25s;
}
.welcome-as .form .user-list__title .mobile {
  display: none;
}
.welcome-as .form .user-list__text {
  margin: 0;
}

.welcome-facility-page .left::after {
  width: 207px;
  height: 480px;
  background-image: url(../image/bg/register-facility.svg);
  margin: 0 0 0 34px;
}

.welcome-clinician-page .left::after {
  height: 480px;
  width: 204px;
  background-image: url(../image/bg/register-clinican.svg);
  margin: 0 0 0 21px;
}

.welcome-admin-page .left .title {
  margin: 8px 0 13px 0;
}
.welcome-admin-page .left::after {
  height: 482px;
  width: 233px;
  background-image: url(../image/bg/welcome-admin.svg);
  margin: 0;
}
.welcome-admin-page .form {
  padding: 60px 50px 15px 90px;
}
.welcome-admin-page .form .user-list {
  display: flex;
  flex-wrap: wrap;
}
.welcome-admin-page .form .user-list__item {
  width: 50%;
  padding-right: 40px;
}

.profile .left {
  width: 325px;
  max-width: 350px;
  padding-right: 20px;
}
.profile .left .title {
  font-size: calc((100vw - 320px)/1600*(46 - 32) + 32px);
  line-height: 1;
  margin-top: 10px;
}
.profile .form {
  max-width: calc(100% - 325px);
}
.profile .form .form {
  max-width: 100%;
  padding: 0 !important;
}
.profile.standart .form::before {
  border-radius: 25px;
}
.profile-menu__top {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.profile-menu__complete {
  font-size: 18px;
  color: rgba(30, 51, 104, 0.5);
  font-family: "WorkSans-Medium";
  line-height: 1;
  margin-bottom: 6px;
  margin-left: auto;
}
.profile-menu__progress {
  display: flex;
  width: 100%;
  height: 10px;
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #A2ECC0;
  padding: 2px;
  margin: 16px 0 22px 0;
}
.profile-menu__progress span {
  display: inline-block;
  height: 100%;
  background-color: #4ECA80;
  border-radius: 2px;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25);
}
.profile-menu__menu li {
  position: relative;
  margin: 0;
}
.profile-menu__menu li a, .profile-menu__menu li span {
  font-size: 22px;
  line-height: 26px;
  color: #1E3368;
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.profile-menu__menu li a::before, .profile-menu__menu li span::before {
  content: "";
  display: block;
  height: 8px;
  width: 8px;
  border: 1px solid #4ECA80;
  margin-right: 10px;
  border-radius: 50%;
}
.profile-menu__menu li a::before {
  background-color: #4ECA80;
}
.profile-menu__menu li span {
  font-family: "WorkSans-Bold";
}
.profile-menu__menu li span::before {
  background-color: transparent;
}
.profile-menu__menu li:not(:last-child)::after {
  content: "";
  display: block;
  height: 32px;
  width: 2px;
  border-radius: 2px;
  background-color: #ACD2FD;
  position: absolute;
  left: 4px;
  top: 100%;
  margin-top: -6px;
}
.profile .subtitle {
  font-family: "WorkSans-SemiBold";
  font-size: calc((100vw - 320px)/1600*(22 - 20) + 20px);
  line-height: 1.41;
  margin: 2px 0 28px;
}
.profile.facility .form {
  padding: 40px 88px 30px;
}
.profile.facility .form-item {
  display: flex;
  align-items: center;
  width: 100%;
}
.profile.facility .form-item-half .form-item {
  width: 50%;
}
.profile.facility .form-item label {
  min-width: 110px;
  padding-left: 20px;
}
.profile.facility .form-item label + input + a {
  left: 135px;
}
.profile.facility .form-item label.first {
  padding-left: 0;
  min-width: 150px;
}
.profile.facility .form-item label.first + input + a {
  left: 125px;
}
.profile.facility .form-item .form-field {
  opacity: 1;
}
.profile.facility .form-item .form-field.unvisible {
  opacity: 0;
}
.profile.facility .form-item > a {
  display: inline-block;
  font-size: 18px;
  color: #2D9CDB;
  border-bottom: 1px solid #2D9CDB;
  transition: ease 0.25s;
  line-height: 1;
  position: absolute;
  bottom: 11px;
  max-width: 100%;
  overflow: hidden;
}
.profile.facility .form-item > a:hover {
  border-bottom: 1px solid transparent;
  transition: ease 0.25s;
}
.profile.facility .form-item > a.hidden {
  display: none;
}
.profile.facility .form .center {
  margin-bottom: 30px;
}
.profile.facility .form .facility__footer {
  display: flex;
  justify-content: center;
}
.profile.facility .form .facility__footer.hidden {
  display: none;
}
.profile.facility .form .facility__footer .button {
  max-width: 240px;
  margin: 10px 20px 0;
}
.profile.facility .form .button {
  max-width: 305px;
}
.profile.facility .form .subtitle {
  display: flex;
  align-items: center;
}
.profile.facility .form .subtitle span {
  display: inline-block;
  margin-right: 15px;
}
.profile.facility .form .subtitle .button {
  max-width: 130px;
  font-size: 18px;
  margin: 0 0 0 auto;
  height: 35px;
  line-height: 1;
  min-width: 0;
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.05);
  font-family: "WorkSans-Medium";
}
.profile.facility .form .subtitle .button.hidden {
  opacity: 0;
  width: 0px;
  overflow: hidden;
  padding: 0;
}
.profile.facility .form .subtitle .button + span {
  font-size: 18px;
  color: #828282;
  font-family: "WorkSans-Regular";
  display: inline-block;
  margin-left: 20px;
  margin-right: 0;
  text-align: right;
  transition: ease 0.4s;
}
.profile.facility .form .subtitle .button + span.unvisible {
  display: none;
  visibility: hidden;
  opacity: 0;
  transition: ease 0.4s;
}
.profile.facility.representative .form-item {
  overflow: hidden;
}
.profile.facility.representative .phone_row_field .form-item {
  overflow: inherit;
}
.profile.facility.representative .form-item label {
  min-width: 135px;
  padding-left: 15px;
}
.profile.facility.representative .form-item label.first {
  min-width: 125px;
  padding-left: 0;
}
.profile.facility.facility-settings .left .text {
  padding-right: 20px;
  margin: 22px 0 0;
  font-size: 20px;
}
.profile.facility.facility-settings .left::after {
  height: 420px;
  width: 156px;
  background-image: url(../image/bg/settings-bg.svg);
  margin: 0 0 0 auto;
  position: inherit;
}
.profile.facility.facility-settings .form-item label.first {
  min-width: 235px;
}
.profile.facility.facility-settings .form-item input[disabled] {
  border: none;
}
.profile.facility.facility-settings .question-mark {
  position: absolute;
  bottom: 8px;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  font-size: 15px;
  line-height: 1;
  color: #1E3368;
  background-color: #ACD2FD;
  border-radius: 50%;
  cursor: pointer;
  font-family: "WorkSans-Medium";
}
.profile.facility.facility-settings .question-text {
  position: absolute;
  right: -88px;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 15px;
  font-size: 14px;
  line-height: 16px;
  color: #1E3368;
  max-width: 200px;
  margin-top: -1px;
  transition: ease 0.4s;
}
.profile.facility.facility-settings .question-text.visible {
  opacity: 1;
  visibility: visible;
  transition: ease 0.4s;
}
.profile.facility.facility-settings.clinician-settings .left::after {
  margin: -60px 0 0 auto;
}
.profile.facility.clinician-contact-create .form-item label {
  min-width: 130px;
  padding-left: 0;
}
.profile.facility.clinician-contact-create .form-item label.first {
  min-width: 130px;
  padding-right: 10px;
}
.profile.facility.clinician-contact-create .form-item-half .form-item {
  width: calc(50% - 20px);
}
.profile.facility.clinician-personal-create .form-item {
  flex-direction: column;
  align-items: flex-start;
}
.profile.facility.clinician-personal-create .form-item-half .form-item {
  width: calc(50% - 20px);
}
.profile.facility.clinician-personal-create .form-item label {
  padding-left: 0;
}
.profile.facility.clinician-preferences-create .form-checkbox {
  padding: 5px 0 32px;
}
.profile.facility.clinician-preferences-create .form-checkbox span {
  font-size: 18px;
}
.profile.facility.clinician-preferences-create .form-item label + input + a {
  left: 0;
}
.profile.facility.clinician-license-create .form-item {
  flex-wrap: wrap;
}
.profile.facility.clinician-license-create .form-item .date-wrapper {
  width: 100%;
}
.profile.facility.clinician-documents-create .form-item {
  flex-wrap: wrap;
}
.profile.facility.clinician-documents-create .form-item .date-wrapper {
  width: 100%;
}
.profile.facility.clinician-education-create .form-item label.first {
  min-width: 215px;
}
.profile.facility.clinician-education-create .form-item-half .form-item {
  width: calc(50% + 107px);
}
.profile.facility.clinician-education-create .form-item-third {
  display: flex;
  justify-content: space-between;
}
.profile.facility.clinician-education-create .form-item-third .form-item {
  flex-direction: column;
  align-items: flex-start;
  width: calc(33.3333% - 14px);
}
.profile.facility.clinician-education-create .form-item .date-wrapper {
  width: 100%;
  margin-bottom: 0;
}
.profile.facility.clinician-resume-view .form-item > a {
  position: relative;
  border: none;
  text-decoration: underline;
  line-height: 21px;
}
.profile.facility.clinician-additional .form-item-wrap {
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 31px;
}
.profile.facility.clinician-additional .form-item-wrap > label {
  margin: 0 0 15px 0;
}
.profile.facility.clinician-additional .nselect.nsOrange {
  width: 250px;
  margin-top: 15px;
}

.jobs {
  overflow: hidden;
}
.jobs .left .text {
  padding-right: 15px;
}
.jobs .form {
  padding: 0;
}
.jobs-facility .left::after {
  height: 508px;
  width: 258px;
  background-image: url(../image/bg/jobs-bg.svg);
  margin: -28px 0 0 48px;
}
.jobs-facility .form::before {
  content: none;
}
.jobs.standart .form {
  padding: 0;
}
.jobs.post-edit {
  padding-bottom: 45px;
}
.jobs.post-edit .form {
  padding: 40px 88px 60px;
}
.jobs.post-edit .form .success__message .buttons {
  margin-bottom: 0;
}
.jobs.post-edit .form .form-item-half .form-item {
  width: calc(50% - 44px);
}
.jobs.post-edit .form .subtitle {
  font-size: calc((100vw - 320px)/1600*(22 - 20) + 20px);
  font-family: "WorkSans-SemiBold";
  margin-right: 15px;
  margin-bottom: 0;
}
.jobs.post-edit .form-radiobox {
  margin-top: 10px;
  padding-bottom: 1px;
  text-transform: capitalize;
}
.jobs.post-edit .form-radiobox input:checked + span {
  color: #1e3368;
  transition: ease 0.25s;
}
.jobs.post-edit .form-radiobox span {
  color: rgba(30, 51, 104, 0.5);
  font-size: 18px;
  transition: ease 0.25s;
}
.jobs.post-edit .form-checkbox input:checked + span {
  color: #1e3368;
  transition: ease 0.25s;
}
.jobs.post-edit .form-checkbox span {
  color: rgba(30, 51, 104, 0.5);
  font-size: 18px;
  transition: ease 0.25s;
}
.jobs.post-edit .form .post__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.jobs.post-edit .form .job-details__footer {
  border: none;
  padding: 9px 0 0;
}
.jobs.post-edit .form .job-details__footer .button {
  margin: 10px 20px 0 !important;
}
.jobs.post .left::after {
  width: 256px;
  height: 496px;
  background-image: url(../image/bg/post-bg.svg);
  position: initial;
  margin: 20px 0 0 24px;
}
.jobs.edit-job .toggle-wrapper.config {
  margin-left: 100px;
  padding: 5px 0 5px 6px;
}
.jobs.edit-job .toggle-wrapper.config .toggle-button::before {
  content: attr(data-show);
  display: block;
  position: absolute;
  right: 36px;
  top: 0;
  font-size: 16px;
  font-family: "WorkSans-Medium";
  color: #1E3368;
  cursor: pointer;
  opacity: 0.5;
  transition: ease 0.4s;
}
.jobs.edit-job .toggle-wrapper.config.active .toggle-button::before {
  opacity: 0;
  transition: ease 0.4s;
}
.jobs.edit-job .form-item-wrap {
  margin-left: auto;
}
.jobs-clinician .left::after {
  content: none;
}
.jobs-clinician .job__head .search-block {
  margin-right: 0;
}
.jobs-clinician .job__head .search-block::after {
  right: 8px;
}
.jobs-clinician .form::before {
  content: none !important;
}
.jobs.assignments .left::after {
  content: none;
}
.jobs.assignments .form::before {
  content: none !important;
}

.job__head {
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
  border-radius: 20px 20px 0 0;
  padding: 12px 35px 12px 40px;
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.05);
}
.job__head .form-item-toggle {
  margin-right: 20px;
  opacity: 1;
  visibility: visible;
  transition: ease 0.4s;
}
.job__head .form-item-toggle span {
  font-family: "WorkSans-SemiBold";
}
.job__head .search-block {
  margin: 0 10px 0 auto;
  height: 43px;
  position: relative;
  cursor: pointer;
  padding-left: 20px;
}
.job__head .search-block::after {
  content: "";
  font-family: "icomoon";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  font-size: 22px;
  width: 30px;
  color: rgba(30, 51, 104, 0.5);
  background-color: #fff;
  transition: background-color ease 0.4s;
  pointer-events: none;
}
.job__head .search-block input {
  background-color: rgba(172, 210, 253, 0.15);
  border-radius: 22px;
  height: 100%;
  width: 0px;
  cursor: pointer;
  padding: 0 15px 0 15px;
  font-size: 16px;
  opacity: 0;
  transition: all ease 0.4s;
}
.job__head .search-block input:focus {
  opacity: 1;
  transition: all ease 0.4s;
}
.job__head .search-block input:focus::-webkit-input-placeholder {
  opacity: 0.5;
  font-size: inherit;
}
.job__head .search-block input:focus::-moz-placeholder {
  opacity: 0.5;
  font-size: inherit;
}
.job__head .search-block input:focus:-ms-input-placeholder {
  opacity: 0.5;
  font-size: inherit;
}
.job__head .search-block input:focus:-moz-placeholder {
  opacity: 0.5;
  font-size: inherit;
}
.job__head .search-block.active input {
  width: 305px;
  opacity: 1;
  transition: all ease 0.4s;
}
.job__head .search-block.active::after {
  background-color: #f3f8ff;
  transition: background-color ease 0.4s;
}
.job__list.empty .job__item {
  padding: 40px;
  border-radius: 0;
}
.job__list.empty .job__header {
  padding: 10px 20px;
}
.job__list.empty .job__header p {
  margin: 0;
  color: #1E3368;
  font-size: calc((100vw - 320px)/1600*(22 - 20) + 20px);
  font-family: "WorkSans-SemiBold";
  text-align: center;
  width: 100%;
}
.job__item {
  padding: 20px 40px 18px;
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 2px;
  background-color: #fff;
}
.job__item:last-child {
  border-radius: 0 0 20px 20px;
}
.job__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f3f8ff;
  border-radius: 30px;
  padding: 9px 15px 9px 20px;
  position: relative;
}
.job__header-mobile {
  display: none;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 13px;
}
.job__header-mobile .job__salary {
  margin: 0 20px;
}
.job__header.interested, .job__header.completed {
  background-color: rgba(78, 202, 128, 0.15);
}
.job__header.interested .job__icon, .job__header.completed .job__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #4ECA80;
  border-radius: 50%;
  width: 24px;
  height: 24px;
}
.job__header.interested .job__icon .amount, .job__header.completed .job__icon .amount {
  color: #fff;
  font-size: 11px;
  font-family: "WorkSans-Bold";
  padding-left: 1px;
}
.job__header.not-interested {
  background-color: rgba(51, 51, 51, 0.15);
}
.job__header.in-progress {
  background-color: rgba(47, 128, 237, 0.15);
}
.job__header .job__icon {
  position: absolute;
  font-size: 23px;
  left: -6px;
  top: -2px;
}
.job__status {
  border-radius: 20px;
  color: #fff;
  font-size: calc((100vw - 320px)/1600*(18 - 16) + 16px);
  font-family: "WorkSans-Medium";
  padding: 3px 23px;
  margin: 0 20px 0 auto;
}
.job__status.urgent {
  background-color: #4ECA80;
}
.job__title {
  font-family: "WorkSans-SemiBold";
  color: #1E3368;
  font-size: calc((100vw - 320px)/1600*(22 - 20) + 20px);
  margin-right: 20px;
}
.job__title a {
  color: inherit;
  display: flex;
  align-items: center;
}
.job__title a.pseudo::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  min-width: 6px;
  border: 1px solid #4ECA80;
  margin-right: 10px;
  border-radius: 50%;
  background-color: transparent;
}
.job__title a.pseudo.active::before {
  background-color: #4ECA80;
}
.job__salary {
  font-size: calc((100vw - 320px)/1600*(22 - 18) + 18px);
  font-family: "WorkSans-SemiBold";
  color: #1E3368;
  opacity: 0.5;
  margin: 0 20px 0 10.75%;
}
.job__content {
  padding: 20px 20px 0;
}
.job__content-first, .job__content-second {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.job__content-first .additional, .job__content-second .additional {
  font-size: 18px;
  line-height: 21px;
  color: #1E3368;
  display: inline-flex;
  align-items: flex-start;
}
.job__content-first .additional-title, .job__content-second .additional-title {
  margin-right: 20px;
}
.job__content-first .additional-text, .job__content-second .additional-text {
  opacity: 0.5;
}
.job__content-first .additional {
  margin-bottom: 15px;
}
.job__content-first .additional,
.job__content-second .additional {
  width: 50%;
}
.job__content-first .additional:first-child .additional-text,
.job__content-second .additional:first-child .additional-text {
  padding-right: 20px;
}
.job__content-first .additional.speciality {
  /* margin-right: 11.5%; */
}
.job__content-first .date {
  display: inline-block;
  margin-left: 20px;
}
.job__content-second .additional {
  flex-wrap: wrap;
}
.job__content-description {
  font-size: 16px;
  line-height: 19px;
  color: #1E3368;
  opacity: 0.5;
  padding: 15px 0;
  white-space: -moz-pre-wrap !important;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  white-space: pre-wrap;
  word-wrap: break-word;
  white-space: -webkit-pre-wrap;
  word-break: break-all;
}
.job__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid #ACD2FD;
}
.job__id {
  font-size: calc((100vw - 320px)/1600*(18 - 16) + 16px);
  color: #1E3368;
  opacity: 0.5;
  line-height: 1.2;
}
.job__id span {
  font-family: "WorkSans-SemiBold";
  color: rgba(30, 51, 104, 0.5);
}
.job__link {
  font-size: 18px;
  line-height: 21px;
  font-family: "WorkSans-Medium";
  color: #1E3368;
}
.job__link a {
  color: inherit;
  display: inline-block;
  line-height: 15px;
  border-bottom: 1px solid #1E3368;
  transition: border ease 0.4s;
}
.job__link a:hover {
  border-bottom: 1px solid transparent;
  transition: border ease 0.4s;
}
.job-details .left::after {
  height: 420px;
  width: 174px;
  background-image: url(../image/bg/details-bg.svg);
  margin: 40px 0 0 29%;
}
.job-details.assignment .job-details__footer {
  border: none;
  padding-top: 0;
}
.job-details.assignment .left::after {
  content: none;
}
.job-details .form {
  padding: 38px 88px 60px;
}
.job-details__top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.job-details__top-line .interested-status {
  margin-left: 30px;
  display: none;
}
.job-details__top-line .interested-status.active {
  display: block;
}
.job-details__top-line .interested-status > div {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-family: "WorkSans-Medium";
  font-size: calc((100vw - 320px)/1600*(18 - 15) + 15px);
}
.job-details__top-line .interested-status > div.interested .icon.icon-yes {
  display: block;
}
.job-details__top-line .interested-status > div.interested .icon.icon-no {
  display: none;
}
.job-details__top-line .interested-status > div.interested .text-yes {
  display: block;
}
.job-details__top-line .interested-status > div.interested .text-no {
  display: none;
}
.job-details__top-line .interested-status > div.not-interested .icon.icon-no {
  display: block;
}
.job-details__top-line .interested-status > div.not-interested .icon.icon-yes {
  display: none;
}
.job-details__top-line .interested-status > div.not-interested .text-no {
  display: block;
}
.job-details__top-line .interested-status > div.not-interested .text-yes {
  display: none;
}
.job-details__top-line .interested-status > div .icon {
  font-size: 24px;
}
.job-details__top-line .interested-status > div .text {
  margin-left: 10px;
}
.job-details__top-line .interested-status > div .text-yes {
  color: #4ECA80;
}
.job-details__top-line .interested-status > div .text-no {
  color: #CA4E4E;
}
.job-details__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
  border-bottom: 1px solid #ACD2FD;
  padding: 0 0 6px;
  margin: 0 0 16px;
  min-height: 42px;
}
.job-details__header .toggle-wrapper.config {
  margin: -1px -7px 0px 0;
}
.job-details__header .toggle-wrapper.config .toggle-button::before {
  content: attr(data-show);
  display: block;
  position: absolute;
  right: 36px;
  top: 0;
  font-size: 16px;
  font-family: "WorkSans-Medium";
  color: #1E3368;
  cursor: pointer;
  opacity: 0.5;
  transition: ease 0.4s;
}
.job-details__header .toggle-wrapper.config.active .toggle-button::before {
  opacity: 0;
  transition: ease 0.25s;
}
.job-details__title {
  font-size: calc((100vw - 320px)/1600*(36 - 28) + 28px);
  color: #1E3368;
  font-family: "WorkSans-SemiBold";
  line-height: 1.25;
}
.job-details__salary {
  font-size: 18px;
  font-family: "WorkSans-Medium";
  color: #1E3368;
  margin-bottom: 6px;
  display: flex;
  flex-wrap: wrap;
}
.job-details__salary span {
  margin-right: 18px;
  display: inline-block;
}
.job-details__status {
  font-size: 18px;
  font-family: "WorkSans-Medium";
  color: #4ECA80;
  margin-left: auto;
  margin-bottom: 6px;
  padding-left: 20px;
  white-space: nowrap;
}
.job-details__date {
  font-size: 16px;
  font-family: "WorkSans-Medium";
  color: #1E3368;
}
.job-details__date span {
  display: inline-block;
  margin-left: 30px;
  opacity: 0.5;
  font-family: "WorkSans-Regular";
}
.job-details__line {
  display: flex;
  align-items: center;
}
.job-details__line.bottom {
  align-items: flex-end;
}
.job-details__line.first .job-details__item {
  margin-bottom: 22px;
}
.job-details__item {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 30px;
}
.job-details__item.top {
  align-items: flex-start;
}
.job-details__item.half {
  max-width: 50%;
}
.job-details__item.half:nth-of-type(2) {
  padding-left: 20px;
}
.job-details__item.mobile {
  display: none;
}
.job-details__item.wrap {
  flex-wrap: wrap;
}
.job-details__name {
  font-size: 18px;
  font-family: "WorkSans-Medium";
  color: #1E3368;
  max-width: 110px;
  min-width: 110px;
  margin-right: 18px;
  width: 100%;
  line-height: 1.2;
}
.job-details__name.file {
  max-width: 100%;
  margin-right: 0;
}
.job-details__name.file span {
  opacity: 0.5;
}
.job-details__value {
  font-size: 18px;
  color: #1E3368;
  line-height: 1.2;
}
.comment-block .job-details__value {
  white-space: -moz-pre-wrap !important;  /* Mozilla, since 1999 */
  white-space: -pre-wrap;      /* Opera 4-6 */
  white-space: -o-pre-wrap;    /* Opera 7 */
  white-space: pre-wrap;       /* css-3 */
  word-wrap: break-word;       /* Internet Explorer 5.5+ */
  white-space: -webkit-pre-wrap; /* Newer versions of Chrome/Safari*/
  word-break: break-all;
}
.job-details__fileblock {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.job-details__fileblock .button {
  max-width: 217px;
  margin: 0 0 0 auto !important;
}
.job-details__fileblock + .job-details__fileblock {
  margin-top: 15px;
}
.job-details__fileblock .job-details__value {
  margin-right: 15px;
}
.job-details__footer {
  border-top: 1px solid #ACD2FD;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -1px;
  padding: 30px 14% 0;
}
.job-details__footer .button {
  max-width: 240px;
  margin: 10px 10px 0 !important;
}
.job-details.job-offer .left::after {
  content: none;
}
.job-details.job-offer .job-details__footer {
  border-top: none;
  padding: 0px 14% 0;
}
.job-details.job-offer .job-details__footer .button {
  max-width: 250px;
  margin: 10px 20px 0 !important;
}

.info {
  padding-top: 43px;
  padding-bottom: 60px;
}
.info .left {
  width: 325px;
  max-width: 350px;
  padding-right: 20px;
}
.info .left .title {
  margin: 7px 0 0 0;
}
.info .form {
  max-width: calc(100% - 325px);
  padding: 72px 88px;
}
.info .form > .subtitle {
  font-family: "WorkSans-SemiBold";
  font-size: calc((100vw - 320px)/1600*(22 - 20) + 20px);
  line-height: 1.42;
  padding-bottom: 3px;
}
.info .form p {
  font-size: 18px;
  line-height: 1.3;
  color: rgba(30, 51, 104, 0.7);
  margin: 15px 0 0 0;
}
.info .form .accordion {
  padding-top: 10px;
  font-family: "WorkSans-SemiBold";
  font-size: calc((100vw - 320px)/1600*(22 - 18) + 18px);
  line-height: 1.42;
  text-transform: uppercase;
  color: #1E3368;
}
.info .form .accordion__item p {
  font-family: "WorkSans-Regular";
  text-transform: none;
}
.info .form .accordion__title {
  font-family: "WorkSans-SemiBold";
  font-size: calc((100vw - 320px)/1600*(22 - 18) + 18px);
  line-height: 1.42;
  text-transform: uppercase;
  position: relative;
  padding: 10px 40px 10px 0;
  color: #1E3368;
  margin: 30px 0 0 0;
  cursor: pointer;
  display: inline-flex;
  align-items: flex-start;
  width: 100%;
}
.info .form .accordion__title span {
  display: inline-block;
  padding-left: 5px;
}
.info .form .accordion__title::before {
  content: "";
  display: block;
  width: calc(100% + 40px);
  height: 100%;
  position: absolute;
  top: 0;
  left: -20px;
  background-color: #ACD2FD;
  opacity: 0.15;
  z-index: -1;
  border-radius: 25px;
}
.info .form .accordion__title::after {
  content: "";
  font-family: "icomoon";
  display: block;
  font-size: 14px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotateX(0deg);
  transition: ease 0.4s;
}
.info .form .accordion__title.active::after {
  transform: translateY(-50%) rotateX(180deg);
  transition: ease 0.4s;
}
.info .form .accordion__content {
  padding-bottom: 10px;
}
.info .form .accordion__content ol {
  counter-reset: item;
}
.info .form .accordion__content ol li {
  display: block;
}
.info .form .accordion__content ol li::before {
  content: counter(item) ". ";
  counter-increment: item;
}
.info .form .accordion__content > ol {
  font-family: "WorkSans-Medium";
  font-size: 18px;
  line-height: 21px;
  text-transform: none;
}
.info .form .accordion__content > ol li {
  margin-top: 20px;
}
.info .form .accordion__content > ol .subtitle {
  display: inline;
  font-family: "WorkSans-Medium";
  font-size: 18px;
  line-height: 21px;
}
.info .form .accordion__content > ol ol {
  font-family: "WorkSans-Regular";
  color: rgba(30, 51, 104, 0.7);
}
.info .form .accordion__content > ol ol .subtitle {
  font-family: "WorkSans-Regular";
  display: inline;
  text-decoration: underline;
  text-transform: capitalize;
  color: #1E3368;
}
.info .form .accordion__content > ol ol .subtitle + p {
  margin-top: 0;
}
.info .form .accordion__content > ol ol > li::before {
  content: counters(item, ".") ". ";
  counter-increment: item;
}
.info .form .accordion__content > ol ol ol {
  padding-left: 22px;
  color: #1E3368;
}
.info .form .accordion__content > ol ol ol li {
  margin: 18px 0 0 0;
  position: relative;
  padding-left: 12px;
}
.info .form .accordion__content > ol ol ol li::before {
  content: "";
  display: block;
  height: 4px;
  width: 4px;
  background-color: #1E3368;
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 0;
}
.info .form .accordion__content > ol ol ol li span {
  color: rgba(30, 51, 104, 0.7);
  display: block;
  padding: 0;
  line-height: 1.25;
  width: 100%;
}
.info .form .accordion__content a {
  color: #1E3368;
  border-bottom: 1px solid #1E3368;
  line-height: 0.75;
  display: inline-block;
}
.info.terms .left::after {
  background-image: url(../image/bg/welcome.svg);
  width: 306px;
  height: 363px;
  position: initial;
  margin: 24px 0 0 0;
}
.info.privacy .left::after {
  background-image: url(../image/bg/privacy.svg);
  width: 322px;
  height: 340px;
  position: initial;
  margin: 24px 0 0 -17px;
}

.contact {
  padding-bottom: 60px;
}
.contact .left {
  width: 325px;
  max-width: 350px;
  padding-right: 10px;
}
.contact .left .title {
  margin: 7px 0 0 0;
}
.contact .left::after {
  width: 189px;
  height: 497px;
  background-image: url(../image/bg/contact-bg.svg);
  margin: 27px 0 0 0;
}
.contact .form {
  padding: 70px 88px 60px;
  max-width: calc(100% - 325px);
}
.contact .form .subtitle {
  font-size: calc((100vw - 320px)/1600*(22 - 20) + 20px);
  font-family: "WorkSans-SemiBold";
  margin: 3px 0 40px;
}
.contact .form-item-half .form-item {
  width: 50%;
  display: flex;
  align-items: center;
}
.contact .form-item-half .form-item label {
  min-width: 160px;
  padding-left: 20px;
}
.contact .form-item-half .form-item label.first {
  padding-left: 0;
  padding-right: 10px;
}
.contact .form .button {
  width: 305px;
}

.about-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 13px;
  color: #1E3368;
}
.about-page__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-page__inner > img {
  margin-top: 26px;
  margin-bottom: 62px;
}
.about-page__inner > img.mobile {
  display: none;
}
.about-page .title {
  margin-bottom: 21px;
}
.about-page .subtitle, .about-page h2, .about-page h3, .about-page h4, .about-page h5, .about-page h6 {
  font-family: "WorkSans-SemiBold";
  font-size: calc((100vw - 320px)/1600*(22 - 20) + 20px);
  margin: 0 0 5px;
  color: #1E3368;
}
.about-page .subtitle:not(:first-child), .about-page h2:not(:first-child), .about-page h3:not(:first-child), .about-page h4:not(:first-child), .about-page h5:not(:first-child), .about-page h6:not(:first-child) {
  margin-top: 44px;
}
.about-page .text-shrink {
  max-width: 825px;
  margin: 0 auto;
  position: relative;
}
.about-page .text-shrink::before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.about-page .text-shrink.first ul {
  max-width: 85%;
  position: relative;
}
.about-page .text-shrink.first ul::before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height: 338px;
  width: 145px;
  background-image: url(../image/bg/register-facility.svg);
  background-repeat: no-repeat;
  left: -189px;
  top: -181px;
}
.about-page .text-shrink.second::before {
  height: 253px;
  width: 190px;
  background-image: url(../image/bg/login-bg.svg);
  background-repeat: no-repeat;
  left: -196px;
  top: 13px;
}
.about-page .text-shrink.third .subtitle {
  margin-top: 54px;
}
.about-page .text-shrink.third .inner > img {
  max-width: 281px;
  margin: 32px auto 45px;
  display: block;
}
.about-page .text-right {
  margin-top: 34px;
  margin-bottom: 42px;
  position: relative;
}
.about-page .text-right .inner {
  max-width: 73%;
}
.about-page .text-right::before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height: 286px;
  width: 294px;
  background-image: url(../image/bg/reset-pass-bg2.svg);
  background-repeat: no-repeat;
  right: 27px;
  top: 7px;
  transform: rotateY(180deg);
}
.about-page p {
  margin: 0 0 10px;
}
.about-page b {
  font-family: "WorkSans-Bold";
}
.about-page ul li {
  margin-bottom: 11px;
}
.about-page ul li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #1E3368;
  margin: 0 8px 4px 1px;
}
.about-page .buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 135px;
}
.about-page .buttons .button {
  max-width: calc(50% - 10px);
  width: 100%;
  min-width: 220px;
  font-size: calc((100vw - 320px)/1600*(20 - 18) + 18px);
}
.about-page img {
  max-width: 100%;
}

.autocomplete {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  margin-top: 2px;
  text-align: center;
  font-size: 18px;
  color: #1E3368;
  z-index: 3;
  border-radius: 20px;
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.05);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: ease 0.4s;
}
.autocomplete p {
  margin: 0 0 20px;
}
.autocomplete .button {
  width: 100% !important;
  max-width: 220px;
}
.autocomplete.visible {
  opacity: 1;
  visibility: visible;
  transition: ease 0.4s;
}



.job-candidates-table {
  min-width: 1280px;
}
.job-candidates-table-row {
  display: flex;
  width: 100%;
  font-size: 16px;
  line-height: 19px;
  padding: 20px 25px;
  position: relative;
}
.job-candidates-table-row::after {
  content: "";
  display: block;
  width: calc(100% - 50px);
  height: 2px;
  background-color: #F3F8FF;
  position: absolute;
  left: 25px;
  bottom: 0;
}
.job-candidates-table-row .form-checkbox {
  height: 22px;
  width: 22px;
  min-width: 22px;
}
.job-candidates-table-row.job-candidates-table-header {
  color: #1E3368;
  align-items: center;
  background-color: #fff;
  margin-bottom: 5px;
  border-radius: 20px 20px 0 0;
  padding: 22px 30px;
  font-family: "WorkSans-Medium";
  font-size: 18px;
  line-height: 21px;
}
.job-candidates-table-row-top .origin_job {
  position: relative;
  margin-bottom: 5px;
}
.job-candidates-table-row-top .origin_job::after {
  content: "";
  display: block;
  width: calc(100% + 10px);
  position: absolute;
  bottom: 0;
  left: -5px;
  height: 5px;
  background-color: #F3F8FF;
}
.job-candidates-table-row-bottom {
  display: flex;
  justify-content: flex-end;
  height: 33px;
  padding: 0 25px;
}
.job-candidates-table-row-bottom .button {
  margin-left: 20px;
  border-radius: 16px;
  min-width: 130px;
  box-shadow: none;
}
.job-candidates-table-body {
  padding: 5px;
  background-color: #fff;
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.05);
  /* overflow-y: auto; */
  /* overflow-x: hidden; */
}
.job-candidates-table-body::-webkit-scrollbar {
  width: 3px;
  border-radius: 2px;
}
.job-candidates-table-body::-webkit-scrollbar-thumb {
  background-color: #ACD2FD;
  outline: none;
}
.job-candidates-table-body .job-candidates-table-row {
  color: rgba(30, 51, 104, 0.6);
}
.job-candidates-table-body .job-candidates-table-row.selected {
  color: #1E3368;
  background-color: #F3F8FF;
}
.job-candidates-table-body .job-candidates-table-row:not(:last-child) {
  border-bottom: 5px solid #fff;
}
.job-candidates-table-body.overflow {
  padding-right: 10px;
}
.job-candidates-table-body.overflow .scrollbar-track-y {
  right: 3px;
}
.job-candidates-table-body .empty {
  text-align: center;
  font-size: 20px;
  padding: 0 20px;
}
.job-candidates-table-cell:not(:last-child) {
  padding-right: 10px;
}
.job-candidates-table .job-candidates-table-cell.order,
.job-candidates-table .job-candidates-table-cell.site {
  width: 143px;
  min-width: 100px;
  text-align: center;
}
.job-candidates-table .job-candidates-table-cell.order a,
.job-candidates-table .job-candidates-table-cell.site a,
.job-candidates-table .job-candidates-table-cell.search-comment a {
  font-size: 18px;
  color: #2D9CDB;
  line-height: 21px;
  text-decoration: underline;
}
.job-candidates-table .job-candidates-table-cell.actions {
  display: flex;
  justify-content: flex-end;
  width: auto;
  flex-grow: 1;
  min-width: 65px;
  position: relative;
}
.job-candidates-table .job-candidates-table-cell.actions > a {
  font-size: 18px;
  color: #2D9CDB;
  line-height: 21px;
  text-decoration: underline;
}
.job-candidates-table .job-candidates-table-cell.actions > a.disabled {
  color: rgba(30, 51, 104, 0.6);
}
.job-candidates-table .job-candidates-table-cell.actions .toggle-wrapper.config {
  padding: 0 0 0 8px;
  margin-top: -3px;
}
.job-candidates-table .job-candidates-table-cell.actions .toggle-wrapper.config .toggle-menu {
  width: 177px;
}
.job-candidates-table .job-candidates-table-cell.actions .toggle-wrapper.config.active .toggle-button {
  z-index: 4;
}
.job-candidates-table .job-candidates-table-cell.actions .toggle-wrapper.config.active .toggle-menu {
  z-index: 3;
}
.job-candidates-table .job-candidates-table-cell.search-name {
  width: 10%;
  min-width: 180px;
}
.job-candidates-table .job-candidates-table-cell.search-profession {
  width: 9%;
  min-width: 120px;
}
.job-candidates-table .job-candidates-table-cell.search-speciality {
  width: 9.3%;
  min-width: 120px;
}
.job-candidates-table .job-candidates-table-cell.search-distance {
  width: 8%;
  min-width: 100px;
}
.job-candidates-table .job-candidates-table-cell.search-years {
  width: 197px;
  min-width: 190px;
  text-align: center;
}
.job-candidates-table .job-candidates-table-cell.search-rating {
  width: 10.3%;
  min-width: 125px;
  padding-left: 25px;
}
.job-candidates-table .job-candidates-table-cell.search-comment {
  width: 15%;
  min-width: 200px;
}
.job-candidates-table .job-candidates-table-cell.search-status {
  min-width: 160px;
}
.job-candidates-table .job-candidates-table-cell.search-status .nselect.nsOrange .nselect__head {
  height: 30px;
  font-size: 16px;
}
.job-candidates-table .job-candidates-table-cell.search-status .nselect.nsOrange .nselect__head::after {
  top: 6px;
}
.job-candidates-table .job-candidates-table-cell.search-status .nselect.nsOrange .nselect__list LI > SPAN {
  font-size: 16px;
}
.job-candidates-table .job-candidates-table-cell.search-status .nselect.nsOrange .nselect__inner {
  top: 31px;
}
.job-candidates-table .job-candidates-table-cell.search-document {
  width: 12.75%;
  min-width: 125px;
}
.job-candidates-table .job-candidates-table-cell.search-document a {
  color: #1E3368;
  opacity: 0.6;
  text-decoration: underline;
}
.job-candidates-table-wrapper {
  width: calc(100% - 138px);
  margin-left: 138px;
  overflow: auto;
}
.job-candidates-table-wrapper::-webkit-scrollbar {
  height: 3px;
}
.job-candidates-table-wrapper::-webkit-scrollbar-thumb {
  background-color: #ACD2FD;
  outline: none;
}
.close_offer {
  position: absolute;
  top: 30px;
  right: 30px;
}

.job-board-filter-container {
  background-color: #fff;
  align-items: center;
  margin-bottom: 5px;
  border-radius: 20px;
  padding: 20px 30px;
  margin: 50px 0 20px;
  box-shadow: 0px 3px 15px rgb(0 0 0 / 5%);
}
.job-board-filter-container .button-large {
  margin-left: auto;
  margin-right: auto;
}
.job_board__list .job__title {
  display: flex;
}
.job_board__list .job__title .job__status {
  margin: 0 0 0 20px;
  background-color: #EB5757;
}
.job_board__list .job__header button.interested,
.job_board__list .job__header-mobile button.interested {
  width: auto;
  height: 32px;
  font-size: calc((100vw - 320px)/1600*(18 - 16) + 16px);
  font-family: "WorkSans-Medium";
  box-shadow: none;
  padding: 3px 23px;
  margin: 0 20px 0 auto;
}
.job_board__list .job__header-mobile button.interested {
  margin-right: 10px;
}

/* css by Iryna */

.documents-holder.form.pseudo {
  padding: 0 !important; }
  .documents-holder.form.pseudo::before {
    display: none; }

.doc-block {
  background-color: #fff;
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  margin-bottom: 24px;
  padding: 24px; }
  .doc-block > *[class^="button-"] {
    text-decoration: none;
    transition: 0.3s ease-in-out;
    transition-property: color, border-color, background-color;
    text-transform: uppercase;
    color: #ACD2FD;
    font-weight: bold;
    display: block;
    text-align: center;
    height: auto; }
    .doc-block > *[class^="button-"]:hover {
      color: #fff; }
  .doc-block .subtitle {
    display: block;
    margin: 0; }
  .doc-block > span {
    display: block;
    font-size: 14px;
    line-height: 19px;
    color: #1E3368;
    margin-bottom: 24px; }

.doc-item {
  position: relative;
  border-radius: 6px;
  margin-bottom: 12px;
  box-shadow: 2px 3px 3px rgba(0, 0, 0, 0.05);
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-left: 2px solid #ACD2FD;
  color: #999;
  font-size: 14px;
  line-height: 17px; }
  .doc-item .actions {
    position: absolute;
    top: 15px;
    right: 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0 10px; }
    .doc-item .actions path {
      fill: #999;
      transition: fill 0.3s ease-in-out; }
    .doc-item .actions svg {
      width: 20px;
      height: 20px; }
    .doc-item .actions > *:hover path {
      fill: #1E3368; }
    .doc-item .actions > *:hover.edit path {
      fill: #4ECA80; }
  .doc-item .edit path {
    fill: #ACD2FD; }
  .doc-item .title {
    display: block;
    font-weight: normal;
    margin-bottom: 6px;
    color: #1E3368;
    font-size: 16px;
    line-height: 19px;
    font-family: "WorkSans-Semibold"; }
  .doc-item > div {
    margin: 2px 0; }
  .doc-item .attach {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0 2px;
    margin-left: -4px; }
    .doc-item .attach svg {
      width: 16px;
      height: 16px; }
    .doc-item .attach path {
      fill: #999; }

.documents {
  padding-bottom: 40px; }
  .documents .subtitle {
    display: block;
    text-align: left;
    max-width: 100% !important;
    margin-top: 0 !important;
    margin-bottom: 24px !important; }
  .documents label {
    display: block;
    text-align: left; }
  .documents .file-wrapper.uploaded label {
    justify-content: flex-start;
    max-width: 100%; }
  .documents .remove {
    margin-left: 20px; }
    .documents .remove img {
      display: inline-block;
      vertical-align: top; }
  .documents .button-green {
    margin: 0 auto; }

#modal_employee_comment {
  text-align: left;
  padding: 10px 0 40px;
}

.rates-table .rates-table-raw {
  display: flex;
  align-items: center;
}
.rates-table .rates-col {
  width: 70%;
  text-align: center;
  padding: 5px;
  font-size: 16px;
}
.rates-table .rates-type-col-name {
  text-align: left;
  width: 30%;
}
.rates-table .rates-col input {
  text-align: center;
  background: rgb(172 210 253 / 28%);
}
.rates-table .rates-col input[disabled] {
  background: rgb(179 179 179 / 28%);
}
.rates-table .rates-shift-col {
  display: flex;
}
.rates-table .rates-shift-col .nselect {
  padding: 0 5px;
}
.rates-table .rates-shift-col .nselect.nsOrange .nselect__head {
  font-size: 15px;
}
.rates-table .rates-shift-col .nselect.nsOrange .nselect__list LI > SPAN {
  font-size: 15px;
  padding-left: 8px;
  padding-right: 8px;
}