@charset "UTF-8";
/**
 * * ----------------------------------------
 * * animation tracking-in-contract-bck
 * * ----------------------------------------
 * */
@keyframes tracking-in-contract-bck {
  0% {
    visibility: visible;
    letter-spacing: 1em;
    transform: translateZ(400px);
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    transform: translateZ(0);
    opacity: 1;
    visibility: visible;
  }
}
/**
 * * ----------------------------------------
 * * animation tracking-out-expand-fwd
 * * ----------------------------------------
 * */
@keyframes tracking-out-expand-fwd {
  0% {
    transform: translateZ(0);
    opacity: 1;
  }
  60% {
    opacity: 0.8;
  }
  100% {
    letter-spacing: 1em;
    transform: translateZ(300px);
    opacity: 0;
  }
}
/**
 * * ----------------------------------------
 * * animation move-up
 * * ----------------------------------------
 * */
@keyframes move-up {
  0% {
    transform: translateY(20px);
    opacity: 0;
    visibility: visible;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
}
/**
 * * ----------------------------------------
 * * animation move-down
 * * ----------------------------------------
 * */
@keyframes move-down {
  0% {
    transform: translateY(-20px);
    opacity: 0;
    visibility: visible;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
}
/**
 * * ----------------------------------------
 * * animation focus-in-expand
 * * ----------------------------------------
 * */
@keyframes focus-in-expand {
  0% {
    visibility: visible;
    letter-spacing: -0.5em;
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
    visibility: visible;
  }
}
/**
 * * ----------------------------------------
 * * animation focus-in-contract-bck
 * * ----------------------------------------
 * */
@keyframes focus-in-contract-bck {
  0% {
    visibility: visible;
    letter-spacing: 1em;
    transform: translateZ(300px);
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    visibility: visible;
    transform: translateZ(0);
    filter: blur(0);
    opacity: 1;
  }
}
/**
 * * ----------------------------------------
 * * animation text-focus-in
 * * ----------------------------------------
 * */
@keyframes text-focus-in {
  0% {
    visibility: visible;
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
    visibility: visible;
  }
}
.text-anim-in {
  animation: focus-in-expand 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.title {
  font-weight: 100;
  font-size: 3.5rem;
  text-transform: uppercase;
  color: white;
  line-height: 100%;
  font-family: Din Pro;
}

.sub-title {
  font-weight: 100;
  font-size: 1.5rem;
  color: white;
  margin: 0;
  line-height: 1.2;
}

#main-app {
  min-height: 100vh;
}

.btn-wrap {
  display: table;
}

.btn-primary {
  display: table;
  padding: 0.3rem 1rem;
  background-color: #671c90;
  border-radius: 20px;
  color: white;
  cursor: pointer;
  transition: background-color 0.22s cubic-bezier(0, 0, 0.2, 1);
}
.btn-primary:hover {
  background-color: #7f24b4;
}

.btn-secondary {
  display: table;
  padding: 3px 5px;
  background-color: #f5d000;
  border-radius: 5px;
  color: #000000;
  cursor: pointer;
}

.link-white {
  color: #FFFFFF;
}

.logo-deep__text {
  width: 45px;
  height: auto;
}

@media only screen and (max-width: 1200px) {
  .title {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 1000px) {
  .title {
    font-size: 2.8rem;
  }
}
/*=========================================  600  ============================================*/
@media only screen and (max-width: 600px) {
  .title {
    font-size: 2rem;
  }
}
/*=========================================  450  ============================================*/
@media only screen and (max-width: 450px) {
  .title {
    font-size: 1.8rem;
  }
  .sub-title {
    font-size: 1.2rem;
  }
}
/*=========================================  350  ============================================*/
@media only screen and (max-width: 350px) {
  .title {
    font-size: 1.5rem;
  }
}
.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

.mt-4 {
  margin-top: 4rem;
}

.pt-4 {
  padding-top: 4rem !important;
}

.gap-5 {
  gap: 5px;
}

.gap-10 {
  gap: 10px;
}

.gap-20 {
  gap: 20px;
}

.gap-1 {
  gap: 1rem;
}

.gap-2 {
  gap: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-5px {
  margin-bottom: 5px;
}

.mt-6 {
  margin-top: 6rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mtb-25 {
  margin-top: 25px;
  margin-bottom: 25px;
}

.mt-25 {
  margin-top: 25px;
}

.flex-wrap {
  flex-wrap: wrap;
}

.my-4 {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.img-responsive {
  width: 100%;
  height: auto;
}

.img-responsive2 {
  height: 350px;
  width: auto;
}

.color-black {
  color: #000000;
}

.items-between {
  justify-content: space-between;
}

.items-center {
  justify-content: center;
}

.items-around {
  justify-content: space-around;
}

.align-start {
  align-items: flex-start;
}

.align-center {
  align-items: center;
}

.basis-100 {
  flex-basis: 100%;
}

.flex {
  display: flex;
}

.align-end {
  align-items: flex-end;
}

.my-5 {
  margin-top: 5px;
  margin-bottom: 5px;
}

.mb-5px {
  margin-bottom: 5px;
}

.mt-0 {
  margin-top: 0;
}

.my-10 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.my-20px {
  margin-top: 20px;
  margin-bottom: 20px;
}

.px-1 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.relative {
  position: relative;
}

.faq-container {
  padding: 2rem 0;
}
.faq-container .layout__title {
  margin-bottom: 1.5rem;
}
.faq-container .dropdown {
  user-select: none;
  overflow: hidden;
  cursor: pointer;
}
.faq-container .dropdown.closed .dropdown-menu-container {
  height: 0;
}
.faq-container .dropdown-icon {
  width: 30px;
  display: inline-block;
  padding: 0 10px;
  font-size: 25px;
  font-weight: bold;
}
.faq-container .dropdown-menu-container {
  padding-left: 40px;
  margin-top: 10px;
  transition: all 0.2s ease-in-out;
}
.faq-container .dropdown-menu .link {
  text-decoration: underline;
  color: #FFFFFF;
}
.faq-container .dropdown-title {
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
}

.custom-checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.custom-checkbox + label {
  display: inline-flex;
  align-items: center;
  user-select: none;
  cursor: pointer;
}

.custom-checkbox + label::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid #898989;
  border-radius: 0.25em;
  margin-right: 0.5em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
  transition: background-color 0.22s ease-in-out, border-color 0.22s ease-in-out;
}

.custom-checkbox:checked + label::before {
  border-color: #671c92;
  background-color: #671c92;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

.custom-checkbox:not(:disabled):not(:checked) + label:hover::before {
  border-color: #8423bf;
}

/* стили для активного состояния чекбокса (при нажатии на него) */
.custom-checkbox:not(:disabled):active + label::before {
  background-color: #8423bf;
  border-color: #8423bf;
}

/* стили для чекбокса, находящегося в фокусе */
/* стили для чекбокса, находящегося в фокусе и не находящегося в состоянии checked */
.custom-checkbox:focus:not(:checked) + label::before {
  border-color: #8423bf;
}

/* стили для чекбокса, находящегося в состоянии disabled */
.custom-checkbox:disabled + label::before {
  background-color: #e9ecef;
}

.custom-select {
  appearance: none;
  cursor: pointer;
  padding: 10px 1rem;
  position: relative;
}

.custom-select + svg {
  position: absolute;
  right: 10px;
  fill: #6d6e70;
  top: 50%;
  transform: translateY(-50%);
}

body {
  background-color: #000000;
  --text: #898989;
  --text-dark: #4b4b4b;
  --accent: #671c90;
  --accent-light: #7f24b4;
  --decoration-dark: #232323;
  --decoration-light: #353535;
  --transition-func: cubic-bezier(0,0,.2,1);
  --border-radius: 25px;
}

h1, h3, h4 {
  font-weight: normal;
}

.text-accent {
  color: #671c92;
  fill: #671c92;
}

.text-grey {
  color: var(--text);
}

.text-grey2 {
  color: var(--text-dark);
}

.bg-dark {
  background-color: #1b1b1b;
}

select {
  border: none;
  color: #FFFFFF;
  padding: 5px 1rem;
  border-radius: var(--border-radius);
  background-color: var(--decoration-dark);
}

label {
  user-select: none;
}

.layout {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 190px;
  position: relative;
}

.container-layout {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 1rem 0;
  position: relative;
}

.container {
  width: 100%;
  max-width: 1300px;
  padding: 0 30px;
  color: #FFFFFF;
}

.hidden {
  display: none !important;
}

.row {
  width: 100%;
  display: flex;
  flex-direction: row;
}
.row .col {
  display: flex;
  flex-flow: column wrap;
}

.col-2 .col {
  flex-basis: 50%;
}

.col-3 {
  justify-content: space-between;
}

.column {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.flat-btn {
  border: none;
  cursor: pointer;
  color: var(--accent);
  background-color: transparent;
  transition: color 0.22s var(--transition-func);
}
.flat-btn:hover {
  color: var(--accent-light);
}

.btn-contrast {
  border-radius: var(--border-radius);
  padding: 10px 1rem;
  background-color: #626262;
  color: #FFFFFF;
  cursor: pointer;
  transition: background-color 0.22s var(--transition-func);
}
.btn-contrast:hover {
  background-color: #757575;
}

.shopping-card__form {
  width: 100%;
}
.shopping-card__form .form__title {
  font-weight: 500;
  margin-bottom: 0;
  margin-top: 0;
}
.shopping-card__form .form__subtitle {
  margin-top: 5px;
  margin-bottom: 0;
  font-weight: 500;
  color: #898989;
}
.shopping-card__form .form__items {
  gap: 1rem;
}
.shopping-card__form .form__items input[type=radio]:checked + .form__item {
  border: 2px solid #671c90;
}
.shopping-card__form .form__item {
  border: 2px solid #2d2d2d;
  padding: 1rem;
  border-radius: 15px;
  cursor: pointer;
  transition: border-color 0.2s cubic-bezier(0, 0, 0.2, 1);
}
.shopping-card__form .form__item:hover {
  border-color: #353535;
}
.shopping-card__form .form__item__title {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.shopping-card__form .form__item__text {
  font-size: 1rem;
  color: #898989;
  padding: 2px 0;
}
.shopping-card__form .form__item__price {
  font-size: 1.3rem;
  color: #898989;
}
.shopping-card__form .label-container {
  display: flex;
  flex-direction: column;
}
.shopping-card__form .cube-detail {
  width: 100%;
  position: relative;
  padding: 1rem 1.2rem;
  background-color: #2d2d2d;
  color: #898989;
  border-radius: 15px;
  cursor: pointer;
  transition: background-color 0.2s cubic-bezier(0, 0, 0.2, 1);
}
.shopping-card__form .cube-detail:hover {
  background-color: #353535;
}
.shopping-card__form .cube-detail .bullet {
  width: 1em;
  height: 1em;
  position: absolute;
  right: -1px;
  top: -3px;
  transform: translate(-50%, 50%);
  border-radius: 50%;
  background-color: #f5d000;
}
.shopping-card__form .bg-dark {
  background-color: #2d2d2d;
}
.shopping-card__form .to-basket {
  width: 200px;
  height: 40px;
}

.additional-text {
  color: #797979;
  padding-inline-start: 30px;
}

.w-full {
  width: 100%;
}

.w-400 {
  width: 100%;
  max-width: 400px;
}

.w-320 {
  width: 100%;
  max-width: 320px;
}

.shrink-0 {
  flex-shrink: 0;
}

.w-half {
  width: 50%;
  min-width: 190px;
}

.pa-1 {
  padding: 1rem;
}

.my-5px {
  margin-top: 5px;
  margin-bottom: 5px;
}

.btn-card {
  width: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #2d2d2d;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 10px;
  transition: border-color 0.2s cubic-bezier(0, 0, 0.2, 1);
}
.btn-card:hover {
  border-color: var(--decoration-light);
}
.btn-card label {
  cursor: pointer;
}

.card {
  width: 100%;
  max-width: 400px;
  border: 2px solid #2d2d2d;
  padding: 1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.2s cubic-bezier(0, 0, 0.2, 1);
}
.card__title {
  font-size: 1rem;
  color: #FFFFFF;
}
.card__price {
  font-size: 1rem;
  text-align: right;
}
.card:hover {
  border-color: var(--decoration-light);
}

.deliver__form input[type=radio]:checked + .btn-card, .deliver__form input[type=radio]:checked + .card, .deliver__form input[type=radio]:checked + .pickpoint-mode__btn, .payment__form input[type=radio]:checked + .btn-card, .payment__form input[type=radio]:checked + .card, .payment__form input[type=radio]:checked + .pickpoint-mode__btn {
  border: 2px solid var(--accent);
}

.pickpoint-mode__btn {
  padding: 5px 10px;
  border-radius: var(--border-radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s cubic-bezier(0, 0, 0.2, 1);
  flex-shrink: 0;
}

.form-input {
  border: 2px solid var(--decoration-light);
  border-radius: 10px;
  background-color: transparent;
  padding: 10px 20px;
  color: #FFFFFF;
}

.pickpoint_search {
  max-width: 200px;
  border: none;
  border-radius: var(--border-radius);
  color: #FFFFFF;
  background-color: var(--decoration-dark);
  padding: 7px 1rem;
}

.pickpoint-list__container {
  width: 100%;
  height: 120px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pickpoint-list__container label, .pickpoint-list__container span {
  cursor: pointer;
}

.pickpoint-list__item {
  border-bottom: 1px solid var(--decoration-dark);
  padding: 5px 0;
  font-size: 14px;
}

.invalid-input {
  color: #f5d000;
}

.link {
  text-decoration: underline;
  color: inherit;
}

.big-btn {
  width: 200px;
  padding: 10px 25px;
}

.order-section {
  width: 100%;
  position: sticky;
  top: 40px;
  z-index: 5;
}
.order-section .order-container {
  display: flex;
  align-items: flex-start;
  min-height: 120px;
  padding: 12px 1rem 0 1rem;
}
.order-section .price-container {
  transform: translateY(5px);
}

.expand {
  overflow: hidden;
  user-select: none;
  cursor: pointer;
}

.expand__details-container {
  height: 0;
  transition: all 0.2s ease-in-out;
}

.expand__icon {
  transition: transform 0.2s ease-in-out;
  transform: rotate(180deg);
}

.expand.closed .expand__icon {
  transform: rotate(0);
}

.carousel {
  width: 100%;
}
.carousel__container {
  width: 100%;
}
.carousel__img-container {
  width: 100%;
}
.carousel__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 15px;
}

.embla {
  width: 100%;
  margin: auto;
  --slide-spacing: 1rem;
  --slide-size: 100%;
  --text-high-contrast-rgb-value: 230, 230, 230;
  --detail-medium-contrast: rgb(25, 25, 25);
  --text-body: #2d2d2d;
}

.embla__viewport {
  overflow: hidden;
}

.embla__container {
  backface-visibility: hidden;
  display: flex;
  touch-action: pan-y pinch-zoom;
  margin-left: calc(var(--slide-spacing) * -1);
}

.embla__slide {
  flex: 0 0 var(--slide-size);
  min-width: 0;
  padding-left: var(--slide-spacing);
}

.embla__slide__number {
  box-shadow: inset 0 0 0 0.2rem var(--detail-medium-contrast);
  border-radius: 1.8rem;
  font-size: 4rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.embla__controls {
  display: grid;
  grid-template-columns: auto 1fr;
  justify-content: space-between;
  gap: 1.2rem;
  margin-top: 1.2rem;
}

.embla__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  margin-right: -0.6rem;
}

.embla__dot {
  -webkit-tap-highlight-color: rgba(var(--text-high-contrast-rgb-value), 0.5);
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  touch-action: manipulation;
  display: inline-flex;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  padding: 0;
  margin: 0;
  width: 1.5rem;
  height: 1.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.embla__dot:after {
  box-shadow: inset 0 0 0 0.2rem var(--detail-medium-contrast);
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  content: "";
}

.embla__dot--selected:after {
  box-shadow: inset 0 0 0 0.2rem var(--text-body);
}

/*=========================================  MEDIA  ============================================*/
@media only screen and (max-width: 1000px) {
  .md_row {
    width: 100%;
    display: flex;
    flex-direction: row;
  }
  .md_flex-wrap {
    flex-wrap: wrap;
  }
  .shopping-card__form section {
    flex-wrap: wrap;
    justify-content: center;
  }
  .shopping-card__form .col-2 .col {
    flex-basis: 100%;
    max-width: 600px;
    align-items: center;
  }
  .shopping-card__form .col-3 {
    max-width: 600px;
    gap: 2rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .form__title, .form__subtitle {
    width: 100%;
  }
}
@media only screen and (max-width: 900px) {
  .order-section {
    top: 0;
  }
}
@media only screen and (max-width: 600px) {
  .container, .additional-text {
    padding: 0 1rem;
  }
  .shopping-card__form .form__items input[type=radio]:checked + .form__item {
    border: 4px solid #671c90;
  }
  .sm_flex-wrap {
    flex-wrap: wrap;
  }
  .sm_items-center {
    justify-content: center;
  }
  .sm_items-between {
    justify-content: space-between;
  }
  .sm_gap-5px {
    gap: 5px;
  }
  .order-section .price-container {
    transform: none;
  }
}
@media only screen and (max-width: 500px) {
  .sm_column {
    flex-direction: column;
  }
}
@media only screen and (max-width: 400px) {
  .container {
    padding: 0 10px;
  }
  .shopping-card__form .col-2 .form__item__text {
    font-size: 14px;
  }
  .shopping-card__form .form__items {
    gap: 10px;
  }
  .btn-card {
    width: unset;
  }
  .xs_text-center {
    text-align: center;
  }
  .card {
    padding: 10px;
  }
  .xs_gap-5px {
    gap: 5px;
  }
  .xs_items-center {
    justify-content: center;
  }
  .xs_flex-wrap {
    flex-wrap: wrap;
  }
  .xs_items-between {
    justify-content: space-between;
  }
}
@media only screen and (max-width: 340px) {
  .container {
    padding: 0 10px;
  }
  .additional-text {
    padding: 0 15px;
  }
}