@font-face {
  font-family: "Zerno";
  src: url("../fonts/zerno-light.eot");
  src: url("../fonts/zerno-light.woff2") format("woff2");
  src: url("../fonts/zerno-light.woff") format("woff");
  src: url("../fonts/zerno-light.ttf") format("truetype");
  src: url("../fonts/zerno-light.otf") format("opentype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Zerno";
  src: url("../fonts/zerno-extralight.eot");
  src: url("../fonts/zerno-extralight.woff2") format("woff2");
  src: url("../fonts/zerno-extralight.woff") format("woff");
  src: url("../fonts/zerno-extralight.ttf") format("truetype");
  src: url("../fonts/zerno-extralight.otf") format("opentype");
  font-style: normal;
  font-weight: 200;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  border: none;
  background: transparent;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  font-weight: 300;
  color: var(--color-text);
  scroll-behavior: smooth;
  font-family: "Zerno";
}

button,
a {
  cursor: pointer;
}

span {
  font: inherit;
  color: inherit;
}

b {
  font-family: inherit;
  color: inherit;
}

.xlight {
  font-weight: 200;
}

.light {
  font-weight: 300;
}

.order-info__small-title,
.order-info__value,
.order-info__title,
.order-form__title {
  font-weight: 200;
  letter-spacing: normal;
}

.order-info__title,
.order-form__title {
  font-size: 32px;
}

.order-info__value {
  font-size: 28px;
}

.order-info__small-title {
  font-size: 18px;
}

.order-info__promocode,
.order__auth {
  font-weight: 300;
  letter-spacing: normal;
}

.order-info__promocode,
.order__auth {
  font-size: 16px;
}

.order__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
	position: relative !important;
}

.order__row > * {
  max-width: calc(50% - 10px);
  width: 100%;
}

.order__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
}

.order__auth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px 20px;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--color-white);
  border-radius: var(--bdrs-lg);
  color: var(--color-text-half);
}

.order-form__title {
  color: var(--color-green);
  text-transform: uppercase;
}

.order-form__title + * {
  margin-top: 40px;
}

* + .order-form__title {
  margin-top: 80px;
}

.order-form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}

.order-form__row > * {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 200px;
  flex: 1 1 200px;
  margin-top: 0 !important;
}

.order-form__row--nowrap {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.order-form__address > * + *,
.order-form__delivery > * + *,
.order-form > * + * {
  margin-top: 40px !important;
}

.order-form__submit {
  display: none;
}

.order-form__delivery,
.order-form__address {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.order-form__delivery.active,
.order-form__address.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.order-form__map {
  min-height: 440px;
  width: 100%;
  background: #D9D9D9;
  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;
}

.order-form__button {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.order-info {
  border-radius: var(--bdrs-lg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: sticky;
  top: 40px;
  padding: 40px;
  background: white;
}

.order-info__title {
  color: var(--color-green);
  text-transform: uppercase;
}

.order-info__title + * {
  margin-top: 40px;
}

* + .order-info__title {
  margin-top: 80px;
}

.order-info__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
	align-items: center;
  gap: 16px;
  position: relative;
}

.order-info__row + *:not(.radio) {
  margin-top: 40px;
}

* + .order-info__row {
  margin-top: 40px;
}

.order-info__row--end {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.order-info__promocode {
  width: 100%;
  min-height: 56px;
  padding: 0px 20px;
  border: 1px solid var(--color-light-gray);
  border-radius: 8px;
}

.order-info__promocode-apply {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding: 16px 32px;
}

.order-info__promocode-apply svg {
  display: none;
}

.order-info__bonuses {
  padding: 40px 0px;
  border-top: 1px solid var(--color-light-gray);
  border-bottom: 1px solid var(--color-light-gray);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.order-info__value {
  white-space: nowrap;
	display: flex;
	align-items: center;
	gap: 24px;
}

@media screen and (max-width: 990px) {
  .order__auth {
    padding: 12px 15px;
    font-size: 14px;
  }

  .order__row > * {
    max-width: 100%;
  }

	.order__row {
		flex-wrap: wrap;
	}
	
  .order__col {
    width: 100%;
		margin-bottom: 40px;
  }

  .order__col.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .order__col.active + .order-info {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .order-info__title,
  .order-form__title {
    font-size: 28px;
  }

  .order-form__title {
    font-size: 24px;
  }

  .order-form__submit {
    display: block;
  }

  .order-form__button {
    max-width: 100%;
    width: 100%;
  }

  .order-info {
    padding: 20px;
  }

  .order-info__title {
    font-size: 24px;
  }
}

@media screen and (max-width: 640px) {
  .order-info__row--end {
    -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;
  }

  .order-info__small-title {
    font-size: 16px;
  }

  .order-info__value {
    font-size: 24px;
  }

  .order-info__promocode {
    padding-right: 56px;
  }

  .order-info__promocode-apply {
    position: absolute;
    border-radius: 50%;
    min-width: 30px;
    min-height: 30px;
    width: 30px;
    height: 30px;
    padding: 0;
    background: white;
    top: 13px;
    right: 20px;
    border: 1px solid var(--color-green);
  }

  .order-info__promocode-apply svg {
    display: block;
  }

  .order-info__promocode-apply span {
    display: none;
  }
}