*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}
html {
  font-size: 10px;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: Segoe UI, Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: normal;
  line-height: 1.333333;
  color: #231f20;
  background-color: #ffffff;
  text-align: left;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  padding: 0 !important;
}
@media (max-width: 991.98px) {
  body {
    font-size: 14px;
    line-height: 1.42857;
  }
}

img {
  display: block;
  max-width: 100%;
}

input {
  font-family: Segoe UI, Helvetica, Arial, sans-serif;
}

.inp {
  appearance: none;
  display: block;
  margin: 0;
  width: 100%;
  background: #ffffff;
  color: #231f20;
  border: 1px solid #bdbcbd;
  border-radius: 10px;
  padding: 14px 16px 12px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: none;
}
.inp:-moz-placeholder {
  color: #bdbbbc;
  opacity: 1;
}
.inp::-moz-placeholder {
  color: #bdbbbc;
  opacity: 1;
}
.inp:-ms-input-placeholder {
  color: #bdbbbc;
}
.inp::-webkit-input-placeholder {
  color: #bdbbbc;
}
.inp:not(:disabled):not(.disabled):not(.error):focus {
  border-color: #231f20;
  border-width: 1px;
  outline: none;
}
.inp::-moz-focus-outer {
  border: 0;
}
.inp::-webkit-outer-spin-button, .inp::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.inp[disabled], .inp.disabled {
  cursor: no-drop;
  background: #f2f2f2;
  border-color: #bdbbbc;
  color: #bdbbbc;
}
.inp.error {
  border-color: #dc092e;
}
.inp.inp--lg {
  font-size: 15px;
  padding: 15px 16px 14px;
}
.inp.inp--error {
  border-color: #dc092e;
}

.inp-text__label {
  font-weight: 500;
  font-size: 13px;
}
.inp-text__required {
  font-weight: 500;
  font-size: 13px;
  color: #dc092e;
}

.inp-box {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  vertical-align: top;
}
.inp-box.inp-box--block {
  width: 100%;
}
.inp-box.inp-box--block + .inp-box--block {
  margin-top: 10px;
}
.inp-box.inp-box--block .inp-box__label {
  width: 100%;
  align-items: center;
}
.inp-box.inp-box--block .inp-box__text {
  flex-grow: 1;
}
.inp-box__label {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  margin: 0;
  cursor: pointer;
}
.inp-box input[type=checkbox],
.inp-box input[type=radio] {
  appearance: none;
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  opacity: 0;
}
.inp-box input[type=checkbox]:checked ~ .inp-box__view,
.inp-box input[type=radio]:checked ~ .inp-box__view {
  background: #dc092e;
  border-color: #dc092e;
}
.inp-box input[type=checkbox]:checked ~ .inp-box__view svg,
.inp-box input[type=radio]:checked ~ .inp-box__view svg {
  fill: #ffffff;
}
.inp-box input[type=checkbox]:disabled ~ .inp-box__view,
.inp-box input[type=radio]:disabled ~ .inp-box__view {
  background: #f2f2f2;
  border-color: #bdbbbc;
}
.inp-box input[type=checkbox]:disabled ~ .inp-box__text,
.inp-box input[type=checkbox]:disabled ~ .inp-box__text *,
.inp-box input[type=checkbox]:disabled ~ .inp-box__row,
.inp-box input[type=checkbox]:disabled ~ .inp-box__row *,
.inp-box input[type=radio]:disabled ~ .inp-box__text,
.inp-box input[type=radio]:disabled ~ .inp-box__text *,
.inp-box input[type=radio]:disabled ~ .inp-box__row,
.inp-box input[type=radio]:disabled ~ .inp-box__row * {
  color: #bdbbbc;
}
.inp-box input[type=checkbox]:disabled ~ .inp-box__text .ic-info,
.inp-box input[type=checkbox]:disabled ~ .inp-box__row .ic-info,
.inp-box input[type=radio]:disabled ~ .inp-box__text .ic-info,
.inp-box input[type=radio]:disabled ~ .inp-box__row .ic-info {
  color: #007eff;
}
.inp-box input[type=checkbox]:disabled:checked ~ .inp-box__view,
.inp-box input[type=radio]:disabled:checked ~ .inp-box__view {
  background: #bdbbbc;
  border-color: #bdbbbc;
}
.inp-box input[type=checkbox] ~ .inp-box__view {
  border-radius: 4px;
}
.inp-box input[type=checkbox] ~ .inp-box__view svg {
  color: #ffffff;
}
.inp-box input[type=radio] ~ .inp-box__view {
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.inp-box input[type=radio] ~ .inp-box__view::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffff;
}
.inp-box__view {
  position: relative;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  flex-shrink: 0;
  margin-right: 6px;
  top: 1px;
}
@media (max-width: 575.98px) {
  .inp-box__view {
    margin-right: 9px;
  }
}
.inp-box__view svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.inp-box__text {
  flex: 1;
  width: calc(100% - 20px);
  padding-left: 10px;
}
.inp-box__mark-box {
  display: inline;
}

.inp-dropdown {
  position: relative;
}
.inp-dropdown__text {
  font-weight: 300;
}
.inp-dropdown.opened .inp-dropdown__list {
  display: block;
}
.inp-dropdown .btn {
  color: #231f20;
  border-color: #231f20;
  background-color: transparent;
}
.inp-dropdown .btn:active, .inp-dropdown .btn.active {
  transform: none;
}
.inp-dropdown .catalog-btn {
  color: #007eff;
  border-color: transparent;
}
.inp-dropdown svg {
  margin-right: 20px;
}
.inp-dropdown.disabled, .inp-dropdown[disabled] {
  color: #bdbbbc;
  border-color: #bdbbbc;
}
.inp-dropdown .inp-dropdown__list {
  display: none;
  position: absolute;
  z-index: 50;
  left: 0;
  top: 0;
  width: 100%;
  background: #ffffff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 -2px 4px 0 rgba(35, 31, 32, 0.05), 0 4px 8px 0 rgba(35, 31, 32, 0.1);
  overflow-y: auto;
}
.inp-dropdown .inp-dropdown__item + .inp-dropdown__item {
  margin-top: 15px;
}

.inp__icon {
  display: block;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: all;
  cursor: pointer;
  border: 0;
  background: none;
  padding: 0;
  font-size: 16px;
  line-height: 1;
  color: #8c8c8c;
}
.inp__icon:hover {
  color: #231f20;
}
.inp__icon.promo {
  color: #70be71;
}
.inp__icon.promo.error {
  color: #dc092e;
}

.error .inp:not(:focus) {
  border-color: #dc092e;
  color: #dc092e;
  caret-color: #dc092e;
}

button {
  font-family: Segoe UI, Helvetica, Arial, sans-serif;
  border-radius: 0;
}
button:focus {
  outline: none;
}

.btn {
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  padding: 8px 20px;
  font-size: 15px;
  line-height: 1.466666;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid #bdbcbd;
  border-radius: 10px;
  transition: all 100ms ease-in-out;
  user-select: none;
  cursor: pointer;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
@media (max-width: 991.98px) {
  .btn {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}
@media (min-width: 991.98px) {
  .btn:hover, .btn:focus-visible {
    outline: none;
    color: #ffffff;
    text-decoration: none;
  }
}
.btn:active, .btn.active {
  transform: translateY(1px);
}
.btn.disabled, .btn[disabled] {
  pointer-events: none;
  cursor: not-allowed;
}
.btn.disabled:active, .btn.disabled.active, .btn[disabled]:active, .btn[disabled].active {
  transform: translateY(0);
}
.btn + .btn {
  margin-left: 10px;
}

a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none;
}

.btn-primary {
  background: #dc092e;
  border-color: #dc092e;
  color: #ffffff;
}
@media (min-width: 991.98px) {
  .btn-primary:hover, .btn-primary:focus-visible {
    background: #b7141f;
    border-color: #b7141f;
    color: #ffffff;
  }
}
.btn-primary:active, .btn-primary.active {
  background: #b7141f;
  border-color: #b7141f;
  color: #ffffff;
}
.btn-primary.disabled, .btn-primary[disabled] {
  background: #bdbbbc;
  border-color: #bdbbbc;
}

.btn-secondary {
  background: #ffffff;
  border-color: #dc092e;
  color: #dc092e;
}
@media (min-width: 991.98px) {
  .btn-secondary:hover, .btn-secondary:focus-visible {
    background: #b7141f;
    border-color: #b7141f;
    color: #ffffff;
  }
}
.btn-secondary:active, .btn-secondary.active {
  background: #b7141f;
  border-color: #b7141f;
  color: #ffffff;
}
.btn-secondary.disabled, .btn-secondary[disabled] {
  background: #bdbbbc;
  border-color: #bdbbbc;
  color: #ffffff;
}

.btn-lg {
  padding: 12px 20px;
}
@media (max-width: 991.98px) {
  .btn-lg {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}

.btn-sm {
  padding: 4px 20px 5px;
}
@media (max-width: 991.98px) {
  .btn-sm {
    padding-bottom: 4px;
  }
}

ul,
ol,
li {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  border: 0;
  outline: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
}

ul {
  list-style-type: none;
}

.content ul:not(.list-reset),
.content ol:not(.list-reset) {
  margin: 21px 0 25px;
  padding: 0 0 0 21px;
}
.content ul:not(.list-reset) li,
.content ol:not(.list-reset) li {
  position: relative;
  margin: 0 0 12px;
}
.content ul:not(.list-reset) li::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 9px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='9' viewBox='0 0 12 9' fill='none'%3E%3Cpath d='M4.08638 9L0 5.02258L1.34551 3.71613L4.08638 6.36774L10.6545 0L12 1.30645L4.08638 9Z' fill='%23DC092E'/%3E%3C/svg%3E");
  font-size: 16px;
  position: absolute;
  left: -21px;
  top: 5px;
  color: #dc092e;
}

.list-reset, .content .list-reset {
  padding: 0;
  margin: 0;
}

ol.list-reset, .content ol.list-reset {
  list-style-type: none;
}

.popup-cookie {
  width: 100%;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 15px rgba(35, 31, 32, 0.4);
  border-radius: 10px 10px 0 0;
  padding-top: 9px;
  padding-bottom: 12px;
}
.popup-cookie-wrapper {
  display: none;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 1010;
  align-items: center;
  justify-content: flex-start;
  flex-flow: column;
}
.popup-cookie-wrapper.active {
  display: flex;
}
.popup-cookie__body {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: max-content;
  margin: auto;
  font-size: 13px;
  line-height: 18px;
  padding: 16px 0 0;
}
@media (max-width: 767.98px) {
  .popup-cookie__body {
    flex-direction: column;
    gap: 0;
    padding: 16px 16px 32px;
  }
}
.popup-cookie__actions {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media (max-width: 767.98px) {
  .popup-cookie__actions {
    width: 100%;
    flex-direction: column;
    align-items: start;
    gap: 8px;
  }
}
.popup-cookie__actions .btn {
  width: 120px;
  font-size: 14px;
  line-height: 18px;
  padding: 8px 15px;
}
@media (max-width: 767.98px) {
  .popup-cookie__actions .btn {
    width: 100%;
  }
}
.popup-cookie__actions .btn + .btn {
  margin-left: 0;
}
.popup-cookie__link {
  cursor: pointer;
  color: #007eff;
  text-decoration: none;
}
.popup-cookie__link:visited {
  color: #007eff;
}
.popup-cookie__link:hover {
  color: #175fc7;
}
@media (max-width: 767.98px) {
  .popup-cookie__link {
    order: -1;
    margin-bottom: 8px;
  }
}
.popup-cookie__close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #231f20;
  transition: color 0.2s;
  cursor: pointer;
}
.popup-cookie__close:hover {
  color: #dc092e;
}

.modal-cookie-agree {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 20px;
  height: calc(100% - 40px);
  pointer-events: none;
}
.modal-cookie-agree-wrapper {
  display: none;
  position: fixed;
  z-index: 2147483648;
  left: 0;
  top: 0;
  width: 100%;
  min-width: 100vw;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  background: #ffffff;
}
.modal-cookie-agree-wrapper.show {
  display: block;
}
.modal-cookie-agree__close {
  position: absolute;
  top: -25px;
  right: -25px;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #231f20;
  transition: color 0.2s;
  cursor: pointer;
}
.modal-cookie-agree__close:hover {
  color: #dc092e;
}
@media (max-width: 767.98px) {
  .modal-cookie-agree__close {
    right: 0;
  }
}
.modal-cookie-agree__content {
  display: flex;
  flex-direction: column;
  max-height: 80%;
  width: 100%;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding-top: 24px;
  padding-bottom: 24px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(35, 31, 32, 0.4);
  transition: transform 0.3s ease;
  pointer-events: auto;
}
.modal-cookie-agree__header {
  padding: 0 26px 20px 40px;
}
.modal-cookie-agree__body {
  overflow-y: auto;
  padding: 0 26px 20px 40px;
}
.modal-cookie-agree__body .body-about__title {
  font-size: 22px;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 24px;
  margin-top: 0;
}
@media (max-width: 767.98px) {
  .modal-cookie-agree__body .body-about__title {
    font-size: 20px;
    line-height: 1.3;
  }
}
.modal-cookie-agree__footer {
  padding: 20px 40px;
  text-align: center;
}
.modal-cookie-agree .option-block {
  display: flex;
}
.modal-cookie-agree .option-check {
  margin-top: 7px;
}
.modal-cookie-agree .option-content {
  width: 100%;
  margin-left: 8px;
  padding-top: 2px;
}
.modal-cookie-agree .option-title {
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 4px;
}
.modal-cookie-agree .option-text {
  font-size: 12px;
  line-height: 1.4;
}
.modal-cookie-agree .option-alert {
  display: flex;
  padding: 12px;
  margin: 12px 0;
  background-color: #fbeff1;
  border-radius: 4px;
  font-size: 14px;
  line-height: 20px;
}
.modal-cookie-agree .option-alert .attention {
  width: 18px;
  height: 18px;
  margin-right: 12px;
  flex-shrink: 0;
}
.modal-cookie-agree .option-alert.hide {
  display: none;
}

.js-cookie-choice {
  font-size: 12px;
  line-height: 16px;
  color: #ffffff;
  text-decoration: none;
}
.f-pay .js-cookie-choice {
  display: none;
  margin-top: 10px;
}
@media (min-width: 767.98px) {
  .f-pay .js-cookie-choice {
    display: block;
  }
}
.f-btns .js-cookie-choice {
  display: none;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .f-btns .js-cookie-choice {
    display: block;
  }
}