@import url("https://fonts.googleapis.com/css2?family=Dosis:wght@200..800&family=League+Spartan:wght@100..900&display=swap");

:root {
  --white-color: #fff;
  --text-color: #666e84;
  --accent-color: #fcc55e;
  --main-color: #1e2538;
  --main-turquoise: #00b0b9;
  --pink-flamingo: #ff4768;
  --header-height: 48px;
  --tab-bar-height: 70px;
  --shop-search-height: 42px;
  --border-radius: 10px;
  --screen-width: 650px;
  --font-dosis: "Dosis", sans-serif;
  --font-league-spartan: "League Spartan", sans-serif;
}

.button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  text-align: inherit;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  outline: "none";
  min-height: 50px;
  width: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: 50px;
  background-color: #fcc55e;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #1e2538;
  text-transform: capitalize;
  font-family: "League Spartan", sans-serif;
  -webkit-tap-highlight-color: transparent;
}

.button--dark {
  background-color: #1e2538;
  color: #1e2538;
}

.button:active {
  opacity: 0.4;
}

.header {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 48px;
  width: 100%;
  max-width: 650px;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: #fff;
}

.header a {
  padding-left: 20px;
  padding-right: 20px;
}

.header__basket {
  width: 24px;
  height: 24px;
}

.header__title {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  margin-bottom: 6px;
  text-transform: capitalize;
}

.header__basket-link {
  position: relative;
}

.header__basket-counter {
  position: absolute;
  bottom: 2px;
  right: 35px;
  min-width: 20px;
  height: 20px;
  background-color: #fcc55e;
  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;
  line-height: 1;
  font-family: "League Spartan", sans-serif;
}

.header__basket-counter span {
  font-size: 10px;
  line-height: 1;
  margin-top: 2px;
  color: #1e2538;
}

.modal__background.active {
  opacity: 1;
  visibility: visible;
}

.modal__title {
  margin-left: 20px;
  margin-bottom: 14px;
  text-transform: capitalize;
}

.modal__background {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9999;
  width: 100%;
  height: 100%;
}

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

.modal__item {
  gap: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 14px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  border-bottom: 1px solid #c8cdd9;
}

.modal__text {
  margin-top: 10px;
}

.modal__menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  max-width: 270px;
  width: 100%;
  background-color: #f5fafb;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  padding-top: 4%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 100000;
}

.modal__menu.active {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.tabbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 70px;
  background-color: #f5fafb;
  border-top: 1px solid #c8cdd9;
  padding-left: 14px;
  padding-right: 14px;
  max-width: 650px;
  margin: 0 auto;
  z-index: 999;
}

.tabbar__list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: 100%;
}

.tabbar__link {
  padding-top: 10px;
  padding-bottom: 16px;
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.tabbar__text {
  text-transform: uppercase;
  margin-top: 3px;
}

.tabbar__text--active {
  text-transform: uppercase;
  margin-top: 3px;
  color: #1e2538;
}

/**
 * Swiper 11.2.10
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 28, 2025
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color: #007aff;
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-vertical>.swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-slide {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-backface-hidden .swiper-slide {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-css-mode>.swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal>.swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical>.swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode>.swiper-wrapper {
  -ms-scroll-snap-type: none;
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered>.swiper-wrapper::before {
  content: "";
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-ordinal-group: 10000;
  -ms-flex-order: 9999;
  order: 9999;
}

.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@-webkit-keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  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;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next svg,
.swiper-button-prev svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transform-origin: center;
  transform-origin: center;
}

.swiper-rtl .swiper-button-next svg,
.swiper-rtl .swiper-button-prev svg {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled>.swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical>.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top, 0.2s -webkit-transform;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left, 0.2s -webkit-transform;
}

.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right, 0.2s -webkit-transform;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  transform-origin: right top;
}

.swiper-horizontal>.swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical>.swiper-pagination-progressbar {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  -ms-touch-action: none;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled>.swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal>.swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar.swiper-scrollbar-vertical,
.swiper-vertical>.swiper-scrollbar {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container>canvas,
.swiper-zoom-container>img,
.swiper-zoom-container>svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  -ms-touch-action: none;
  touch-action: none;
}

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode>.swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid>.swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-grid-column>.swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-filter: blur(50px);
  filter: blur(50px);
}

.swiper-cube .swiper-slide-next+.swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  -webkit-transition-property: opacity, height, -webkit-transform;
  transition-property: opacity, height, -webkit-transform;
  transition-property: transform, opacity, height;
  transition-property: transform, opacity, height, -webkit-transform;
}

.swiper.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1 {
  font-size: 36px;
  font-weight: 800;
  color: #1e2538;
  line-height: 1.2;
  font-family: "Dosis", sans-serif;
}

h2 {
  font-size: 24px;
  font-family: "Dosis", sans-serif;
  font-weight: 700;
  color: #1e2538;
  line-height: 1.2;
}

h3 {
  font-size: 22px;
  color: #1e2538;
  line-height: 1.2;
  font-family: "Dosis", sans-serif;
  font-weight: 500;
}

h4 {
  font-size: 20px;
  font-family: "Dosis", sans-serif;
  font-weight: 600;
  color: #1e2538;
  line-height: 1.2;
}

h5 {
  font-size: 18px;
  font-family: "Dosis", sans-serif;
  font-weight: 500;
  color: #1e2538;
  line-height: 1.2;
}

h6 {
  font-size: 16px;
  font-family: "Dosis", sans-serif;
  font-weight: 500;
  color: #1e2538;
  line-height: 1.2;
}

.t10 {
  font-size: 10px;
  font-weight: 500;
  color: #666e84;
  line-height: 1.5;
}

.t12 {
  font-size: 12px;
  font-weight: 400;
  color: #666e84;
  line-height: 1.5;
}

.t14 {
  font-size: 14px;
  font-weight: 400;
  color: #666e84;
  line-height: 1.5;
}

.t16 {
  font-size: 16px;
  font-weight: 400;
  color: #666e84;
  line-height: 1.5;
}

.t18 {
  font-size: 18px;
  font-weight: 400;
  color: #666e84;
  line-height: 1.5;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  outline: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  scrollbar-width: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

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

img {
  max-width: 100%;
  height: auto;
}

html,
body {
  height: 100%;
  max-width: 650px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-family: "League Spartan", sans-serif;
}

button {
  cursor: pointer;
  padding: 0;
  margin: 0;
  outline: none;
  border: none;
  background: none;
  font: inherit;
  text-align: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: inherit;
}

.number-of-lines-1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.button {
  font-size: 18px;
}

details summary::-webkit-details-marker {
  display: none;
}

details summary::marker {
  display: none;
}

details summary {
  list-style: none;
  cursor: pointer;
}

.checkout__my-order__item,
.checkout__my-order__header,
.my-promocodes__copy-container,
.order-history__item,
.order-history__summary-section,
.shop .header__filter-sorting,
.product__price-and-counter,
.product__reviews--header,
.product__name-and-button,
.home .bestseller__header,
.home .featured__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.order__promo-code-item--btn,
.phone-number-verified main,
.email-verified main,
.wishlist-empty main,
.sign-up-account-created main {
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.leave-a-reviews::after,
.categories::after,
.cart-empty::after,
.order-successful::after,
.order-failed::after,
.phone-number-verified::after,
.email-verified::after,
.order-history-empty::after,
.info-saved::after,
.wishlist-empty::after,
.sign-up-account-created::after,
.forgot-password-sent-email::after,
.onboarding::after {
  content: "";
  background-image: url("../assets/bg/03.png");
  position: fixed;
  background-size: cover;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -o-object-fit: fill;
  object-fit: fill;
  max-width: 650px;
  margin: 0 auto;
}

.checkout__textarea,
.shipping-and-payment-info__input--card-expiry__cvv,
.shipping-and-payment-info__input--card-expiry__date,
.shipping-and-payment-info__input--card-number,
.shipping-and-payment-info__input--email,
.shipping-and-payment-info__input--phone,
.shipping-and-payment-info__input--address,
.shipping-and-payment-info__input--name,
.verify-your-email__input,
.verify-your-phone-number__input,
.order__promo-code-item--input,
.order-history-empty__input-element,
.sign-up__input-list li,
.new-password__confirm-password-element,
.new-password__password-element,
.forgot-password__email-element,
.sign-in__input-list li {
  padding-left: 20px;
  height: 50px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50px;
  background-color: #fff;
  border: 1px solid #c8cdd9;
  color: #1e2538;
}

.verify-your-email__email,
.verify-your-phone-number__phone,
.sign-up__input-list li span,
.sign-in__input-list li span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.shipping-and-payment-info main,
.verification main,
.verify-your-email main,
.verify-your-phone-number main,
.new-password main,
.forgot-password main {
  padding-top: 30px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 20px;
  padding-bottom: 30px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../assets/bg/01.png");
}

.onboarding main {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.onboarding .swiper {
  width: 100%;
  height: 100%;
  padding-top: 40px;
  padding-bottom: 20px;
}

.onboarding .swiper-slide {
  width: 100%;
  height: 100%;
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.onboarding .swiper-slide__image {
  height: 100%;
  width: auto;
}

.onboarding__logo {
  display: block;
  margin: 0 auto;
  width: 100px;
  height: auto;
  margin-top: 16px;
  margin-bottom: 5%;
}

.onboarding__description {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  margin-bottom: 20px;
}

.onboarding__title {
  text-align: center;
  margin-bottom: 16px;
  text-transform: capitalize;
}

.onboarding__button-wrapper {
  padding: 20px;
}

.onboarding__pagination-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.onboarding__pagination-item {
  width: 22px;
  height: 6px;
  border-radius: 10px;
  background-color: #ffffff;
}

.onboarding__pagination-item--active {
  background-color: #1e2538;
  width: 22px;
  height: 6px;
}

.sign-in main {
  margin-top: 64px;
  margin-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: 20px;
  margin-right: 20px;
  padding-top: 16%;
  padding-bottom: 16%;
  background-image: url("../assets/bg/03.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  overflow-y: auto;
}

.sign-in__input-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}

.sign-in__input-list li span {
  display: -webkit-box;
}

.sign-in__email-element {
  margin-bottom: 16px;
}

.sign-in__password-element {
  margin-bottom: 16px;
}

.sign-in__no-account {
  text-align: center;
  margin-top: 24px;
  display: block;
}

.sign-in__register-now {
  color: #1e2538;
}

.sign-in__lost-your-password-text {
  color: #1e2538;
}

.sign-in__title {
  text-align: center;
  margin-bottom: 16px;
}

.sign-in__description {
  text-align: center;
  margin-bottom: 32px;
}

.sign-in .remember-me-lost-password {
  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;
  margin-bottom: 32px;
}

.sign-in .remember-me {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  cursor: pointer;
}

.sign-in .remember-me-checkbox {
  width: 18px;
  height: 18px;
  border: 1px solid #c8cdd9;
  border-radius: 5px;
  background-color: #fff;
}

.forgot-password main {
  margin-top: 64px;
  margin-bottom: 20px;
  margin-left: 20px;
  margin-right: 20px;
}

.forgot-password__description {
  text-align: center;
  max-width: 295px;
  margin: 0 auto;
  margin-bottom: 32px;
  background-color: transparent;
}

.forgot-password__email-element {
  margin-bottom: 16px;
}

.new-password main {
  margin: 0 20px 20px 20px;
  margin-top: 64px;
}

.new-password__description {
  text-align: center;
  margin: 0 auto;
  margin-bottom: 32px;
}

.new-password__password-element {
  margin-bottom: 16px;
}

.new-password__confirm-password-element {
  margin-bottom: 16px;
}

.forgot-password-sent-email .main {
  width: 100%;
  height: 100%;
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 20px;
  padding-right: 20px;
  max-width: none;
}

.forgot-password-sent-email .image {
  width: 100%;
  max-width: 281px;
  margin-bottom: 28px;
  padding-left: 20px;
  padding-right: 20px;
}

.forgot-password-sent-email .title {
  max-width: 185px;
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 12px;
}

.forgot-password-sent-email__description {
  max-width: 290px;
  text-align: center;
  margin-bottom: 32px;
}

.sign-up main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 64px;
  margin-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: 20px;
  margin-right: 20px;
  padding-top: 16%;
  padding-bottom: 16%;
  background-image: url("../assets/bg/03.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
}

.sign-up__logo {
  display: block;
  margin: 0 auto 16px auto;
}

.sign-up__title {
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 16px;
}

.sign-up__description {
  text-align: center;
  margin-bottom: 32px;
}

.sign-up__input-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}

.sign-up__already-have-an-account {
  text-align: center;
  margin-top: 24px;
  display: block;
}

.sign-up__already-have-an-account a {
  color: #1e2538;
}

.sign-up-account-created main {
  width: 100%;
  height: 100%;
  padding: 20px;
}

.sign-up-account-created__image {
  width: 100%;
  max-width: 281px;
  margin-bottom: 28px;
  padding-left: 20px;
  padding-right: 20px;
}

.sign-up-account-created__title {
  max-width: 185px;
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 12px;
}

.sign-up-account-created__description {
  max-width: 290px;
  text-align: center;
  margin-bottom: 32px;
}

.home {
  background-color: #f5fafb;
}

.home header {
  background-color: #f5fafb;
}

.home main {
  margin-top: 48px;
  padding-top: 16px;
  padding-bottom: 20px;
  margin-bottom: 70px;
  overflow: auto;
  overflow: auto;
}

.home .swiper-tags {
  margin-bottom: 35px;
}

.home .swiper-tags .swiper-slide {
  width: auto;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid #c8cdd9;
}

.home .swiper-tags .swiper-slide span {
  color: #1e2538;
}

.home .featured {
  margin-bottom: 40px;
}

.home .featured__header {
  margin-bottom: 14px;
  padding-left: 20px;
  padding-right: 20px;
}

.home .featured__image-container {
  width: 200px;
  height: 250px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  border-radius: 12px;
  margin-bottom: 12px;
}

.home .featured__image {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  -o-object-fit: cover;
  object-fit: cover;
}

.home .featured__actions {
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px;
  position: absolute;
  bottom: 0;
  right: 0;
  gap: 10px;
}

.home .featured__rating {
  position: absolute;
  top: 10px;
  left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  background-color: #fff;
  padding: 2px 5px;
  border-radius: 30px;
}

.home .featured__item {
  width: auto;
}

.home .featured__info {
  text-align: center;
}

.home .featured__title {
  margin-bottom: 2px;
}

.home .featured__price--old {
  text-decoration: line-through;
  font-size: 12px;
  color: #666e84;
}

.home .featured__sale-badge {
  background-color: #86d2a5;
  z-index: 1;
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 0 6px;
  height: 22px;
  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: 30px;
}

.home .featured__sale-text {
  color: #fff;
}

.home .banner {
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 49px;
}

.home .banner__image {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.home .bestseller {
  padding-left: 20px;
  padding-right: 20px;
}

.home .bestseller__header {
  margin-bottom: 14px;
}

.home .bestseller__image {
  width: 80px;
  height: 80px;
  border-radius: 12px;
}

.home .bestseller__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}

.home .bestseller__item {
  background-color: #fff;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px;
  gap: 14px;
  width: 100%;
}

.home .bestseller__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-right: auto;
}

.home .bestseller__image {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  -o-object-fit: cover;
  object-fit: cover;
}

.home .bestseller__title {
  margin-bottom: 5px;
}

.home .bestseller__rating {
  padding-left: 5px;
  padding-right: 5px;
  padding-top: 2px;
  padding-bottom: 2px;
  -ms-flex-item-align: start;
  align-self: flex-start;
  background-color: #f5fafb;
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
}

.home .bestseller__rating span {
  line-height: 1;
  margin-top: 2px;
}

.home .bestseller__price--old {
  text-decoration: line-through;
  display: inline-block;
  font-size: 12px;
}

.home .bestseller__sale-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background-color: #86d2a5;
  padding-left: 6px;
  padding-right: 6px;
  border-radius: 12px;
  color: #fff;
  font-size: 12px;
  line-height: 1.5;
  font-family: "League Spartan", sans-serif;
}

.home .bestseller__price-container {
  margin-bottom: 7px;
}

.home .bestseller__image-container {
  width: 80px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  border-radius: 12px;
}

.home .bestseller__actions {
  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;
  height: 80px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.home .bestseller__button--wishlist {
  padding-top: 6px;
  padding-left: 8px;
  padding-right: 8px;
  padding-bottom: 6px;
}

.profile {
  background-color: #f5fafb;
}

.profile .pink-flamingo {
  color: #ff4768;
}

.profile header {
  background-color: #f5fafb;
}

.profile main {
  margin-top: 48px;
  padding-top: 32px;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 70px;
  padding-bottom: 20px;
  overflow: auto;
}

.profile__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  padding: 15px 16px;
  border-radius: 20px;
  background-color: #fff;
}

.profile__text {
  margin-right: auto;
}

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

.profile__header {
  margin-bottom: 16px;
}

.profile-options {
  background-color: #f5fafb;
}

.profile-options .pink-flamingo {
  color: #ff4768;
}

.profile-options header {
  background-color: #f5fafb;
}

.profile-options main {
  margin-top: 48px;
  padding-top: 32px;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 70px;
  padding-bottom: 20px;
  overflow: auto;
}

.profile-options__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  padding: 15px 16px;
  border-radius: 20px;
  background-color: #fff;
}

.profile-options__text {
  margin-right: auto;
}

.profile-options__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
}

.profile-options__header {
  margin-bottom: 16px;
}

.wishlist {
  background-color: #f5fafb;
}

.wishlist header {
  background-color: #f5fafb;
}

.wishlist main {
  margin-top: 48px;
  padding-top: 16px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  overflow: auto;
}

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

.wishlist__item {
  background-color: #fff;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px;
  gap: 14px;
  width: 100%;
}

.wishlist__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-right: auto;
}

.wishlist__image {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  -o-object-fit: cover;
  object-fit: cover;
}

.wishlist__title {
  margin-bottom: 5px;
}

.wishlist__rating {
  padding-left: 5px;
  padding-right: 5px;
  padding-top: 2px;
  padding-bottom: 2px;
  -ms-flex-item-align: start;
  align-self: flex-start;
  background-color: #f5fafb;
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
}

.wishlist__rating span {
  line-height: 1;
  margin-top: 2px;
}

.wishlist__price--old {
  text-decoration: line-through;
  display: inline-block;
}

.wishlist__sale-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background-color: #86d2a5;
  padding-left: 6px;
  padding-right: 6px;
  border-radius: 12px;
  color: #fff;
  font-size: 12px;
  line-height: 1.5;
  font-family: "League Spartan", sans-serif;
}

.wishlist__price-container {
  margin-bottom: 7px;
}

.wishlist__image-container {
  width: 80px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  border-radius: 12px;
}

.wishlist__actions {
  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;
  height: 80px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.wishlist__button--wishlist {
  padding-top: 6px;
  padding-left: 8px;
  padding-right: 8px;
  padding-bottom: 6px;
}

.wishlist-empty main {
  width: 100%;
  height: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.wishlist-empty__title {
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 12px;
}

.wishlist-empty .image {
  width: 100%;
  max-width: 281px;
  margin-bottom: 28px;
  padding-left: 20px;
  padding-right: 20px;
}

.wishlist-empty__description {
  max-width: 265px;
  text-align: center;
  margin-bottom: 32px;
}

.info-saved main {
  width: 100%;
  height: 100%;
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 20px;
  padding-right: 20px;
  max-width: none;
}

.info-saved__title {
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 12px;
}

.info-saved .image {
  width: 100%;
  max-width: 281px;
  margin-bottom: 28px;
  padding-left: 20px;
  padding-right: 20px;
}

.info-saved__description {
  max-width: 290px;
  text-align: center;
  margin-bottom: 32px;
}

.order-history-empty main {
  width: 100%;
  height: 100%;
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 20px;
  padding-right: 20px;
  max-width: none;
}

.order-history-empty__title {
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 12px;
  max-width: 268px;
}

.order-history-empty .image {
  width: 100%;
  max-width: 281px;
  margin-bottom: 28px;
  padding-left: 20px;
  padding-right: 20px;
}

.order-history-empty__description {
  max-width: 266px;
  text-align: center;
  margin-bottom: 32px;
}

.order-history-empty__input-element {
  margin-bottom: 16px;
}

.email-verified main {
  width: 100%;
  height: 100%;
  padding: 0 20px;
}

.email-verified__title {
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 12px;
  max-width: 303px;
}

.email-verified .image {
  width: 100%;
  max-width: 281px;
  margin-bottom: 28px;
  padding-left: 20px;
  padding-right: 20px;
}

.email-verified__description {
  max-width: 266px;
  text-align: center;
  margin-bottom: 32px;
}

.phone-number-verified main {
  width: 100%;
  height: 100%;
  padding-left: 20px;
  padding-right: 20px;
  max-width: none;
}

.phone-number-verified__title {
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 12px;
  max-width: 335px;
}

.phone-number-verified .image {
  width: 100%;
  max-width: 281px;
  margin-bottom: 28px;
  padding-left: 20px;
  padding-right: 20px;
}

.phone-number-verified__description {
  max-width: 266px;
  text-align: center;
  margin-bottom: 32px;
}

.order-failed main {
  width: 100%;
  height: 100%;
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 20px;
  padding-right: 20px;
  max-width: none;
}

.order-failed .button--dark {
  color: #fff;
}

.order-failed__title {
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 12px;
  max-width: 290px;
}

.order-failed .image {
  width: 100%;
  max-width: 281px;
  margin-bottom: 28px;
  padding-left: 20px;
  padding-right: 20px;
}

.order-failed__description {
  max-width: 266px;
  text-align: center;
  margin-bottom: 32px;
}

.order-failed .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  width: 100%;
}

.order-failed .buttons__link {
  width: 100%;
}

.order-successful main {
  width: 100%;
  height: 100%;
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 20px;
  padding-right: 20px;
  max-width: none;
}

.order-successful__title {
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 12px;
  max-width: 290px;
}

.order-successful .image {
  width: 100%;
  max-width: 281px;
  margin-bottom: 28px;
  padding-left: 20px;
  padding-right: 20px;
}

.order-successful .button--dark {
  color: #fff;
}

.order-successful__description {
  max-width: 290px;
  text-align: center;
  margin-bottom: 32px;
}

.order-successful .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  width: 100%;
}

.order-successful .buttons__link {
  width: 100%;
}

.cart-empty header {
  background-color: transparent;
}

.cart-empty main {
  width: 100%;
  height: 100%;
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-top: 20px;
  max-width: none;
  margin-top: 48px;
  margin-bottom: 70px;
}

.cart-empty__title {
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 12px;
  max-width: 290px;
}

.cart-empty .image {
  width: 100%;
  max-width: 281px;
  margin-bottom: 20px;
  padding-left: 40px;
  padding-right: 40px;
}

.cart-empty__description {
  max-width: 290px;
  text-align: center;
  margin-bottom: 20px;
}

.order {
  background-color: #f5fafb;
}

.order header {
  background-color: #f5fafb;
}

.order main {
  margin-top: 48px;
  padding-top: 16px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  overflow: auto;
  margin-bottom: 70px;
}

.order__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.order__item {
  background-color: #fff;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px;
  gap: 14px;
  width: 100%;
}

.order__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-right: auto;
}

.order__image {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  -o-object-fit: cover;
  object-fit: cover;
}

.order__title {
  margin-bottom: 5px;
}

.order__rating {
  padding-left: 5px;
  padding-right: 5px;
  padding-top: 2px;
  padding-bottom: 2px;
  -ms-flex-item-align: start;
  align-self: flex-start;
  background-color: #f5fafb;
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
}

.order__rating span {
  line-height: 1;
  margin-top: 2px;
}

.order__price--old {
  text-decoration: line-through;
  display: inline-block;
}

.order__sale-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background-color: #86d2a5;
  padding-left: 6px;
  padding-right: 6px;
  border-radius: 12px;
  color: #fff;
  font-size: 12px;
  line-height: 1.5;
  font-family: "League Spartan", sans-serif;
}

.order__price-container {
  margin-bottom: 7px;
}

.order__image-container {
  width: 80px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  border-radius: 12px;
}

.order__actions {
  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;
  height: 80px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.order__button--wishlist {
  padding-top: 6px;
  padding-left: 8px;
  padding-right: 8px;
  padding-bottom: 6px;
}

.order__promo-code-applied {
  margin-bottom: 20%;
}

.order__promo-code {
  display: -ms-grid;
  display: grid;
  gap: 16px;
  height: 50px;
  -ms-grid-columns: 1fr 16px 130px;
  grid-template-columns: 1fr 130px;
  margin-bottom: 20%;
}

.order__promo-code-item--input {
  width: 100%;
  height: 100%;
  border-radius: 50px;
  padding-left: 20px;
  padding-right: 20px;
}

.order__promo-code-item--btn {
  background-color: #1e2538;
  border-radius: 50px;
}

.order__promo-code-item--btn span {
  color: #fff;
}

.order__summary {
  background-color: #fff;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid #c8cdd9;
  margin-bottom: 12px;
}

.order__summary-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 8px;
}

.order__summary-item:last-child {
  margin-bottom: 0;
}

.order__summary-item--price {
  color: #1e2538;
}

.order__summary-item--delivery {
  border-bottom: 1px solid #c8cdd9;
  padding-bottom: 7px;
  margin-bottom: 10px;
}

.order__summary-item--total-text {
  color: #1e2538;
}

.order__summary-item--total-price {
  color: #1e2538;
}

.order__summary-item--subtotal-text {
  color: #1e2538;
}

.order__summary-item--free-text {
  color: #15c7ff;
}

.categories header {
  background-color: transparent;
}

.categories main {
  margin-top: 48px;
  padding-top: 16px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  margin-bottom: 70px;
  overflow: auto;
}

.categories .category__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 15px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.categories .category__item {
  border: 1px solid #c8cdd9;
  border-radius: 20px;
  overflow: hidden;
  max-height: 180px;
  position: relative;
}

.categories .category__image {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.categories .category__text-container {
  position: absolute;
  z-index: 1;
  width: calc(100% - 20px);
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  margin: 0 auto;
  border-radius: 20px;
  left: 0;
  right: 0;
  bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 5px;
  padding-bottom: 5px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.7);
}

.categories .category__text {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  font-family: "Dosis", sans-serif;
  color: #1e2538;
  text-align: center;
}

.product {
  background-color: #f5fafb;
}

.product main {
  margin-top: 48px;
  padding-bottom: 20px;
  overflow-y: auto;
}

.product header {
  background-color: #f5fafb;
}

.product__name-and-button {
  padding-left: 20px;
  padding-right: 20px;
}

.product__rating-and-stock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 20px;
  padding-right: 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 3px;
}

.product__rating-in-stock--text {
  color: #15c7ff;
}

.product__rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  background-color: #fff;
  padding: 2px 5px;
  border-radius: 30px;
}

.product__rating span {
  margin-top: 1px;
  line-height: 1.5;
}

.product__description {
  margin-bottom: 28px;
  border-bottom: 1px solid #c8cdd9;
  margin-left: 20px;
  margin-right: 20px;
}

.product__description--tile {
  margin-bottom: 12px;
}

.product__description--text {
  margin-bottom: 16px;
}

.product__description--read-more {
  color: #1e2538;
  cursor: pointer;
  text-align: right;
  display: block;
  margin-bottom: 13px;
}

.product__reviews {
  margin-left: 20px;
  margin-right: 20px;
}

.product__reviews--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}

.product__reviews--header {
  margin-bottom: 16px;
}

.product__reviews--view-all {
  color: #1e2538;
}

.product__reviews--item {
  background-color: #fff;
  border-radius: 20px;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 14px;
  position: relative;
}

.product__reviews--image {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}

.product__reviews--content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.product__reviews--name {
  margin-bottom: 3px;
}

.product__reviews--date {
  margin-bottom: 7px;
}

.product__reviews--rating {
  position: absolute;
  top: 10px;
  right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  background-color: #f5fafb;
  padding: 2px 5px;
  border-radius: 30px;
}

.product__rating--number {
  margin-top: 2px;
}

.product__color {
  margin-bottom: 28px;
  border-bottom: 1px solid #c8cdd9;
  padding-bottom: 20px;
  margin-left: 20px;
  margin-right: 20px;
}

.product__color--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.product__color--title {
  margin-bottom: 12px;
}

.product__color--item {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.product__color--item span {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.product__color--item--red-orange {
  background-color: #ff452f;
}

.product__color--item--blue {
  background-color: #2db3ff;
}

.product__color--item--green {
  background-color: #2dd45c;
}

.product__color--item--white {
  background-color: #ffffff;
}

.product__color--item--yellow {
  background-color: #ffe923;
}

.product__color--item--orange {
  background-color: #fd8c06;
  border: 2px solid #1e2538;
}

.product__price-and-counter {
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 21px;
}

.product__counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  background-color: #fff;
}

.product__counter button {
  padding-left: 14px;
  padding-right: 14px;
  padding-top: 13px;
  padding-bottom: 13px;
}

.product__price {
  font-size: 24px;
  line-height: 1.5;
}

.product__carousel {
  width: 100%;
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
}

.product__carousel--image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
  overflow: hidden;
}

.product__carousel--prev {
  position: absolute;
  left: 40px;
  bottom: 20px;
  z-index: 1;
}

.product__carousel-wrapper {
  position: relative;
}

.product .swiper-slide {
  padding-left: 20px;
  padding-right: 20px;
}

.product .swiper-pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 10;
}

.product .swiper-pagination-bullet {
  width: 22px;
  height: 6px;
  background: #fff;
  opacity: 1;
  border-radius: 10px;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}

.product .swiper-pagination-bullet-active {
  background: #1e2538;
  width: 22px;
  height: 6px;
}

.reviews {
  background-color: #f5fafb;
}

.reviews header {
  background-color: #f5fafb;
}

.reviews main {
  margin-top: 48px;
  padding-top: 20px;
  padding-bottom: 20px;
  overflow-y: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.reviews__button {
  padding: 20px;
}

.description {
  background-color: #f5fafb;
}

.description header {
  background-color: #f5fafb;
}

.description main {
  margin-top: 48px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 27px;
  padding-bottom: 20px;
  overflow-y: auto;
}

.description__title {
  margin-bottom: 12px;
}

.shop {
  background-color: #f5fafb;
}

.shop header {
  background-color: #f5fafb;
}

.shop .header__filter-sorting {
  height: 48px;
  position: fixed;
  top: 48px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10;
  padding-left: 20px;
  padding-right: 20px;
  background-color: #f5fafb;
  max-width: 650px;
  margin: 0 auto;
}

.shop main {
  margin-top: 96px;
  padding-top: 4px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  overflow-y: auto;
}

.shop .product__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 17px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.shop .product__quantity {
  width: 30px;
  height: 30px;
  background-color: #fcc55e;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.shop .product__quantity span {
  color: #1e2538;
  margin-top: 2px;
}

.shop .product__image-container {
  width: 100%;
  height: auto;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  border-radius: 12px;
  margin-bottom: 12px;
}

.shop .product__image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  -o-object-fit: cover;
  object-fit: cover;
}

.shop .product__actions {
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px;
  position: absolute;
  bottom: 0;
  right: 0;
  gap: 10px;
}

.shop .product__sale-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  height: 22px;
  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: #86d2a5;
  padding-left: 8px;
  padding-right: 8px;
  border-radius: 12px;
  color: #fff;
  font-size: 12px;
  line-height: 1.5;
  font-family: "League Spartan", sans-serif;
}

.shop .product__rating {
  position: absolute;
  height: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 5px;
  padding-right: 5px;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 4px;
  background-color: #fff;
  border-radius: 30px;
}

.shop .product__rating span {
  line-height: 1;
  margin-top: 2px;
}

.shop .product__item {
  width: auto;
}

.shop .product__info {
  text-align: center;
}

.shop .product__title {
  margin-bottom: 2px;
}

.shop .product__price {
  font-size: 16px;
}

.shop .product__price--old {
  text-decoration: line-through;
  font-size: 12px;
  color: #666e84;
}

.filter {
  background-color: #f5fafb;
}

.filter header {
  background-color: #f5fafb;
}

.filter main {
  margin-top: 48px;
  padding-top: 16px;
  padding-left: 20px;
  padding-right: 20px;
  overflow-y: auto;
}

.filter__status-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
}

.filter__status-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.filter__status-check-container {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #c8cdd9;
  background-color: #fff;
}

.filter__status-text-container {
  height: 22px;
  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;
  padding-left: 8px;
  padding-right: 8px;
  border-radius: 12px;
}

.filter__status-text-container span {
  font-size: 12px;
  color: #fff;
}

.filter__status--green {
  background-color: #86d2a5;
}

.filter__radical--red {
  background-color: #ff4768;
}

.filter__radical--vivid-sky-blue {
  background-color: #15c7ff;
}

.filter__status {
  margin-bottom: 29px;
}

.filter__color {
  margin-bottom: 40px;
}

.filter__color--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.filter__color--title {
  margin-bottom: 12px;
}

.filter__color--item {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.filter__color--item span {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.filter__color--item--red-orange {
  background-color: #ff452f;
}

.filter__color--item--blue {
  background-color: #2db3ff;
}

.filter__color--item--green {
  background-color: #2dd45c;
}

.filter__color--item--white {
  background-color: #ffffff;
}

.filter__color--item--yellow {
  background-color: #ffe923;
}

.filter__color--item--orange {
  background-color: #fd8c06;
  border: 2px solid #1e2538;
}

.filter__age-group {
  margin-bottom: 40px;
}

.filter__age-group--title {
  margin-bottom: 12px;
}

.filter__age-group--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.filter__age-group--item {
  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;
  padding: 0 18px;
  border-radius: 50px;
  border: 1px solid #c8cdd9;
}

.filter__age-group--item--active {
  background-color: #1e2538;
  color: #fff;
  border: 1px solid #1e2538;
}

.filter__play-type {
  margin-bottom: 40px;
}

.filter__play-type--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}

.filter__play-type--title {
  margin-bottom: 12px;
}

.filter__play-type--check-container {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #c8cdd9;
  background-color: #fff;
}

.filter__play-type--item {
  gap: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.filter__tags {
  margin-bottom: 20px;
}

.filter__tags--title {
  margin-bottom: 12px;
}

.filter__tags--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.filter__tags--item {
  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;
  padding: 0 18px;
  border-radius: 50px;
  border: 1px solid #c8cdd9;
}

.filter__tags--item--active {
  background-color: #1e2538;
  color: #fff;
  border: 1px solid #1e2538;
}

.filter__button {
  padding: 20px;
}

.leave-a-reviews header {
  background-color: transparent;
}

.leave-a-reviews main {
  margin-top: 48px;
  padding-top: 27px;
  padding-bottom: 20px;
  overflow-y: auto;
  padding-left: 20px;
  padding-right: 20px;
  overflow-y: auto;
}

.leave-a-reviews .review__background {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -o-object-fit: fill;
  object-fit: fill;
  max-width: 650px;
  margin: 0 auto;
}

.leave-a-reviews .review__image {
  padding-left: 80px;
  padding-right: 80px;
  margin-bottom: 16px;
}

.leave-a-reviews .review__title {
  text-align: center;
  margin-bottom: 32px;
}

.leave-a-reviews .review__description {
  text-align: center;
  margin-bottom: 32px;
}

.leave-a-reviews .review__comment-container {
  min-height: 120px;
  padding: 8px 20px;
  border: 1px solid #c8cdd9;
  background-color: #fff;
  border-radius: 20px;
  margin-bottom: 16px;
}

.leave-a-reviews .review__rating-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 16px;
}

.leave-a-reviews #review__comment-text {
  line-height: 1.5;
}

.edit-profile header {
  background-color: #fff;
}

.edit-profile main {
  margin-top: 64px;
  margin-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../assets/bg/01.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  margin-left: 20px;
  margin-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}

.edit-profile__element {
  padding-left: 20px;
  height: 50px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50px;
  background-color: #fff;
  border: 1px solid #c8cdd9;
  color: #1e2538;
}

.order-history {
  background-color: #f5fafb;
}

.order-history header {
  background-color: #f5fafb;
}

.order-history main {
  margin-top: 48px;
  padding-top: 16px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
}

.order-history__details[open] {
  border-color: #c8cdd9;
}

.order-history__header {
  padding: 20px;
  border-radius: 20px;
}

.order-history__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 20px;
  padding-top: 4px;
}

.order-history__summary-section:first-child {
  margin-bottom: 5px;
}

.order-history__details {
  border-radius: 20px;
  border: 1px solid #c8cdd9;
  background-color: #fff;
}

.order-history__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 3px;
}

.order-history__price {
  color: #1e2538;
  font-weight: 700;
}

.order-history__title {
  font-size: 18px;
  font-weight: 500;
  font-family: "Dosis", sans-serif;
}

.my-promocodes {
  background-color: #f5fafb;
}

.my-promocodes header {
  background-color: #f5fafb;
}

.my-promocodes main {
  margin-top: 48px;
  padding: 32px 20px 20px;
  overflow-y: auto;
}

.my-promocodes__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 15px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.my-promocodes__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 20px;
  border-radius: 20px;
  background-color: #fff;
}

.my-promocodes__item .my-promocodes__percentage {
  color: #fcc55e;
}

.my-promocodes__item:nth-child(2) .my-promocodes__percentage {
  color: #ff4768;
}

.my-promocodes__item:nth-child(3) .my-promocodes__percentage {
  color: #15c7ff;
}

.my-promocodes__title {
  color: #1e2538;
  margin-top: 12px;
  margin-bottom: 3px;
}

.my-promocodes__icon--ticket {
  width: 50px;
}

.my-promocodes__copy-container {
  background-color: #f5fafb;
  padding: 6px 12px;
  border-radius: 12px;
}

.my-promocodes__date {
  margin-bottom: 12px;
}

.my-promocodes__add-button {
  margin: 0 auto;
  margin-top: 14%;
}

.verify-your-phone-number main {
  margin: 64px 20px 20px;
}

.verify-your-phone-number__description {
  text-align: center;
  max-width: 295px;
  margin: 0 auto;
  margin-bottom: 16px;
}

.verify-your-phone-number__input {
  margin-bottom: 16px;
  padding-right: 20px;
}

.verify-your-phone-number__phone {
  margin-right: auto;
  padding-right: 20px;
  color: #1e2538;
}

.verify-your-email main {
  margin: 64px 20px 20px;
}

.verify-your-email__description {
  text-align: center;
  max-width: 295px;
  margin: 0 auto;
  margin-bottom: 16px;
}

.verify-your-email__input {
  margin-bottom: 16px;
  padding-right: 20px;
}

.verify-your-email__email {
  margin-right: auto;
  padding-right: 20px;
  color: #1e2538;
}

.verification main {
  margin: 64px 20px 20px;
}

.verification__description {
  text-align: center;
  max-width: 295px;
  margin: 0 auto;
  margin-bottom: 16px;
}

.verification__input {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 11px 1fr 11px 1fr 11px 1fr 11px 1fr;
  grid-template-columns: repeat(5, 1fr);
  gap: 11px;
  margin-bottom: 28px;
}

.verification__input-item {
  height: 50px;
  width: 100%;
  border: 1px solid #c8cdd9;
  border-radius: 10px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.verification__resend {
  text-align: center;
  margin-bottom: 32px;
}

.verification__resend span {
  color: #1e2538;
}

.shipping-and-payment-info main {
  padding: 30px 20px 30px 20px;
  margin: 0 20px;
  margin-top: 64px;
}

.shipping-and-payment-info__input--name {
  margin-bottom: 16px;
}

.shipping-and-payment-info__input--address {
  margin-bottom: 16px;
}

.shipping-and-payment-info__input--phone {
  margin-bottom: 16px;
}

.shipping-and-payment-info__input--email {
  margin-bottom: 16px;
}

.shipping-and-payment-info__input--card-number {
  margin-bottom: 16px;
}

.shipping-and-payment-info__input--card-expiry {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 11px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
  margin-bottom: 16px;
}

.shipping-and-payment-info__input--card-expiry__date {
  margin-bottom: 0;
}

.shipping-and-payment-info__input--card-expiry__cvv {
  margin-bottom: 0;
}

.checkout {
  background-color: #f5fafb;
}

.checkout main {
  margin-top: 48px;
  padding: 16px 20px;
}

.checkout header {
  background-color: #f5fafb;
}

.checkout__my-order {
  background-color: #fff;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #c8cdd9;
  margin-bottom: 16px;
}

.checkout__my-order__header {
  margin-bottom: 12px;
}

.checkout__my-order__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 6px;
}

.checkout__my-order__item__free-text {
  color: #15c7ff;
}

.checkout__shipping-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #fff;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #c8cdd9;
  margin-bottom: 16px;
}

.checkout__shipping-details__title {
  margin-bottom: 12px;
}

.checkout__shipping-details__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2px;
}

.checkout__textarea {
  height: 120px;
  margin-bottom: 16px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-top: 11px;
  padding-bottom: 10px;
  border-radius: 20px;
}