html{
  scroll-behavior: smooth;
  font-size: 95%;
}

*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  line-height: 1;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

/* latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/pxiByp8kv8JHgFVrLCz7Z1xlFQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(../fonts/pxiByp8kv8JHgFVrLGT9Z1xlFQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/pxiEyp8kv8JHgFVrJJfecg.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

ul{
  list-style-type: none;
}

body{
  font-size: 100%;
  overflow: hidden;
  max-height: 100vh;
  max-width: 100vw;
}

h1{
  font-size: 1.5rem;
  display: inline-block;
}

h2{
  font-size: 1rem;
  font-weight: normal;
}

img{
  user-select: none;
  pointer-events: none;

}

div.container{
  display: grid;
  height: 100vh;
  grid-template-rows: max-content 1fr;
}

button{
  cursor: pointer;
}

header{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 0px;
  background: #e2e2e2;
  /* background: linear-gradient(90deg, hsla(0, 100%, 39%, 1) 0%, hsla(253, 100%, 35%, 1) 100%); */
  animation: saturate 3s infinite alternate-reverse ease-in-out;
}

@keyframes saturate {
  from{
    filter: hue-rotate(0deg);
  }
  to{
    filter: hue-rotate(0deg);
  }
}

header .header-holder{
  padding: 10px 25px;
  background: #ffffff;
  color: #222;
  width: 100%;
  height: max-content;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  box-shadow: 0 -2px 12px 0px inset #e8e8e8;
}

header h1{
  /* padding: 10px 0; */
  height: min-content;
  font-weight: normal;
}

.scrolly {
  /* Foreground, Background */
  scrollbar-color: #E2E2E2 #f8f8f8;
}
.scrolly::-webkit-scrollbar {
  width: 12px; /* Mostly for vertical scrollbars */
  height: 12px; /* Mostly for horizontal scrollbars */
}
.scrolly::-webkit-scrollbar-thumb { /* Foreground */
  background: #E2E2E2;
  border: 2px solid #f8f8f8;
  border-radius: 25px;
}
.scrolly::-webkit-scrollbar-track { /* Background */
  background: #f8f8f8;
  border-radius: 25px;
}

.scrolly.dark {
  scrollbar-color: #ddd #222;
}
.scrolly.dark::-webkit-scrollbar-thumb {
  background: #ddd;
  border: 3px solid #ddd;
}
.scrolly.dark::-webkit-scrollbar-track {
  background: #222;
}

.scrolly.body {
  scrollbar-color: #bbb #f2f2f2;
}
.scrolly.body::-webkit-scrollbar {
  width: 17px;
}
.scrolly.body::-webkit-scrollbar-thumb {
  background: #bbb;
  /* border-radius: 0; */
  border: 3px solid #f2f2f2;
}
.scrolly.body::-webkit-scrollbar-track { 
  background: #f2f2f2;
}

.flex-al-c{
  display:flex;
  align-items: center;
}

.hidden{
  visibility: hidden;
  opacity: 0!important;
}

.fast-msg{
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: 25px;
  border: 1px solid #e2e2e2;
  padding: 8px 15px;
  z-index: 1000000;
  animation: upMsg 1s ease-in-out forwards;
}
@keyframes upMsg{
  0%{
    bottom: 0%;
    opacity: 0;
  }
  25%{
    bottom: 5%;
    opacity: 1;
  }
  50%{
    opacity: 1;
    bottom: 5%;
  }
  100%{
    bottom: 10%;
    opacity: 0;
  }
}

.stories-title{
  background: white;
  color: black;
  padding: 10px 30px;
}
ul.stories{
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  padding: 10px 30px;
  background: black;
  background: radial-gradient(#ddd 0%, white 85%);
  max-width: 100vw;
  min-height: 81px;
  overflow-x: auto;
  /* border-top: 1px solid #e2e2e2; */
  border-bottom: 1px solid #e2e2e2;
}
.stories li{
  min-width: 60px;
  min-height: 60px;
  max-width: 60px;
  max-height: 60px;
  background:conic-gradient(from 235deg at 50% 50%, rgba(255, 206, 0, 1) 0%, rgba(212, 41, 0, 1) 35%, rgba(163, 0, 155, 1) 50%, rgba(212, 41, 0, 1) 65%, rgba(255, 206, 0, 1) 100%);
  border-radius: 50%;
  position: relative;
  padding: 2px;
  cursor: pointer;
  transition: transform .25s ease;
}
.stories li:hover{
  transform: scale(1.05);
}
.stories li.saw{
  background:grey;
  padding: 1px;
}
.stories li .story-content{
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid white;
  background: grey;
  text-align: center;
  overflow: hidden;
}
.stories li .story-content img{
  max-width: 100%;
  max-height: 100%;
  transform: scale(2);
}
.description{
  font-size: .75rem;
  padding: 15px 5%;
  /* background-color: white; */
  /* color: #333; */
  text-align: center;
  background: white;
  color: black;
  box-shadow: 0 0px 40px 9px #e8e8e8 inset;
}



main{
  height: 100%;
  background: #f8f8f8;
  overflow-y: scroll;
  position: relative;
  scroll-behavior: smooth;
}

.top-alert{
  padding: 5px; color:red;
  background-color: white;
  border-bottom: 1px solid #e2e2e2;
   /* background:linear-gradient(to right, blue -25%, red 125%); */
  box-shadow: 0 0 10px 2px #ffffff33 inset;
  width: 100%;
}

.flash-sale{
  background-color: black;
  background: radial-gradient(#61a2b3cc 0%, white 83%);
  padding: 30px;
  color: white;
  margin-bottom: 25px;
  box-shadow: 0 0 30px 5px #3a636d88 inset;
  min-height: 40vh;
  animation: flashSale 18s ease-in-out alternate infinite;
}
.flash-sale #fsTimer{
  margin-left:auto;
  font-size: .7rem!important;
  text-align: center;
  background: #00000033;
  width: max-content;
  padding: 5px 10px;
  border-radius: 25px;
}
.flash-sale .section-title h2{
  /* text-shadow: 0px 5px 12px black; */
  color:#222;
  font-size: 1.2rem;
}

.flash-sale .fs-timer-box h2{
  width: 100%;
  text-align: right;
}

@keyframes flashSale{
  from{
    background-position-x: -200vw;
  }
  to{
    background-position-x: 200vw;
  }
}

ul.fs-product-list{
  display:flex;
  overflow-x: auto;
  color: black;
  padding: 25px 15px 15px 15px;
}
ul.fs-product-list li.mega::after{
  background:conic-gradient(from 90deg at 50% 50%, rgb(177, 0, 0) 0%, rgb(255, 13, 0) 21%, rgb(255, 0, 0) 69%, rgb(177, 0, 0) 100%);
}
ul.fs-product-list li.mega::before{
  content: "HOT!";
  font-weight: 700;
  color: white;
  position: absolute;
  right: 10px;
  top: 33px;
  font-size: .6rem;
  background-color: darkorange;
  padding: 2px 8px;
  z-index: 3;
}
ul.fs-product-list .product-content .old-price{
  flex-basis: unset;
} 
ul.fs-product-list .product-content .price{
  font-size: 1.2rem;
  flex-basis: unset;
}
ul.fs-product-list .product-content .desc-group > p:nth-of-type(2){
  font-size: .7rem;
  margin-bottom: 3px;
}
ul.fs-product-list .position{
  background: #ff4700;
}

ul.fs-product-list > li{
  min-width: 200px;
  max-width: 200px;
  min-height: unset;
  box-shadow: 0 0 1px 2px #c12a2a, 0 0 2px 2px white, 0 0 10px 3px #558b99;
}

ul.fs-product-list .top-bar{
  padding:6px
}
ul.fs-product-list > li .product-content{
  display: grid;
  gap: 8px;
  grid-template-columns: 60px 1fr;
  grid-template-rows: 1fr;
  grid-template-areas: "pimg descgroup";
  padding: 10px 15px 0 15px;
}
ul.fs-product-list .desc-group {
  font-size: 90%;
}
ul.fs-product-list .product-content .desc-group > p:first-of-type{
  gap: 5px;
  margin-top: 3px;
}
ul.fs-product-list > li .product-content img{
  grid-area: pimg;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: unset;
  min-height: unset;
}
ul.fs-product-list .desc-group h2{
  font-size: .8rem;
}

.cat-menu{
  padding: 0 10%;
  display: flex;
  overflow-x: auto;
  background: #f2f2f2;
  /* margin-bottom: 25px; */
  margin-top: 15px;
  padding-top: 8px;
  scroll-behavior: smooth;
  border-bottom: 1px solid #f2f2f2;
  position: sticky;
  top:-1px;
  z-index: 10;
}
.cat-menu.fixed{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width:100vw;
  margin:0;
}
.cat-menu li{
  cursor: pointer;
  color: gray;
  user-select: none;
  padding: 20px 15px;
  position: relative;
  min-width:max-content;
  font-size: .9rem;
}
.cat-menu li:not(:last-of-type)::after{
  content: "";
  width: 1px;
  height: 50%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #e2e2e2;
}
.cat-menu:hover li{
  background: #f2f2f2!important;
}
.cat-menu:hover li::after{
  content: unset;
}
.cat-menu li:hover{
  background-color: #f8f8f8!important;
  border-radius: 8px 8px 0 0;
  z-index: 1;
}
.cat-menu li.active{
  background-color: #f8f8f8!important;
  box-shadow: 0 0 30px -15px #00000066;
  border-radius: 8px 8px 0 0;
  z-index: 2;
}

.percat-title{
  padding: 0 30px;
  color: #333;
  font-size: 1.2rem;
}

.product-list{
  min-height: 100vh;
}

.product-list-style{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: max-content;
  gap: 15px;
  padding: 25px 7.5%;
}

.product-list-style > li{
  min-height: 250px;
  outline: 1px solid #eee;
  user-select: none;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 6px -2px #aaa;
  transition: all .1s, opacity .4s ease .1s;
  opacity: 1;
}

.product-list-style > li:hover{
  transform: scale(1.01)
}

.product-list-style > li:hover{
  transform: scale(1.01)
}

.product-list-style > li:hover .product-content{
  cursor: pointer;
  background: linear-gradient(to bottom, #f2f2f2, white, #f2f2f2)
}

.product-list-style .product-content:hover::after{
  content: "";
  background: url(../img/look.svg);
  backdrop-filter: blur(3px);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 30%;
  position: absolute;
  width: 100%;
  height: 100%;
  top:0;
  left: 0;
  pointer-events: none;
  z-index: 3;
  display: grid;
  place-items: center;
  opacity: 0;
  animation: slowShow forwards .2s ease-in-out;
}

@keyframes slowShow{
  to{
    opacity: 1;
  }
}

.product-list-style li.mega{
  padding: 3px;
}

.product-list-style li.mega::after{
  content: "";
  pointer-events: none;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  z-index: 1;
  position: absolute;
  border-radius: 4px;
  background:conic-gradient(from 90deg at 50% 50%, rgba(0, 0, 0, 1) 0%, rgba(0, 188, 212, 1) 21%, rgba(124, 0, 212, 1) 69%, rgba(0, 0, 0, 1) 100%);
  animation: rotate 1s linear infinite;
  transform-origin: center;
}

/* .product-list-style li.flash::after{
  content: "";
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  z-index: 1;
  position: absolute;
  border-radius: 4px;
  background:conic-gradient(from 90deg at 50% 50%, rgb(177, 0, 0) 0%, rgb(255, 13, 0) 21%, rgb(255, 0, 0) 69%, rgb(177, 0, 0) 100%);
  animation: rotate 1.5s linear infinite;
  transform-origin: center;
} */

@keyframes rotate {
  to{
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.product-holder{
  background: white;
  height: 100%;
  z-index: 2;
  position: relative;
  display: grid;
  grid-template-rows: max-content 1fr max-content;
}

.product-holder > .top-bar{
  padding: 8px;
  display: flex;
  border-bottom: 1px solid #f2f2f2;
  gap: 5px;
  justify-content: space-between;
  align-items: center;
  z-index: 2
}

.product-holder .summary{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0 5px;
}
.product-holder .summary > span{
  display: flex;
  align-items: flex-start;
  gap: 2px;
  font-size: .72rem;
}
.product-holder .summary > span span{
  line-height: 1.25;
}

.product-holder .position{
  font-weight: bold;
  background-color: slateblue;
  color: white;
  border-radius: 50px;
  width: max-content;
  padding: 0 10px;
  height: 25px;
  display: grid;
  place-items:center;
  font-size: .85rem;
}

.product-holder > .product-content{
  transition: all .25s ease;
  padding: 12px;
  position: relative
}

.product-holder h2{
  text-transform: capitalize;
  word-break: break-word;
  color: #333;
  font-size: .9rem;
  z-index: 2;
}

i{
  font-size: .7rem;
  min-width: .7rem;
  min-height: .7rem;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  vertical-align: middle;
}
i.big{
  font-size: 1.75rem;
  min-width: 1.75rem;
  min-height: 1.75rem;
}

i.heart{
  background-image: url(../img/heart.svg);
}
i.cart{
  background-image: url(../img/buy.svg);
  background-size: 120%;
  background-position-y: 1px;
}
i.sold-discount{
  background-image: url(../img/sold-discount.svg);
  background-size: 85%;
}
i.discount{
  background-image: url(../img/discount.svg);
  background-size: 65%;
}
i.fire{
  background-image: url("../img/fire.svg");
}
i.star{
  background-image: url(../img/star.svg);
}
i.search{
  background-image: url(../img/search-product.svg);
  font-size: 2rem;
}
i.star-filled{
  background-image: url(../img/star-filled.svg);
}
i.star-outline{
  background-image: url(../img/star-outline.svg);
}
i.trust{
  background-image: url(../img/trust.svg);
}
i.verified{
  background-image: url(../img/verified.svg);
}
i.link{
  background-image: url(../img/link.svg);
}
i.telegram{
  background-image: url(../img/telegram.svg);
}
i.facebook{
  background-image: url(../img/facebook.svg);
}
i.whatsapp{
  background-image: url(../img/whatsapp.svg);
}
i.pinterest{
  background-image: url(../img/pinterest.svg);
}
i.twitter{
  background-image: url(../img/twitter.svg);
}
i.email{
  background-image: url(../img/email.svg);
}
i.copy{
  background-image: url(../img/copy.svg);
}
i.share{
  background-image: url(../img/share-arrow.svg);
  font-size: 1.5rem;
}
i.close{
  background-image: url(../img/close.svg);
}
i.comment{
  background-image: url(../img/comment.svg);
}
i.picture{
  background-image: url(../img/picture.svg);
}
i.thunder{
  background-image: url(../img/thunder.svg);
  font-size: 1.25rem
}

.product-holder > .product-content > img{
  object-fit: contain;
  max-width: 100%;
  padding-bottom: 10px;
  border-bottom: 1px solid #f2f2f2;
  margin-bottom: 5px;
  min-height: 150px;
}

.product-holder > .product-content > .desc-group > p:first-of-type{
  margin-top: 7px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 3px;
}

.product-holder > .product-content > .desc-group > p:nth-of-type(2){
  text-align: right;
  margin-top: 5px;
  color: #333;
  font-size: .85rem;
}

.product-holder > .product-content .old-price{
  color: #333;
  font-size: .8rem;
  text-align: right;
  min-width: max-content;
  text-decoration:line-through;
  flex-basis: 100%;
}

.product-holder > .product-content .price{
  font-size: 1.5rem;
  display: inline;
  color: #00a650;
  font-weight: bold;
  text-align: right;
  max-width: max-content;
  break-inside: avoid;
  flex-basis: 100%;
}

.flash-bar{
  background-color: moccasin;
  padding: 8px;
  color: #111;
  margin: 5px 0;
  text-align: center;
  border-radius: 2px;
  font-size:.8em
}

ul.actions{
  border-top: 1px solid #f2f2f2;
  padding: 8px;
  display: flex;
  gap: 5px;
  justify-content: space-between;
  align-items: center;
  z-index: 2
}

button.style1{
  outline: 1px solid #00a650;
  border: none;
  border-radius: 50px;
  padding: 10px 12px;
  background: transparent;
  transition: all .15s linear;
}

button.style1:hover{
  background: transparent;
  color: rgb(0, 189, 91);
  transform: scale(1.03);
}

button.style1:active{
  background: #00a65022;
}

.share-trigger{
  border-radius: 50px;
  border: none;
  padding: 5px;
  outline: 1px solid #e2e2e2;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 8px;
  cursor: pointer;
  transition: background .25s ease-in-out;
}

.share-trigger:hover{
  background: #f2f2f2;
}
.share-trigger:active{
  background: #e2e2e2;
}

.expansor{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: calc(100% + 60px);
  padding-bottom: 60px;
  background: #00000022;
  z-index: 10000;
  backdrop-filter: none;
  transition: backdrop-filter .2s linear, opacity .25s linear;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.expansor.dark{
  background: #00000088;
}
.expansor.opened{
  opacity: 1;
  pointer-events: all;
  backdrop-filter: blur(4px);
}

.expanded-look .product-title{
  text-transform: capitalize;
}
.expanded-look img[data-field='avatar']{
  border-radius: 50%;
  overflow:hidden;
}
.expanded-look [data-field='catlabel']{
  line-height: 125%;
}
.expanded-look .variations p{
  text-transform: capitalize;
  line-height: 125%
}
.expanded-look .variations {
  border:1px solid #233D4D11;
  border-radius:8px;
  padding: 12px;
}

.expansor.opened .content{
  transform: translate(-50%, -50%) scale(1);
}

.expansor .content{
  max-height: 100%;
  width: 70%;
  height: calc(85% - 60px);
  border-radius: 10px;
  left: 50%;
  top: calc(50% - 30px);
  position: absolute;
  transform: translate(-50%, -50%);
  background: #e8e8e8;
  box-shadow: 0 0 15px -15px black;
  user-select: none;
  overflow: hidden;
  transform: translate(-50%, -50%) scale(.5);
  transition: transform .25s ease;
}
.share-box .content{
  width: 25%;
  height: calc(75% - 60px);
  background:#f8f8f8;
  display: grid;
  grid-template-rows: min-content 1fr 1fr;

}
.share-box .header{
  display: flex;
  gap: 8px;
  align-items:center;
  justify-content: space-between;
  background: white;
  padding: 15px;
  font-size: .8rem;
}
.share-box .img-area{
  position:relative;
  text-align:center;
  padding: 10px
}
.share-box img{
  height: 0;
  min-height: 100%;
}
.share-box .info{
  padding: 20px;
  background-color: white;
}
.share-box p.send-text{
  background: #f2f2f2;
  border-radius: 50px;
  font-size: .8rem;
  padding: 15px 10px;
  margin: 0 auto 10px auto;
  text-align: center;
}
.share-box .share-buttons{
  display: flex;
  justify-content:center;
  flex-wrap: wrap;
  gap: 8px;
  background: radial-gradient(white ,#e2e2e2);
  border-radius: 8px;
  padding: 15px;
}
.share-box .share-buttons .link{
  font-size: 1.5rem;
}
button.share-btn{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid #f2f2f2;
  box-shadow: 0 0 6px 0 #d2d2d2;
  background: white;
  transition: transform .1s;
}
button.share-btn:hover{
  transform:scale(1.1)
}
button.share-btn i{
  font-size: 2.5rem;
  width: 70%;
  height: 70%;
  
}

.media-viewer .content{
  display: grid;
  grid-template-columns: .85fr 1fr;
  height: 60%;
  width: 50%;
  background: black;
  overflow:hidden!important;
}
.media-viewer .info{
  background:white;
  padding: 15px;
  box-shadow: 2px 0px 20px -10px #00000033 inset;
  overflow: hidden;
}
.media-viewer .info.opened li{
  opacity: 1;
}


.media-viewer .video-box{
  display: grid;
  align-items: center;
  max-height: 100%;
  overflow: hidden;
}
.media-viewer .video-box img{
  object-fit:contain!important;
  /* width: auto!important; */
}
.media-viewer video{
  object-fit:contain!important;
  margin: 0 auto!important;
}
.w-vulcan-overlays--center > div{
  position: relative!important;  
}
.wistia_responsive_padding{
  align-self: center;
}
.wistia_swatch img{
  object-fit: contain!important;
  margin: auto!important;
}
.w-bottom-bar-right.w-css-reset{
  display: none!important;
}

.media-viewer ul.products{
  padding: 10px 8px 20px 0;
  gap: 10px;
  display: flex;
  flex-wrap: wrap;
  overflow-y: auto;
  max-height: calc(100% - 40px) ;
}
.media-viewer ul.products li{
  flex-basis: 100%;
  border: 1px solid #d2d2d2;
  background: white;
  border-radius: 10px;
  padding: 16px;
  font-size: .75rem;
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: auto auto;
  transition: opacity .4s ease-in-out;
  grid-template-areas: "img pinfo"
                       "cta cta";
}
.media-viewer ul.products li img{
  max-width: 100%;
}
.media-viewer ul.products li .product-info{
  grid-area: pinfo;
  color: #333;
  font-size: 1em
}
.media-viewer ul.products li .image-box{
  grid-area: img;
}
.media-viewer ul.products li .ptitle{
  color: black;
  margin-bottom: 3px;
}
.media-viewer ul.products li .cta{
  grid-area: cta;
  text-align: right;
  border-top: 1px solid #e2e2e2;
  padding-top: 10px;
  margin-top: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.media-viewer ul.products li button{
  max-width: max-content;
}

.expanded-look .relative{
  display: grid;
  grid-template-rows: 60px 1fr 60px;
  grid-template-columns: auto 3fr;
  grid-template-areas: "exp-header exp-header"
                       "middle middle"
                       "cta cta";
  position: relative;
  height: 100%;
  width: 100%;
}

.expanded-look .exp-header{
  background: #f8f8f8;
  box-shadow: 0 0 3px 0px #00000022;
  border-bottom: 1px solid #e2e2e2;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  color: #444;
  overflow: hidden;
}

.expanded-look .exp-header h2{
  font-weight: 500!important;
  font-size: 1.2rem;
  width: 100%;
  text-align: center;
}

.expanded-look .middle-row{
  grid-area: middle;
  display: flex;
  width: 100%;
  /* height: 100%; */
}

.expanded-look .img-holder{
  padding-bottom: 0;
  align-self: center;
  position: relative;
  flex-basis: 40%;
  height: 0%;
  min-height: 100%;
}

.expanded-look .img-box{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.expanded-look .img-holder img{
  max-width: 100%;
  /* max-width: 100px; */
  height: inherit;
  object-fit: contain;
  pointer-events: none;
  display: block;
}

.expanded-look .info{
  flex-basis: 60%;
  overflow-y: auto;
  /* TRUQUE PARA CALCULAR DEPOIS O TAMANHO, NÃO SE BASEANDO NO CHILD */
  height: 0;
  min-height: 100%;
  /* max-height: inherit; */
  background: white;
  padding: 15px;
  border-left: 1px solid white;
  z-index:101;
}

.expanded-look .cta{
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 5%;
  border-top: 1px solid #e8e8e8;
  box-shadow: 0 0 3px 0px #00000011;
  z-index: 101;
}

.cta button{
  /* outline-width: 2px; */
  color: #00a650;
  background: white;
  
}

.flickity-page-dots{
  bottom: 25px!important;
}

.carousel-cell {
  width: 100%!important;
}

/* footer{
  background-color: #f2f2f2;
} */

.expanded-look .info p{
  font-weight: 500;
  color:#444;
  margin-bottom: 2px;
}
[data-field]{
  color: #444;
  font-weight: normal;
  word-break: break-word;
}
.expanded-look .info > div{
  padding: 12px 10px;
  border-radius: 8px;
  margin-bottom: 10px;
  border: 1px solid #f2f2f2;
}

.expanded-look .info .store p.store-name{
  display: flex;
  align-items: center;
  gap:8px;
  border-radius: 50px;
  padding: 8px;
  background: #233D4D11;
  font-weight: 500;
  padding-right: 20px;
  margin-bottom: 16px;
  color: black;
}

.expanded-look .info .subgroup p{
  font-size: .85rem;
}

.expanded-look .info .store .coupon{
  display: grid;
  grid-template-columns: 30px 1fr 30px;
  outline: 1px solid black;
  border: 3px solid white;
  border-radius: 50px;
  overflow: hidden;
  margin: 16px auto 0 auto;
  max-width: 300px;
  cursor: pointer;
  box-shadow: 0 3px 5px 0 #00000022;
}
.expanded-look .info .store .coupon:active > :nth-child(2){
  background-color: #eee;
}
.expanded-look .info .store .coupon > :nth-child(1),.expanded-look .info .store .coupon > :nth-child(3) {
  background-color: #9E005A;
  background-image: url("data:image/svg+xml,<svg id='patternId' width='100%' height='100%' xmlns='http://www.w3.org/2000/svg'><defs><pattern id='a' patternUnits='userSpaceOnUse' width='40' height='40' patternTransform='scale(1) rotate(90)'><rect x='0' y='0' width='100%' height='100%' fill='hsla(326,100%,31%,1)'/><path d='M10 0L0 10v10l10-10 10 10V10zm10 20v10l10-10 10 10V20L30 10z'  stroke-width='1' stroke='none' fill='hsla(20,100%,50%,1)'/><path d='M10-20L0-10V0l10-10L20 0v-10L10-20zM20 0v10L30 0l10 10V0L30-10 20 0zM10 20L0 30v10l10-10 10 10V30L10 20zm10 20v10l10-10 10 10V40L30 30 20 40z'  stroke-width='1' stroke='none' fill='hsla(340,100%,50%,1)'/></pattern></defs><rect width='800%' height='800%' transform='translate(0,0)' fill='url(%23a)'/></svg>");
  background-repeat: repeat-x;
}
.expanded-look .info .store .coupon.copied > :nth-child(1),.expanded-look .info .store .coupon.copied > :nth-child(3) {
  animation: copyAnim 1s ease-out forwards;
}
.expanded-look .info .store .coupon > :nth-child(2){
  background: white;
  padding: 8px;
  position: relative;
  transition: background .25s ease;
}
.expanded-look .info .store .coupon > :nth-child(2)::after{
  content: "Copiado";
  font-weight: 500;
  left: 0;
  top: 0;
  background-color: white;
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .25s ease .05s;
  opacity: 0;
}
.expanded-look .info .store .coupon.copied > :nth-child(2)::after{
  opacity: 1;
}

@keyframes copyAnim {
  from{
    background-position: 0px;
  }
  to{
    background-position: 480px;
  }
}



.expanded-look .info .product .ratings{
  margin-top: 10px;
  background: #233D4D11;
  border-radius: 8px;
  padding: 12px;
  font-size: .8rem;
}


.cl-price{
  color:#00a650;
}
.ta-r{
  text-align: right;
}
.ta-c{
  text-align: center;
}
.gray{
  color: gray!important;
}
.fw-600{
  font-weight: 600
}
.fw-700{
  font-weight: 700
}
.fs-75{
  font-size: .75rem!important;
}
.fs-85{
  font-size: .85rem!important;
}
.fs-100{
  font-size: 1rem!important;
}
.fs-125{
  font-size: 1.25rem!important;
}
.mt-5{
  margin-top: 5px!important;
}
.mt-8{
  margin-top: 8px!important;
}
.mt-10{
  margin-top: 10px!important;
}
.mb-5{
  margin-bottom: 5px!important;
}
.mb-10{
  margin-bottom: 10px!important;
}
.mr-5{
  margin-right: 5px!important;
}

.no-val{
  display: none!important;
}


@media screen and (max-width: 1080px) {
  .share-box .content{
    width: 50%;
  }
  .product-list-style{
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

@media screen and (max-width: 768px){
  .scrolly {
    /* Foreground, Background */
    scrollbar-color: #e8e8e8 #f8f8f8;
  }
  .scrolly::-webkit-scrollbar {
    width: 3px; 
    height: 3px;
  }
  .scrolly.mob-large::-webkit-scrollbar {
    width: 12px; 
    height: 12px;
  }
  .scrolly.mobilehidden::-webkit-scrollbar {
    width: 0;
    height:0;
  }
  .scrolly::-webkit-scrollbar-thumb { /* Foreground */
    background: #d8d8d8;
  }
  .scrolly::-webkit-scrollbar-track { /* Background */
    background: #f8f8f8;
  }

  .scrolly.body::-webkit-scrollbar {
    width: 0;
  }

  .flash-sale .section-title{
    justify-content: center;
  }
  .flash-sale .section-title i{
    animation: thunder alternate infinite ease-in-out .25s;
  }
  .flash-sale #fsTimer{
    margin: 0 auto;
    font-size: .7rem!important;
    text-align: center;
    background: #00000033;
    width: max-content;
    min-width: 50%;
    padding: 5px 10px;
    border-radius: 25px;
  }
  @keyframes thunder {
    to{
      filter: brightness(1.5);
    }    
  }
  ul.fs-product-list > li{
    min-width: 175px;
  }
  ul.fs-product-list > li .product-content{
    padding: 8px 8px 0 8px;
  }

  .percat-title{
    text-align: center;
  }
  
  .cat-menu{
    margin-bottom: 0;
    padding: 8px 7.5% 0 7.5%;
    /* background:#f2f2f2; */
    box-shadow: 0 8px 3px -5px #00000011;
  }
  .cat-menu li{
    font-size: .8rem;
  }  
  .flash-sale{
    padding: 30px 12px;
  }
  .flash-sale .section-title{
    padding: 0 12px;
    text-align: center;
  }
  .flash-sale .section-title h2{
    font-size: 1rem;
  }  
  .product-list-style{
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 25px 7.5%;
  }

  .product-list-style .product-content{
    padding: 10px;
  }

  .product-content h2{
    font-size: .8rem;
  }

  .header-holder{
    text-align: center;
  }

  .summary{
    font-size: .85rem;
    color: #333;
    /* font-weight: 500; */
  }
  .description{
    text-align: center;
  }  

  .expanded-look .content{
    width: 80%;
  }

  .expanded-look .relative{
    grid-template-rows: 60px 1fr 75px;
    grid-template-columns: 1fr;
    grid-template-areas: "exp-header exp-header"
    "middle middle"
    "cta cta";
  }

  .expanded-look .middle-row{
    flex-wrap: wrap;
    display: grid;
    grid-template-rows: .65fr 1fr;
    grid-template-columns: 1fr;
  }

  .expanded-look .img-holder{
    padding:0;
    padding: 10px 0;
    border-bottom: 1px solid #e8e8e8;
    box-shadow: 0 -10px 5px -5px #00000011 inset;
  }

  .expanded-look .img-box{
    height: 100%;

  }
  .expanded-look .info{
    overflow-y: auto;
  }

  .expanded-look .exp-header{
    padding: 15px;
  }  

  .expanded-look .exp-header h2{
    font-weight: 500!important;
    font-size: .8rem;
    text-align: left;
  }

  .share-box .content{
    width: 80%;
  }
  button.share-btn{
    width: 50px;
    height: 50px;
  }
  button.share-btn i{
    font-size: 2.85rem;
  }

  .media-viewer .content{
    width: 80%;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    height: 75%;
    border: 1px solid darkred;
  }
  .media-viewer .info{
    position: absolute;
    width: 100%;
    height: 60%;
    background: linear-gradient(#aa000000 10px, #aa000066 25px, #aa0000dd 40px);
    color: white;
    left: 0;
    padding-top: 60px;
    text-align:center;
    bottom: calc(-60% + 100px);
    transition: all .5s ease-in-out;
    box-shadow: unset;
  }
  .media-viewer .info.opened{
    color: black;
    background: linear-gradient(#ffffff00 0%, #ffffff66 20px, #ffffffee 40px);
    bottom: 0;
  }
  .media-viewer .info > p{
    font-weight: 500;
    margin-bottom: 25px;
  }
  .media-viewer ul li{
    text-align: left;
  }
  .media-viewer ul.products li{
    opacity: 0;
  }  
  .media-viewer ul.products{
    padding: 0 0 20px 0;
  }  
}

@media screen and (max-width: 320px){
  button.see-offer{
    font-size: .7rem;
    padding: 8px 10px;
  }
  
  .product-list-style{
    padding: 25px 5%;
  }
}