.select {
  position: relative;
  display: flex;
  width: 210px;
  height: 32px; }
  @media (min-width: 1250px) {
    .select:hover .select-head__title {
      color: #5B627E; }
    .select:hover .select-head .icon {
      fill: #5B627E; } }
  .select.active .select-head__title {
    color: #5B627E; }
  .select.active .select-body {
    z-index: 50;
    transition: transform 0.2s;
    transform: none; }
    @media (max-width: 767px) {
      .select.active .select-body {
        transform: translateX(-50%) scaleY(1); } }
  .select .select-head {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: 100%;
    padding: 0 10px;
    cursor: pointer; }
    .select .select-head__title {
      display: inline-flex;
      transition: color 0.3s;
      color: #333035;
      white-space: nowrap; }
    .select .select-head .icon {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-left: 7px;
      transition: fill 0.3s;
      fill: #333035; }
  .select .select-body {
    position: absolute;
    z-index: 0;
    top: calc(100% + 5px);
    right: 0;
    left: 0;
    overflow: auto;
    width: 100%;
    min-width: 150px;
    height: auto;
    margin: 0;
    padding: 0;
    transition: transform 0.3s, top 0.3s;
    transform: scaleY(0);
    transform-origin: top right;
    border-radius: 2px;
    background: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
    will-change: transform; }
    @media (max-width: 767px) {
      .select .select-body {
        left: 50%;
        transform: translateX(-50%) scaleY(0); } }
  .select .select-list {
    overflow-y: auto;
    max-height: 350px;
    text-align: left; }
  .select .nav-default-l2-link__text {
    position: relative;
    padding: 7px 10px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    color: #2b2a28;
    line-height: 1.2; }
    @media (max-width: 767px) {
      .select .nav-default-l2-link__text {
        font-size: 14px; } }
    .select .nav-default-l2-link__text.active {
      text-decoration: underline;
      pointer-events: none;
      font-weight: bold;
      text-decoration-color: #f5e570; }
    .select .nav-default-l2-link__text:hover {
      color: #aaa;
      background-color: #fafafa; }

.select.select--v2 {
  width: auto;
  height: auto; }
  .select.select--v2 .select-head__title:not(.ready) {
    color: rgba(170, 170, 170, 0.8);
    font-size: 14px;
    font-weight: 400; }
  .select.select--v2 .icon {
    margin-left: auto;
    transform: rotate(90deg); }
  .select.select--v2.active .icon {
    margin-left: auto;
    transform: rotate(-90deg); }

.radio-v1 {
  display: inline-block; }
  .radio-v1 input {
    position: absolute;
    opacity: 0;
    visibility: hidden; }
    .radio-v1 input:checked + label {
      pointer-events: none; }
      .radio-v1 input:checked + label:before {
        border-color: #333035; }
      .radio-v1 input:checked + label:after {
        opacity: 1; }
    .radio-v1 input:disabled + label {
      color: #ADB1BF;
      cursor: not-allowed; }
      .radio-v1 input:disabled + label:before {
        border-color: #ADB1BF;
        background-color: #ADB1BF; }
  .radio-v1 label {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    white-space: nowrap;
    padding-left: 24px;
    position: relative; }
    @media (max-width: 1249px) {
      .radio-v1 label {
        padding-left: 24px; } }
    @media (min-width: 1024px) {
      .radio-v1 label:hover {
        cursor: pointer; }
        .radio-v1 label:hover:before {
          border-color: #333035; } }
    .radio-v1 label:before {
      content: "";
      position: absolute;
      left: 0;
      width: 16px;
      flex-shrink: 0;
      height: 16px;
      border-radius: 50%;
      border: 1px solid #ADB1BF;
      background-color: #ffffff;
      transition: all ease .3s; }
      @media (max-width: 1249px) {
        .radio-v1 label:before {
          width: 18px;
          height: 18px; } }
    .radio-v1 label:after {
      content: "";
      position: absolute;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background-color: #5B627E;
      top: 50%;
      transform: translateY(-50%);
      left: 4px;
      opacity: 0;
      transition: all ease .3s; }

.radio-option input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none; }

.radio-option__input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px; }

.radio-option__caption {
  position: relative;
  padding: 5px 7px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  white-space: nowrap;
  color: #aaaaaa;
  display: flex;
  align-items: center; }
  .radio-option__caption .icon {
    transition: all 0.3s ease;
    flex: 0 0 auto;
    fill: #aaaaaa; }
  .radio-option__caption:checked {
    text-decoration: underline;
    pointer-events: none;
    font-weight: bold;
    text-decoration-color: #f5e570; }
  .radio-option__caption:hover {
    color: #5B627E;
    background-color: #fafafa; }
    .radio-option__caption:hover .icon {
      fill: #5B627E; }

.radio-option.selected .radio-option__caption {
  text-decoration: none;
  pointer-events: none;
  opacity: 0.7; }

.delivery-select {
  width: 100%;
  height: 40px;
  border: 1px solid #ebebeb;
  border-radius: 2px; }
  .delivery-select .select-head__title {
    color: #5B627E; }
  .delivery-select .select-head .icon {
    margin-left: auto; }

.select--profil {
  width: auto;
  height: 40px;
  border: 1px solid #ebebeb;
  border-radius: 2px; }

.select--links-block {
  width: auto;
  margin: 0 0 0 20px; }
  .select--links-block .select-head {
    position: relative;
    padding: 0; }
    .select--links-block .select-head::before {
      position: absolute;
      top: calc(100% - 3px);
      left: 0;
      opacity: 0;
      width: 0;
      height: 3px;
      content: "";
      transition: width 0.4s, opacity 0.4s;
      background: #5B627E; }
    .select--links-block .select-head__title {
      margin: 8px 8px 8px 0;
      white-space: nowrap;
      color: #aaa;
      font-family: "Mulish", Arial, Verdana, sans-serif;
      font-size: 14px;
      font-weight: 600;
      line-height: 1; }
    .select--links-block .select-head .icon {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-left: 0;
      transition: fill 0.3s;
      fill: #aaa; }
  @media (min-width: 1250px) {
    .select--links-block:hover .select-head::before {
      opacity: 1;
      width: 100%;
      transition: width 0.4s, opacity 0.4s; }
    .select--links-block:hover .select-head__title {
      color: #aaa; } }
  @media (min-width: 768px) {
    .select--links-block {
      margin: 10px 32px; }
      .select--links-block .select-head__title {
        font-size: 24px; } }

.form-group {
  position: relative;
  width: 100%;
  font-family: "Mulish", Arial, Verdana, sans-serif;
  border-radius: 2px;
  overflow: hidden;
  padding-top: 5px; }
  .form-group.has-error .form-control {
    border-color: #D94335; }
    .form-group.has-error .form-control:focus + i + .form-control-label {
      opacity: 0; }
    .form-group.has-error .form-control:focus + .form-control-label {
      opacity: 0; }
    .form-group.has-error .form-control:focus {
      border-color: #D94335; }
  .form-group.has-error .help-block {
    position: absolute;
    top: -5px;
    left: 0;
    color: #D94335;
    font-size: 14px;
    padding: 4px;
    left: 15px;
    background-color: #fff; }
    @media (max-width: 767px) {
      .form-group.has-error .help-block {
        font-size: 12px; } }
  .form-group.has-error .checkbox + i + .help-block {
    bottom: 0;
    background-color: transparent;
    top: auto;
    left: 0px; }
  .form-group.has-error .checkbox + .help-block {
    bottom: 0;
    background-color: transparent;
    top: auto;
    left: 0px; }
  .form-group.has-error .checkbox {
    margin-bottom: 30px; }
  .form-group .checkbox label a {
    margin: 0 5px;
    text-decoration: underline;
    color: #333035; }
    .form-group .checkbox label a:hover {
      text-decoration: none; }

.form-group--margin {
  margin-bottom: 20px; }
  @media (max-width: 767px) {
    .form-group--margin {
      margin-bottom: 12px; } }

.password-wrap {
  position: relative; }
  .password-wrap__descr {
    margin-top: 10px;
    color: #181818;
    opacity: 0.5; }
  .password-wrap__show-pass {
    position: absolute;
    right: 20px;
    top: 22px;
    transform: translateX(-50%);
    z-index: 10; }
    @media (max-width: 767px) {
      .password-wrap__show-pass {
        right: 10px;
        top: 16px; } }
    @media (min-width: 1024px) {
      .password-wrap__show-pass:hover {
        cursor: pointer; } }
    .password-wrap__show-pass-icon {
      display: flex;
      align-items: center;
      justify-content: center; }

.form-control {
  box-sizing: border-box;
  width: 100%;
  padding: 10px 13px 10px 15px;
  background-color: transparent;
  transition: all 0.3s, border 0.3s;
  color: #333035;
  border: 1px solid #ADB1BF;
  border-radius: 24px;
  outline: none;
  font-size: 16px;
  height: 50px;
  line-height: 1.5; }
  @media (min-width: 1024px) {
    .form-control:hover {
      cursor: pointer;
      border-color: #aaaaaa; } }
  .form-control::placeholder {
    color: #B9C4D6; }
  @media (max-width: 767px) {
    .form-control {
      height: 40px; } }
  .form-control:focus {
    background-color: #fff;
    border-color: #5B627E;
    border-image-source: none; }
  @media (max-width: 767px) {
    .form-control {
      padding: 12px 15px;
      font-size: 14px; } }
  @media (max-width: 575px) {
    .form-control {
      padding: 10px 15px; } }
  .form-control::placeholder {
    color: #B9C4D6;
    font-size: 14px;
    font-weight: 400; }
  .form-control:focus + .form-control-feedback + .form-control-label {
    transform: translateY(-17px);
    color: #B9C4D6;
    right: auto; }
    @media (max-width: 767px) {
      .form-control:focus + .form-control-feedback + .form-control-label {
        transform: translateY(-15px); } }
  .form-control:focus + .form-control-label {
    transform: translateY(-17px);
    color: #B9C4D6;
    right: auto; }
    @media (max-width: 767px) {
      .form-control:focus + .form-control-label {
        transform: translateY(-15px); } }
  .form-control:-internal-autofill-selected {
    background-color: #fff; }
  .form-control:-webkit-autofill {
    box-shadow: inset 0 0 0 1000px #fff; }
    .form-control:-webkit-autofill + .form-control-feedback + .form-control-label {
      transform: translateY(-17px);
      color: #B9C4D6; }
      @media (max-width: 767px) {
        .form-control:-webkit-autofill + .form-control-feedback + .form-control-label {
          transform: translateY(-15px); } }
    .form-control:-webkit-autofill + .form-control-label {
      transform: translateY(-17px);
      color: #B9C4D6;
      right: auto; }
      @media (max-width: 767px) {
        .form-control:-webkit-autofill + .form-control-label {
          transform: translateY(-15px); } }
  .form-control.dirty + .form-control-feedback + .form-control-label {
    transform: translateY(-17px);
    color: #B9C4D6;
    right: auto; }
    @media (max-width: 767px) {
      .form-control.dirty + .form-control-feedback + .form-control-label {
        transform: translateY(-15px); } }
  .form-control.dirty + .form-control-label {
    transform: translateY(-17px);
    color: #B9C4D6;
    right: auto; }
    @media (max-width: 767px) {
      .form-control.dirty + .form-control-label {
        transform: translateY(-15px); } }

.form-control-label {
  position: absolute;
  left: 15px;
  top: 18px;
  font-size: 16px;
  display: block;
  background-color: #fff;
  padding: 2px;
  right: 10px;
  color: #B9C4D6;
  transition: all 0.3s ease;
  pointer-events: none; }
  @media (max-width: 767px) {
    .form-control-label {
      font-size: 12px;
      top: 14px; } }
  .form-control-label .label-required {
    color: rgba(170, 170, 170, 0.5);
    font-size: 18px;
    line-height: 0; }
    @media (max-width: 767px) {
      .form-control-label .label-required {
        font-size: 14px; } }

.form-control--textarea {
  font-family: "Mulish", Arial, Verdana, sans-serif;
  font-size: 15px;
  color: #333035;
  height: 120px;
  display: block;
  padding-top: 15px; }
  @media (max-width: 767px) {
    .form-control--textarea {
      padding-top: 10px; } }

.form-group--no-validation {
  padding-top: 0px; }

.form-control--margin {
  margin-bottom: 27px; }
  @media (max-width: 767px) {
    .form-control--margin {
      margin-bottom: 17px; } }

.checkbox {
  position: relative;
  display: flex;
  align-items: center; }
  .checkbox__descr {
    font-size: 13px;
    color: #757575;
    margin-left: 10px;
    white-space: normal; }
    .checkbox__descr a {
      color: #5B627E; }
    @media (max-width: 767px) {
      .checkbox__descr {
        white-space: inherit; } }
    @media (max-width: 575px) {
      .checkbox__descr {
        font-size: 12px;
        margin-left: 10px; } }
  .checkbox__descr-v2 {
    color: #333035;
    font-size: 16px;
    margin-left: 10px; }
  .checkbox__descr--mw {
    max-width: 550px;
    white-space: normal; }
  .checkbox input {
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    width: 2px;
    height: 2px; }
  .checkbox label {
    display: flex;
    align-items: center;
    padding: 0 0 0 0px;
    cursor: pointer;
    transition: color 0.3s;
    color: #333035;
    font-size: 1rem; }
    @media (max-width: 767px) {
      .checkbox label {
        font-size: 14px; } }
  .checkbox label:before {
    position: static;
    left: 0;
    top: 0;
    display: block;
    box-sizing: border-box;
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    content: "";
    user-select: none;
    transition: box-shadow 0.2s, border 0.2s;
    border: 1px solid #B9C4D6;
    border-radius: 2px;
    background-repeat: no-repeat;
    background-position: 50% 100%;
    background-size: contain;
    background-color: transparent; }
  .checkbox input:disabled ~ label {
    cursor: no-drop; }
  .checkbox input:checked ~ label {
    color: #000; }
  .checkbox input:checked ~ label:before {
    background-color: #5B627E;
    border-color: #5B627E;
    background-image: url("data:image/svg+xml,%3Csvg width='11' height='9' viewBox='0 0 11 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5L3.5 7.5L10 1' stroke='white' stroke-linecap='round'/%3E%3C/svg%3E%0A");
    background-size: auto;
    background-position: center; }
  .checkbox input:disabled ~ label:before {
    background-color: #FAFBFD;
    border-color: #EAEDF3; }
  .checkbox input:checked:disabled ~ label {
    color: #aeaeae;
    background-size: auto;
    background-position: 3px center; }
  @media (min-width: 1250px) {
    .checkbox input:not(:disabled) ~ label:hover:before {
      border-color: #5B627E; } }

.checkbox--big label {
  height: 24px;
  padding-left: 32px;
  color: #aaaaaa; }

.checkbox--big label:before {
  width: 24px;
  height: 24px; }

.checkbox-slider {
  position: relative; }
  .checkbox-slider input {
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    width: 1px;
    height: 1px; }
  .checkbox-slider .sublable {
    font-size: 16px;
    color: #5B627E;
    font-weight: 400;
    padding-left: 50px; }
  .checkbox-slider label {
    width: 40px;
    height: 20px;
    border-radius: 30px;
    background-color: #d2d5d6;
    cursor: pointer;
    transition: color 0.3s;
    color: #000;
    position: relative;
    display: flex;
    font-size: 26px;
    font-weight: 700;
    white-space: nowrap; }
    @media (min-width: 1024px) {
      .checkbox-slider label:hover {
        cursor: pointer; }
        .checkbox-slider label:hover:after {
          position: absolute;
          content: "";
          background-color: #64b08c; } }
    @media (max-width: 767px) {
      .checkbox-slider label {
        font-size: 18px; } }
    @media (max-width: 575px) {
      .checkbox-slider label {
        font-size: 14px; } }
    .checkbox-slider label:before {
      position: absolute;
      content: "";
      display: none; }
    .checkbox-slider label:after {
      position: absolute;
      content: "";
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background-color: #fff;
      top: 2px;
      left: 2px;
      transition: all 0.3s ease; }
  .checkbox-slider input:checked ~ label {
    background-color: #64b08c; }
    @media (min-width: 1024px) {
      .checkbox-slider input:checked ~ label:hover {
        cursor: pointer; }
        .checkbox-slider input:checked ~ label:hover:after {
          position: absolute;
          content: "";
          background-color: #fff; } }
    .checkbox-slider input:checked ~ label:after {
      position: absolute;
      content: "";
      left: 22px; }
  .checkbox-slider .checkbox__auth {
    color: #5B627E;
    margin-left: 10px;
    font-size: 16px; }
    @media (max-width: 767px) {
      .checkbox-slider .checkbox__auth {
        font-size: 12px; } }

select.custom-select {
  padding: 5px 10px;
  border-top: none;
  border-right: none;
  border-left: none;
  font-family: "Mulish", Arial, Verdana, sans-serif;
  background: #f6f6f6; }

.custom-select {
  background: #f6f6f6; }

.form-group-select {
  position: static; }

.form-group.has-error .checkbox label:before {
  border-color: red; }

.rate-group {
  display: inline-block; }

.checkbox-rate {
  position: absolute;
  opacity: 0;
  visibility: hidden; }
  .checkbox-rate:checked + .checkbox-rate-label {
    background-image: url("data:image/svg+xml,%3Csvg width='15' height='14' viewBox='0 0 15 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.39686 0.937322L9.39686 3.03732C9.59686 3.53732 10.0969 3.83732 10.5969 3.83732L12.8969 4.13732C14.1969 4.33732 14.6969 5.83732 13.6969 6.73732L12.0969 8.33732C11.6969 8.73732 11.5969 9.23732 11.6969 9.73732L12.0969 12.0373C12.2969 13.2373 10.9969 14.2373 9.89686 13.6373L7.89686 12.5373C7.49686 12.3373 6.89686 12.3373 6.49686 12.5373L4.49686 13.6373C3.39686 14.2373 2.09686 13.2373 2.29686 12.0373L2.69686 9.73732C2.79686 9.23732 2.59686 8.73732 2.29686 8.33732L0.696862 6.73732C-0.203138 5.83732 0.296862 4.33732 1.49686 4.13732L3.79686 3.83732C3.99686 3.73732 4.39686 3.43732 4.69686 2.93732L5.69686 0.837322C6.19686 -0.262678 7.89686 -0.262678 8.39686 0.937322Z' fill='%23FE7235'/%3E%3C/svg%3E%0A"); }

.checkbox-rate-label {
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg width='15' height='14' viewBox='0 0 15 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.39686 0.937322L9.39686 3.03732C9.59686 3.53732 10.0969 3.83732 10.5969 3.83732L12.8969 4.13732C14.1969 4.33732 14.6969 5.83732 13.6969 6.73732L12.0969 8.33732C11.6969 8.73732 11.5969 9.23732 11.6969 9.73732L12.0969 12.0373C12.2969 13.2373 10.9969 14.2373 9.89686 13.6373L7.89686 12.5373C7.49686 12.3373 6.89686 12.3373 6.49686 12.5373L4.49686 13.6373C3.39686 14.2373 2.09686 13.2373 2.29686 12.0373L2.69686 9.73732C2.79686 9.23732 2.59686 8.73732 2.29686 8.33732L0.696862 6.73732C-0.203138 5.83732 0.296862 4.33732 1.49686 4.13732L3.79686 3.83732C3.99686 3.73732 4.39686 3.43732 4.69686 2.93732L5.69686 0.837322C6.19686 -0.262678 7.89686 -0.262678 8.39686 0.937322Z' fill='%23E4E4E4'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block; }
  @media (min-width: 1250px) {
    .checkbox-rate-label:hover {
      cursor: pointer; } }
  .checkbox-rate-label.hover {
    background-image: url("data:image/svg+xml,%3Csvg width='15' height='14' viewBox='0 0 15 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.39686 0.937322L9.39686 3.03732C9.59686 3.53732 10.0969 3.83732 10.5969 3.83732L12.8969 4.13732C14.1969 4.33732 14.6969 5.83732 13.6969 6.73732L12.0969 8.33732C11.6969 8.73732 11.5969 9.23732 11.6969 9.73732L12.0969 12.0373C12.2969 13.2373 10.9969 14.2373 9.89686 13.6373L7.89686 12.5373C7.49686 12.3373 6.89686 12.3373 6.49686 12.5373L4.49686 13.6373C3.39686 14.2373 2.09686 13.2373 2.29686 12.0373L2.69686 9.73732C2.79686 9.23732 2.59686 8.73732 2.29686 8.33732L0.696862 6.73732C-0.203138 5.83732 0.296862 4.33732 1.49686 4.13732L3.79686 3.83732C3.99686 3.73732 4.39686 3.43732 4.69686 2.93732L5.69686 0.837322C6.19686 -0.262678 7.89686 -0.262678 8.39686 0.937322Z' fill='%23FE7235'/%3E%3C/svg%3E%0A"); }

.form-group--margin-top {
  margin-top: 57px; }

.control-label {
  display: none; }

.drag_n_drop-field {
  margin-bottom: 20px; }
  .drag_n_drop-field .file-selectdialog-switcher span {
    font-size: 16px;
    color: #5B627E;
    padding-left: 22px;
    position: relative; }
    .drag_n_drop-field .file-selectdialog-switcher span:before {
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      content: "";
      width: 10px;
      height: 20px;
      background-position: center;
      background-repeat: no-repeat;
      background-image: url("data:image/svg+xml,%3Csvg width='10' height='20' viewBox='0 0 10 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.75 20C1.68225 20 0 18.4229 0 16.4844V4.6875C0 2.10281 2.243 0 5 0C7.757 0 10 2.10281 10 4.6875V16.4844H8.75V4.6875C8.75 2.74898 7.06775 1.17188 5 1.17188C2.93225 1.17188 1.25 2.74898 1.25 4.6875V16.4844C1.25 17.7767 2.3715 18.8281 3.75 18.8281C5.1285 18.8281 6.25 17.7767 6.25 16.4844V7.03125C6.25 6.38508 5.68925 5.85938 5 5.85938C4.31075 5.85938 3.75 6.38508 3.75 7.03125V16.4844H2.5V7.03125C2.5 5.73891 3.6215 4.6875 5 4.6875C6.3785 4.6875 7.5 5.73891 7.5 7.03125V16.4844C7.5 18.4229 5.81775 20 3.75 20Z' fill='%235B627E'/%3E%3C/svg%3E%0A"); }
    .drag_n_drop-field .file-selectdialog-switcher span:after {
      position: absolute;
      content: "";
      left: 20px;
      right: 0;
      height: 1px;
      background-color: #5B627E;
      bottom: -1px;
      transition: all 0.3s ease; }
    @media (min-width: 1024px) {
      .drag_n_drop-field .file-selectdialog-switcher span:hover {
        cursor: pointer; }
        .drag_n_drop-field .file-selectdialog-switcher span:hover:after {
          position: absolute;
          content: "";
          right: 100%; } }
