@charset "UTF-8";
:root {
  --theme-base-color: #E03752;
  --theme-color-primary: #848484;
  --theme-bottom-color: #F5F4EF;
  --theme-bottom-active-color: #D2D2D2;
  --theme-border-color: #E1E0DB;
  --theme-wrapper-color: #FBFBF9;
  --theme-checked-border-color: #C6C6C6;
}

.gap-8 {
  gap: 8px;
}

.gap-10 {
  gap: 10px;
}

.gap-12 {
  gap: 12px;
}

.gap-20 {
  gap: 20px;
}

.gap-40 {
  gap: 40px;
}

i.icon.i-setting {
  content: url("../icon/setting.svg");
}

i.icon.i-block {
  content: url("../icon/block.svg");
}

i.icon.i-arrow {
  content: url("../icon/arrow.svg");
}

i.icon.i-plus {
  content: url("../icon/plus.svg");
}

i.icon.i-exit {
  content: url("../icon/exit.svg");
}

i.icon.i-user {
  content: url("../icon/user.svg");
}

i.icon.i-data {
  content: url("../icon/data.svg");
}

i.icon.i-info {
  content: url("../icon/info.svg");
}

body {
  font-family: "Roboto", sans-serif;
  color: #000;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
}
@media (min-width: 1366px) {
  body {
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
  }
}
body {
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

a, button, input, textarea {
  transition: all 0.25s ease-in;
}

img, i.icon {
  display: block;
  max-width: 100%;
  aspect-ratio: auto 1/1;
  transition: background-color 0.5s;
  background-color: transparent;
}

legend {
  font-size: inherit;
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  legend {
    max-width: 120px;
  }
}

.h1 {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
  margin-bottom: 0;
}
@media (min-width: 1366px) {
  .h1 {
    font-size: 32px;
    font-weight: 400;
    line-height: 38px;
  }
}

.container-fluid {
  --bs-gutter-x: 40px;
}

.row {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 20px;
}
.row-adaptive {
  --bs-gutter-y: 24px;
}
@media (min-width: 1366px) {
  .row-adaptive {
    --bs-gutter-x: 40px;
  }
}
.row-min-adaptive {
  --bs-gutter-x: 10px;
  --bs-gutter-y: 10px;
}
@media (min-width: 1600px) {
  .row-min-adaptive {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
  }
}

main {
  margin-bottom: 10px;
}
@media (min-width: 1600px) {
  main {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

:focus-visible {
  outline-offset: 4px;
}

.ally-click {
  position: relative;
}
.ally-click:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  height: 100%;
  min-width: 44px;
  min-height: 44px;
  transform: translate(-50%, -50%);
}

.no-select {
  -webkit-user-select: none; /* Chrome/Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE/Edge */
  user-select: none; /* Стандартный синтаксис */
}

.gap-adaptive {
  gap: 10px;
}
@media (min-width: 1366px) {
  .gap-adaptive {
    gap: 16px;
  }
}

.gap-adaptive-big {
  gap: 20px;
}
@media (min-width: 768px) {
  .gap-adaptive-big {
    gap: 40px;
  }
}

.disabled, disabled {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}

.bg-active {
  background-color: var(--theme-bottom-active-color) !important;
}

.text-decoration-underline {
  text-underline-offset: 4px;
}

i.icon.i-rotate-90 {
  transform: rotate(90deg);
}
i.icon.i-rotate-180 {
  transform: rotate(180deg);
}
i.icon.i-rotate-270 {
  transform: rotate(-90deg);
}

.u-text-big {
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
}
@media (min-width: 1366px) {
  .u-text-big {
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
  }
}
.u-text-larger {
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
}
@media (min-width: 768px) {
  .u-text-larger {
    font-size: 24px;
    font-weight: 400;
    line-height: 28px;
  }
}
@media (min-width: 1366px) {
  .u-text-larger {
    font-size: 28px;
    font-weight: 400;
    line-height: 34px;
  }
}
.u-text-title {
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
  text-transform: uppercase;
}
@media (min-width: 1366px) {
  .u-text-title {
    font-size: 26px;
    font-weight: 400;
    line-height: 32px;
  }
}
.u-text-primary {
  color: var(--theme-color-primary);
}
.u-text-base-color {
  color: var(--theme-base-color);
}
.u-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--theme-bottom-color);
  border: 1px solid transparent;
  border-radius: 4px;
}
.u-btn:focus {
  opacity: 0.8;
}
.u-btn:focus, .u-btn:hover {
  background-color: var(--theme-border-color);
}
.u-btn:active {
  background-color: var(--theme-bottom-active-color);
  opacity: 0.8;
}
.u-btn-submit {
  height: 50px;
  padding: 12px 20px;
  background-color: #000;
  color: #fff;
}
.u-btn-submit:focus, .u-btn-submit:hover {
  background-color: var(--theme-base-color);
  color: #fff;
}
.u-btn-submit:active {
  background-color: var(--theme-bottom-active-color);
  color: #000;
}
.u-btn-red {
  height: 50px;
  padding: 0 20px;
  background-color: var(--theme-base-color);
  color: #fff;
}
.u-btn-red:focus, .u-btn-red:hover {
  background-color: var(--theme-bottom-active-color);
  color: #fff;
}
.u-btn-red:active {
  background-color: #fff;
  color: #000;
}
.u-checked {
  position: relative;
}
.u-checked .u-checked__body.picture, .u-checked .u-checked__body.color {
  padding: 0;
  background-color: transparent;
  border-color: var(--theme-checked-border-color);
}
.u-checked .u-checked__body.picture:focus, .u-checked .u-checked__body.color:focus {
  opacity: 0.8;
}
.u-checked .u-checked__body.picture:focus, .u-checked .u-checked__body.color:focus, .u-checked .u-checked__body.picture:hover, .u-checked .u-checked__body.color:hover {
  border-color: var(--theme-border-color);
}
.u-checked .u-checked__body.picture:active, .u-checked .u-checked__body.color:active {
  border-color: var(--theme-bottom-active-color);
  opacity: 0.8;
}
.u-checked .u-checked__body.picture img, .u-checked .u-checked__body.color img {
  object-fit: cover;
}
.u-checked__body {
  cursor: pointer;
  padding: 6px;
}
.u-checked__body.color {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}
.u-checked__body.color img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 1600px) {
  .u-checked__body.color {
    width: 50px;
    height: 50px;
  }
  .u-checked__body.color img {
    width: 42px;
    height: 42px;
  }
}
.u-checked__body.picture {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
}
.u-checked__body.picture img {
  width: 52px;
  height: 52px;
}
@media (min-width: 1600px) {
  .u-checked__body.picture {
    width: 80px;
    height: 80px;
  }
  .u-checked__body.picture img {
    width: 72px;
    height: 72px;
  }
}
.u-checked input {
  position: absolute;
  z-index: -1;
  opacity: 0;
  display: block;
  width: 1px;
  height: 1px;
}
.u-checked__body.active, .u-checked input:checked ~ .u-checked__body {
  border-color: var(--theme-base-color) !important;
  background-color: transparent;
  border-width: 2px;
}
.u-checked input:disabled ~ .u-checked__body.color, .u-checked input:disabled ~ .u-checked__body.picture {
  opacity: 0.3;
}
.u-checked input[type=radio]:disabled ~ .u-checked__body, .u-checked input[type=radio]:checked ~ .u-checked__body {
  cursor: default;
  pointer-events: none;
}
.u-checked input:focus-visible ~ * {
  outline: auto 2px Highlight !important;
  outline: auto 5px -webkit-focus-ring-color !important;
  outline-offset: 4px;
}
.u-checked__number {
  text-align: center;
  width: 60px;
  border: 1px solid var(--theme-checked-border-color);
  border-radius: 4px;
}
@media (min-width: 1600px) {
  .u-checked__number {
    width: 80px;
  }
}
.u-wrapper {
  padding: 10px;
  background-color: var(--theme-bottom-color);
  border: 1px solid transparent;
  border-radius: 4px;
}
@media (min-width: 1600px) {
  .u-wrapper {
    padding: 20px;
  }
}
@media (min-width: 768px) {
  .u-wrapper-line {
    padding: 20px;
    border: 1px solid var(--theme-border-color);
    border-radius: 4px;
  }
}
@media (min-width: 768px) {
  .u-carousel {
    padding: 16px;
    border: 1px solid var(--theme-border-color);
    border-radius: 4px;
  }
}
.u-carousel__inner {
  width: auto;
}
@media (min-width: 768px) {
  .u-carousel__inner {
    margin-left: 56px;
  }
}
@media (min-width: 1024px) {
  .u-carousel__inner {
    margin-left: 0;
  }
}
@media (min-width: 1366px) {
  .u-carousel__inner {
    margin-left: 96px;
  }
}
.u-carousel__indicators {
  position: relative;
  margin: 20px 0 0;
}
.u-carousel__indicators [data-bs-target] {
  box-sizing: border-box;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--theme-bottom-color);
  background-color: var(--theme-bottom-color);
  margin-right: 8px;
  margin-left: 8px;
  opacity: 1;
  transition: all 0.25s ease-in;
}
.u-carousel__indicators [data-bs-target]:focus {
  opacity: 0.8;
}
.u-carousel__indicators [data-bs-target]:focus-visible {
  outline: auto 2px Highlight !important;
  outline: auto 5px -webkit-focus-ring-color !important;
  outline-offset: 4px;
}
.u-carousel__indicators [data-bs-target]:focus, .u-carousel__indicators [data-bs-target]:hover {
  border-color: var(--theme-bottom-active-color);
}
.u-carousel__indicators [data-bs-target]:active {
  border-color: var(--theme-color-primary);
  opacity: 0.8;
}
@media (min-width: 768px) {
  .u-carousel__indicators [data-bs-target] {
    margin-right: 0;
    margin-left: 0;
    width: 100%;
    height: 100%;
    max-width: 40px;
    max-height: 40px;
    border-color: var(--theme-border-color);
    background-color: transparent;
    border-radius: 4px;
  }
}
@media (min-width: 1600px) {
  .u-carousel__indicators [data-bs-target] {
    max-width: 80px;
    max-height: 80px;
  }
}
.u-carousel__indicators [data-bs-target].active {
  background-color: #000;
  border-color: #000;
}
.u-carousel__indicators [data-bs-target].active:not(:focus-visible) {
  outline: none;
}
@media (min-width: 768px) {
  .u-carousel__indicators [data-bs-target].active {
    background-color: transparent;
    border-color: var(--theme-base-color);
    border-width: 2px;
  }
}
.u-carousel__indicators [data-bs-target] img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 32px;
  max-width: calc(100% - 4px);
  max-height: calc(100% - 4px);
  transform: translate(-50%, -50%);
  object-fit: contain;
  transition: all 0.25s ease-in;
}
@media (min-width: 1366px) {
  .u-carousel__indicators [data-bs-target] img {
    width: 72px;
    height: 72px;
  }
}
@media (min-width: 768px) {
  .u-carousel__indicators {
    position: absolute;
    top: 50%;
    left: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 40px;
    margin-top: 0;
    transform: translateY(-50%);
  }
}
@media (min-width: 1024px) {
  .u-carousel__indicators {
    position: static;
    margin-top: 16px;
    flex-direction: row;
    justify-content: center;
    max-width: 100%;
    height: 40px;
    transform: translateY(0);
  }
}
@media (min-width: 1366px) {
  .u-carousel__indicators {
    position: absolute;
    flex-direction: column;
    max-width: 80px;
    gap: 20px;
    transform: translateY(-50%);
    height: auto;
  }
}
.u-carousel__control {
  top: 50%;
  width: 30px;
  height: 30px;
  background-color: var(--theme-bottom-color);
  border: 1px solid transparent;
  border-radius: 4px;
  opacity: 1;
  transform: translateY(-50%);
  transition: all 0.25s ease-in;
}
.u-carousel__control:focus {
  opacity: 0.8;
}
.u-carousel__control:focus, .u-carousel__control:hover {
  background-color: var(--theme-border-color);
}
.u-carousel__control:active {
  background-color: var(--theme-bottom-active-color);
  opacity: 0.8;
}
.u-carousel__control.next {
  right: 16px;
}
.u-carousel__control.prev {
  left: 72px;
}
@media (min-width: 1024px) {
  .u-carousel__control.prev {
    left: 16px;
  }
}
@media (min-width: 1366px) {
  .u-carousel__control.prev {
    left: 112px;
  }
}
@media (min-width: 1024px) {
  .u-carousel__control {
    top: calc((100% - 56px) / 2);
  }
}
@media (min-width: 1366px) {
  .u-carousel__control {
    top: 50%;
  }
}
.u-carousel__item {
  overflow: hidden;
  height: 300px;
  background-color: #fff;
  border: 1px solid var(--theme-border-color);
  border-radius: 4px;
}
.u-carousel__item img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: fit-content;
  left: 50%;
  transform: translateX(-50%);
}
.u-carousel__item.active {
  outline: none;
}
@media (min-width: 768px) {
  .u-carousel__item {
    height: 320px;
    border-color: transparent;
  }
}
@media (min-width: 1600px) {
  .u-carousel__item {
    height: 560px;
  }
}
.u-tooltip {
  --bs-tooltip-font-size: inherit;
  --bs-tooltip-bg: #fff;
  --bs-tooltip-color: #000;
  --bs-tooltip-padding-x: 12px;
  --bs-tooltip-padding-y: 12px;
  --bs-tooltip-opacity: 1;
  --bs-tooltip-arrow-width: 0;
  --bs-tooltip-arrow-height: 0;
  text-transform: capitalize;
  line-height: inherit;
  border-radius: 4px;
  box-shadow: 0 39px 104px rgba(0, 0, 0, 0.0353333), 0 15.0222px 33.1259px rgba(0, 0, 0, 0.0546667), 0 3.17778px 8.47407px rgba(0, 0, 0, 0.09);
}
@media (min-width: 1366px) {
  .u-tooltip {
    --bs-tooltip-padding-x: 16px;
    --bs-tooltip-padding-y: 16px;
  }
}
.u-modal {
  --bs-modal-border-radius: 4px;
  --bs-modal-header-padding: 20px;
  --bs-modal-header-border-color: transparent;
  --bs-modal-footer-border-color: transparent;
  --bs-modal-border-color: transparent;
  --bs-modal-header-padding-x: 0;
  --bs-modal-header-padding-y: 0;
  --bs-modal-padding: 20px;
}
.u-modal__close {
  position: absolute;
  top: 22px;
  right: 20px;
}
.u-modal__close:focus {
  box-shadow: none;
}
.u-modal__close:focus-visible {
  outline: auto 2px Highlight !important;
  outline: auto 5px -webkit-focus-ring-color !important;
  outline-offset: 4px;
}
.u-modal__body {
  overflow-x: hidden;
}
.u-number {
  padding: 2px 0 14px;
  gap: 4px;
  border-bottom: 1px solid var(--theme-bottom-color);
}
@media (min-width: 768px) {
  .u-number {
    padding: 0;
    border: 0;
  }
}
.u-number__btn {
  order: 1;
  width: 30px;
  height: 20px;
  padding: 0;
}
.u-number__input {
  margin-right: 10px;
}
.u-number__input input[type=number] {
  text-align: end;
  text-align: right;
  border-color: transparent;
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
  appearance: textfield;
}
.u-number__input input[type=number]::-webkit-outer-spin-button, .u-number__input input[type=number]::-webkit-inner-spin-button {
  display: none;
}
.u-number__wrapper {
  grid-template-columns: repeat(1, 1fr);
  gap: 12px;
}
@media (min-width: 768px) {
  .u-number__wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background-color: var(--theme-bottom-color);
  }
}
.u-number__wrapper > * {
  height: 100%;
  background-color: #fff;
}
.u-number__wrapper > *:last-child {
  padding: 8px;
  border: 0;
}
@media (min-width: 768px) {
  .u-number__wrapper > * {
    padding: 12px;
  }
}
.u-number__wrapper.big {
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background-color: var(--theme-bottom-color);
}
.u-number__wrapper.big label {
  overflow-wrap: anywhere;
}
@media (min-width: 768px) {
  .u-number__wrapper.big label {
    overflow-wrap: normal;
  }
}
.u-number__wrapper.big > * {
  padding: 12px;
}
.u-number__wrapper.big .u-number__input {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
}
@media (min-width: 768px) {
  .u-number__wrapper.big .u-number__input {
    width: auto;
    justify-content: end;
    margin-right: 10px;
  }
}
.u-number__wrapper.big .u-number {
  border: 0;
}
.u-form {
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
  width: 100%;
}
.u-form__personal {
  max-width: 100%;
}
@media (min-width: 1024px) {
  .u-form__personal {
    max-width: 600px;
  }
}
.u-form__group {
  gap: 12px;
}
@media (min-width: 768px) {
  .u-form__group {
    gap: 20px;
  }
}
.u-form__label {
  --bs-gutter-x: 0;
  --bs-gutter-y: 8px;
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--theme-bottom-color);
}
@media (min-width: 768px) {
  .u-form__label > *:not(:first-child) {
    padding-left: 8px;
  }
}
.u-form__input {
  width: 100%;
  border-color: transparent;
}
.u-form__img {
  height: 60px;
  object-fit: contain;
  max-width: fit-content;
}
@media (min-width: 1024px) {
  .u-form__img {
    height: 80px;
  }
}
@media (min-width: 1366px) {
  .u-form__img {
    height: 80px;
  }
}
.u-nav-tabs {
  --bs-nav-tabs-border-radius: 4px;
  --bs-nav-link-color: #000;
  --bs-nav-link-hover-color: var(--theme-checked-border-color);
  --bs-nav-link-disabled-color: var(--theme-border-color);
  --bs-nav-tabs-link-active-color: var(--theme-base-color);
  --bs-nav-tabs-border-color: var(--theme-border-color);
}
.u-nav-tabs .nav-link {
  transition: all 0.25s ease-in;
}
.u-nav-tabs .disabled {
  opacity: 1;
}
[data-field-error]:before {
  content: attr(data-field-error);
  position: absolute;
  color: var(--theme-base-color);
  font-size: smaller;
  top: 0;
  left: 0;
}
[data-field-error] input:not([type=radio]):not([type=checkbox]) {
  border-bottom: 1px solid var(--theme-base-color);
}

.header {
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media (min-width: 768px) {
  .header {
    z-index: 2;
  }
}
@media (min-width: 1600px) {
  .header {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.header > * {
  flex: 1;
}
.header__logo {
  object-fit: contain;
  height: 20px;
  max-width: max-content;
}
@media (min-width: 768px) {
  .header__logo {
    height: 40px;
  }
}
@media (min-width: 1366px) {
  .header__logo {
    height: 50px;
  }
}
.header__dropdown {
  width: 100%;
  order: 2;
}
@media (min-width: 768px) {
  .header__dropdown {
    overflow: hidden;
  }
}
@media (min-width: 1024px) {
  .header__dropdown {
    width: auto;
    order: 0;
    flex: 1;
  }
}
.header__dropdown-btn {
  padding: 13px 20px;
  height: 40px;
  justify-content: space-between;
}
.header__dropdown-btn span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 768px) {
  .header__dropdown-btn {
    display: none;
  }
}
.header__dropdown-btn.show {
  background-color: var(--theme-bottom-color);
  opacity: 1;
}
.header__dropdown-btn.show i.icon {
  transform: scale(1, -1);
}
.header__dropdown-menu {
  flex-direction: column-reverse;
  justify-content: center;
  align-items: flex-start;
  padding: 8px 20px;
  font-size: inherit;
  width: 100%;
  background-color: #fff;
  border-color: transparent;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-radius: 0 0 4px 4px;
  z-index: 5;
}
.header__dropdown-menu.show {
  display: flex;
}
@media (min-width: 768px) {
  .header__dropdown-menu {
    transition: all 0.25s ease-in;
    position: relative;
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    gap: 2px;
    width: max-content;
    margin: auto;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
    border-radius: 0;
    z-index: 0;
  }
}
.header__dropdown-item {
  position: relative;
  width: 100%;
  padding: 12px 0;
  border-bottom: 1px solid transparent;
}
.header__dropdown-item:focus {
  color: var(--theme-bottom-active-color);
}
.header__dropdown-item:hover {
  color: var(--theme-base-color);
}
.header__dropdown-item:active {
  opacity: 0.8;
}
@media (min-width: 768px) {
  .header__dropdown-item {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: auto;
    background-color: var(--theme-bottom-color);
    height: 40px;
    padding: 12px 20px;
    border-radius: 4px;
    white-space: nowrap;
  }
  .header__dropdown-item:hover {
    color: #000;
    background-color: var(--theme-border-color);
  }
  .header__dropdown-item:active {
    color: #000;
  }
}
@media (min-width: 1366px) {
  .header__dropdown-item {
    height: 50px;
  }
}
.header__dropdown-item input[type=radio] {
  position: absolute;
  z-index: -1;
  opacity: 0;
  display: block;
  width: 1px;
  height: 1px;
}
.header__dropdown-item.select {
  display: none;
}
@media (min-width: 768px) {
  .header__dropdown-item.select {
    pointer-events: none;
    cursor: default;
    display: flex;
    background-color: var(--theme-bottom-active-color);
  }
}
.header__dropdown-item ~ .header__dropdown-item {
  border-bottom-color: var(--theme-bottom-color);
}
@media (min-width: 768px) {
  .header__dropdown-item ~ .header__dropdown-item {
    border-bottom-color: transparent;
  }
}
.header__dropdown-showmore {
  display: none;
}
@media (min-width: 768px) {
  .header__dropdown-showmore {
    display: flex;
  }
}
.header__dropdown-ul {
  display: none;
  position: fixed;
  top: var(--pos-top, 0);
  right: calc(100% - var(--pos-right, 0));
  z-index: 4;
}
.header__dropdown-ulmore:hover .header__dropdown-ul {
  display: block;
}
.header__btn {
  width: 40px;
  height: 40px;
}
@media (min-width: 1366px) {
  .header__btn {
    width: 60px;
    height: 50px;
  }
}

.b-moving {
  position: fixed;
  flex-wrap: wrap;
  left: 0;
  bottom: 0;
  gap: 2px;
  width: 100%;
  padding: 0 20px 20px;
  z-index: 2;
}
.b-moving:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 20px;
  background-color: #fff;
}
@media (min-width: 380px) {
  .b-moving {
    flex-wrap: nowrap;
  }
}
@media (min-width: 1024px) {
  .b-moving {
    left: initial;
    right: 0;
    padding-left: 0;
    width: calc(50% - 10px);
  }
}
.b-moving__item {
  border-radius: 4px;
  padding: 12px;
  width: 100%;
  min-height: 48px;
  flex: 1;
}
.b-moving__item.price {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--theme-bottom-active-color);
}
@media (min-width: 768px) {
  .b-moving__item {
    padding: 12px 20px;
    min-height: 60px;
  }
}

.configurator__params {
  padding-bottom: 68px;
  overflow-x: hidden;
  overflow-y: auto;
}
@media (min-width: 1024px) {
  .configurator__params {
    height: calc(100vh - 62px - 20px - 80px);
  }
}
@media (min-width: 1366px) {
  .configurator__params {
    height: calc(100vh - 72px - 20px - 80px);
  }
}
@media (min-width: 1600px) {
  .configurator__params {
    height: calc(100vh - 92px - 20px - 80px);
  }
}
.configurator__wrapper {
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: 1px solid var(--theme-border-color);
  border-bottom: 1px solid var(--theme-border-color);
}
@media (min-width: 1024px) {
  .configurator__legend {
    padding-top: 8px;
  }
}

.profile-menu ::marker {
  color: transparent;
}
.profile-menu__item {
  gap: 8px;
}
@media (min-width: 768px) {
  .profile-menu__item {
    gap: 10px;
  }
}
.profile-menu__item i.icon {
  width: 20px;
  height: 20px;
  padding: 2px;
}
.profile-menu__sub {
  padding-top: 20px;
  padding-left: 0;
  margin-bottom: 0;
}
.profile-menu__sub-item {
  display: block;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid transparent;
}
@media (min-width: 768px) {
  .profile-menu__sub-item {
    padding: 12px 30px;
  }
}
.profile-menu__sub-item.select {
  background-color: var(--theme-bottom-color);
}
.profile-menu__sub-item:focus {
  border-color: var(--theme-bottom-color);
}
.profile-menu__sub-item:hover {
  background-color: var(--theme-bottom-active-color);
}
.profile-menu__sub-item:active {
  opacity: 0.8;
  background-color: var(--theme-bottom-active-color);
}
.profile-menu__mobile {
  width: 100%;
  padding: 12px;
  left: 0;
  bottom: 0;
  background-color: #fff;
  border-top: 1px solid var(--theme-bottom-color);
  border-bottom: 1px solid var(--theme-bottom-color);
  z-index: 4;
}
.profile-menu__mobile li {
  width: 100%;
  flex: 1;
}

[data-fancybox] {
  cursor: zoom-in;
}

.screenshot legend {
  font-size: 16px;
  line-height: normal;
}
.screenshot .b-moving:after,
.screenshot .ally-click:after {
  display: none;
}
.screenshot .b-moving {
  position: static;
  width: 100%;
}
.screenshot .screenshot-title, .screenshot .screenshot-logo {
  display: block !important;
  margin-bottom: 20px;
}
.screenshot .u-checked__body {
  padding-top: 0;
  padding-bottom: 10px;
}
.screenshot del {
  position: relative;
  top: -5px;
  text-decoration: unset;
}
.screenshot .configurator__legend {
  padding-top: 0;
}
.screenshot .nav-tabs .nav-link {
  padding-bottom: 20px;
}

.f-thumbs__slide__img {
  object-fit: contain;
}

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