@charset "UTF-8";
:root {
  --font-family: "Inter", sans-serif;
  --content-width: 1458px;
  --content-header-width: 1840px;
  --container-offset: 16px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --container-header-width: calc(var(--content-header-width) + (var(--container-offset) * 2));
  --color-bg: #121214;
  --color-05: #1E1E20;
  --color-white: #FFF;
  --color-white-20: #4F4F51;
  --color-white-50: #919192;
  --color-white-70: #BDBDBE;
  --color-white-80: #D3D3D3;
  --color-white-90: #E9E9E9;
  --color-primary: #B68867;
  --color-primary-20: rgba(182, 136, 103, 0.2);
  --color-primary-20-disabled: rgba(182, 136, 103, 0.1);
  --color-primary-20-hover: rgba(64, 54, 49, 0.4);
  --color-green: #27C137;
  --color-red: #F04438;
  --step-size: 24px;
  --progress-width: calc((var(--steps) - 1) / var(--steps) * 100%);
}

/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

/* .custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
} */
.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable value-keyword-case */
/* stylelint-disable */
@font-face {
  font-family: "Inter";
  src: url("../fonts/../fonts/Inter-Light.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/../fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/../fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/../fonts/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/../fonts/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "OpenSans";
  src: url("../fonts/../fonts/OpenSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Oxygen";
  src: url("../fonts/../fonts/Oxygen-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Oxygen";
  src: url("../fonts/../fonts/Oxygen-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
html.is-lock {
  overflow: hidden;
}

.page {
  height: 100%;
  font-family: var(--font-family, sans-serif);
  font-weight: 400;
  font-style: normal;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background-color: var(--color-bg);
}

.page__body {
  margin: 0;
  min-width: 390px;
  min-height: 100%;
}

img {
  -o-object-fit: cover;
  object-fit: cover;
}

.main {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.is-hidden {
  display: none !important; /* stylelint-disable-line declaration-no-important */
}

.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.container-header {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-header-width);
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

a,
button,
label,
input,
textarea,
select,
svg * {
  -webkit-transition-duration: var(--transition-duration);
  transition-duration: var(--transition-duration);
}

a {
  color: inherit;
}
a[class] {
  text-decoration: none;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}

.btn-primary {
  color: var(--color-white);
  font-size: 16px;
  line-height: normal;
  border-radius: 8px;
  background-color: var(--color-primary);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.btn-primary:hover {
  background: rgba(182, 136, 103, 0.7);
}
.btn-primary[disabled] {
  color: var(--color-white-50);
  background: rgba(182, 136, 103, 0.2);
}

.btn-secondary {
  color: var(--color-white);
  font-size: 16px;
  line-height: normal;
  border-radius: 8px;
  background-color: var(--color-primary-20);
  -webkit-transition: background-color 0.3s ease 0s;
  transition: background-color 0.3s ease 0s;
}
.btn-secondary:hover {
  background: var(--color-primary-20-hover);
}
.btn-secondary:focus-visible {
  outline: 1px solid var(--color-primary);
  outline-offset: 2px;
}
.btn-secondary:active {
  outline: 1px solid var(--color-primary);
}
.btn-secondary[disabled] {
  background-color: var(--color-primary-20-disabled);
  color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.hide {
  display: none;
}

.header {
  background-color: var(--color-05);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 101;
  -webkit-transition: -webkit-box-shadow 0.3s ease 0s;
  transition: -webkit-box-shadow 0.3s ease 0s;
  transition: box-shadow 0.3s ease 0s;
  transition: box-shadow 0.3s ease 0s, -webkit-box-shadow 0.3s ease 0s;
}
.header.scrolling {
  -webkit-box-shadow: 0 1px 2px rgba(182, 136, 103, 0.5);
  box-shadow: 0 1px 2px rgba(182, 136, 103, 0.5);
}
.header.scrolling .header__inner {
  padding-block: 8px;
}
.header__inner {
  padding-block: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: clamp(1rem, -0.5519662921rem + 6.3670411985vw, 5.25rem);
  -moz-column-gap: clamp(1rem, -0.5519662921rem + 6.3670411985vw, 5.25rem);
  column-gap: clamp(1rem, -0.5519662921rem + 6.3670411985vw, 5.25rem);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: padding-block 0.3s ease 0s;
  transition: padding-block 0.3s ease 0s;
}
@media (max-width: 1440.98px) {
  .header__inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    row-gap: 8px;
  }
}
@media (max-width: 1440.98px) {
  .header__logo {
    margin-right: auto;
  }
}
@media (max-width: 1023.98px) {
  .header__logo {
    margin: 0;
  }
}
.header__nav {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media (max-width: 1440.98px) {
  .header__nav {
    -webkit-box-flex: 0;
    -ms-flex: 0;
    flex: 0;
  }
}
.header__nav > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: clamp(1rem, 0.8174157303rem + 0.7490636704vw, 1.5rem);
  -moz-column-gap: clamp(1rem, 0.8174157303rem + 0.7490636704vw, 1.5rem);
  column-gap: clamp(1rem, 0.8174157303rem + 0.7490636704vw, 1.5rem);
}
.header__nav > ul > li > a {
  color: var(--color-white);
  font-size: 16px;
  line-height: normal;
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  white-space: nowrap;
}
@media (any-hover: hover) {
  .header__nav > ul > li > a:hover {
    color: var(--color-primary);
  }
}
@media (any-hover: none) {
  .header__nav > ul > li > a:active {
    color: var(--color-primary);
  }
}
@media (max-width: 1023.98px) {
  .header__nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    width: 390px;
    height: calc(100vh - var(--header-height));
    background-color: #2D2D2F;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 32px 24px;
    z-index: -1;
    -webkit-transition: -webkit-transform 0.3s ease 0s;
    transition: -webkit-transform 0.3s ease 0s;
    transition: transform 0.3s ease 0s;
    transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    overflow-y: auto;
    overflow-x: hidden;
  }
}
@media (max-width: 1023.98px) and (max-width: 480.98px) {
  .header__nav {
    width: 100%;
  }
}
@media (max-width: 1023.98px) {
  .header__nav.menu--active {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
  .header__nav > ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .header__nav > ul > li:not(:last-child) {
    margin-bottom: 16px;
  }
  .header__nav > ul > li a {
    padding: 8px;
    color: var(--color-white-70);
    font-size: 24px;
    font-weight: 700;
  }
}
.header__mobile-actions {
  display: none;
}
@media (max-width: 1023.98px) {
  .header__mobile-actions {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 30px;
  }
}
@media (max-width: 1023.98px) {
  .header__mobile-profile {
    grid-column: 1/-1;
  }
}
@media (max-width: 1023.98px) {
  .header__mobile-phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media (max-width: 1023.98px) {
  .header__mobile-lang {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .header__mobile-lang .choices__inner {
    background-color: #2D2D2F !important;
  }
  .header__mobile-lang .choices__list--dropdown {
    left: auto;
    right: 0%;
  }
}
.header__action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: clamp(1rem, 0.2696629213rem + 2.9962546816vw, 3rem);
  -moz-column-gap: clamp(1rem, 0.2696629213rem + 2.9962546816vw, 3rem);
  column-gap: clamp(1rem, 0.2696629213rem + 2.9962546816vw, 3rem);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1023.98px) {
  .header__action {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}
@media (max-width: 767.98px) {
  .header__action .header__contact {
    display: none;
  }
}
.header__contact, .header__profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 4px;
  -moz-column-gap: 4px;
  column-gap: 4px;
}
.header__contact svg path, .header__profile svg path {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (any-hover: hover) {
  .header__contact:hover svg path, .header__profile:hover svg path {
    stroke: var(--color-primary);
  }
  .header__contact:hover span, .header__profile:hover span {
    color: var(--color-primary);
  }
}
@media (any-hover: none) {
  .header__contact:active svg path, .header__profile:active svg path {
    stroke: var(--color-primary);
  }
  .header__contact:active span, .header__profile:active span {
    color: var(--color-primary);
  }
}
.header__phone, .header__sign-in {
  color: var(--color-white-50);
  font-size: 16px;
  line-height: normal;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 1023.98px) {
  .header__profile {
    border-radius: 8px;
    background: var(--color-primary);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 18px 24px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .header__profile span {
    color: var(--color-white);
  }
  .header__profile svg path {
    stroke: var(--color-white);
  }
}
.header .choices__inner {
  border: 0;
  background-color: var(--color-05);
  color: var(--color-white-50);
  font-size: 16px;
  line-height: normal;
  text-transform: uppercase;
}
.header .choices[data-type*=select-one]:after {
  border: 0;
  width: 14px;
  height: 8px;
  background: url("../img/chevron-down.svg") center/14px 8px no-repeat;
  margin-top: 0;
  right: 0;
  -webkit-transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  transform-origin: 50% 0%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.header .choices[data-type*=select-one].is-open:after {
  -webkit-transform: rotate(180deg) translateY(-3px);
  -ms-transform: rotate(180deg) translateY(-3px);
  transform: rotate(180deg) translateY(-3px);
}
.header .choices__list--dropdown .choices__item {
  padding-left: 34px;
  background-position: 8px center;
  background-repeat: no-repeat;
  background-size: 18px 18px;
}
.header .choices__list--dropdown .choices__item:nth-child(1) {
  background-image: url("../img/flag-united-kingdom.svg");
}
.header .choices__list--dropdown .choices__item:nth-child(2) {
  background-image: url("../img/flag-ukraine.svg");
}
.header .choices__list--dropdown .choices__item:nth-child(3) {
  background-image: url("../img/flag-croatia.svg");
}
.header .choices__list--dropdown .choices__item--selectable.is-highlighted {
  background-color: #39393B;
  background-position: 8px center, calc(100% - 8px) center;
  background-repeat: no-repeat, no-repeat;
  background-size: 18px 18px, 20px 20px;
}
.header .choices__list--dropdown .choices__item--selectable.is-highlighted:nth-child(1) {
  background-image: url("../img/flag-united-kingdom.svg"), url("../img/check.svg");
}
.header .choices__list--dropdown .choices__item--selectable.is-highlighted:nth-child(2) {
  background-image: url("../img/flag-ukraine.svg"), url("../img/check.svg");
}
.header .choices__list--dropdown .choices__item--selectable.is-highlighted:nth-child(3) {
  background-image: url("../img/flag-croatia.svg"), url("../img/check.svg");
}
.header .choices__list--dropdown {
  padding: 6px;
  border-radius: 8px;
  border: 1px solid #39393B;
  color: var(--color-white-50);
  background-color: var(--color-bg);
  font-size: 16px;
  line-height: normal;
  -webkit-box-shadow: 0px 16px 20px 0px rgba(0, 0, 0, 0.5), 0px 4px 6px -2px rgba(16, 24, 40, 0.03);
  box-shadow: 0px 16px 20px 0px rgba(0, 0, 0, 0.5), 0px 4px 6px -2px rgba(16, 24, 40, 0.03);
  background-color: black;
  min-width: 180px;
  width: 100%;
}
.header .choices__list--dropdown .choices__item--selectable {
  text-transform: uppercase;
  padding-right: 10px;
  border-radius: 6px;
}
.header .menu-logged {
  display: none;
}
.header.logged .header__profile {
  display: none;
}
.header.logged .menu-logged {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 480.98px) {
  .header.logged .menu-logged {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .header.logged .menu-logged .menu-logged__item {
    width: 100%;
  }
  .header.logged .menu-logged .menu-logged__btn {
    padding-bottom: 24px;
    position: relative;
    width: 100%;
    position: relative;
    border-bottom: 1px solid #4E4E50;
  }
}
@media (max-width: 480.98px) and (max-width: 480.98px) {
  .header.logged .menu-logged .menu-logged__btn:before {
    content: "";
    position: absolute;
    top: 100%;
    right: 100%;
    width: calc(100vw + var(--container-offset) / 2);
    height: 1px;
    background-color: #4E4E50;
  }
  .header.logged .menu-logged .menu-logged__btn:after {
    top: 100%;
    left: 100%;
    width: calc(100vw + var(--container-offset) / 2);
    height: 1px;
    background-color: #4E4E50;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
  }
}
@media (max-width: 480.98px) {
  .header.logged .menu-logged .dropdown {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
  }
  .header.logged .menu-logged .dropdown .dropdown__list {
    position: relative;
    padding-block: 15px;
    margin-bottom: 10px;
    border-bottom: 1px solid #4E4E50;
  }
}
@media (max-width: 480.98px) and (max-width: 480.98px) {
  .header.logged .menu-logged .dropdown .dropdown__list:before {
    content: "";
    position: absolute;
    top: 100%;
    right: 100%;
    width: calc(100vw + var(--container-offset) / 2);
    height: 1px;
    background-color: #4E4E50;
  }
  .header.logged .menu-logged .dropdown .dropdown__list:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 100%;
    width: calc(100vw + var(--container-offset) / 2);
    height: 1px;
    background-color: #4E4E50;
  }
}
@media (max-width: 480.98px) {
  .header.logged .menu-logged .dropdown .dropdown__item:not(:last-child) {
    margin-bottom: 16px;
  }
  .header.logged .menu-logged .dropdown .dropdown__item .dropdown__link {
    font-size: 24px;
    font-weight: 700;
    padding: 0;
  }
  .header.logged .menu-logged .dropdown .dropdown__item .dropdown__link svg {
    display: none;
  }
  .header.logged .menu-logged .dropdown .dropdown__item:last-child {
    display: none;
  }
}
.header.logged .menu-logged__item {
  position: relative;
  z-index: 1;
}
.header.logged .menu-logged__item:not(:last-child) {
  margin-right: 30px;
}
.header.logged .menu-logged__btn {
  cursor: pointer;
  color: var(--color-white-50);
  font-size: 16px;
  line-height: normal;
  position: relative;
  padding-right: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 8px;
  -moz-column-gap: 8px;
  column-gap: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header.logged .menu-logged__btn span {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #4F4F51;
  padding: 8px;
  border-radius: 50%;
  color: var(--color-white-70);
  font-size: clamp(1.25rem, 1.3412921348rem + -0.3745318352vw, 1rem);
  font-style: normal;
  font-weight: 600;
  line-height: var(--Line-height-text-md, 24px); /* 150% */
}
.header.logged .menu-logged__btn:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 14px;
  height: 8px;
  background: url("../img/chevron-down.svg") center/14px 8px no-repeat;
  margin-top: 0;
  -webkit-transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  transform-origin: 50% 0%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.header.logged .menu-logged__btn-active:after {
  -webkit-transform: rotate(180deg) translateY(-3px);
  -ms-transform: rotate(180deg) translateY(-3px);
  transform: rotate(180deg) translateY(-3px);
}
.header.logged .dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 1020;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease 0s, visibility 0.3s ease 0s;
  transition: opacity 0.3s ease 0s, visibility 0.3s ease 0s;
  padding: 6px;
  border-radius: 8px;
  border: 1px solid #39393B;
  color: var(--color-white-50);
  background-color: var(--color-bg);
  font-size: 16px;
  line-height: normal;
  -webkit-box-shadow: 0px 16px 20px 0px rgba(0, 0, 0, 0.5), 0px 4px 6px -2px rgba(16, 24, 40, 0.03);
  box-shadow: 0px 16px 20px 0px rgba(0, 0, 0, 0.5), 0px 4px 6px -2px rgba(16, 24, 40, 0.03);
  max-width: 195px;
  width: 100%;
}
@media (max-width: 480.98px) {
  .header.logged .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    max-width: none;
    width: 100%;
  }
}
.header.logged .dropdown-active {
  opacity: 1;
  visibility: visible;
}
.header.logged .dropdown__item {
  border-radius: 6px;
  overflow: hidden;
}
.header.logged .dropdown__link {
  width: 100%;
  height: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-column-gap: 8px;
  -moz-column-gap: 8px;
  column-gap: 8px;
  width: 100%;
  padding: 11px 8px;
  color: var(--color-white-70);
  font-size: 14px;
  line-height: 1.4;
  -webkit-transition: background-color 0.3s ease 0s;
  transition: background-color 0.3s ease 0s;
}
@media (any-hover: hover) {
  .header.logged .dropdown__link:hover {
    background-color: #39393B;
  }
}
@media (any-hover: none) {
  .header.logged .dropdown__link:active {
    background-color: #39393B;
  }
}

.burger {
  --burger-width: 24px;
  --burger-height: 20px;
  --burger-line-height: 2px;
  position: relative;
  border: none;
  padding: 0;
  width: var(--burger-width);
  height: var(--burger-height);
  color: var(--color-white-50);
  background-color: transparent;
  cursor: pointer;
  display: none;
}
.burger::before, .burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  border-radius: 3px;
}
.burger::before {
  top: 0;
}
.burger::after {
  top: calc(100% - var(--burger-line-height));
}
.burger__line {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  border-radius: 3px;
}
.burger--active::before {
  top: 50%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger--active::after {
  top: 50%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger--active .burger__line {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media (max-width: 1023.98px) {
  .burger {
    display: block;
  }
}

.contact {
  background: radial-gradient(rgba(0, 0, 0, 0.4), transparent), var(--bg-image-desktop) center/cover no-repeat;
  padding: 112px 0 120px;
}
@media (max-width: 767.98px) {
  .contact {
    background: var(--bg-image-tablet) center/cover no-repeat;
  }
}
@media (max-width: 480.98px) {
  .contact {
    background: var(--bg-image-mobile) center/cover no-repeat;
  }
}
.contact__list {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  margin-bottom: 32px;
}
.contact__item {
  --personItemSize: 56px;
  position: relative;
}
.contact__item:not(:last-child) {
  margin-left: calc(var(--personItemSize) / 4 * -1);
}
.contact__item:nth-child(1) {
  z-index: 1;
}
.contact__item:nth-child(2) {
  z-index: 2;
}
.contact__item:nth-child(3) {
  z-index: 3;
}
.contact__item:nth-child(4) {
  z-index: 4;
}
.contact__item:nth-child(5) {
  z-index: 5;
}
.contact__item:nth-child(6) {
  z-index: 6;
}
.contact__item:nth-child(7) {
  z-index: 7;
}
.contact__item:nth-child(8) {
  z-index: 8;
}
.contact__item:nth-child(9) {
  z-index: 9;
}
.contact__item:nth-child(10) {
  z-index: 10;
}
.contact__item:nth-child(11) {
  z-index: 11;
}
.contact__item:nth-child(12) {
  z-index: 12;
}
.contact__item:nth-child(13) {
  z-index: 13;
}
.contact__item:nth-child(14) {
  z-index: 14;
}
.contact__item:nth-child(15) {
  z-index: 15;
}
.contact__item:nth-child(16) {
  z-index: 16;
}
.contact__item:nth-child(17) {
  z-index: 17;
}
.contact__item:nth-child(18) {
  z-index: 18;
}
.contact__item:nth-child(19) {
  z-index: 19;
}
.contact__item:nth-child(20) {
  z-index: 20;
}
.contact__avatar {
  width: var(--personItemSize);
  height: var(--personItemSize);
  overflow: hidden;
}
.contact__avatar img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}
.contact__online {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--color-white);
  background-color: var(--color-red);
  position: absolute;
  right: 2px;
  bottom: 5px;
}
.contact__online.active {
  background-color: var(--color-green);
}
.contact__title {
  color: var(--color-white);
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 8px;
}
.contact__subtitle {
  margin-bottom: 32px;
  max-width: 450px;
}
.contact__subtitle p {
  color: var(--color-white);
  font-size: 16px;
  line-height: normal;
}
.contact__btn {
  padding: 12.5px 26.5px;
}

.product {
  margin-top: var(--header-height);
  padding-block: clamp(2.5rem, 1.952247191rem + 2.2471910112vw, 4rem) clamp(5rem, 4.0870786517rem + 3.7453183521vw, 7.5rem);
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .product {
    padding-top: 0;
  }
}
.product__breadcrumb {
  margin-bottom: 40px;
}
@media (max-width: 1440.98px) {
  .product__breadcrumb {
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .product__breadcrumb {
    display: none;
  }
}
.product__breadcrumb > li {
  position: relative;
  display: inline;
  line-height: 1.4;
  font-size: 16px;
  color: var(--color-white-50);
}
.product__breadcrumb > li:not(:last-child) {
  padding-right: 12px;
  margin-right: 12px;
}
.product__breadcrumb > li:not(:last-child):after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 6px;
  height: 10px;
  background: url("../img/icon-breadcrumbs.svg") 100% center/6px 10px no-repeat;
  color: var(--color-white-20);
}
.product__breadcrumb > li:last-child {
  color: var(--color-white);
}
.product__breadcrumb > li:last-child:after {
  content: "";
}
.product__breadcrumb > li > a {
  text-decoration: none;
  -webkit-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}
.product__breadcrumb > li > a:hover {
  color: var(--color-white);
}
.product .progress-container {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  margin-top: 16px;
}
@media (max-width: 767.98px) {
  .product .progress-container {
    margin-bottom: 32px;
  }
  .product .progress-container:after {
    content: "";
    position: absolute;
    left: -33px;
    top: -16px;
    width: calc(100% + 66px);
    height: calc(100% + 32px);
    background-color: var(--color-05);
    z-index: -1;
    border-bottom: 1px solid var(--color-white-20);
    border-top: 1px solid var(--color-white-20);
  }
}
.product .progress-container.hide {
  display: none;
}
.product .progress-container:before {
  content: "";
  height: 1px;
  width: var(--progress-width);
  background-color: var(--color-white-50);
  position: absolute;
  top: calc(var(--step-size) / 2);
  left: 50%;
  translate: -50% -50%;
}
.product .progress-container > ol {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  counter-reset: step-number;
  position: relative;
  z-index: 3;
}
.product .progress-container > ol > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  color: var(--color-white-50);
  font-size: 12px;
  line-height: normal;
}
.product .progress-container > ol > li:where(.done, .current) {
  color: #fff;
}
.product .progress-container > ol > li.current:before {
  background-color: var(--color-primary);
  border: 1px solid var(--color-white);
  outline: 6px solid rgba(182, 136, 103, 0.2);
}
.product .progress-container > ol > li.done:before {
  background: url("../img/check.png") center/16px 16px no-repeat var(--color-primary);
  width: 24px;
  height: 24px;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.product .progress-container > ol > li:before {
  counter-increment: step-number;
  content: counter(step-number);
  width: var(--step-size);
  height: var(--step-size);
  background-color: var(--color-white-50);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 0;
  margin-bottom: 12px;
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}
.product .progress-container .progress {
  height: 1px;
  width: var(--progress-width);
  background-color: var(--color-primary);
  position: absolute;
  top: calc(var(--step-size) / 2);
  left: 50%;
  translate: -50% -50%;
  z-index: 2;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.product .controls {
  display: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.product .controls button {
  padding: 18px 24px;
}
@media (max-width: 480.98px) {
  .product .controls button {
    min-width: 100% !important;
  }
}
.product .controls .buttons-pay button:not(:last-child) {
  margin-right: 16px;
}
@media (max-width: 480.98px) {
  .product .controls .buttons-pay button:not(:last-child) {
    margin-bottom: 16px;
  }
}
@media (max-width: 767.98px) {
  .product .controls .buttons-pay {
    margin-top: 32px;
  }
}
@media (max-width: 480.98px) {
  .product .controls .buttons-pay {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .product .controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 15px;
  }
  .product .controls .btn-continue.hide {
    display: none;
  }
}
.product .steps-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 448px;
  grid-template-columns: auto 448px;
  -webkit-column-gap: 48px;
  -moz-column-gap: 48px;
  column-gap: 48px;
}
@media (max-width: 1440.98px) {
  .product .steps-container {
    max-width: 968px;
    margin: 0 auto;
  }
}
.product .steps-container .step {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.product .steps-container .step-top {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
}
@media (max-width: 767.98px) {
  .product .steps-container .step-top {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }
}
.product .steps-container > .step:nth-child(2) {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
}
.product .steps-container > .step:nth-child(3) {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
}
.product .steps-container > .step:nth-child(4) {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  grid-row: 1/4;
}
@media (max-width: 1440.98px) {
  .product .steps-container > .step:nth-child(4) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    grid-row: auto;
    margin-top: 32px;
  }
}
@media (max-width: 1440.98px) {
  .product .steps-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
  }
}
@media (max-width: 767.98px) {
  .product .steps-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
  }
  .product .steps-container .step-top {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
  }
  .product .steps-container .step {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
  }
}
.product .steps-container .product-car {
  padding: 48px 24px 0px 24px;
  border-radius: 16px 16px 0 0;
  background: url("../img/ellipse-dark.png") right bottom/603px 247px no-repeat, url("../img/ellipse-light.png") right bottom/621px 482px no-repeat;
  background-color: var(--color-05);
}
@media (max-width: 767.98px) {
  .product .steps-container .product-car {
    background-color: transparent;
    padding-left: 0;
    padding-right: 0;
    background: url("../img/ellipse-dark.png") center center/100% no-repeat, url("../img/ellipse-light.png") center -50px/80% no-repeat;
  }
}
@media (max-width: 575.98px) {
  .product .steps-container .product-car {
    background: url("../img/ellipse-dark.png") center center/100% no-repeat, url("../img/ellipse-light.png") center -50px/100% no-repeat;
  }
}
.product .steps-container .product-car__wrap {
  border-bottom: 1px solid var(--color-white-20);
  padding-bottom: 40px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 460px;
  grid-template-columns: auto 460px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1023.98px) {
  .product .steps-container .product-car__wrap {
    -ms-grid-columns: auto auto;
    grid-template-columns: auto auto;
  }
}
@media (max-width: 767.98px) {
  .product .steps-container .product-car__wrap {
    border-bottom: 0;
  }
}
@media (max-width: 575.98px) {
  .product .steps-container .product-car__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    row-gap: 24px;
    width: 100%;
  }
}
.product .steps-container .product-car__body {
  color: var(--color-white);
}
@media (max-width: 575.98px) {
  .product .steps-container .product-car__body {
    -ms-flex-item-align: start;
    align-self: flex-start;
  }
}
.product .steps-container .product-car__title {
  font-size: clamp(1.25rem, 0.9761235955rem + 1.1235955056vw, 2rem);
  font-weight: 600;
  line-height: 100%;
  text-transform: capitalize;
  margin-bottom: 16px;
}
.product .steps-container .product-car__price {
  font-size: 16px;
  line-height: normal;
  margin-bottom: 20px;
}
.product .steps-container .product-car__price-price {
  font-size: clamp(1.25rem, 1.1587078652rem + 0.3745318352vw, 1.5rem);
  margin-right: 8px;
}
.product .steps-container .product-car__currency {
  text-transform: uppercase;
}
.product .steps-container .product-car__included {
  font-size: clamp(1.125rem, 1.0793539326rem + 0.1872659176vw, 1.25rem);
  line-height: 1.5;
  margin-bottom: 16px;
}
.product .steps-container .product-car__list {
  margin-bottom: 32px;
}
.product .steps-container .product-car__item {
  font-size: 14px;
  font-weight: 300;
  line-height: normal;
  padding-left: 24px;
  background: url("../img/check-circle.svg") left center/16px 16px no-repeat;
}
.product .steps-container .product-car__item:not(:last-child) {
  margin-bottom: 8px;
}
.product .steps-container .product-car__info-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 142px 142px;
  grid-template-columns: 142px 142px;
  gap: 4px 8px;
}
.product .steps-container .product-car__info-item {
  padding: 4px 4px 4px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 8px;
  -moz-column-gap: 8px;
  column-gap: 8px;
}
.product .steps-container .extras {
  padding: 16px 24px 0 24px;
  background-color: var(--color-05);
}
@media (max-width: 767.98px) {
  .product .steps-container .extras {
    background-color: transparent;
  }
}
@media (max-width: 480.98px) {
  .product .steps-container .extras {
    padding-left: 0;
    padding-right: 0;
  }
}
.product .steps-container .extras__wrap {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-white-20);
}
@media (max-width: 767.98px) {
  .product .steps-container .extras__wrap {
    border: 0;
  }
}
.product .steps-container .extras__title {
  font-size: clamp(1.25rem, 1.1587078652rem + 0.3745318352vw, 1.5rem);
  line-height: normal;
  margin-bottom: 32px;
}
.product .steps-container .extras__list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(294px, 1fr));
  gap: 24px 16px;
}
@media (max-width: 767.98px) {
  .product .steps-container .extras__list {
    grid-template-columns: repeat(auto-fit, minmax(176px, 1fr));
  }
}
@media (max-width: 480.98px) {
  .product .steps-container .extras__list {
    gap: 15px 6px;
  }
}
.product .steps-container .extras__item {
  background-color: #39393B;
  border-radius: 8px;
  overflow: hidden;
}
.product .steps-container .extras__input {
  display: none;
}
.product .steps-container .extras__input:checked ~ .extras__label {
  background-color: var(--color-primary);
}
.product .steps-container .extras__input:checked ~ .extras__label:after {
  content: "－";
  background-color: rgb(197, 160, 133);
}
.product .steps-container .extras__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 8px;
  -webkit-column-gap: 8px;
  -moz-column-gap: 8px;
  column-gap: 8px;
  position: relative;
}
@media (max-width: 767.98px) {
  .product .steps-container .extras__label {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    row-gap: 8px;
    height: 100%;
    padding: 8px 34px 8px 16px;
  }
}
.product .steps-container .extras__label:after {
  content: "＋";
  position: absolute;
  right: 0;
  top: 0;
  background-color: var(--color-white-20);
  width: 34px;
  height: 100%;
  font-size: 32px;
  line-height: 1.4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.product .steps-container .extras__label svg {
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-flex-preferred-size: 24px;
  flex-basis: 24px;
}
.product .steps-container .extras__label-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 17px;
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 767.98px) {
  .product .steps-container .extras__label-body {
    border-left: 0;
    padding-left: 0;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}
.product .steps-container .extras__label-name {
  font-size: clamp(0.875rem, 0.8293539326rem + 0.1872659176vw, 1rem);
  color: var(--color-white);
  line-height: normal;
}
.product .steps-container .extras__label-price {
  color: var(--color-white);
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
}
.product .steps-container .insurance {
  padding: 16px 24px 40px 24px;
  background-color: var(--color-05);
  border-radius: 0 0 16px 16px;
}
@media (max-width: 767.98px) {
  .product .steps-container .insurance {
    background-color: transparent;
    padding-left: 0;
    padding-right: 0;
  }
}
.product .steps-container .insurance__title {
  font-size: clamp(1.25rem, 1.1587078652rem + 0.3745318352vw, 1.5rem);
  line-height: normal;
  margin-bottom: 32px;
}
.product .steps-container .insurance__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 767.98px) {
  .product .steps-container .insurance__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.product .steps-container .insurance__item {
  position: relative;
}
.product .steps-container .insurance__input {
  display: none;
}
.product .steps-container .insurance__input:checked ~ .insurance__label + .card-insurance {
  background: url("../img/card-bg.png") right bottom/296px 327px no-repeat;
  background-color: var(--color-primary);
}
.product .steps-container .insurance__input:checked ~ .insurance__label + .card-insurance .card-insurance__list:not(.card-insurance__list-alert) .card-insurance__item {
  background: url("../img/check-circle.svg") left 4px/16px 16px no-repeat;
}
.product .steps-container .insurance__input:checked ~ .insurance__label + .card-insurance .card-insurance__list.card-insurance__list-alert .card-insurance__item {
  background: url("../img/alert-circle-white.svg") left 4px/16px 16px no-repeat;
}
.product .steps-container .insurance__input:checked ~ .insurance__label + .card-insurance .card-insurance__recommend {
  color: var(--color-white);
}
.product .steps-container .insurance__label {
  position: absolute;
  inset: 0;
}
.product .steps-container .insurance .card-insurance {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-white);
  padding: 24px;
  height: 100%;
}
@media (max-width: 1023.98px) {
  .product .steps-container .insurance .card-insurance {
    padding: 24px 16px;
  }
}
.product .steps-container .insurance .card-insurance__title {
  font-size: 16px;
  text-align: center;
  line-height: normal;
  margin-bottom: 8px;
}
.product .steps-container .insurance .card-insurance__price {
  text-align: center;
  font-size: 32px;
  white-space: nowrap;
  font-weight: 600;
  line-height: 1;
  text-transform: capitalize;
  margin-bottom: 24px;
}
.product .steps-container .insurance .card-insurance__important {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 8px;
}
.product .steps-container .insurance .card-insurance__list-alert .card-insurance__item {
  background: url("../img/alert-circle.svg") left 4px/16px 16px no-repeat;
}
.product .steps-container .insurance .card-insurance__item {
  padding-left: 24px;
  background: url("../img/check-circle-broken.svg") left 4px/16px 16px no-repeat;
  font-size: 14px;
  line-height: 1.4;
}
.product .steps-container .insurance .card-insurance__item:not(:last-child) {
  margin-bottom: 8px;
}
.product .steps-container .insurance .card-insurance__recommend {
  color: #656566;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.4;
  margin-top: 16px;
}
.product .steps-container .insurance .card-insurance__currency {
  text-transform: uppercase;
  margin-left: 8px;
}
.product .steps-container .order {
  color: var(--color-white);
}
.product .steps-container .order__title {
  font-size: clamp(1.25rem, 1.1587078652rem + 0.3745318352vw, 1.5rem);
  line-height: normal;
  margin-bottom: 32px;
}
.product .steps-container .order__form {
  color: var(--color-white);
  padding-inline: 1px;
}
.product .steps-container .order__form .buttons-pay-order {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 24px;
  -moz-column-gap: 24px;
  column-gap: 24px;
}
.product .steps-container .order__form .buttons-pay-order button {
  width: 100%;
  padding: 18px 24px;
}
@media (max-width: 767.98px) {
  .product .steps-container .order__form .buttons-pay-order {
    display: none;
  }
}
.product .steps-container .order__field:not(.order__field-last) {
  margin-bottom: 24px;
}
.product .steps-container .order__field input {
  width: 100%;
  outline: none;
  border: none;
  background-color: transparent;
  color: var(--color-white);
  font-size: 16px;
  line-height: 1.5;
}
.product .steps-container .order__field input::-webkit-input-placeholder {
  color: var(--color-white-50);
}
.product .steps-container .order__field input::-moz-placeholder {
  color: var(--color-white-50);
}
.product .steps-container .order__field input:-ms-input-placeholder {
  color: var(--color-white-50);
}
.product .steps-container .order__field input::-ms-input-placeholder {
  color: var(--color-white-50);
}
.product .steps-container .order__field input::placeholder {
  color: var(--color-white-50);
}
.product .steps-container .order__field label {
  display: block;
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 6px;
}
.product .steps-container .order__field label span {
  color: var(--color-primary);
  margin-left: 2px;
}
.product .steps-container .order__field-last .order__field-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  margin-bottom: 32px;
}
.product .steps-container .order__field-last .order__field-wrap select {
  color: var(--color-white-20);
  font-size: 16px;
  line-height: 1.5;
  border: none;
  outline: none;
  background-color: var(--color-bg);
}
.product .steps-container .order__field-wrap {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--color-white-20);
  -webkit-box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}
.product .steps-container .order__accept {
  margin-bottom: 32px;
}
.product .steps-container .order__accept .checkbox {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 12px;
  -moz-column-gap: 12px;
  column-gap: 12px;
}
.product .steps-container .order__accept .checkbox::-moz-selection {
  background: none;
}
.product .steps-container .order__accept .checkbox::selection {
  background: none;
}
.product .steps-container .order__accept .checkbox-field {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: none;
}
.product .steps-container .order__accept .checkbox-custom {
  display: inline-block;
  cursor: pointer;
  width: 20px;
  height: 20px;
  overflow: hidden;
  border: 1px solid var(--color-primary);
  border-radius: 6px;
  position: relative;
}
.product .steps-container .order__accept .checkbox-custom:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: url("../img/check-white.svg") center center/14px 14px no-repeat var(--color-primary);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
.product .steps-container .order__accept .checkbox-field:checked + .checkbox-custom:after {
  opacity: 1;
}
.product .steps-container .order__accept .checkbox-field:disabled ~ .checkbox-content,
.product .steps-container .order__accept .checkbox-field:disabled ~ .checkbox-custom {
  opacity: 0.4;
  pointer-events: none;
}
.product .steps-container .order__accept .checkbox-content::-moz-selection {
  background: none;
}
.product .steps-container .order__accept .checkbox-content::selection {
  background: none;
}
.product .steps-container .summary {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  padding: 16px;
  margin-bottom: 32px;
}
@media (max-width: 767.98px) {
  .product .steps-container .summary {
    margin-bottom: 0;
  }
}
.product .steps-container .summary p {
  margin-bottom: 0;
}
.product .steps-container .summary__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  color: var(--color-white);
  font-size: 14px;
  line-height: 1.4;
}
.product .steps-container .summary__item:not(:last-child) {
  margin-bottom: 7px;
}
.product .steps-container .summary__item:last-child {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.55;
  border-top: 1px solid var(--color-white-20);
  margin-top: 24px;
  padding-top: 13px;
}
.product .steps-container .summary__location > div {
  text-align: right;
}
.product .steps-container .summary__location > div span {
  display: inline-block;
  line-height: 1;
  white-space: nowrap;
  width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product .car-selected {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 23px;
  -moz-column-gap: 23px;
  column-gap: 23px;
  margin-top: 16px;
  padding: 8px;
}
.product .car-selected__body {
  color: var(--color-white);
}
.product .car-selected__model {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
  margin-bottom: 4px;
}
.product .car-selected__similar {
  color: var(--color-white-50);
  font-size: 14px;
  line-height: 1.4;
}
.product .car-selected__day {
  font-size: 14px;
  line-height: 1.4;
}

.footer__body {
  padding-block: clamp(2.5rem, 1.952247191rem + 2.2471910112vw, 4rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  border-bottom: 1px solid var(--color-white-20);
}
@media (max-width: 575.98px) {
  .footer__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 32px;
  }
}
.footer__logo {
  margin-bottom: 24px;
}
.footer__subtitle p {
  color: var(--color-white-50);
  font-size: 16px;
  line-height: 1.5;
}
.footer__subscribe {
  max-width: 460px;
}
.footer__form {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(237px, auto) minmax(124px, auto);
  grid-template-columns: minmax(237px, auto) minmax(124px, auto);
  -webkit-column-gap: 16px;
  -moz-column-gap: 16px;
  column-gap: 16px;
}
.footer__form label {
  display: block;
  margin-bottom: 6px;
  color: var(--color-white);
  font-size: 14px;
  line-height: 1.4;
  grid-column: -1/1;
  row-gap: 16px;
}
.footer__form input {
  color: var(--color-white);
  font-size: 16px;
  line-height: 1.5;
  border-radius: 8px;
  border: 1px solid var(--color-white-20);
  -webkit-box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  background-color: transparent;
  padding: clamp(0.6875rem, 0.6875rem + 0vw, 0.6875rem) clamp(0.75rem, 0.7043539326rem + 0.1872659176vw, 0.875rem);
}
.footer__form input::-webkit-input-placeholder {
  color: var(--color-white-50);
}
.footer__form input::-moz-placeholder {
  color: var(--color-white-50);
}
.footer__form input:-ms-input-placeholder {
  color: var(--color-white-50);
}
.footer__form input::-ms-input-placeholder {
  color: var(--color-white-50);
}
.footer__form input::placeholder {
  color: var(--color-white-50);
}
@media (max-width: 480.98px) {
  .footer__form {
    -ms-grid-columns: minmax(237px, auto) minmax(108px, auto);
    grid-template-columns: minmax(237px, auto) minmax(108px, auto);
  }
}
.footer__btn {
  padding: clamp(0.875rem, 0.875rem + 0vw, 0.875rem) clamp(1rem, 0.8174157303rem + 0.7490636704vw, 1.5rem);
}
.footer__copyright {
  padding-block: clamp(2rem, 2rem + 0vw, 2rem) clamp(2.5rem, 2.3174157303rem + 0.7490636704vw, 3rem);
}
.footer__copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer__copy * {
  color: var(--color-white);
  font-size: fluid-text(16, 14);
  line-height: 1.5;
}
@media (max-width: 480.98px) {
  .footer__copy * {
    color: var(--color-white-50);
    line-height: 1.4;
  }
}
.footer__copy a:hover {
  text-decoration: underline;
}
.footer__copy > p {
  margin-bottom: 0;
}
@media (max-width: 575.98px) {
  .footer__copy {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    row-gap: 24px;
  }
}
.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 15px;
  -moz-column-gap: 15px;
  column-gap: 15px;
}/*# sourceMappingURL=main.css.map */
