@font-face {
  font-weight: 400;
  font-family: firagobook;
  src: url(../fonts/FiraGO-Book.ttf);
}
@font-face {
  font-family: firago;
  src: url(../fonts/FiraGO-Regular.ttf);
}
@font-face {
  font-weight: 700;
  font-family: firagobold;
  src: url(../fonts/FiraGO-Bold.ttf);
}
@font-face {
  font-weight: 500;
  font-family: firagomedium;
  src: url(../fonts/FiraGO-Medium.ttf);
}
@font-face {
  font-weight: 600;
  font-family: firagosemibold;
  src: url(../fonts/FiraGO-SemiBold.ttf);
}
@font-face {
  font-weight: 100;
  font-family: firagothin;
  src: url(../fonts/FiraGO-Thin.ttf);
}
@font-face {
  font-weight: 100;
  font-family: firagothinitalic;
  font-style: italic;
  src: url(../fonts/FiraGO-ThinItalic.ttf);
}
/* Chrome, Safari, Edge, Opera */
/* Firefox */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  resize: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  font-family: firago;
}

input, input:before, input:after {
  -webkit-user-select: initial;
  -khtml-user-select: initial;
  -moz-user-select: initial;
  -ms-user-select: initial;
  user-select: initial;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  transition: background-color 5000s ease-in-out 0s;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.container {
  padding: 0 20px;
  max-width: 1350px;
  width: 100%;
  margin: 0 auto;
}

a, button, input, textarea {
  color: inherit;
  text-decoration: none;
  border: none;
  outline: none;
  background: none;
  font-family: inherit;
  line-height: inherit;
}

ul li {
  list-style-position: inside;
  list-style: none;
}

address {
  font-style: normal;
}

.default-ul {
  font-size: 14px;
  line-height: 19.6px;
  font-family: firagobook;
}

div.default-ul > *:not(:last-child) {
  margin-bottom: 1em;
}
div.default-ul ul li {
  list-style: initial;
  list-style-position: inside;
}

body:not(.orderresult) {
  padding-top: 90px;
}
body.noscroll {
  overflow-y: hidden;
}

.uppercase {
  text-transform: uppercase;
  font-feature-settings: "case" on;
}

@media screen and (min-width: 1025px) {
  .main {
    min-height: calc(100vh - 690px);
  }
}

.header {
  position: fixed;
  z-index: 7;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  top: 10px;
  left: 10px;
  right: 10px;
  box-shadow: 5px 0px 30px rgba(19, 19, 19, 0.05);
  color: #131313;
  background-color: white;
  border-radius: 30px;
  padding-left: 20px;
  padding-right: 15px;
  transform: translateY(0);
  transition: transform 0.1s ease-out;
}
@media screen and (min-width: 1025px) {
  .header {
    padding-left: 30px;
    padding-right: 0;
    transform: none !important;
  }
}
.header.scrolled {
  transform: translateY(-100px);
  transition: transform 0.1s ease-in;
}
.header__langbar {
  top: 0;
  display: grid;
  grid-gap: 2px;
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 11px;
  border: 2px solid #F2FBFF;
  overflow: hidden;
  background-color: #F2FBFF;
  transition: 0.2s ease-out;
  cursor: pointer;
}
.header__langbar a, .header__langbar span {
  display: flex;
  height: 20px;
  width: 20px;
  opacity: 0.6;
  pointer-events: none;
}
.header__langbar a svg, .header__langbar a img, .header__langbar span svg, .header__langbar span img {
  width: 100%;
  height: 100%;
}
.header__langbar a img, .header__langbar span img {
  object-fit: contain;
}
.header__langbar a.active, .header__langbar span.active {
  order: -1;
  opacity: 1;
}
.header__langbar.toggled {
  height: 68px;
  top: 22px;
  cursor: default;
  transition: 0.2s ease-in;
}
.header__langbar.toggled a {
  pointer-events: all;
}
.header__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header__left, .header__right {
  width: max-content;
  display: flex;
  align-items: center;
}
.header__right {
  display: none;
}
@media screen and (min-width: 1025px) {
  .header__right {
    height: 100%;
    display: flex;
  }
}
.header__left {
  width: 100%;
  justify-content: space-between;
}
@media screen and (min-width: 1025px) {
  .header__left {
    width: unset;
    justify-content: unset;
  }
}
.header__hr {
  display: none;
  width: 1px;
  height: 34px;
  border-radius: 2px;
  background-color: transparent;
  margin: 0 20px;
}
@media screen and (min-width: 1025px) {
  .header__hr {
    display: inline-block;
  }
}
.header__navbar {
  width: max-content;
  height: max-content;
  display: none;
}
@media screen and (min-width: 1025px) {
  .header__navbar {
    display: initial;
  }
}
.header__navbar__shop {
  display: flex;
  flex-direction: column;
  grid-gap: 30px !important;
  gap: 30px !important;
}
@media screen and (min-width: 1025px) {
  .header__navbar__shop {
    width: 100%;
  }
}
.header__navbar__icons {
  cursor: pointer;
  height: 8px;
  width: 20px;
  display: flex;
  position: relative;
}
.header__navbar__icons span {
  display: block;
  position: absolute;
  width: 20px;
  border-radius: 200px;
  background-color: #131313;
  height: 2px;
  transform-origin: center;
  transition: 0.2s ease-in-out;
}
.header__navbar__icons__top {
  top: 0;
}
.header__navbar__icons__bottom {
  top: 6px;
}
.header__navbar__content {
  z-index: 7;
  position: fixed;
  top: 101vh;
  left: 10px;
  width: calc(100% - 20px);
  border-radius: 30px;
  background-color: #fff;
  overflow: auto;
  opacity: 0;
  height: calc(100vh - 180px);
  transition: 0.25s ease-out;
}
@media screen and (min-width: 1025px) {
  .header__navbar__content {
    height: calc(100vh - 100px);
    border-radius: 30px;
    width: calc(100% - 20px);
  }
}
.header__navbar__content a {
  text-transform: capitalize;
}
.header__navbar__content__combiner {
  width: max-content;
}
.header__navbar__content__withscroll {
  height: 100%;
  padding: 0px 40px;
  overflow: auto;
  margin-right: 10px;
}
@media screen and (min-width: 1025px) {
  .header__navbar__content__withscroll {
    display: flex;
    flex-wrap: wrap;
  }
}
.header__navbar__content ul {
  font-family: firagobook;
  font-size: 14px;
  font-weight: normal;
  display: grid;
  grid-gap: 16px;
  color: #131313;
}
.header__navbar__content ul:not(:last-of-type) {
  margin-bottom: 50px;
}
.header__navbar__content.toggled {
  top: 90px;
  opacity: 1;
}
.header__navbar__content.toggled .header__navbar__content__withscroll {
  padding: 50px 40px;
}
.header__navbar__content .outer_a {
  display: inline-block;
  height: 20px;
  flex-shrink: 0;
  pointer-events: none !important;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .header__navbar__content .outer_a {
    height: unset;
    pointer-events: all !important;
  }
}
.header__navbar__content .outer_a::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -40px;
  width: 30px;
  height: 1px;
  background-color: #00B4FB;
  transition: 0.3s ease;
}
.header__navbar__content .outer_li {
  display: flex;
  width: max-content;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: padding-left 0.3s ease, font-weight 0.1s ease;
}
@media screen and (max-width: 1024px) {
  .header__navbar__content .outer_li_container {
    grid-gap: 30px;
  }
}
.header__navbar__content .inner_li:hover {
  font-weight: 600;
}
.header__navbar__content .inner_li:hover .inner_ul_last {
  transition: height 0.3s ease-out, opacity 0.3s ease-out;
  height: var(--height);
  opacity: 1;
}
.header__navbar__content .inner_li:hover .outer_a {
  margin-bottom: 8px;
  color: #00B4FB;
  font-weight: 600;
  font-family: firagosemibold;
}
.header__navbar__content .inner_ul_last {
  --height: max-content;
  height: 0;
  opacity: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: height 0.1s ease-in, opacity 0.1s ease-in;
}
@media screen and (min-width: 1025px) {
  .header__navbar__content .view_all {
    display: none;
  }
}
.header__navbar__title {
  color: #000;
  font-size: 14px;
  margin-bottom: 16.8px;
  font-family: firagosemibold;
  font-weight: 600;
  text-transform: uppercase;
  font-feature-settings: "case" on;
  position: relative;
  width: max-content;
}
.header__navbar__title::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: #00B4FB;
  width: 100%;
  height: 1px;
  border-radius: 1px;
}
.header__navbar__title_mobonly {
  color: #000;
  font-size: 14px;
}
@media screen and (max-width: 1024px) {
  .header__navbar__title_mobonly {
    margin-bottom: 16.8px;
    font-family: firagosemibold;
    font-weight: 600;
    text-transform: uppercase;
    font-feature-settings: "case" on;
    position: relative;
    width: max-content;
  }
  .header__navbar__title_mobonly::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    background: #00B4FB;
    width: 100%;
    height: 1px;
    border-radius: 1px;
  }
}
.header__navbar__bg, .loginmodal__bg, .reviewmodal__bg, .fastordermodal__bg, .messageboxmodal__bg, .header__navbar .loginmodal__bg {
  position: fixed;
  right: 0;
  top: 0;
  width: 0;
  height: 0;
  background-color: rgba(19, 19, 19, 0.6);
  z-index: 5;
}
.header__navbar__bg.toggled, .toggled.loginmodal__bg, .toggled.reviewmodal__bg, .toggled.fastordermodal__bg, .toggled.messageboxmodal__bg, .header__navbar .loginmodal__bg.toggled {
  width: 100%;
  height: 100vh;
}
.header__navbar.toggled .header__navbar__icons__top {
  top: 3px;
  transform: rotate(45deg);
}
.header__navbar.toggled .header__navbar__icons__bottom {
  top: 3px;
  transform: rotate(135deg);
}
.header__searchform {
  display: flex;
  align-items: center;
  position: fixed;
  top: 22px;
  z-index: 8;
  right: 26px;
}
@media screen and (min-width: 1025px) {
  .header__searchform {
    position: static;
  }
}
.header__searchform button {
  cursor: pointer;
  display: flex;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 1025px) {
  .header__searchform button {
    margin-right: 12px;
  }
}
.header__searchform__X {
  width: 0;
  height: 0;
  overflow: hidden;
  display: none;
}
.header__searchform.mobile {
  overflow: hidden;
  width: 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  border-radius: 30px;
  transition: 0.1s ease-in-out;
}
.header__searchform.mobile.scrolled {
  top: 22px;
}
.header__searchform.mobile.toggled {
  top: 22px;
  height: 44px;
  width: calc(100% - 40px);
  right: 20px;
  padding-right: 5px;
}
.header__searchform.mobile.toggled .header__searchform__X {
  width: 34px;
  height: 34px;
  flex-basis: 1;
  display: unset;
}
.header__searchform.mobile input {
  width: 0;
  flex-basis: 0;
  flex-grow: 1;
}
.header__searchform input {
  display: flex;
  align-items: center;
  width: 0;
  overflow: hidden;
  flex-grow: 1;
}
@media screen and (min-width: 1025px) {
  .header__searchform input {
    max-width: 140px;
    flex-grow: 0;
    width: 100%;
  }
}
@media screen and (min-width: 1025px) {
  .header__searchform.mobile {
    display: none !important;
  }
}
.header__searchform.mobile input {
  color: #fff;
}
.header__loginbtn {
  cursor: pointer;
  display: flex;
  align-items: center;
  margin-right: 20px;
}
.header__loginbtn svg {
  margin-right: 10px;
}
.header__loginbtn span {
  font-family: firagobold;
  text-transform: uppercase;
  font-feature-settings: "case" on;
}
.header__loginbtn.loggedin {
  position: relative;
}
.header__loginbtn.loggedin span {
  text-transform: capitalize;
}
@media screen and (max-width: 1024px) {
  .header .header__searchform {
    display: none;
  }
}
.header__favourites, .header__smth {
  position: relative;
  cursor: pointer;
  height: 24px;
  display: flex;
  width: max-content;
  align-items: center;
}
.header__favourites:hover::before, .header__smth:hover::before {
  content: "";
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #131313;
  border-radius: 2px;
  border-left: 1px solid #242424;
  border-top: 1px solid #242424;
  z-index: 1;
  transform-origin: center;
}
.header__favourites:hover::after, .header__smth:hover::after {
  content: "Wish list";
  position: absolute;
  top: calc(100% + 11px);
  white-space: nowrap;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 10px;
  background-color: #131313;
  border-radius: 40px;
  border: 1px solid #242424;
  font-family: firagobook;
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  color: #fff;
}
.header__favourites .length, .header__smth .length {
  width: max-content;
  align-items: center;
  display: flex;
  font-family: firagosemibold;
  color: #fff;
  font-weight: 600;
  margin-left: 8px;
  font-size: 14px;
  line-height: 18px;
}
.header__favourites .length[data-length="0"], .header__smth .length[data-length="0"] {
  display: none;
}
.header__favourites .length::after, .header__smth .length::after {
  content: attr(data-length);
  display: inline;
}
.header__smth:hover::after {
  content: "Compare";
}
.header .header__basket {
  cursor: pointer;
  flex-grow: 1;
  width: 85px;
  height: 100%;
  display: flex;
  padding-right: 2px;
  justify-content: center;
  align-items: center;
  background-color: #00B4FB;
  border: 1px solid #00B4FB;
  border-radius: 0 30px 30px 0;
  position: relative;
  left: 0.5px;
}
.header__navbar__content__withscroll {
  scrollbar-width: thin;
}
.header__navbar__content__withscroll::-webkit-scrollbar {
  width: 2px;
  background-color: transparent;
}
.header__navbar__content__withscroll::-webkit-scrollbar-thumb {
  border-radius: 30px;
  background-color: rgba(19, 19, 19, 0.2);
}
.header__navbar__content__withscroll::-webkit-scrollbar-track {
  margin: 15px 0;
  background-color: transparent;
}

.header__basket::after {
  content: attr(data-qty);
  display: none;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  color: white;
  font-family: firagobold;
  font-weight: 700;
  text-transform: uppercase;
  font-feature-settings: "case" on;
  font-size: 14px;
  line-height: 17px;
}
.header__basket::before {
  content: "";
  position: absolute;
  right: 31px;
  bottom: 22px;
  width: 10px;
  height: 10px;
  display: flex;
  background-color: #FF2E2E;
  border: 2px solid white;
  border-radius: 50%;
  box-sizing: border-box;
  z-index: 1;
  opacity: 0;
}
.header__basket.notempty {
  padding-right: 16px;
}
.header__basket.notempty::after {
  display: inline-block;
}
.header__basket.notempty::before {
  opacity: 1;
  right: 38px;
}

.inner_li2 {
  display: inline-block;
  padding-left: 20px;
}
@media screen and (max-width: 1024px) {
  .inner_li2 {
    pointer-events: none !important;
  }
}

@media screen and (max-width: 1024px) {
  .inner_li.active .inner_li2 {
    pointer-events: all !important;
  }
}

.outer_a2 {
  margin-bottom: 21px;
}

.outer_a {
  margin-bottom: 0;
  pointer-events: none;
  transition: 0.1s ease-out;
}

.loggedinmenu {
  position: fixed;
  z-index: 20;
  border-radius: 30px;
  height: 270px;
  padding: 20px;
  background-color: white;
  opacity: 0;
  width: calc(100% - 40px);
  bottom: -356px;
  box-shadow: 0px 10px 30px rgba(124, 133, 166, 0.16);
  right: 20px;
  transition: opacity 0.4s ease-out, bottom 0s 0.4s linear;
}
@media screen and (min-width: 1025px) {
  .loggedinmenu {
    width: 100%;
    bottom: unset;
    top: -380px;
    right: -20px;
    position: absolute;
    width: 300px;
  }
}
.loggedinmenu.toggled {
  opacity: 1;
  bottom: 86px;
  transition: opacity 0.4s ease-out;
}
@media screen and (min-width: 1025px) {
  .loggedinmenu.toggled {
    top: 67px;
  }
}
.loggedinmenu::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  display: inline-block;
  z-index: -1;
  background-color: white;
}
.loggedinmenu__balance {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 21px;
  border-bottom: 1px solid #E6E6E6;
  margin-bottom: 20px;
}
.loggedinmenu__balance__left {
  display: flex;
  width: max-content;
  align-items: center;
}
.loggedinmenu__balance__left .balancesvg {
  width: 36px;
  height: 36px;
  margin-right: 10px;
}
.loggedinmenu__balance__left .balancesvg::after {
  display: flex;
  width: 100%;
  height: 100%;
  content: url(../img/balance.svg);
}
.loggedinmenu__balance__left__content p {
  font-family: firagosemibold;
  font-size: 12px;
  line-height: 14.4px;
  color: #707477;
  font-weight: 600;
  text-transform: uppercase;
  font-feature-settings: "case" on;
  margin-bottom: 3px;
}
.loggedinmenu__balance__price, .loggedinmenu__balance__price span {
  font-family: firagosemibold;
  color: #131313;
  font-weight: 600;
  text-transform: uppercase;
  font-feature-settings: "case" on;
  font-size: 16px;
  line-height: 19.2px;
}
.loggedinmenu__balance__right {
  display: inline-block;
  font-family: firagobook;
  font-size: 12px;
  line-height: 14.4px;
  color: #00B4FB;
  cursor: pointer;
}
.loggedinmenu__nav {
  display: grid;
  grid-auto-rows: 18px;
  grid-gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 21px;
  border-bottom: 1px solid #E6E6E6;
}
.loggedinmenu__nav__li {
  display: flex;
  width: 100%;
  height: 18px;
  justify-content: space-between;
  align-items: center;
}
.loggedinmenu__nav__li.ordhs::after {
  content: attr(data-orders);
  height: 18px;
  display: flex;
  align-items: center;
  color: #131313;
  padding: 2px 3px;
  border-radius: 4px;
  font-size: 12px;
  line-height: 14.4px;
  font-weight: 600;
  background-color: #F2FBFF;
  font-family: firagosemibold;
}
.loggedinmenu__nav__li.reffs::after {
  content: attr(data-reffs);
  height: 18px;
  display: flex;
  align-items: center;
  color: #131313;
  padding: 2px 3px;
  border-radius: 4px;
  font-size: 12px;
  line-height: 14.4px;
  font-weight: 600;
  background-color: #F2FBFF;
  font-family: firagosemibold;
}
.loggedinmenu__nav__li a {
  color: #131313;
  font-family: firagobook;
  font-size: 14px;
  line-height: 16.8px;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  height: 18px;
  width: max-content;
}
.loggedinmenu__nav__li a::before {
  margin-right: 12px;
  min-width: 18px;
  height: 18px;
  display: inline-block;
}
.loggedinmenu__nav__li a.prof::before {
  content: url(../img/prof.svg);
}
.loggedinmenu__nav__li a.ordhs::before {
  content: url(../img/ordhs.svg);
}
.loggedinmenu__nav__li a.reffs::before {
  content: url(../img/reffs.svg);
}
.loggedinmenu .logout {
  font-family: firagobook;
  color: #000;
  font-weight: 400;
  font-size: 14px;
  line-height: 16.8px;
}
.loggedinmenu.desktop {
  display: none;
}
@media screen and (min-width: 1025px) {
  .loggedinmenu.desktop {
    display: block;
  }
}
.loggedinmenu.desktop::after {
  top: 0;
  right: 50px;
  border-radius: 4px 0 0 0;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (min-width: 1025px) {
  .loggedinmenu.mobile {
    display: none;
  }
}
.loggedinmenu.mobile::after {
  bottom: 0;
  right: 80px;
  border-radius: 0 0 4px 0;
  transform: translateY(50%) rotate(45deg);
}

@media screen and (min-width: 1025px) {
  .only_mobile {
    display: none !important;
  }
}

@media screen and (max-width: 1024px) {
  .only_desktop {
    display: none !important;
  }
}

.footer {
  padding: 10px;
  width: 100%;
  margin-bottom: 80px;
}
@media screen and (min-width: 1025px) {
  .footer {
    margin-bottom: 0;
  }
}
.footer__content {
  border-radius: 30px;
  color: #131313;
  padding: 40px;
  padding-bottom: 30px;
  background: #F2FBFF;
}
@media screen and (min-width: 1025px) {
  .footer__content {
    background: linear-gradient(180deg, #F2FBFF 0%, rgba(242, 251, 255, 0) 59.16%);
    padding: 70px 20px;
    padding-bottom: 60px;
  }
}
.footer__langbar {
  padding-top: 21px;
  position: relative;
  width: max-content;
  display: grid;
  grid-template-columns: auto auto auto;
  grid-gap: 10px;
  align-items: center;
}
.footer__langbar a {
  opacity: 0.3;
  display: flex;
  height: 20px;
  width: 20px;
}
.footer__langbar a.active {
  opacity: 1;
}
.footer__langbar a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer__columns {
  display: grid;
  grid-gap: 30px;
}
@media screen and (min-width: 1025px) {
  .footer__columns {
    display: flex;
    justify-content: space-between;
    grid-gap: 5px;
  }
}
.footer__columns__column__title {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  transition: margin-bottom 0.3s ease-out;
}
@media screen and (min-width: 1025px) {
  .footer__columns__column__title {
    margin-bottom: 30px;
  }
}
.footer__columns__column__title:not(a)::after {
  height: 16px;
  transition: 0.2s ease-out;
  content: url(../img/footerul-arrow.svg);
}
@media screen and (min-width: 1025px) {
  .footer__columns__column__title:not(a)::after {
    display: none;
  }
}
.footer__columns__column ul {
  --mobheight: max-content;
  display: grid;
  grid-gap: 16px;
  height: 0;
  overflow-y: hidden;
  font-family: firagobook;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  transition: height 0.2s ease-out;
}
@media screen and (min-width: 1025px) {
  .footer__columns__column ul {
    height: unset;
  }
}
.footer__columns__column ul li {
  cursor: pointer;
}
.footer__columns__column.toggled h4.footer__columns__column__title {
  margin-bottom: 30px;
  transition: margin-bottom 0.3s ease-in;
}
.footer__columns__column.toggled h4.footer__columns__column__title::after {
  transition: 0.2s ease-in;
  transform: rotate(-180deg);
}
.footer__columns__column.toggled ul {
  height: var(--mobheight);
  transition: height 0.2s ease-in;
}
@media screen and (min-width: 1025px) {
  .footer__columns__column.toggled ul {
    height: unset;
  }
}
.footer__columns__column.logo {
  margin: 0 auto;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .footer__columns__column.logo {
    margin: 0;
  }
}
.footer__columns__column.logo .footer__columns__column__title {
  margin-bottom: 20px;
}

.respomenu {
  z-index: 6;
  position: fixed;
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  align-items: center;
  justify-content: space-between;
  justify-items: center;
  bottom: 10px;
  left: 10px;
  right: 10px;
  width: calc(100% - 20px);
  border-radius: 30px;
  height: 60px;
  background-color: #F2FBFF;
}
@media screen and (min-width: 1025px) {
  .respomenu {
    display: none;
  }
}
.respomenu > div {
  display: flex;
}
.respomenu .header__loginbtn {
  margin-right: 0;
}
.respomenu .header__loginbtn svg {
  margin-right: 0;
}
.respomenu .header__basket {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 85px;
  background-color: #00B4FB;
  border-radius: 0 30px 30px 0;
}
.respomenu .header__basket::after {
  bottom: 17px;
  right: 22px;
}
.respomenu .header__basket::before {
  bottom: 17px;
}
.respomenu .header__navbar__icons.toggled .header__navbar__icons__top {
  top: 3px;
  transform: rotate(45deg);
}
.respomenu .header__navbar__icons.toggled .header__navbar__icons__bottom {
  top: 3px;
  transform: rotate(135deg);
}

body.loaderOn .loader {
  width: 100%;
  height: 100vh;
  opacity: 1;
}

.loader {
  position: fixed;
  z-index: 999;
  width: 0;
  height: 0;
  overflow: hidden;
  top: 0;
  right: 0;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(19, 19, 19, 0.6);
  background-blend-mode: blur(60px);
  transition: opacity 0.1s ease-out;
}
.loader .lds-ripple {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.loader .lds-ripple div {
  position: absolute;
  border: 4px solid #00B4FB;
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.loader .lds-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}
@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}

html {
  --swiper-theme-color: $dark !important;
}

.homemain__slider.fadein .homemain__slide__left__category {
  transition-delay: 100ms;
}
.homemain__slider.fadein .homemain__slide__left__title {
  transition-delay: 200ms;
}
.homemain__slider.fadein .homemain__slide__left__priceNreview {
  transition-delay: 300ms;
}
.homemain__slider.fadein .homemain__slide__left__textbox p {
  transition-delay: 400ms;
}
.homemain__slider.fadein .homemain__slide__left__category,
.homemain__slider.fadein .homemain__slide__left__title,
.homemain__slider.fadein .homemain__slide__left__priceNreview,
.homemain__slider.fadein .homemain__slide__left__textbox p {
  opacity: 1;
  transform: translateY(0);
}

.homemain__slider.fadeinimg .homemain__slide__right__imgbox {
  transform: scale(1);
}

.homemain::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  background-color: #F2FBFF;
  height: 291px;
}
@media screen and (min-width: 1025px) {
  .homemain::after {
    height: 370px;
  }
}
.homemain__slider {
  width: 100%;
  padding-top: 20px;
  overflow: hidden;
  grid-template-columns: 1fr;
  padding-bottom: 222px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .homemain__slider {
    position: static;
    max-height: 605px;
    display: grid;
    padding-bottom: 97px;
    padding-top: 70px;
    grid-template-columns: 60% 1fr;
    grid-gap: 25px;
    transition-duration: 0ms !important;
  }
}
.homemain__swiper {
  width: 100%;
  height: auto;
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  .homemain__swiper {
    height: 427px;
  }
}
.homemain__swiper.left {
  height: 201px;
  position: static;
  overflow: initial;
}
@media screen and (min-width: 1025px) {
  .homemain__swiper.left {
    height: 427px;
    position: relative;
    overflow: hidden;
  }
}
.homemain__swiper.left .homemain__slide {
  position: static;
  overflow: initial;
}
@media screen and (min-width: 1025px) {
  .homemain__swiper.left .homemain__slide {
    position: relative;
    overflow: hidden;
  }
}
.homemain__swiper.left .homemain__slide__left {
  position: static;
  overflow: initial;
}
@media screen and (min-width: 1025px) {
  .homemain__swiper.left .homemain__slide__left {
    position: relative;
    overflow: hidden;
  }
}
.homemain__swiper.left .homemain__wrapper {
  position: static;
  overflow: initial;
}
@media screen and (min-width: 1025px) {
  .homemain__swiper.left .homemain__wrapper {
    position: relative;
    overflow: hidden;
  }
}
.homemain__swiper.right {
  box-sizing: border-box;
  position: relative;
  height: 250px;
  overflow: initial;
}
@media screen and (min-width: 1025px) {
  .homemain__swiper.right {
    padding: 20px;
    overflow: hidden;
    height: 427px;
    max-height: 605px;
  }
}
.homemain__swiper.right::after {
  content: url(../img/homeslider/specialoffer.svg);
  position: absolute;
  z-index: 1;
  display: inline-block;
  transform: translate(0, -50%);
  animation: rot 15s infinite linear;
  top: -60px;
  right: -19px;
}
@media screen and (min-width: 1025px) {
  .homemain__swiper.right::after {
    top: -20px;
    right: 0;
  }
}
.homemain__swiper.right .homemain__wrapper.swiper-wrapper {
  height: 250px;
  transition-delay: 400ms !important;
}
.homemain__swiper.right .homemain__slide {
  height: 250px;
  display: flex;
  transition-delay: 200ms !important;
}
.homemain__swiper.right .homemain__slide.starting {
  transition-delay: 0ms !important;
}
.homemain__swiper.right .homemain__slide__right__imgbox {
  height: 100%;
}
.homemain__wrapper {
  width: 100%;
  display: flex;
  height: 100%;
}
@media screen and (min-width: 1025px) {
  .homemain__wrapper {
    flex-direction: column !important;
  }
}
.homemain__wrapper.animstartpoint .homemain__slide {
  transition: 0s !important;
}
.homemain__slide {
  width: 100%;
  transition-delay: 200ms;
  transition-duration: 0 !important;
  color: #131313;
  display: grid;
}
.homemain__slide__left {
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.homemain__slide__left__category {
  font-family: firagobook;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  text-transform: uppercase;
  font-feature-settings: "case" on;
  transform: translateY(100%);
  transition: 100ms ease;
}
.homemain__slide__left__category__container {
  height: max-content;
  overflow: hidden;
  margin-bottom: 8px;
}
.homemain__slide__left__title {
  max-width: 230px;
  font-family: firagosemibold;
  font-size: 24px;
  line-height: 33.6px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 67px;
  max-height: 67px;
  text-transform: uppercase;
  font-feature-settings: "case" on;
  transform: translateY(100%);
  transition: 200ms ease;
}
@media screen and (min-width: 1025px) {
  .homemain__slide__left__title {
    min-height: 92px;
    max-height: 92px;
    font-size: 34px;
    max-width: 385px;
    line-height: 47.6px;
  }
}
.homemain__slide__left__title__container {
  height: min-content;
  overflow: hidden;
  margin-bottom: 16px;
}
@media screen and (min-width: 1025px) {
  .homemain__slide__left__title__container {
    margin-bottom: 20px;
  }
}
.homemain__slide__left__priceNreview {
  display: grid;
  grid-template-columns: auto auto;
  width: max-content;
  grid-gap: 30px;
  align-items: center;
  transform: translateY(100%);
  transition: 200ms ease;
}
.homemain__slide__left__priceNreview__container {
  margin-bottom: 60px;
  height: max-content;
  overflow: hidden;
}
.homemain__slide__left__price span {
  font-family: firagobold;
  font-weight: 700;
  line-height: 40px;
  text-transform: uppercase;
  font-feature-settings: "case" on;
  font-size: 28px;
}
.homemain__slide__left__price span:last-child {
  font-size: 14px;
}
.homemain__slide__left__reviews {
  display: grid;
  grid-template-columns: auto auto;
  width: max-content;
  grid-gap: 8px;
  align-items: center;
}
.homemain__slide__left__reviews__stars {
  --multix: 0%;
  position: relative;
  width: 92px;
  height: 16px;
  display: flex;
}
.homemain__slide__left__reviews__stars::before {
  content: url(../img/homeslider/stars.svg);
  height: auto;
}
.homemain__slide__left__reviews__stars::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% - (var(--multix) * 20%));
  height: 100%;
  z-index: 1;
  opacity: 0.7;
  background-color: #F2FBFF;
}
.homemain__slide__left__reviews__qty {
  font-family: firagobook;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  width: fit-content;
  display: inline-block;
}
.homemain__slide__left__textboxNlink {
  position: absolute;
  top: 458px;
}
@media screen and (min-width: 1025px) {
  .homemain__slide__left__textboxNlink {
    position: static;
  }
}
.homemain__slide__left__textbox {
  height: max-content;
  overflow: hidden;
  margin-bottom: 48px;
}
.homemain__slide__left__textbox p {
  font-size: 14px;
  line-height: 19.6px;
  font-family: firago;
  color: #343434;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transform: translateY(100%);
  transition: 200ms ease;
}
@media screen and (min-width: 1025px) {
  .homemain__slide__left__textbox p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
.homemain__slide__left__link {
  color: #131313;
  font-family: firagobold;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  text-transform: uppercase;
  font-feature-settings: "case" on;
  padding-left: 20px;
  display: inline-block;
  position: relative;
}
.homemain__slide__left__link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  display: flex;
  border-radius: 50%;
  background-color: #00B4FB;
  border: 2px dashed #00B4FB;
  z-index: -1;
  opacity: 1;
  transition: 0.1s ease-in-out;
}
.homemain__slide__left__link:hover::before {
  background-color: transparent;
  animation: rot_Y50 5s infinite linear;
}
.homemain__slide__right {
  width: 100%;
}
.homemain__slide__right__imgbox {
  display: flex;
  width: 100%;
  height: 100%;
  opacity: 1;
  transform: scale(0.5);
  transition: 0.3s ease-out;
}
.homemain__slide__right__imgbox img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.homemain__navpag {
  position: absolute;
  z-index: 1;
  bottom: 75px;
  right: 20px;
  display: flex;
  align-items: center;
  width: max-content;
}
@media screen and (min-width: 1025px) {
  .homemain__navpag {
    bottom: 0;
    left: 0;
    right: unset;
  }
}
.homemain__navpag__hr {
  display: none;
  width: 1px;
  height: 24px;
  background-color: #E6E6E6;
  border-radius: 2px;
  margin: 0 20px;
}
@media screen and (min-width: 1025px) {
  .homemain__navpag__hr {
    display: inline-block;
  }
}
.homemain__pagination {
  display: flex;
  align-items: center;
  height: 16px;
}
.homemain__navigation {
  display: grid;
  align-items: center;
  grid-template-columns: auto auto;
  grid-gap: 20px;
}
@media screen and (max-width: 1024px) {
  .homemain__navigation {
    display: none !important;
  }
}
.homemain__navigation__left, .homemain__navigation__right {
  cursor: pointer;
  height: 24px;
  display: inline-block;
}
.homemain__navigation__left::before, .homemain__navigation__right::before {
  content: url(../img/homeslider/arrowleft.svg);
}
.homemain__navigation__left.swiper-button-disabled, .homemain__navigation__right.swiper-button-disabled {
  opacity: 0.2;
}
.homemain__navigation__right::before {
  content: url(../img/homeslider/arrowright.svg);
}

@keyframes rot {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rot_Y50 {
  0% {
    transform: translateY(-50%) rotate(0deg);
  }
  100% {
    transform: translateY(-50%) rotate(360deg);
  }
}
.pagbullet {
  --opacity: 0.2;
  --radius: 14px;
  --borderSize: 1px;
  --bgcolor: #131313;
  --radius: 14px;
  cursor: pointer;
  width: var(--radius);
  height: var(--radius);
  border-radius: 50%;
  overflow: hidden;
  opacity: var(--opacity);
  background-color: #fff;
  transform: rotate(-135deg);
  position: relative;
  transition: opacity 0.8s 0.8s linear;
}
.pagbullet::after, .pagbullet::before {
  position: absolute;
  content: "";
  display: flex;
  top: var(--borderSize);
  left: var(--borderSize);
}
.pagbullet::after {
  width: calc(var(--radius) - (var(--borderSize) * 2));
  height: calc(var(--radius) - (var(--borderSize) * 2));
  background-color: #fff;
  box-sizing: border-box;
  z-index: 3;
  border-radius: 50%;
  transition: 0.8s linear;
}
.pagbullet > div {
  position: absolute;
  display: flex;
  width: 8px;
  height: 8px;
  top: 50%;
  left: 50%;
  z-index: 4;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: var(--bgcolor);
}
.pagbullet::before {
  z-index: 2;
  background-color: var(--bgcolor);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  clip-path: polygon(0 100%, 50% 50%, 0 0, 0 0, 50% 50%, 100% 0, 100% 0, 50% 50%, 100% 100%, 100% 100%, 50% 50%, 0 100%);
  animation: gotofullreverse 0.8s linear reverse;
}
.pagbullet.pagbullet__active {
  opacity: 1;
}
.pagbullet.pagbullet__active::before {
  clip-path: polygon(0 100%, 50% 50%, 0 0, 100% 0, 50% 50%, 100% 0, 100% 100%, 50% 50%, 100% 100%, 0 100%, 50% 50%, 0 100%);
  transition: clip-path 0s 0.8s linear;
  animation: gotofull 0.8s 0.8s linear forwards;
}
.pagbullet:not(:last-child) {
  margin-right: 15px;
}

@keyframes gotofull {
  0% {
    clip-path: polygon(0 100%, 50% 50%, 0 0, 0 0, 50% 50%, 100% 0, 100% 0, 50% 50%, 100% 100%, 100% 100%, 50% 50%, 0 100%);
  }
  33% {
    clip-path: polygon(0 100%, 50% 50%, 0 0, 100% 0, 50% 50%, 100% 0, 100% 0, 50% 50%, 100% 100%, 100% 100%, 50% 50%, 0 100%);
  }
  66% {
    clip-path: polygon(0 100%, 50% 50%, 0 0, 100% 0, 50% 50%, 100% 0, 100% 100%, 50% 50%, 100% 100%, 100% 100%, 50% 50%, 0 100%);
  }
  100% {
    clip-path: polygon(0 100%, 50% 50%, 0 0, 100% 0, 50% 50%, 100% 0, 100% 100%, 50% 50%, 100% 100%, 0 100%, 50% 50%, 0 100%);
  }
}
@keyframes gotofullreverse {
  0% {
    clip-path: polygon(0 100%, 50% 50%, 0 0, 0 0, 50% 50%, 100% 0, 100% 0, 50% 50%, 100% 100%, 100% 100%, 50% 50%, 0 100%);
  }
  33% {
    clip-path: polygon(0 100%, 50% 50%, 0 0, 100% 0, 50% 50%, 100% 0, 100% 0, 50% 50%, 100% 100%, 100% 100%, 50% 50%, 0 100%);
  }
  66% {
    clip-path: polygon(0 100%, 50% 50%, 0 0, 100% 0, 50% 50%, 100% 0, 100% 100%, 50% 50%, 100% 100%, 100% 100%, 50% 50%, 0 100%);
  }
  100% {
    clip-path: polygon(0 100%, 50% 50%, 0 0, 100% 0, 50% 50%, 100% 0, 100% 100%, 50% 50%, 100% 100%, 0 100%, 50% 50%, 0 100%);
  }
}
#reviewform input {
  transition: border-color 0.1s ease-out;
}
#reviewform input.invalid.invalid-shown {
  border-color: #FF5E5E;
}

.input-div {
  transition: border-color 0.1s ease-out;
}
.input-div.invalid.invalid-shown {
  border-color: #FF5E5E;
}

.loginmodal, .reviewmodal, .fastordermodal, .messageboxmodal {
  position: fixed;
  z-index: 11;
  width: calc(100% - 20px);
  height: max-content;
  background-color: #fff;
  border-radius: 30px;
  opacity: 0;
  top: 101vh;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  max-height: calc(100vh - 10px);
  transition: 0.25s ease-out;
  padding-bottom: 74px;
}
@media screen and (min-width: 1025px) {
  .loginmodal, .reviewmodal, .fastordermodal, .messageboxmodal {
    max-width: 540px;
    min-height: auto;
    max-height: calc(100vh - 20px);
  }
}
.loginmodal::after, .reviewmodal::after, .fastordermodal::after, .messageboxmodal::after {
  content: "";
  background-image: url(../img/loginmodalbg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right bottom;
  position: absolute;
  height: 332px;
  bottom: 0;
  right: 0;
  width: 100%;
  max-width: 236px;
  z-index: -1;
}
.loginmodal__forms, .reviewmodal__forms, .fastordermodal__forms, .messageboxmodal__forms {
  padding: 0 10px;
  height: 100%;
  display: flex;
}
.loginmodal__X, .reviewmodal__X, .fastordermodal__X, .messageboxmodal__X {
  cursor: pointer;
  position: absolute;
  bottom: 10px;
  height: 54px;
  left: 50%;
  transform: translateX(-50%);
}
.loginmodal__X svg circle, .loginmodal__X svg path, .reviewmodal__X svg circle, .reviewmodal__X svg path, .fastordermodal__X svg circle, .fastordermodal__X svg path, .messageboxmodal__X svg circle, .messageboxmodal__X svg path {
  transition: 0.1s ease;
}
.loginmodal__X:hover svg circle, .reviewmodal__X:hover svg circle, .fastordermodal__X:hover svg circle, .messageboxmodal__X:hover svg circle {
  opacity: 1;
}
.loginmodal__X:hover svg path, .reviewmodal__X:hover svg path, .fastordermodal__X:hover svg path, .messageboxmodal__X:hover svg path {
  fill: #00B4FB;
}
.loginmodal form, .reviewmodal form, .fastordermodal form, .messageboxmodal form {
  width: 100%;
  height: 100%;
  overflow: auto;
  display: flex;
  flex-direction: column;
  padding: 40px 15px;
}
@media screen and (min-width: 1025px) {
  .loginmodal form, .reviewmodal form, .fastordermodal form, .messageboxmodal form {
    padding: 40px 95px;
  }
}
.loginmodal form::-webkit-scrollbar, .reviewmodal form::-webkit-scrollbar, .fastordermodal form::-webkit-scrollbar, .messageboxmodal form::-webkit-scrollbar {
  width: 2px;
  background-color: transparent;
}
.loginmodal form::-webkit-scrollbar-thumb, .reviewmodal form::-webkit-scrollbar-thumb, .fastordermodal form::-webkit-scrollbar-thumb, .messageboxmodal form::-webkit-scrollbar-thumb {
  border-radius: 30px;
  background-color: rgba(19, 19, 19, 0.2);
}
.loginmodal form::-webkit-scrollbar-track, .reviewmodal form::-webkit-scrollbar-track, .fastordermodal form::-webkit-scrollbar-track, .messageboxmodal form::-webkit-scrollbar-track {
  margin: 15px 0;
  background-color: transparent;
}
.loginmodal__bg, .reviewmodal__bg, .fastordermodal__bg, .messageboxmodal__bg {
  z-index: 10;
}
.loginmodal.toggled, .reviewmodal.toggled, .fastordermodal.toggled, .messageboxmodal.toggled {
  opacity: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.loginmodal h5, .reviewmodal h5, .fastordermodal h5, .messageboxmodal h5 {
  font-family: firagosemibold;
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  text-align: center;
  color: #000;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-feature-settings: "case" on;
}
.loginmodal label, .reviewmodal label, .fastordermodal label, .messageboxmodal label {
  margin-bottom: 8px;
  font-family: firagosemibold;
  color: #131313;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  font-feature-settings: "case" on;
  letter-spacing: 0.012em;
  display: block;
}
.loginmodal .input-div, .reviewmodal .input-div, .fastordermodal .input-div, .messageboxmodal .input-div {
  background-color: #fff;
  display: flex;
  width: 100%;
  height: 54px;
  min-height: 54px;
  border-radius: 12px;
  border: 1px solid #E6E6E6;
  align-items: center;
  padding: 0 15px;
  margin-bottom: 20px;
}
.loginmodal .input-div.focused, .reviewmodal .input-div.focused, .fastordermodal .input-div.focused, .messageboxmodal .input-div.focused {
  border-color: #131313;
}
.loginmodal .input-div__icon, .reviewmodal .input-div__icon, .fastordermodal .input-div__icon, .messageboxmodal .input-div__icon {
  width: max-content;
  flex-shrink: 0;
  height: 24px;
}
.loginmodal .input-div__icon::after, .reviewmodal .input-div__icon::after, .fastordermodal .input-div__icon::after, .messageboxmodal .input-div__icon::after {
  content: "";
  width: 1px;
  display: inline-block;
  height: 24px;
  border-radius: 2px;
  background-color: #E6E6E6;
  margin: 0 15px;
}
.loginmodal .input-div input, .reviewmodal .input-div input, .fastordermodal .input-div input, .messageboxmodal .input-div input {
  flex-grow: 1;
  font-family: firagobook;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.012em;
  color: #131313;
  display: flex;
  align-items: center;
}
.loginmodal .input-div.lastinlogin, .reviewmodal .input-div.lastinlogin, .fastordermodal .input-div.lastinlogin, .messageboxmodal .input-div.lastinlogin {
  margin-bottom: 8px;
}
.loginmodal .forgotpass, .reviewmodal .forgotpass, .fastordermodal .forgotpass, .messageboxmodal .forgotpass {
  cursor: pointer;
  display: block;
  text-align: right;
  width: 100%;
  align-self: flex-end;
  max-width: max-content;
  font-family: firagobook;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.012em;
  margin-bottom: 30px;
  text-transform: capitalize;
}
.loginmodal .yellowbtn, .reviewmodal .yellowbtn, .fastordermodal .yellowbtn, .messageboxmodal .yellowbtn {
  margin-bottom: 30px;
}
.loginmodal p, .reviewmodal p, .fastordermodal p, .messageboxmodal p {
  text-align: center;
  margin-bottom: 8px;
  font-family: firagobook;
  font-size: 14px;
  line-height: 20px;
  display: block;
  width: 100%;
  color: #131313;
  letter-spacing: 0.012em;
}
.loginmodal .register, .loginmodal .login, .reviewmodal .register, .reviewmodal .login, .fastordermodal .register, .fastordermodal .login, .messageboxmodal .register, .messageboxmodal .login {
  cursor: pointer;
  text-align: center;
  align-self: center;
  font-size: 14px;
  line-height: 20px;
  color: #131313;
  font-family: firagosemibold;
  text-transform: uppercase;
  font-feature-settings: "case" on;
  letter-spacing: 0.012em;
  margin-bottom: 40px;
}
.loginmodal #recoveryform, .loginmodal #registerform, .reviewmodal #recoveryform, .reviewmodal #registerform, .fastordermodal #recoveryform, .fastordermodal #registerform, .messageboxmodal #recoveryform, .messageboxmodal #registerform {
  display: none;
}
.loginmodal.recovery #loginform, .loginmodal.recovery #registerform, .reviewmodal.recovery #loginform, .reviewmodal.recovery #registerform, .fastordermodal.recovery #loginform, .fastordermodal.recovery #registerform, .messageboxmodal.recovery #loginform, .messageboxmodal.recovery #registerform {
  display: none;
}
.loginmodal.recovery #recoveryform, .reviewmodal.recovery #recoveryform, .fastordermodal.recovery #recoveryform, .messageboxmodal.recovery #recoveryform {
  display: flex;
}
.loginmodal.recovery .recovery__bottom, .reviewmodal.recovery .recovery__bottom, .fastordermodal.recovery .recovery__bottom, .messageboxmodal.recovery .recovery__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.loginmodal.register #loginform, .loginmodal.register #recoveryform, .reviewmodal.register #loginform, .reviewmodal.register #recoveryform, .fastordermodal.register #loginform, .fastordermodal.register #recoveryform, .messageboxmodal.register #loginform, .messageboxmodal.register #recoveryform {
  display: none;
}
.loginmodal.register #registerform, .reviewmodal.register #registerform, .fastordermodal.register #registerform, .messageboxmodal.register #registerform {
  display: flex;
}
.loginmodal .loginwithFBorGmail, .reviewmodal .loginwithFBorGmail, .fastordermodal .loginwithFBorGmail, .messageboxmodal .loginwithFBorGmail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
}
.loginmodal .loginwithFBorGmail a, .reviewmodal .loginwithFBorGmail a, .fastordermodal .loginwithFBorGmail a, .messageboxmodal .loginwithFBorGmail a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  border: 1px solid #E6E6E6;
  text-transform: uppercase;
  font-feature-settings: "case" on;
  font-family: firagosemibold;
  font-size: 14px;
  line-height: 18px;
  color: #000;
  height: 54px;
  background-color: rgba(230, 230, 230, 0.2);
}

.yellowbtn {
  cursor: pointer;
  width: 100%;
  max-width: 350px;
  height: 54px;
  min-height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  background-color: #00B4FB;
  color: white;
  font-family: firagosemibold;
  font-size: 14px;
  line-height: 18px;
  text-transform: uppercase;
  font-feature-settings: "case" on;
}
.yellowbtn.br60 {
  border-radius: 60px;
}

.yellowbtnRounded {
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 60px;
  background-color: #00B4FB;
  color: white;
  font-size: 14px;
  line-height: 19.6px;
  font-weight: 600;
  font-family: firagosemibold;
}

#registerform .input-div.lastinlogin {
  margin-bottom: 20px;
}
#registerform .input-div.lastinlogin:last-of-type {
  margin-bottom: 30px;
}

.messageboxmodal {
  z-index: 999;
}
@media screen and (min-width: 1025px) {
  .messageboxmodal {
    max-width: 540px;
    height: max-content;
  }
}
.messageboxmodal__bg {
  z-index: 998;
}

.messageboxmodal__msgicon {
  text-align: center;
  margin: 50px auto 30px;
  width: 90px;
  border-radius: 50px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(65, 203, 113, 0.1);
}
.messageboxmodal__msgicon .error {
  display: none;
}
.messageboxmodal__msgicon.error {
  background-color: rgba(254, 126, 126, 0.1);
}
.messageboxmodal__msgicon.error .error {
  display: unset;
}
.messageboxmodal__msgicon.error .success {
  display: none;
}

.messagemodal__text {
  text-align: center;
}

.ptitle {
  font-family: firagosemibold;
  color: #131313;
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  position: relative;
  width: max-content;
  text-transform: uppercase;
  font-feature-settings: "case" on;
}
@media screen and (min-width: 1025px) {
  .ptitle {
    font-size: 34px;
    line-height: 44px;
  }
}
.ptitle::after {
  content: "";
  z-index: -1;
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: #00B4FB;
  border-radius: 10px;
}

.homemain__categories {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 30px 0 50px;
  margin-bottom: 50px;
}
@media screen and (min-width: 1025px) {
  .homemain__categories {
    margin-bottom: 90px;
    padding: 30px 0 90px;
  }
}
.homemain__categories::before {
  content: "";
  transform: translateY(-30px);
  position: absolute;
  z-index: -1;
  left: 0;
  width: 100%;
  height: 142px;
  border-radius: 50px;
  background: linear-gradient(97.73deg, #F2FBFF 0%, rgba(242, 251, 255, 0) 49.07%);
}
@media screen and (min-width: 1025px) {
  .homemain__categories::before {
    height: 249px;
    left: 30px;
    width: calc(100% - 60px);
  }
}
.homemain__categories__headings {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
@media screen and (min-width: 1025px) {
  .homemain__categories__headings {
    margin-bottom: 50px;
  }
}
.homemain__categories__headings .viewallprods {
  width: max-content;
  font-family: firagosemibold;
  font-weight: 600;
  text-transform: uppercase;
  font-feature-settings: "case" on;
  font-size: 14px;
  line-height: 18px;
}
.homemain__categories__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
  grid-auto-rows: 120px;
}
@media screen and (min-width: 700px) {
  .homemain__categories__list {
    grid-auto-rows: 250px;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
  }
}
.homemain__categories__item {
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  width: 100%;
  display: flex;
  color: #131313;
}
.homemain__categories__item__imgbox {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 1;
}
.homemain__categories__item__imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.homemain__categories__item__textcontent {
  position: absolute;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  top: 0;
  transition: 0.1s ease;
  right: 0;
  flex-direction: column;
}
.homemain__categories__item__textcontent a {
  text-transform: uppercase;
  font-feature-settings: "case" on;
}
.homemain__categories__item__textcontent p {
  font-family: firagobook;
  font-size: 14px;
  line-height: 18px;
}
@media screen and (min-width: 1025px) {
  .homemain__categories__item__textcontent p {
    margin-bottom: 16px;
  }
}
.homemain__categories__item__title {
  text-transform: uppercase;
  font-feature-settings: "case" on;
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  text-align: center;
  font-family: firagosemibold;
}
@media screen and (min-width: 1025px) {
  .homemain__categories__item__title {
    margin-bottom: 8px;
  }
}
.homemain__categories__item__link {
  display: none;
}
@media screen and (min-width: 1025px) {
  .homemain__categories__item:not(.promotions) .homemain__categories__item__title a {
    pointer-events: none;
  }
  .homemain__categories__item:not(.promotions) .homemain__categories__item__link {
    transform: translateY(200%);
    opacity: 0;
    display: initial;
    transition: 0.5s ease;
  }
  .homemain__categories__item:not(.promotions)::after {
    z-index: 2;
    content: "";
    position: absolute;
    border-radius: 30px;
    background-color: rgba(19, 19, 19, 0.9);
    width: 0;
    height: 0;
    opacity: 0;
    top: 50%;
    left: 50%;
    display: flex;
    transform: translate(-50%, -50%);
    transition: 0.1s ease;
  }
  .homemain__categories__item:not(.promotions):hover {
    color: #fff;
  }
  .homemain__categories__item:not(.promotions):hover .homemain__categories__item__link {
    transform: translateY(0);
    opacity: 1;
  }
  .homemain__categories__item:not(.promotions):hover::after {
    opacity: 1;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
}
.homemain__categories__item.promotions {
  background-color: #F2FBFF;
  display: flex;
  justify-content: center;
  align-items: center;
}
.homemain__categories__item.promotions .homemain__categories__item__title {
  text-align: center;
  color: #131313;
  transition: 0.1s ease;
}
.homemain__categories__item.promotions .homemain__categories__item__title:hover {
  font-size: 1.4em;
}
.homemain__populars {
  margin-bottom: 50px;
}
@media screen and (min-width: 1025px) {
  .homemain__populars {
    margin-bottom: 90px;
  }
}
.homemain__populars__scrollbar {
  display: flex;
  margin-top: 10px;
  height: 3px;
  border-radius: 3px;
  background-color: #e7e7e7;
  margin-right: -1px;
  margin-top: 24px;
}
@media screen and (min-width: 1025px) {
  .homemain__populars__scrollbar {
    margin-top: 30px;
  }
}
.homemain__populars__scrollbar > * {
  background-color: #00B4FB;
  height: 100%;
  border-radius: 3px;
}
.homemain__populars__navigation {
  display: grid;
  width: max-content;
  grid-template-columns: auto auto;
  grid-gap: 20px;
}
.homemain__populars__navigation > div {
  cursor: pointer;
}
.homemain__populars__navigation__left.swiper-button-disabled, .homemain__populars__navigation__right.swiper-button-disabled {
  opacity: 0.2;
}
.homemain__populars__slider {
  width: 100%;
  display: flex;
  height: 237px;
}
@media screen and (min-width: 1025px) {
  .homemain__populars__slider {
    height: 243px;
  }
}
.homemain__populars__swiper {
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.homemain__populars__wrapper {
  height: 204px;
}
@media screen and (min-width: 1025px) {
  .homemain__populars__wrapper {
    height: 210px;
  }
}
.homemain__populars__slide {
  width: 100%;
  border-radius: 30px;
  border: 1px solid #E6E6E6;
  padding: 20px;
  background-color: #fff;
  display: grid;
  grid-template-columns: 140px 1fr;
  grid-gap: 10px;
  background-color: #fff !important;
  align-items: center;
  position: relative;
  transition: 0.4s ease;
}
@media screen and (min-width: 700px) {
  .homemain__populars__slide {
    grid-gap: 35px;
    padding: 20px 15px;
    width: 445px;
  }
}
.homemain__populars__slide::after {
  content: "";
  z-index: -5;
  position: absolute;
  top: 10px;
  height: 100%;
  width: calc(100% - 20px);
  left: 10px;
  filter: blur(30px);
  border-radius: 30px;
  background-color: transparent;
  transition: 0.6s ease;
}
@media screen and (min-width: 1025px) {
  .homemain__populars__slide:hover {
    border-color: transparent;
  }
  .homemain__populars__slide:hover::after {
    background: #EEEEEE;
  }
}
.homemain__populars__slide__imgbox {
  height: 100%;
  width: 100%;
  display: flex;
  align-self: flex-start;
}
@media screen and (min-width: 700px) {
  .homemain__populars__slide__imgbox {
    align-self: center;
  }
}
.homemain__populars__slide__imgbox img {
  height: 120px;
  width: 100%;
  object-fit: contain;
}
@media screen and (min-width: 1025px) {
  .homemain__populars__slide__imgbox img {
    height: 100%;
  }
}
.homemain__populars__slide__textcontent {
  height: 100%;
  color: #131313;
}
.homemain__populars__slide__category {
  font-family: firagobook;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #707477;
  margin-bottom: 8px;
  text-transform: uppercase;
  font-feature-settings: "case" on;
}
.homemain__populars__slide__title {
  text-transform: uppercase;
  font-feature-settings: "case" on;
  overflow: hidden;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 50px;
  margin-bottom: 8px;
  font-family: firagobook;
  font-weight: 500;
  font-size: 18px;
  line-height: 25.2px;
}
.homemain__populars__slide__title a {
  display: block;
}
.homemain__populars__slide__price {
  font-family: firagobook;
  display: grid;
  grid-template-columns: auto auto;
  width: max-content;
  grid-gap: 5px;
  align-items: flex-end;
  font-weight: 400;
  color: #131313;
  font-size: 18px;
  line-height: 26px;
}
@media screen and (min-width: 1025px) {
  .homemain__populars__slide__price {
    margin-bottom: 16px;
  }
}
.homemain__populars__slide__price__discount {
  color: #707477;
  text-decoration: line-through;
}
.homemain__populars__slide__price__current {
  font-family: firagosemibold;
  font-weight: 600;
}
.homemain__populars__slide__price__current span {
  font-weight: 700;
}
.homemain__populars__slide__btns {
  display: flex;
  align-items: center;
  width: max-content;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 1025px) {
  .homemain__populars__slide__btns {
    transform: none;
    position: static;
    width: 100%;
  }
}
.homemain__populars__slide__btns__hr {
  width: 1px;
  height: 24px;
  background-color: #E6E6E6;
  margin: 0 20px;
  display: inline-block;
}
.homemain__sales {
  margin-bottom: 20px;
}
@media screen and (min-width: 1025px) {
  .homemain__sales {
    margin-bottom: 30px;
  }
  .homemain__sales .homemain__categories__headings {
    display: grid;
    grid-template-columns: 1fr 3fr;
    grid-gap: 30px;
  }
}
.homemain__sales__categories {
  z-index: 6;
  position: fixed;
  top: 101vh;
  left: 10px;
  width: calc(100% - 20px);
  border-radius: 30px;
  background-color: #fff;
  overflow: auto;
  opacity: 0;
  height: calc(100vh - 180px);
  transition: 0.25s ease-out;
}
@media screen and (min-width: 1025px) {
  .homemain__sales__categories {
    border-radius: 0;
    padding: 0;
    opacity: 1;
    background: none;
    height: max-content;
    position: static;
    width: 100%;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .homemain__sales__categories::-webkit-scrollbar {
    display: none;
  }
}
.homemain__sales__categories__activetext {
  cursor: pointer;
  display: grid;
  grid-template-columns: auto auto;
  width: max-content;
  grid-gap: 4px;
  text-transform: capitalize;
  align-items: center;
}
.homemain__sales__categories__activetext::before {
  content: attr(data-value);
  font-family: firagosemibold;
  color: #131313;
  font-size: 14px;
  line-height: 18px;
}
.homemain__sales__categories__activetext::after {
  content: url(../img/footerul-arrow-black.svg);
  transform: translateY(1px);
}
@media screen and (min-width: 1025px) {
  .homemain__sales__categories__activetext {
    display: none;
  }
}
.homemain__sales__categories__list {
  font-family: firagobook;
  font-size: 14px;
  font-weight: normal;
  display: grid;
  grid-gap: 16px;
  color: #131313;
  height: 100%;
  padding: 0px 40px;
  overflow: auto;
  margin-right: 10px;
}
@media screen and (min-width: 1025px) {
  .homemain__sales__categories__list {
    width: max-content !important;
    display: flex;
    overflow: hidden;
    width: 100%;
    grid-gap: unset;
    padding: 0;
  }
}
.homemain__sales__categories__list li {
  cursor: pointer;
  font-family: firagobook;
  font-weight: normal;
  color: #131313;
  white-space: nowrap;
}
@media screen and (min-width: 1025px) {
  .homemain__sales__categories__list li:not(:last-child) {
    margin-right: 20px;
  }
}
.homemain__sales__categories__list li.active {
  font-family: firagosemibold;
  font-weight: 600;
}
.homemain__sales__categories.toggled {
  top: 90px;
  opacity: 1;
}
.homemain__sales__categories.toggled .homemain__sales__categories__list {
  padding: 50px 40px;
}
.homemain__sales__content {
  display: grid;
  align-items: stretch;
  width: 100%;
  grid-gap: 20px;
}
@media screen and (min-width: 1025px) {
  .homemain__sales__content {
    grid-template-columns: 1fr 3fr;
    grid-gap: 30px;
    height: 950px;
  }
}
.homemain__sales__coverbox {
  width: 100%;
  overflow: hidden;
  height: 300px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .homemain__sales__coverbox {
    height: 930px;
  }
}
.homemain__sales__coverbox img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  object-fit: cover;
}
.homemain__sales__coverbox::after {
  content: "";
  position: absolute;
  bottom: -100%;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #F2FBFF;
  border-radius: 30px;
  z-index: 1;
  transition: 0.7s bottom ease-out;
}
.homemain__sales__products {
  position: relative;
  display: grid;
  overflow: hidden;
  width: 100%;
  grid-gap: 10px;
  grid-auto-rows: 450px;
  max-height: 1830px;
}
@media screen and (min-width: 1025px) {
  .homemain__sales__products {
    max-height: 950px;
    grid-gap: 30px;
    grid-template-columns: repeat(3, 1fr);
  }
}
.homemain__sales__products::after {
  content: "";
  position: absolute;
  top: -100%;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #F2FBFF;
  border-radius: 30px;
  z-index: 1;
  transition: 0.7s top ease-out;
}
@media screen and (min-width: 1025px) {
  .homemain__sales__products::after {
    height: 930px;
  }
}
.homemain__sales__item {
  background-color: #fff;
  border: 1px solid #E6E6E6;
  width: 100%;
  border-radius: 30px;
  padding: 10px;
  height: 100%;
  position: relative;
  display: flex;
  height: 450px;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  transition: 0.1s ease;
}
.homemain__sales__item::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: -1;
  height: 100%;
  opacity: 0;
  width: calc(100% - 20px);
  background: #EEEEEE;
  filter: blur(30px);
  transition: 0.5s ease;
}
.homemain__sales__item__imgbox {
  width: 250px;
  margin-bottom: 11px;
  height: 250px;
  display: flex;
  padding: 10px;
}
.homemain__sales__item__imgbox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.homemain__sales__item__textcontent {
  width: 100%;
}
.homemain__sales__item__category {
  text-transform: uppercase;
  font-feature-settings: "case" on;
  width: 100%;
  color: #707477;
  font-weight: 400;
  padding: 0 10px;
  font-family: firagobook;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 8px;
}
.homemain__sales__item__title {
  padding: 0 10px;
  text-transform: uppercase;
  font-feature-settings: "case" on;
  font-family: firagobook;
  font-weight: 400;
  font-size: 18px;
  line-height: 25.2px;
  margin-bottom: 16px;
  overflow: hidden;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.homemain__sales__item__hoverbtns {
  position: absolute;
  top: 20px;
  left: 20px;
}
.homemain__sales__item__hoverbtns > div {
  cursor: pointer;
  width: 36px;
  height: 36px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #E6E6E6;
  border-radius: 50%;
  transition: opacity 0.1s ease-in, transform 0.5s ease;
  transform: translateY(0);
}
@media screen and (min-width: 1025px) {
  .homemain__sales__item__hoverbtns > div {
    opacity: 0;
    transform: translateY(-105px);
  }
}
.homemain__sales__item__hoverbtns .addtofav {
  margin-right: 0;
  margin-bottom: 5px;
}
.homemain__sales__item__bagNprice {
  cursor: pointer;
  height: 54px;
  border-radius: 30px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  border: 1px solid #E6E6E6;
  transition: 0.1s ease;
}
.homemain__sales__item__prices {
  display: grid;
  grid-template-columns: auto auto;
  width: max-content;
  grid-gap: 5px;
  align-items: flex-end;
}
.homemain__sales__item__price {
  font-family: firagosemibold;
  font-weight: 600;
  font-size: 12px;
}
@media screen and (min-width: 380px) {
  .homemain__sales__item__price {
    font-size: 14px;
  }
}
.homemain__sales__item__price.discount {
  font-family: firagosemibold;
  opacity: 0.3;
  text-decoration: line-through;
}
.homemain__sales__item__price.current {
  font-family: firagosemibold;
}
.homemain__sales__item__price span {
  font-family: firagosemibold;
}
@media screen and (min-width: 1025px) {
  .homemain__sales__item:hover {
    border-color: transparent;
  }
  .homemain__sales__item:hover::after {
    opacity: 1;
  }
  .homemain__sales__item:hover .homemain__sales__item__hoverbtns > div {
    transition: opacity 0.5s ease-out, transform 0.1s ease-out;
    opacity: 1;
    transform: translateY(0);
  }
  .homemain__sales__item:hover .homemain__sales__item__bagNprice {
    border-color: #131313;
  }
}
.homemain__sales__item.hidden {
  display: none;
}
.homemain__sales__item__saving {
  width: max-content;
  color: #fff;
  background-color: #00B4FB;
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 12px;
  font-family: firagosemibold;
  text-transform: uppercase;
  font-feature-settings: "case" on;
  font-weight: 600;
}
.homemain__sales__item__saving:not(.static) {
  position: absolute;
  top: 20px;
  right: 20px;
}
.homemain__sales__item__saving span:last-child {
  font-size: 9px;
  font-family: firagobook;
}
.homemain__sales.effect .homemain__sales__coverbox::after {
  bottom: 0;
}
.homemain__sales.effect .homemain__sales__products::after {
  top: 0;
}
.homemain__interestedInDiscounts {
  height: 346px;
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #F2FBFF;
  border-radius: 30px;
  overflow: hidden;
  color: #131313;
  margin-bottom: 50px;
}
@media screen and (min-width: 1025px) {
  .homemain__interestedInDiscounts {
    margin-bottom: 90px;
    height: 298px;
  }
}
.homemain__interestedInDiscounts__title {
  text-align: center;
  font-family: firagosemibold;
  font-size: 24px;
  line-height: 33.6px;
  margin-bottom: 16px;
  font-weight: 600;
}
@media screen and (min-width: 1025px) {
  .homemain__interestedInDiscounts__title {
    font-size: 34px;
    line-height: 47.6px;
  }
}
.homemain__interestedInDiscounts__text {
  text-align: center;
  font-family: firago;
  margin-bottom: 48px;
  color: #343434;
  font-weight: 400;
  font-size: 14px;
  line-height: 19.6px;
}
@media screen and (min-width: 1025px) {
  .homemain__interestedInDiscounts__text {
    max-width: 730px;
  }
}
.homemain__interestedInDiscounts > a {
  z-index: 1;
}
.homemain__newproducts {
  margin-bottom: 58px;
}
@media screen and (min-width: 1025px) {
  .homemain__newproducts {
    margin-bottom: 98px;
  }
}
.homemain__newproducts__list {
  margin-bottom: 48px;
  display: grid;
  grid-auto-rows: 450px;
  grid-gap: 10px;
}
@media screen and (min-width: 1025px) {
  .homemain__newproducts__list {
    margin-bottom: 88px;
    grid-gap: 30px;
    grid-template-columns: repeat(4, 1fr);
  }
}
.homemain__newproducts__list li:nth-child(n+5) {
  display: none;
}
@media screen and (min-width: 1025px) {
  .homemain__newproducts__list li:nth-child(n+5) {
    display: flex;
  }
}
@media screen and (min-width: 1025px) {
  .homemain__newproducts__list li:nth-child(n+10) {
    display: none;
  }
}
.homemain__newproducts__viewall {
  margin: 0 auto;
  width: max-content;
}

.addtobag {
  display: flex;
  align-items: center;
  height: 24px;
  cursor: pointer;
}
.addtobag svg {
  height: 24px;
  margin-right: 8px;
}
.addtobag svg path {
  fill: #131313;
}
.addtobag span {
  font-family: firagosemibold;
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  transform: translateY(1px);
  color: #131313;
  text-transform: uppercase;
  font-feature-settings: "case" on;
}
.addtobag.added svg path {
  fill: #00B4FB;
}

.addtofav, .addtocompare {
  cursor: pointer;
}
.addtofav svg path, .addtocompare svg path {
  fill: #131313;
}
.addtofav.added, .addtocompare.added {
  background-color: #00B4FB;
}
.addtofav.added svg path, .addtocompare.added svg path {
  fill: white;
}

.addtofav {
  margin-right: 10px;
}

.pagenav {
  height: 116px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 1025px) {
  .pagenav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 134px;
  }
}
.pagenav::after {
  content: "";
  position: absolute;
  height: 206px;
  top: 0;
  right: 0;
  width: 100%;
  background-color: #F2FBFF;
  z-index: -2;
}
@media screen and (min-width: 1025px) {
  .pagenav::after {
    height: 224px;
  }
}
.pagenav .ptitle {
  margin-bottom: 16px;
}
@media screen and (min-width: 1025px) {
  .pagenav .ptitle {
    margin-bottom: 0;
  }
}
.pagenav__nav {
  width: max-content;
  display: flex;
  align-items: center;
  color: #999999;
  font-family: firagobook;
  font-size: 14px;
  line-height: 18px;
  flex-wrap: wrap;
  max-width: 100%;
}
.pagenav__nav a {
  display: flex;
  align-items: center;
}
.pagenav__nav a:not(:last-of-type) {
  margin-right: 10px;
}
.pagenav__nav a:not(:last-of-type)::after {
  content: url(../img/pagenavarrow.svg);
  margin-left: 10px;
  height: 16px;
  width: 16px;
  transform: rotate(-90deg);
}

@media screen and (min-width: 1025px) {
  .productsmain {
    position: static;
  }
}
.productsmain__mobilebtns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
  align-items: center;
  height: 64px;
  background-color: #fff;
  padding-top: 10px;
  padding-bottom: 10px;
  position: sticky;
  top: 14px;
  z-index: 4;
  margin-top: 0;
  transition: 0.1s ease-out;
}
@media screen and (min-width: 1025px) {
  .productsmain__mobilebtns {
    display: none;
  }
}
.productsmain__mobilebtns.scrolled {
  padding-right: 64px;
}
.productsmain__mobilebtns__filterbtn, .productsmain__mobilebtns__sortbtn {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  font-family: firagosemibold;
  font-size: 12px;
  line-height: 16px;
  text-transform: capitalize;
}
.productsmain__mobilebtns__filterbtn {
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #131313;
  color: #fff;
}
.productsmain__mobilebtns__filterbtn::after {
  content: url(../img/filtericon.svg);
}
.productsmain__filters {
  z-index: 6;
  position: fixed;
  top: 101vh;
  left: 10px;
  width: calc(100% - 20px);
  border-radius: 30px;
  background-color: #fff;
  overflow: auto;
  opacity: 0;
  height: calc(100vh - 180px);
  transition: 0.25s ease-out;
}
@media screen and (min-width: 1025px) {
  .productsmain__filters {
    opacity: 1;
    position: static;
    width: 100%;
    height: unset;
    overflow: visible;
    padding: 30px 10px;
    padding: 50px 0;
  }
}
.productsmain__filters__content {
  display: grid;
  width: 100%;
  grid-gap: 20px;
  padding: 0 20px;
}
@media screen and (min-width: 1025px) {
  .productsmain__filters__content {
    padding: 0;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 30px;
    top: 0;
    left: 0;
    right: 0;
    transition: padding 0.4s ease-out, top 0.4s ease-out, background-color 0.4s ease-out;
    background-color: #fff;
    border-bottom: 1px solid transparent;
  }
  .productsmain__filters__content.scrolled {
    top: 80px;
    border-color: rgba(230, 230, 230, 0.2);
    position: fixed;
    z-index: 1;
    padding: 10px 20px;
  }
}
.productsmain__filters__content select {
  display: none;
}
.productsmain__filters__X {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  width: 100%;
  margin: 0 auto;
  max-width: 275px;
  border-radius: 30px;
  background-color: #131313;
  color: #fff;
  font-family: firagosemibold;
  font-size: 14px;
  line-height: 18px;
  text-transform: uppercase;
  font-feature-settings: "case" on;
  margin-top: 56px;
  font-weight: 600;
}
@media screen and (min-width: 1025px) {
  .productsmain__filters__X {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .productsmain__filters.toggled {
    top: 90px;
    opacity: 1;
  }
  .productsmain__filters.toggled .productsmain__filters__content {
    padding: 50px 40px;
  }
}
.productsmain__filter {
  height: 68px;
  overflow: visible;
  color: #131313;
}
.productsmain__filter__label {
  text-transform: uppercase;
  font-feature-settings: "case" on;
  font-weight: 600;
  margin-bottom: 8px;
  font-family: firagosemibold;
  font-size: 12px;
  line-height: 16.8px;
  letter-spacing: 0.012em;
}
.productsmain__filter__niceselect {
  --height: max-content;
  height: 44px;
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 10px 14px 10px;
  border-radius: 10px;
  border: 1px solid #E6E6E6;
  position: relative;
  z-index: 4;
  background-color: #fff;
}
.productsmain__filter__niceselect__activetext:not(.mobsort) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 44px;
  font-family: firagosemibold;
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  cursor: pointer;
  color: #343434;
  letter-spacing: 0.012em;
}
.productsmain__filter__niceselect__activetext:not(.mobsort)::before {
  text-transform: capitalize;
  content: attr(data-value);
  display: inline-block;
}
.productsmain__filter__niceselect__activetext:not(.mobsort) .svgbox {
  height: 24px;
  width: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid #E6E6E6;
}
.productsmain__filter__niceselect__activetext:not(.mobsort) .svgbox svg {
  width: 16px;
  height: 16px;
  transform-origin: center;
  transform: rotate(0deg);
  transition: 0.1s transform ease;
}
.productsmain__filter__niceselect__activetext:not(.mobsort) .svgbox svg path {
  fill: #E6E6E6;
  transition: 0.1s fill ease;
}
.productsmain__filter__niceselect.multiple .productsmain__filter__niceul li {
  display: flex;
  align-items: center;
}
.productsmain__filter__niceselect.multiple .productsmain__filter__niceul li::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 4px;
  margin-right: 8px;
  border: 1px solid #E6E6E6;
  background-color: transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.productsmain__filter__niceselect.multiple .productsmain__filter__niceul li.active::before {
  border-color: #00B4FB;
  background-color: #00B4FB;
}
.productsmain__filter__niceselect.toggled {
  height: var(--height);
  z-index: 5;
  transition: 0.1s ease;
}
.productsmain__filter__niceselect.toggled .productsmain__filter__niceselect__activetext .svgbox svg {
  transform: rotate(180deg);
}
.productsmain__filter__niceselect.toggled .productsmain__filter__niceselect__activetext .svgbox svg path {
  fill: #131313;
  transition: 0.1s fill ease;
}
.productsmain__filter__niceselect.toggled .productsmain__filter__niceul li::after {
  background-color: #E6E6E6;
}
.productsmain__filter__niceul {
  display: grid;
  grid-gap: 21px;
  padding-top: 11px;
  width: 100%;
}
.productsmain__filter__niceul li {
  display: flex;
  cursor: pointer;
  letter-spacing: 0.012em;
  font-family: firagobook;
  text-transform: capitalize;
  color: #343434;
  font-size: 12px;
  line-height: 16px;
  position: relative;
}
.productsmain__filter__niceul li::after {
  content: "";
  position: absolute;
  top: -11px;
  height: 1px;
  width: 100%;
  left: 0;
  background-color: transparent;
  transition: 0.1s ease;
}
.productsmain__filter.sort .productsmain__filter__niceselect {
  border-color: #00B4FB;
}
.productsmain__filter.sort .svgbox {
  border-color: #00B4FB;
}
.productsmain__filter.sort .svgbox svg path {
  fill: #00B4FB;
}
.productsmain__items {
  padding-bottom: 30px;
  display: grid;
  width: 100%;
  grid-gap: 10px;
}
@media screen and (min-width: 1025px) {
  .productsmain__items {
    padding-bottom: 50px;
    grid-gap: 30px;
    grid-template-columns: repeat(4, 1fr);
  }
}
.productsmain__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  margin-bottom: 20px;
}
@media screen and (min-width: 1025px) {
  .productsmain__pagination {
    margin-bottom: 80px;
  }
}
.productsmain__pagination__left, .productsmain__pagination__right, .productsmain__pagination li {
  height: 100%;
  width: 44px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 70px;
  background-color: rgba(0, 180, 251, 0.1);
  transition: 0.1s ease;
  font-weight: 600;
  font-family: firagosemibold;
}
.productsmain__pagination__left:hover, .productsmain__pagination__right:hover, .productsmain__pagination li:hover {
  background-color: #00B4FB;
}
.productsmain__pagination__right svg {
  transform: rotate(-180deg);
}
.productsmain__pagination__ul {
  height: 100%;
  margin: 0 10px;
  display: flex;
  align-items: center;
}
.productsmain__pagination__ul li {
  font-size: 14px;
  line-height: 18px;
  color: #131313;
}
.productsmain__pagination__ul li.active {
  background-color: #00B4FB;
}
.productsmain__pagination__ul li:not(:last-child) {
  margin-right: 10px;
}

@keyframes gorightthenback {
  0% {
    transform: scale(1);
  }
  50% {
    opacity: 0;
    transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes gorightthenbackReverse {
  0% {
    transform: scale(1);
  }
  50% {
    opacity: 0;
    transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
#filterformbtn {
  display: none;
}

.productsmain__mobilebtns__sortbtn {
  --height: max-content;
  height: 44px;
}
.productsmain__mobilebtns__sortbtn select {
  display: none;
}
.productsmain__mobilebtns__sortbtn.toggled {
  height: var(--height);
}
.productsmain__mobilebtns__sortbtn .productsmain__filter__niceselect {
  background: none;
  border: none;
  background-color: #00B4FB;
  color: #131313;
}
.productsmain__mobilebtns__sortbtn .productsmain__filter__niceselect__activetext {
  font-size: 12px;
  line-height: 16px;
  font-family: firagosemibold;
  font-weight: 700;
}
.productsmain__mobilebtns__sortbtn .svgbox {
  border: none !important;
}
.productsmain__mobilebtns__sortbtn .svgbox svg path {
  fill: initial !important;
}
.productsmain__mobilebtns__sortbtn__container {
  position: relative;
  height: 44px;
  overflow: visible;
}
.productsmain__mobilebtns__sortbtn .productsmain__filter__niceul li::after {
  background-color: rgba(19, 19, 19, 0.2) !important;
}

.productinmain {
  position: relative;
  padding-top: 144px;
  display: grid;
  width: 100%;
  margin-bottom: 50px;
}
@media screen and (min-width: 1025px) {
  .productinmain {
    position: static;
    padding-top: 40px;
    grid-template-columns: minmax(528px, 1fr) 1fr;
    grid-gap: 30px;
  }
}
.productinmain__gallery {
  width: 100%;
  overflow: hidden;
  margin-bottom: 30px;
}
@media screen and (min-width: 1025px) {
  .productinmain__gallery {
    margin-bottom: 0;
  }
}
.productinmain__gallery__mainswiper {
  margin-bottom: 20px;
  width: 100%;
  padding: 30px;
  height: 290px;
}
@media screen and (min-width: 1025px) {
  .productinmain__gallery__mainswiper {
    height: 528px;
    max-height: calc(100vh - 240px);
  }
}
.productinmain__gallery__mainswiper__wrapper {
  max-height: calc(100vh - 240px);
  height: 100%;
  transition-delay: 400ms !important;
}
.productinmain__gallery__mainswiper__slide {
  max-height: calc(100vh - 240px);
  height: 100%;
  padding: 30px;
  transform: scale(0.5);
  transition: transform 0.4s;
}
@media screen and (min-width: 1025px) {
  .productinmain__gallery__mainswiper__slide {
    padding: 40px 76px;
  }
}
.productinmain__gallery__mainswiper__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.productinmain__gallery__mainswiper.scaling .productinmain__gallery__mainswiper__slide {
  transform: scale(1);
}
.productinmain__gallery__thumbswiper {
  height: 50px;
  width: 100%;
  overflow: hidden;
}
.productinmain__gallery__thumbswiper__wrapper {
  height: 100%;
}
.productinmain__gallery__thumbswiper__slide {
  opacity: 0.3;
  height: 100%;
  cursor: pointer;
  transition: opacity 0.4s ease-out;
}
.productinmain__gallery__thumbswiper__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.productinmain__gallery__thumbswiper__slide.swiper-slide-thumb-active {
  opacity: 1;
}
.productinmain__info__headings {
  position: absolute;
  top: 0;
}
@media screen and (min-width: 1025px) {
  .productinmain__info__headings {
    position: static;
    margin-bottom: 30px;
  }
}
.productinmain__info__headings__catNcode {
  display: grid;
  grid-template-columns: auto auto;
  width: max-content;
  align-items: center;
  grid-gap: 20px;
  font-family: firagobook;
  color: #707477;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 16px;
}
@media screen and (min-width: 1025px) {
  .productinmain__info__headings__catNcode {
    margin-bottom: 13px;
  }
}
.productinmain__info__headings__category {
  text-transform: uppercase;
  font-feature-settings: "case" on;
}
.productinmain__info__headings__code {
  opacity: 0.6;
}
.productinmain__info__headings h1 {
  color: #131313;
  overflow: hidden;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 68px;
  max-height: 68px;
  font-family: firagobook;
  font-size: 24px;
  line-height: 33.6px;
  font-weight: 400 !important;
  text-transform: uppercase;
  font-feature-settings: "case" on;
}
@media screen and (min-width: 1025px) {
  .productinmain__info__headings h1 {
    min-height: 96px;
    max-height: 96px;
    font-size: 34px;
    line-height: 47.6px;
  }
}
.productinmain__info__priceinfo {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 30px;
}
@media screen and (min-width: 1025px) {
  .productinmain__info__priceinfo {
    display: grid;
    grid-template-columns: auto auto auto;
    width: max-content;
    flex-direction: unset;
    grid-gap: 20px;
  }
}
.productinmain__info__priceinfo > * {
  flex-grow: 0;
}
.productinmain__info__priceinfo .homemain__sales__item__saving {
  margin-bottom: 20px;
}
@media screen and (min-width: 1025px) {
  .productinmain__info__priceinfo .homemain__sales__item__saving {
    margin-bottom: 0;
  }
}
.productinmain__info__priceinfo .homemain__populars__slide__price {
  margin-bottom: 16px;
  font-size: 24px;
  line-height: 34px;
}
@media screen and (min-width: 1025px) {
  .productinmain__info__priceinfo .homemain__populars__slide__price {
    margin-bottom: 0;
  }
}
.productinmain__info__priceinfo .homemain__populars__slide__price__discount {
  font-family: firagobook;
}
.productinmain__info__priceinfo .homemain__populars__slide__price__discount span {
  font-family: inherit;
}
.productinmain__info__priceinfo .homemain__populars__slide__price__current {
  font-family: firagosemibold;
}
.productinmain__info__priceinfo .homemain__populars__slide__price__current span {
  font-family: inherit;
}
.productinmain__info__priceinfo__stockinfo {
  font-family: firagobook;
  color: #FF5E5E;
  font-size: 14px;
  line-height: 20px;
}
.productinmain__info__radio {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}
.productinmain__info__radio input {
  display: none;
}
.productinmain__info__radio label:not(:last-of-type) {
  margin-right: 10px;
}
.productinmain__info__radio.milligrams label {
  border-radius: 60px;
  overflow: hidden;
}
.productinmain__info__radio.milligrams .activecheckbox {
  cursor: pointer;
  height: 44px;
  font-family: firagosemibold;
  font-size: 14px;
  line-height: 20px;
  color: #707477;
  border: 1px solid #E6E6E6;
  border-radius: 60px;
  display: flex;
  width: max-content;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  transition: 0.3s ease-out;
}
.productinmain__info__radio.milligrams input:checked + .activecheckbox {
  background-color: #00B4FB;
  border-color: #00B4FB;
  color: white;
}
.productinmain__info__radio.colors label {
  border-radius: 50%;
  overflow: hidden;
}
.productinmain__info__radio.colors .activecheckbox {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  position: relative;
}
.productinmain__info__radio.colors .activecheckbox::after {
  content: "";
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  width: 0;
  height: 0;
  opacity: 0;
  border-radius: 50%;
  border: 2px solid #fff;
  background-color: #00B4FB;
  transition: 0.3s ease-out;
}
.productinmain__info__radio.colors input:checked + .activecheckbox::after {
  width: 12px;
  height: 12px;
  opacity: 1;
}
.productinmain__info__details {
  margin-bottom: 30px;
}
@media screen and (min-width: 1025px) {
  .productinmain__info__details {
    margin-bottom: 50px;
  }
}
.productinmain__info__details__tabs {
  margin-bottom: 16px;
  font-family: firagosemibold;
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  font-feature-settings: "case" on;
  letter-spacing: 0.012em;
  font-weight: 600;
}
.productinmain__info__details__tab {
  color: #707477;
  display: inline-block;
  cursor: pointer;
  font-family: firagosemibold;
  transition: 0.2s ease-out;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  /* or 140% */
  letter-spacing: 0.012em;
}
.productinmain__info__details__tab.description {
  margin-right: 20px;
}
.productinmain__info__details__tab.active {
  color: #131313;
}
.productinmain__info__details__contents {
  display: flex;
  width: 100%;
  overflow: hidden;
}
.productinmain__info__details__content {
  width: 100%;
  flex-shrink: 0;
  overflow: hidden;
  transform: translateX(0);
  transition: opacity 0.2s ease-out, transform 0.2s ease-out, max-height 0s 0.2s linear;
}
.productinmain__info__details__content.description {
  opacity: 1;
  font-family: firagobook;
  color: #343434;
  font-size: 14px;
  line-height: 19.6px;
  font-weight: 400;
  transition-delay: 0.2s;
  max-height: 100vh;
}
.productinmain__info__details__content.ingredients {
  opacity: 0;
  max-height: 0;
}
.productinmain__info__details__content.ingredients ul {
  --height: max-content;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
  height: 170px;
  transition: height 0.4s ease-out;
  overflow: hidden;
  margin-bottom: 16px;
}
@media screen and (min-width: 1025px) {
  .productinmain__info__details__content.ingredients ul {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px 30px;
    height: 150px;
  }
}
.productinmain__info__details__content.ingredients ul.toggled {
  height: var(--height);
}
.productinmain__info__details__content.ingredients ul.toggled + .ingredients__toggler .default {
  display: none;
}
.productinmain__info__details__content.ingredients ul.toggled + .ingredients__toggler .toggled {
  display: inline;
}
.productinmain__info__details__content.ingredients li {
  display: grid;
  grid-template-columns: 1fr 63px;
  grid-gap: 10px;
  align-items: center;
  width: 100%;
  height: 50px;
  border: 1px solid #E6E6E6;
  background-color: #fff;
  border-radius: 30px;
  padding: 5px 10px;
}
@media screen and (min-width: 1025px) {
  .productinmain__info__details__content.ingredients li {
    height: 70px;
    padding: 10px;
  }
}
.productinmain__info__details__content.ingredients li .ingredients__list__item__imgbox {
  width: 100%;
  display: flex;
  height: 30px;
}
@media screen and (min-width: 1025px) {
  .productinmain__info__details__content.ingredients li .ingredients__list__item__imgbox {
    height: 50px;
  }
}
.productinmain__info__details__content.ingredients li .ingredients__list__item__imgbox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.productinmain__info__details__content.ingredients li h6 {
  font-weight: 400;
  font-family: firagobook;
  font-size: 14px;
  line-height: 20px;
  color: #000;
  text-transform: capitalize;
}
.productinmain__info__details__content.ingredients .ingredients__toggler {
  color: #00B4FB;
  font-family: firagosemibold;
  text-transform: uppercase;
  font-feature-settings: "case" on;
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  cursor: pointer;
  margin: 0 auto;
  width: max-content;
}
.productinmain__info__details__content.ingredients .ingredients__toggler .dark {
  color: #131313;
}
.productinmain__info__details__content.ingredients .ingredients__toggler span {
  font-family: inherit;
}
.productinmain__info__details__content.ingredients .ingredients__toggler .toggled {
  display: none;
}
.productinmain__info__details__content.switched {
  transform: translateX(-100%);
}
.productinmain__info__details__content.switched.description {
  opacity: 0;
  max-height: 0;
  transition-delay: 0s;
}
.productinmain__info__details__content.switched.ingredients {
  opacity: 1;
  max-height: 100vh;
  transition-delay: 0.2s;
}
.productinmain__info__formAndOtherBtns {
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media screen and (min-width: 1025px) {
  .productinmain__info__formAndOtherBtns {
    flex-direction: row;
    grid-gap: 10px;
  }
}
.productinmain__info__basketform {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
@media screen and (min-width: 1025px) {
  .productinmain__info__basketform {
    margin-bottom: 0;
  }
}
.productinmain__info__basketform__quantity {
  overflow: hidden;
  display: flex;
  align-items: center;
  height: 54px;
  border-radius: 60px;
  border: 1px solid #E6E6E6;
  width: 126px;
  padding: 0 20px;
  justify-content: center;
}
.productinmain__info__basketform__quantity__minusbtn, .productinmain__info__basketform__quantity__plusbtn {
  width: max-content;
  cursor: pointer;
}
.productinmain__info__basketform__quantity input {
  width: 1px;
  flex-grow: 1;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-family: firagosemibold;
  font-size: 14px;
  line-height: 18px;
  color: #131313;
}
.productinmain__info__basketform .addtobag {
  border: 1px solid #E6E6E6;
  height: 54px;
  border-radius: 60px;
  padding: 0 30px;
  overflow: hidden;
}
.productinmain__info__otherbtns {
  display: flex;
  grid-gap: 10px;
  margin-bottom: 20px;
}
@media screen and (min-width: 1025px) {
  .productinmain__info__otherbtns {
    margin-bottom: 0;
  }
}
.productinmain__info__otherbtns .addtofav {
  margin-right: 0;
}
.productinmain__info__otherbtns .addtocompare, .productinmain__info__otherbtns .addtofav {
  border-radius: 50%;
  width: 54px;
  height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  position: relative;
  transition: 0.4s ease-out;
}
.productinmain__info__otherbtns .addtocompare::after, .productinmain__info__otherbtns .addtofav::after {
  border: 2px dashed #E6E6E6;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: -1;
  box-sizing: border-box;
  background-color: transparent;
  animation: none;
}
.productinmain__info__otherbtns .addtocompare:hover::after, .productinmain__info__otherbtns .addtofav:hover::after {
  border-color: #00B4FB;
  animation: rot 3s linear;
}
.productinmain__info__otherbtns .addtocompare.added, .productinmain__info__otherbtns .addtofav.added {
  border-color: #00B4FB;
  background-color: #00B4FB;
}

.homemain__sales__item__addtofav.added, .homemain__sales__item__addtocompare.added {
  opacity: 1 !important;
  transform: translateY(0) !important;
  background-color: #00B4FB !important;
  border-color: #00B4FB !important;
}

.productin .homemain__interestedInDiscounts {
  height: unset !important;
}
.productin .homemain__interestedInDiscounts__title {
  margin-bottom: 50px !important;
}
.productin .homemain__interestedInDiscounts__additionalinfo {
  display: grid;
  width: 100%;
  grid-gap: 20px;
  justify-items: center;
  margin-bottom: 50px;
  align-items: center;
  align-content: center;
  width: max-content;
}
@media screen and (min-width: 1025px) {
  .productin .homemain__interestedInDiscounts__additionalinfo {
    display: grid;
    grid-template-columns: repeat(3, auto);
    grid-gap: 50px;
  }
}
.productin .homemain__interestedInDiscounts__additionalinfo > div, .productin .homemain__interestedInDiscounts__additionalinfo a {
  display: flex;
  align-items: center;
  width: max-content;
  color: #131313;
  white-space: nowrap;
  font-family: firagobook;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
@media screen and (min-width: 1025px) {
  .productin .homemain__interestedInDiscounts__additionalinfo > div, .productin .homemain__interestedInDiscounts__additionalinfo a {
    font-size: 18px;
  }
}
.productin .homemain__interestedInDiscounts__additionalinfo > div::before, .productin .homemain__interestedInDiscounts__additionalinfo a::before {
  margin-right: 12px;
  height: 24px;
}
.productin .homemain__interestedInDiscounts__additionalinfo > div span, .productin .homemain__interestedInDiscounts__additionalinfo a span {
  font-weight: 600;
  font-family: firagosemibold;
}
.productin .homemain__interestedInDiscounts__additionalinfo > div span:not(:last-of-type), .productin .homemain__interestedInDiscounts__additionalinfo a span:not(:last-of-type) {
  margin: 0 5px;
}
.productin .homemain__interestedInDiscounts__additionalinfo__truck::before {
  content: url(../img/truck.svg);
}
.productin .homemain__interestedInDiscounts__additionalinfo__pricetag {
  padding: 0 51px;
}
@media screen and (min-width: 1025px) {
  .productin .homemain__interestedInDiscounts__additionalinfo__pricetag {
    border-left: 1px solid rgba(19, 19, 19, 0.1);
    border-right: 1px solid rgba(19, 19, 19, 0.1);
    height: 34px;
  }
}
.productin .homemain__interestedInDiscounts__additionalinfo__pricetag::before {
  content: url(../img/pricetag.svg);
}
.productin .homemain__interestedInDiscounts__additionalinfo__returnpolicy::before {
  content: url(../img/returnpolicy.svg);
}
.productin .homemain__interestedInDiscounts__contactus {
  text-transform: uppercase;
  font-feature-settings: "case" on;
  font-weight: 400;
  font-family: firagobook;
  font-size: 16px;
  line-height: 22.4px;
}
.productin .homemain__interestedInDiscounts__contactus a {
  font-weight: 600;
  font-family: firagosemibold;
}
.productin__similars, .productin__alsointerested {
  margin-bottom: 30px;
  overflow: hidden;
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .productin__similars, .productin__alsointerested {
    margin-bottom: 70px;
  }
}
.productin__similars__slider, .productin__alsointerested__slider {
  padding-bottom: 20px;
}
.productin__reviews {
  position: relative;
  height: 251px;
  overflow: hidden;
  width: 100%;
  display: flex;
  padding-bottom: 30px;
  margin-bottom: 65px;
}
@media screen and (min-width: 1025px) {
  .productin__reviews {
    height: 115px;
  }
}
.productin__reviews::before {
  z-index: 1;
  content: "";
  display: flex;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #E6E6E6;
  border-radius: 2px;
}
.productin__reviews__list {
  display: grid;
  width: 100%;
  padding-top: 20px;
  grid-gap: 15px;
  justify-items: center;
  justify-content: center;
  padding-bottom: 30px;
}
@media screen and (min-width: 1025px) {
  .productin__reviews__list {
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 5px;
  }
}
.productin__reviews::after {
  content: url(../img/union.svg);
  position: absolute;
  height: 30px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.productin__reviews .homemain__slide__left__reviews__stars {
  height: 24px;
  width: 132px;
}
.productin__reviews .homemain__slide__left__reviews__stars::before {
  width: calc(100% - (var(--multix) * 20%));
  content: url(../img/stars24.svg);
}
.productin__reviews .homemain__slide__left__reviews__stars::after {
  background-color: #fff;
}
.productin__reviewcomments {
  margin-bottom: 68px;
}
@media screen and (min-width: 1025px) {
  .productin__reviewcomments {
    margin-bottom: 108px;
  }
}
.productin__reviewcomments .homemain__slide__left__reviews__stars::after {
  background-color: #F2FBFF;
}
.productin__reviewcomments__list {
  display: grid;
  width: 100%;
  grid-gap: 55px;
  margin-bottom: 68px;
}
@media screen and (min-width: 1025px) {
  .productin__reviewcomments__list {
    grid-gap: 75px;
  }
}
.productin__reviewcomments__list__item {
  display: flex;
  background-color: #F2FBFF;
  border-radius: 30px;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px;
  padding-top: 0;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .productin__reviewcomments__list__item {
    padding: 30px 14%;
    padding-top: 0;
  }
}
.productin__reviewcomments__list__item__imgbox {
  border: 3px solid #fff;
  width: 76px;
  transform: translateY(-50%);
  height: 76px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 16px;
}
.productin__reviewcomments__list__item__imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.productin__reviewcomments__list__item__rest {
  margin-top: -38px;
}
.productin__reviewcomments__list__item__X {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: #fff;
  transition: 0.1s ease-out;
}
@media screen and (min-width: 1025px) {
  .productin__reviewcomments__list__item__X {
    top: 20px;
    right: 20px;
  }
}
.productin__reviewcomments__list__item__X svg path {
  fill: #FE7E7E;
  transition: 0.1s ease-out;
}
.productin__reviewcomments__list__item__X:hover {
  background-color: #FE7E7E;
}
.productin__reviewcomments__list__item__X:hover svg path {
  fill: #fff;
}
.productin__reviewcomments__list__item > * {
  text-align: center;
}
.productin__reviewcomments__list__item h6 {
  font-size: 18px;
  line-height: 20px;
  font-family: firagosemibold;
  font-weight: 600;
  color: #000;
  margin-bottom: 8px;
}
.productin__reviewcomments__list__item .homemain__slide__left__reviews {
  grid-template-columns: auto !important;
  justify-content: center;
  display: inline-block;
  margin-bottom: 16px;
}
.productin__reviewcomments__list__item__commentbox {
  font-family: firagobook;
  color: #343434;
  font-size: 14px;
  line-height: 19.6px;
  font-weight: 400;
}
.productin__reviewcomments__list[data-order="1"] .productin__reviewcomments__list__item:nth-of-type(n + 6) {
  display: none;
}
.productin__reviewcomments__list[data-order="2"] .productin__reviewcomments__list__item:nth-of-type(n + 11) {
  display: none;
}
.productin__reviewcomments__list[data-order="3"] .productin__reviewcomments__list__item:nth-of-type(n + 16) {
  display: none;
}
.productin__reviewcomments__list[data-order="4"] .productin__reviewcomments__list__item:nth-of-type(n + 21) {
  display: none;
}
.productin__reviewcomments__list[data-order="5"] .productin__reviewcomments__list__item:nth-of-type(n + 26) {
  display: none;
}
.productin__reviewcomments__list[data-order="6"] .productin__reviewcomments__list__item:nth-of-type(n + 31) {
  display: none;
}
.productin__reviewcomments__list[data-order="7"] .productin__reviewcomments__list__item:nth-of-type(n + 36) {
  display: none;
}
.productin__reviewcomments__list[data-order="8"] .productin__reviewcomments__list__item:nth-of-type(n + 41) {
  display: none;
}
.productin__reviewcomments__list[data-order="9"] .productin__reviewcomments__list__item:nth-of-type(n + 46) {
  display: none;
}
.productin__reviewcomments__list[data-order="10"] .productin__reviewcomments__list__item:nth-of-type(n + 51) {
  display: none;
}
.productin__reviewcomments__list[data-order="11"] .productin__reviewcomments__list__item:nth-of-type(n + 56) {
  display: none;
}
.productin__reviewcomments__list[data-order="12"] .productin__reviewcomments__list__item:nth-of-type(n + 61) {
  display: none;
}
.productin__reviewcomments__list[data-order="13"] .productin__reviewcomments__list__item:nth-of-type(n + 66) {
  display: none;
}
.productin__reviewcomments__list[data-order="14"] .productin__reviewcomments__list__item:nth-of-type(n + 71) {
  display: none;
}
.productin__reviewcomments__list[data-order="15"] .productin__reviewcomments__list__item:nth-of-type(n + 76) {
  display: none;
}
.productin__reviewcomments__list[data-order="16"] .productin__reviewcomments__list__item:nth-of-type(n + 81) {
  display: none;
}
.productin__reviewcomments__list[data-order="17"] .productin__reviewcomments__list__item:nth-of-type(n + 86) {
  display: none;
}
.productin__reviewcomments__list[data-order="18"] .productin__reviewcomments__list__item:nth-of-type(n + 91) {
  display: none;
}
.productin__reviewcomments__list[data-order="19"] .productin__reviewcomments__list__item:nth-of-type(n + 96) {
  display: none;
}
.productin__reviewcomments__list[data-order="20"] .productin__reviewcomments__list__item:nth-of-type(n + 101) {
  display: none;
}
.productin__reviewcomments__list[data-order="21"] .productin__reviewcomments__list__item:nth-of-type(n + 106) {
  display: none;
}
.productin__reviewcomments__list[data-order="22"] .productin__reviewcomments__list__item:nth-of-type(n + 111) {
  display: none;
}
.productin__reviewcomments__list[data-order="23"] .productin__reviewcomments__list__item:nth-of-type(n + 116) {
  display: none;
}
.productin__reviewcomments__list[data-order="24"] .productin__reviewcomments__list__item:nth-of-type(n + 121) {
  display: none;
}
.productin__reviewcomments__list[data-order="25"] .productin__reviewcomments__list__item:nth-of-type(n + 126) {
  display: none;
}
.productin__reviewcomments__list[data-order="26"] .productin__reviewcomments__list__item:nth-of-type(n + 131) {
  display: none;
}
.productin__reviewcomments__list[data-order="27"] .productin__reviewcomments__list__item:nth-of-type(n + 136) {
  display: none;
}
.productin__reviewcomments__list[data-order="28"] .productin__reviewcomments__list__item:nth-of-type(n + 141) {
  display: none;
}
.productin__reviewcomments__list[data-order="29"] .productin__reviewcomments__list__item:nth-of-type(n + 146) {
  display: none;
}
.productin__reviewcomments__list[data-order="30"] .productin__reviewcomments__list__item:nth-of-type(n + 151) {
  display: none;
}
.productin__reviewcomments__list[data-order="31"] .productin__reviewcomments__list__item:nth-of-type(n + 156) {
  display: none;
}
.productin__reviewcomments__list[data-order="32"] .productin__reviewcomments__list__item:nth-of-type(n + 161) {
  display: none;
}
.productin__reviewcomments__list[data-order="33"] .productin__reviewcomments__list__item:nth-of-type(n + 166) {
  display: none;
}
.productin__reviewcomments__list[data-order="34"] .productin__reviewcomments__list__item:nth-of-type(n + 171) {
  display: none;
}
.productin__reviewcomments__list[data-order="35"] .productin__reviewcomments__list__item:nth-of-type(n + 176) {
  display: none;
}
.productin__reviewcomments__list[data-order="36"] .productin__reviewcomments__list__item:nth-of-type(n + 181) {
  display: none;
}
.productin__reviewcomments__list[data-order="37"] .productin__reviewcomments__list__item:nth-of-type(n + 186) {
  display: none;
}
.productin__reviewcomments__list[data-order="38"] .productin__reviewcomments__list__item:nth-of-type(n + 191) {
  display: none;
}
.productin__reviewcomments__list[data-order="39"] .productin__reviewcomments__list__item:nth-of-type(n + 196) {
  display: none;
}
.productin__reviewcomments__list[data-order="40"] .productin__reviewcomments__list__item:nth-of-type(n + 201) {
  display: none;
}
.productin__reviewcomments__list[data-order="41"] .productin__reviewcomments__list__item:nth-of-type(n + 206) {
  display: none;
}
.productin__reviewcomments__list[data-order="42"] .productin__reviewcomments__list__item:nth-of-type(n + 211) {
  display: none;
}
.productin__reviewcomments__list[data-order="43"] .productin__reviewcomments__list__item:nth-of-type(n + 216) {
  display: none;
}
.productin__reviewcomments__list[data-order="44"] .productin__reviewcomments__list__item:nth-of-type(n + 221) {
  display: none;
}
.productin__reviewcomments__list[data-order="45"] .productin__reviewcomments__list__item:nth-of-type(n + 226) {
  display: none;
}
.productin__reviewcomments__list[data-order="46"] .productin__reviewcomments__list__item:nth-of-type(n + 231) {
  display: none;
}
.productin__reviewcomments__list[data-order="47"] .productin__reviewcomments__list__item:nth-of-type(n + 236) {
  display: none;
}
.productin__reviewcomments__list[data-order="48"] .productin__reviewcomments__list__item:nth-of-type(n + 241) {
  display: none;
}
.productin__reviewcomments__list[data-order="49"] .productin__reviewcomments__list__item:nth-of-type(n + 246) {
  display: none;
}
.productin__reviewcomments__list[data-order="50"] .productin__reviewcomments__list__item:nth-of-type(n + 251) {
  display: none;
}
.productin__reviewcomments__menu {
  display: flex;
  align-items: center;
  width: max-content;
  margin: 0 auto;
  gap: 30px;
}
.productin__reviewcomments__menu .loadmorecommentsbtn span {
  font-family: firagosemibold !important;
}
.productin__reviewcomments__menu .or {
  font-family: Roboto;
  color: #707477;
  font-style: normal;
  font-size: 12px;
  line-height: 14px;
}
.productin__reviewcomments__menu__writeareview {
  cursor: pointer;
  text-transform: uppercase;
  font-feature-settings: "case" on;
  font-family: firagobold;
  color: #131313;
  font-size: 14px;
  line-height: 18px;
  text-decoration: underline;
}

.addinbasketbtn .flip {
  display: flex;
  align-items: center;
  height: calc( 100% - 2px );
  background-color: #fff;
}
.addinbasketbtn .flip span {
  --offsetwidth: max-content;
  overflow: hidden;
  display: flex;
  white-space: nowrap;
  width: var(--offsetwidth);
}
.addinbasketbtn .flip .remove {
  width: 0;
  color: #00B4FB;
}
.addinbasketbtn.added .add {
  color: #00B4FB;
}
.addinbasketbtn.added svg path {
  fill: #00B4FB;
}

.homemain__slide__left__link {
  cursor: pointer;
}

.loadmorecommentsbtn .toggled {
  display: none;
}
.loadmorecommentsbtn.toggled .default {
  display: none;
}
.loadmorecommentsbtn.toggled .toggled {
  display: inline;
}

@keyframes flipping {
  0% {
    transform: rotateX(0turn);
    opacity: 1;
  }
  50% {
    transform: rotateX(0.25turn);
    opacity: 0;
  }
  100% {
    transform: rotateX(0turn);
    opacity: 1;
  }
}
@keyframes flippingBack {
  0% {
    transform: rotateX(0turn);
    opacity: 1;
  }
  50% {
    transform: rotateX(0.25turn);
    opacity: 0;
  }
  100% {
    transform: rotateX(0turn);
    opacity: 1;
  }
}
.reviewmodal, .fastordermodal {
  max-width: 640px;
}
.reviewmodal__form, .fastordermodal__form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.reviewmodal::after, .fastordermodal::after {
  content: none !important;
  display: none !important;
}
.reviewmodal h5, .fastordermodal h5 {
  margin-bottom: 30px !important;
}
@media screen and (min-width: 1025px) {
  .reviewmodal__names, .fastordermodal__names {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 29px;
  }
}
.reviewmodal input, .fastordermodal input {
  flex: 1;
  width: 1px;
}
.reviewmodal input.hidden, .fastordermodal input.hidden {
  display: none !important;
}
.reviewmodal input, .reviewmodal textarea, .fastordermodal input, .fastordermodal textarea {
  background-color: #fff;
  display: flex !important;
  width: 100%;
  height: 54px;
  min-height: 54px;
  border-radius: 12px;
  border: 1px solid #E6E6E6;
  align-items: center;
  padding: 0 15px;
  margin-bottom: 20px;
  font-family: firagobook;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 16.8px;
  /* or 140% */
  letter-spacing: 0.012em;
}
.reviewmodal input:focus, .reviewmodal input:active, .reviewmodal textarea:focus, .reviewmodal textarea:active, .fastordermodal input:focus, .fastordermodal input:active, .fastordermodal textarea:focus, .fastordermodal textarea:active {
  border-color: #131313 !important;
}
.reviewmodal input.invalid.invalid-shown, .reviewmodal textarea.invalid.invalid-shown, .fastordermodal input.invalid.invalid-shown, .fastordermodal textarea.invalid.invalid-shown {
  border-color: #DC6848;
}
.reviewmodal textarea, .fastordermodal textarea {
  height: 100px;
  padding: 10px;
  overflow-y: scroll;
  margin-bottom: 30px;
  scrollbar-width: none !important;
}
.reviewmodal textarea::-webkit-scrollbar, .fastordermodal textarea::-webkit-scrollbar {
  display: none !important;
}
.reviewmodal__names, .fastordermodal__names {
  width: 100%;
}
.reviewmodal__writereview, .fastordermodal__writereview {
  margin-bottom: 30px;
}
.reviewmodal__writereview__stars, .fastordermodal__writereview__stars {
  --multix: 1;
  height: 24px;
  width: 200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}
.reviewmodal__writereview__stars__parent, .fastordermodal__writereview__stars__parent {
  height: 24px;
  width: 200px;
  margin: 0 auto;
  position: relative;
}
.reviewmodal__writereview__stars .star, .fastordermodal__writereview__stars .star {
  cursor: pointer;
  height: 100%;
}
.reviewmodal__writereview__stars .star::after, .fastordermodal__writereview__stars .star::after {
  content: url(../img/reviewmodalstar.svg);
  height: 100%;
  display: inline-block;
}
.reviewmodal__writereview__stars:not(.hidden)::after, .fastordermodal__writereview__stars:not(.hidden)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% - (var(--multix) * 20%));
  height: 100%;
  z-index: 1;
  transition: width 0.05s ease;
  opacity: 0.7;
  background-color: #fff;
}
.reviewmodal__writereview__stars.hidden, .fastordermodal__writereview__stars.hidden {
  position: absolute;
  z-index: 2;
  opacity: 0;
}

@media screen and (min-width: 1025px) {
  .fastordermodal {
    height: unset !important;
    max-height: 732px;
  }
}
.fastordermodal input {
  flex: unset;
}
.fastordermodal form label {
  align-self: flex-start;
}

.basketmodal {
  position: fixed;
  top: 20px;
  left: 20px;
  height: calc( 100vh - 40px );
  z-index: 16;
  overflow: hidden;
  transform: translateX(100vw);
  transition: 0.4s ease-out;
  width: calc( 100% - 40px );
}
@media screen and (min-width: 1025px) {
  .basketmodal {
    width: calc( 100% - 20px );
    top: 10px;
    left: 10px;
    height: calc( 100vh - 20px );
  }
}
.basketmodal.toggled {
  transform: translateX(0);
}
.basketmodal__X {
  cursor: pointer;
}
.basketmodal__bg {
  position: fixed;
  right: 0;
  top: 0;
  width: 0;
  height: 0;
  background-color: rgba(19, 19, 19, 0.6);
  z-index: 15;
  transition: 0s 0.4s linear;
}
.basketmodal__bg.toggled {
  transition: none;
  width: 100%;
  height: 100vh;
}
.basketmodal__mains {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 100%);
  height: 100%;
  transform: translateX(100vw);
}
.basketmodal__mains > div {
  top: 0;
  border-radius: 30px;
  display: flex;
  overflow: hidden;
  opacity: 1;
  width: 100%;
  height: 100%;
  background-color: #fff;
  padding: 20px;
  position: absolute;
  right: 0;
  transition: right 0.4s ease-out, opacity 0.1s ease-out;
}
@media screen and (min-width: 1025px) {
  .basketmodal__mains > div {
    padding: 40px 0 20px 50px;
  }
}
.basketmodal__mains > div.ordering {
  transform: translateX(0);
}
.basketmodal__mains.basket .basketmodal__mains__basket {
  opacity: 1 !important;
  right: 100vw;
  transition: right 0.4s ease-out, opacity 0.4s ease-out;
}
.basketmodal__mains.basket .basketmodal__mains__basket > * {
  opacity: 1;
  transition: opacity 0.8s ease-out;
}
.basketmodal__mains.basket .basketmodal__mains__basket__list__li {
  opacity: 1;
  transform: translateY(0);
}
.basketmodal__mains.basket .basketmodal__mains__basket__list__li__fixer:nth-child(1) .basketmodal__mains__basket__list__li {
  transition-delay: calc(1 * 40ms + 400ms);
}
.basketmodal__mains.basket .basketmodal__mains__basket__list__li__fixer:nth-child(2) .basketmodal__mains__basket__list__li {
  transition-delay: calc(2 * 40ms + 400ms);
}
.basketmodal__mains.basket .basketmodal__mains__basket__list__li__fixer:nth-child(3) .basketmodal__mains__basket__list__li {
  transition-delay: calc(3 * 40ms + 400ms);
}
.basketmodal__mains.basket .basketmodal__mains__basket__list__li__fixer:nth-child(4) .basketmodal__mains__basket__list__li {
  transition-delay: calc(4 * 40ms + 400ms);
}
.basketmodal__mains.basket .basketmodal__mains__basket__list__li__fixer:nth-child(5) .basketmodal__mains__basket__list__li {
  transition-delay: calc(5 * 40ms + 400ms);
}
.basketmodal__mains.basket .basketmodal__mains__basket__list__li__fixer:nth-child(6) .basketmodal__mains__basket__list__li {
  transition-delay: calc(6 * 40ms + 400ms);
}
.basketmodal__mains.basket .basketmodal__mains__basket__list__li__fixer:nth-child(7) .basketmodal__mains__basket__list__li {
  transition-delay: calc(7 * 40ms + 400ms);
}
.basketmodal__mains.basket .basketmodal__mains__basket__list__li__fixer:nth-child(8) .basketmodal__mains__basket__list__li {
  transition-delay: calc(8 * 40ms + 400ms);
}
.basketmodal__mains.basket .basketmodal__mains__basket__list__li__fixer:nth-child(9) .basketmodal__mains__basket__list__li {
  transition-delay: calc(9 * 40ms + 400ms);
}
.basketmodal__mains.basket .basketmodal__mains__basket__list__li__fixer:nth-child(10) .basketmodal__mains__basket__list__li {
  transition-delay: calc(10 * 40ms + 400ms);
}
.basketmodal__mains.basket .basketmodal__mains__basket__list__li__fixer:nth-child(11) .basketmodal__mains__basket__list__li {
  transition-delay: calc(11 * 40ms + 400ms);
}
.basketmodal__mains.basket .basketmodal__mains__basket__list__li__fixer:nth-child(12) .basketmodal__mains__basket__list__li {
  transition-delay: calc(12 * 40ms + 400ms);
}
.basketmodal__mains.basket .basketmodal__mains__basket__list__li__fixer:nth-child(13) .basketmodal__mains__basket__list__li {
  transition-delay: calc(13 * 40ms + 400ms);
}
.basketmodal__mains.basket .basketmodal__mains__basket__list__li__fixer:nth-child(14) .basketmodal__mains__basket__list__li {
  transition-delay: calc(14 * 40ms + 400ms);
}
.basketmodal__mains.basket .basketmodal__mains__basket__list__li__fixer:nth-child(15) .basketmodal__mains__basket__list__li {
  transition-delay: calc(15 * 40ms + 400ms);
}
.basketmodal__mains.basket .basketmodal__mains__basket__list__li__fixer:nth-child(16) .basketmodal__mains__basket__list__li {
  transition-delay: calc(16 * 40ms + 400ms);
}
.basketmodal__mains.basket .basketmodal__mains__basket__list__li__fixer:nth-child(17) .basketmodal__mains__basket__list__li {
  transition-delay: calc(17 * 40ms + 400ms);
}
.basketmodal__mains.basket .basketmodal__mains__basket__list__li__fixer:nth-child(18) .basketmodal__mains__basket__list__li {
  transition-delay: calc(18 * 40ms + 400ms);
}
.basketmodal__mains.basket .basketmodal__mains__basket__list__li__fixer:nth-child(19) .basketmodal__mains__basket__list__li {
  transition-delay: calc(19 * 40ms + 400ms);
}
.basketmodal__mains.basket .basketmodal__mains__basket__list__li__fixer:nth-child(20) .basketmodal__mains__basket__list__li {
  transition-delay: calc(20 * 40ms + 400ms);
}
.basketmodal__mains.basket .basketmodal__mains__basket__list__li__fixer:nth-child(21) .basketmodal__mains__basket__list__li {
  transition-delay: calc(21 * 40ms + 400ms);
}
.basketmodal__mains.basket .basketmodal__mains__basket__list__li__fixer:nth-child(22) .basketmodal__mains__basket__list__li {
  transition-delay: calc(22 * 40ms + 400ms);
}
.basketmodal__mains.basket .basketmodal__mains__basket__list__li__fixer:nth-child(23) .basketmodal__mains__basket__list__li {
  transition-delay: calc(23 * 40ms + 400ms);
}
.basketmodal__mains.basket .basketmodal__mains__basket__list__li__fixer:nth-child(24) .basketmodal__mains__basket__list__li {
  transition-delay: calc(24 * 40ms + 400ms);
}
.basketmodal__mains.basket .basketmodal__mains__basket__list__li__fixer:nth-child(25) .basketmodal__mains__basket__list__li {
  transition-delay: calc(25 * 40ms + 400ms);
}
.basketmodal__mains.basket .basketmodal__mains__basket__list__li__fixer:nth-child(26) .basketmodal__mains__basket__list__li {
  transition-delay: calc(26 * 40ms + 400ms);
}
.basketmodal__mains.basket .basketmodal__mains__basket__list__li__fixer:nth-child(27) .basketmodal__mains__basket__list__li {
  transition-delay: calc(27 * 40ms + 400ms);
}
.basketmodal__mains.basket .basketmodal__mains__basket__list__li__fixer:nth-child(28) .basketmodal__mains__basket__list__li {
  transition-delay: calc(28 * 40ms + 400ms);
}
.basketmodal__mains.basket .basketmodal__mains__basket__list__li__fixer:nth-child(29) .basketmodal__mains__basket__list__li {
  transition-delay: calc(29 * 40ms + 400ms);
}
.basketmodal__mains.basket .basketmodal__mains__basket__list__li__fixer:nth-child(30) .basketmodal__mains__basket__list__li {
  transition-delay: calc(30 * 40ms + 400ms);
}
.basketmodal__mains.basket .basketmodal__mains__basket__list__li__fixer:nth-child(31) .basketmodal__mains__basket__list__li {
  transition-delay: calc(31 * 40ms + 400ms);
}
.basketmodal__mains.basket .basketmodal__mains__basket__list__li__fixer:nth-child(32) .basketmodal__mains__basket__list__li {
  transition-delay: calc(32 * 40ms + 400ms);
}
.basketmodal__mains.basket .basketmodal__mains__basket__list__li__fixer:nth-child(33) .basketmodal__mains__basket__list__li {
  transition-delay: calc(33 * 40ms + 400ms);
}
.basketmodal__mains.basket .basketmodal__mains__basket__list__li__fixer:nth-child(34) .basketmodal__mains__basket__list__li {
  transition-delay: calc(34 * 40ms + 400ms);
}
.basketmodal__mains.basket .basketmodal__mains__basket__list__li__fixer:nth-child(35) .basketmodal__mains__basket__list__li {
  transition-delay: calc(35 * 40ms + 400ms);
}
.basketmodal__mains.basket .basketmodal__mains__basket__list__li__fixer:nth-child(36) .basketmodal__mains__basket__list__li {
  transition-delay: calc(36 * 40ms + 400ms);
}
.basketmodal__mains.basket .basketmodal__mains__basket__list__li__fixer:nth-child(37) .basketmodal__mains__basket__list__li {
  transition-delay: calc(37 * 40ms + 400ms);
}
.basketmodal__mains.basket .basketmodal__mains__basket__list__li__fixer:nth-child(38) .basketmodal__mains__basket__list__li {
  transition-delay: calc(38 * 40ms + 400ms);
}
.basketmodal__mains.basket .basketmodal__mains__basket__list__li__fixer:nth-child(39) .basketmodal__mains__basket__list__li {
  transition-delay: calc(39 * 40ms + 400ms);
}
.basketmodal__mains.basket .basketmodal__mains__basket__list__li__fixer:nth-child(40) .basketmodal__mains__basket__list__li {
  transition-delay: calc(40 * 40ms + 400ms);
}
.basketmodal__mains.basket .basketmodal__mains__basket__list__li__fixer:nth-child(41) .basketmodal__mains__basket__list__li {
  transition-delay: calc(41 * 40ms + 400ms);
}
.basketmodal__mains.basket .basketmodal__mains__basket__list__li__fixer:nth-child(42) .basketmodal__mains__basket__list__li {
  transition-delay: calc(42 * 40ms + 400ms);
}
.basketmodal__mains.basket .basketmodal__mains__basket__list__li__fixer:nth-child(43) .basketmodal__mains__basket__list__li {
  transition-delay: calc(43 * 40ms + 400ms);
}
.basketmodal__mains.basket .basketmodal__mains__basket__list__li__fixer:nth-child(44) .basketmodal__mains__basket__list__li {
  transition-delay: calc(44 * 40ms + 400ms);
}
.basketmodal__mains.basket .basketmodal__mains__basket__list__li__fixer:nth-child(45) .basketmodal__mains__basket__list__li {
  transition-delay: calc(45 * 40ms + 400ms);
}
.basketmodal__mains.basket .basketmodal__mains__basket__list__li__fixer:nth-child(46) .basketmodal__mains__basket__list__li {
  transition-delay: calc(46 * 40ms + 400ms);
}
.basketmodal__mains.basket .basketmodal__mains__basket__list__li__fixer:nth-child(47) .basketmodal__mains__basket__list__li {
  transition-delay: calc(47 * 40ms + 400ms);
}
.basketmodal__mains.basket .basketmodal__mains__basket__list__li__fixer:nth-child(48) .basketmodal__mains__basket__list__li {
  transition-delay: calc(48 * 40ms + 400ms);
}
.basketmodal__mains.basket .basketmodal__mains__basket__list__li__fixer:nth-child(49) .basketmodal__mains__basket__list__li {
  transition-delay: calc(49 * 40ms + 400ms);
}
.basketmodal__mains.basket .basketmodal__mains__basket__list__li__fixer:nth-child(50) .basketmodal__mains__basket__list__li {
  transition-delay: calc(50 * 40ms + 400ms);
}
.basketmodal__mains.ordering .basketmodal__mains__basket {
  opacity: 1 !important;
  right: 100vw;
  transition: right 0.4s ease-out, opacity 0.4s ease-out;
}
.basketmodal__mains.ordering .basketmodal__mains__basket > * {
  opacity: 0;
  transition: opacity 0.01s ease-in;
}
.basketmodal__mains.ordering .basketmodal__mains__ordering {
  opacity: 1 !important;
  right: 100vw;
  transition: right 0.4s ease-out, opacity 0.4s ease-out;
}
.basketmodal__mains.ordering .basketmodal__mains__ordering > * {
  opacity: 1;
  transition: opacity 1.2s ease-in;
}
.basketmodal__mains.ordering #basketmodalform[data-pg="1"] .basketform > div {
  transform: translateX(0);
}
.basketmodal__mains.ordering #basketmodalform[data-pg="1"] .basketform__who {
  opacity: 1;
  transition: opacity 0.05s ease-out;
}
.basketmodal__mains.ordering #basketmodalform[data-pg="1"] .basketform__who .form__fixer > * {
  opacity: 1;
  transform: translate(0);
  transition-delay: calc(var(--delay-que) * 40ms + 400ms);
}
.basketmodal__mains.ordering #basketmodalform[data-pg="2"] .basketform > div {
  transform: translateX(-100%);
}
.basketmodal__mains.ordering #basketmodalform[data-pg="2"] .basketform__where {
  opacity: 1;
  transition: opacity 0.05s ease-out;
}
.basketmodal__mains.ordering #basketmodalform[data-pg="2"] .basketform__where .form__fixer > * {
  opacity: 1;
  transform: translate(0);
  transition-delay: calc(var(--delay-que) * 40ms + 400ms);
}
.basketmodal__mains.ordering #basketmodalform[data-pg="3"] .basketform > div {
  transform: translateX(-200%);
}
.basketmodal__mains.ordering #basketmodalform[data-pg="3"] .basketform__paytype {
  opacity: 1;
  transition: opacity 0.05s ease-out;
}
.basketmodal__mains.ordering #basketmodalform[data-pg="3"] .basketform__paytype .form__fixer > * {
  opacity: 1;
  transform: translate(0);
  transition-delay: calc(var(--delay-que) * 40ms + 400ms);
}
.basketmodal__mains__basket {
  width: 100%;
  z-index: 1;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .basketmodal__mains__basket {
    justify-self: flex-end;
    width: calc(100% - 105px) !important;
  }
}
@media screen and (min-width: 1400px) {
  .basketmodal__mains__basket {
    width: calc(100% - 155px) !important;
  }
}
.basketmodal__mains__basket > * {
  opacity: 0;
  transition: opacity 0.1s ease-out;
}
.basketmodal__mains__basket > .basketmodal__X {
  position: absolute;
  right: 20px;
  top: 20px;
  height: 24px;
  width: 24px;
  z-index: 2;
}
.basketmodal__mains__basket__cleaner {
  font-size: 14px;
  line-height: 16.8px;
  position: absolute;
  cursor: pointer;
  color: #FE7E7E;
  font-weight: 700;
  top: 60px;
  left: 84px;
  font-family: firagobook;
  font-weight: 400;
}
@media screen and (min-width: 1025px) {
  .basketmodal__mains__basket__cleaner {
    font-family: firagobold;
    top: unset;
    bottom: 77px;
    left: 50px;
  }
}
.basketmodal__mains__basket__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  height: calc(100% - 320px);
}
@media screen and (min-width: 1025px) {
  .basketmodal__mains__basket__content {
    height: 100%;
    padding-right: 345px;
  }
}
.basketmodal__mains__basket__content__header {
  margin-bottom: 30px;
}
@media screen and (min-width: 1025px) {
  .basketmodal__mains__basket__content__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
  }
}
.basketmodal__mains__basket__content__header .ptitle {
  z-index: 1;
  margin-bottom: 8px;
}
@media screen and (min-width: 1025px) {
  .basketmodal__mains__basket__content__header .ptitle {
    margin-bottom: 0;
  }
}
.basketmodal__mains__basket__content__header__qty {
  color: #707477;
  font-family: firagobold;
  font-weight: 700;
  font-size: 14px;
  line-height: 16.8px;
}
.basketmodal__mains__basket__list {
  height: 0;
  flex-grow: 1;
  overflow: auto;
  display: grid;
  align-content: flex-start;
  width: 100%;
  grid-gap: 20px;
}
.basketmodal__mains__basket__list::-webkit-scrollbar {
  width: 2px;
  background-color: transparent;
}
.basketmodal__mains__basket__list::-webkit-scrollbar-thumb {
  border-radius: 30px;
  background-color: rgba(19, 19, 19, 0.2);
}
.basketmodal__mains__basket__list::-webkit-scrollbar-track {
  margin: 15px 0;
  background-color: transparent;
}
@media screen and (min-width: 1025px) {
  .basketmodal__mains__basket__list {
    grid-gap: 30px;
    margin-left: -31px;
    width: calc(100% + 31px);
    margin-bottom: 124px;
  }
}
.basketmodal__mains__basket__list__titles {
  display: none;
  margin-bottom: 40px;
  grid-template-columns: minmax(auto, 350px) minmax(97px, 1fr) minmax(116px, 1fr) minmax(148px, 1fr) 1fr;
  padding-right: 48px;
}
@media screen and (min-width: 1025px) {
  .basketmodal__mains__basket__list__titles {
    display: grid;
  }
}
.basketmodal__mains__basket__list__titles li {
  font-family: firagobook;
  font-size: 14px;
  line-height: 25.2px;
  color: #707477;
  font-weight: 400;
  text-transform: capitalize;
}
.basketmodal__mains__basket__list__li {
  position: relative;
  height: var(--height-toggled);
  overflow: hidden;
  display: grid;
  grid-gap: 20px;
  align-content: flex-start;
  transition: transform 0.15s ease-out, opacity 0.15s ease-out;
  opacity: 0;
  will-change: all;
  transform: translateY(100%);
  padding-left: 15px;
}
@media screen and (min-width: 1025px) {
  .basketmodal__mains__basket__list__li {
    padding-right: 48px;
    height: 90px !important;
    grid-gap: 0;
    display: grid;
    align-content: center;
    align-items: center;
    grid-template-columns: minmax(auto, 350px) minmax(97px, 1fr) minmax(116px, 1fr) minmax(148px, 1fr) 1fr;
    padding-left: 30px;
  }
}
.basketmodal__mains__basket__list__li__checkbox {
  position: absolute;
  right: 11px;
  top: 0;
}
@media screen and (min-width: 1025px) {
  .basketmodal__mains__basket__list__li__checkbox {
    right: unset;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
.basketmodal__mains__basket__list__li__checkbox .customcheckbox {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background-color: transparent;
  border: 1px solid #00B4FB;
  cursor: pointer;
}
.basketmodal__mains__basket__list__li__checkbox input {
  display: none;
}
.basketmodal__mains__basket__list__li__checkbox input:checked + .customcheckbox {
  background-color: #00B4FB;
}
.basketmodal__mains__basket__list__li .labelll {
  font-family: firagobook !important;
  font-size: 14px !important;
  line-height: 25.2px !important;
  color: #707477 !important;
  font-weight: 400 !important;
}
@media screen and (min-width: 1025px) {
  .basketmodal__mains__basket__list__li .labelll {
    display: none;
  }
}
.basketmodal__mains__basket__list__li__fixer {
  width: 100%;
  overflow: hidden;
  --height: 134px;
  --height-toggled: 174px;
  height: var(--height);
  transition: height 0.3s ease-out;
  will-change: height;
  border-bottom: 1px solid #E6E6E6;
}
@media screen and (min-width: 1025px) {
  .basketmodal__mains__basket__list__li__fixer {
    height: 90px !important;
    border: none;
  }
}
.basketmodal__mains__basket__list__li__fixer.toggled {
  height: var(--height-toggled);
}
.basketmodal__mains__basket__list__li__item {
  height: 70px;
  display: flex;
  align-items: stretch;
  margin-right: 30px;
}
@media screen and (min-width: 1025px) {
  .basketmodal__mains__basket__list__li__item {
    height: 100%;
    align-items: center;
    margin-bottom: 0;
  }
}
.basketmodal__mains__basket__list__li__imgbox {
  height: 100%;
  width: 70px;
  margin-right: 20px;
}
@media screen and (min-width: 1025px) {
  .basketmodal__mains__basket__list__li__imgbox {
    width: 90px;
    margin-right: 20px;
  }
}
.basketmodal__mains__basket__list__li__imgbox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.basketmodal__mains__basket__list__li__category {
  font-family: firagobook;
  color: #707477;
  font-size: 14px;
  line-height: 19.6px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 8px;
}
.basketmodal__mains__basket__list__li__title, .basketmodal__mains__basket__list__li__category {
  max-width: 130px;
}
@media screen and (min-width: 1025px) {
  .basketmodal__mains__basket__list__li__title, .basketmodal__mains__basket__list__li__category {
    max-width: 230px;
  }
}
.basketmodal__mains__basket__list__li__title, .basketmodal__mains__basket__list__li__title a {
  font-family: firago;
  font-size: 14px;
  line-height: 19.6px;
  font-weight: 400;
  min-height: 40px;
  overflow: hidden;
  max-height: 40px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media screen and (min-width: 1025px) {
  .basketmodal__mains__basket__list__li__title, .basketmodal__mains__basket__list__li__title a {
    min-height: unset;
    max-height: 51px;
    font-size: 18px;
    line-height: 25.2px;
  }
}
.basketmodal__mains__basket__list__li__size {
  font-family: firago !important;
  font-size: 18px;
  line-height: 25.2px;
  font-weight: 400;
  color: #131313 !important;
}
.basketmodal__mains__basket__list__li__size .labelll {
  margin-right: 20px;
}
@media screen and (max-width: 1024px) {
  .basketmodal__mains__basket__list__li__size {
    position: absolute;
    top: 133px;
    right: calc(50% + 15px);
    height: 26px;
  }
}
.basketmodal__mains__basket__list__li__color {
  display: flex;
  width: max-content;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .basketmodal__mains__basket__list__li__color {
    height: 26px;
    top: 133px;
    position: absolute;
    left: calc(50% + 15px);
  }
}
.basketmodal__mains__basket__list__li__color .labelll {
  margin-right: 10px;
}
.basketmodal__mains__basket__list__li__color::after {
  content: "";
  background-color: var(--color);
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
@media screen and (min-width: 1025px) {
  .basketmodal__mains__basket__list__li__color::after {
    width: 34px;
    height: 34px;
  }
}
.basketmodal__mains__basket__list__li__quantity {
  width: 88px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.basketmodal__mains__basket__list__li__quantity input {
  width: 0;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: firagosemibold;
  font-size: 18px;
  line-height: initial;
  color: #131313;
  font-weight: 600;
  margin: 0 3px;
  flex-basis: 0;
  flex-grow: 1;
}
.basketmodal__mains__basket__list__li__quantity div {
  height: 100%;
  cursor: pointer;
}
.basketmodal__mains__basket__list__li__quantity .basket__minus.inactive, .basketmodal__mains__basket__list__li__quantity .basket__plus.inactive {
  pointer-events: none;
}
.basketmodal__mains__basket__list__li__quantity .basket__minus.inactive svg path, .basketmodal__mains__basket__list__li__quantity .basket__plus.inactive svg path {
  fill: #707477;
}
.basketmodal__mains__basket__list__li__price {
  font-family: firagobold;
  font-size: 14px;
  line-height: 19.6px;
  display: flex;
  flex-direction: column;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .basketmodal__mains__basket__list__li__price {
    position: absolute;
    top: 91px;
    left: 108px;
  }
}
.basketmodal__mains__basket__list__li__price .new_price {
  white-space: nowrap;
  color: #FE7E7E;
}
.basketmodal__mains__basket__list__li__price .new_price + .old_price {
  text-decoration: line-through;
}
.basketmodal__mains__basket__list__li__price .old_price {
  white-space: nowrap;
  color: #131313;
}
.basketmodal__mains__basket__list__li__moredetails {
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 93px;
  font-family: firagobook;
  color: #4260FF;
  font-size: 12px;
  line-height: 16.8px;
  font-weight: 400;
  text-transform: uppercase;
}
@media screen and (min-width: 1025px) {
  .basketmodal__mains__basket__list__li__moredetails {
    display: none;
    right: 0;
  }
}
.basketmodal__mains__basket__list__li__removebtn {
  position: absolute;
  z-index: 1;
  top: 25px;
  right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 18px;
  width: 18px;
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .basketmodal__mains__basket__list__li__removebtn {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
.basketmodal__mains__basket__list__li__removebtn::after {
  content: url(../img/basketremove.svg);
  display: inline-block;
  width: 100%;
  height: 100%;
}
.basketmodal__mains__basket__right {
  position: absolute;
  right: 0;
  width: 100%;
  height: 320px;
  background-color: #F2FBFF;
  z-index: 1;
  bottom: 0;
  padding: 20px;
}
@media screen and (min-width: 1025px) {
  .basketmodal__mains__basket__right {
    height: max-content;
    padding: 10px;
    padding-top: 105px;
    padding-bottom: 20px;
    bottom: unset;
    top: 0;
    height: 100%;
    width: 315px;
    display: flex;
    flex-direction: column;
  }
}
.basketmodal__mains__ordering {
  background-color: #F2FBFF !important;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .basketmodal__mains__ordering {
    padding: 20px 10px !important;
  }
}
.basketmodal__mains__ordering > * {
  opacity: 0;
  transition: opacity 0.1s ease-out;
}
.basketmodal__mains__ordering__staticinfo {
  width: 0;
  height: 0;
  overflow: visible;
}
@media screen and (min-width: 1025px) {
  .basketmodal__mains__ordering__staticinfo {
    width: unset;
    height: unset;
    position: absolute;
    left: 40px;
    top: 40px;
  }
}
.basketmodal__mains__ordering__staticinfo .dsm {
  text-transform: uppercase;
  color: #131313;
  font-family: firagobold;
  font-weight: 700;
  font-size: 24px;
  line-height: 28.8px;
  margin-bottom: 72px;
  display: none;
}
@media screen and (min-width: 1025px) {
  .basketmodal__mains__ordering__staticinfo .dsm {
    display: block;
  }
}
.basketmodal__mains__ordering__staticinfo .chkout {
  font-size: 24px;
  line-height: 28.8px;
  display: none;
  text-transform: capitalize;
  font-family: firagosemibold;
  color: #131313;
  margin-bottom: 50px;
}
@media screen and (min-width: 1025px) {
  .basketmodal__mains__ordering__staticinfo .chkout {
    display: block;
  }
}
.basketmodal__mains__ordering__staticinfo .backtostore {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
  display: flex;
  margin-bottom: 0;
}
@media screen and (min-width: 1025px) {
  .basketmodal__mains__ordering__staticinfo .backtostore {
    position: static;
  }
}
.basketmodal__mains__ordering__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-bottom: 272px;
}
@media screen and (min-width: 1025px) {
  .basketmodal__mains__ordering__form {
    padding-bottom: 0;
    align-items: flex-start;
    padding-left: 210px;
    padding-right: 345px;
  }
}
.basketmodal__mains__ordering__form[data-pg="1"] .basketmodal__mains__ordering__form__nav span:nth-child(-n+1) {
  background-color: #00B4FB;
}
.basketmodal__mains__ordering__form[data-pg="2"] .basketmodal__mains__ordering__form__nav span:nth-child(-n+2) {
  background-color: #00B4FB;
}
.basketmodal__mains__ordering__form[data-pg="3"] .basketmodal__mains__ordering__form__nav span:nth-child(-n+3) {
  background-color: #00B4FB;
}
.basketmodal__mains__ordering__form__nav {
  display: grid;
  grid-template-columns: auto auto auto;
  grid-gap: 20px;
  height: 10px;
  margin-bottom: 34px;
}
@media screen and (min-width: 1025px) {
  .basketmodal__mains__ordering__form__nav {
    margin-bottom: 79px;
    height: 14px;
  }
}
.basketmodal__mains__ordering__form__nav span {
  cursor: pointer;
  display: inline-block;
  width: 10px;
  height: 100%;
  border-radius: 50%;
  background-color: #E6E6E6;
  transition: background-color 0.4s ease-out;
}
@media screen and (min-width: 1025px) {
  .basketmodal__mains__ordering__form__nav span {
    width: 14px;
  }
}
.basketmodal__mains__ordering__form .basketform {
  flex-grow: 1;
  height: 0;
  flex-basis: 0;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: flex-start;
}
.basketmodal__mains__ordering__form .basketform .ns {
  border-color: #131313;
}
.basketmodal__mains__ordering__form .basketform .ns::after {
  background-color: #131313;
}
.basketmodal__mains__ordering__form .basketform .ns__ul li {
  border-bottom-color: #131313;
}
.basketmodal__mains__ordering__form .basketform .ns.toggled {
  border-color: #00B4FB;
}
.basketmodal__mains__ordering__form .basketform .ns.toggled::after {
  background-color: #00B4FB;
}
.basketmodal__mains__ordering__form .basketform .ns.toggled .ns__ul li {
  border-bottom-color: #00B4FB;
}
@media screen and (min-width: 1025px) {
  .basketmodal__mains__ordering__form .basketform {
    max-width: 540px;
  }
}
.basketmodal__mains__ordering__form .basketform > div {
  transition: transform 0.4s ease-out;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  padding-bottom: 50px;
  display: block;
  overflow: auto;
  opacity: 0;
  transform: translateY(0);
  padding-left: 10px;
  padding-right: 10px;
}
.basketmodal__mains__ordering__form .basketform > div::-webkit-scrollbar {
  width: 1px;
  background-color: transparent;
}
.basketmodal__mains__ordering__form .basketform > div::-webkit-scrollbar-thumb {
  border-radius: 30px;
  background-color: #00B4FB;
}
.basketmodal__mains__ordering__form .basketform > div::-webkit-scrollbar-track {
  margin: 15px 0;
  background-color: transparent;
}
.basketmodal__mains__ordering__form .basketform__heading {
  font-family: firagobook;
  font-weight: 400;
  font-size: 18px;
  line-height: 21.6px;
  color: #131313;
}
@media screen and (min-width: 1025px) {
  .basketmodal__mains__ordering__form .basketform__heading {
    font-size: 24px;
    line-height: 28.8px;
  }
}
.basketmodal__mains__ordering__form .basketform__heading__fixer {
  margin-bottom: 30px;
}
@media screen and (min-width: 1025px) {
  .basketmodal__mains__ordering__form .basketform__heading__fixer {
    margin-bottom: 50px;
  }
}
.basketmodal__mains__ordering__form .basketform__heading__fixer.f18__fixer {
  margin-bottom: 26px;
}
@media screen and (min-width: 1025px) {
  .basketmodal__mains__ordering__form .basketform__heading__fixer.f18__fixer {
    margin-bottom: 30px;
  }
}
.basketmodal__mains__ordering__form .basketform__heading.f18 {
  font-size: 16px;
  line-height: 19.2px;
}
@media screen and (min-width: 1025px) {
  .basketmodal__mains__ordering__form .basketform__heading.f18 {
    font-size: 18px;
    line-height: 21.6px;
  }
}
.basketmodal__mains__ordering__form .basketform__label {
  text-transform: uppercase;
  font-family: firagosemibold;
  font-size: 12px;
  line-height: 16.8px;
  font-weight: 600;
  color: #131313;
  letter-spacing: 0.012em;
}
.basketmodal__mains__ordering__form .basketform__label__fixer {
  margin-bottom: 8px;
}
.basketmodal__mains__ordering__form .basketform__input {
  font-family: firagobook;
  color: #131313;
  font-weight: 400;
  height: 54px;
  width: 100%;
  border-radius: 12px;
  border: 1px solid #131313;
  padding: 0 20px;
  display: flex;
  align-items: center;
  font-size: 12px;
  line-height: 16.8px;
  letter-spacing: 0.012em;
}
.basketmodal__mains__ordering__form .basketform__input:focus {
  border-color: #00B4FB;
}
.basketmodal__mains__ordering__form .basketform__input__fixer {
  margin-bottom: 20px;
}
@media screen and (min-width: 1025px) {
  .basketmodal__mains__ordering__form .basketform__inputcombiner {
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
  }
}
.basketmodal__mains__ordering__right {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 272px;
  right: 0;
  bottom: 0;
  background-color: #fff;
}
@media screen and (min-width: 1025px) {
  .basketmodal__mains__ordering__right {
    width: 315px;
    height: 100%;
    bottom: unset;
    top: 0;
  }
}

.banklogos {
  height: 0;
  transition: 0.1s ease;
  overflow: hidden;
  padding: 0;
  width: 100%;
  grid-row: 2/3;
  grid-column: 1/3;
  padding-left: 40px;
  display: flex;
  flex-direction: column;
  width: 100%;
  grid-gap: 20px;
}
@media screen and (min-width: 1025px) {
  .banklogos {
    display: grid;
    width: max-content;
    align-items: center;
    grid-gap: 10px;
    grid-template-columns: repeat(3, auto);
  }
}
.banklogos__item {
  height: 40px;
  width: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background-color: #fff;
  overflow: hidden;
  cursor: pointer;
}

.basketform__radio__label {
  display: flex;
  cursor: pointer;
  align-items: center;
  height: 30px;
  margin-bottom: 20px;
}
@media screen and (min-width: 1025px) {
  .basketform__radio__label {
    margin-bottom: 20px;
  }
}
.basketform__radio__label input {
  display: none !important;
}
.basketform__radio__label input:checked + .customcheck::after {
  width: 12px;
  height: 12px;
  opacity: 1;
}
.basketform__radio__label input:checked + .customcheckmark {
  border-color: #00B4FB;
  background-color: #00B4FB;
}
.basketform__radio__label .customcheck {
  display: flex;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #fff;
  border: 1px solid #131313;
}
.basketform__radio__label .customcheck::after {
  content: "";
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  width: 0;
  height: 0;
  opacity: 0;
  border-radius: 50%;
  border: 2px solid #fff;
  background-color: #00B4FB;
  transition: 0.3s ease-out;
}
.basketform__radio__label .customcheckmark {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background-color: transparent;
  border: 1px solid #E6E6E6;
}
.basketform__radio__label .descr {
  font-family: firagobook;
  font-weight: 400;
  font-size: 12px;
  line-height: 14.4px;
  color: #000;
  flex-grow: 1;
  margin: 0 10px;
  flex-basis: 0;
}
.basketform__radio__label .price {
  color: #131313;
  font-family: firagosemibold;
  font-size: 14px;
  line-height: 16.8px;
  font-weight: 600;
}
.basketform__radio__label.seld {
  margin-bottom: 30px;
}
.basketform__radio__label.seld + .banklogos {
  height: 160px;
  padding-bottom: 30px;
}
@media screen and (min-width: 1025px) {
  .basketform__radio__label.seld + .banklogos {
    height: 80px;
  }
}

@media screen and (min-width: 1025px) {
  .orderdetails__rest, .orderdetails__totals {
    padding: 0 10px;
  }
}
@media screen and (min-width: 1025px) {
  .orderdetails__rest {
    flex-grow: 1;
  }
}
.orderdetails h6 {
  font-family: firagosemibold;
  font-size: 18px;
  line-height: 25.2px;
  letter-spacing: 0.012em;
  color: #131313;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: capitalize;
}
@media screen and (min-width: 1025px) {
  .orderdetails h6 {
    margin-bottom: 50px;
  }
}
.orderdetails__infos {
  display: grid;
  grid-gap: 16px;
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (min-width: 1025px) {
  .orderdetails__infos {
    margin-bottom: 50px;
  }
}
.orderdetails__infos__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.orderdetails__infos__item p {
  font-family: firagobook;
  font-weight: 400;
  font-size: 14px;
  line-height: 19.6px;
}
.orderdetails__infos__label {
  color: #343434;
  text-transform: capitalize;
}
.orderdetails__promocode {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 20px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .orderdetails__promocode {
    margin-bottom: 0;
  }
}
.orderdetails__promocode input, .orderdetails__promocode label {
  font-family: firagosemibold;
  font-size: 14px;
  line-height: 19.6px;
}
.orderdetails__promocode label {
  flex-grow: 1;
  text-transform: capitalize;
}
.orderdetails__promocode input {
  display: flex;
  flex-basis: 0;
  margin: 0 10px;
  min-width: 69px;
  color: #131313;
  flex-grow: 5;
  width: max-content;
}
@media screen and (min-width: 1025px) {
  .orderdetails__promocode input {
    flex-grow: unset;
  }
}
.orderdetails__promocode input::placeholder {
  color: #707477;
}
.orderdetails__totals {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.orderdetails__totals p {
  color: #131313;
  font-weight: 600;
  font-size: 18px;
  line-height: 25.2px;
  font-family: firagosemibold;
}
.orderdetails__totals p:first-child {
  color: #343434;
  text-transform: capitalize;
}

.form__fixer {
  height: max-content;
  overflow: hidden;
  position: relative;
  --delay-que: 1;
}
.form__fixer > * {
  transition: transform 0.05s ease-out, opacity 0.1s ease-out;
  transition-delay: 0s;
  opacity: 0;
  transform: translateY(100%);
}

.backtostore {
  cursor: pointer;
  max-width: max-content;
  align-items: center;
  font-family: firagobold;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 17px;
  font-weight: 700;
  color: #707477;
  display: none;
  margin-bottom: 40px;
}
@media screen and (min-width: 1025px) {
  .backtostore {
    display: flex;
  }
}
.backtostore::before {
  content: url(../img/backtostore.svg);
  height: 24px;
  margin-right: 10px;
}

.itemsinfo {
  padding: 20px;
  padding-bottom: 94px;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1025px) {
  .itemsinfo {
    padding: 30px 20px;
  }
}
.itemsinfo .orderdetails__promocode {
  margin-bottom: 20px;
}
@media screen and (min-width: 1025px) {
  .itemsinfo .orderdetails__promocode {
    margin-bottom: 30px;
  }
}
.itemsinfo .orderdetails__totals {
  padding: 0;
}
.itemsinfo__rest {
  position: absolute;
  max-height: 80vh;
  z-index: 999;
  padding: 20px;
  width: calc(100% - 40px);
  width: 100%;
  top: 151vh;
  left: 0;
  border-radius: 30px;
  transform: translateY(-50%);
  background-color: #fff;
  transition: top 0.4s ease-out;
}
@media screen and (min-width: 1025px) {
  .itemsinfo__rest {
    border-radius: 0;
    padding: 0;
    transform: none;
    width: 100%;
    background-color: transparent;
    max-height: unset;
    flex-grow: 1;
    position: static;
  }
}
.itemsinfo__rest.toggled {
  top: -50%;
}
.itemsinfo__rest__bg {
  position: absolute;
  right: -5px;
  bottom: -5px;
  width: 0;
  height: 0;
  background-color: rgba(19, 19, 19, 0.7);
  z-index: 998;
  transition: 0s 0.4s linear;
}
.itemsinfo__rest__bg.toggled {
  transition: none;
  width: 100vw;
  height: 100vh;
}
@media screen and (min-width: 1025px) {
  .itemsinfo__rest__bg {
    display: none;
  }
}
.itemsinfo__rest__X {
  height: 24px;
  width: 24px;
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
}
.itemsinfo__rest__X::after {
  content: url(../img/);
}
@media screen and (min-width: 1025px) {
  .itemsinfo__rest__X {
    display: none;
  }
}
.itemsinfo__header {
  margin-bottom: 30px;
}
@media screen and (min-width: 1025px) {
  .itemsinfo__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
  }
}
.itemsinfo__heading {
  text-transform: capitalize;
  color: #131313;
  font-weight: 600;
  font-family: firagosemibold;
  margin-bottom: 8px;
  letter-spacing: 0.012em;
  font-size: 18px;
  line-height: 25.2px;
}
@media screen and (min-width: 1025px) {
  .itemsinfo__heading {
    margin-bottom: 0;
  }
}
.itemsinfo__editbag {
  cursor: pointer;
  color: #707477;
  font-family: firagobook;
  text-transform: lowercase;
  font-weight: 400;
  font-size: 14px;
  line-height: 16.8px;
}
.itemsinfo__list {
  display: grid;
  width: 100%;
  grid-gap: 30px;
}
.itemsinfo__list__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.itemsinfo__list__item__title {
  font-family: firago;
  color: #131313;
  font-size: 14px;
  line-height: 19.6px;
  overflow: hidden;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-transform: uppercase;
  font-weight: 400;
}
.itemsinfo__list__item__qtyprice {
  display: grid;
  grid-template-columns: auto auto;
  width: max-content;
  align-items: center;
  grid-gap: 15px;
}
.itemsinfo__list__item__qtyprice__qty, .itemsinfo__list__item__qtyprice__price {
  font-family: firagobook;
  font-size: 14px;
  line-height: 19.6px;
  color: #131313;
  font-weight: 400;
}
.itemsinfo__list__item__qtyprice__price {
  font-family: firagosemibold;
  font-weight: 600;
}

.item__restmobile {
  flex-grow: 1;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (min-width: 1025px) {
  .item__restmobile {
    display: none;
  }
}
.item__restmobile__qty {
  font-family: firagosemibold;
  color: #131313;
  font-size: 14px;
  line-height: 19.6px;
  font-weight: 600;
  margin-bottom: 8px;
}
.item__restmobile__checkbag {
  color: #4260FF;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 16.8px;
  font-family: firagobook;
  font-weight: 400;
}
.item__restmobile__yellows {
  display: grid;
  grid-template-columns: repeat(3, 100%);
  align-items: center;
  position: absolute;
  bottom: 20px;
  left: 20px;
  overflow: hidden;
  width: calc(100% - 40px);
}
@media screen and (min-width: 1025px) {
  .item__restmobile__yellows {
    display: none;
  }
}
.item__restmobile__yellows > * {
  flex-shrink: 0;
  width: 100%;
  transition: 0.4s ease-out;
}
.item__restmobile__yellows[data-pg="1"] > * {
  transform: translateX(0);
}
.item__restmobile__yellows[data-pg="2"] > * {
  transform: translateX(-100%);
}
.item__restmobile__yellows[data-pg="3"] > * {
  transform: translateX(-200%);
}

@media screen and (max-width: 1024px) {
  .basketform .yellowbtn {
    display: none !important;
  }
}

@media screen and (min-width: 1025px) {
  .proctosheep.yellowbtn {
    margin-top: 30px;
  }
}

.bankinfomodal {
  position: fixed;
  max-height: 80vh;
  z-index: 999;
  padding: 50px;
  width: 100%;
  width: calc(100% - 40px);
  top: 151vh;
  max-width: 640px;
  left: 20px;
  border-radius: 30px;
  transform: translateY(-50%);
  background-color: #fff;
  transition: top 0.4s ease-out;
}
@media screen and (min-width: 1025px) {
  .bankinfomodal {
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.bankinfomodal.toggled {
  top: 50%;
}
.bankinfomodal__bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  background-color: rgba(19, 19, 19, 0.2);
  z-index: 998;
  transition: 0s 0.4s linear;
}
.bankinfomodal__bg.toggled {
  transition: none;
  width: 100vw;
  height: 100vh;
}
.bankinfomodal__X {
  height: 24px;
  width: 24px;
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
}
.bankinfomodal__X::after {
  content: url(../img/);
}
.bankinfomodal__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
  grid-gap: 16px 3px;
  align-items: center;
  max-width: 280px;
  margin: 0 auto;
}
.bankinfomodal__info span {
  font-size: 16px;
  line-height: 22.4px;
  color: #131313;
  font-family: firagobook;
  font-weight: 400;
}
.bankinfomodal__info span:nth-of-type(odd) {
  font-family: firagosemibold;
  font-weight: 600;
  text-transform: uppercase;
  font-feature-settings: "case" on;
}
.bankinfomodal h6 {
  font-family: firagosemibold;
  font-size: 22px;
  line-height: 30.8px;
  color: #131313;
  margin-bottom: 30px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  font-feature-settings: "case" on;
}

@media screen and (max-width: 1024px) {
  .orderdetails__totals__checkout.checkoutbtn.yellowbtn.br60 {
    max-width: unset;
  }
}

.ns {
  --height: max-content;
  height: 54px;
  width: 100%;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  overflow: hidden;
  transition: height 0.2s ease-out;
  position: relative;
  background-color: #fff;
}
.ns br {
  display: none;
}
.ns.toggled {
  z-index: 1;
  height: var(--height);
}
.ns.toggled ul {
  transition: opacity 0.2s ease-out;
  opacity: 1;
}
.ns.toggled .ns__activetext::after {
  transform: rotate(-180deg);
}
.ns.gr {
  z-index: 3;
  background-color: #F2FBFF;
}
.ns.gr ul {
  background-color: #F2FBFF;
}
.ns select {
  display: none;
}
.ns::after {
  content: "";
  display: inline-block;
  width: calc(100% - 20px);
  height: 1px;
  position: absolute;
  left: 10px;
  top: 54px;
  background-color: #E6E6E6;
}
.ns__container {
  height: 54px;
  overflow: visible;
  width: 100%;
}
.ns__activetext {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 54px;
  padding: 0 20px;
  cursor: pointer;
  font-family: firagobook;
  font-size: 12px;
  line-height: 16.8px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 0.012em;
  color: #131313;
}
.ns__activetext::before {
  content: attr(data-value);
  font-weight: 600;
}
.ns__activetext::after {
  content: url(../img/nsarrow.svg);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  transform: rotate(0deg);
  transition: transform 0.2s ease-out;
}
.ns__ul {
  display: grid;
  width: 100%;
  opacity: 0;
  height: max-content;
  overflow: visible;
  padding: 0 20px;
}
.ns__ul li {
  cursor: pointer;
  display: block;
  font-family: firagobook;
  font-size: 12px;
  line-height: 16.8px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 0.012em;
  color: #131313;
  padding-bottom: 11px;
  margin-bottom: 10px;
}
.ns__ul li:first-child {
  margin-top: 10px;
}
.ns__ul li:not(:last-of-type) {
  border-bottom: 1px solid #E6E6E6;
}
.ns__ul li.active {
  color: #00B4FB;
}

.profilemain {
  padding-top: 20px;
  padding-bottom: 20px;
}
@media screen and (min-width: 1025px) {
  .profilemain {
    padding-bottom: 80px;
    padding-top: 40px;
  }
}
@media screen and (min-width: 1025px) {
  .profilemain .loggedinmenu__balance {
    position: absolute;
    top: 0px;
    right: 0;
    display: grid;
    grid-gap: 10px;
  }
}
@media screen and (min-width: 1025px) {
  .profilemain .loggedinmenu__balance__right {
    justify-self: flex-end;
  }
}
@media screen and (min-width: 1025px) {
  .profilemain__greetings__container {
    position: relative;
  }
}
.profilemain__greetings__hello {
  font-family: firagosemibold;
  font-size: 24px;
  line-height: 33.6px;
  color: #131313;
  text-transform: capitalize;
  margin-bottom: 20px;
  font-weight: 600;
}
@media screen and (min-width: 1025px) {
  .profilemain__greetings__hello {
    font-size: 34px;
    line-height: 47.6px;
  }
}
.profilemain__greetings__welcome {
  font-family: firagobook;
  color: #131313;
  font-weight: 400;
  font-size: 20px;
  line-height: 22.4px;
  margin-bottom: 20px;
}
@media screen and (min-width: 1025px) {
  .profilemain__greetings__welcome {
    font-size: 24px;
    line-height: 33.6px;
  }
}
.profilemain__greetings__instruction {
  font-family: firagobook;
  color: #131313;
  font-weight: 400;
  font-size: 14px;
  line-height: 25.2px;
  margin-bottom: 30px;
}
@media screen and (min-width: 1025px) {
  .profilemain__greetings__instruction {
    font-size: 18px;
    line-height: 25.2px;
  }
}
.profilemain .loggedinmenu__balance {
  padding-bottom: 0;
  border: none;
  max-width: 300px;
}
.profilemain__nav {
  border-radius: 40px;
  padding: 20px;
  border: 1px solid #c4c4c4;
  margin-bottom: 30px;
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  .profilemain__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    margin-bottom: 50px;
    height: 42px;
  }
}
.profilemain__nav.toggled .profilemain__nav__ul {
  height: max-content;
  border-color: #E6E6E6;
  margin-bottom: 20px;
}
.profilemain__nav.toggled .profilemain__nav__ul__li a {
  pointer-events: all !important;
}
.profilemain__nav.toggled .profilemain__nav__ul__li.active::after {
  transform: translateY(-50%) rotate(-180deg);
}
.profilemain__nav.toggled .profilemain__nav__ul__li.active a {
  width: 100%;
}
.profilemain__nav.toggled .profilemain__nav__logout {
  display: flex;
}
.profilemain__nav__ul {
  display: grid;
  grid-gap: 10px;
  padding-bottom: 11px;
  margin-bottom: 0;
  border-bottom: 1px solid transparent;
  height: 40px;
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  .profilemain__nav__ul {
    height: unset !important;
    overflow: unset !important;
    border: none;
    padding-bottom: 0;
    margin-bottom: 0 !important;
    grid-template-columns: repeat(4, auto);
    grid-gap: 0;
  }
}
.profilemain__nav__ul__li {
  display: flex;
  width: 100%;
  height: 40px;
}
.profilemain__nav__ul__li a {
  pointer-events: none;
}
.profilemain__nav__ul__li.active {
  order: -1;
  cursor: pointer;
  position: relative;
}
.profilemain__nav__ul__li.active::after {
  transition: 0.1s ease-out;
}
@media screen and (max-width: 1024px) {
  .profilemain__nav__ul__li.active::after {
    content: url(../img/prof-mob-details-down.svg);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
  }
}
@media screen and (min-width: 1025px) {
  .profilemain__nav__ul__li a {
    pointer-events: all !important;
  }
  .profilemain__nav__ul__li.active {
    order: 0 !important;
  }
  .profilemain__nav__ul__li.active a {
    width: 100%;
    color: white !important;
    background-color: #00B4FB;
  }
}
.profilemain__nav__ul__li.wishlist a::after {
  content: attr(data-wishes);
  height: 18px;
  min-width: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 2px 3px;
  border-radius: 4px;
  font-size: 12px;
  line-height: 14.4px;
  font-weight: 600;
  background-color: #7E8BFE;
  font-family: firagosemibold;
}
.profilemain__nav__ul__li.referalls a::after {
  content: attr(data-reffs);
  height: 18px;
  display: flex;
  align-items: center;
  color: #fff;
  padding: 2px 3px;
  border-radius: 4px;
  font-size: 12px;
  line-height: 14.4px;
  font-weight: 600;
  background-color: #FB7EFE;
  font-family: firagosemibold;
}
.profilemain__nav__ul__li a {
  border-radius: 50px;
  display: flex;
  height: 100%;
  align-items: center;
  font-family: firagosemibold;
  font-size: 14px;
  line-height: 19.6px;
  color: #131313;
  text-transform: capitalize;
  font-weight: 600;
  padding: 0 20px;
}
@media screen and (min-width: 1025px) {
  .profilemain__nav__ul__li a {
    padding: 0 50px;
  }
}
.profilemain__nav__ul__li a::after {
  margin-left: 10px;
}
.profilemain__nav__logout {
  font-family: firagosemibold;
  font-size: 14px;
  line-height: 19.6px;
  color: #131313;
  font-weight: 600;
  height: 40px;
  width: 100%;
  text-transform: center;
  display: none;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 1025px) {
  .profilemain__nav__logout {
    display: flex !important;
    max-width: 150px;
  }
}
.profilemain__orderhistory__header {
  display: none;
  grid-template-columns: repeat(6, 1fr);
  width: 100%;
  margin-bottom: 40px;
  justify-content: space-between;
}
@media screen and (min-width: 1025px) {
  .profilemain__orderhistory__header {
    display: grid;
  }
}
.profilemain__orderhistory__header li {
  font-family: firagobook;
  font-size: 14px;
  line-height: 25.2px;
  color: #707477;
  font-weight: 400;
}
.profilemain__orderhistory__list {
  display: grid;
  width: 100%;
  grid-gap: 10px;
}
.profilemain__orderhistory__list__li {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  padding: 20px;
  grid-row-gap: 30px;
  border-radius: 30px;
  border: 1px solid #E6E6E6;
  align-items: center;
}
@media screen and (min-width: 1025px) {
  .profilemain__orderhistory__list__li {
    border: none;
    justify-content: center;
    border-radius: 0;
    justify-items: flex-start;
    padding: 0;
    grid-gap: 0;
    justify-content: space-between;
    grid-template-columns: repeat(6, 1fr);
  }
  .profilemain__orderhistory__list__li:not(:last-of-type) {
    padding-bottom: 31px;
    border-bottom: 1px solid #E6E6E6;
    margin-bottom: 30px;
  }
}
.profilemain__orderhistory__list__li__lab {
  font-family: firagobook;
  font-size: 14px;
  line-height: 25.2px;
  color: #707477;
  margin-bottom: 16px;
  font-weight: 400;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .profilemain__orderhistory__list__li__lab {
    display: none;
  }
}
.profilemain__orderhistory__list__li__val {
  text-align: center;
  font-family: firagobook;
  font-size: 18px;
  line-height: 25.2px;
  font-weight: 400;
  color: #000;
}
.profilemain__orderhistory__list__li__link {
  height: 40px;
  width: 120px;
  border-radius: 50px;
  border: 1px solid #131313;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: firagosemibold;
  font-size: 14px;
  line-height: 19.6px;
  color: #131313;
  font-weight: 600;
  white-space: nowrap;
}
@media screen and (min-width: 1025px) {
  .profilemain__orderhistory__list__li__link {
    height: 40px;
    width: 170px;
  }
}
.profilemain__orderin__header {
  border-bottom: 1px solid #E6E6E6;
  padding-bottom: 31px;
  margin-bottom: 30px;
}
@media screen and (min-width: 1025px) {
  .profilemain__orderin__header {
    padding-bottom: 41px;
    margin-bottom: 40px;
  }
}
.profilemain__orderin__date {
  font-size: 18px;
  line-height: 25.2px;
  color: #131313;
  font-family: firagobook;
  margin-bottom: 16px;
  font-weight: 400;
}
.profilemain__orderin__download {
  border-radius: 50px;
  border: 1px solid #131313;
  height: 40px;
  width: 65px;
  padding: 10px 50px;
  font-family: firagosemibold;
  color: #131313;
  font-size: 14px;
  line-height: 19.6px;
  font-weight: 600;
}
.profilemain__orderin__orderinfo {
  display: grid;
  grid-gap: 30px;
  border-bottom: 1px solid #E6E6E6;
  padding-bottom: 31px;
  margin-bottom: 30px;
}
@media screen and (min-width: 1025px) {
  .profilemain__orderin__orderinfo {
    padding-bottom: 41px;
    margin-bottom: 40px;
    grid-template-columns: 336px auto auto auto;
    grid-gap: 80px;
  }
}
.profilemain__orderin__orderinfo__section h6 {
  font-family: firagosemibold;
  color: #131313;
  font-size: 18px;
  line-height: 21.6px;
  font-weight: 600;
  margin-bottom: 20px;
}
.profilemain__orderin__orderinfo__section__info {
  font-size: 18px;
  line-height: 25.2px;
  color: #131313;
  font-family: firagobook;
  font-weight: 400;
}
.profilemain__orderin__orderinfo__section__info:not(:last-child) {
  margin-bottom: 16px;
}
.profilemain__orderin__table {
  width: 100%;
  border: 1px solid #E6E6E6;
  border-radius: 30px;
  margin-bottom: 30px;
}
@media screen and (min-width: 1025px) {
  .profilemain__orderin__table {
    margin-bottom: 40px;
    overflow: hidden;
  }
}
.profilemain__orderin__table__header {
  width: 100%;
  display: none;
  grid-template-columns: 25% 1fr;
  align-content: center;
  height: 81px;
  align-content: stretch;
  border-bottom: 1px solid #E6E6E6;
}
@media screen and (min-width: 1025px) {
  .profilemain__orderin__table__header {
    display: grid;
  }
}
.profilemain__orderin__table__header > div {
  grid-column: 2/3;
  padding-left: 20px;
  display: flex;
  height: 100%;
  align-items: center;
  border-left: 1px solid #E6E6E6;
  font-family: firagosemibold;
  font-weight: 600;
  font-size: 18px;
  line-height: 21.6px;
  color: #131313;
  text-transform: capitalize;
}
.profilemain__orderin__table__list {
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  .profilemain__orderin__table__list {
    display: grid;
    grid-gap: 0;
  }
}
.profilemain__orderin__table__list__li {
  width: 100%;
  display: grid;
  overflow: hidden;
  border-bottom: 1px solid #E6E6E6;
}
@media screen and (min-width: 1025px) {
  .profilemain__orderin__table__list__li {
    grid-template-columns: 25% 1fr;
    grid-auto-rows: 335px;
  }
}
.profilemain__orderin__table__list__li__imgbox {
  padding: 20px;
  padding-bottom: 16px;
  height: 295px;
  width: 295px;
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  .profilemain__orderin__table__list__li__imgbox {
    padding: 20px;
    width: 100%;
    height: 100%;
    padding: 30px;
  }
}
.profilemain__orderin__table__list__li__imgbox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.profilemain__orderin__table__list__li__textcontent {
  padding: 20px;
  padding-bottom: 30px;
  display: grid;
  grid-gap: 0;
  padding-top: 0;
}
@media screen and (min-width: 1025px) {
  .profilemain__orderin__table__list__li__textcontent {
    padding: 0;
    padding-right: 10px;
    padding-left: 20px;
    border-left: 1px solid #E6E6E6;
    height: 100%;
    display: flex;
    padding-top: 82px;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.profilemain__orderin__table__list__li__textcontent__left {
  order: 1;
}
@media screen and (min-width: 1025px) {
  .profilemain__orderin__table__list__li__textcontent__left {
    order: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.profilemain__orderin__table__list__li__textcontent__price, .profilemain__orderin__table__list__li__textcontent__price span {
  font-family: firagobook;
  font-weight: 400;
  font-size: 24px;
  line-height: 33.6px;
  color: #131313;
}
@media screen and (max-width: 1024px) {
  .profilemain__orderin__table__list__li__textcontent__price {
    margin-bottom: 16px;
  }
}
.profilemain__orderin__table__list__li__title {
  margin-bottom: 20px;
  font-size: 24px;
  line-height: 33.6px;
  color: #131313;
  font-family: firagosemibold;
  font-weight: 600;
  text-transform: uppercase;
  font-feature-settings: "case" on;
}
@media screen and (min-width: 1025px) {
  .profilemain__orderin__table__list__li__title {
    margin-bottom: 30px;
  }
}
.profilemain__orderin__table__list__li__detail {
  color: #707477;
  font-family: firagobook;
  font-size: 14px;
  line-height: 19.6px;
  text-transform: capitalize;
  font-weight: 400;
  display: flex;
  align-items: center;
}
.profilemain__orderin__table__list__li__detail .val {
  margin-left: 10px;
  font-family: firagosemibold;
  font-weight: 600;
  color: #131313;
}
.profilemain__orderin__table__list__li__detail .val.val-col {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.profilemain__orderin__table__list__li__detail:not(:last-of-type) {
  margin-bottom: 20px;
}
.profilemain__orderin__table__totals {
  padding: 20px;
}
@media screen and (min-width: 1025px) {
  .profilemain__orderin__table__totals {
    padding: 30px;
  }
}
.profilemain__orderin__table__totals__eachs {
  display: grid;
  width: 100%;
  grid-gap: 16px;
  padding-bottom: 21px;
  border-bottom: 1px solid #E6E6E6;
  margin-bottom: 20px;
}
.profilemain__orderin__table__totals__eachs > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 34px;
}
.profilemain__orderin__table__totals__eachs > div .lab, .profilemain__orderin__table__totals__eachs > div .val, .profilemain__orderin__table__totals__eachs > div .val span {
  font-family: firagobook;
  font-size: 18px;
  line-height: 25.2px;
  color: #131313;
  font-weight: 400;
  text-transform: capitalize;
}
.profilemain__orderin__table__totals__eachs > div .val {
  text-transform: uppercase;
  font-feature-settings: "case" on;
}
.profilemain__orderin__table__totals__grand {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 34px;
}
.profilemain__orderin__table__totals__grand .lab, .profilemain__orderin__table__totals__grand .val, .profilemain__orderin__table__totals__grand .val span {
  font-family: firagosemibold;
}
.profilemain__orderin__backlink {
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  border: 1px solid #131313;
  font-family: firagosemibold;
  font-size: 14px;
  line-height: 19.6px;
  color: #131313;
  font-weight: 600;
  margin: 0 auto;
}
@media screen and (min-width: 700px) {
  .profilemain__orderin__backlink {
    max-width: 234px;
  }
}

@media screen and (min-width: 1025px) {
  .detailforms {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-right: 112px;
  }
}
.detailforms__title {
  color: #131313;
  font-family: firagosemibold;
  font-weight: 600;
  text-transform: capitalize;
  font-size: 24px;
  line-height: 28.8px;
  margin-bottom: 20px;
}
@media screen and (min-width: 1025px) {
  .detailforms__title {
    margin-bottom: 30px;
  }
}
.detailforms__title.fororderin {
  margin-bottom: 16px;
}
@media screen and (min-width: 1025px) {
  .detailforms .form {
    max-width: 540px;
    width: 100%;
  }
}
.detailforms__label {
  letter-spacing: 0.012em;
  color: #131313;
  text-transform: uppercase;
  font-feature-settings: "case" on;
  font-size: 12px;
  line-height: 16.8px;
  font-weight: 600;
  font-family: firagosemibold;
  margin-bottom: 8px;
  display: block;
}
@media screen and (min-width: 1025px) {
  .detailforms__inputcontainer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    grid-gap: 30px;
  }
}
.detailforms .input-div {
  margin-bottom: 20px;
}
.detailforms .input-div:not(.ns__container) {
  height: 54px;
  width: 100%;
  border-radius: 12px;
  border: 1px solid #e6e6e6;
  padding-right: 15px;
  padding-left: 20px;
  display: flex;
  align-items: center;
  font-family: firagobook;
  letter-spacing: 0.012em;
  font-weight: 400;
  color: #131313;
  transition: border-color 0.1s ease-out;
  font-size: 12px;
  line-height: 16.8px;
}
.detailforms .input-div:not(.ns__container):focus {
  border-color: #131313;
}
.detailforms .input-div.focused {
  border-color: #131313;
}
.detailforms .input-div.invalid.invalid-shown {
  border-color: #DC6848;
}
.detailforms .transparentbtn {
  margin-top: 10px;
}
@media screen and (min-width: 1025px) {
  .detailforms .transparentbtn {
    margin-top: 30px;
  }
}

#mydetails__info, #mydetails__password {
  padding-bottom: 31px;
  border-bottom: 1px solid #E6E6E6;
  margin-bottom: 30px;
}
@media screen and (min-width: 1025px) {
  #mydetails__info, #mydetails__password {
    padding-bottom: 51px;
    border-bottom: 1px solid #E6E6E6;
    margin-bottom: 50px;
  }
}

.transparentbtn {
  border-radius: 60px;
  padding: 18px 50px 18px 50px;
  border: 1px solid #00B4FB;
  letter-spacing: 0.012em;
  font-size: 14px;
  line-height: 19.6px;
  color: #00B4FB;
  cursor: pointer;
  text-transform: uppercase;
  font-feature-settings: "case" on;
  font-weight: 600;
  display: inline-block;
  transition: 0.1s ease-out;
  font-family: firagosemibold;
}
.transparentbtn:hover {
  background-color: #00B4FB;
  color: white;
}

.detailforms__title.wishlist, .detailforms__title.referalls {
  display: flex;
  align-items: center;
}
.detailforms__title.wishlist::after, .detailforms__title.referalls::after {
  height: 18px;
  width: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 2px 3px;
  border-radius: 4px;
  margin-left: 10px;
  font-size: 12px;
  line-height: 14.4px;
  font-weight: 600;
  font-family: firagosemibold;
}
.detailforms__title.wishlist::after {
  background-color: #7E8BFE;
  content: attr(data-wishes);
}
.detailforms__title.referalls {
  margin-bottom: 50px;
}
.detailforms__title.referalls::after {
  background-color: #FB7EFE;
  content: attr(data-reffs);
}

@media screen and (min-width: 1025px) {
  .profilemain__mywishlist h2.wishlist {
    margin-bottom: 40px;
  }
}
.profilemain__mywishlist__ul {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .profilemain__mywishlist__ul {
    grid-auto-rows: 336px;
  }
}
.profilemain__mywishlist__li {
  padding-bottom: 31px;
  border-bottom: 1px solid #E6E6E6;
  margin-bottom: 30px;
  display: grid;
  grid-gap: 16px;
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .profilemain__mywishlist__li {
    grid-template-columns: auto 1fr;
    grid-gap: 30px;
    align-items: center;
    height: 336px;
  }
}
.profilemain__mywishlist__li__imgbox {
  width: 335px;
  height: 295px;
  display: flex;
}
.profilemain__mywishlist__li__imgbox img {
  width: 100%;
  padding: 100%;
  object-fit: contain;
  padding: 35px;
}
@media screen and (min-width: 1025px) {
  .profilemain__mywishlist__li__imgbox img {
    padding: 35px 15px;
  }
}
@media screen and (min-width: 1025px) {
  .profilemain__mywishlist__li__info {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: space-between;
    height: 190px;
  }
}
.profilemain__mywishlist__li__info .homemain__populars__slide__price {
  margin-bottom: 16px !important;
}
.profilemain__mywishlist__li__header {
  width: 100%;
  display: grid;
  grid-gap: 20px;
  margin-bottom: 20px;
}
@media screen and (min-width: 1025px) {
  .profilemain__mywishlist__li__header {
    margin-bottom: 0;
    grid-template-columns: 1fr auto;
    grid-gap: 10px;
    align-items: flex-start;
    align-content: flex-start;
  }
}
.profilemain__mywishlist__li__header h3 {
  font-family: firagosemibold;
  font-size: 24px;
  line-height: 33.6px;
  font-weight: 600;
  color: #131313;
  margin-bottom: 8px;
  text-transform: uppercase;
  font-feature-settings: "case" on;
}
@media screen and (min-width: 1025px) {
  .profilemain__mywishlist__li__header h3 {
    margin-bottom: 10px;
  }
}
.profilemain__mywishlist__li__header__right {
  order: -1;
}
@media screen and (min-width: 1025px) {
  .profilemain__mywishlist__li__header__right {
    order: 0;
  }
}
.profilemain__mywishlist__li__expiresin {
  font-family: firagobook;
  font-size: 14px;
  line-height: 19.6px;
  color: #000;
}
.profilemain__mywishlist__li__instock {
  color: var(--cl);
  display: flex;
  align-items: center;
  width: max-content;
  font-size: 16px;
  line-height: 22.4px;
  font-family: firagobook;
  font-weight: 400;
  text-transform: capitalize;
}
.profilemain__mywishlist__li__instock::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--cl);
  margin-right: 10px;
}
.profilemain__mywishlist__li__instock[data-instock=red] {
  --cl: #FF5E5E;
}
.profilemain__mywishlist__li__instock[data-instock=green] {
  --cl: #35D324;
  outline: none;
}
@media screen and (min-width: 1025px) {
  .profilemain__mywishlist__li__updateform {
    display: grid;
    grid-template-columns: repeat(4, minmax(auto, 1fr));
    align-items: center;
  }
}
@media screen and (min-width: 1025px) {
  .profilemain__mywishlist__li__updateform .productinmain__info__radio.colors, .profilemain__mywishlist__li__updateform .productinmain__info__radio.milligrams {
    margin-bottom: 0 !important;
  }
}
@media screen and (min-width: 1025px) {
  .profilemain__mywishlist__li__updateform .productinmain__info__basketform__quantity {
    height: 44px;
  }
}
.profilemain__mywishlist__li__updateform .yellowbtn {
  height: 40px;
  width: 100%;
  border-radius: 60px;
  min-width: 147px;
  width: 100%;
  max-width: unset;
}
@media screen and (min-width: 1025px) {
  .profilemain__mywishlist__li__updateform .yellowbtn {
    margin-left: 5px;
    min-width: 147px;
  }
}
.profilemain__mywishlist__li__updateform__btns {
  display: grid;
  align-self: flex-end;
  justify-self: flex-end;
  grid-template-columns: 1fr auto;
  grid-gap: 10px;
  margin-top: 30px;
  align-items: center;
  margin-left: 0;
}
@media screen and (min-width: 700px) {
  .profilemain__mywishlist__li__updateform__btns {
    grid-gap: 30px;
  }
}
@media screen and (min-width: 1025px) {
  .profilemain__mywishlist__li__updateform__btns {
    width: 100%;
    grid-gap: 20px;
  }
}
.profilemain__mywishlist__li__updateform__btns__rmv {
  width: 18px;
  height: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.formsec {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1025px) {
  .formsec:not(:first-child) {
    position: relative;
    padding-left: 51px;
    margin-left: 50px;
  }
  .formsec:not(:first-child)::before {
    content: "";
    height: 44px;
    display: flex;
    width: 1px;
    position: absolute;
    left: 0;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
  }
}
.formsec__title {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 19.6px;
  font-family: firagobook;
  font-weight: 400;
  color: #707477;
  text-transform: capitalize;
}

.minus_quantity_in_wishlist, .plus_quantity_in_wishlist {
  height: 24px;
}
.minus_quantity_in_wishlist.inactive, .plus_quantity_in_wishlist.inactive {
  pointer-events: none;
}
.minus_quantity_in_wishlist.inactive svg path, .plus_quantity_in_wishlist.inactive svg path {
  fill: rgba(112, 116, 119, 0.3);
}

.orderresultmain {
  padding: 20px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
}
@media screen and (min-width: 1025px) {
  .orderresultmain {
    height: 100vh;
    display: grid;
    padding: 0;
    padding-left: 50px;
    grid-template-columns: 1fr 515px;
  }
}
.orderresultmain__title {
  font-family: firagobold;
  font-size: 24px;
  line-height: 28.8px;
  color: #131313;
  text-transform: uppercase;
  font-feature-settings: "case" on;
  margin-bottom: 30px;
}
@media screen and (min-width: 1025px) {
  .orderresultmain__title {
    margin-bottom: 72px;
  }
}
@media screen and (min-width: 1025px) {
  .orderresultmain__title.mob {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .orderresultmain__title.desk {
    display: none;
  }
}
.orderresultmain__left {
  order: 1;
}
@media screen and (min-width: 1025px) {
  .orderresultmain__left {
    order: 0;
    padding: 50px 0;
    display: flex;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    padding-right: 30px;
  }
}
.orderresultmain__left__message {
  font-family: firagobook;
  font-weight: 400;
  font-size: 24px;
  line-height: 33.6px;
  margin-bottom: 20px;
  max-width: 368px;
  color: #131313;
}
.orderresultmain__left__message b {
  font-weight: 700;
  font-family: firagobold;
}
.orderresultmain__left__confirmation {
  font-size: 16px;
  line-height: 19.6px;
  font-family: firagobook;
  font-weight: 400;
  color: #707477;
  margin-bottom: 80px;
}
@media screen and (min-width: 1025px) {
  .orderresultmain__left__confirmation {
    margin-bottom: 0;
  }
}
.orderresultmain__left__confirmation a {
  color: #343434;
}
@media screen and (min-width: 1025px) {
  .orderresultmain__left__bottom {
    display: flex;
    align-items: flex-end;
    flex-grow: 1;
    justify-content: space-between;
  }
}
.orderresultmain__left__bottom .transparentbtn {
  white-space: nowrap;
  flex-shrink: 0;
}
@media screen and (min-width: 1025px) {
  .orderresultmain__left__bottom .transparentbtn {
    margin-left: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .orderresultmain__left__bottom .transparentbtn {
    width: calc(100% - 40px);
    max-width: unset;
    display: flex;
    justify-content: center;
    position: fixed;
    left: 20px;
    background-color: #fff;
    bottom: 20px;
  }
  .orderresultmain__left__bottom .transparentbtn:focus, .orderresultmain__left__bottom .transparentbtn:active {
    background-color: #00B4FB;
  }
}
.orderresultmain__left__bottom__left {
  max-width: 320px;
}
.orderresultmain__left__bottom__hello {
  text-transform: capitalize;
  margin-bottom: 30px;
  font-family: firagosemibold;
  font-size: 14px;
  line-height: 19.6px;
  font-weight: 600;
  color: #343434;
}
.orderresultmain__left__bottom__message {
  font-family: firagobook;
  font-size: 14px;
  line-height: 19.6px;
  color: #343434;
  margin-bottom: 141px;
}
@media screen and (min-width: 1025px) {
  .orderresultmain__left__bottom__message {
    margin-bottom: 0;
  }
}
.orderresultmain__summary {
  height: 100%;
  background-color: #F2FBFF;
  margin-bottom: 30px;
  overflow: hidden;
  --height: max-content;
}
@media screen and (min-width: 1025px) {
  .orderresultmain__summary {
    overflow: auto;
    padding-top: 60px;
    padding-left: 20px;
    padding-right: 30px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1024px) {
  .orderresultmain__summary {
    height: 54px;
    border-radius: 30px;
    padding: 0 20px;
    margin-bottom: 41px;
    transition: height 0.4s ease-out;
  }
  .orderresultmain__summary.toggled {
    height: var(--height);
  }
  .orderresultmain__summary.toggled .orderresultmain__summary__headtext::after {
    transform: rotate(-180deg);
  }
}
.orderresultmain__summary__headtext {
  margin-bottom: 40px;
  font-family: firagosemibold;
  color: #131313;
  letter-spacing: 0.012em;
  font-size: 18px;
  line-height: 25.2px;
  font-weight: 600;
}
@media screen and (min-width: 1025px) {
  .orderresultmain__summary__headtext {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .orderresultmain__summary__headtext {
    height: 54px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .orderresultmain__summary__headtext::after {
    content: url(../img/ordersummary.svg);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 12px;
    width: 12px;
    transition: transform 0.4s ease-out;
    transform-origin: center;
    overflow: hidden;
  }
}
.orderresultmain__summary__details {
  display: grid;
  grid-gap: 30px;
  width: 100%;
  align-items: center;
  height: max-content;
  margin-bottom: 30px;
}
.orderresultmain__summary__details__item {
  display: grid;
  grid-template-columns: 145px 1fr;
}
.orderresultmain__summary__details__item:not(:last-of-type) {
  align-items: center;
}
.orderresultmain__summary__details__label {
  color: #707477;
}
.orderresultmain__summary__details__label, .orderresultmain__summary__details__value, .orderresultmain__summary__details__value span {
  font-family: firagobook;
  font-weight: 400;
  font-size: 14px;
  line-height: 19.6px;
}
.orderresultmain__summary__details__value, .orderresultmain__summary__details__value span {
  color: #343434;
}
.orderresultmain__summary__details__value {
  display: grid;
  height: max-content;
  grid-gap: 6px;
  flex-direction: column;
}
.orderresultmain__summary__prods__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 1025px) {
  .orderresultmain__summary__prods__header {
    grid-column: 2/3;
  }
}
.orderresultmain__summary__prods__header__container {
  margin-bottom: 30px;
}
@media screen and (min-width: 1025px) {
  .orderresultmain__summary__prods__header__container {
    display: grid;
    grid-template-columns: 145px 1fr;
    align-items: center;
    height: max-content;
  }
}
.orderresultmain__summary__prods__header__label {
  font-family: firagobook;
  color: #000;
  font-size: 14px;
  line-height: 19.6px;
  font-weight: 400;
}
.orderresultmain__summary__prods__header__value {
  font-size: 14px;
  line-height: 19.6px;
  color: #000;
  font-family: firagosemibold;
  font-weight: 600;
}
.orderresultmain__summary__prods__ul {
  margin-bottom: 30px;
  display: grid;
  grid-gap: 10px;
  grid-auto-rows: 70px;
}
@media screen and (min-width: 1025px) {
  .orderresultmain__summary__prods__ul {
    grid-gap: 20px;
  }
}
.orderresultmain__summary__prods__ul__li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.orderresultmain__summary__prods__ul__li__imgbox {
  width: 70px;
  height: 100%;
}
.orderresultmain__summary__prods__ul__li__imgbox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.orderresultmain__summary__prods__ul__li__title {
  margin: 0 10px;
  height: 100%;
  display: flex;
  align-items: center;
  text-align: left;
  max-width: 150px;
  color: #131313;
  font-family: firago;
  font-size: 14px;
  line-height: 19.6px;
  font-weight: 400;
}
.orderresultmain__summary__prods__ul__li__right {
  display: grid;
  align-items: center;
  grid-gap: 10px;
  grid-template-columns: auto auto;
  width: max-content;
  width: 80px;
}
@media screen and (min-width: 1025px) {
  .orderresultmain__summary__prods__ul__li__right {
    grid-gap: 15px;
    width: 85px;
  }
}
.orderresultmain__summary__prods__ul__li__right div {
  white-space: nowrap;
}
.orderresultmain__summary__prods__ul__li__qty, .orderresultmain__summary__prods__ul__li__price {
  color: #131313;
  font-size: 14px;
  line-height: 19.6px;
  font-family: firagobook;
  font-weight: 400;
}
.orderresultmain__summary__prods__ul__li__price {
  font-family: firagosemibold;
  font-weight: 600;
}

.profilemain__referrals.forchart {
  position: relative;
  margin-bottom: 38px;
}
@media screen and (min-width: 1025px) {
  .profilemain__referrals.forchart {
    margin-bottom: 50px;
  }
}
.profilemain__referrals__h1 {
  font-family: firagothin;
  font-weight: 100;
  font-size: 64px;
  line-height: 76.8px;
  color: #131313;
  margin-bottom: 70px;
  text-align: center;
}
.profilemain__referrals__h1 span {
  font-style: italic;
  font-family: firagothinitalic;
}
.profilemain__referrals__progressbar {
  height: 63px;
  position: relative;
  margin: 0 auto;
  max-width: 845px;
  display: flex;
  align-items: center;
  margin-bottom: 70px;
}
.profilemain__referrals__progressbar__line {
  width: 100%;
  height: 6px;
  z-index: 1;
  display: flex;
  border-radius: 10px;
}
.profilemain__referrals__progressbar__line.grey {
  background-color: #E6E6E6;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.profilemain__referrals__progressbar__line.yellow {
  --width: 25.00;
  z-index: 2;
  position: relative;
  background-color: #00B4FB;
  width: calc(var(--width) / 50 * 100%);
}
.profilemain__referrals__progressbar__line.yellow[data-price="0"] {
  display: none;
}
.profilemain__referrals__progressbar__line.yellow::before {
  border-color: #00B4FB;
}
.profilemain__referrals__progressbar__line.yellow::after {
  border: none;
  right: 0;
  background-color: #00B4FB;
  width: 4px;
  height: 18px;
  border-radius: 0;
  transform: translate(50%, -50%);
}
.profilemain__referrals__progressbar__line::before, .profilemain__referrals__progressbar__line::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 5px solid #E6E6E6;
  background-color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  box-sizing: border-box;
}
.profilemain__referrals__progressbar__line::before {
  left: 0;
  transform: translate(-50%, -50%);
}
.profilemain__referrals__progressbar__line::after {
  right: 0;
  transform: translate(50%, -50%);
}
.profilemain__referrals__progressbar span {
  position: absolute;
  top: 46px;
  font-family: firagosemibold;
  font-size: 14px;
  line-height: 16.8px;
  color: #707477;
  font-weight: 600;
}
.profilemain__referrals__progressbar span.current {
  top: 0;
  font-family: firagobold;
  font-size: 14px;
  line-height: 16.8px;
  color: #131313;
  text-transform: uppercase;
  font-feature-settings: "case" on;
  font-weight: 700;
  left: calc(var(--left) / 50 * 100%);
  transform: translateX(-50%);
}
.profilemain__referrals__progressbar span.current[data-price="0"] {
  display: none;
}
.profilemain__referrals__progressbar span.lowest {
  left: 0;
}
@media screen and (min-width: 1025px) {
  .profilemain__referrals__progressbar span.lowest {
    transform: translateX(-50%);
  }
}
.profilemain__referrals__progressbar span.highest {
  right: 0;
}
@media screen and (min-width: 1025px) {
  .profilemain__referrals__progressbar span.highest {
    transform: translateX(50%);
  }
}
@media screen and (min-width: 1025px) {
  .profilemain__referrals .homemain__interestedInDiscounts {
    max-width: 1086px;
    margin: 0 auto;
  }
}
.profilemain__referrals__charts * {
  font-family: firagobook !important;
  font-size: 14px !important;
  line-height: 16.8px !important;
  color: #707477 !important;
  font-weight: 350 !important;
}

.apexcharts-legend-marker {
  border-radius: 50% !important;
}

.apexcharts-legend.apexcharts-align-center.position-bottom {
  display: none !important;
}

@media screen and (min-width: 1025px) {
  .forchart {
    padding: 40px;
    border-radius: 30px;
    border: 1px solid #E6E6E6;
  }
}
.forchart__reflink {
  display: grid;
  margin-bottom: 38px;
  cursor: pointer;
  border-radius: 50px;
  padding: 15px 20px;
  background-color: #F2FBFF;
  grid-gap: 10px;
  justify-content: center;
  justify-items: center;
}
@media screen and (min-width: 700px) {
  .forchart__reflink {
    grid-template-columns: repeat(3, 1fr);
    justify-items: flex-start;
  }
}
@media screen and (min-width: 1025px) {
  .forchart__reflink {
    margin-bottom: 50px;
  }
}
.forchart__reflink__title {
  text-transform: uppercase;
  font-feature-settings: "case" on;
  font-family: firagosemibold;
  font-size: 14px;
  line-height: 25.2px;
  font-weight: normal;
  color: #131313;
}
.forchart__reflink input {
  color: #131313;
  pointer-events: none;
  font-family: firago;
  font-size: 18px;
  line-height: 25.2px;
  font-weight: 400;
}
@media screen and (min-width: 700px) {
  .forchart__reflink input {
    justify-self: center;
  }
}
.forchart__reflink::after {
  content: url(../img/clipboard.svg);
  display: inline-block;
  height: 24px;
  width: 24px;
}
@media screen and (min-width: 700px) {
  .forchart__reflink::after {
    justify-self: flex-end;
  }
}
.forchart__header {
  display: grid;
  margin-bottom: 30px;
  grid-gap: 10px;
}
@media screen and (min-width: 1025px) {
  .forchart__header {
    grid-template-columns: auto 1fr;
    margin-bottom: 50px;
    grid-gap: 114px;
    align-items: center;
  }
}
.forchart__header__left {
  display: grid;
  grid-gap: 10px;
  margin-bottom: 10px;
}
@media screen and (min-width: 1025px) {
  .forchart__header__left {
    grid-template-columns: auto 1fr;
    margin-bottom: 50px;
    grid-gap: 114px;
    align-items: center;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1025px) {
  .forchart__header__right {
    width: 150px;
    justify-self: flex-end;
  }
}
.forchart__header__right .ns {
  border-radius: 30px !important;
}
.forchart__header__right .ns__activetext {
  padding: 0 20px;
}
.forchart__header .detailforms__title {
  margin-bottom: 0 !important;
}
.forchart__header .legends {
  display: grid;
  grid-template-columns: auto auto;
  grid-gap: 40px;
  width: max-content;
  align-items: center;
}
.forchart__header .legends__refs, .forchart__header .legends__earned {
  display: flex;
  align-items: center;
  font-family: firagobook;
  font-size: 14px;
  line-height: 16.8px;
  color: #131313;
  font-weight: 350;
  text-transform: capitalize;
}
.forchart__header .legends__refs::before, .forchart__header .legends__earned::before {
  content: "";
  border-radius: 50%;
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 12px;
}
.forchart__header .legends__refs::before {
  background-color: #9D8EC8;
}
.forchart__header .legends__earned::before {
  background-color: #B7C88E;
}

.apexcharts-tooltip.apexcharts-theme-light.apexcharts-active, .apexcharts-tooltip-title {
  border: none !important;
  background: #131313 !important;
  color: #fff !important;
  border-radius: 10px !important;
  padding: 20px !important;
  padding-left: 25px !important;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 5px 100%);
  border-bottom-left-radius: 0% !important;
}
.apexcharts-tooltip.apexcharts-theme-light.apexcharts-active *, .apexcharts-tooltip-title * {
  color: #fff !important;
}

.apexcharts-tooltip.apexcharts-theme-light .apexcharts-tooltip-title {
  color: #fff !important;
  border-bottom: none !important;
  display: none !important;
}

.addtofav.added {
  background-color: #00B4FB !important;
  border-color: #00B4FB !important;
}

.addtofav, .addtocompare {
  height: 36px;
  width: 36px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.addtofav.added svg path, .addtocompare.added svg path {
  fill: white;
}

@media screen and (min-width: 1025px) {
  .referralusers h2.detailforms__title {
    margin-bottom: 40px;
  }
}
.referralusers__inviter {
  margin-bottom: 30px;
}
.referralusers__inviter span {
  font-family: firagobook;
  font-size: 18px;
  line-height: 25.2px;
  color: #131313;
  font-weight: 350;
}
.referralusers__inviter span.bold {
  font-family: firagosemibold;
  font-weight: 600;
  text-transform: capitalize;
}
.referralusers__table__headings {
  display: none;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 5px;
  align-items: center;
  justify-items: center;
  margin-bottom: 10px;
}
@media screen and (min-width: 1025px) {
  .referralusers__table__headings {
    display: grid;
  }
}
.referralusers__table__headings li {
  font-family: firagobook;
  font-size: 14px;
  line-height: 25.2px;
  color: #707477;
  font-weight: 350;
}
.referralusers__table__list {
  width: 100%;
}
.referralusers__table__list li {
  grid-gap: 5px;
  display: grid;
  padding-top: 17px;
  padding-bottom: 17px;
}
@media screen and (min-width: 1025px) {
  .referralusers__table__list li {
    padding-top: 37px;
    padding-bottom: 37px;
    align-items: center;
    justify-items: center;
    grid-template-columns: repeat(5, 1fr);
  }
}
.referralusers__table__list li:not(:last-child) {
  padding-bottom: 18px;
  border-bottom: 1px solid #E6E6E6;
}
@media screen and (min-width: 1025px) {
  .referralusers__table__list li:not(:last-child) {
    padding-bottom: 38px;
  }
}
.referralusers__table__list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 1025px) {
  .referralusers__table__list__item {
    display: block;
  }
}
.referralusers__table__list__item span {
  font-family: firagobook;
  font-size: 18px;
  line-height: 25.2px;
  font-weight: 350;
  color: #000;
}
@media screen and (min-width: 1025px) {
  .referralusers__table__list__item .label {
    display: none;
  }
}
.referralusers__table__list__item .value.activeness::after {
  content: attr(data-activeness);
  color: #CB4141;
  display: inline-block;
  text-transform: capitalize;
  font-family: firagobook;
  font-size: 18px;
  line-height: 25.2px;
  font-weight: 350;
}
.referralusers__table__list__item .value.activeness[data-color=green]::after {
  color: #41CB71;
}

.comparemain__content {
  width: 100%;
  height: auto;
  overflow: hidden;
  cursor: grab;
  overflow-x: auto;
  margin-bottom: 50px;
  padding-bottom: 20px;
}
.comparemain__content::-webkit-scrollbar {
  width: 0;
  height: 0;
  background-color: transparent;
}
.comparemain__content::-webkit-scrollbar-thumb {
  border-radius: 30px;
  background-color: transparent;
}
.comparemain__content::-webkit-scrollbar-track {
  margin: 15px 0;
  background-color: transparent;
}
@media screen and (min-width: 1025px) {
  .comparemain__content {
    margin-bottom: 90px;
  }
  .comparemain__content::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background-color: transparent;
  }
  .comparemain__content::-webkit-scrollbar-thumb {
    border-radius: 30px;
    background-color: #00B4FB;
  }
  .comparemain__content::-webkit-scrollbar-track {
    margin: 15px 0;
    background-color: transparent;
  }
}
.comparemain__table {
  margin: -1px;
  border: 2px solid #fff;
  table-layout: fixed;
  border-collapse: collapse;
  display: inline-table;
}
.comparemain__table .homemain__sales__item__bagNprice svg path {
  fill: #131313;
}
.comparemain__table tbody, .comparemain__table thead {
  width: 100%;
}
.comparemain__table tbody {
  position: relative;
}
.comparemain__table tbody tr td:first-child {
  border-right-color: transparent !important;
}
.comparemain__table tbody tr td:nth-child(2) {
  border-left-color: transparent !important;
}
.comparemain__table tbody tr td.td_sticky {
  text-align: left;
  font-family: firagobold;
  font-weight: 600;
  border: none !important;
  position: sticky;
  left: -1px;
  z-index: 1;
  background-color: white;
  padding: 0;
}
.comparemain__table tbody tr td.td_sticky span {
  display: inline-block;
}
.comparemain__table tbody tr td.td_sticky:not(.td_break) span {
  border-right: 1px solid #E6E6E6 !important;
}
.comparemain__table tbody tr td.td_sticky.td_break span {
  padding: 36px 10px;
  padding-left: 0;
}
.comparemain__table tbody tr:not(:last-of-type) td:first-child span {
  border-bottom: 1px solid #E6E6E6;
}
.comparemain__table tbody tr td:first-child span {
  margin-right: -5px;
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: white;
  padding: 14px 10px;
  padding-left: 0;
}
.comparemain__table td {
  border: 1px solid #E6E6E6;
  text-align: center;
  font-size: 14px;
  line-height: 19.6px;
}
.comparemain__table td h2 {
  margin-bottom: 20px;
  font-family: firagosemibold;
  font-size: 18px;
  line-height: 25.2px;
  text-transform: uppercase;
  font-feature-settings: "case" on;
}
.comparemain__table td h2 a {
  font-family: inherit;
  font-weight: inherit;
  color: inherit;
}
.comparemain__table td .td_ingr::after {
  content: url(../img/ingr-x.svg);
}
.comparemain__table td .td_ingr[data-value=true]::after {
  content: url(../img/ingr-check.svg);
}
.comparemain__table td .td_item[data-color]::after {
  content: "";
  background-color: var(--color);
  display: inline-block;
  aspect-ratio: 1/1;
  border-radius: 50%;
  height: 19px;
}
.comparemain__table tr td {
  padding: 14px;
}
.comparemain__table tr td:first-of-type {
  font-family: firagosemibold;
  text-transform: capitalize;
}
.comparemain__table tr.heading {
  cursor: default;
}
.comparemain__table tr.heading td {
  padding: 20px 10px;
}
.comparemain__table .td_image {
  display: block;
  margin: 0 32px;
  width: 250px;
  aspect-ratio: 1/1;
  height: 250px;
  margin-bottom: 16px;
}
.comparemain__table .td_image img {
  width: 100%;
  height: 1005;
  object-fit: contain;
}

.clearcomparison {
  margin: 0 auto;
  margin-bottom: 40px;
}
@media screen and (min-width: 1025px) {
  .clearcomparison {
    margin-bottom: 80px;
  }
}

.td_break {
  border-color: transparent;
  text-align: left;
  position: relative;
  overflow: hidden;
  border-color: transparent !important;
  min-width: 135px;
}
@media screen and (min-width: 1025px) {
  .td_break {
    min-width: 350px;
  }
}
.td_break ~ td {
  border-color: transparent !important;
  padding: 33px 0;
}
.td_break > span {
  border: none !important;
  border-right-color: #E6E6E6 !important;
  border-color: transparent !important;
  display: flex !important;
  z-index: 10;
  font-family: firagobold;
  text-transform: uppercase;
  font-feature-settings: "case" on;
  text-transform: uppercase !important;
  font-size: 18px;
  line-height: 25.2px;
}

.tr_break {
  position: relative;
  overflow: hidden;
}
.tr_break::after {
  width: 100px;
  height: 1px;
  border-bottom: 1px solid #E6E6E6;
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 135px;
  width: calc(100% - 135px);
}
@media screen and (min-width: 1025px) {
  .tr_break::after {
    left: 350px;
    width: calc(100% - 350px);
  }
}

.nobottombr td {
  border-bottom-color: transparent !important;
}
.nobottombr td span {
  border-bottom-color: transparent !important;
}

.notopbr td {
  border-top-color: transparent !important;
}

.addtobag.added svg path {
  fill: #00B4FB;
}
.addtobag.added .add {
  color: #00B4FB;
}

.addtobag.addinbasketbtn.inform.added svg path {
  fill: #00B4FB;
}
.addtobag.addinbasketbtn.inform svg path {
  fill: #131313;
}

.relative_td {
  position: relative;
}

.removeFromCompare {
  position: absolute;
  top: 30px;
  cursor: pointer;
  z-index: 2;
  right: 30px;
}
.removeFromCompare::after {
  content: url(../img/basketremove.svg);
  display: inline-block;
  width: 100%;
  height: 100%;
}

.heading_td_fixed {
  text-align: left;
  font-family: firagobold;
  font-weight: 600;
  border: none !important;
  position: sticky;
  left: -1px;
  z-index: 3;
  background-color: white;
  padding: 0;
}
.heading_td_fixed span {
  display: inline-block;
}
.heading_td_fixed:not(.td_break) span {
  border-right: 1px solid #E6E6E6 !important;
}
.heading_td_fixed.td_break span {
  padding: 36px 10px;
  padding-left: 0;
}

.emptycomparedots {
  height: 0;
  width: 100%;
  overflow-x: hidden;
}
.emptycomparedots_left, .emptycomparedots_right {
  position: absolute;
  display: inline-block;
}
.emptycomparedots_left {
  background: url(../img/emptycomparedotsleft.png) no-repeat;
  background-size: contain;
  top: 367px;
  left: -35px;
  width: 174px;
  height: 101.72px;
}
.emptycomparedots_right {
  background: url(../img/emptycomparedotsright.png) no-repeat;
  background-size: contain;
  top: 310px;
  right: 0;
  width: 32px;
  height: 152px;
  opacity: 0.2;
}

.compareemptymain {
  position: relative;
  padding-top: 50px;
  color: #131313;
  margin-bottom: 40px !important;
}
@media screen and (min-width: 1025px) {
  .compareemptymain {
    margin-bottom: 80px !important;
  }
}
@media screen and (min-width: 1025px) {
  .compareemptymain {
    padding-top: 90px;
  }
}
.compareemptymain > h1, .compareemptymain > h2 {
  text-align: center;
  font-family: firagosemibold;
  font-weight: 600;
  color: #131313;
  margin-bottom: 0;
  font-size: 48px;
  line-height: 72px;
}
@media screen and (min-width: 1025px) {
  .compareemptymain > h1, .compareemptymain > h2 {
    font-size: 64px;
    line-height: 102px;
  }
}
.compareemptymain > h2 {
  font-size: 34px;
  line-height: 54px;
  font-family: firagomedium;
  font-weight: 500;
  margin-bottom: 50px;
}
@media screen and (min-width: 1025px) {
  .compareemptymain > h2 {
    margin-bottom: 90px;
  }
}
.compareemptymain__combiner {
  grid-template-columns: max(55%, 642px) auto;
  justify-content: space-between;
  grid-gap: 10px;
}
@media screen and (min-width: 1025px) {
  .compareemptymain__combiner {
    display: grid;
  }
}
.compareemptymain__cover {
  background: url(../img/emptycomparecover.png) no-repeat;
  background-size: contain;
  aspect-ratio: 26.4/19;
  position: relative;
}
.compareemptymain__cover::before {
  content: url(../img/emptycomparelines.svg);
  position: absolute;
  left: 125px;
  bottom: calc(100% - 3px);
}
.compareemptymain__text {
  position: relative;
}
.compareemptymain__text::after {
  content: url(../img/emptycomparelines.svg);
  margin-bottom: 20px;
  display: inline-block;
  width: 100%;
  text-align: right;
}
@media screen and (min-width: 1025px) {
  .compareemptymain__text::after {
    text-align: left;
    width: unset;
  }
}
.compareemptymain__text h3 {
  color: #131313;
  font-family: firagomedium;
  font-weight: 500;
  max-width: 250px;
  font-size: 18px;
  line-height: 28.4px;
  margin-bottom: 30px;
}
@media screen and (min-width: 1025px) {
  .compareemptymain__text h3 {
    margin-bottom: 40px;
    font-size: 24px;
    line-height: 38.4px;
  }
}
.compareemptymain__text .iconbtn {
  margin-bottom: 10px;
}
@media screen and (min-width: 1025px) {
  .compareemptymain__text .iconbtn {
    margin-bottom: 90px;
  }
}

.iconbtn {
  cursor: pointer;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F2FBFF;
  transition: background-color 0.1s ease;
}
.iconbtn svg path {
  transition: fill 0.1s ease;
}
.iconbtn:hover {
  background-color: #00B4FB;
}
.iconbtn:hover svg path {
  fill: white;
}

.td_colors {
  display: flex;
  grid-gap: 5px;
  grid-gap: 5px;
  justify-content: center;
}

.contactmain {
  padding-top: 20px;
  padding-top: 50px;
  margin-bottom: 40px;
}
@media screen and (min-width: 1025px) {
  .contactmain {
    margin-bottom: 80px;
  }
}
.contactmain__content {
  display: grid;
  grid-gap: 80px;
}
@media screen and (min-width: 1025px) {
  .contactmain__content {
    grid-gap: 0;
    grid-template-columns: 1fr 50%;
    align-items: stretch;
  }
}
.contactmain__form {
  color: #131313;
}
@media screen and (min-width: 1025px) {
  .contactmain__form {
    padding-right: 142px;
  }
}
.contactmain__form label {
  font-family: firagosemibold;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
  cursor: pointer;
  text-transform: uppercase;
  font-feature-settings: "case" on;
}
.contactmain__form .input-div {
  height: 54px;
  padding: 0 15px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  border: 1px solid #E6E6E6;
  margin-bottom: 20px;
}
.contactmain__form .input-div.focused {
  border-color: #131313;
}
.contactmain__form .input-div.invalid.invalid-shown {
  border-color: #DC6848;
}
.contactmain__form .input-div input, .contactmain__form .input-div textarea {
  width: 100%;
  height: 100%;
  display: inline-block;
  color: #131313;
  letter-spacing: 0.012em;
  font-size: 12px;
  line-height: 16.8px;
  font-family: firagosemibold;
}
.contactmain__form .input-div input::placeholder, .contactmain__form .input-div textarea::placeholder {
  font-family: firagobook;
  font-weight: 350;
  color: #131313;
  letter-spacing: 0.012em;
}
.contactmain__form .input-div textarea::-webkit-scrollbar {
  width: 2px;
  height: 2px;
  background-color: transparent;
}
.contactmain__form .input-div textarea::-webkit-scrollbar-thumb {
  border-radius: 30px;
  background-color: #00B4FB;
}
.contactmain__form .input-div textarea::-webkit-scrollbar-track {
  margin: 15px 0;
  background-color: transparent;
}
.contactmain__form .input-div.textarea-input {
  padding: 15px;
  height: 120px;
  margin-bottom: 40px;
}
.contactmain__form .input-div__icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
}
.contactmain__form .input-div__hr {
  height: 24px;
  width: 1px;
  background-color: #E6E6E6;
  border-radius: 2px;
  margin: 0 15px;
}
.contactmain__form button {
  max-width: unset !important;
}
.contactmain__info {
  order: -1;
}
@media screen and (min-width: 1025px) {
  .contactmain__info {
    order: 0;
  }
}
.contactmain__info__map {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 30px;
  margin-bottom: 20px;
}
@media screen and (min-width: 1025px) {
  .contactmain__info__map {
    margin-bottom: 40px;
  }
}
.contactmain__info__map #map {
  width: 100%;
  height: 100%;
}
.contactmain__info__contacts {
  display: grid;
  color: #131313;
  grid-gap: 20px;
}
@media screen and (min-width: 700px) {
  .contactmain__info__contacts {
    grid-template-columns: 1fr 1fr;
  }
}
.contactmain__info__contacts__item {
  display: flex;
  align-items: center;
  color: #131313;
}
.contactmain__info__contacts__item .icon {
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #F2FBFF;
  margin-right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contactmain__info__contacts__item .icon::before {
  width: 24px;
  height: 24px;
  display: inline-block;
}
.contactmain__info__contacts__item span {
  display: block;
  text-align: left;
}
.contactmain__info__contacts__item span:first-child {
  margin-bottom: 8px;
}
.contactmain__info__contacts__item div, .contactmain__info__contacts__item span {
  font-family: firagobook;
  font-weight: 350;
  color: #131313;
  font-size: 16px;
  line-height: 19.2px;
}
.contactmain__info__contacts__item.tel .icon::before {
  content: url(../img/contacticons/tel.svg);
}
.contactmain__info__contacts__item.wh .icon::before {
  content: url(../img/contacticons/wh.svg);
}
.contactmain__info__contacts__item.email .icon::before {
  content: url(../img/contacticons/email.svg);
}
.contactmain__info__contacts__item.addr .icon::before {
  content: url(../img/contacticons/addr.svg);
}

.newpasswordmain {
  color: #131313;
  padding-top: 40px;
  min-height: unset;
  padding-bottom: 40px;
}
@media screen and (min-width: 1025px) {
  .newpasswordmain {
    padding-bottom: 80px;
  }
}
.newpasswordmain h1 {
  font-family: firagosemibold;
  font-size: 34px;
  line-height: 47.6px;
  margin-bottom: 30px;
  text-transform: capitalize;
}
@media screen and (min-width: 1025px) {
  .newpasswordmain h1 {
    margin-bottom: 70px;
  }
}
@media screen and (min-width: 1025px) {
  .newpasswordmain__content {
    display: flex;
    align-items: center;
  }
}
.newpasswordmain__form {
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  color: #131313;
}
.newpasswordmain__form label {
  font-family: firagosemibold;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
  cursor: pointer;
  text-transform: uppercase;
  font-feature-settings: "case" on;
}
.newpasswordmain__form .input-div {
  height: 54px;
  padding: 0 15px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  border: 1px solid #E6E6E6;
  margin-bottom: 20px;
}
.newpasswordmain__form .input-div:last-of-type {
  margin-bottom: 40px;
}
.newpasswordmain__form .input-div.focused {
  border-color: #131313;
}
.newpasswordmain__form .input-div.invalid.invalid-shown {
  border-color: #DC6848;
}
.newpasswordmain__form .input-div input, .newpasswordmain__form .input-div textarea {
  width: 100%;
  height: 100%;
  display: inline-block;
  color: #131313;
  letter-spacing: 0.012em;
  font-size: 12px;
  line-height: 16.8px;
  font-family: firagosemibold;
}
.newpasswordmain__form .input-div input::placeholder, .newpasswordmain__form .input-div textarea::placeholder {
  font-family: firagobook;
  font-weight: 350;
  color: #131313;
  letter-spacing: 0.012em;
}
.newpasswordmain__form .input-div textarea::-webkit-scrollbar {
  width: 2px;
  height: 2px;
  background-color: transparent;
}
.newpasswordmain__form .input-div textarea::-webkit-scrollbar-thumb {
  border-radius: 30px;
  background-color: #00B4FB;
}
.newpasswordmain__form .input-div textarea::-webkit-scrollbar-track {
  margin: 15px 0;
  background-color: transparent;
}
.newpasswordmain__form .input-div__icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
}
.newpasswordmain__form .input-div__hr {
  height: 24px;
  width: 1px;
  background-color: #E6E6E6;
  border-radius: 2px;
  margin: 0 15px;
}
.newpasswordmain__form button {
  max-width: unset !important;
}

@media screen and (min-width: 1025px) {
  html body .header__navbar__shop {
    position: static;
    max-width: 230px;
    grid-gap: 50px !important;
    gap: 50px !important;
    border-right: 1px solid #E6E6E6;
  }
  html body .inner_li:first-child {
    margin-top: 0 !important;
  }
  html body .outer_li {
    position: static !important;
    cursor: pointer;
  }
  html body .outer_li.active > a {
    color: #00B4FB;
  }
  html body .outer_li.active .inner_ul {
    opacity: 1 !important;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 50px;
    padding-right: 50px;
  }
  html body .outer_li.active .inner_ul .outer_a {
    margin-bottom: 8px !important;
    text-transform: uppercase;
    font-feature-settings: "case" on;
    font-weight: 600;
    font-family: firagobold;
    color: #131313 !important;
  }
  html body .outer_li.active .inner_ul .outer_a::after {
    display: none !important;
  }
  html body .outer_li.active .inner_ul .inner_ul_last {
    height: max-content !important;
    opacity: 1 !important;
  }
  html body .outer_li.active .inner_ul .inner_li2 {
    padding-left: 0 !important;
  }
  html body .inner_ul {
    position: absolute;
    right: 0;
    top: 50px;
    width: 100%;
    opacity: 0 !important;
    z-index: -1;
    max-width: calc(100% - 110px - 230px);
  }
}

.aboutmain {
  padding-top: 20px;
  padding-top: 50px;
  margin-bottom: 40px;
}
@media screen and (min-width: 1025px) {
  .aboutmain {
    margin-bottom: 80px;
  }
}
.aboutmain > article {
  max-width: 964px;
  margin: 0 auto;
  width: 100%;
}

.blogsmain__section {
  padding-top: 50px;
}
.blogsmain__ul {
  display: grid;
  grid-gap: 20px 30px;
  margin-bottom: 50px;
}
@media screen and (min-width: 700px) {
  .blogsmain__ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1025px) {
  .blogsmain__ul {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1900px) {
  .blogsmain__ul {
    grid-template-columns: repeat(4, 1fr);
  }
}
.blogsmain__ul__li {
  display: flex;
  width: 100%;
  height: 350px;
  border-radius: 30px;
  border: 1px solid #E6E6E6;
  padding: 20px;
  flex-direction: column;
}
.blogsmain__ul__li__imgbox {
  width: 100%;
  height: 270px;
  display: flex;
  overflow: hidden;
  border-radius: 30px;
  margin-bottom: 16px;
}
.blogsmain__ul__li__imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blogsmain__ul__li__title {
  display: block;
  margin-bottom: 20px;
  font-family: firagosemibold;
  font-weight: 600;
  color: #131313;
}
.blogsmain__ul__li__link {
  border-radius: 30px;
  width: 100%;
  height: 54px;
  display: flex;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F2FBFF;
  color: #00B4FB;
  font-size: 14px;
  line-height: 19.6px;
  text-transform: uppercase;
  font-feature-settings: "case" on;
  font-family: firagosemibold;
  font-weight: 600;
  border: 1px solid #F2FBFF;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}
.blogsmain__ul__li__link:hover {
  background-color: white;
  border-color: #00B4FB;
}

.blogmain__article {
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: firagosemibold;
  font-weight: 600;
  color: #131313;
}
.blogmain__title {
  font-size: 34px;
  line-height: 47.4px;
  margin-bottom: 8px;
  text-align: center;
  font-weight: 700;
  font-family: firagobold;
}
.blogmain__time {
  margin-bottom: 40px;
  text-align: center;
  color: #999999;
  font-size: 14px;
  line-height: 20px;
}
.blogmain__imgbox {
  overflow: hidden;
  border-radius: 30px;
  margin: 0 auto;
  margin-bottom: 30px;
  height: max-content;
  line-height: 0 !important;
  max-height: 450px;
}
.blogmain__imgbox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.blogmain__textcontent {
  font-family: firagobook;
  font-weight: 350;
  color: #131313;
  font-size: 14px;
  line-height: 20px;
}
.blogmain__textcontent h1, .blogmain__textcontent h2, .blogmain__textcontent h3, .blogmain__textcontent h4, .blogmain__textcontent h5, .blogmain__textcontent h6 {
  font-family: firagosemibold;
  font-weight: 600;
}
.blogmain__textcontent h2 {
  font-size: 18px;
  line-height: 25.2px;
}

.error404 {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: firagomedium;
  text-align: center;
}
.error404__title {
  font-family: firagomedium;
  font-size: 32px;
  line-height: 51.2px;
  color: black;
  text-align: center;
}
.error404__img {
  margin: 40px 0 50px;
  font-family: inherit;
  font-size: 204px;
  line-height: 1.6;
  color: #00B4FB;
  text-align: center;
}

.faq {
  grid-gap: 30px;
  gap: 30px;
  overflow: auto;
  padding-top: 0;
  display: flex;
  height: auto;
  margin: 50px 0;
  flex-direction: column;
}
@media screen and (min-width: 1025px) {
  .faq {
    min-height: calc(100vh - 224px);
    flex-direction: row;
    display: block;
    margin: 50px 0;
    overflow: initial;
    gap: 0;
  }
}
.faq__tabs {
  width: 100%;
  flex-grow: 0;
  float: left;
  flex-shrink: 0;
  background: white;
  height: max-content;
  top: 130px;
  left: 0;
  padding: 0 20px;
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  .faq__tabs {
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 0;
    margin: 0;
    position: sticky;
    margin-left: calc((100% - 1350px) / 2);
    height: calc(100vh - 90px - 134px - 80px);
    overflow: auto;
    margin-right: 30px;
    max-width: 305px;
  }
  .faq__tabs::-webkit-scrollbar {
    display: none;
  }
}
.faq__tabs__select {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0;
}
@media screen and (min-width: 1025px) {
  .faq__tabs__select {
    display: none !important;
  }
}
.faq__tabs__li {
  display: none;
  cursor: pointer;
  width: 100%;
  padding: 10px 20px;
  border-radius: 84px;
  height: max-content;
  background-color: transparent;
  transition: 0.15 ease-in;
  font-family: firagomedium;
  font-size: 18px;
  line-height: 1.6;
}
@media screen and (min-width: 1025px) {
  .faq__tabs__li {
    display: block;
  }
}
.faq__tabs__li.active {
  font-family: firagosemibold;
  transition: 0.15 ease-out;
  background-color: rgba(0, 180, 251, 0.1);
  display: block;
}
.faq__contents {
  margin: 0 40px;
  display: flex;
  overflow: hidden;
}
.faq__contents::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  background-color: #F2FBFF;
}
.faq__contents::-webkit-scrollbar-thumb {
  border-radius: 30px;
  background-color: #00B4FB;
}
.faq__contents::-webkit-scrollbar-track {
  margin: 0;
  background-color: #F2FBFF;
}
@media screen and (min-width: 1025px) {
  .faq__contents {
    margin-right: calc((100% - 1390px) / 2);
    max-width: calc(1350px - 350px);
    margin: 50px 0;
    overflow: initial;
  }
}
.faq__contents__li {
  --height: max-content;
  flex-shrink: 0;
  width: 100%;
  font-family: firagobook;
  font-size: 14px;
  line-height: 20px;
  color: #131313;
  height: 0;
  overflow: hidden;
  position: relative;
  opacity: 0;
  padding-right: 20px;
  top: -30%;
  display: block;
  transition: height 1.5s ease-in, opacity 1.5s ease-in, top 1.3s cubic-bezier(0.455, -0.445, 0.94, -0.06);
}
.faq__contents__li:nth-of-type(0) {
  transform: translateX(calc(0 * 100% + 100%));
}
.faq__contents__li:nth-of-type(1) {
  transform: translateX(calc(-1 * 100% + 100%));
}
.faq__contents__li:nth-of-type(2) {
  transform: translateX(calc(-2 * 100% + 100%));
}
.faq__contents__li:nth-of-type(3) {
  transform: translateX(calc(-3 * 100% + 100%));
}
.faq__contents__li:nth-of-type(4) {
  transform: translateX(calc(-4 * 100% + 100%));
}
.faq__contents__li:nth-of-type(5) {
  transform: translateX(calc(-5 * 100% + 100%));
}
.faq__contents__li:nth-of-type(6) {
  transform: translateX(calc(-6 * 100% + 100%));
}
.faq__contents__li:nth-of-type(7) {
  transform: translateX(calc(-7 * 100% + 100%));
}
.faq__contents__li:nth-of-type(8) {
  transform: translateX(calc(-8 * 100% + 100%));
}
.faq__contents__li:nth-of-type(9) {
  transform: translateX(calc(-9 * 100% + 100%));
}
.faq__contents__li:nth-of-type(10) {
  transform: translateX(calc(-10 * 100% + 100%));
}
.faq__contents__li:nth-of-type(11) {
  transform: translateX(calc(-11 * 100% + 100%));
}
.faq__contents__li:nth-of-type(12) {
  transform: translateX(calc(-12 * 100% + 100%));
}
.faq__contents__li:nth-of-type(13) {
  transform: translateX(calc(-13 * 100% + 100%));
}
.faq__contents__li:nth-of-type(14) {
  transform: translateX(calc(-14 * 100% + 100%));
}
.faq__contents__li:nth-of-type(15) {
  transform: translateX(calc(-15 * 100% + 100%));
}
.faq__contents__li:nth-of-type(16) {
  transform: translateX(calc(-16 * 100% + 100%));
}
.faq__contents__li:nth-of-type(17) {
  transform: translateX(calc(-17 * 100% + 100%));
}
.faq__contents__li:nth-of-type(18) {
  transform: translateX(calc(-18 * 100% + 100%));
}
.faq__contents__li:nth-of-type(19) {
  transform: translateX(calc(-19 * 100% + 100%));
}
.faq__contents__li:nth-of-type(20) {
  transform: translateX(calc(-20 * 100% + 100%));
}
.faq__contents__li.active {
  top: 0;
  opacity: 1;
  transition: height 1.5s ease-out, opacity 1.5s ease-out, top 0.9s cubic-bezier(0.175, 1.025, 1, 1.65);
  height: var(--height);
}

.nodisplay {
  pointer-events: none !important;
  opacity: 0.5 !important;
}

.message-block {
  order: 1;
  text-align: right;
  width: 100%;
  flex-grow: 1;
}
@media screen and (min-width: 1025px) {
  .message-block {
    position: absolute;
    top: 100%;
    text-align: left;
    left: 0;
    order: 0;
  }
  .message-block::after {
    text-transform: capitalize;
    font-family: firagobook;
    font-size: 12px;
    line-height: 19.6px;
  }
}
.message-block.invalid::after {
  content: attr(data-invalidtext);
  color: #DC6848;
}
.message-block.valid::after {
  color: #00B4FB;
  content: attr(data-validtext);
}

.checkPromoCode {
  cursor: pointer;
}
.checkPromoCode svg {
  transition: transform 0.3s ease-in-ou;
}
.checkPromoCode:hover svg {
  transform: scaleX(1.2);
  transform-origin: left;
}

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