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

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

@font-face {
  font-family: lght;
  src: url(../fonts/45-Light.ttf);
}

@font-face {
  font-family: rmn;
  src: url(../fonts/55-Roman.ttf);
}

@font-face {
  font-family: bld;
  src: url(../fonts/75-Bold.ttf);
}

@font-face {
  font-family: boldoutline;
  -webkit-font-feature-settings: 'case' on;
          font-feature-settings: 'case' on;
  src: url(../fonts/helvetica-75-bold-outline-587ebe00b76ba.ttf) format("TrueType");
}

@font-face {
  font-family: lightcondensed;
  src: url(../fonts/helvetica-47-light-condensed-587ebd7b5a6f6.ttf);
}

@font-face {
  font-family: lightitalic;
  src: url(../fonts/helvetica-46-light-italic-587ebdb0ea724.ttf);
}

@font-face {
  font-family: thin;
  src: url(../fonts/HelveticaNeue-Thin.otf) format("TrueType");
}

@font-face {
  font-family: uppercasebold;
  src: url(../fonts/MyriadGEOMtavruliMedium.ttf);
}

@font-face {
  font-family: "medcondobl";
  src: url(../fonts/HelveticaNeue-MediumCondObl.otf);
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  resize: none;
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

input, input:before, input:after {
  -webkit-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 {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

a {
  text-decoration: none;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
}

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

div.default-ul p:not(:last-child) {
  margin-bottom: 1em;
}

div.default-ul ul li {
  list-style: initial;
  list-style-position: inside;
}

html {
  overflow-x: hidden;
}

@media screen and (min-width: 1025px) {
  html::-webkit-scrollbar {
    width: 10px;
    background-color: #fbfbfb;
  }
}

@media screen and (min-width: 1025px) {
  html::-webkit-scrollbar-thumb {
    background-color: #EA433D;
  }
}

@media screen and (min-width: 1025px) {
  html::-webkit-scrollbar-track {
    background-color: #fbfbfb;
  }
}

body {
  color: #171717;
  background-color: #FBFBFF;
}

header, footer, .login-menu-slider {
  padding: 0 10px !important;
}

@media screen and (min-width: 900px) {
  header, footer, .login-menu-slider {
    padding: 0 50px !important;
  }
}

@media screen and (min-width: 1441px) {
  header, footer, .login-menu-slider {
    padding: 0 140px !important;
  }
}

.login-menu-slider {
  padding: 0 15px !important;
}

@media screen and (min-width: 768px) {
  .login-menu-slider {
    padding: 0 50px !important;
  }
}

@media screen and (min-width: 1441px) {
  .login-menu-slider {
    padding: 0 140px !important;
  }
}

@media screen and (min-width: 1025px) {
  footer::after {
    margin: 0 50px !important;
  }
}

@media screen and (min-width: 1441px) {
  footer::after {
    margin: 0 140px !important;
  }
}

.success-error-message-outter, .productin-size-guide {
  position: fixed;
  width: 0;
  height: 0;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(23, 23, 23, 0.5);
  overflow: hidden;
  z-index: -999;
  opacity: 0;
  -webkit-transition: opacity .5s ease-in-out;
  transition: opacity .5s ease-in-out;
}

.success-error-message-outter.active, .productin-size-guide.active {
  height: 100%;
  width: 100%;
  opacity: 1;
  z-index: 4;
}

.success-error-message, .productin-size-guide-image-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 536px;
  height: 400px;
  max-width: calc( 100% - 60px);
  max-height: 70%;
  overflow: hidden;
  background-color: #fff;
  font-family: rmn;
  font-size: 16px;
  line-height: 19px;
}

.success-error-message-x-btn {
  position: absolute;
  top: 36px;
  right: 36px;
  cursor: pointer;
}

.success-error-message-x-btn svg {
  width: 20px;
  height: 20px;
}

.sign-svg-div {
  margin-bottom: 72px;
}

.productin-size-guide img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.productin-size-guide-image-container {
  width: 100%;
  height: 100%;
  max-width: 80%;
}

header {
  font-family: uppercasebold !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 131px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 100;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  background-color: #fff;
}

@media screen and (min-width: 769px) {
  header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    height: 160px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr auto 1fr;
        grid-template-columns: 1fr auto 1fr;
    grid-gap: 32px;
  }
}

header nav {
  color: #171717;
  font-size: 14px;
  line-height: 16px;
}

@media screen and (min-width: 769px) {
  header nav {
    min-width: 460px;
  }
}

@media screen and (min-width: 850px) {
  header nav {
    min-width: 480px;
  }
}

@media screen and (min-width: 950px) {
  header nav {
    min-width: 500px;
  }
}

@media screen and (min-width: 1025px) {
  header nav {
    min-width: 600px;
    font-size: 16px;
    line-height: 18px;
  }
}

@media screen and (min-width: 1441px) {
  header nav {
    min-width: 773px;
  }
}

header nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header nav ul li:not(.header-nav-logo) {
  display: none;
}

@media screen and (min-width: 769px) {
  header nav ul li:not(.header-nav-logo) {
    display: initial;
  }
}

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

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

.header-nav-ul li {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  -webkit-transition-duration: .1s;
          transition-duration: .1s;
}

@media screen and (min-width: 1025px) {
  .header-nav-ul li:hover {
    color: #C4B3FA;
  }
}

.header-nav-ul li:active, .header-nav-ul li.active {
  color: #C4B3FA;
}

.header-nav-ul li a {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  -webkit-transition-duration: .1s;
          transition-duration: .1s;
}

.header-nav-ul li a {
  text-transform: uppercase;
  font-family: uppercasebold !important;
}

a.hashtag-ig {
  color: #171717;
  font-size: 16px;
  line-height: 18px;
}

@media screen and (min-width: 769px) {
  a.hashtag-ig {
    font-size: 18px;
    line-height: 21px;
  }
}

.header-iconmenu-ul {
  display: none;
}

@media screen and (min-width: 769px) {
  .header-iconmenu-ul {
    justify-self: flex-end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.header-iconmenu-ul li:nth-child(2) {
  margin: 0 20px;
}

@media screen and (min-width: 1025px) {
  .header-iconmenu-ul li:nth-child(2) {
    margin: 0 40px;
  }
}

.header-nav-logo {
  margin-bottom: 9px;
}

.header-nav-logo img {
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (min-width: 769px) {
  .header-nav-logo {
    margin-bottom: 0;
  }
}

footer {
  background: #171717;
  color: white;
  min-height: 333px;
  margin-bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 30px 30px 0 0;
}

@media screen and (min-width: 1025px) {
  footer {
    position: relative;
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    justify-items: space-between;
    -ms-grid-columns: 1fr auto;
        grid-template-columns: 1fr auto;
    -ms-grid-rows: 1fr 100px;
        grid-template-rows: 1fr 100px;
    margin-bottom: 0;
    min-height: 458px;
    border-radius: 0;
  }
  footer::after {
    content: '';
    margin: 0 auto;
    width: calc(100% - 100px);
    height: 1px;
    display: block;
    position: absolute;
    bottom: 99px;
    background-color: rgba(255, 255, 255, 0.1);
  }
}

@media screen and (min-width: 1025px) and (min-width: 1441px) {
  footer::after {
    width: calc( 100% - 280px);
  }
}

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

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

.all-rights-reserved {
  font-family: rmn;
  font-size: 16px;
  line-height: 19px;
  padding-top: 40px;
  padding-bottom: 20px;
}

@media screen and (min-width: 1025px) {
  .all-rights-reserved {
    padding: 0;
    justify-self: flex-start;
  }
}

.logo-author-combined {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  justify-self: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 0 15px;
  padding-top: 37px;
  padding-bottom: 40px;
  -ms-flex-item-align: end;
      align-self: flex-end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

@media screen and (min-width: 1025px) {
  .logo-author-combined {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2 / 3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1 / 2;
    -webkit-box-ordinal-group: unset;
        -ms-flex-order: unset;
            order: unset;
    width: unset;
    padding: unset;
    -ms-flex-item-align: unset;
        -ms-grid-row-align: unset;
        align-self: unset;
    border-bottom: unset;
    margin-right: 60px;
    margin-left: 50px;
  }
}

@media screen and (min-width: 1441px) {
  .logo-author-combined {
    margin-left: 200px;
  }
}

.logo-author-combined svg, .logo-author-combined img {
  width: 120px;
  margin-bottom: 12px;
}

.logo-author-combined p {
  font-family: lght;
  font-size: 14px;
  line-height: 17px;
}

@media screen and (min-width: 1025px) {
  .logo-author-combined p {
    display: none;
  }
}

.logo-author-combined a {
  font-family: bld;
  color: #EA433D;
}

.footer-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 110px;
}

@media screen and (min-width: 1025px) {
  .footer-socials {
    justify-self: flex-end;
    display: none;
    padding-bottom: 0;
  }
}

.footer-socials a {
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer-socials a.ig {
  margin: 0 15px;
}

.footer-cat {
  margin-top: 37px;
  -webkit-box-ordinal-group: -1;
      -ms-flex-order: -2;
          order: -2;
  width: 100%;
}

@media screen and (min-width: 769px) {
  .footer-cat {
    width: unset;
    padding: 0;
    min-width: 50%;
  }
}

@media screen and (min-width: 1025px) {
  .footer-cat {
    -webkit-box-ordinal-group: unset;
        -ms-flex-order: unset;
            order: unset;
    margin: unset;
    min-width: unset;
  }
}

.footer-cat-ul {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #FBFBFF;
}

@media screen and (min-width: 1025px) {
  .footer-cat-ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.footer-cat-li {
  max-height: 24px;
  -webkit-transition: max-height -200ms 300ms ease-out;
  transition: max-height -200ms 300ms ease-out;
  overflow: hidden;
}

@media screen and (min-width: 1025px) {
  .footer-cat-li {
    max-height: unset !important;
  }
}

.footer-cat-li:not(:last-of-type) {
  margin-bottom: 18px;
}

.footer-cat-li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
  position: relative;
  font-family: uppercasebold !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  font-weight: 600 !important;
  margin-bottom: 29px;
  font-size: 18px;
  line-height: 21px;
}

.footer-cat-li span::after {
  content: '';
  display: block;
  background-image: url(../images/footer-plus.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
}

@media screen and (min-width: 1025px) {
  .footer-cat-li span::after {
    display: none !important;
  }
}

.footer-cat-li.active {
  max-height: 9999px;
  -webkit-transition: max-height 400ms ease-in;
  transition: max-height 400ms ease-in;
}

.footer-cat-li.active span::after {
  background-image: url(../images/footer-minus.svg);
}

.footer-subcat-ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: rmn;
  font-size: 16px;
  line-height: 19px;
}

.footer-subcat-ul li {
  margin-bottom: 20px;
  -webkit-transition-duration: .1s;
          transition-duration: .1s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

@media screen and (min-width: 1025px) {
  .footer-subcat-ul li:hover {
    color: #EA433D;
  }
}

.footer-subcat-ul li:active {
  color: #EA433D;
}

.footer-subcat-ul li a {
  -webkit-transition-duration: .1s;
          transition-duration: .1s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

.footer-subcat-ul li:last-child {
  margin-bottom: 0;
}

.desktop-madeIN p {
  font-family: lght;
  font-size: 14px;
  line-height: 17px;
  display: none;
}

@media screen and (min-width: 1025px) {
  .desktop-madeIN p {
    display: block;
  }
}

.desktop-madeIN a {
  font-family: bld;
  color: #EA433D;
}

.footer-cat-li:last-child {
  display: none;
}

@media screen and (min-width: 1025px) {
  .footer-cat-li:last-child {
    display: unset;
  }
}

.footer-cat-li:last-child a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer-cat-li svg {
  margin-right: 10px;
}

.active + .footer-cat-li {
  margin-top: 18px;
}

@media screen and (min-width: 1025px) {
  .active + .footer-cat-li {
    margin-top: 0;
  }
}

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

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

.respo-menu {
  position: fixed;
  bottom: -1px;
  z-index: 3;
  width: 100%;
  border-radius: 30px 30px 0 0;
  background-color: #fff;
}

.respo-menu .respo-menu-toggled-ul-container {
  height: 0;
  width: 100%;
  padding: 0 15px;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-transition: .3 ease-in;
  transition: .3 ease-in;
}

.respo-menu .respo-menu-toggled-ul {
  display: -ms-grid;
  display: grid;
  width: 100%;
  justify-items: center;
  padding-top: 29px;
  padding-bottom: 0;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-auto-rows: auto;
  grid-gap: 0;
  -webkit-transition: grid-gap .3s ease-in, padding-bottom .2s ease-in;
  transition: grid-gap .3s ease-in, padding-bottom .2s ease-in;
  border-bottom: 1px solid rgba(23, 23, 23, 0.1);
}

.respo-menu .respo-menu-toggled-ul li a {
  font-size: 16px;
  line-height: 18px;
  color: #171717;
  font-family: uppercasebold !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
}

.respo-menu .respo-menu-toggled-ul li:active a, .respo-menu .respo-menu-toggled-ul li.active a {
  color: #C4B3FA;
}

.respo-menu .respo-menu-others {
  height: 100px;
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
      grid-template-columns: repeat(5, 1fr);
  padding: 0 42px;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: none;
  transition: none;
}

.respo-menu.toggd .burger span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 6px;
}

.respo-menu.toggd .burger span:nth-child(2) {
  width: 0;
}

.respo-menu.toggd .burger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 6px;
}

.respo-menu.toggd .respo-menu-toggled-ul-container {
  height: 197px;
}

.respo-menu.toggd .respo-menu-toggled-ul {
  grid-gap: 18px;
  padding-bottom: 29px;
}

@media screen and (min-width: 1025px) {
  .respo-menu {
    display: none;
  }
}

.respo-menu .hr {
  display: block;
  width: 1px;
  height: 24px;
  background-color: #171717;
  border-radius: 5px;
  opacity: .1;
}

.respo-menu a {
  display: block;
  cursor: pointer;
}

.respo-menu a svg path {
  fill: #fff;
}

.respo-menu a.active svg path {
  stroke: #C4B3FA;
  fill: transparent;
}

.burger-container {
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.burger {
  display: block;
  height: 12px;
  position: relative;
  width: 32px;
  cursor: pointer;
}

.burger span {
  width: 32px;
  height: 2px;
  background-color: #171717;
  display: block;
  position: absolute;
  border-radius: 15px;
}

.burger span:nth-child(2) {
  top: 6px;
}

.burger span:nth-child(3) {
  top: 12px;
}

.home-main-section {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100%;
      grid-template-columns: 100%;
  grid-auto-rows: 250px;
}

@media screen and (min-width: 769px) {
  .home-main-section {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    grid-auto-rows: 450px;
  }
}

.home-main-section article {
  color: #fff;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 4fr 3fr;
      grid-template-columns: 4fr 3fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  -webkit-transition: none;
  transition: none;
}

.home-main-section article:nth-of-type {
  border-left: 5px solid black;
}

.home-main-section img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  overflow: visible;
  z-index: 1;
  right: 80px;
}

.article-right {
  height: 100%;
  width: 120%;
}

.article-right-imgdiv {
  position: relative;
  height: 100%;
  z-index: 1;
  overflow: visible;
  width: 100%;
}

.article-left {
  position: relative;
  z-index: 2;
  padding-left: 7.25vw;
  font-family: rmn;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: 100%;
  padding-right: 10%;
}

.article-left h1 {
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 20px;
  white-space: nowrap;
}

@media screen and (min-width: 769px) {
  .article-left h1 {
    font-size: 32px;
    line-height: 38px;
  }
}

.article-left > div {
  font-size: 11px;
  line-height: 14px;
  margin-bottom: 40px;
}

@media screen and (min-width: 769px) {
  .article-left > div {
    font-size: 14px;
    line-height: 20px;
  }
}

.article-left a {
  font-family: uppercasebold;
  text-transform: uppercase;
  font-size: 11px;
  line-height: 14px;
  letter-spacing: 0.4px;
  border-radius: 25px;
  border: 1px solid #fff;
  padding: 12px 21px 12px 26px;
  display: inline;
  white-space: nowrap;
}

@media screen and (min-width: 769px) {
  .article-left a {
    font-size: 14px;
    line-height: 17px;
    padding: 15px 26px 15px 32px;
  }
}

.article-left a:hover {
  background-color: #fff;
}

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

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

.home-aboutus {
  position: relative;
  font-family: bld;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100%;
      grid-template-columns: 100%;
  grid-auto-rows: minmax(262px, auto) auto;
}

@media screen and (min-width: 420px) {
  .home-aboutus {
    grid-auto-rows: minmax(262px, auto) 305px auto;
  }
}

@media screen and (min-width: 769px) {
  .home-aboutus {
    margin-bottom: 0;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    -ms-grid-rows: unset;
        grid-template-rows: unset;
    grid-auto-rows: 450px;
  }
}

.home-aboutus img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.home-aboutus h2 {
  font-size: 22px;
  line-height: 27px;
  font-family: uppercasebold;
  text-transform: uppercase;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-left: 15px;
  height: 86px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 420px) {
  .home-aboutus h2 {
    height: 129px;
    padding-top: 21.5px;
  }
}

@media screen and (min-width: 769px) {
  .home-aboutus h2 {
    padding-top: unset;
    padding-left: 0;
    height: unset;
    position: static;
    margin-bottom: 50px;
  }
}

.home-aboutus-textbox {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  height: 100%;
}

@media screen and (min-width: 769px) {
  .home-aboutus-textbox {
    height: unset;
    padding: 0 7.25vw;
  }
}

.home-aboutus-textbox-inner, .aboutus-main > div:last-child {
  padding: 30px;
  background-color: #fff;
  width: calc( 100% - 30px);
  margin: 0 auto;
  margin-top: -46px;
}

@media screen and (min-width: 769px) {
  .home-aboutus-textbox-inner, .aboutus-main > div:last-child {
    margin: 0;
    padding: 0;
    width: unset;
    background-color: inherit;
  }
}

@media screen and (min-width: 1800px) {
  .home-aboutus-textbox-inner, .aboutus-main > div:last-child {
    max-width: 546px;
  }
}

.home-aboutus-textdiv {
  font-family: lght;
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 20px;
}

@media screen and (min-width: 769px) {
  .home-aboutus-textdiv {
    margin-bottom: 30px;
  }
}

.home-aboutus-imgdiv {
  -ms-flex-item-align: end;
      align-self: flex-end;
  height: 176px;
}

@media screen and (min-width: 420px) {
  .home-aboutus-imgdiv {
    height: 133px;
  }
}

@media screen and (min-width: 769px) {
  .home-aboutus-imgdiv {
    height: 100%;
    -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
  }
}

.home-aboutus-textbox-a {
  font-size: 14px;
  font-family: uppercasebold;
  text-transform: uppercase;
  line-height: 17px;
  font-weight: 600;
  white-space: nowrap;
}

.home-aboutus-textbox-a::before {
  margin-right: 15px;
  content: '';
  display: inline-block;
  border-radius: 50%;
  width: 9px;
  height: 9px;
  background-color: #EA433D;
}

.home-instaAndSlider {
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 385px;
  position: relative;
}

@media screen and (min-width: 769px) {
  .home-instaAndSlider {
    height: 450px;
  }
}

.home-instaAndSlider .swiper-container {
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: static;
  overflow: hidden;
  height: calc(100% - 86px);
  -ms-flex-item-align: end;
      align-self: flex-end;
}

@media screen and (min-width: 769px) {
  .home-instaAndSlider .swiper-container {
    position: absolute;
    left: 28%;
    height: 100%;
    -ms-flex-item-align: unset;
        -ms-grid-row-align: unset;
        align-self: unset;
  }
}

.home-instaAndSlider .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
}

.home-instaAndSlider .swiper-wrapper a.swiper-slide {
  height: 100%;
  width: 72.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media screen and (min-width: 769px) {
  .home-instaAndSlider .swiper-wrapper a.swiper-slide {
    width: 21.9899%;
  }
}

.home-instaAndSlider .swiper-wrapper img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.home-insta-article {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  background-color: #FBFBFF;
  height: 86px;
  padding: 0 7.25vw;
  font-family: bld;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (min-width: 769px) {
  .home-insta-article {
    top: unset;
    width: 28%;
    height: 100%;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: none;
  }
}

.home-insta-article h2 {
  font-size: 22px;
  line-height: 27px;
  font-family: uppercasebold;
  text-transform: uppercase;
}

@media screen and (min-width: 769px) {
  .home-insta-article h2 {
    margin-bottom: 50px;
  }
}

.home-insta-article-textdiv {
  max-height: 85px;
  font-family: lght;
  font-size: 14px;
  line-height: 22px;
  overflow: hidden;
  display: none;
  margin-bottom: 30px;
}

@media screen and (min-width: 769px) {
  .home-insta-article-textdiv {
    display: block;
  }
}

.home-insta-article-p {
  font-size: 14px;
  font-family: uppercasebold;
  font-weight: 600;
  line-height: 17px;
  color: #EA433D;
}

.aboutus-main {
  width: 100%;
}

.aboutus-main img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 769px) {
  .aboutus-main img {
    height: 450px;
  }
}

.aboutus-main > div:last-child {
  margin-top: -60px;
  background-color: #FBFBFF;
  position: relative;
  border-radius: 30px 30px 0 0px;
}

@media screen and (min-width: 769px) {
  .aboutus-main > div:last-child {
    max-width: 1088px;
    width: calc(100% - 60px);
    margin: 0 auto;
    padding: 30px;
    margin-top: -60px;
  }
}

@media screen and (min-width: 1025px) {
  .aboutus-main > div:last-child {
    padding-right: 50px;
    padding-left: 50px;
  }
}

.aboutus-main-article-outter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  height: 100%;
  width: 100%;
  -webkit-transform: translateY(-40px);
          transform: translateY(-40px);
  border-radius: 30px 30px 0 0px;
  background-color: #fff;
  padding-top: 10px;
}

@media screen and (min-width: 1025px) {
  .aboutus-main-article-outter {
    padding-top: 10px;
  }
}

.aboutus-main-article-outter h1 {
  font-family: uppercasebold;
  font-size: 22px;
  line-height: 27px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

@media screen and (min-width: 769px) {
  .aboutus-main-article-outter h1 {
    margin-bottom: 40px;
  }
}

.aboutus-main-article-outter p {
  font-family: lght;
  font-size: 14px;
  line-height: 22px;
}

.aboutus-main-article, .contact-outter {
  background-color: #FBFBFF;
  padding-top: 30px;
}

@media screen and (min-width: 769px) {
  .aboutus-main-article, .contact-outter {
    width: 100%;
    height: 100%;
    padding-top: 57px;
    padding-right: 88px;
    padding-left: 88px;
    position: relative;
    z-index: 2;
  }
}

@media screen and (min-width: 1025px) {
  .aboutus-main-article, .contact-outter {
    padding-bottom: 60px;
  }
}

.rules-cover {
  width: 100%;
  height: 200px;
  background-color: #C4B3FA;
}

.contact-outter {
  width: 100%;
  position: relative;
}

@media screen and (min-width: 1025px) {
  .contact-outter {
    position: static;
  }
}

@media screen and (max-width: 364px) {
  .contact-outter h1 {
    font-size: 16px;
  }
}

.contact {
  width: 100%;
  font-style: none;
}

@media screen and (min-width: 769px) {
  .contact {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 75% 25%;
        grid-template-columns: 75% 25%;
  }
}

.contact-left {
  font-family: bld;
}

@media screen and (min-width: 1025px) {
  .contact-left {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    grid-auto-rows: 19px;
    grid-gap: 7px 20px;
  }
  .contact-left a {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2 / 3;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2 / 3;
  }
  .contact-left a:first-of-type {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / 2;
  }
}

.contact-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  justify-self: flex-end;
}

.contact-right-map {
  margin-top: 30px;
  width: 100%;
  height: 200px;
}

@media screen and (min-width: 769px) {
  .contact-right-map {
    margin-top: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    height: unset;
  }
}

.contact-right-map iframe {
  width: 100%;
  height: 100%;
}

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

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

.contact-left-heading {
  font-size: 14px;
  text-transform: uppercase;
  font-family: uppercasebold;
  line-height: 17px;
  opacity: .3;
  margin-bottom: 7px;
}

@media screen and (min-width: 1025px) {
  .contact-left-heading {
    margin-bottom: 0;
  }
}

.contact-left-heading:not(:first-child) {
  margin-top: 30px;
}

@media screen and (min-width: 1025px) {
  .contact-left-heading:not(:first-child) {
    margin-top: 0;
  }
}

.contact-left-heading + * {
  font-family: rmn;
  font-size: 16px;
  line-height: 24px;
}

.contact-left-heading + span {
  display: block;
  max-width: 288px;
}

address {
  font-style: normal;
}

.contact-right-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 30px;
  right: 0;
}

@media screen and (min-width: 769px) {
  .contact-right-socials {
    position: static;
  }
}

.contact-right-socials li:nth-child(2) {
  margin: 0 15px;
}

@media screen and (min-width: 769px) {
  .contact-right-socials li:nth-child(2) {
    margin: 0 30px;
  }
}

.contact-right-socials li a {
  height: 100%;
  display: inline-block;
}

.login-menu-slider {
  height: 80px;
  position: relative;
  background-color: #171717;
  color: #fff;
  font-family: uppercasebold;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 20px;
  overflow: hidden;
}

.login-menu-slider ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  position: relative;
  height: 100%;
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

@media screen and (min-width: 769px) {
  .login-menu-slider ul {
    grid-gap: 35px;
  }
}

.login-menu-slider ul::-webkit-scrollbar {
  display: none;
}

.login-menu-slider a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
}

.login-menu-slider li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  opacity: .6;
  margin-right: 25px;
}

.login-menu-slider li:nth-child(3) {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-right: 0 !important;
}

@media screen and (min-width: 769px) {
  .login-menu-slider li {
    margin-right: 35px;
  }
}

.login-menu-slider li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
}

.login-menu-slider li.login, .login-menu-slider li.personal-info {
  opacity: 1;
}

.login-menu-slider li:last-of-type {
  margin-right: 0 !important;
}

@media screen and (min-width: 769px) {
  .login-menu-slider li:last-of-type {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .login-menu-slider li:last-of-type a {
    display: inline;
  }
}

.login-menu-slider li:only-child {
  opacity: 1 !important;
}

.login-menu-slider li.logout {
  opacity: 1 !important;
}

.login-menu-slider ~ .form-combiner .login-form {
  max-height: unset;
}

.login-menu-slider ~ .form-combiner .register-form {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  -webkit-transform: translateX(500%);
          transform: translateX(500%);
  -webkit-transition: all .3s, padding-bottom 0s, padding-top 0s;
  transition: all .3s, padding-bottom 0s, padding-top 0s;
}

@media screen and (min-width: 769px) {
  .login-menu-slider ~ .form-combiner .register-form {
    -webkit-transform: translateX(1000%);
            transform: translateX(1000%);
    -webkit-transition: all .8s, padding-bottom 0s, padding-top 0s;
    transition: all .8s, padding-bottom 0s, padding-top 0s;
  }
}

.login-menu-slider ~ .profile-container .personal-info-container {
  max-height: unset;
}

.login-menu-slider ~ .profile-container .orders-history-container {
  max-height: 0;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  -webkit-transform: translateX(500%);
          transform: translateX(500%);
  -webkit-transition: all .3s, padding-bottom 0s, padding-top 0s;
  transition: all .3s, padding-bottom 0s, padding-top 0s;
}

@media screen and (min-width: 769px) {
  .login-menu-slider ~ .profile-container .orders-history-container {
    -webkit-transform: translateX(1000%);
            transform: translateX(1000%);
    -webkit-transition: all .8s, padding-bottom 0s, padding-top 0s;
    transition: all .8s, padding-bottom 0s, padding-top 0s;
  }
}

.login-menu-slider.orders ~ .profile-container .personal-info-container {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  -webkit-transform: translateX(-500%);
          transform: translateX(-500%);
}

@media screen and (min-width: 769px) {
  .login-menu-slider.orders ~ .profile-container .personal-info-container {
    -webkit-transform: translateX(-1000%);
            transform: translateX(-1000%);
  }
}

.login-menu-slider.orders ~ .profile-container .orders-history-container {
  max-height: unset;
  padding: 50px 0;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: all .3s, padding 0s;
  transition: all .3s, padding 0s;
}

@media screen and (min-width: 769px) {
  .login-menu-slider.orders ~ .profile-container .orders-history-container {
    -webkit-transition: all .8s, padding 0s;
    transition: all .8s, padding 0s;
  }
}

.login-menu-slider.register ~ .form-combiner .login-form {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  -webkit-transform: translateX(-500%);
          transform: translateX(-500%);
}

@media screen and (min-width: 769px) {
  .login-menu-slider.register ~ .form-combiner .login-form {
    -webkit-transform: translateX(-1000%);
            transform: translateX(-1000%);
  }
}

.login-menu-slider.register ~ .form-combiner .register-form {
  max-height: unset;
  padding: 50px 0;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: all .3s, padding 0s;
  transition: all .3s, padding 0s;
}

@media screen and (min-width: 769px) {
  .login-menu-slider.register ~ .form-combiner .register-form {
    padding: 90px 0;
    -webkit-transition: all .8s, padding 0s;
    transition: all .8s, padding 0s;
  }
}

.login-menu-slider.register li.login {
  opacity: .6;
}

.login-menu-slider.register li.registration {
  opacity: 1;
}

.login-menu-slider.orders li.personal-info {
  opacity: .6;
}

.login-menu-slider.orders li.order-history {
  opacity: 1;
}

.form-combiner {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

.login-main, .cart-main {
  min-height: calc( 100vh - 444px);
}

@media screen and (min-width: 769px) {
  .login-main, .cart-main {
    min-height: calc( 100vh - 349px);
  }
}

form {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.form, .profile-form-combiner form {
  -webkit-transform-origin: center;
          transform-origin: center;
  overflow: hidden !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: bld;
  width: calc( 100% - 30px);
  max-width: 403px;
  padding: 50px 0;
  margin: 0 auto;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

@media screen and (min-width: 769px) {
  .form, .profile-form-combiner form {
    padding: 90px 0;
    width: 100%;
  }
}

.form label, .profile-form-combiner form label, .form a, .profile-form-combiner form a, .form .login-button, .profile-form-combiner form .login-button, .form .profile-button, .profile-form-combiner form .profile-button, .form .basket-item-remove, .profile-form-combiner form .basket-item-remove, .form .product-see-more, .profile-form-combiner form .product-see-more, .form .productin-submit, .profile-form-combiner form .productin-submit, .form .cart-button, .profile-form-combiner form .cart-button {
  font-size: 14px;
  line-height: 17px;
  margin-bottom: 9px;
  font-weight: 600;
  font-family: uppercasebold !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  font-weight: 600 !important;
}

.form label span, .profile-form-combiner form label span {
  font-family: inherit;
  margin: 0 5px;
}

@media screen and (min-width: 1025px) {
  #personal-info-form, #update-password-form {
    padding-top: 0 !important;
  }
}

#personal-info-form .profile-pi-heading, #update-password-form .profile-pi-heading {
  margin-bottom: 28px;
  font-family: uppercasebold !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  font-weight: 600 !important;
  font-size: 22px;
  line-height: 25px;
}

@media screen and (min-width: 1025px) {
  #personal-info-form .profile-pi-heading, #update-password-form .profile-pi-heading {
    margin-bottom: 68px;
  }
}

#personal-info-form .label-input-combiner, #update-password-form .label-input-combiner {
  margin-bottom: 10px;
}

@media screen and (min-width: 1025px) {
  #personal-info-form .label-input-combiner, #update-password-form .label-input-combiner {
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 1025px) {
  #personal-info-form .label-input-div, #update-password-form .label-input-div {
    margin-bottom: 20px;
  }
}

#personal-info-form label, #update-password-form label {
  display: block;
  margin-bottom: 18px;
}

#personal-info-form label span, #update-password-form label span {
  font-family: inherit;
  margin: 0 5px;
}

.input-div, .profile-input-div {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 56px;
  padding: 0 30px;
  border-radius: 28px;
  background-color: #fff;
  margin-bottom: 20px;
  border: 1px solid #E5E5E5;
}

.input-div > *, .profile-input-div > * {
  height: 100%;
}

.input-div input, .profile-input-div input, .input-div .span-dash, .profile-input-div .span-dash {
  font-family: uppercasebold !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  text-transform: initial !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.input-div.input-div-two-inside, .input-div-two-inside.profile-input-div {
  display: -ms-grid !important;
  display: grid !important;
  -ms-grid-columns: auto 1fr 1fr 50%;
      grid-template-columns: auto 1fr 1fr 50%;
  -ms-grid-rows: 100%;
      grid-template-rows: 100%;
  -webkit-box-flex: unset;
      -ms-flex: unset;
          flex: unset;
}

.input-div.input-div-two-inside input, .input-div-two-inside.profile-input-div input {
  max-width: 95px;
}

.span-dash {
  font-family: bld !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: unset !important;
      -ms-flex: unset !important;
          flex: unset !important;
  position: relative;
  margin: 0 20px;
  justify-self: flex-start;
}

input, .login-button, .profile-button, .basket-item-remove, .product-see-more, .productin-submit, .cart-button {
  background-color: none;
  outline: none;
  border: none;
}

.input-div-logo {
  margin-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.input-div-logo svg {
  width: 24px;
}

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

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

.login-button, .profile-button, .basket-item-remove, .product-see-more, .productin-submit, .cart-button {
  font-family: uppercasebold;
  text-transform: uppercase;
  height: 56px;
  border-radius: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  background-color: #C4B3FA;
  cursor: pointer;
}

@media screen and (min-width: 1025px) {
  .login-button:hover, .profile-button:hover, .basket-item-remove:hover, .product-see-more:hover, .productin-submit:hover, .cart-button:hover {
    background-color: #A38CEB;
  }
}

.login-button:active, .profile-button:active, .basket-item-remove:active, .product-see-more:active, .productin-submit:active, .cart-button:active {
  background-color: #A38CEB;
}

.login-button.login-login, .login-login.profile-button, .login-login.basket-item-remove, .login-login.product-see-more, .login-login.productin-submit, .login-login.cart-button, .login-button.login-reg, .login-reg.profile-button, .login-reg.basket-item-remove, .login-reg.product-see-more, .login-reg.productin-submit, .login-reg.cart-button {
  margin-top: 20px;
  margin-bottom: 30px;
}

.login-button.login-fb, .login-fb.profile-button, .login-fb.basket-item-remove, .login-fb.product-see-more, .login-fb.productin-submit, .login-fb.cart-button {
  margin-top: 21px;
  position: relative;
  background-color: #178FF2;
}

@media screen and (min-width: 769px) {
  .login-button.login-fb, .login-fb.profile-button, .login-fb.basket-item-remove, .login-fb.product-see-more, .login-fb.productin-submit, .login-fb.cart-button {
    margin-top: 41px;
  }
}

.login-button.login-fb::after, .login-fb.profile-button::after, .login-fb.basket-item-remove::after, .login-fb.product-see-more::after, .login-fb.productin-submit::after, .login-fb.cart-button::after {
  position: absolute;
  content: '';
  top: -20px;
  right: 0;
  display: block;
  height: 1px;
  width: 100%;
  background-color: #cccccc;
  opacity: .3;
}

@media screen and (min-width: 769px) {
  .login-button.login-fb::after, .login-fb.profile-button::after, .login-fb.basket-item-remove::after, .login-fb.product-see-more::after, .login-fb.productin-submit::after, .login-fb.cart-button::after {
    top: -40px;
  }
}

.login-button.login-fb:active, .login-fb.profile-button:active, .login-fb.basket-item-remove:active, .login-fb.product-see-more:active, .login-fb.productin-submit:active, .login-fb.cart-button:active {
  background-color: #1580D8;
}

@media screen and (min-width: 1025px) {
  .login-button.login-fb:hover, .login-fb.profile-button:hover, .login-fb.basket-item-remove:hover, .login-fb.product-see-more:hover, .login-fb.productin-submit:hover, .login-fb.cart-button:hover {
    background-color: #1580D8;
  }
}

.login-button.login-fb span, .login-fb.profile-button span, .login-fb.basket-item-remove span, .login-fb.product-see-more span, .login-fb.productin-submit span, .login-fb.cart-button span {
  font-family: inherit;
  margin: 0 3px 0 5px;
}

.login-password-recovery {
  display: inline;
  margin: 0 auto !important;
  margin-bottom: 60px !important;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (min-width: 1025px) {
  .profile-button, .basket-item-remove, .product-see-more {
    width: 260px;
  }
}

.profile-form-combiner form {
  padding: 0 !important;
  padding-bottom: 41px !important;
}

.profile-form-combiner form:not(:last-child) {
  padding-top: 50px !important;
}

@media screen and (min-width: 1025px) {
  .profile-form-combiner form:not(:last-child) {
    margin-bottom: 78px;
  }
}

@media screen and (min-width: 1025px) {
  .profile-form-combiner form {
    max-width: unset;
    padding: 0 !important;
  }
}

@media screen and (min-width: 1025px) {
  .profile-input-div {
    width: 260px;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 1025px) {
  .profile-input-div.input-div-two-inside {
    -ms-grid-columns: auto 30% 1fr 30%;
        grid-template-columns: auto 30% 1fr 30%;
  }
}

.label-input-div {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@media screen and (min-width: 1025px) {
  .label-input-div:not(:last-child) {
    margin-right: 15px;
  }
}

.label-input-combiner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (min-width: 1025px) {
  .personal-info-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 63% 37%;
        grid-template-columns: 63% 37%;
    width: 100%;
    padding: 90px 140px;
  }
}

@media screen and (min-width: 1441px) {
  .personal-info-container {
    padding: 90px 140px;
    padding-left: 278px;
  }
}

.personal-info-decoration {
  display: none;
}

@media screen and (min-width: 1025px) {
  .personal-info-decoration {
    display: unset;
  }
}

.personal-info-decoration img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.profile-container .input-text {
  width: 100%;
}

.orders-history-ul {
  display: -ms-grid;
  display: grid;
  grid-auto-rows: 240px;
  grid-row-gap: 20px;
}

@media screen and (min-width: 769px) {
  .orders-history-ul {
    grid-auto-rows: 220px;
    grid-row-gap: 25px;
  }
}

.orders-history-ul li {
  width: calc( 100% - 30px);
  max-width: 812px;
  margin: 0 auto;
  padding: 10px;
  height: 160px;
  background-color: #fff;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-shadow: 0px 22px 16px -14px #5e5c5c9b;
          box-shadow: 0px 22px 16px -14px #5e5c5c9b;
}

@media screen and (min-width: 769px) {
  .orders-history-ul li {
    -webkit-box-shadow: none;
            box-shadow: none;
    width: 100%;
    height: 220px;
    padding: 40px;
    padding-right: 30px;
  }
}

li:nth-of-type(even) .orders-history-li-number {
  background-color: #FEA6D4;
}

.orders-history-li-number {
  text-transform: uppercase;
  width: 40px;
  height: 40px;
  background-color: #C4B3FA;
  font-family: bld;
  font-size: 22px;
  line-height: 27px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  -ms-flex-item-align: center;
      align-self: center;
  position: absolute;
  left: -10px;
  top: -10px;
  border-top-left-radius: 12px;
}

@media screen and (min-width: 769px) {
  .orders-history-li-number {
    font-size: 32px;
    line-height: 39px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: static;
    margin-right: 40px;
  }
}

.orders-history-li-image {
  height: 100%;
  border-radius: 12px;
  width: 112px;
  overflow: hidden;
  margin-right: 20px;
}

@media screen and (min-width: 769px) {
  .orders-history-li-image {
    margin-right: 40px;
    width: 122px;
  }
}

.orders-history-li-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.orders-history-li-right-container {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

@media screen and (min-width: 769px) {
  .orders-history-li-right-container {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.orders-history-li-right-container > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 769px) {
  .orders-history-li-right-container > div {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.date-id {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 769px) {
  .date-id {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.orders-history-li-id {
  margin-right: 0 !important;
  text-transform: uppercase;
}

.orders-history-li-right-container-nameDateId {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 95px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (min-width: 769px) {
  .orders-history-li-right-container-nameDateId {
    height: unset;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.orders-history-li-right-container-nameDateId h1 {
  font-family: uppercasebold !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  font-weight: 600 !important;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 30px;
}

@media screen and (min-width: 769px) {
  .orders-history-li-right-container-nameDateId h1 {
    margin-bottom: unset;
    max-width: 50%;
  }
}

.orders-history-li-right-container-nameDateId p {
  font-family: rmn;
  font-size: 14px;
  line-height: 17px;
}

.orders-history-li-right-container-nameDateId p:last-child {
  color: #CCCCCC;
}

@media screen and (min-width: 769px) {
  .orders-history-li-right-container-nameDateId {
    margin-bottom: 15px;
  }
  .orders-history-li-right-container-nameDateId h1 {
    margin-right: 15px;
  }
  .orders-history-li-right-container-nameDateId p {
    margin-right: 30px;
  }
}

.orders-history-li-right-container-priceAmount {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: absolute;
  right: 25px;
  bottom: -80px;
  width: calc( 100% - 50px);
  height: 90px;
  padding: 10px 10px 20px 20px;
  background-color: #fff;
  z-index: -1;
  border-radius: 12px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

@media screen and (min-width: 769px) {
  .orders-history-li-right-container-priceAmount {
    padding: 0;
    z-index: unset;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 0;
    width: unset;
    position: static;
    height: unset;
  }
}

.orders-history-li-date {
  font-size: 14px;
  line-height: 17px;
}

.ho-hr {
  height: 25px;
  width: 1px;
  background-color: #CCCCCC;
  border-radius: 12px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  display: none;
}

@media screen and (min-width: 769px) {
  .ho-hr {
    display: block;
  }
}

.priceAmount-name {
  font-family: uppercasebold !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  font-weight: 600 !important;
  font-size: 11px;
  line-height: 14px;
  margin-bottom: 6px;
  white-space: nowrap;
  color: #CCCCCC;
}

@media screen and (min-width: 1025px) {
  .priceAmount-name {
    font-size: 14px;
    line-height: 17px;
    margin-bottom: 4px;
  }
}

.priceAmount-amount {
  font-family: uppercasebold !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  font-weight: 600 !important;
  font-size: 16px;
  line-height: 20px;
}

@media screen and (min-width: 769px) {
  .priceAmount-amount {
    font-size: 22px;
    line-height: 27px;
  }
}

.priceAmount-amount span {
  margin-left: 5px;
}

.productin-main {
  width: 100%;
  padding: 0 15px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100%;
      grid-template-columns: 100%;
}

@media screen and (min-width: 1025px) {
  .productin-main {
    -ms-grid-columns: 60% auto;
        grid-template-columns: 60% auto;
    max-width: 90%;
    margin: 30px auto 40px;
    grid-gap: 30px;
  }
}

@media screen and (min-width: 1441px) {
  .productin-main {
    margin: 90px auto 130px;
    max-width: 1394px;
    grid-gap: 154px;
  }
}

.productin-gallery-slider-combiner {
  width: 100%;
  height: 221px;
  margin-top: 50px;
  margin-bottom: 30px;
}

@media screen and (min-width: 500px) {
  .productin-gallery-slider-combiner {
    height: 381px;
  }
}

@media screen and (min-width: 769px) {
  .productin-gallery-slider-combiner {
    height: 350px;
  }
}

@media screen and (min-width: 1025px) {
  .productin-gallery-slider-combiner {
    margin: 0;
    width: unset;
    height: unset;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 10fr 90fr;
        grid-template-columns: 10fr 90fr;
    height: calc( 100vh - 190px);
  }
}

@media screen and (min-width: 1441px) {
  .productin-gallery-slider-combiner {
    height: calc( 100vh - 250px);
  }
}

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

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

.thumbsSlider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  height: 100%;
}

@media screen and (min-width: 1025px) {
  .thumbsSlider {
    margin-right: 16px;
    width: 122px;
  }
}

.thumbsSlider .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

@media screen and (min-width: 1025px) {
  .thumbsSlider .swiper-wrapper {
    display: unset;
    width: 100%;
  }
}

.thumbsSlider .swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 100%;
  padding-bottom: 70px;
  padding-right: 80px;
}

@media screen and (min-width: 420px) {
  .thumbsSlider .swiper-slide {
    padding-right: 135px;
  }
}

.thumbsSlider .swiper-slide.swiper-slide-active {
  padding: 0;
}

@media screen and (min-width: 1025px) {
  .thumbsSlider .swiper-slide {
    height: 150px;
    width: 100%;
    padding: 0 !important;
    opacity: .4;
  }
  .thumbsSlider .swiper-slide.swiper-slide-thumb-active {
    opacity: 1;
  }
}

.thumbsSlider img {
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
  height: 100%;
  width: 100%;
}

@media screen and (min-width: 769px) {
  .thumbsSlider img {
    height: 100%;
    width: 100%;
  }
}

.mainPhotoSlider {
  overflow: hidden;
  height: 100%;
  max-width: 0;
  max-height: 0;
}

@media screen and (min-width: 1025px) {
  .mainPhotoSlider {
    max-width: unset;
    max-height: unset;
    max-width: 674px;
  }
}

.mainPhotoSlider .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

@media screen and (min-width: 1025px) {
  .mainPhotoSlider .swiper-wrapper {
    display: block;
  }
}

.mainPhotoSlider .swiper-wrapper > div {
  width: 68vw;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media screen and (min-width: 1025px) {
  .mainPhotoSlider .swiper-wrapper > div {
    width: 100%;
    max-width: 674px;
  }
}

.mainPhotoSlider .swiper-slide {
  padding-bottom: 70px;
  padding-right: 135px;
}

@media screen and (min-width: 1025px) {
  .mainPhotoSlider .swiper-slide {
    padding: 0 !important;
  }
}

.mainPhotoSlider .swiper-slide.active {
  padding: 0;
}

.mainPhotoSlider img {
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
  height: 100%;
  width: 100%;
}

@media screen and (min-width: 500px) {
  .product-info-right {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    width: 398px;
    -ms-grid-column-align: center;
        justify-self: center;
  }
}

.hidden-select {
  display: none !important;
}

.product-info-prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 29px;
}

.product-info-price {
  font-family: bld;
  font-size: 22px;
  line-height: 27px;
}

.product-info-price span {
  margin-left: 5px;
  margin-right: 5px;
}

.product-info-discount {
  font-weight: 600;
  font-family: thin;
  font-size: 14px;
  line-height: 16px;
  margin-bottom: 3px;
  margin-left: 2px;
  text-decoration: line-through;
}

.productin-main .ho-hr {
  display: block !important;
}

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

.product-info-form-sides {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}

@media screen and (min-width: 1025px) {
  .product-info-form-sides {
    margin-bottom: 40px;
  }
}

.product-info-form-sides label {
  display: inline-block;
  font-family: uppercasebold;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 17px;
  margin-bottom: 15px;
}

.product-info-form-sides .ho-hr {
  height: 28px;
  background-color: #171717;
  -webkit-transform: translateX(-10px);
          transform: translateX(-10px);
}

.product-info-form-sides .select-ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-right: 30px;
  grid-gap: 30px;
  text-transform: uppercase;
}

.product-info-form-sides .select-ul li {
  cursor: pointer;
  font-family: lght;
  font-size: 18px;
  color: #171717;
  line-height: 22px;
}

.product-info-form-sides .select-ul li.active {
  font-family: bld;
}

@media screen and (max-width: 768px) {
  .product-main .content-combiner .select-ul li {
    font-family: uppercasebold !important;
    text-transform: uppercase !important;
    font-weight: 500 !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.5) !important;
  }
  .product-main .content-combiner .select-ul li.active {
    color: #fff !important;
  }
}

.choose-quantity-quantity-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.choose-quantity-quantity-div input {
  cursor: pointer;
  font-family: bld;
  font-size: 18px;
  line-height: 22px;
  color: #171717;
  background-color: transparent;
  max-width: 42px;
}

.quantity-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.quantity-controls div {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.quantity-controls div:first-child {
  margin-right: 10px;
}

.quantity-controls div.disabled #Rectangle_36, .quantity-controls div.disabled line {
  stroke: #CFCFCF;
}

.productin-submit {
  width: 100%;
  margin-bottom: 50px;
}

@media screen and (min-width: 1025px) {
  .productin-submit {
    margin-bottom: 0;
  }
  .productin-submit:hover {
    background-color: #A38CEB;
  }
}

.productin-submit:active {
  background-color: #A38CEB;
}

.productin-submit svg {
  margin-right: 15px;
}

.product-info {
  font-family: bld;
}

.product-info h1 {
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 13px;
  font-family: uppercasebold !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  font-weight: 600 !important;
}

@media screen and (min-width: 1025px) {
  .product-info h1 {
    margin-bottom: 27px;
    font-size: 32px;
    line-height: 38px;
  }
}

.product-info .product-info-textdiv {
  font-family: lght;
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 29px;
}

@media screen and (min-width: 1025px) {
  .product-info .product-info-textdiv {
    padding-bottom: 39px;
    border-bottom: 2px solid rgba(204, 204, 204, 0.3);
    border-radius: 2px;
  }
}

.product-info-addon {
  position: relative;
}

.add-fav-bag {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(196, 179, 250, 0.1);
}

@media screen and (min-width: 1025px) {
  .add-fav-bag {
    display: none;
  }
}

.size-guide-btn {
  margin-top: 1em;
  display: block;
  color: #3498db;
  cursor: pointer;
}

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

.cart-main-content {
  -ms-flex-item-align: center;
      align-self: center;
  max-width: 1088px;
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 15px;
  margin-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (min-width: 769px) {
  .cart-main-content {
    margin-bottom: 130px;
  }
}

.cart-main-content.ordering {
  margin-bottom: 0;
}

@media screen and (min-width: 769px) {
  .cart-main-content.ordering {
    margin-bottom: 130px;
  }
}

.ordering .basket-info-header {
  margin-top: 58px;
}

.ordering .basket-info-header::before {
  content: '';
  position: absolute;
  -webkit-transform: translateY(-25px);
          transform: translateY(-25px);
  display: block;
  width: calc(100vw - 30px);
  height: 1px;
  background-color: #CCCCCC;
  border-radius: 2px;
  opacity: .2;
}

@media screen and (min-width: 769px) {
  .ordering .basket-info-header {
    margin-top: 86px;
  }
  .ordering .basket-info-header::before {
    display: none;
  }
}

.basket-info-header {
  display: -ms-grid;
  display: grid;
  justify-items: center;
  margin-top: 47px;
  margin-bottom: 50px;
  -ms-grid-columns: auto auto;
      grid-template-columns: auto auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #FBFBFF;
}

@media screen and (min-width: 769px) {
  .basket-info-header {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-grid-columns: 260px 1fr 260px;
        grid-template-columns: 260px 1fr 260px;
    -ms-grid-rows: minmax(75px, auto);
        grid-template-rows: minmax(75px, auto);
    margin-top: 66px;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 53px;
    z-index: 1;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
  }
}

.basket-info-header > * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.basket-info-header > * > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
  font-family: uppercasebold;
  text-transform: uppercase;
  font-size: 22px;
  line-height: 25px;
}

.basket-info-header > * a, .basket-info-header > * p {
  font-family: bld;
  font-size: 14px;
  line-height: 17px;
}

.basket-info-header > * a {
  color: #EA433D;
}

.basket-info-header > * p {
  color: #CCCCCC;
}

.basket-info-header input {
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: inherit;
  color: inherit;
  font-weight: 900;
  outline: none;
  width: 37px;
  text-align: center;
  margin: 0 4px;
  -webkit-writing-mode: horizontal-tb !important;
  text-rendering: inherit;
  text-transform: uppercase;
  text-align: center;
  -webkit-rtl-ordering: none;
  cursor: text;
  font-family: inherit;
}

.basket-info-header-left {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  justify-self: flex-start;
}

.basket-info-header-right {
  width: 100%;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1 / span 2;
}

@media screen and (min-width: 769px) {
  .basket-info-header-right {
    width: 260px;
    grid-column: unset;
  }
}

.cart-button {
  width: 100%;
  margin-top: 30px;
}

@media screen and (min-width: 769px) {
  .cart-button {
    margin-top: 0;
  }
}

@media screen and (min-width: 769px) {
  .basket-items-ul .quantity-controls div #Rectangle_36, .basket-items-ul .quantity-controls div line {
    stroke: #fff;
  }
  .basket-items-ul .quantity-controls div.disabled #Rectangle_36, .basket-items-ul .quantity-controls div.disabled line {
    stroke: #a1a1a1;
  }
  .basket-items-ul .quantity-controls-plus path {
    fill: #fff;
  }
  .basket-items-ul .choose-quantity {
    color: #fff;
  }
}

.basket-items-ul .product-info-form {
  width: 100%;
}

.basket-items-ul .select-ul {
  grid-gap: 10px;
  margin-top: 3px;
  -ms-grid-columns: (min-content)[4];
      grid-template-columns: repeat(4, -webkit-min-content);
      grid-template-columns: repeat(4, min-content);
}

@media screen and (min-width: 769px) {
  .basket-items-ul .select-ul {
    margin-top: 0;
    min-height: 28px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    grid-gap: 30px;
    -ms-grid-columns: (auto)[4];
        grid-template-columns: repeat(4, auto);
  }
}

.basket-items-ul {
  display: -ms-grid;
  display: grid;
  grid-auto-rows: 300px;
  -ms-grid-columns: 100%;
      grid-template-columns: 100%;
  grid-gap: 40px;
}

@media screen and (min-width: 769px) {
  .basket-items-ul {
    grid-auto-rows: 300px;
  }
}

.basket-items-ul > li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 27px 0;
  padding-right: 30px;
  padding-left: 50%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #C4B3FA;
  border-radius: 12px;
  color: #fff;
  height: 161px;
}

@media screen and (min-width: 769px) {
  .basket-items-ul > li {
    overflow-x: hidden;
    height: unset;
    padding: 60px 0;
    padding-right: 55px;
    padding-left: calc( 350 / 1088 * 100%);
  }
}

@media screen and (min-width: 1025px) {
  .basket-items-ul > li {
    padding-left: calc( 414 / 1088 * 100%);
  }
}

.basket-items-ul > li img {
  position: absolute;
  bottom: 0;
  right: 50%;
  width: 60%;
  height: 110%;
  -ms-flex-item-align: end;
      align-self: flex-end;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (min-width: 769px) {
  .basket-items-ul > li img {
    width: unset;
    right: calc( (1 - 350 / 1088) * 100%);
  }
}

@media screen and (min-width: 850px) {
  .basket-items-ul > li img {
    height: 110%;
  }
}

.basket-items-ul h1 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1 / span 2;
  font-family: uppercasebold;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 18px;
  margin-bottom: 19px;
}

@media screen and (min-width: 769px) {
  .basket-items-ul h1 {
    max-width: 213px;
    margin-bottom: 0;
    font-size: 22px;
    line-height: 25px;
  }
}

.basket-items-ul .ho-hr {
  display: block;
  background-color: #cccccc;
  opacity: .3;
}

@media screen and (min-width: 769px) {
  .basket-items-ul .ho-hr {
    display: none;
    opacity: 1;
    background-color: #171717;
  }
}

.basket-items-ul .product-info-form-sides {
  margin: 0;
  width: 100%;
}

.basket-items-ul .choose-quantity-quantity-div input {
  background-color: unset;
}

.basket-items-ul .product-info-form-left,
.basket-items-ul .product-info-form-right {
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  max-width: 150px;
  width: 100%;
}

.basket-items-ul .basket-items-ul li {
  padding: 0 !important;
}

.basket-items-li-center-top {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto auto;
  -ms-grid-columns: auto auto;
      grid-template: auto auto / auto auto;
}

@media screen and (min-width: 769px) {
  .basket-items-li-center-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.basket-items-li-center-top > .basket-items-li-remove {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2 / span 1;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

@media screen and (min-width: 769px) {
  .basket-items-li-center-top > .basket-items-li-remove {
    display: none !important;
  }
}

.basket-items-li-center-bottom {
  position: absolute;
  top: 100%;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  color: #171717;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (min-width: 400px) {
  .basket-items-li-center-bottom {
    width: calc( 100% - 50px);
  }
}

@media screen and (min-width: 769px) {
  .basket-items-li-center-bottom {
    color: #fff;
    width: 100%;
    -webkit-transform: none;
            transform: none;
    position: static;
    padding: 0;
  }
}

@media screen and (min-width: 769px) {
  .basket-items-li-center-bottom .product-info-form-sides .select-ul li {
    color: #fff;
  }
}

.cart-main .product-info-form-sides .product-info-form-left {
  max-width: 87px;
}

@media screen and (min-width: 769px) {
  .cart-main .product-info-form-sides .product-info-form-left {
    max-width: unset;
  }
}

.cart-main .product-info-form-sides .product-info-form-right {
  max-width: 130px;
}

@media screen and (min-width: 769px) {
  .cart-main .product-info-form-sides .product-info-form-right {
    max-width: 137px;
  }
}

.cart-main .product-info-form-sides label {
  font-size: 11px !important;
  line-height: 12px !important;
  white-space: nowrap;
}

@media screen and (min-width: 769px) {
  .cart-main .product-info-form-sides label {
    white-space: unset;
    font-size: 14px !important;
    line-height: 17px !important;
  }
}

.basket-info-header-delivery-price {
  display: none;
}

@media screen and (min-width: 769px) {
  .basket-info-header-delivery-price {
    white-space: nowrap;
  }
}

.ordering .basket-info-header-delivery-price {
  display: block;
  font-family: uppercasebold !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  font-weight: 600 !important;
  margin-top: 15px;
  color: #171717 !important;
  font-size: 14px !important;
  line-height: 16px !important;
  text-align: right;
}

@media screen and (min-width: 769px) {
  .ordering .basket-info-header-delivery-price {
    text-align: unset;
  }
}

@media screen and (min-width: 769px) {
  .ordering .basket-info-header {
    margin-bottom: 130px !important;
  }
}

.basket-info-header-center {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media screen and (min-width: 769px) {
  .basket-info-header-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.basket-info-header-totalQuantity {
  font-family: uppercasebold;
  font-weight: 600;
  text-transform: uppercase;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.basket-info-header-totalQuantity input {
  font-size: 1.5em;
  margin-top: -16px;
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}

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

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

.basket-info-header-center-totalPrice {
  font-family: uppercasebold !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  font-weight: 600 !important;
}

.basket-info-header-center-totalPrice input {
  font-family: uppercasebold !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  font-weight: 600 !important;
  width: 70px;
}

.prices-for-xs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 82px;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1 / span 1;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2 / span 1;
}

@media screen and (min-width: 769px) {
  .prices-for-xs {
    width: 112px;
  }
}

.x1-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-family: uppercasebold;
  text-transform: uppercase;
}

.x1-price-x {
  font-family: inherit;
  font-size: 11px;
  line-height: 12px;
  opacity: .6;
}

.x1-price-price {
  font-family: inherit;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 18px;
}

@media screen and (min-width: 769px) {
  .x1-price-price {
    font-size: 22px;
    line-height: 25px;
  }
}

.basket-items-li-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (min-width: 769px) {
  .basket-items-li-center {
    height: 100%;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 400px;
  }
}

.basket-items-li-remove {
  display: none;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

@media screen and (min-width: 769px) {
  .basket-items-li-remove {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 20px;
    padding: 0;
    margin-right: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.basket-item-remove {
  height: 28px;
  width: 28px;
  font-size: 14px;
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 769px) {
  .basket-item-remove {
    border-radius: 25px;
    border: 1px solid #fff;
    width: 116px;
    height: 49px;
  }
}

@media screen and (min-width: 769px) {
  .basket-item-remove svg {
    display: none;
  }
}

.basket-item-remove span {
  display: none;
}

@media screen and (min-width: 769px) {
  .basket-item-remove span {
    display: unset;
  }
}

@media screen and (min-width: 1025px) {
  .profile-save-PersInfo:hover {
    background-color: #A38CEB;
  }
}

.profile-save-PersInfo:active {
  background-color: #A38CEB;
}

.cart-main-content.ordering .content-combiner {
  margin-top: 47px;
}

@media screen and (min-width: 769px) {
  .cart-main-content.ordering .content-combiner {
    margin-top: 0;
  }
}

.cart-main-content.ordering .clear-basket {
  display: none;
}

.cart-main-content.ordering .go-to-basket {
  display: unset;
}

.cart-main-content.ordering .basket-info-header {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

@media screen and (min-width: 769px) {
  .cart-main-content.ordering .basket-info-header {
    -webkit-box-ordinal-group: unset;
        -ms-flex-order: unset;
            order: unset;
  }
}

.cart-main-content.ordering .order-now {
  display: -ms-grid;
  display: grid;
}

.cart-main-content.ordering .basket-items {
  display: none;
}

.order-now {
  max-width: 812px;
  margin: 0 auto;
  font-family: thin;
  display: none;
  grid-gap: 26px;
  color: #171717;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
}

@media screen and (min-width: 769px) {
  .order-now {
    grid-gap: 0;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

.order-now input, .order-now .nicuSelect-container p {
  font-family: bld;
}

.provoke-question h2 {
  font-family: uppercasebold !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  font-weight: 500;
  font-size: 22px;
  line-height: 25px;
}

@media screen and (min-width: 769px) {
  .provoke-question h2 {
    font-size: 32px;
    line-height: 37px;
  }
}

@media screen and (min-width: 769px) {
  .payment-inputs {
    max-width: 400px;
  }
}

.checkmark {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background-color: white;
  background-color: #EA433D;
  position: relative;
  margin-right: 15px;
}

.checkmark::after {
  content: '';
  display: block;
  position: absolute;
  top: 4px;
  right: 4px;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background-color: white;
}

#agree-terms-chkbx, #reg-select {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

#agree-terms-chkbx:checked ~ .checkmark::after, #reg-select:checked ~ .checkmark::after {
  background-color: #EA433D;
}

.agree-terms {
  margin-top: 10px;
}

@media screen and (min-width: 769px) {
  .agree-terms {
    margin-top: 15px;
  }
}

.agree-terms label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  font-size: 14px;
  line-height: 17px;
  color: #171717;
}

.agree-terms span, .agree-terms a {
  font-family: bld !important;
}

.input-div.reg-select-div, .reg-select-div.profile-input-div {
  position: relative;
  height: 56px;
  cursor: pointer;
  background-color: #fff;
  -webkit-transition: none;
  transition: none;
}

.input-div.reg-select-div .nicuSelect-container, .reg-select-div.profile-input-div .nicuSelect-container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  position: relative;
}

.input-div.reg-select-div .nicuSelect-container p, .reg-select-div.profile-input-div .nicuSelect-container p {
  height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 14px;
  font-family: uppercasebold !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  font-weight: 600 !important;
  line-height: 16px;
  color: rgba(23, 23, 23, 0.5);
}

.input-div.reg-select-div .nicuSelect-container p.active-p, .reg-select-div.profile-input-div .nicuSelect-container p.active-p {
  color: #171717;
}

.input-div.reg-select-div .nicuSelect-container p::after, .reg-select-div.profile-input-div .nicuSelect-container p::after {
  content: url(../images/angle-down-down.svg);
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: -webkit-transform .2s ease-in;
  transition: -webkit-transform .2s ease-in;
  transition: transform .2s ease-in;
  transition: transform .2s ease-in, -webkit-transform .2s ease-in;
}

.input-div.reg-select-div .nicuSelect-container ul, .reg-select-div.profile-input-div .nicuSelect-container ul {
  background-color: #fff;
  position: absolute;
  z-index: -1;
  right: -31px;
  top: 100%;
  width: calc( 100% + 106px);
  border: 1px solid #E5E5E5;
  border-color: transparent;
  border-top: transparent;
  padding-left: 74px;
  border-radius: 0 0 30px 30px;
  padding-bottom: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-auto-rows: 1fr;
  grid-row-gap: 14px;
  max-height: 0;
  -webkit-transition: max-height -400ms 600ms ease-out;
  transition: max-height -400ms 600ms ease-out;
  overflow: hidden;
  font-size: 14px;
  line-height: 16px;
}

.input-div.reg-select-div.active, .reg-select-div.active.profile-input-div {
  border-radius: 28px 28px 0 0;
}

.input-div.reg-select-div.active .nicuSelect-container ul, .reg-select-div.active.profile-input-div .nicuSelect-container ul {
  z-index: 1;
  border: 1px solid #E5E5E5;
  border-top: transparent;
  padding-bottom: 24px;
  max-height: 9999px;
  -webkit-transition: max-height 800ms ease-in;
  transition: max-height 800ms ease-in;
}

.input-div.reg-select-div.active p::after, .reg-select-div.active.profile-input-div p::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.nicuSelect-container ul {
  font-family: uppercasebold !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  font-weight: 600 !important;
}

.nicuSelect-container ul li {
  opacity: .6;
}

.nicuSelect-container ul li.active, .nicuSelect-container ul li:hover {
  opacity: 1;
}

.go-to-basket {
  display: none;
}

.price-filter {
  max-width: 1088px;
  width: 100%;
  padding: 0 20px;
  height: 142px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0 0 30px 30px;
  background-color: #fff;
  margin-bottom: 50px;
}

@media screen and (min-width: 1025px) {
  .price-filter {
    margin: 0 auto;
    margin-bottom: 46px;
  }
}

.price-filter * {
  -webkit-transition: none;
  transition: none;
}

.price-filter h2 {
  margin-bottom: 23px;
  margin-left: 15px;
  font-family: uppercasebold !important;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 16px;
  color: #171717;
}

.price-filter .multi-range-slider {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.price-filter .slider {
  position: relative;
  z-index: 1;
  height: 4px;
  margin: 0 15px;
}

.price-filter .slider > .track {
  position: absolute;
  height: 100%;
  z-index: 1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 5px;
  background-color: #F8F8F8;
}

.price-filter .slider > .track span {
  position: absolute;
  top: calc(100% + 12px);
  font-family: thin;
  font-size: 11px;
  line-height: 12px;
  text-transform: uppercase;
  color: #CCCCCC;
}

@media screen and (min-width: 1025px) {
  .price-filter .slider > .track span {
    top: calc(100% + 15px);
  }
}

.price-filter .slider > .track span.track-size-min {
  left: 0;
}

.price-filter .slider > .track span.track-size-max {
  right: 0;
}

.price-filter .slider > .range {
  position: absolute;
  z-index: 2;
  left: 25%;
  right: 25%;
  top: 0;
  bottom: 0;
  border-radius: 5px;
  background-color: #EA433D;
}

.price-filter input[type="range" i]::-webkit-slider-runnable-track {
  height: 16px;
}

.price-filter .slider > .thumb {
  position: absolute;
  z-index: 3;
  width: 16px;
  height: 16px;
  background-color: #EA433D;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 0 rgba(98, 0, 238, 0.1);
          box-shadow: 0 0 0 0 rgba(98, 0, 238, 0.1);
  -webkit-transition: -webkit-box-shadow .3s ease-in-out;
  transition: -webkit-box-shadow .3s ease-in-out;
  transition: box-shadow .3s ease-in-out;
  transition: box-shadow .3s ease-in-out, -webkit-box-shadow .3s ease-in-out;
  cursor: pointer;
}

.price-filter .slider > .thumb .thumb-content {
  font-family: uppercasebold;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  color: #171717;
  position: absolute;
  top: calc(100% + 4px);
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  white-space: nowrap;
}

@media screen and (min-width: 1025px) {
  .price-filter .slider > .thumb .thumb-content {
    top: calc(100% + 7px);
  }
}

.price-filter .slider > .thumb .thumb-content.empty {
  right: -300%;
}

.price-filter .slider > .thumb .thumb-content.full {
  right: 450%;
}

.price-filter .slider > .thumb.left {
  left: 25%;
  -webkit-transform: translate(-8px, calc(16px / -2.6));
          transform: translate(-8px, calc(16px / -2.6));
}

.price-filter .slider > .thumb.right {
  right: 25%;
  -webkit-transform: translate(8px, calc(16px / -2.6));
          transform: translate(8px, calc(16px / -2.6));
}

.price-filter .slider > .thumb.hover {
  -webkit-box-shadow: 0 0 0 10.6px rgba(98, 0, 238, 0.1);
          box-shadow: 0 0 0 10.6px rgba(98, 0, 238, 0.1);
}

.price-filter .slider > .thumb.active {
  -webkit-box-shadow: 0 0 0 21.2px rgba(98, 0, 238, 0.2);
          box-shadow: 0 0 0 21.2px rgba(98, 0, 238, 0.2);
}

.price-filter input[type=range] {
  position: absolute;
  pointer-events: none;
  -webkit-appearance: none;
  z-index: 2;
  height: 4px;
  width: 100%;
  opacity: 0;
}

.price-filter input[type=range]::-webkit-slider-thumb {
  pointer-events: all;
  width: 16px;
  height: 16px;
  border-radius: 0;
  border: 0 none;
  background-color: red;
  -webkit-appearance: none;
}

.filter-submit-btn {
  display: none;
}

.product-main {
  position: relative;
  width: 100%;
  height: 106px;
  margin-bottom: 46px;
}

@media screen and (min-width: 1025px) {
  .product-main {
    height: 350px;
    margin-bottom: 50px;
  }
}

@media screen and (min-width: 1025px) and (min-height: 1000px) {
  .product-main {
    height: 450px;
  }
}

.product-main-background-container {
  display: none;
  -ms-grid-columns: 64fr 36fr;
      grid-template-columns: 64fr 36fr;
}

@media screen and (min-width: 1025px) {
  .product-main-background-container {
    display: -ms-grid;
    display: grid;
    height: 350px;
    -ms-grid-rows: 350px;
        grid-template-rows: 350px;
  }
}

@media screen and (min-width: 1025px) and (min-height: 1000px) {
  .product-main-background-container {
    height: 450px;
    -ms-grid-rows: 450px;
        grid-template-rows: 450px;
  }
}

.main-bg-image {
  height: 100%;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  background-color: #34BDE7;
}

.main-bg-image img {
  height: 90%;
  -o-object-fit: contain;
     object-fit: contain;
}

.other-bg-images-container {
  height: 100%;
  overflow: hidden;
}

.other-bg-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.other-bg-images > div {
  width: 400px;
  height: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.other-bg-images img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.product-main-categories-outter {
  width: 100%;
  height: 100%;
  background-color: #34BDE7;
  padding: 0 15px;
}

@media screen and (min-width: 1025px) {
  .product-main-categories-outter {
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
    max-width: 90%;
    position: absolute;
    top: 0;
    right: 0;
    background-color: unset;
  }
}

.product-main-categories {
  height: 100%;
  color: #fff;
  font-family: rmn;
  font-size: 14px;
  line-height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  overflow: hidden;
}

.product-main-categories p {
  display: none;
  max-width: 400px;
}

@media screen and (min-width: 1025px) {
  .product-main-categories p {
    display: unset;
  }
}

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

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

.product-main-categories-ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-grid-columns: (140px)[auto-fill];
      grid-template-columns: repeat(auto-fill, 140px);
  font-family: bld;
  font-size: 16px;
  line-height: 16px;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 1025px) {
  .product-main-categories-ul {
    display: -ms-grid;
    display: grid;
    height: unset;
    grid-gap: 16px 20px;
    -ms-grid-columns: (140px)[2];
        grid-template-columns: repeat(2, 140px);
    margin-bottom: 40px;
  }
}

@media screen and (min-width: 1441px) {
  .product-main-categories-ul {
    -ms-grid-columns: (140px)[3];
        grid-template-columns: repeat(3, 140px);
  }
}

.product-main-categories-ul li {
  height: 46px;
  width: 140px;
  border-radius: 23px;
  border: 1px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: transparent;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.product-main-categories-ul li.active, .product-main-categories-ul li:hover, .product-main-categories-ul li[active] {
  cursor: pointer;
  background-color: #171717;
  border-color: #171717;
}

.product-main-categories-ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}

.product-section {
  padding: 0 15px;
  padding-bottom: 50px;
}

@media screen and (min-width: 1025px) {
  .product-section {
    margin: 0 auto;
    width: 100%;
    max-width: 90%;
    padding-bottom: 130px;
  }
}

@media screen and (min-width: 1441px) {
  .product-section {
    max-width: 1364px;
  }
}

.product-section-li-imgbox > .imgbox-hover-menu {
  display: none;
  margin-bottom: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 1025px) {
  .product-section-li-imgbox > .imgbox-hover-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .product-section-li-imgbox > .imgbox-hover-menu a {
    white-space: nowrap;
    color: #fff;
    font-family: uppercasebold !important;
    text-transform: uppercase !important;
    font-weight: 500 !important;
    font-weight: 600 !important;
    font-size: 16px;
    line-height: 18px;
    overflow: visible;
  }
  .product-section-li-imgbox > .imgbox-hover-menu svg {
    min-width: 24px;
    min-height: 24px;
    margin: 0;
    position: static;
    -webkit-transition-duration: .6s;
            transition-duration: .6s;
    -webkit-transition-timing-function: ease-in-out;
            transition-timing-function: ease-in-out;
  }
  .product-section-li-imgbox > .imgbox-hover-menu a {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (auto)[3];
        grid-template-columns: repeat(3, auto);
    -ms-grid-rows: 100%;
        grid-template-rows: 100%;
    -ms-flex-line-pack: center;
        align-content: center;
    border-radius: 28px;
    width: calc(100% - 30px);
    -webkit-transition-duration: .6s;
            transition-duration: .6s;
    -webkit-transition-timing-function: ease-in-out;
            transition-timing-function: ease-in-out;
    padding: 0;
    position: relative;
    min-width: 56px;
    min-height: 56px;
    max-width: 56px;
    max-height: 56px;
  }
  .product-section-li-imgbox > .imgbox-hover-menu a * {
    -webkit-transition-duration: .6s;
            transition-duration: .6s;
    -webkit-transition-timing-function: ease-in-out;
            transition-timing-function: ease-in-out;
  }
  .product-section-li-imgbox > .imgbox-hover-menu a .add-animation-span-left {
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    white-space: nowrap;
    -webkit-transform: translateX(-150%);
            transform: translateX(-150%);
    opacity: 0;
    -webkit-transition-delay: .2s;
            transition-delay: .2s;
  }
  .product-section-li-imgbox > .imgbox-hover-menu a .add-animation-span-center {
    margin-left: 10px;
    margin-right: 10px;
    width: 56px;
    -ms-grid-column-align: center;
        justify-self: center;
  }
  .product-section-li-imgbox > .imgbox-hover-menu a .add-animation-span-right {
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 0;
    margin-left: -20px;
    -webkit-transform: translateX(500%);
            transform: translateX(500%);
    -webkit-transition-duration: .7s;
            transition-duration: .7s;
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }
  .product-section-li-imgbox > .imgbox-hover-menu a.product-added {
    max-width: 301px;
  }
  .product-section-li-imgbox > .imgbox-hover-menu a.product-added .add-animation-span-left {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  .product-section-li-imgbox > .imgbox-hover-menu a.product-added .add-animation-span-right {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
    -webkit-transition-duration: .6s;
            transition-duration: .6s;
    -webkit-transition-delay: .3s;
            transition-delay: .3s;
  }
}

.imgbox-hover-menu {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.imgbox-hover-menu .imgbox-hover-menu-bag {
  white-space: nowrap;
  color: #fff;
  font-family: uppercasebold !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  font-weight: 600 !important;
  font-size: 16px;
  line-height: 18px;
  overflow: visible;
}

.imgbox-hover-menu svg {
  min-width: 24px;
  min-height: 24px;
  margin: 0;
  position: static;
  -webkit-transition-duration: .6s;
          transition-duration: .6s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}

.imgbox-hover-menu .imgbox-hover-menu-bag {
  display: -ms-grid !important;
  display: grid !important;
  -ms-grid-columns: (auto)[3];
      grid-template-columns: repeat(3, auto);
  -ms-grid-rows: 100%;
      grid-template-rows: 100%;
  -ms-flex-line-pack: center;
      align-content: center;
  border-radius: 28px;
  width: 100%;
  -webkit-transition-duration: .6s;
          transition-duration: .6s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
  padding: 0;
  position: relative;
  min-width: 56px;
  min-height: 56px;
  max-width: 56px;
  max-height: 56px;
}

.imgbox-hover-menu .imgbox-hover-menu-bag * {
  -webkit-transition-duration: .6s;
          transition-duration: .6s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}

.imgbox-hover-menu .imgbox-hover-menu-bag .add-animation-span-left {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  white-space: nowrap;
  -webkit-transform: translateX(-150%);
          transform: translateX(-150%);
  opacity: 0;
  -webkit-transition-delay: .2s;
          transition-delay: .2s;
}

.imgbox-hover-menu .imgbox-hover-menu-bag .add-animation-span-center {
  margin-left: 10px;
  margin-right: 10px;
  width: 56px;
  -ms-grid-column-align: center;
      justify-self: center;
}

.imgbox-hover-menu .imgbox-hover-menu-bag .add-animation-span-right {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
  margin-left: -20px;
  -webkit-transform: translateX(500%);
          transform: translateX(500%);
  -webkit-transition-duration: .7s;
          transition-duration: .7s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.imgbox-hover-menu .imgbox-hover-menu-bag.product-added {
  background-color: #CA1C16;
  max-width: 301px;
}

.imgbox-hover-menu .imgbox-hover-menu-bag.product-added .add-animation-span-left {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

.imgbox-hover-menu .imgbox-hover-menu-bag.product-added .add-animation-span-right {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  -webkit-transition-duration: .6s;
          transition-duration: .6s;
  -webkit-transition-delay: .3s;
          transition-delay: .3s;
}

.product-section-ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: 371px;
      grid-template-rows: 371px;
  grid-gap: 30px 10px;
}

@media screen and (min-width: 769px) {
  .product-section-ul {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width: 1025px) {
  .product-section-ul {
    grid-gap: 40px 16px;
    -ms-grid-rows: 509px;
        grid-template-rows: 509px;
  }
}

.product-section-ul li > a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.product-section-ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #171717;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: space-between;
  font-family: uppercasebold;
  text-transform: uppercase;
}

.product-section-ul li > * {
  color: inherit;
}

.product-section-ul li h1 {
  font-size: 16px;
  line-height: 18px;
  margin-bottom: 5px;
}

@media screen and (min-width: 1025px) {
  .product-section-ul li h1 {
    margin-bottom: 13px;
  }
}

.product-section-ul li h1 a {
  text-transform: uppercase;
}

.product-section-ul li p, .product-section-ul li p span {
  font-size: 22px;
  line-height: 26px;
}

.product-section-li-imgbox {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  position: relative;
  margin-bottom: 16px;
}

@media screen and (min-width: 1025px) {
  .product-section-li-imgbox {
    height: 430px;
  }
}

.product-section-li-imgbox::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  margin: 0;
  border-radius: 12px;
  background-color: #171717;
  opacity: 0;
  width: 0;
  height: 0;
  display: block;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

@media screen and (min-width: 1025px) {
  .product-section-li-imgbox:hover::after, .product-section-li-imgbox.active::after {
    opacity: .5;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
}

.product-section-li-imgbox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  background-color: #f1f0f5;
}

.product-section-li-imgbox .imgbox-hover-menu {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 1025px) {
  .product-section-li-imgbox:hover .imgbox-hover-menu, .product-section-li-imgbox.active .imgbox-hover-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 2;
  }
}

.imgbox-hover-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 1025px) {
  .imgbox-hover-menu {
    display: none;
    margin-bottom: 0;
  }
}

.imgbox-hover-menu a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  overflow: hidden;
  width: 44px;
  height: 44px;
}

@media screen and (min-width: 1025px) {
  .imgbox-hover-menu a {
    width: 56px;
    height: 56px;
  }
}

.imgbox-hover-menu-heart {
  background-color: #FEB42B;
}

.imgbox-hover-menu-bag {
  background-color: #EA433D;
}

@media screen and (min-width: 1025px) {
  .imgbox-hover-menu-bag:hover {
    background-color: #CA1C16;
  }
}

.product-section-li-price {
  margin-bottom: 15px;
}

@media screen and (min-width: 1025px) {
  .product-section-li-price {
    margin-bottom: 0;
  }
}

.productin-redirect {
  display: inline !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px !important;
  padding: 20px 36px !important;
  border: 1px solid #fff;
  font-family: bld;
  font-size: 14px;
  line-height: 17px;
  border-radius: 28px;
  min-width: unset !important;
  max-width: unset !important;
  width: unset !important;
  height: unset !important;
  max-height: unset !important;
  min-height: unset !important;
  -webkit-transform: translateY(-150px);
          transform: translateY(-150px);
  -webkit-transition: all .5s;
  transition: all .5s;
}

.product-section-li-imgbox .imgbox-hover-menu-bag {
  -webkit-transform: translateY(150px) !important;
          transform: translateY(150px) !important;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.product-section-li-imgbox:hover .productin-redirect, .product-section-li-imgbox.active .productin-redirect {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all .5s;
  transition: all .5s;
}

.product-section-li-imgbox:hover .imgbox-hover-menu-bag, .product-section-li-imgbox.active .imgbox-hover-menu-bag {
  -webkit-transform: translateY(0px) !important;
          transform: translateY(0px) !important;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.product-see-more {
  height: 49px;
  width: 100%;
  border-radius: 25px;
  font-family: uppercasebold;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 16px;
  margin-top: 20px;
  grid-column: 1 / -1;
}

@media screen and (min-width: 500px) {
  .product-see-more {
    margin: 0 auto;
    width: 201px;
  }
}

@media screen and (min-width: 1025px) {
  .product-see-more {
    margin-top: 28px;
  }
  .product-see-more:hover {
    background-color: #A38CEB;
  }
}

.product-see-more:active {
  background-color: #A38CEB;
}

.contact-form {
  margin-top: 50px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-gap: 25px;
  font-family: uppercasebold !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  font-weight: 600 !important;
}

@media screen and (min-width: 1025px) {
  .contact-form {
    margin-top: 70px;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    grid-gap: 25px 20px;
  }
}

@media screen and (min-width: 1025px) {
  .contact-form > *:not([for="contact-email"]):not([for="contact-name"]) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / span 2;
  }
}

.contact-form label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.contact-form label input, .contact-form label textarea {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.contact-form input:not([type=submit]) {
  outline: none;
  padding: 0 30px;
  border-radius: 50px;
  height: 56px;
  border: 1px solid #E5E5E5;
  font-family: uppercasebold !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  text-transform: lowercase !important;
}

@media screen and (min-width: 769px) {
  .contact-form label[for="contact-text"] {
    margin-bottom: 20px;
  }
}

.contact-form textarea {
  padding: 30px;
  border-radius: 30px;
  height: 140px;
  border: 1px solid #E5E5E5;
  font-family: uppercasebold !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  text-transform: lowercase !important;
}

.contact-form .im-not-a-robot {
  text-align: center;
  margin-bottom: 10px;
  border: 1px solid #E5E5E5;
  color: #E5E5E5;
  border-radius: 30px;
  height: 60px;
  width: 100%;
  padding: 0 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 769px) {
  .contact-form .im-not-a-robot {
    margin-bottom: 20px;
    height: 90px;
    max-width: 260px;
    margin: 0 auto;
    margin-bottom: 20px;
  }
}

.contact-form input[type=submit] {
  -ms-grid-column-align: center;
      justify-self: center;
}

@media screen and (min-width: 769px) {
  .contact-form input[type=submit] {
    max-width: 400px;
    margin: 0 auto;
  }
}

.contact-form .cart-button {
  margin-top: 0;
}

.aboutus-main.contact-main > div:last-child {
  padding-bottom: 10px;
}

@media screen and (min-width: 1025px) {
  .aboutus-main.contact-main > div:last-child {
    padding-bottom: 30px;
  }
}

.invalid.invalid-shown .validation-error-svg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.invalid.invalid-shown .validation-error-message {
  display: block;
}

.validation-error-svg {
  position: absolute;
  right: 30px;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.validation-error-message {
  position: absolute;
  display: none;
  right: 0;
  top: -25px;
  height: unset !important;
  font-family: bld;
  font-size: 11px;
  line-height: 13px;
  color: #EA433D;
}

.order-now .validation-error-message {
  top: -20px;
}

.contact-main .validation-error-message {
  top: -20px;
}

.contact-main .validation-error-svg {
  height: 100%;
}

.contact-main label:nth-of-type(3) .validation-error-svg {
  padding-top: 30px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

#update-password-form .validation-error-message, #personal-info-form .validation-error-message {
  top: -20px;
}

.g-recaptcha {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  border: none;
}

.basket-empty-message {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  max-width: 1088px;
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0 15px;
  min-height: 300px;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  flex: 1;
}

.basket-empty-message h1 {
  font-family: uppercasebold !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  font-weight: 600 !important;
  font-size: 18px;
  line-height: 21px;
  margin-bottom: 29px;
}

@media screen and (min-width: 1025px) {
  .basket-empty-message h1 {
    font-size: 32px;
    line-height: 37px;
    margin-bottom: 46px;
  }
}

.basket-empty-message p, .basket-empty-message p * {
  font-family: uppercasebold !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  font-size: 14px;
  line-height: 16px;
}

@media screen and (min-width: 1025px) {
  .basket-empty-message p, .basket-empty-message p * {
    font-size: 22px;
    line-height: 25px;
  }
}

.basket-empty-message p a, .basket-empty-message p * a {
  color: #EA433D;
}

.cart-main.empty-basket .cart-main-content {
  display: none;
}

.cart-main.empty-basket .basket-empty-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

li > .imgbox-hover-menu {
  overflow: hidden;
}

.storage-empty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 60px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-family: uppercasebold !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
}

.storage-empty > div::after {
  content: '';
  position: absolute;
  display: block;
  height: 2px;
  width: 100%;
  background-color: rgba(204, 204, 204, 0.3);
  right: 0;
  top: 0;
}

@media screen and (min-width: 1025px) {
  .storage-empty {
    height: unset;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .storage-empty > div::after {
    display: none;
  }
}

.bag.active svg path, .bag:active svg path, .respo-menu-bag.active svg path, .respo-menu-bag:active svg path, .header-iconmenu-ul .profile.active svg path, .header-iconmenu-ul .profile:active svg path {
  stroke: #C4B3FA;
}

@media screen and (min-width: 1025px) {
  .bag:hover svg path, .respo-menu-bag:hover svg path, .header-iconmenu-ul .profile:hover svg path {
    stroke: #C4B3FA;
  }
}

.product-info-form-right {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.recovery-main.sent form {
  display: none;
}

.recovery-main.sent .recovery-sent-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.recovery-sent-message {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 300px;
  height: 100%;
  font-family: uppercasebold !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  font-size: 22px;
  line-height: 25px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.recovery-sent-message > div {
  margin-bottom: 37px;
}

.recovery-sent-message span {
  color: #EA433D;
}

.imgbox-hover-menu .imgbox-hover-menu-bag.product-added .add-animation-span-center {
  margin-left: 0 !important;
  margin-right: 10px !important;
  width: 48px !important;
}

@media screen and (min-width: 420px) {
  .imgbox-hover-menu .imgbox-hover-menu-bag.product-added .add-animation-span-center {
    margin-left: 10px !important;
    margin-right: 10px !important;
    width: 56px !important;
  }
}

.productin-main .product-info-form-right label {
  margin-bottom: 13px;
}

.productin-submit-default, .productin-submit-added {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  opacity: 0;
  -webkit-transition: opacity .19s ease-out, -webkit-transform .6s ease-in-out;
  transition: opacity .19s ease-out, -webkit-transform .6s ease-in-out;
  transition: opacity .19s ease-out, transform .6s ease-in-out;
  transition: opacity .19s ease-out, transform .6s ease-in-out, -webkit-transform .6s ease-in-out;
}

.productin-submit-added {
  -webkit-transform: translateY(-200%);
          transform: translateY(-200%);
}

.productin-submit-added svg {
  margin-left: 10px;
  margin-right: 5px;
}

.productin-submit .productin-submit-default {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.productin-submit.product-added {
  background-color: #A38CEB;
  -webkit-transition-duration: .6s;
          transition-duration: .6s;
}

.productin-submit.product-added .productin-submit-default {
  opacity: 0;
  -webkit-transform: translateY(200%);
          transform: translateY(200%);
}

.productin-submit.product-added .productin-submit-added {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
/*# sourceMappingURL=style.css.map */