:root {
  --site-font: Jost, sans-serif;
  --body-color: #4c4c4c;
  --primary: #0c0407;
  --white: #f8f8f8;
  --black: black;
  --secondary: #333;
  --transparent: transparent;
  --border-clr: #ccc;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-commerce-commercecheckoutblockheader {
  background-color: #fff;
  border: 1px solid #e6e6e6;
  justify-content: space-between;
  align-items: baseline;
  padding: 4px 20px;
  display: flex;
}

.w-commerce-commerceaddtocartform {
  margin: 0 0 15px;
}

.w-commerce-commerceaddtocartoptionpillgroup {
  margin-bottom: 10px;
  display: flex;
}

.w-commerce-commerceaddtocartoptionpill {
  color: #000;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #000;
  margin-right: 10px;
  padding: 8px 15px;
}

.w-commerce-commerceaddtocartoptionpill.w--ecommerce-pill-selected {
  color: #fff;
  background-color: #000;
}

.w-commerce-commerceaddtocartoptionpill.w--ecommerce-pill-disabled {
  color: #666;
  cursor: not-allowed;
  background-color: #e6e6e6;
  border-color: #e6e6e6;
  outline-style: none;
}

.w-commerce-commerceaddtocartquantityinput {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 60px;
  height: 38px;
  margin-bottom: 10px;
  padding: 8px 6px 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commerceaddtocartquantityinput::placeholder {
  color: #999;
}

.w-commerce-commerceaddtocartquantityinput:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commerceaddtocartbutton {
  color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-color: #3898ec;
  border-width: 0;
  border-radius: 0;
  align-items: center;
  padding: 9px 15px;
  text-decoration: none;
  display: flex;
}

.w-commerce-commerceaddtocartbutton.w--ecommerce-add-to-cart-disabled {
  color: #666;
  cursor: not-allowed;
  background-color: #e6e6e6;
  border-color: #e6e6e6;
  outline-style: none;
}

.w-commerce-commercebuynowbutton {
  color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-color: #3898ec;
  border-width: 0;
  border-radius: 0;
  align-items: center;
  margin-top: 10px;
  padding: 9px 15px;
  text-decoration: none;
  display: inline-block;
}

.w-commerce-commercebuynowbutton.w--ecommerce-buy-now-disabled {
  color: #666;
  cursor: not-allowed;
  background-color: #e6e6e6;
  border-color: #e6e6e6;
  outline-style: none;
}

.w-commerce-commerceaddtocartoutofstock {
  background-color: #ddd;
  margin-top: 10px;
  padding: 10px;
}

.w-commerce-commerceaddtocarterror {
  background-color: #ffdede;
  margin-top: 10px;
  padding: 10px;
}

.w-commerce-commercecartwrapper {
  display: inline-block;
  position: relative;
}

.w-commerce-commercecartopenlink {
  color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-color: #3898ec;
  border-width: 0;
  border-radius: 0;
  align-items: center;
  padding: 9px 15px;
  text-decoration: none;
  display: flex;
}

.w-commerce-commercecartopenlinkcount {
  color: #3898ec;
  text-align: center;
  background-color: #fff;
  border-radius: 9px;
  min-width: 18px;
  height: 18px;
  margin-left: 8px;
  padding-left: 6px;
  padding-right: 6px;
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
  display: inline-block;
}

.w-commerce-commercecartcontainerwrapper {
  z-index: 1001;
  background-color: #000c;
  position: fixed;
  inset: 0;
}

.w-commerce-commercecartcontainerwrapper--cartType-modal {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.w-commerce-commercecartcontainerwrapper--cartType-leftSidebar {
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.w-commerce-commercecartcontainerwrapper--cartType-rightSidebar {
  flex-direction: row;
  justify-content: flex-end;
  align-items: stretch;
  display: flex;
}

.w-commerce-commercecartcontainerwrapper--cartType-leftDropdown {
  background-color: #0000;
  position: absolute;
  inset: 100% auto auto 0;
}

.w-commerce-commercecartcontainerwrapper--cartType-rightDropdown {
  background-color: #0000;
  position: absolute;
  inset: 100% 0 auto auto;
}

.w-commerce-commercecartcontainer {
  background-color: #fff;
  flex-direction: column;
  width: 100%;
  min-width: 320px;
  max-width: 480px;
  display: flex;
  overflow: auto;
  box-shadow: 0 5px 25px #00000040;
}

.w-commerce-commercecartheader {
  border-bottom: 1px solid #e6e6e6;
  flex: none;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  display: flex;
  position: relative;
}

.w-commerce-commercecartheading {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.w-commerce-commercecartcloselink {
  width: 16px;
  height: 16px;
}

.w-commerce-commercecartformwrapper {
  flex-direction: column;
  flex: 1;
  display: flex;
}

.w-commerce-commercecartform {
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  display: flex;
}

.w-commerce-commercecartlist {
  -webkit-overflow-scrolling: touch;
  flex: 1;
  padding: 12px 24px;
  overflow: auto;
}

.w-commerce-commercecartitem {
  align-items: flex-start;
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
}

.w-commerce-commercecartitemimage {
  width: 60px;
  height: 0%;
}

.w-commerce-commercecartiteminfo {
  flex-direction: column;
  flex: 1;
  margin-left: 16px;
  margin-right: 16px;
  display: flex;
}

.w-commerce-commercecartproductname {
  font-weight: 700;
}

.w-commerce-commercecartoptionlist {
  margin-bottom: 0;
  padding-left: 0;
  text-decoration: none;
  list-style-type: none;
}

.w-commerce-commercecartquantity {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 60px;
  height: 38px;
  margin-bottom: 10px;
  padding: 8px 6px 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecartquantity::placeholder {
  color: #999;
}

.w-commerce-commercecartquantity:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecartfooter {
  border-top: 1px solid #e6e6e6;
  flex-direction: column;
  flex: none;
  padding: 16px 24px 24px;
  display: flex;
}

.w-commerce-commercecartlineitem {
  flex: none;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
  display: flex;
}

.w-commerce-commercecartordervalue {
  font-weight: 700;
}

.w-commerce-commercecartapplepaybutton {
  color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-color: #000;
  border-width: 0;
  border-radius: 2px;
  align-items: center;
  height: 38px;
  min-height: 30px;
  margin-bottom: 8px;
  padding: 0;
  text-decoration: none;
  display: flex;
}

.w-commerce-commercecartapplepayicon {
  width: 100%;
  height: 50%;
  min-height: 20px;
}

.w-commerce-commercecartquickcheckoutbutton {
  color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-color: #000;
  border-width: 0;
  border-radius: 2px;
  justify-content: center;
  align-items: center;
  height: 38px;
  margin-bottom: 8px;
  padding: 0 15px;
  text-decoration: none;
  display: flex;
}

.w-commerce-commercequickcheckoutgoogleicon, .w-commerce-commercequickcheckoutmicrosofticon {
  margin-right: 8px;
  display: block;
}

.w-commerce-commercecartcheckoutbutton {
  color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  text-align: center;
  background-color: #3898ec;
  border-width: 0;
  border-radius: 2px;
  align-items: center;
  padding: 9px 15px;
  text-decoration: none;
  display: block;
}

.w-commerce-commercecartemptystate {
  flex: 1;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.w-commerce-commercecarterrorstate {
  background-color: #ffdede;
  flex: none;
  margin: 0 24px 24px;
  padding: 10px;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-commerce-commercecheckoutformcontainer {
  background-color: #f5f5f5;
  width: 100%;
  min-height: 100vh;
  padding: 20px;
}

.w-commerce-commercelayoutmain {
  flex: 0 800px;
  margin-right: 20px;
}

.w-commerce-commercecheckoutcustomerinfowrapper {
  margin-bottom: 20px;
}

.w-commerce-commercecheckoutblockcontent {
  background-color: #fff;
  border-bottom: 1px solid #e6e6e6;
  border-left: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
  padding: 20px;
}

.w-commerce-commercecheckoutlabel {
  margin-bottom: 8px;
}

.w-commerce-commercecheckoutemailinput {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 0;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutemailinput::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutemailinput:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutshippingaddresswrapper {
  margin-bottom: 20px;
}

.w-commerce-commercecheckoutshippingfullname {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutshippingfullname::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingfullname:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutshippingstreetaddress {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutshippingstreetaddress::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingstreetaddress:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutshippingstreetaddressoptional {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutshippingstreetaddressoptional::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingstreetaddressoptional:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutrow {
  margin-left: -8px;
  margin-right: -8px;
  display: flex;
}

.w-commerce-commercecheckoutcolumn {
  flex: 1;
  padding-left: 8px;
  padding-right: 8px;
}

.w-commerce-commercecheckoutshippingcity {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutshippingcity::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingcity:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutshippingstateprovince {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutshippingstateprovince::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingstateprovince:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutshippingzippostalcode {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutshippingzippostalcode::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingzippostalcode:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutshippingcountryselector {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 0;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutshippingcountryselector::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutshippingcountryselector:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutshippingmethodswrapper {
  margin-bottom: 20px;
}

.w-commerce-commercecheckoutshippingmethodslist {
  border-left: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
}

.w-commerce-commercecheckoutshippingmethoditem {
  background-color: #fff;
  border-bottom: 1px solid #e6e6e6;
  flex-direction: row;
  align-items: baseline;
  margin-bottom: 0;
  padding: 16px;
  font-weight: 400;
  display: flex;
}

.w-commerce-commercecheckoutshippingmethoddescriptionblock {
  flex-direction: column;
  flex-grow: 1;
  margin-left: 12px;
  margin-right: 12px;
  display: flex;
}

.w-commerce-commerceboldtextblock {
  font-weight: 700;
}

.w-commerce-commercecheckoutshippingmethodsemptystate {
  text-align: center;
  background-color: #fff;
  border-bottom: 1px solid #e6e6e6;
  border-left: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
  padding: 64px 16px;
}

.w-commerce-commercecheckoutpaymentinfowrapper {
  margin-bottom: 20px;
}

.w-commerce-commercecheckoutcardnumber {
  -webkit-appearance: none;
  appearance: none;
  cursor: text;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutcardnumber::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutcardnumber:focus, .w-commerce-commercecheckoutcardnumber.-wfp-focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutcardexpirationdate {
  -webkit-appearance: none;
  appearance: none;
  cursor: text;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutcardexpirationdate::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutcardexpirationdate:focus, .w-commerce-commercecheckoutcardexpirationdate.-wfp-focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutcardsecuritycode {
  -webkit-appearance: none;
  appearance: none;
  cursor: text;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutcardsecuritycode::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutcardsecuritycode:focus, .w-commerce-commercecheckoutcardsecuritycode.-wfp-focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutbillingaddresstogglewrapper {
  flex-direction: row;
  display: flex;
}

.w-commerce-commercecheckoutbillingaddresstogglecheckbox {
  margin-top: 4px;
}

.w-commerce-commercecheckoutbillingaddresstogglelabel {
  margin-left: 8px;
  font-weight: 400;
}

.w-commerce-commercecheckoutbillingaddresswrapper {
  margin-top: 16px;
  margin-bottom: 20px;
}

.w-commerce-commercecheckoutbillingfullname {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutbillingfullname::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingfullname:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutbillingstreetaddress {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutbillingstreetaddress::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingstreetaddress:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutbillingstreetaddressoptional {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutbillingstreetaddressoptional::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingstreetaddressoptional:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutbillingcity {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutbillingcity::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingcity:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutbillingstateprovince {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutbillingstateprovince::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingstateprovince:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutbillingzippostalcode {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutbillingzippostalcode::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingzippostalcode:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutbillingcountryselector {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  height: 38px;
  margin-bottom: 0;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutbillingcountryselector::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutbillingcountryselector:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutorderitemswrapper {
  margin-bottom: 20px;
}

.w-commerce-commercecheckoutsummaryblockheader {
  background-color: #fff;
  border: 1px solid #e6e6e6;
  justify-content: space-between;
  align-items: baseline;
  padding: 4px 20px;
  display: flex;
}

.w-commerce-commercecheckoutorderitemslist {
  margin-bottom: -20px;
}

.w-commerce-commercecheckoutorderitem {
  margin-bottom: 20px;
  display: flex;
}

.w-commerce-commercecheckoutorderitemdescriptionwrapper {
  flex-grow: 1;
  margin-left: 16px;
  margin-right: 16px;
}

.w-commerce-commercecheckoutorderitemquantitywrapper {
  white-space: pre-wrap;
  display: flex;
}

.w-commerce-commercecheckoutorderitemoptionlist {
  margin-bottom: 0;
  padding-left: 0;
  text-decoration: none;
  list-style-type: none;
}

.w-commerce-commercelayoutsidebar {
  flex: 0 0 320px;
  position: sticky;
  top: 20px;
}

.w-commerce-commercecheckoutordersummarywrapper {
  margin-bottom: 20px;
}

.w-commerce-commercecheckoutsummarylineitem, .w-commerce-commercecheckoutordersummaryextraitemslistitem {
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 8px;
  display: flex;
}

.w-commerce-commercecheckoutsummarytotal {
  font-weight: 700;
}

.w-commerce-commercecheckoutplaceorderbutton {
  color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  text-align: center;
  background-color: #3898ec;
  border-width: 0;
  border-radius: 3px;
  align-items: center;
  margin-bottom: 20px;
  padding: 9px 15px;
  text-decoration: none;
  display: block;
}

.w-commerce-commercecheckouterrorstate {
  background-color: #ffdede;
  margin-top: 16px;
  margin-bottom: 16px;
  padding: 10px 16px;
}

.w-commerce-commercepaypalcheckoutformcontainer {
  background-color: #f5f5f5;
  width: 100%;
  min-height: 100vh;
  padding: 20px;
}

.w-commerce-commercecheckoutcustomerinfosummarywrapper {
  margin-bottom: 20px;
}

.w-commerce-commercecheckoutsummaryitem, .w-commerce-commercecheckoutsummarylabel {
  margin-bottom: 8px;
}

.w-commerce-commercecheckoutsummaryflexboxdiv {
  flex-direction: row;
  justify-content: flex-start;
  display: flex;
}

.w-commerce-commercecheckoutsummarytextspacingondiv {
  margin-right: .33em;
}

.w-commerce-commercecheckoutpaymentsummarywrapper {
  margin-bottom: 20px;
}

.w-commerce-commercepaypalcheckouterrorstate {
  background-color: #ffdede;
  margin-top: 16px;
  margin-bottom: 16px;
  padding: 10px 16px;
}

.w-commerce-commerceorderconfirmationcontainer {
  background-color: #f5f5f5;
  width: 100%;
  min-height: 100vh;
  padding: 20px;
}

.w-commerce-commercecheckoutshippingsummarywrapper {
  margin-bottom: 20px;
}

.w-users-userloginformwrapper {
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

.w-users-userformbutton {
  text-align: center;
  width: 100%;
}

.w-users-userformfooter {
  justify-content: space-between;
  margin-top: 12px;
  display: flex;
}

.w-users-userformerrorstate {
  margin-left: 20px;
  margin-right: 20px;
  position: absolute;
  top: 100%;
  left: 0%;
  right: 0%;
}

.w-users-usersignupformwrapper {
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

.w-users-userformsuccessstate {
  display: none;
}

.w-users-userformheader {
  text-align: center;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-users-usersignupverificationmessage {
  display: none;
}

.w-users-userresetpasswordformwrapper, .w-users-userupdatepasswordformwrapper {
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

.w-users-useraccountwrapper {
  background-color: #f5f5f5;
  width: 100%;
  min-height: 100vh;
  padding: 20px;
}

.w-users-blockheader {
  background-color: #fff;
  border: 1px solid #e6e6e6;
  justify-content: space-between;
  align-items: baseline;
  padding: 4px 20px;
  display: flex;
}

.w-users-blockcontent {
  background-color: #fff;
  border-bottom: 1px solid #e6e6e6;
  border-left: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
  margin-bottom: 20px;
  padding: 20px;
}

.w-users-useraccountformsavebutton {
  text-align: center;
  margin-right: 8px;
}

.w-users-useraccountformcancelbutton {
  text-align: center;
  color: #333;
  background-color: #d3d3d3;
}

.w-users-useraccountsubscriptionlist {
  -webkit-overflow-scrolling: touch;
  flex: 1;
  overflow: auto;
}

.w-users-useraccountsubscriptionlistitem {
  align-items: flex-start;
  display: flex;
}

.w-users-gridrow {
  grid-column-gap: 8px;
  grid-template-columns: auto auto;
  justify-content: flex-start;
  display: grid;
}

.w-users-flexcolumn {
  flex-direction: column;
  display: flex;
}

.w-users-useraccountsubscriptioncancelbutton {
  color: #3898ec;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-color: #0000;
  padding: 0;
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.w-form-formradioinput--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.w-form-formradioinput--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #3898ec;
}

@media screen and (max-width: 767px) {
  .w-commerce-commercelayoutmain {
    flex-basis: auto;
    margin-right: 0;
  }

  .w-commerce-commercelayoutsidebar {
    flex-basis: auto;
  }
}

@media screen and (max-width: 479px) {
  .w-commerce-commerceaddtocartquantityinput {
    font-size: 16px;
  }

  .w-commerce-commercecartcontainerwrapper--cartType-modal {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }

  .w-commerce-commercecartcontainerwrapper--cartType-leftDropdown, .w-commerce-commercecartcontainerwrapper--cartType-rightDropdown {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    display: flex;
    position: fixed;
    inset: 0;
  }

  .w-commerce-commercecartquantity, .w-commerce-commercecheckoutemailinput, .w-commerce-commercecheckoutshippingfullname, .w-commerce-commercecheckoutshippingstreetaddress, .w-commerce-commercecheckoutshippingstreetaddressoptional {
    font-size: 16px;
  }

  .w-commerce-commercecheckoutrow {
    flex-direction: column;
  }

  .w-commerce-commercecheckoutshippingcity, .w-commerce-commercecheckoutshippingstateprovince, .w-commerce-commercecheckoutshippingzippostalcode, .w-commerce-commercecheckoutshippingcountryselector, .w-commerce-commercecheckoutcardnumber, .w-commerce-commercecheckoutcardexpirationdate, .w-commerce-commercecheckoutcardsecuritycode, .w-commerce-commercecheckoutbillingfullname, .w-commerce-commercecheckoutbillingstreetaddress, .w-commerce-commercecheckoutbillingstreetaddressoptional, .w-commerce-commercecheckoutbillingcity, .w-commerce-commercecheckoutbillingstateprovince, .w-commerce-commercecheckoutbillingzippostalcode, .w-commerce-commercecheckoutbillingcountryselector {
    font-size: 16px;
  }
}

body {
  font-family: var(--site-font);
  color: var(--body-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}

h1 {
  font-family: var(--site-font);
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 64px;
  font-weight: 600;
  line-height: 110%;
}

h2 {
  font-family: var(--site-font);
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 56px;
  font-weight: 600;
  line-height: 110%;
}

h3 {
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  font-weight: 600;
  line-height: 110%;
}

h4 {
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
}

h5 {
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 600;
  line-height: 100%;
}

h6 {
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 100%;
}

p {
  margin-bottom: 0;
  line-height: 24px;
}

a {
  font-weight: 400;
  text-decoration: none;
}

ul {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

ol {
  margin-top: 0;
  margin-bottom: 16px;
  padding-left: 40px;
}

img {
  max-width: 100%;
  display: inline-block;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
}

figure {
  margin-top: 40px;
  margin-bottom: 40px;
}

.btn-inner-2 {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  justify-content: center;
  align-items: center;
  height: 16px;
  display: flex;
}

.nav-layout {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-subscription-text {
  color: #0c0407;
  letter-spacing: -.01px;
  font-size: 14px;
}

.c-cart-thumb-wrap {
  flex: none;
  width: 100%;
  max-width: 168px;
  position: relative;
  overflow: hidden;
}

.c-cart-line-item-label {
  color: #0c0407;
  font-size: 24px;
  font-weight: 600;
}

.footer-subscription-input {
  background-color: #fff;
  border: 1px solid #f6f6f6;
  border-radius: 40px;
  width: 100%;
  height: 56px;
  padding: 18px 10px 17px 20px;
  box-shadow: 0 2px 6px #2527290a;
}

.footer-subscription-input:focus {
  border-color: #0c0407;
}

.footer-subscription-input::placeholder {
  color: #000;
  letter-spacing: -.01px;
  font-size: 14px;
}

.menu-bar {
  background-color: #000;
  width: 24px;
  height: 2px;
}

.menu-bar.bar-1.white, .menu-bar.bar-2.white, .menu-bar.bar-3.white {
  background-color: #fff;
}

.webflow-link {
  color: #000;
}

.c-cart-checkout-payment-apple {
  height: 40px;
  margin-bottom: 12px;
  padding-left: 16px;
  padding-right: 16px;
  font-weight: 600;
}

.paragraph {
  color: #0c0407;
  letter-spacing: -.1px;
  font-size: 14px;
}

.submit-button {
  color: #0000;
  background-color: #0c0407;
  background-image: url('../images/arrow-right.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  border-radius: 40px;
  width: 100%;
  height: 100%;
  padding-top: 9px;
  font-size: 0;
}

.colors-holder-item {
  border-radius: 8px;
  width: 100%;
  max-width: 235px;
  overflow: hidden;
}

.offer-text-wrap {
  z-index: 10;
  color: #fff;
  text-align: center;
  background-color: #0c0407;
  width: 150px;
  padding: 5px 20px;
  position: absolute;
  inset: 24px -34px auto auto;
  transform: rotate(45deg);
}

.offer-text-wrap.small {
  top: 10px;
  right: -52px;
}

.c-cart-close {
  color: #0c0407;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  display: flex;
}

.search-close {
  color: #fff;
  cursor: pointer;
  transition: all .35s linear;
  position: absolute;
  top: 20px;
  right: 20px;
}

.search-close:hover {
  transform: scale(1.1);
}

.style-gide-section {
  padding-top: 210px;
  padding-bottom: 70px;
}

.footer-top {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  border-bottom: 1px solid #e8e8e8;
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 80px;
  display: flex;
}

.section-spacing {
  padding-left: 32px;
  padding-right: 32px;
  overflow: hidden;
}

.section-spacing.product-page-spacing {
  margin-top: 80px;
}

.c-cart-quantity {
  color: #0c0407;
  text-align: center;
  background-color: #0000;
  border-style: solid;
  border-color: #e5e5e5;
  border-radius: 0;
  width: 54px;
  margin-bottom: 0;
}

.footer-subscription-from-block {
  width: 100%;
  max-width: 354px;
}

.footer-widget-link-text-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column wrap;
  max-width: 20vw;
  height: auto;
  max-height: 40vh;
  display: flex;
}

.btn-shape-2 {
  z-index: -1;
  background-color: #0c0407;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
  transform: translate(-110%);
}

.search-wrapper {
  background-color: #0c0407;
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
}

.footer-bottom {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  display: flex;
}

.footer-widget-link-text {
  color: #0c0407;
  letter-spacing: -.01px;
  font-size: 14px;
  line-height: 140%;
  text-decoration: none;
}

.c-cart-price-wrap.mobile-only {
  display: none;
}

.style-gide-button-holder-layout {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.c-cart-content-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-start;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

.nav-right {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.colors-holder-item-title {
  color: #0c0407;
  font-size: 20px;
  font-weight: 400;
}

.cart-quantity {
  color: #fff;
  text-align: center;
  background-color: #0c0407;
  border: 1px solid #0c0407;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  display: flex;
  position: absolute;
  inset: -8px -8px auto auto;
}

.cart-quantity.white {
  color: #000;
  background-color: #fff;
  border-color: #fff;
}

.c-cart-remove {
  color: #fc372d;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.search-input {
  color: #fff;
  background-color: #0000;
  border: 1px #000;
  border-bottom: 1px solid #fff;
  outline: none;
  width: 100%;
  height: 50px;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 50px;
}

.search-input:focus {
  border-bottom-color: #fff;
}

.search-input::placeholder {
  color: #fff;
}

.c-cart-empty-btn {
  color: #fff;
  background-color: #0c0407;
  justify-content: center;
  align-items: center;
  height: 40px;
  font-size: 14px;
  font-weight: 600;
  transition: all .35s linear;
  display: flex;
}

.c-cart-empty-btn:hover {
  background-color: #4c4c4c;
}

.search-icon-wrap {
  cursor: pointer;
}

.footer-left {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  flex: 0 auto;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: stretch;
  display: grid;
}

.c-cart-list {
  max-height: 550px;
  padding: 0;
}

.footer-subscription-wrap {
  margin-bottom: 0;
}

.cart-icon-wrap {
  background-color: #0000;
  padding: 0;
  position: relative;
}

.btn-icon-2 {
  flex: none;
  width: 20px;
  line-height: 1%;
}

.btn-icon-2.concierge-button {
  color: var(--white);
}

.c-cart-empty-wrap {
  color: #0c0407;
  background-color: #f8f8f8;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 90px;
  font-size: 18px;
  font-weight: 400;
  display: flex;
}

.footer-right {
  background-color: #f0f0f0;
  flex: 0 auto;
  order: -1;
  width: 370px;
  min-width: 28%;
  padding: 20px;
}

.colors-holder {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.footer-widget-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
}

.style-gide-headings-holder {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  display: flex;
}

.c-cart-footer-wrap {
  border-top-color: #e5e5e5;
  margin-top: 16px;
  padding: 12px 0 0;
}

.style-gide-headings-holder-item-text {
  color: #0c0407;
}

.btn-shape {
  z-index: -1;
  background-color: #333;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
  transform: translate(-110%);
}

.c-cart-empty-btn-wrap {
  margin-top: 20px;
}

.footer-bottom-right {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.c-cart-option {
  font-weight: 600;
}

.nav-bottom.dark {
  align-self: flex-start;
}

.colors-holder-item-bottom {
  background-color: #f9f9f9;
  padding: 16px;
}

.footer-widget-title-wrap {
  margin-bottom: 20px;
}

.topbar-text {
  color: #fff;
  font-size: 12px;
  line-height: 1.5;
}

.footer-social-icon-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.c-cart-quantity-wrap {
  margin-bottom: 32px;
}

.btn-inner {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  justify-content: center;
  align-items: center;
  height: 16px;
  display: flex;
}

.c-cart-item {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
  padding-top: 16px;
  padding-bottom: 16px;
}

.mavenflow-link {
  color: #000;
  text-decoration: underline;
}

.footer-subscription-text-wrap {
  width: 100%;
  max-width: none;
  margin-bottom: 24px;
}

.btn-inner-w-2 {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  justify-content: center;
  align-items: center;
  height: 16px;
  display: flex;
}

.btn-wrap-2-white {
  z-index: 1;
  color: #fff;
  letter-spacing: -.01em;
  background-color: #0000;
  border: 1px solid #fff;
  border-radius: 40px;
  padding: 20px 32px;
  font-size: 16px;
  font-weight: 600;
  line-height: 112%;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-wrap-2-white.hero-btn {
  padding: 14px 20px;
  font-weight: 500;
  line-height: 122%;
}

.btn-icon-2-white {
  flex: none;
  width: 20px;
  line-height: 1%;
}

.c-cart-line-item-value {
  color: #0c0407;
  font-size: 24px;
  font-weight: 600;
}

.nav-section {
  z-index: 999;
  background-color: #fff;
  border-bottom: 1px solid #e5e5e5;
  padding-top: 16px;
  padding-bottom: 16px;
  position: relative;
}

.nav-section.white {
  background-color: #0000;
  border-bottom-color: #ffffff4d;
}

.c-cart-title-wrap {
  margin-bottom: 12px;
}

.nav-link {
  color: #0c0407;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
}

.nav-link.white {
  color: #fff;
}

.search-close-icon {
  width: 30px;
  height: 30px;
}

.style-gide-layout {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.blog-rich-text h1 {
  letter-spacing: -.03em;
  margin-bottom: 16px;
  font-size: 36px;
  line-height: 120%;
}

.blog-rich-text h2 {
  letter-spacing: -.03em;
  margin-bottom: 16px;
  font-size: 32px;
  line-height: 120%;
}

.blog-rich-text h3 {
  letter-spacing: -.03em;
  margin-bottom: 16px;
  font-size: 28px;
  line-height: 112%;
}

.blog-rich-text h4 {
  letter-spacing: -.04em;
  margin-bottom: 16px;
  font-size: 24px;
}

.blog-rich-text h5 {
  margin-bottom: 16px;
  font-size: 20px;
}

.blog-rich-text h6 {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 120%;
}

.blog-rich-text p {
  margin-bottom: 16px;
  font-size: 14px;
}

.blog-rich-text img {
  width: 100%;
}

.blog-rich-text blockquote {
  color: var(--primary);
  background-color: #f6f6f6;
  border-left-style: none;
  margin-top: 44px;
  margin-bottom: 60px;
  padding: 24px;
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
}

.blog-rich-text li {
  color: var(--primary);
  letter-spacing: -.01em;
  margin-bottom: 16px;
  line-height: 122%;
}

.btn-icon-wrap {
  justify-content: flex-end;
  align-items: center;
  width: 20px;
  display: flex;
  overflow: hidden;
}

.c-cart-checkout-button {
  background-color: #0c0407;
  justify-content: center;
  align-items: center;
  height: 40px;
  padding: 4px 16px;
  font-size: 14px;
  font-weight: 600;
  transition: all .35s linear;
  display: flex;
}

.c-cart-checkout-button:hover {
  background-color: #333;
}

.colors-holder-item-top {
  background-color: #f0f1ea;
  width: 100%;
  height: 150px;
}

.colors-holder-item-top.dark, .colors-holder-item-top.primary {
  background-color: #0c0407;
}

.c-cart-error-state {
  color: #0c0407;
  text-align: center;
  justify-content: center;
  align-items: center;
  min-height: 40px;
  margin: 12px 0 0;
  padding: 4px 16px;
  font-size: 14px;
  font-weight: 400;
  display: flex;
}

.style-gide-nav-link {
  color: #0c0407;
  border-radius: 4px;
  justify-content: flex-start;
  align-items: center;
  padding: 8px 10px;
  font-weight: 400;
  text-decoration: none;
  display: block;
}

.style-gide-nav-link.w--current {
  color: #fff;
  background-color: #0c0407;
}

.style-gide-headings-holder-item {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: #f9f9f9;
  border-radius: 8px;
  flex-flow: column;
  padding: 24px;
  display: flex;
  overflow: hidden;
}

.topbar-text-wrap {
  text-align: center;
}

.c-cart-title {
  color: #0c0407;
  font-size: 24px;
  font-weight: 600;
}

.nav-menu {
  grid-column-gap: 35px;
  grid-row-gap: 35px;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.search-wrap {
  z-index: 1;
  justify-content: flex-start;
  align-items: center;
  max-width: 800px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.btn-shape-white-2 {
  z-index: -1;
  background-color: #0c0407;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
  transform: translate(-110%);
}

.footer-social-link {
  color: #999;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  line-height: 1px;
  text-decoration: none;
  transition: all .3s linear;
  display: inline-flex;
}

.footer-social-link:hover {
  color: #000;
  transform: scale(1.2);
}

.style-gide-left {
  z-index: 99;
  background-color: #fff;
  width: 100%;
  max-width: 300px;
  position: sticky;
  top: 120px;
}

.style-gide-nav {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-flow: column;
  display: flex;
}

.footer-section {
  padding-top: 80px;
  padding-bottom: 28px;
}

.footer-subscription-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
}

.main-wrapper {
  margin-bottom: 0;
  overflow: hidden;
}

.main-wrapper.collection-page-wrapper {
  background-color: #f8f8f8;
  /* color: #fafafa; */
  overflow: visible;
}

.page-wrapper {
  background-color: #f8f8f8;
}


.nav-group-default {
  z-index: 9999;
  width: 100%;
  position: fixed;
  inset: 0% auto auto 0%;
}

.c-cart-thumb {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.search-button {
  background-color: #0000;
  background-image: url('../images/search-white.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 22px 22px;
  width: 50px;
  height: 100%;
  font-size: 0;
  transition: all .35s linear;
  position: absolute;
  inset: 0% 0% auto auto;
}

.search-button:hover {
  background-size: 26px 26px;
}

.c-cart-header {
  border-bottom-style: none;
  border-bottom-color: #e5e5e5;
  padding: 0 0 12px;
}

.footer-subscription-title-wrap {
  margin-bottom: 20px;
}

.style-gide-button-holder-item {
  padding: 15px;
}

.style-gide-button-holder-item.dark {
  background-color: #0c0407;
}

.user-icon-wrap {
  text-decoration: none;
  display: none;
}

.style-gide-group-title {
  color: #0c0407;
  font-weight: 600;
  line-height: 112%;
}

.c-cart-price {
  color: #0c0407;
  font-size: 24px;
  font-weight: 600;
}

.c-cart-container {
  max-width: 735px;
  padding: 32px;
}

.c-cart-empty-state {
  padding: 0;
  display: block;
}

.menu-bar-wrap {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-flow: column;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  display: none;
}

.btn-shape-2-white {
  z-index: -1;
  background-color: #fff;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
  transform: translate(-110%);
}

.c-cart-content-right {
  flex: none;
}

.option-list {
  color: #0c0407;
  font-size: 16px;
  font-weight: 400;
}

.c-cart-header-title {
  color: #0c0407;
  letter-spacing: -.03em;
  font-size: 36px;
  line-height: 43px;
}

.btn-icon-white-2 {
  flex: none;
  width: 20px;
  line-height: 1%;
}

.btn-icon-white-2.white {
  color: var(--white);
}

.topbar-section {
  background-color: #000;
  padding-top: 8px;
  padding-bottom: 8px;
}

.footer-subscription-submit {
  width: 48px;
  height: 48px;
  position: absolute;
  top: 4px;
  right: 4px;
}

.btn-wrap-white-2 {
  z-index: 1;
  color: #0c0407;
  letter-spacing: -.01em;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 40px;
  padding: 20px 32px;
  font-size: 16px;
  font-weight: 600;
  line-height: 112%;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-wrap-white-2.hero-btn {
  border-radius: 40px;
  padding: 14px 20px;
  font-weight: 500;
  line-height: 122%;
}

.btn-wrap-white-2.hero-btn.black {
  background-color: var(--primary);
  border: 1px solid #e2e6eb;
  box-shadow: 0 2px 6px #2527290a;
}

.logo-wrap {
  width: 100%;
  max-width: 91px;
  display: inline-block;
}

.style-gide-group-title-wrap {
  margin-bottom: 8px;
}

.style-gide-group {
  margin-bottom: 30px;
}

.offer-text.small {
  font-size: 10px;
}

.btn-icon {
  flex: none;
  width: 20px;
  line-height: 1%;
}

.style-gide-right {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: column;
  flex: 1;
  display: flex;
}

.container {
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.container.blog-container {
  padding-bottom: 40px;
}

.btn-wrap {
  z-index: 1;
  color: #fff;
  background-color: #0c0407;
  border: 1px solid #0c0407;
  border-radius: 40px;
  padding: 20px 32px;
  font-size: 16px;
  font-weight: 600;
  line-height: 122%;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-wrap.button-small {
  padding: 12px 20px;
}

.footer-subscription-from {
  position: relative;
}

.btn-wrap-2 {
  z-index: 1;
  color: #0c0407;
  letter-spacing: -.01em;
  background-color: #0000;
  border: 1px solid #e7e7e7;
  border-radius: 40px;
  padding: 20px 32px;
  font-size: 16px;
  font-weight: 600;
  line-height: 112%;
  text-decoration: none;
  position: static;
  top: 3vh;
  right: -78vw;
  overflow: hidden;
}

.btn-wrap-2.view-all-btn {
  border-radius: 40px;
  padding-left: 28px;
  padding-right: 28px;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  top: auto;
  right: auto;
}

.btn-wrap-2.view-all-btn.no_arrows {
  font-size: 16px;
  top: 0;
}

.btn-wrap-2.view-all-btn.bla-k-friday-button {
  color: #fff;
  background-color: #171717;
  border-style: none;
}

.btn-wrap-2.stores-btn {
  letter-spacing: -.01em;
  border-color: #c6c6c6;
  border-radius: 40px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
}

.btn-wrap-2.explore-btn {
  letter-spacing: -.01em;
  border-radius: 40px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
}

.btn-wrap-2.collection-more-button {
  border-style: none;
  padding-right: 0;
  position: relative;
  top: 3vh;
  right: -78vw;
}

.btn-wrap-2.adress-btn {
  border-color: #a4a4a4;
  font-weight: 500;
}

.c-cart-option-wrap {
  margin-bottom: 24px;
}

.footer-copyright {
  color: #0c0407;
  text-align: center;
  letter-spacing: -.1px;
  font-size: 14px;
}

.hero-section {
  background-color: #0000;
  min-height: 100vh;
  margin-top: 0;
  overflow: hidden;
}

.collection-list {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.clients-info-name {
  letter-spacing: -.1px;
  font-size: 20px;
  line-height: 150%;
}

.instra-marquee-2 {
  justify-content: flex-end;
  display: flex;
}

.products-btn-wrap {
  text-align: center;
  justify-content: center;
  align-items: center;
  margin: 40px 0 0;
  display: flex;
  position: relative;
  top: auto;
  overflow: hidden;
}

.products-btn-wrap.products-btn-wrap-no-arrows {
  margin-top: 20px;
  top: 24px;
}

.products-btn-wrap.products-btn-wrap-no-arrows.concierge-wrap {
  margin-top: 40px;
}

.hero-title-layout {
  grid-column-gap: 46px;
  grid-row-gap: 46px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.stores-layout {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #f0f0f0;
  justify-content: space-between;
  align-items: flex-start;
  width: auto;
  padding: 32px;
  display: flex;
}

.clients-info-wrap {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  align-items: center;
  display: flex;
}

.stores-thumb {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  width: 44vw;
  max-width: none;
}

.collection-layout {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.support-box-icon-wrap {
  margin-bottom: 20px;
}

.brand-section {
  background-color: #191919;
  padding-top: 60px;
  padding-bottom: 100px;
}

.brand-content {
  text-align: center;
  width: 100%;
  max-width: 590px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
}

.stores-slider-arrow-icon {
  border-radius: 60px;
  width: 20px;
  height: 20px;
  line-height: 1px;
}

.clients-info-text {
  color: #0c0407;
}

.collection-title {
  letter-spacing: -.3px;
  font-size: 48px;
  line-height: 112%;
}

.instra-section {
  padding-top: 80px;
  padding-bottom: 70px;
  overflow: hidden;
}

.clients-thumb {
  width: 595px;
}

.support-box-title-wrap {
  margin-bottom: 8px;
}

.categories-section {
  padding-top: 220px;
  padding-bottom: 70px;
  overflow: hidden;
}

.hero-wrapper {
  z-index: 1;
  flex-flow: column;
  padding-left: 32px;
  padding-right: 32px;
  display: flex;
  position: relative;
}

.stores-section {
  padding: 60px 32px;
}

.sellers-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.stores-num-wrap {
  margin-bottom: 40px;
}

.brand-marquee {
  display: flex;
}

.collection-content-thumb-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  max-width: none;
  margin-bottom: 48px;
  display: grid;
}

.clients-content {
  width: 100%;
  max-width: 522px;
}

.scrolldown-btn-icon-wrap {
  flex-flow: column;
  flex: none;
  justify-content: flex-end;
  align-items: center;
  width: 16px;
  height: 16px;
  display: flex;
  overflow: hidden;
}

.scrolldown-btn {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  color: #fff;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  display: none;
}

.instagram-thumb-wrap {
  z-index: 1;
  margin-right: 8px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.clients-info-text-2 {
  color: #000;
}

.stores-title-wrap {
  margin-bottom: 20px;
}

.blog-layout {
  grid-column-gap: 20px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.client-slider-arrow-left {
  color: #000;
  background-color: #f2f2f2;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  transition: all .3s linear;
  display: flex;
  inset: -93px 70px auto auto;
}

.client-slider-arrow-left:hover {
  color: #fff;
  background-color: #000;
}

.hero-text {
  font-family: var(--site-font);
  color: #fff;
  word-break: normal;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

.hero-text.black {
  color: var(--black);
}

.instra-layout {
  flex: none;
  align-items: center;
  display: flex;
}

.cateogry-slider-nav {
  display: none;
}

.stores-content {
  width: auto;
  margin: 0 32px 32px;
  padding-left: 0;
}

.hero-top {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-color: #f0f0f0;
  flex-flow: column;
  flex: none;
  justify-content: space-between;
  align-items: flex-start;
  padding: 32px;
  display: flex;
  position: relative;
}

.products-grid-layout {
  grid-column-gap: 20px;
  grid-row-gap: 36px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 140vw;
  display: grid;
}

.products-grid-layout.main-page {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: auto;
}

.products-grid-layout.collection-page-product-grid {
  grid-row-gap: 40px;
  grid-template-rows: .75fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-rows: .75fr;
  width: 120vw;
}

.brand-item-thumb {
  max-height: 32px;
}

.brand-item-thumb.chrome-hearts-custom-size {
  max-height: 50px;
}

.clients-thumb-wrap {
  width: 100%;
  max-width: 595px;
}

.stores-addres {
  color: #0c0407;
}

.instra-showcase-wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  display: flex;
  overflow: hidden;
}

.hero-title-wrap {
  margin-bottom: 8px;
  padding-right: 10px;
  padding-bottom: 10px;
  overflow: hidden;
}

.clients {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  background-color: #f6f6f6;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  padding-right: 20px;
  display: flex;
}

.collection-text {
  margin-top: 20px;
  line-height: 150%;
}

.support-layout {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  place-items: flex-start stretch;
  display: flex;
}

.client-slider-arrow-right {
  color: #000;
  background-color: #f2f2f2;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  transition: all .3s linear;
  display: flex;
  inset: -93px 0% auto auto;
}

.client-slider-arrow-right:hover {
  color: #fff;
  background-color: #000;
}

.brand-marquee-layout {
  flex: none;
  align-items: center;
  display: flex;
}

.stores-addres-wrap {
  width: 100%;
  max-width: none;
  margin-bottom: 20px;
}

.clients-title-wrap {
  margin-bottom: 28px;
}

.instra-marquee {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  display: flex;
}

.stores-title {
  font-family: var(--site-font);
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
}

.collection-content-thumb {
  aspect-ratio: 1;
  object-fit: cover;
  object-position: 50% 40%;
}

.instra-icon-wrap {
  aspect-ratio: 1;
  background-color: #0003;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0% auto auto 0%;
}

.support-box-title {
  font-size: 24px;
  line-height: 112%;
}

.slide-nav {
  display: none;
  overflow: visible;
}

.stores-email {
  color: #0c0407;
  letter-spacing: -.1px;
  font-size: 20px;
}

.instagram-thumb {
  width: 233px;
  aspect-ratio: 2 / 2.5;
  /* object-fit: cover;       
  object-position: center; */
}

.explore-section {
  padding-top: 60px;
  padding-bottom: 60px;
  overflow: hidden;
}

.instra-layout-2 {
  flex: none;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.stores-email-wrap {
  margin-bottom: 20px;
}

.brand-title-wrap {
  margin-bottom: 12px;
}

.slide-nav-4 {
  display: none;
}

.explore-slider {
  background-color: #0000;
  flex-flow: column;
  height: auto;
  display: flex;
}

.clients-text-wrap {
  width: 100%;
  max-width: 532px;
  margin-bottom: 68px;
}

.collection-thumb-wrap {
  width: 100%;
  max-width: 533px;
}

.stores-slider-arrow-right {
  z-index: 2;
  color: #000;
  background-color: #f2f2f2;
  border-radius: 40px;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  transition: all .3s linear;
  display: flex;
  position: relative;
  inset: auto auto auto 40px;
}

.stores-slider-arrow-right:hover {
  color: #fff;
  background-color: #000;
}

.categories-slider-arrow-left {
  z-index: 2;
  color: #000;
  background-color: #f2f2f2;
  border-radius: 40px;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  transition: all .3s linear;
  display: flex;
  position: relative;
  inset: 48px auto auto -40px;
}

.categories-slider-arrow-left:hover {
  color: #fff;
  background-color: #000;
}

.explore-slider-arrow-right {
  z-index: 2;
  color: #000;
  background-color: #f2f2f2;
  border-radius: 40px;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  transition: all .3s linear;
  display: flex;
  position: relative;
  inset: auto auto auto 40px;
}

.explore-slider-arrow-right:hover {
  color: #fff;
  background-color: #000;
}

.scrolldown-btn-icon {
  flex: none;
  width: 16px;
  line-height: 1%;
}

.scrolldown-btn-icon.black {
  filter: invert();
}

.collection-title-wrap {
  margin-bottom: 48px;
}

.hero-content-left {
  flex: 0 auto;
  width: 100%;
  max-width: 480px;
  padding-top: 0;
}

.hero-product-thumb {
  width: 100%;
}

.hero-text-slider-nav {
  display: none;
}

.hero-text-wrap {
  flex-flow: row;
  display: flex;
  overflow: hidden;
}

.explore-slide {
  margin-right: 20px;
}

.clients-text-2 {
  color: #000;
  letter-spacing: -.1px;
  font-size: 20px;
  line-height: 150%;
}

.collection-slide {
  height: auto;
  min-height: auto;
  margin-right: 20px;
}

.collection-text-wrap {
  width: 100%;
  max-width: 450px;
  margin-bottom: 28px;
}

.hero-thumb {
  object-fit: cover;
  object-position: 50% 0%;
  width: 100%;
  max-width: 100%;
  height: 100%;
}

.hero-thumb.xl {
  aspect-ratio: auto;
  filter: none;
  mix-blend-mode: normal;
  object-fit: cover;
  object-position: 50% 0%;
  width: 100%;
  height: auto;
  display: inline-block;
  overflow: clip;
}

.hero-thumb.xs {
  display: none;
}

.hero-thumb.xs.hero-thumb-mobile {
  object-fit: contain;
}

.hero-thumb.lg {
  display: none;
}

.collection-section {
  padding-top: 80px;
  padding-bottom: 70px;
}

.hero-bottom-right {
  z-index: 20;
  position: absolute;
  inset: auto 4% 16% auto;
  overflow: hidden;
}

.client-slider-arrow-icon {
  width: 20px;
  height: 20px;
  line-height: 1px;
}

.hero-text-slider-arrow {
  display: none;
}

.hero-btn-wrap {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  justify-content: flex-start;
  align-items: center;
  font-weight: 500;
  display: flex;
}

.common-title {
  text-align: left;
  letter-spacing: -.3px;
  font-family: Jost, sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 112%;
}

.collection-title-link {
  text-decoration: none;
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
}

.common-title.left {
  text-align: left;
  letter-spacing: -.3px;
  font-size: 32px;
  line-height: 120%;
}

.hero-text-slider {
  background-color: #0000;
  height: auto;
}

.clients-text {
  color: #0c0407;
  letter-spacing: -.1px;
  font-size: 20px;
  line-height: 150%;
}

.stores-slider {
  background-color: #0000;
  height: auto;
}

.support-section {
  padding-top: 80px;
  padding-bottom: 70px;
}

.categories-slider-arrow-icon {
  width: 20px;
  height: 20px;
  line-height: 1px;
}

.instra-icon {
  display: none;
}

.clients-star-wrap {
  margin-bottom: 32px;
}

.hero-product-wrap {
  width: 100%;
  max-width: 189px;
}

.brand-item {
  margin-right: 50px;
}

.hero-content-right {
  z-index: 20;
  flex: none;
  position: absolute;
  inset: 34vh 2% auto auto;
  overflow: hidden;
}

.clients-title {
  font-size: 24px;
  line-height: 112%;
}

.client-section {
  padding-top: 80px;
  padding-bottom: 70px;
}

.explore-slider-arrow-left {
  color: #000;
  background-color: #f2f2f2;
  border-radius: 40px;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  transition: all .3s linear;
  display: flex;
  position: relative;
  inset: 48px auto auto -40px;
}

.explore-slider-arrow-left:hover {
  color: #fff;
  background-color: #000;
}

.hero-product-thumb-wrap {
  margin-bottom: 12px;
  display: block;
  overflow: hidden;
}

.explore-slider-arrow-icon {
  width: 20px;
  height: 20px;
  line-height: 1px;
}

.client-slider {
  background-color: #0000;
  height: auto;
}

.stores-num {
  color: #0c0407;
  letter-spacing: -.1px;
  font-size: 20px;
}

.common-title-wrap {
  margin-bottom: 2.778vw;
}

.common-title-wrap.sellers-heading {
  text-align: left;
  margin-bottom: 40px;
}

.common-title-wrap.blog-heading {
  text-align: center;
  margin-bottom: 0;
}

.common-title-wrap.client-heading, .common-title-wrap.stores-heading {
  margin-bottom: 40px;
}

.common-title-wrap.cta-heading {
  text-align: center;
  margin-bottom: 40px;
}

.common-title-wrap.categories-heading, .common-title-wrap.explore-heading {
  margin-bottom: 40px;
}

.collection-slider-mask {
  flex: 1;
  width: 100%;
  max-width: 240px;
  height: 100%;
  min-height: auto;
  overflow: visible;
}

.support-box-text {
  color: #0c0407;
}

.blog-cms-wrapper {
  margin-top: 40px;
}

.hero-product-title-icon-wrap {
  flex: none;
  justify-content: flex-end;
  align-items: center;
  width: 16px;
  height: 16px;
  display: flex;
  overflow: hidden;
}

.hero-thumb-wrap {
  z-index: -2;
  object-fit: cover;
  flex: 0 auto;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  height: auto;
  display: flex;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.hero-small-text-wrap {
  margin-bottom: 13px;
  overflow: hidden;
}

.blog-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.explore-slider-mask {
  /* width: 300px; */
  max-width: none;
  overflow: visible;
}

.support-box-icon {
  width: 40px;
}

.brand-title {
  color: var(--white);
  letter-spacing: -.3px;
  margin-bottom: 24px;
  font-size: 32px;
  font-weight: 400;
  line-height: 112%;
}

.clients-author {
  width: 60px;
}

.categories-slider-arrow-right {
  z-index: 2;
  color: #000;
  background-color: #f2f2f2;
  border-radius: 40px;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  transition: all .3s linear;
  display: flex;
  position: relative;
  inset: auto auto auto 40px;
  overflow: visible;
}

.categories-slider-arrow-right:hover {
  color: #fff;
  background-color: #000;
}

.hero-bottom {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.stores-slider-arrow-left {
  z-index: 2;
  color: #000;
  background-color: #f2f2f2;
  border-radius: 60px;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  transition: all .3s linear;
  display: flex;
  position: relative;
  inset: 48px auto auto -40px;
}

.stores-slider-arrow-left:hover {
  color: #fff;
  background-color: #000;
}

.products-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero-product-title-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: #fff;
  letter-spacing: -.01em;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  line-height: 116%;
  text-decoration: none;
  display: flex;
}

.hero-small-text {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}

.hero-title {
  font-family: var(--site-font);
  color: #fff;
  letter-spacing: .5px;
  font-size: 60px;
  font-weight: 400;
  line-height: 140%;
}

.hero-title.black {
  color: var(--black);
  font-size: 32px;
  font-weight: 400;
  line-height: 110%;
}

.brand-text {
  color: var(--white);
  letter-spacing: -.01px;
  font-size: 16px;
  line-height: 22px;
}

.hero-layout {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  flex: 0 auto;
  justify-content: flex-end;
  align-items: flex-start;
  height: 100vh;
  padding-top: 0;
  padding-bottom: 68px;
  display: flex;
}

.collection-content {
  width: 100%;
  max-width: none;
}

.brand-marquee-wrap {
  overflow: hidden;
}

.products-layout-2 {
  grid-column-gap: 20px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 40px;
  display: grid;
}

.collection-slider {
  background-color: #0000;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: auto;
  display: flex;
}

.nav-group-home {
  z-index: 9999;
  width: 100%;
  position: fixed;
  inset: 0% auto auto 0%;
}

.hero-product-title-icon {
  flex: none;
  width: 16px;
  line-height: 1%;
}

.stores-thumb-wrap {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: auto;
  max-width: none;
  margin-left: 0;
  display: block;
}

.collection-btn-wrap {
  display: inline-flex;
}

.sellers-products-price {
  color: #0c0407;
}

.sellers-products-title-wrap {
  margin-bottom: 4px;
}

.sellers-products-title {
  color: #0c0407;
  letter-spacing: -.1px;
  font-size: 20px;
  line-height: 150%;
  text-decoration: none;
}

.sellers-products-thumb-wrap {
  z-index: 1;
  margin-bottom: 12px;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}

.contact-layout {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: space-between;
  display: flex;
}

.contact-address-wrap {
  width: 100%;
  max-width: 218px;
}

.contact-form {
  margin-bottom: 60px;
}

.contact-phn {
  color: #0c0407;
  line-height: 24px;
}

.contact-thumb-wrap {
  width: 100%;
  max-width: 476px;
}

.contact-info-title {
  font-size: 24px;
  font-weight: 400;
  line-height: 112%;
}

.contact-address {
  color: #0c0407;
  font-weight: 700;
  line-height: 24px;
}

.contact-content {
  width: 100%;
  max-width: 704px;
}

.contact-title-wrap {
  margin-bottom: 60px;
}

.contact-number-wrap {
  text-decoration: none;
}

.contact-input {
  color: #0c0407;
  border: 1px #000;
  border-bottom: 1px solid #d1d6d4;
  width: 100%;
  height: 33px;
  margin-bottom: 0;
  padding: 0 0 12px;
  font-weight: 400;
  transition: all .35s linear;
}

.contact-input:focus {
  border-bottom-color: #0c0407;
}

.contact-title {
  letter-spacing: -.5px;
  font-size: 36px;
  font-weight: 400;
  line-height: 96%;
}

.contact-info-title-wrap {
  margin-bottom: 24px;
}

.contact-number {
  color: #0c0407;
  font-weight: 700;
}

.contact-phn-wrap {
  margin-bottom: 4px;
}

.contact-us-wrap {
  margin-bottom: 0;
}

.contact-info-wrap-iteam {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.contact-textarea {
  color: #0c0407;
  border: 1px #000;
  border-bottom: 1px solid #d1d6d4;
  height: 123px;
  min-height: 123px;
  margin-bottom: 0;
  padding: 0;
  transition: all .35s linear;
}

.contact-textarea:focus {
  border-bottom-color: #0c0407;
}

.contact-section {
  padding-top: 210px;
  padding-bottom: 70px;
}

.contact-textarea-wrap {
  margin-bottom: 32px;
}

.contact-input-wrap {
  margin-bottom: 40px;
}

.section-title-wrap.categori-haeding, .section-title-wrap.products-hero-title {
  margin-bottom: 0;
}

.section-title {
  letter-spacing: -.5px;
  font-size: 36px;
  font-weight: 400;
  line-height: 120%;
}

.client-section-2 {
  padding-top: 210px;
  padding-bottom: 70px;
}

.client-layout-2 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  margin-top: 40px;
  display: flex;
}

.categori-filter-toggle {
  border: 1px solid #e0e0e0;
  border-radius: 40px;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 16px;
}

.categories-layout {
  grid-column-gap: 20px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 40px;
  display: grid;
}

.categori-filter-text {
  color: #0c0407;
  letter-spacing: -.01em;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
}

.categori-heading-layout {
  z-index: 10;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: relative;
}

.categori-filter-wrap {
  border: 1px solid #e0e0e0;
  flex: none;
}

.categori-filter-dropdown-list {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  inset: 100% 0% auto auto;
}

.category-filter {
  z-index: 99;
  margin-left: 0;
  margin-right: 0;
}

.blog-section-2 {
  padding-top: 210px;
  padding-bottom: 70px;
}

.faq-tabs-contents {
  flex: 1;
  width: 100%;
  margin-left: 120px;
}

.faq-icon {
  z-index: 1;
  flex: none;
  width: 16px;
  height: 16px;
  position: relative;
}

.faq-icon-plus {
  background-color: #0c0407;
  width: 2px;
  height: 100%;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}

.faq-title-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.faq-tabs {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 100px;
  display: flex;
}

.faq {
  border-style: none none solid;
  border-bottom-width: 1px;
  border-bottom-color: #e5e5e5;
  padding: 8px 0 20px;
}

.faq-text-wrap {
  width: 100%;
  max-width: 665px;
  padding-bottom: 0;
  overflow: hidden;
}

.faq-content {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  display: flex;
}

.faq-tabs-link {
  color: #0c0407;
  background-color: #0000;
  border: 1px solid #e0e0e0;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  text-decoration: none;
  display: flex;
}

.faq-tabs-link.w--current {
  color: #fff;
  background-color: #0c0407;
  border: 1px solid #e0e0e0;
  padding: 12px 16px;
}

.faq-tabs-link-icon {
  width: 20px;
  height: 20px;
  line-height: 1px;
}

.faq-title {
  color: #0c0407;
  letter-spacing: -.01px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 112%;
}

.faq-text {
  color: #4c4c4c;
  margin-top: 27px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 24px;
}

.faq-section {
  padding-top: 210px;
  padding-bottom: 70px;
}

.faq-icon-minus {
  background-color: #0c0407;
  width: 100%;
  height: 2px;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}

.faq-tabs-menu {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  flex: none;
  width: 100%;
  max-width: 285px;
  display: flex;
}

.products-section-2 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.products-heading-layout {
  z-index: 99;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  display: flex;
  position: relative;
}

.collection-layout-2 {
  grid-column-gap: 20px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 40px;
  display: grid;
}

.price-filter-dropdown-item {
  color: #4c4c4c;
  letter-spacing: -.01em;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 21px;
  transition: all .35s linear;
}

.price-filter-dropdown-item:hover, .price-filter-dropdown-item.w--current {
  color: #fff;
  background-color: #0c0407;
}

.filter-dropdown-toggle {
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 16px;
}

.filter-dropdown-wrap {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: row;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 24px;
  display: flex;
}

.filter-dropdown-text {
  color: #000;
  letter-spacing: -.01em;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
}

.filter-price-dropdown {
  z-index: 99;
  border: 1px solid #e0e0e0;
  border-radius: 40px;
  flex: 0 auto;
  margin: 0;
}

.price-filter-dropdown-list {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  inset: 100% 0% auto auto;
}

.privacy-content {
  margin-bottom: 60px;
}

.privacy-list-wrap {
  margin-top: 16px;
  margin-bottom: 16px;
}

.privacy-title-wrap {
  margin-bottom: 12px;
}

.privacy-text {
  letter-spacing: -.3px;
  font-size: 20px;
  line-height: 150%;
}

.privacy-list-item {
  color: #0c0407;
  letter-spacing: -.1px;
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
}

.privacy-long-text-wrap {
  margin-bottom: 12px;
}

.privacy-long-text-wrap.last {
  margin-bottom: 0;
}

.privacy-long-text {
  letter-spacing: -.1px;
  font-size: 20px;
  line-height: 150%;
}

.privacy-hero-section {
  padding-top: 210px;
  padding-bottom: 50px;
}

.privacy-text-wrap {
  margin-bottom: 12px;
}

.privacy-text-wrap.last {
  margin-bottom: 0;
}

.privacy-list {
  margin-bottom: 0;
  padding-left: 20px;
}

.privacy-section {
  padding-top: 50px;
}

.privacy-layout {
  width: 100%;
  max-width: 1030px;
}

.privacy-bottom-border {
  border-bottom: 1px solid #ccc;
  margin-top: 150px;
  margin-bottom: 80px;
  padding-bottom: 0;
}

.privacy-title {
  letter-spacing: -.3px;
  font-size: 48px;
  font-weight: 400;
  line-height: 112%;
}

.privacy-hero-title-wrap {
  margin-bottom: 16px;
}

.privacy-hero-title {
  letter-spacing: -.5px;
  font-size: 36px;
  font-weight: 400;
  line-height: 96%;
}

.privacy-hero-text {
  color: #0c0407;
  line-height: 24px;
}

.terms-hero-title-wrap {
  margin-bottom: 16px;
}

.terms-hero-text {
  color: #0c0407;
  line-height: 24px;
}

.terms-hero-section {
  padding-top: 210px;
  padding-bottom: 50px;
}

.terms-hero-title {
  letter-spacing: -.5px;
  line-height: 96%;
}

.about-text-wrap-2 {
  width: 100%;
  max-width: 469px;
}

.team-iteam-thumb {
  width: 295px;
}

.about-text {
  color: #0c0407;
  letter-spacing: -.1px;
  font-size: 14px;
  line-height: 150%;
}

.about-hero-section {
  padding-top: 210px;
  padding-bottom: 70px;
}

.faq-title-wrap-2 {
  text-align: center;
  margin-bottom: 40px;
}

.about-text-wrap {
  width: 100%;
  max-width: 550px;
}

.about-hero-left {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  display: flex;
}

.about-thumb {
  width: 555px;
}

.faq-title-2 {
  letter-spacing: -.3px;
  font-size: 48px;
  line-height: 112%;
}

.team-iteam-thumb-wrap {
  margin-bottom: 14px;
}

.about-title-wrap-2 {
  width: 100%;
  max-width: 510px;
  margin-bottom: 20px;
}

.about-hero-title, .team-title {
  letter-spacing: -.3px;
  font-size: 48px;
  line-height: 112%;
}

.team-iteam-title {
  font-size: 24px;
  line-height: 112%;
}

.about-short-text {
  color: #0c0407;
  letter-spacing: -.1px;
  font-size: 14px;
  line-height: 150%;
}

.about-title-2 {
  letter-spacing: .04px;
  font-size: 40px;
  line-height: 110%;
}

.team-sction {
  padding-top: 80px;
  padding-bottom: 70px;
}

.team-iteam-text {
  color: #0c0407;
  letter-spacing: -.1px;
  font-size: 14px;
  line-height: 150%;
}

.team-title-wrap {
  text-align: center;
  margin-bottom: 40px;
}

.faq-content-2 {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  width: 100%;
  max-width: 836px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.about-short-text-wrap {
  width: 100%;
  max-width: 550px;
  margin-top: 20px;
}

.about-hero-thumb-wrap {
  width: 100%;
  max-width: 405px;
}

.about-section {
  padding-top: 80px;
  padding-bottom: 70px;
}

.about-title {
  letter-spacing: -.4px;
  font-size: 40px;
  line-height: 112%;
}

.team-iteam-title-wrap {
  margin-bottom: 14px;
}

.about-hero-layout {
  margin-top: 80px;
  position: relative;
}

.about-layout-2 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: space-between;
  align-items: center;
  margin-top: 150px;
  display: flex;
}

.faq-section-2 {
  padding-top: 80px;
  padding-bottom: 70px;
}

.about-hero-thumb-2-wrap {
  width: 100%;
  max-width: 330px;
  position: absolute;
  inset: -30% 0% auto auto;
}

.about-hero-text-wrap {
  width: 100%;
  max-width: 223px;
  margin-bottom: 247px;
}

.about-btn-wrap {
  margin-top: 60px;
}

.about-hero-info {
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  max-width: 511px;
  display: block;
}

.about-hero-text {
  color: #0c0407;
  letter-spacing: -.1px;
  font-size: 14px;
  line-height: 150%;
}

.about-title-wrap {
  width: 100%;
  max-width: 620px;
  margin-bottom: 40px;
}

.about-layout {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.team-layout {
  grid-column-gap: 20px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.utility-content-text-wrap {
  width: 100%;
  max-width: 1080px;
}

.common-hero-title-wrap {
  margin-bottom: 16px;
}

.common-hero-layout.licenses {
  width: 100%;
  max-width: 637px;
}

.utility-content-title-wrap {
  margin-bottom: 28px;
}

.changelog-bottom-border {
  border-bottom: 1px solid #ccc;
  margin-top: 150px;
}

.utility-content-text-heilight {
  color: #0c0407;
  font-weight: 600;
}

.common-hero-text {
  color: #0c0407;
  line-height: 24px;
}

.changelog-section {
  padding-top: 50px;
  padding-bottom: 70px;
  overflow: hidden;
}

.common-hero-section {
  padding-top: 210px;
  padding-bottom: 50px;
}

.utility-content-text-link {
  color: #666;
  transition: all .35s linear;
  display: inline-block;
}

.utility-content-text-link:hover {
  color: #fc372d;
}

.common-hero-title {
  letter-spacing: -.5px;
  line-height: 96%;
}

.utility-content-wrap {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: space-between;
  align-items: center;
  display: block;
}

.utility-content-text {
  color: #666;
  letter-spacing: -.03px;
  font-size: 20px;
  line-height: 150%;
}

.utility-layout {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-flow: column;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.utility-content-title {
  margin-bottom: 16px;
  font-size: 48px;
  line-height: 110%;
}

.utility-content-title.mb-0 {
  letter-spacing: -.03em;
  margin-bottom: 0;
  line-height: 112%;
}

.changelog-version {
  letter-spacing: -.3px;
  font-size: 48px;
  line-height: 112%;
}

.changelog-text {
  letter-spacing: -.1px;
  font-size: 20px;
  line-height: 150%;
}

.changelog-version-wrap {
  margin-bottom: 12px;
}

.b-details-hero-title-wrap {
  max-width: 756px;
  margin-bottom: 16px;
  margin-left: auto;
  margin-right: auto;
}

.b-details-meta-item-text {
  color: #0c0407;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
}

.b-details-meta-layout {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.b-details-hero-content {
  text-align: center;
  margin-top: 32px;
  margin-bottom: 32px;
}

.b-details-meta-item {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  align-items: center;
  display: flex;
}

.b-details-hero-thumb-wrap {
  margin-bottom: 60px;
}

.b-details-hero-section {
  background-color:  #fafafa;
  padding-top: 170px;
  padding-bottom: 70px;
}

.similar-articles-cms {
  margin-top: 40px;
}

.b-details-meta-item-icon {
  color: #0c0407;
  width: 16px;
  height: 16px;
}

.b-details-richtext-wrap {
  width: 100%;
  max-width: 920px;
}

.b-details-hero-title {
  letter-spacing: -.3px;
  font-size: 36px;
  line-height: 112%;
}

.care-instructions-title {
  letter-spacing: -.3px;
  font-size: 36px;
  line-height: 120%;
}

.product-details-price {
  color: #0c0407;
  letter-spacing: -.01em;
  font-size: 20px;
  font-weight: 600;
  line-height: 150%;
}

.product-details-quantity {
  background-color: #0000;
  border-color: #e5e5e5;
  border-radius: 0;
  width: 55px;
  height: 40px;
  margin-bottom: 0;
}

.add-to-cart-btn {
  color: var(--primary);
  letter-spacing: -.01em;
  background-color: #0000;
  border: 2px solid #000;
  border-radius: 40px;
  justify-content: center;
  align-items: center;
  width: auto;
  height: auto;
  margin-top: 0;
  padding: 16px 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 15px;
  transition: all .35s linear;
  display: flex;
}

.add-to-cart-btn:hover {
  color: var(--white);
  background-color: #333;
}

.add-to-cart-btn.quick-buy-btn {
  color: var(--black);
  background-color: #0000;
  border: 2px solid #000;
  padding-bottom: 16px;
}

.product-default-state {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  margin-bottom: 0;
  display: flex;
}

.product-details-options-select {
  color: #0c0407;
  -webkit-appearance: none;
  appearance: none;
  background-color: #0000;
  background-image: url('../images/arrow-down.svg');
  background-position: 97%;
  background-repeat: no-repeat;
  background-size: auto;
  border: 1px solid #e5e5e5;
  width: 100%;
  height: 45px;
  margin-bottom: 0;
  padding: 12px 35px 12px 16px;
}

.product-details-options-label-wrap {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 8px;
  display: flex;
}

.product-details-oder-box-text {
  color: #0c0407;
  letter-spacing: -.1px;
  font-size: 14px;
  line-height: 150%;
}

.product-details-left {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  flex: 1;
  order: -1;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  max-width: none;
  display: flex;
  position: static;
  top: 20px;
  overflow: hidden;
}

.add-to-buy-btn {
  color: #0c0407;
  letter-spacing: -.01em;
  background-color: #0000;
  border: 2px solid #000;
  border-radius: 40px;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 40px;
  margin-top: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 15px;
  transition: all .35s linear;
  display: flex;
}

.add-to-buy-btn:hover {
  background-color: #0000;
}

.product-details-caption-text-wrap {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  border-right: 1px #ccc;
  justify-content: flex-start;
  align-items: center;
  padding-right: 24px;
  display: flex;
}

.product-details-info-title {
  font-size: 20px;
  line-height: 150%;
}

.extra-image {
  flex-flow: wrap;
  flex: 0 auto;
  order: 1;
  justify-content: flex-start;
  align-items: flex-start;
  height: auto;
  display: flex;
}

.product-details-title {
  letter-spacing: -.1px;
  font-size: 32px;
  font-weight: 400;
  line-height: 150%;
}

.product-error-state {
  margin-top: 20px;
}

.product-details-caption-text {
  color: #0c0407;
  letter-spacing: -.1px;
  font-size: 12px;
  line-height: 150%;
}

.product-details-oder-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  align-items: stretch;
  margin-top: 28px;
  display: grid;
}

.product-details-options-button {
  letter-spacing: -.01em;
  background-color: #0000;
  border-color: #e5e5e5;
  margin-right: 0;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  transition: all .35s linear;
}

.product-details-options-button:hover {
  color: #fff;
  background-color: #000;
  border-color: #0c0407;
}

.product-details-options-button.w--ecommerce-pill-selected {
  color: #fff;
  background-color: #0c0407;
  border-color: #0c0407;
}

.product-details-options-button.w--ecommerce-pill-disabled {
  color: #fff;
  background-color: #999;
  border-color: #999;
}

.product-overview-wrap {
  margin-bottom: 20px;
}

.product-details-info-wrap {
  margin-top: 28px;
  margin-bottom: 0;
  padding-top: 8px;
}

.product-overview-title-wrap, .care-instructions-title-wrap {
  margin-bottom: 20px;
}

.product-details-layout {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0;
  display: flex;
  overflow: hidden;
}

.product-details-category-text-wrap {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.product-details-caption-info-wrap {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  align-items: stretch;
  margin-bottom: 28px;
  display: flex;
}

.product-details-cart-wrap {
  margin-bottom: 40px;
}

.product-details-category-cms {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.extra-image-list {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  order: 1;
  list-style-type: none;
  display: flex;
}

.product-details-category-text {
  color: #0c0407;
  letter-spacing: -.1px;
  font-size: 14px;
  line-height: 150%;
  text-decoration: none;
}

.product-details-title-wrap {
  margin-bottom: 12px;
}

.product-overview-title {
  letter-spacing: -.3px;
  font-size: 36px;
  line-height: 120%;
}

.empty-category {
  color: #0c0407;
  background-color: #0000;
  padding: 0;
  font-size: 14px;
}

.product-details-options-button-group {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  align-self: stretch;
  margin-top: 12px;
  margin-bottom: 0;
  display: flex;
}

.product-details-info-title-wrap, .product-details-oder-box-icon-wrap {
  margin-bottom: 12px;
}

.product-details-main-image {
  box-sizing: border-box;
  object-fit: contain;
  object-position: 50% 0%;
  width: 50vw;
  max-width: none;
  height: auto;
  display: inline-block;
}

.product-details-oder-box-text-wrap {
  width: 100%;
  max-width: 100%;
}

.product-details-price-wrap {
  margin-bottom: 28px;
}

.product-details-right {
  flex: 0 auto;
  width: 36vw;
  min-width: auto;
}

.product-details-section {
  padding-top: 240px;
  padding-bottom: 0;
  overflow: hidden;
}

.extra-image-item {
  overflow: hidden;
}

.product-details-addtocart-wrap {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.product-details-main-image-block {
  order: -1;
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}

.product-details-options-label {
  color: #0c0407;
  letter-spacing: -.01em;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
}

.customer-info-input {
  background-color: #fff;
  border-style: none;
  border-radius: 0;
  height: 54px;
}

.shipping-method-item-radio {
  accent-color: #0c0407;
}

.shipping-method-wrap {
  background-color: #f8f8f8;
  margin-bottom: 21px;
  padding: 28px;
}

.payment-info-form-wrap {
  margin-bottom: 20px;
}

.oder-item-thumb-wrap {
  width: 100%;
  max-width: 134px;
  position: relative;
  overflow: hidden;
}

.shipping-address-label {
  color: #0c0407;
  letter-spacing: -.01em;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 150%;
}

.shipping-address-input {
  background-color: #fff;
  border-style: none;
  border-radius: 0;
  height: 54px;
  margin-bottom: 0;
}

.oder-item-title {
  color: #0c0407;
  letter-spacing: -.01em;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 600;
  line-height: 150%;
}

.shipping-address-dropdown-input {
  background-color: #fff;
  border-style: none;
  border-radius: 0;
  height: 54px;
}

.oder-item-content {
  margin-left: 0;
  margin-right: 0;
}

.checkbox-label {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 150%;
}

.customer-info-label {
  color: #0c0407;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 150%;
}

.oder-item-quantity-text {
  letter-spacing: -.01em;
  font-size: 14px;
  line-height: 150%;
}

.shipping-method-item-price {
  color: #0c0407;
  letter-spacing: -.01em;
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
}

.order-items-wrap {
  background-color: #f8f8f8;
  margin-bottom: 0;
  padding: 28px;
}

.line-item {
  margin-bottom: 16px;
}

.checkout-left {
  flex: 1;
  max-width: 692px;
  margin-right: 0;
}

.shipping-address-form-gird-wrap {
  margin-bottom: 20px;
}

.payment-info-wrap {
  background-color: #f8f8f8;
  margin-bottom: 21px;
  padding: 28px;
}

.checkout-button-apple {
  width: 100%;
  height: 40px;
}

.customer-info-form {
  background-color: #0000;
  border-bottom-style: none;
  border-left-style: none;
  border-right-style: none;
  padding: 0;
}

.checkout-right {
  background-color: #f8f8f8;
  flex: 1;
  max-width: 490px;
  padding: 28px;
}

.oder-item-price, .shipping-method-item-title {
  color: #0c0407;
  letter-spacing: -.01em;
  font-size: 20px;
  font-weight: 600;
  line-height: 150%;
}

.shipping-address-form {
  background-color: #0000;
  border-bottom-style: none;
  border-left-style: none;
  border-right-style: none;
  padding: 0;
}

.oder-summary-btn-wrap {
  margin-top: 20px;
}

.shipping-method-item {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  border-bottom-style: none;
}

.checkout-layout {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.line-item-text {
  color: #0c0407;
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
}

.order-item {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
}

.shipping-address-form-wrap {
  margin-bottom: 20px;
}

.checkout-form {
  background-color: #fff;
  padding-top: 190px;
  padding-bottom: 70px;
}

.shipping-address-wrap {
  background-color: #f8f8f8;
  margin-top: 0;
  margin-bottom: 21px;
  padding: 28px;
}

.checkout-common-header {
  background-color: #0000;
  border-style: none;
  margin-bottom: 20px;
  padding: 0;
  display: block;
}

.shipping-method-item-text {
  letter-spacing: -.01em;
  font-size: 14px;
  line-height: 150%;
}

.web-payments {
  margin-bottom: 16px;
}

.checkbox {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.shipping-address-input-2 {
  background-color: #fff;
  border-style: none;
  border-radius: 0;
  height: 54px;
  margin-top: 12px;
  margin-bottom: 0;
}

.oder-item-thumb {
  width: 100%;
  height: auto;
}

.oder-summary-btn {
  letter-spacing: -.01em;
  background-color: #000;
  border-radius: 0;
  justify-content: center;
  align-items: center;
  height: 40px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 112%;
  display: flex;
}

.checkout-common-title {
  font-size: 32px;
  line-height: 120%;
}

.oder-summary-content {
  background-color: #0000;
  border-bottom-style: none;
  border-left-style: none;
  border-right-style: none;
  padding: 0;
}

.shipping-method-list {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border-left-style: none;
  border-right-style: none;
  flex-flow: column;
  display: flex;
}

.customer-info-wrap {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-color: #f0f0f0;
  flex-flow: column;
  width: 100%;
  margin-bottom: 21px;
  padding: 28px;
  display: flex;
}

.oder-summary {
  margin-bottom: 0;
}

.order-items-content {
  background-color: #0000;
  border-bottom-style: none;
  border-left-style: none;
  border-right-style: none;
  padding: 0;
}

.paypal-checkout-left {
  max-width: 692px;
}

.payment-info, .shipping-method {
  background-color: #f8f8f8;
  margin-bottom: 16px;
  padding: 28px;
}

.customer-info-row-top-title {
  color: #0c0407;
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 600;
  line-height: 150%;
}

.customer-info-row-top {
  margin-bottom: 20px;
  padding-left: 0;
  padding-right: 0;
}

.customer-info-content-row {
  margin-left: 0;
  margin-right: 0;
  display: block;
}

.customer-info-content {
  background-color: #0000;
  border-bottom-style: none;
  border-left-style: none;
  border-right-style: none;
  padding: 0;
}

.paypal-checkout-form {
  background-color: #fff;
  padding-top: 190px;
  padding-bottom: 70px;
}

.customer-info-row-top-content {
  margin-bottom: 0;
}

.customer-info-row-top-text {
  color: #0c0407;
  letter-spacing: -.01em;
  margin-bottom: 0;
  margin-right: 4px;
  font-size: 14px;
  line-height: 150%;
}

.paypal-checkout-layout {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.customer-info {
  background-color: #f8f8f8;
  margin-bottom: 16px;
  padding: 28px;
}

.customer-info-row-bottom {
  padding-left: 0;
  padding-right: 0;
}

.oder-confirmation-layout {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.oder-confirmation {
  background-color: #fff;
  padding-top: 190px;
  padding-bottom: 70px;
}

.shipping-method-item-2 {
  background-color: #0000;
  border-bottom-style: none;
  border-left-style: none;
  border-right-style: none;
  padding: 0;
}

.shipping-method-item-text-2 {
  color: #0c0407;
  font-size: 14px;
  line-height: 150%;
}

.shipping-method-item-title-2 {
  color: #0c0407;
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 600;
  line-height: 150%;
}

.auth-content {
  text-align: center;
  width: 100%;
  max-width: 410px;
  margin-bottom: 150px;
  margin-left: auto;
  margin-right: auto;
}

.auth-btn-wrap {
  margin-bottom: 24px;
}

.auth-info-text-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: space-between;
  align-items: center;
  margin-top: 0;
  display: flex;
}

.sing-in-section {
  padding-top: 210px;
  padding-bottom: 70px;
}

.auth-form-wrap {
  padding-left: 0;
  padding-right: 0;
}

.auth-btn {
  color: #fff;
  letter-spacing: -.1px;
  background-color: #0c0407;
  width: 100%;
  height: 40px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 112%;
}

.auth-bottom-border {
  border-bottom: 1px solid #ccc;
}

.auth-info-text {
  color: #0c0407;
  letter-spacing: -.1px;
  margin-bottom: 0;
  font-size: 14px;
}

.auth-info-text._2 {
  margin-left: auto;
  margin-right: auto;
}

.auth-info-text-link {
  color: var(--primary);
  letter-spacing: -.1px;
  font-size: 14px;
  text-decoration: underline;
  display: inline-block;
}

.auth-heading-title {
  letter-spacing: -.05px;
  font-size: 48px;
  line-height: 96%;
}

.auth-input {
  color: #0c0407;
  border: 1px solid #d1d6d4;
  height: 54px;
  margin-bottom: 0;
  padding: 10px 24px;
  transition: all .3s linear;
}

.auth-input:focus {
  border-color: #0c0407;
}

.auth-input::placeholder {
  color: #666;
  letter-spacing: -.1px;
  font-size: 14px;
}

.auth-label {
  color: #0c0407;
  text-align: left;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}

.auth-input-wrap {
  margin-bottom: 24px;
}

.auth-heading-title-wrap {
  margin-bottom: 40px;
}

.error-message {
  color: var(--primary);
  text-align: left;
  margin: 20px 0 0;
  padding: 16px;
  line-height: 1.5;
  position: static;
}

.auth-heading-title-icon {
  width: 60px;
  margin-bottom: 20px;
}

.auth-checkbox {
  accent-color: #0c0407;
  margin-top: 2px;
}

.auth-checkbox-wrap {
  text-align: left;
  margin-bottom: 20px;
}

.auth-heading-title-wrap-2 {
  margin-bottom: 20px;
}

.auth-reditect-wrap {
  margin-top: 10px;
}

.auth-info-text-wrap-2 {
  margin-bottom: 20px;
}

.error-sub-title {
  font-size: 32px;
  line-height: 120%;
}

.error-section {
  padding-top: 270px;
  padding-bottom: 180px;
}

.error-text-wrap, .error-title-wrap {
  margin-bottom: 40px;
}

.error-sub-title-wrap {
  margin-bottom: 20px;
}

.error-content {
  text-align: center;
  width: 100%;
  max-width: 596px;
  margin-left: auto;
  margin-right: auto;
}

.error-title {
  letter-spacing: -.3px;
  font-size: 300px;
  font-weight: 600;
  line-height: 230px;
}

.error-text {
  font-size: 16px;
  line-height: 150%;
}

.collection-card {
  vertical-align: middle;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-decoration: none;
  display: flex;
}

.categories-products-thumb-wrap {
  margin-bottom: 12px;
  text-decoration: none;
  display: block;
  overflow: hidden;
}

.collection-products-thumb {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  width: 100%;
}

.collection-products-content {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  object-fit: fill;
  flex-flow: column;
  flex: 1;
  order: 0;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: auto;
  margin-top: 20px;
  text-decoration: none;
  display: flex;
}

.collection-products-title {
  font-family: var(--site-font);
  color: #0c0407;
  letter-spacing: -.01px;
  text-overflow: clip;
  overflow-wrap: normal;
  flex: 1;
  margin-top: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  text-decoration: none;
}

.categories-products-icon-wrap {
  color: #000;
  text-decoration: none;
}

.categories-products-icon {
  color: #0c0407;
  width: 20px;
  height: 20px;
}

.explore-products-title-wrap {
  margin-bottom: 2px;
}

.explore-products {
  text-decoration: none;
}

.explore-products-content-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.explore-products-text {
  color: #0c0407;
  font-size: 14px;
}

.explore-products-btn-wrap {
  flex: none;
}

.explore-products-thumb-wrap {
  margin-bottom: 20px;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}

.explore-products-thumb {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: 50% 100%;
  width: 300px;
}

.explore-products-text-wrap {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.explore-products-title {
  color: #0c0407;
  letter-spacing: -.01em;
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  text-decoration: none;
}

.products-text {
  color: #0c0407;
}

.products-title-wrap {
  margin-bottom: 4px;
}

.products-thumb {
  width: 295px;
}

.products-thumb-wrap {
  z-index: 1;
  margin-bottom: 12px;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}

.products-title {
  color: #0c0407;
  letter-spacing: -.01px;
  font-size: 20px;
  line-height: 150%;
  text-decoration: none;
}

.blog-box {
  text-decoration: none;
  display: block;
}

.blog-box-time-icon {
  color: #0c0407;
  width: 16px;
  height: 16px;
  line-height: 1px;
}

.blog-box-content {
  width: 100%;
  max-width: 391px;
}

.blog-box-thumb-wrap {
  margin-bottom: 16px;
  text-decoration: none;
  display: block;
  overflow: hidden;
}

.blog-box-date-wrap {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  align-items: center;
  display: flex;
}

.blog-box-date-text {
  color: #0c0407;
  letter-spacing: -.01px;
  font-size: 14px;
  font-weight: 500;
}

.blog-box-info-wrap {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  display: flex;
}

.blog-box-title-wrap {
  margin-bottom: 16px;
  text-decoration: none;
}

.blog-box-time-text {
  color: #0c0407;
  letter-spacing: -.01px;
  font-size: 14px;
  font-weight: 500;
}

.blog-box-time-wrap {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.blog-box-date-icon {
  color: #0c0407;
  width: 16px;
  height: 16px;
  line-height: 1px;
}

.blog-box-title {
  font-size: 24px;
  line-height: 112%;
  transition: all .35s linear;
}

.blog-box-title:hover {
  color: #333;
}

.category-filter-dropdown-item {
  color: #4c4c4c;
  letter-spacing: -.01em;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 21px;
  transition: all .35s linear;
}

.category-filter-dropdown-item:hover, .category-filter-dropdown-item.w--current {
  color: #fff;
  background-color: #0c0407;
}

.product-details-category-link {
  color: #0c0407;
  letter-spacing: -.1px;
  margin-right: 5px;
  font-size: 14px;
  line-height: 150%;
  text-decoration: none;
}

.password-form {
  margin-top: 50px;
  padding-bottom: 70px;
  padding-left: 20px;
  padding-right: 20px;
}

.password-form-layout {
  width: 100%;
  max-width: 570px;
}

.password-form-label {
  color: var(--primary);
  letter-spacing: -.03em;
  margin-bottom: 24px;
  font-size: 48px;
  font-weight: 600;
  line-height: 112%;
}

.password-form-input {
  width: 100%;
  height: 61px;
  margin-bottom: 20px;
  padding: 20px 24px;
}

.password-form-btn {
  background-color: var(--primary);
  color: var(--white);
  letter-spacing: -.01em;
  width: 100%;
  height: 40px;
  margin-bottom: 20px;
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 600;
  line-height: 112%;
  transition: all .35s linear;
}

.password-form-btn:hover {
  background-color: var(--secondary);
}

.return-text-wrap {
  text-align: center;
}

.return-text {
  color: var(--body-color);
  font-size: 14px;
  font-weight: 600;
  line-height: 112%;
  text-decoration: none;
}

.password-error {
  color: var(--primary);
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.user-accout-wrapper {
  background-color: var(--transparent);
  min-height: auto;
  padding: 0;
}

.my-account-wrap {
  border: 1px solid #e0e0e0;
  padding: 30px;
}

.my-account-heading-wrap {
  border-style: none none solid;
  border-bottom-width: 1px;
  border-bottom-color: #e0e0e0;
  margin-bottom: 40px;
  padding: 0 0 20px;
}

.my-account-content {
  border-bottom-style: none;
  border-left-style: none;
  border-right-style: none;
  margin-bottom: 0;
  padding: 0;
}

.my-account-heading {
  font-size: 40px;
  line-height: 112%;
}

.success-message {
  color: var(--primary);
  text-align: left;
  background-color: #f2f2f2;
  margin-top: 20px;
  padding: 16px;
  line-height: 1.5;
  position: static;
}

.auth-btn-2 {
  border: 1px solid var(--primary);
  background-color: var(--primary);
  color: var(--white);
  letter-spacing: -.01em;
  height: 40px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 112%;
  transition: all .35s linear;
}

.auth-btn-2:hover {
  border-color: var(--secondary);
  background-color: var(--secondary);
}

.auth-btn-3 {
  color: var(--primary);
  letter-spacing: -.01em;
  background-color: #f2f2f2;
  border: 1px solid #f2f2f2;
  height: 40px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 112%;
  transition: all .35s linear;
}

.auth-btn-3:hover {
  border-color: var(--primary);
  background-color: var(--primary);
  color: var(--white);
}

.auth-input-desible {
  color: var(--primary);
  background-color: #f8f8f8;
  border: 1px solid #f8f8f8;
  width: 100%;
  height: 54px;
  margin-bottom: 0;
  padding: 10px 24px;
}

.auth-input-desible:focus {
  border: 1px solid var(--primary);
}

.auth-input-desible::placeholder {
  color: #666;
  letter-spacing: -.01em;
  font-size: 14px;
}

.search-result-section {
  padding-top: 210px;
  padding-bottom: 70px;
}

.search-result-layout {
  grid-column-gap: 20px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 40px;
  display: grid;
}

.search-card-title-wrap {
  margin-bottom: 10px;
}

.search-card-title {
  color: var(--primary);
  letter-spacing: -.01em;
  font-size: 18px;
  font-weight: 600;
  line-height: 150%;
  text-decoration: none;
}

.password-separator {
  border-top: 1px solid var(--border-clr);
  width: 1240px;
  max-width: 100%;
  margin-top: 150px;
  margin-left: auto;
  margin-right: auto;
}

.subscription-list {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  display: flex;
}

.subscription-thumb {
  width: 90px;
}

.subscription-content-title {
  color: var(--primary);
  font-size: 20px;
  font-weight: 600;
}

.subscription {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.subscription-content-row {
  margin-top: 15px;
}

.subscription-right-price {
  color: var(--primary);
  font-size: 20px;
  font-weight: 600;
}

.subscription-right {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
}

.subscription-cancel {
  background-color: var(--primary);
  color: var(--white);
  padding: 10px 20px;
}

.text-block {
  color: #0c0407;
  font-size: 16px;
  line-height: 150%;
}

.list-item, .list-item-2 {
  list-style-type: none;
}

.product-details-caption-link {
  color: #0c0407;
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
  text-decoration: underline;
}

.product-details-cart-form {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  padding-right: 0;
  display: flex;
}

.size-chart-table {
  flex-flow: wrap;
  width: 80%;
  margin-bottom: 20px;
  padding-right: 0;
  display: flex;
}

.checkbox-2 {
  width: 100%;
}

.checkbox-field, .radio-button {
  position: absolute;
}

.radio-button-field {
  width: 25%;
}

.size-selector {
  margin-bottom: 0;
  padding: 1rem;
}

.size-selector:hover, .size-selector:active, .size-selector.selected {
  border-bottom: 2px solid #000;
}

.size-option-button-label {
  text-align: center;
  font-size: 14px;
  line-height: 150%;
}

.product-details-advantage-title {
  color: var(--primary);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.how-to-measure-image {
  margin-top: 12px;
}

.preorder-button {
  background-color: var(--primary);
  color: var(--white);
  border-radius: 40px;
  justify-content: center;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 14px;
  font-weight: 600;
  line-height: 15px;
  display: flex;
}

.preorder-button:hover {
  background-color: #333;
}

.manager-button:hover {
  background-color: #333;
}


.manager-button {
  background-color: var(--primary);
  color: var(--white);
  border-radius: 40px;
  justify-content: center;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 14px;
  font-weight: 600;
  line-height: 15px;
  display: flex;
}

.custom-collection-template {
  margin-top: 40px;
}

.custom-collection-template.main-page-mode {
  margin-top: 60px;
  margin-bottom: 60px;
  overflow: visible;
}

.custom-collection-template.discount-selection {
  margin-bottom: 120px;
}

.collection-card-link {
  flex-flow: column;
  flex: 1;
  order: 1;
  justify-content: space-between;
  align-items: flex-end;
  text-decoration: none;
  display: flex;
}

.collection-products-price {
  font-family: var(--site-font);
  color: var(--primary);
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
}

.collection-products-price.discounted-price {
  font-weight: 300;
  text-decoration: line-through;
}

.collection-products-brand {
  font-family: var(--site-font);
  color: #0c0407;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
}

.product-extra-image {
  object-fit: contain;
  flex: 0 auto;
  width: 25vw;
  max-width: none;
  margin-bottom: 8px;
  margin-right: 0;
}

.text-span, .text-span-2 {
  font-weight: 700;
}

.link, .link-2 {
  color: var(--primary);
}

.sale-tag {
  z-index: 10;
  background-color: var(--primary);
  border-radius: 180px;
  justify-content: center;
  align-items: center;
  height: auto;
  margin-top: 4px;
  margin-left: 0;
  margin-right: 4px;
  padding: 8px 16px;
  display: flex;
  position: absolute;
  inset: auto;
}

.sale-tag-text {
  font-family: var(--site-font);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}

.body {
  background-color: #f8f8f8;
}

.collection-products-price-holder {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: row;
  flex: none;
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.slide-nav-5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 12px;
  inset: auto 0% 0%;
}

.slider {
  background-color: #0000;
  background-image: none;
  background-position: 0 0;
  background-size: auto;
  height: 100vh;
}

.hav-top {
  justify-content: space-between;
  align-self: stretch;
  align-items: center;
  display: flex;
}

.cart-footer {
  border-top-color: #e2e6eb;
  padding-top: 40px;
  padding-bottom: 40px;
}

.cart-item-wrapper {
  justify-content: space-between;
  padding-top: 23px;
  padding-bottom: 23px;
}

.image.cover {
  object-fit: cover;
  flex: 1;
  width: 100%;
  height: 100%;
}

.header-logo-link {
  max-width: 140px;
  padding-left: 0;
  transition: opacity .3s, color .3s;
}

.header-logo-link:hover {
  opacity: .7;
}

.header-logo-link.w--current {
  max-width: 120px;
}

.image-wrapper {
  flex-direction: column;
  justify-content: center;
  width: 30%;
  display: flex;
  overflow: hidden;
  transform: translate(0);
}

.image-wrapper.cart-item-image-wrapper {
  border: 1px solid #a9adb1;
  border-radius: 16px;
  width: 100%;
  max-width: 100px;
  margin-right: 16px;
  transition: border-color .3s, color .3s;
}

.image-wrapper.cart-item-image-wrapper:hover {
  border-color: #ff005c;
}

.header-nav-menu-wrapper {
  flex: 0 auto;
  position: static;
}

.mg-bottom-40px {
  margin-bottom: 40px;
}

.cart-quantity-2 {
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 25px;
  min-width: 25px;
  height: 25px;
  min-height: 25px;
  margin-left: 0;
  margin-right: 8px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1em;
  display: flex;
  overflow: hidden;
}

.cart-item-price {
  color: #252729;
  font-size: 14px;
  line-height: 1.143em;
}

.cart-close-button {
  color: #252729;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  font-size: 20px;
  text-decoration: none;
  display: flex;
}

.cart-close-button:hover {
  color: #ff5a65;
}

.text-bold {
  font-weight: 700;
}

.header-nav-menu-wrapper---fade-top-mobile {
  display: none;
}

.pay-btn {
  border-radius: 90px;
}

.pay-btn.cart {
  height: 54px;
}

.hamburger-menu-wrapper {
  padding: 0;
}

.hamburger-menu-wrapper.w--open {
  background-color: #0000;
}

.cart-remove-link {
  line-height: 20px;
}

.dropdown-column-wrapper {
  background-color: #0000;
  width: 100vw;
  max-width: 100%;
  padding-top: 10px;
  left: 0;
  right: 0;
  overflow: hidden;
}

.dropdown-column-wrapper.w--open {
  margin-top: 0;
  padding-top: 20px;
  overflow: hidden;
}

.hamburger-menu-bar {
  background-color: #fff;
  border-radius: 20px;
  width: 52px;
  height: 4px;
  margin-top: 12px;
  margin-bottom: 12px;
}

.cart-container {
  background-color: #fff;
  border: 1px solid #e2e6eb;
  border-radius: 16px;
  box-shadow: 0 5px 25px #2527293d;
}

.btn-circle-primary {
  color: #fff;
  transform-style: preserve-3d;
  background-color: #ff005c;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 64px;
  min-width: 64px;
  height: 64px;
  min-height: 64px;
  font-size: 28px;
  line-height: 1em;
  text-decoration: none;
  transition: transform .3s, background-color .3s, color .3s;
  display: flex;
}

.btn-circle-primary:hover {
  color: #fff;
  background-color: #006fd5;
  transform: scale3d(.94, .94, 1.01);
}

.btn-circle-primary.small {
  width: 42px;
  min-width: 42px;
  height: 42px;
  min-height: 42px;
  font-size: 20px;
}

.btn-circle-primary.small.search-btn-inside {
  background-color: #171717;
  justify-content: center;
  align-items: center;
  padding-top: 4px;
  padding-left: 0;
  padding-right: 0;
  font-size: 28px;
  line-height: 0;
  position: absolute;
  inset: 6px 6px 6px auto;
}

.text-link-wrapper {
  color: #252729;
  display: inline-block;
}

.text-link-wrapper:hover {
  color: #ff005c;
}

.text-link-wrapper.white {
  color: #fff;
}

.text-link-wrapper.white:hover {
  color: #ff005c;
}

.text-link-wrapper.white.text-100.hidden {
  display: none;
}

.dropdown-category-item {
  border-bottom: 1px solid #e2e6eb;
  min-height: 49px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.dropdown-category-item.dropdown-dark {
  border-bottom-color: #fff6;
}

.social-media-link-text {
  color: #66696c;
  font-size: 13px;
  line-height: 1em;
  text-decoration: none;
  transition: color .3s;
}

.social-media-link-text:hover {
  color: #ff005c;
}

.social-media-link-text.white {
  color: #fff;
}

.social-media-link-text.white:hover {
  color: #ff005c;
}

.social-media-link-text.white.hidden {
  display: none;
}

.links-divider {
  background-color: #e2e6eb;
  align-self: stretch;
  width: 1px;
  margin-left: 23px;
  margin-right: 23px;
}

.links-divider.hidden {
  display: none;
}

.header-nav-link {
  color: var(--primary);
  padding: 0;
  font-size: 14px;
  line-height: 1.143em;
}

.header-nav-link:hover {
  color: var(--black);
  text-decoration: underline;
}

.header-nav-link.w--current {
  color: var(--primary);
  text-decoration: underline;
}

.header-nav-link.nav-dropdown-link {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: flex-start;
  align-items: center;
  transition: color .3s;
  display: flex;
}

.header-nav-link.nav-dropdown-link:hover {
  color: var(--black);
  text-decoration: underline;
}

.header-nav-link.black {
  color: var(--black);
}

.dropdown-categories-title-wrapper {
  border-bottom: 1px solid #e2e6eb;
  align-items: center;
  padding-bottom: 16px;
  display: flex;
}

.dropdown-categories-title-wrapper.dropdown-dark {
  border-bottom-color: #fff6;
}

.cart-button {
  background-color: #0000;
  padding: 0;
  transition: opacity .3s, color .3s;
  display: flex;
  position: relative;
}

.cart-button:hover {
  opacity: .7;
  color: #fff;
}

.cart-item-content {
  margin-left: 0;
}

.cart-item-title {
  color: #252729;
  margin-bottom: 4px;
  font-weight: 700;
  text-decoration: none;
}

.cart-item-title:hover {
  color: #ff005c;
}

.cart-button-image {
  filter: invert();
  max-width: 28px;
}

.header-logo {
  filter: invert();
  width: 100%;
  max-width: 80%;
}

.header-right-side {
  justify-content: flex-end;
  align-items: center;
  gap: 16px; 
  display: flex;
}

.card {
  background-color: #f7f8f9;
  border-radius: 16px;
  overflow: hidden;
}

.card.dropdown {
  /* background-color: #f0f0f0; */
  border-radius: 0;
  padding: 32px 24px;
  overflow: visible;
}

.cart-button-content {
  flex-direction: column;
  justify-content: center;
  margin-left: 15px;
  display: flex;
}

.heading-h6-size {
  color: #252729;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.375em;
}

.heading-h6-size.color-neutral-100 {
  color: #fff;
  display: none;
}

.header-search {
  flex: 1;
  max-width: 522px;
  margin-bottom: 0;
  margin-left: 40px;
  margin-right: 40px;
  position: relative;
}

.header-search.show-on-mbl {
  display: none;
}

.header-search.hidden-on-mbl {
  flex: 1;
  margin-left: 0;
  margin-right: 0;
  transform: translate(-2%);
}

.header-top-main-wrapper {
  background-color: #0000000d;
  padding-top: 12px;
  padding-bottom: 14px;
}

.dropdown-categories-grid {
  grid-column-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  max-width: 1176px;
  margin-left: auto;
  margin-right: auto;
}

.input {
  color: #171717;
  background-color: #fff;
  border: 1px solid #e2e6eb;
  border-radius: 100px;
  min-height: 54px;
  margin-bottom: 0;
  padding: 16px 24px;
  font-size: 12px;
  line-height: 1.167em;
  transition: box-shadow .3s, color .3s, border-color .3s;
  box-shadow: 0 2px 6px #2527290a;
}

.input:hover {
  border-color: #171717;
  box-shadow: 0 4px 8px #25272914;
}

.input:focus {
  color: #252729;
  border-color: #171717;
}

.input::placeholder {
  color: #66696c;
}

.input.cart-quantity-input {
  width: 72px;
  min-height: 40px;
  padding: 10px 16px;
}

.input.search-inside-input {
  font-size: 14px;
}

.input.search-inside-input:hover, .input.search-inside-input:focus {
  border: 0 #0000;
}

.cart-item-result {
  color: #252729;
}

.social-media-link-grid {
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: repeat(auto-fit, 12px);
  grid-auto-columns: auto;
}

.social-media-link-grid.right {
  grid-column-gap: 13px;
  grid-row-gap: 13px;
  grid-template-columns: repeat(auto-fit, 13px);
  justify-content: end;
  justify-items: end;
}

.social-media-link-grid.right.center---mbl {
  display: none;
}

.container-default {
  max-width: none;
  padding-left: 32px;
  padding-right: 32px;
}

.header-dropdown-wrapper {
  position: static;
}

.header-nav-menu-list {
  z-index: 1;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
  display: flex;
  position: static;
}

.header-nav-list-item {
  margin-bottom: 0;
  padding-left: 32px;
  line-height: 1.143em;
}

.header-nav-list-item.middle {
  justify-content: flex-start;
  align-items: flex-end;
  padding-left: 0;
  padding-right: 8px;
  display: flex;
}

.header-content-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.header-content-wrapper.header-top {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  padding-top: 32px;
  padding-bottom: 32px;
}

.grid-1-column {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-1-column.gap-row-0 {
  grid-row-gap: 0px;
}

.empty-state {
  color: #a9adb1;
  text-align: center;
  background-color: #fff;
  border: 1px solid #e2e6eb;
  border-radius: 11px;
  padding: 26px 24px;
  font-weight: 500;
  display: none;
  box-shadow: 0 2px 12px #25272914;
}

.empty-state.cart-empty {
  box-shadow: none;
  background-color: #0000;
  border-width: 0;
  border-radius: 0;
  flex-direction: column;
  padding-top: 100px;
  padding-bottom: 100px;
}

.empty-state.outline {
  background-color: #0000;
}

.cart-option-item {
  padding-left: 0;
  font-size: 14px;
}

.text-200 {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.143em;
}

.text-200.bold {
  font-weight: 700;
  display: none;
}

.cart-subtotal-number {
  color: #252729;
}

.link-text {
  text-align: center;
  display: inline-block;
}

.link-text:hover {
  color: #fff;
}

.cart-line-item {
  grid-column-gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cart-header {
  border-bottom-color: #e2e6eb;
  padding-top: 22px;
  padding-bottom: 22px;
}

.btn-primary {
  color: #fff;
  text-align: center;
  transform-style: preserve-3d;
  background-color: #ff005c;
  border-radius: 48px;
  justify-content: center;
  padding: 19px 26px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.143em;
  text-decoration: none;
  transition: background-color .3s, transform .3s, color .3s;
}

.btn-primary:hover {
  color: #fff;
  background-color: #171717;
  transform: translate3d(0, -3px, .01px);
}

.error-message-2 {
  color: #ff5a65;
  background-color: #0000;
  margin-top: 20px;
  padding: 0;
  font-weight: 500;
}

.error-message-2.cart-error {
  margin-top: 0;
}

.flex-horizontal {
  display: flex;
}

.flex-horizontal.end {
  justify-content: flex-end;
}

.flex-horizontal.header-menu {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: row;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  padding-bottom: 24px;
}

.flex-horizontal.align-center {
  align-items: center;
}

.headerwrapper {
  background-color: var(--white);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  position: fixed;
  inset: 0% 0% auto;
}

.headerwrapper.dark {
  background-color: #f8f8f8;
  display: block;
  position: static;
}

.headerwrapper.white {
  background-color: #f8f8f8;
}

.headerwrapper.collection-page-header {
  z-index: 2000;
  position: relative;
}

.cart-item-main-content {
  align-items: flex-start;
  display: flex;
}

.line-square-icon.link-icon-left {
  margin-right: 8px;
  font-size: 20px;
  line-height: 1em;
  display: inline-block;
  transform: translate(0, 3px);
}

.line-square-icon.dropdown-arrow {
  margin-left: 6px;
  font-size: 14px;
  font-weight: 400;
}

.line-square-icon.dropdown-arrow.black {
  color: var(--black);
}

.grid-2-columns {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.grid-2-columns.header-top {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-columns: 2fr;
  align-content: center;
}

.cart-wrapper {
  background-color: #0f131de6;
  min-height: 100vh;
}

.link-block {
  display: flex;
}

.sub-collection-link-block {
  color: var(--black);
  text-decoration: none;
  display: flex;
}

.sub-collection-link-block:hover {
  text-decoration: underline;
}

.text-block-2 {
  color: var(--black);
  font-size: 14px;
}

.subcategories-list {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column wrap;
  grid-template-rows: auto auto auto;
  grid-template-columns: minmax(10%, 12%) minmax(10%, 12%) minmax(10%, 12%) minmax(10%, 12%) minmax(10%, 12%) minmax(10%, 12%) minmax(10%, 12%);
  grid-auto-columns: 1fr;
  place-items: stretch start;
  display: grid;
}

.collection-product-content-block {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.c-platform {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.button {
  color: #fff;
  text-align: center;
  background-color: #1a1a1a;
  border-radius: 40px;
  padding: 22px 32px;
  font-size: 14px;
  font-weight: 600;
  transition: background-color .5s;
  display: inline-block;
}

.button:hover {
  background-color: var(--primary);
  color: #fff;
}

.button.filter {
  color: var(--black);
  background-color: #0000;
  background-image: url('../images/mynaui_filter_black.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: auto;
  display: flex;
}

.button.filter.search {
  color: #000;
  background-color: #0000;
  border: 2px solid #5c660e;
  justify-content: center;
  margin-bottom: 0;
  padding-top: 12px;
  padding-bottom: 12px;
}

.button.filter.filter-close-button {
  color: var(--black);
  background-color: #0000;
  background-image: url('../images/bitcoin-icons_cross-filled.svg');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: auto;
  padding: 16px 28px 16px 0;
  transition-property: none;
  display: inline-block;
}

.button.promocode-apply-button {
  color: var(--primary);
  background-color: #0000;
  border: 1px solid #000;
  padding-top: 18px;
  padding-bottom: 18px;
}

.button.checkout-redirect-button {
  margin-top: 32px;
}

.button.continue-shopping-button {
  color: #000;
  background-color: #0000;
  border: 2px solid #000;
  margin-top: 12px;
  font-weight: 500;
}

.button.cart-back-button.continue-shopping-button {
  font-size: 14px;
}

.c-premiere-title {
  flex: 1;
}

.search-filter-button {
  align-self: stretch;
  margin-bottom: 24px;
  padding-right: 30px;
}

.c-filter {
  flex-direction: column;
  justify-content: flex-start;
  align-self: stretch;
  align-items: stretch;
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
}

.c-filter.cc-select {
  align-self: stretch;
  align-items: stretch;
  padding: 0;
}

.c-filter.cc-premiere {
  flex-direction: row;
  justify-content: space-between;
  align-self: stretch;
  align-items: stretch;
  margin-top: 16px;
  margin-bottom: 4px;
  padding-top: 0;
  padding-bottom: 0;
}

.c-filter.cc-premiere.price {
  flex-flow: column;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 12px;
  padding-bottom: 12px;
}

.c-title-wrapper {
  flex: 1;
  align-items: center;
  margin-bottom: 12px;
  display: flex;
}

.c-toggle-wrapper {
  width: 48px;
  height: 24px;
  margin-bottom: 16px;
}

.c-title-3 {
  font-family: var(--site-font);
  color: #4c4c4c;
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 5px;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
}

.c-checkbox-label-toggle {
  color: #525b66;
  margin-bottom: 0;
  margin-left: 0;
  font-weight: 500;
  display: none;
}

.c-checkbox-label-toggle.cc-hidden {
  display: none;
}

.c-checkbox-wrapper {
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 8px;
  font-family: Montserrat, sans-serif;
  display: flex;
}

.filter-button {
  margin-bottom: 20px;
  display: inline-block;
}

.filter-button.filter-close-button {
  align-self: flex-end;
}

.c-select-field-2 {
  z-index: 1;
  font-family: var(--site-font);
  color: var(--primary);
  background-color: #0000;
  border: 0 solid #1a2028;
  border-radius: 0;
  align-self: stretch;
  height: 50px;
  min-height: 50px;
  margin-bottom: 0;
  padding: 0;
  font-weight: 400;
  position: relative;
}

.c-select-field-2:active {
  color: var(--primary);
  border-color: #255deb;
  text-decoration: underline;
}

.c-select-field-2:focus {
  color: var(--primary);
  border-color: #98a11d;
  text-decoration: underline;
}

.c-form-block-filters {
  flex-direction: column;
  align-self: stretch;
  width: 100%;
  margin-bottom: 0;
  display: flex;
}

.c-grid-item {
  width: 100%;
}

.c-grid-item.cc-30 {
  z-index: auto;
  background-color: var(--white);
  flex-direction: column;
  width: 33%;
  max-width: none;
  margin-right: 0%;
  padding: 24px;
  display: flex;
  position: fixed;
  inset: 0% 0% 0% auto;
  overflow: auto;
}

.c-text-label {
  color: #525b66;
  margin-right: 5px;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
}

.c-checkbox-field-toggle {
  opacity: 1;
  cursor: pointer;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 24px;
  margin-bottom: 8px;
  padding-left: 0;
  display: flex;
  position: relative;
}

.c-checkbox-field-toggle.platform {
  width: 48px;
  margin-bottom: 0;
}

.c-checkbox-toggle {
  opacity: 1;
  border-style: none;
  width: 48px;
  height: 24px;
  margin-top: 0;
  margin-left: 0;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.c-checkbox-toggle:active {
  border-radius: 0;
}

.c-checkbox-toggle.w--redirected-checked {
  background-color: #0000;
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  border-style: none;
  border-color: #98a11d;
  border-radius: 0;
  margin-top: 0;
  margin-left: 0;
}

.c-checkbox-toggle.w--redirected-focus {
  box-shadow: none;
  border-style: none;
  border-radius: 0;
  margin-top: 0;
  margin-left: 0;
}

.c-form-filters {
  flex-direction: column;
  align-self: stretch;
  width: 100%;
  display: flex;
}

.sidebar-holder {
  z-index: 2001;
  -webkit-backdrop-filter: none;
  background-color: #00000054;
  flex-direction: column;
  width: 100vw;
  max-width: none;
  height: 100vh;
  padding: 24px;
  display: none;
  position: fixed;
  inset: 0%;
}

.lottie-animation {
  z-index: -1;
  width: 48px;
  height: 24px;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.product-block-flex {
  display: flex;
}

.price-input-block {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  display: flex;
}

.price-lfrom-field, .price-to-field {
  border-radius: 40px;
}

.link-block-2 {
  display: block;
}

.div-block-2 {
  position: absolute;
}

.sale-bage {
  padding: 8px 16px;
  position: absolute;
}

.body-2 {
  background-color: #f8f8f8;
}

.body-3 {
  background-color: var(--white);
}

.collection-products-title-and-brand {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  flex: 0 auto;
  display: flex;
}

.text-5 {
  color: #98a11d;
  font-size: 14px;
  font-weight: 500;
  line-height: 16.8px;
}

.text-5.product-price {
  font-family: var(--site-font);
  color: #000;
  font-weight: 600;
}

.product-size-value {
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 400;
  line-height: 16.8px;
}

.product-size-value.product-qty {
  font-family: Montserrat, sans-serif;
}
.div-quantity-text {
  font-family: var(--site-font);
  color: var(--body-color);
}

.product-size-value.product-size {
  font-family: var(--site-font);
  color: var(--body-color);
}

.product-size-value.product-color {
  font-family: Montserrat, sans-serif;
}

.product-cart-image {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 2px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 14vw;
  max-width: 14vw;
  height: auto;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  display: flex;
  overflow: hidden;
}

.div-quantity-text {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: .799999px;
  display: flex;
}

.custom-cart-message {
  object-fit: contain;
  background-color: #c40000;
  border-radius: 4px;
  flex-wrap: wrap;
  margin-top: 15px;
  padding: 0px;
  /* padding: 22px; */
  display: flex;
}

.custom-cart-message.cart-success-message {
  background-color: #0000;
  border: 2px #00c469;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 0;
  padding-bottom: 22px;
}

.product-list {
  /* background-color: #f0f0f0; */
  margin-top: 0;
  padding-left: 12px;
  padding-right: 12px;
}

.product-list.checkout-page-product-list {
  margin-bottom: 20px;
  padding-left: 0;
  padding-right: 0;
}

.custom-error-message-text {
  font-family: var(--site-font);
  color: var(--primary);
  text-align: center;
  border-radius: 0;
  margin-right: 0;
  padding: 0;
  font-size: 20px;
  line-height: 140%;
}

.must-have-info-label {
  font-family: var(--site-font);
}

.order-summary {
  background-color: #f0f0f0;
  border: 2px #0000;
  border-radius: 8px;
  flex-direction: column;
  flex: 1;
  order: 0;
  align-self: flex-start;
  align-items: stretch;
  padding: 24px 30px 32px;
  display: block;
}

.order-summary.checkout-page-order-summary {
  border-radius: 0;
  position: sticky;
  top: 170px;
}

.div-color-container {
  grid-column-gap: 3px;
  grid-row-gap: 3px;
  display: flex;
}

.product-name---card {
  font-size: 14px;
  font-weight: 500;
}

.product-name---card.product-name {
  font-family: var(--site-font);
  color: var(--primary);
  margin-right: 44px;
  font-weight: 600;
}

.vectors-wrapper-3 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  object-fit: cover;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  display: flex;
}

.checkbox-3 {
  margin-top: 0;
}

.product-details-holder {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  flex-flow: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  min-height: 100%;
  margin-top: 8px;
  margin-left: 22px;
  display: flex;
}

.contact-field-label {
  font-family: var(--site-font);
  color: #0c0407;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}

.contact-field-label.promocode-success-label {
  color: #0bd146;
  background-color: #0000;
  font-weight: 600;
  display: none;
}

.contact-field-label.promocode-invalid-label {
  color: #b40043;
  font-weight: 700;
  display: none;
}

.block-content-card {
  grid-row-gap: 10px;
  border: 1px #000;
  flex-direction: column;
  margin-top: 32px;
  padding: 0;
  display: flex;
}

.final-delivery-text {
  font-family: var(--site-font);
  font-size: 16px;
}

.container-2 {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding: 3.5em 2em 0;
  display: block;
}

.container-2._6ems {
  background-color: #f8f8f8;
  min-width: 50%;
  max-width: none;
  margin-top: 0;
  padding-top: 2.1em;
  padding-bottom: 7.1em;
  position: fixed;
  inset: 0% 0% 0% auto;
  overflow: auto;
}

.cart-content-container {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.cart-content-container.checkout-page-container {
  flex-flow: row;
}

.line-item-2 {
  grid-column-gap: 20px;
  grid-row-gap: 10px;
  border: 1px #c9c9c9;
  flex-direction: column;
  align-items: center;
  margin-top: 24px;
  padding-top: 20px;
  display: flex;
}

.radio-button-field-2 {
  border: 2px solid #f5f5f5;
  border-radius: 4px;
  align-self: stretch;
  padding: 14px 20px;
  display: flex;
}

.radio-button-field-2.delivery {
  border-color: #e2e2e2;
  height: 50px;
}

.checkout-button-container {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: static;
  top: 26%;
  bottom: auto;
  overflow: visible;
}

.line-item-3 {
  flex-direction: column;
}

.product-link-cart {
  justify-content: flex-start;
  align-self: auto;
  align-items: flex-start;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

.checkout-page-submit-button.button {
  font-family: var(--site-font);
  text-transform: capitalize;
  border-radius: 40px;
  order: 1;
  align-self: auto;
  width: 100%;
  margin-top: 30px;
  display: inline-block;
}

.checkout-page-submit-button.button:hover {
  background-color: var(--primary);
}

.block-header {
  background-color: #0000;
  border-style: none;
  padding: 12px 0;
}

.checkbox-field-2 {
  display: flex;
}

.total {
  font-family: var(--site-font);
  color: var(--black);
  text-align: center;
  text-transform: none;
  font-weight: 600;
}

.div-block-3 {
  grid-row-gap: 20px;
  flex-direction: column;
  display: flex;
}

.div-block-3.checkout-form-container {
  width: 100vw;
}

.cart-item {
  background-color: #0000;
  border: 2px #e0e0e0;
  border-radius: 4px;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 12px;
  margin-bottom: 12px;
  padding: 8px;
  display: flex;
  position: relative;
}

.cart-item.checkout-page-cart-item {
  margin: 0 0 20px;
  padding: 0;
}

.field-label-3 {
  font-family: var(--site-font);
  margin-left: 12px;
  font-size: 12px;
  font-weight: 300;
}

.field-label-3.methods {
  font-family: var(--site-font);
  flex: 1;
  align-self: center;
  font-size: 14px;
  font-weight: 400;
}

.radio-button-2 {
  margin-top: 0;
  margin-left: 0;
}

.total-text {
  font-family: var(--site-font);
  color: #888;
  text-transform: none;
  padding-bottom: 2px;
  font-size: 12px;
  font-weight: 400;
}

.div-price-text {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: .799999px;
  padding-right: 204px;
  display: flex;
}

.block-content {
  background-color: #0000;
  border: 1px #000;
  flex: 1;
  padding: 0;
}

.final-price-text {
  font-family: var(--site-font);
  font-size: 16px;
}

.div-size-container {
  grid-column-gap: 3px;
  grid-row-gap: 3px;
  display: flex;
}

.product-size-label {
  font-family: var(--site-font);
  color: var(--body-color);
  font-size: 14px;
  font-weight: 400;
  line-height: 16.8px;
}

.accent-text-color {
  color: #060b00;
  text-transform: uppercase;
  font-weight: 700;
}

.remove-button {
  width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
  position: absolute;
  right: 20px;
}

.div-w-commerce-commercecartproductname {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: .799999px;
  padding-right: 85px;
  display: flex;
}

.contact-text-field {
  font-family: var(--site-font);
  color: #000;
  background-color: #f8f8f8;
  border: 2px solid #e2e2e2;
  border-radius: 4px;
  height: 50px;
  font-size: 16px;
  transition: box-shadow .4s, border-color .4s;
}

.contact-text-field:focus {
  border-color: #5c660e;
}

.div-quantity-container {
  grid-column-gap: 3.81px;
  grid-row-gap: 3.81px;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: flex-start;
  padding-right: 0;
  display: flex;
  /* top: 0px;
  top-margin: 4 px; 
  left: -20 px; */
}

.price {
  text-align: center;
  padding: 20px 20px 32px;
  font-size: 24px;
  font-weight: 700;
}

.price.order-total {
  font-family: var(--site-font);
  font-size: 20px;
}

.max-price-label {
  font-size: 12px;
  font-weight: 400;
}

.checkout-section {
  background-color: #0000;
  flex: 1;
  margin-top: 0;
}

.body-4 {
  background-color: #f8f8f8;
}

.legal-label {
  text-align: center;
  margin-top: 12px;
  font-size: 12px;
}

.seaarch-query {
  font-family: Open Sans, sans-serif;
  font-size: 32px;
}

.text-block-9, .text-block-10 {
  font-family: var(--site-font);
}

.text-block-10.white {
  color: var(--white);
  font-weight: 500;
}

.heading, .heading-2 {
  font-family: var(--site-font);
}

.link-3 {
  font-size: 14px;
}

.heading-3 {
  font-size: 64px;
}

.heading-4 {
  font-size: 56px;
}

.checkout-page-wrapper {
  padding-top: 210px;
}

.cart-popup {
  z-index: 3000;
  background-color: #00000054;
  height: 100vh;
  padding-left: 40vw;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: auto;
}

.banner-gradient {
  background-image: linear-gradient(#fff0, #000000e6 98%);
  position: absolute;
  inset: 0%;
}

.cart-back-button {
  color: #585858;
  font-size: 38px;
  font-weight: 400;
}

.heading-5 {
  font-weight: 400;
}

.heading-6 {
  font-size: 32px;
  font-weight: 400;
}

.store-adress-button-wrap {
  margin-top: 2vw;
}

.image-2 {
  aspect-ratio: 3 / 2;
  object-fit: contain;
  flex: 1;
  order: -1;
  align-self: center;
  min-width: 26%;
  max-width: 30%;
  height: 72px;
  min-height: auto;
  display: block;
}

.text-block-11 {
  font-weight: 400;
}

.text-block-11.black {
  color: var(--black);
  font-size: 14px;
}

.heading-7 {
  color: var(--primary);
  font-size: 28px;
  font-weight: 400;
  line-height: 120%;
}

.breadcrumps-container {
  margin-bottom: 32px;
}

.breadcrumbs-list {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-flow: wrap;
  display: flex;
}

.breadcrimbs-list {
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.breadcrumps-list-item {
  display: flex;
}

.breadcrumbs-link {
  color: var(--primary);
}

.breadcrumbs-link:hover {
  text-decoration: underline;
}

.breadcrumb-link-divider {
  margin-left: 4px;
}

.blacl-dropdown-link {
  color: var(--black);
}

.heading-8 {
  font-size: 28px;
  font-weight: 400;
}

.bold-text {
  font-size: 14px;
}

.product-in-stock-wrap {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  align-self: stretch;
  width: auto;
  height: auto;
  margin-bottom: 16px;
  display: flex;
}

.product-in-stock-title {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  margin-bottom: 8px;
  display: flex;
}

.product-in-stock-icon {
  opacity: .7;
  width: 24px;
}

.product-status-block {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-color: #f2f2f2;
  border: 1px #000;
  border-radius: 8px;
  padding: 8px;
  display: flex;
}

.in-stock-icon {
  align-self: center;
}

.product-status-text-container {
  flex: 1;
  align-self: center;
  font-weight: 600;
}

.image-3 {
  opacity: .7;
  width: 48px;
}

.text-block-12, .product-status-text {
  font-weight: 400;
}

.div-block-4 {
  flex-flow: column;
  flex: 1;
  justify-content: space-between;
  display: flex;
}

.pusher-div {
  flex: 1 0 auto;
  display: flex;
}

.text-block-13, .text-block-14 {
  font-size: 16px;
}

.text-block-15 {
  color: var(--white);
  font-weight: 600;
}

.mobile-filter-container {
  position: sticky;
  top: 4%;
}

.dark-bg-filters {
  z-index: auto;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-color: #00000080;
  position: fixed;
  inset: 0%;
}

.bold-text-2 {
  text-decoration: underline;
}

.sizechart-popup {
  z-index: 100;
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  background-color: #0000004d;
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
}

.sizechart-table-container {
  background-color: var(--white);
  width: 72vw;
  padding: 24px 32px 24px 24px;
  position: fixed;
  inset: 22vh auto 0% 0%;
  overflow: auto;
}

.sizechart-table-flexbox {
  align-items: stretch;
}

.sizechart-header-row {
  border-bottom: 1px solid #000;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  padding-top: 12px;
  padding-bottom: 12px;
}

.sizechart-header {
  text-align: center;
  font-weight: 700;
}

.sizechart-values {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

.sizechart-value {
  text-align: center;
  padding-top: 12px;
  padding-bottom: 12px;
}

.promocode-block-container {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.heading-9, .heading-10, .heading-11 {
  font-size: 32px;
  font-weight: 400;
}

.stores-section-v2 {
  padding: 60px 32px;
}

.stores-cards-wrapper {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  flex-flow: row;
  display: flex;
}

.adress-card {
  flex-flow: column;
  width: 48vw;
  display: flex;
}

.stores-thumb-v2 {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.stores-layout-v2 {
  grid-column-gap: 2vw;
  grid-row-gap: 2vw;
  background-color: #f0f0f0;
  flex-flow: column;
  flex: 1;
  width: auto;
  padding: 0;
  display: flex;
}

.product-details-left-wrapper {
  align-self: stretch;
  overflow: hidden;
}

.body-5 {
  background-color: var(--white);
}

.container-checkout-page {
  margin-left: auto;
  margin-right: auto;
  padding-left: 2em;
  padding-right: 2em;
}

.cart-empty-state {
  background-color: #f0f0f0;
  flex-flow: column;
  display: flex;
}

.empty-state-text {
  font-size: 20px;
}

.cart-empty-state-icon-container {
  padding-top: 24px;
}

.image-4 {
  opacity: .7;
  width: 12vw;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.text-block-16 {
  line-height: 140%;
}

.discount-value-placeholder {
  color: #0000;
}

.menu-logo-container {
  order: -1;
  display: flex;
}

.text-span-3, .text-span-4, .text-span-5, .text-span-6 {
  font-weight: 600;
}

.sizechart-table {
  width: auto;
  height: auto;
  padding-top: 0;
  padding-left: 10vw;
  padding-right: 10vw;
}

.code-embed {
  position: relative;
}

.text-span-7 {
  color: #000;
}

.bold-text-3 {
  color: var(--primary);
}

.order-complete-animation {
  width: 24vh;
  height: 24vh;
  margin-bottom: 0;
}

.nothing-found-container {
  display:flex;
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content:center;  
  align-items: center;
  margin-bottom: 32px;
}

.nothing-found-icon {
  opacity: .7;
  width: 100%;
  height: 8vh;
}

#search-results .nothing-found-container{
  grid-column:1 / -1;       
}

.seo-description-section {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 60px;
  padding-bottom: 60px;
}

.collection-seo-description-body {
  column-count: 2;
  column-gap: 46px;
}

.product-options-container {
  box-sizing: content-box;
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  margin-bottom: 10px;
  padding-top: 4px;
  padding-bottom: 12px;
  padding-left: 4px;
  padding-right: 4px;
  display: flex;
  overflow: auto;
}

.product-option {
  color: var(--body-color);
  width: 100px;
  min-width: 100px;
  max-width: 100px;
  text-decoration: none;
}

.product-option:hover {
  text-decoration: underline;
}

.option-text {
  color: var(--primary);
  text-overflow: clip;
  margin-top: 12px;
  text-decoration-color: #000;
  text-align: center;
  line-height: 1.25;
}

.collection-description-rich-text {
  column-count: 2;
}

.collection-description-rich-text h1, .collection-description-rich-text h2, .collection-description-rich-text h3, .collection-description-rich-text h5, .collection-description-rich-text h6 {
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

.collection-description-rich-text ol, .collection-description-rich-text ul {
  line-height: 1.2;
}

.h1-collection-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
}

.h2-collection-description, .h3-collection-description, .h4-collection-description, .h5-collection-description, .h6-collection-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

.collection-description-list {
  padding-bottom: 0;
  line-height: 1.3;
}

.collection-description-marked-list {
  line-height: 1.2;
}

.heading-12 {
  line-height: 140%;
}

.pop-up-third-parameter {
  z-index: 9999;
  background-color: #00000054;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
}

.popup-content-container {
  background-color: var(--white);
  border-radius: 5px;
  flex-flow: column;
  width: 60vw;
  height: auto;
  display: flex;
}

.pop-up-select-heading {
  color: var(--primary);
  padding-top: 16px;
  padding-left: 0;
  font-size: 32px;
  line-height: 150%;
}

.heading-section-container {
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 0;
  padding-top: 16px;
  padding-left: 32px;
  padding-right: 32px;
  display: flex;
}

.popup-third-options-container {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 32px;
  display: block;
}

.popup-option-select {
  border: 0 #0000;
  border-radius: 0;
  flex: 0 auto;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  width: auto;
  max-width: 140px;
  height: auto;
  min-height: 60px;
  margin-bottom: 0;
  padding: 0;
  display: flex;
  position: relative;
}

.popup-option-select:active, .popup-option-select:focus {
  border-color: #000;
}

.radio-button-3 {
  display: block;
}

.radio-button-label {
  text-align: center;
  margin: 12px;
  line-height: 1.2;
}

.radio-button-third-option {
  border-radius: 5px;
  flex: 0 auto;
  align-self: auto;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: auto;
  margin-top: 0;
  margin-left: 0;
  position: absolute;
}

.radio-button-third-option.w--redirected-checked {
  box-shadow: none;
  border: 1px solid #000;
}

.third-option-form {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.third-option-form-submit-button {
  background-color: var(--primary);
  color: var(--white);
  border: 2px solid #000;
  border-radius: 40px;
  margin-top: 40px;
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 600;
}

.third-option-form-button-container {
  justify-content: flex-end;
  align-items: flex-end;
  display: flex;
}

.black-friday-overlay {
  z-index: 111;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: #3339;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  margin-top: -24px;
  margin-bottom: -20px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.black-friday-tag {
  z-index: 10;
  background-color: var(--black);
  border: 0 #000;
  border-radius: 180px;
  justify-content: center;
  align-items: center;
  margin-top: 4px;
  margin-left: 4px;
  padding: 8px 16px 9px;
  display: flex;
  position: absolute;
  inset: 0% auto auto 0%;
}

.black-friday-text {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}

@media (max-width:767px){
  .nothing-found-container{ flex-wrap:wrap; text-align:center; }
  .nothing-found-title{ text-align:center; }
}

@media screen and (min-width: 1100px) {

  .explore-slider-mask {
    width: 300px;
    max-width: none;
    overflow: visible;
  }
  .card.dropdown{

    background-color: #f0f0f0;

    /* background-image: linear-gradient(
      to bottom,
      #f8f8f8 0%,
      #e6e6e6 25%,
      #dbdbdb 50%,
      #c9c9c9 100%
    ); */
    /* border-radius: 20; */
    padding: 32px 24px;
    overflow: visible;
  }
  .categories-slider-arrow-left {
    top: 48px;
    left: -40px;
  }

  .categories-slider-arrow-right {
    left: 40px;
  }

  .hero-title.black {
    font-size: 32px;
  }

  .product-details-section {
    padding-top: 240px;
  }

  .image-wrapper {
    width: 100%;
  }

  .header-nav-menu-list {
    justify-content: center;
  }

  .empty-state {
    display: none;
  }

  .subcategories-list {
    grid-template-columns: minmax(10%, 10%) minmax(10%, 10%) minmax(10%, 10%) minmax(10%, 10%) minmax(10%, 10%) minmax(10%, 10%) minmax(10%, 10%) minmax(10%, 10%);
  }

  .c-checkbox-label-toggle {
    display: none;
  }

  .c-grid-item.cc-30 {
    max-width: 100%;
  }

  .sidebar-holder {
    width: 100%;
    max-width: 100%;
    display: none;
  }

  .container-2 {
    max-width: 1350px;
  }

  .container-2._6ems {
    max-width: none;
  }

  .black-friday-overlay {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: #3339;
    border-radius: 10px;
    margin-top: -28px;
    margin-bottom: -32px;
  }
}

@media screen and (max-width: 991px) {
  .search-close {
    top: 10px;
  }

  .style-gide-section {
    padding-top: 177px;
    padding-bottom: 40px;
  }

  .footer-top {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    flex-flow: column;
    padding-bottom: 40px;
  }

  .footer-subscription-from-block {
    max-width: 100%;
  }

  .search-wrapper {
    padding-top: 60px;
    padding-bottom: 40px;
  }

  .footer-bottom {
    padding-top: 20px;
  }

  .footer-subscription-wrap {
    margin-bottom: 40px;
  }

  .colors-holder {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .nav-bottom {
    background-color: #fff;
    border-top: 1px solid #0c0407;
    width: 100%;
    padding: 40px 20px;
    display: none;
    position: absolute;
    inset: 100% auto auto 0%;
  }

  .nav-bottom.dark {
    background-color: #000;
  }

  .topbar-text {
    font-size: 12px;
  }

  .footer-subscription-text-wrap {
    max-width: 100%;
  }

  .btn-wrap-2-white {
    padding: 14px 22px;
  }

  .btn-wrap-2-white.hero-btn {
    font-size: 16px;
  }

  .nav-link {
    font-size: 24px;
    transition: all .35s linear;
  }

  .nav-link:hover {
    opacity: .8;
    transform: scale(.9);
  }

  .style-gide-layout {
    flex-flow: column;
  }

  .blog-rich-text h2 {
    font-size: 30px;
  }

  .blog-rich-text h3 {
    font-size: 26px;
  }

  .blog-rich-text h4 {
    font-size: 24px;
  }

  .blog-rich-text h5 {
    font-size: 20px;
  }

  .blog-rich-text h6 {
    font-size: 18px;
  }

  .blog-rich-text blockquote {
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 20px;
  }

  .nav-menu {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
  }

  .style-gide-left {
    max-width: 100%;
    top: 120px;
  }

  .footer-section {
    background-color: #fafafa;
    padding-top: 40px;
    padding-bottom: 20px;
  }

  .main-wrapper {
    margin-bottom: 0;
  }

  .c-cart-container {
    max-width: 700px;
  }

  .menu-bar-wrap {
    cursor: pointer;
    display: flex;
  }

  .topbar-section {
    padding-top: 1.042vw;
    padding-bottom: 1.042vw;
  }

  .btn-wrap-white-2 {
    padding: 14px 22px;
  }

  .btn-wrap-white-2.hero-btn {
    font-size: 16px;
  }

  .btn-wrap, .btn-wrap-2 {
    padding: 14px 22px;
  }

  .btn-wrap-2.view-all-btn {
    width: auto;
    padding: 14px 22px;
  }

  .btn-wrap-2.stores-btn, .btn-wrap-2.explore-btn {
    width: auto;
  }

  .clients-info-name {
    font-size: 16px;
  }

  .products-btn-wrap {
    text-align: center;
  }

  .stores-layout {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
  }

  .collection-layout {
    flex-flow: column;
  }

  .brand-section {
    padding-top: 40px;
    padding-bottom: 80px;
  }

  .clients-info-text {
    font-size: 14px;
  }

  .collection-title {
    font-size: 40px;
    line-height: 1.1;
  }

  .instra-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .clients-thumb {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .categories-section {
    padding-top: 177px;
    padding-bottom: 40px;
  }

  .hero-wrapper {
    min-height: auto;
  }

  .stores-section, .sellers-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .stores-num-wrap {
    margin-bottom: 20px;
  }

  .collection-content-thumb-wrap {
    flex-flow: column;
    max-width: 600px;
    margin-bottom: 28px;
  }

  .clients-content {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .scrolldown-btn {
    font-family: var(--site-font);
  }

  .clients-info-text-2 {
    font-size: 14px;
  }

  .blog-layout {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr;
  }

  .client-slider-arrow-left {
    top: -82px;
  }

  .hero-text {
    font-size: 24px;
  }

  .hero-text.black {
    font-size: 20px;
  }

  .stores-content {
    width: auto;
    padding-left: 0;
  }

  .hero-top {
    margin-top: 0;
    margin-bottom: 0;
  }

  .products-grid-layout {
    grid-template-columns: 1fr 1fr;
  }

  .clients-thumb-wrap {
    width: 100%;
  }

  .clients {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-content: flex-start;
    align-items: stretch;
  }

  .support-layout {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: row;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .client-slider-arrow-right {
    top: -82px;
  }

  .clients-title-wrap {
    margin-bottom: 16px;
  }

  .stores-title {
    font-size: 26px;
  }

  .collection-content-thumb {
    width: 100%;
  }

  .support-box-title {
    font-size: 22px;
  }

  .stores-email {
    font-size: 18px;
  }

  .explore-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .stores-email-wrap {
    margin-bottom: 10px;
  }

  .clients-text-wrap {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .collection-thumb-wrap {
    max-width: 100%;
  }

  .stores-slider-arrow-right {
    top: -82px;
  }

  .categories-slider-arrow-left {
    top: 48px;
  }

  .explore-slider-arrow-right {
    top: auto;
  }

  .collection-title-wrap {
    max-width: 100%;
    margin-bottom: 28px;
  }

  .hero-content-left {
    max-width: 400px;
  }

  .clients-star {
    height: 16px;
  }

  .clients-text-2 {
    font-size: 16px;
  }

  .hero-thumb.xl {
    object-position: 50% 100%;
    display: block;
  }

  .hero-thumb.xs {
    object-position: 50% 100%;
  }

  .hero-thumb.lg {
    object-position: 50% 100%;
    display: block;
  }

  .collection-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hero-bottom-right {
    bottom: 10vh;
    right: 2vh;
  }

  .common-title {
    font-size: 40px;
    line-height: 1.1;
  }

  .common-title.left {
    font-size: 40px;
  }

  .clients-text {
    font-size: 16px;
  }

  .support-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .clients-star-wrap {
    margin-bottom: 20px;
  }

  .brand-item {
    margin-right: 40px;
  }

  .hero-content-right {
    top: 20vh;
  }

  .clients-title {
    font-size: 22px;
  }

  .client-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .explore-slider-arrow-left {
    top: 48px;
  }

  .stores-num {
    font-size: 18px;
  }

  .collection-slider-mask {
    max-width: 200px;
  }

  .blog-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .explore-slider-mask {
    max-width: 340px;
  }

  .brand-title {
    font-size: 40px;
    line-height: 1.1;
  }

  .categories-slider-arrow-right {
    top: auto;
  }

  .collection-thumb {
    width: 100%;
  }

  .stores-slider-arrow-left {
    top: -82px;
  }

  .products-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hero-small-text {
    font-size: 18px;
  }

  .hero-title {
    font-size: 50px;
  }

  .brand-text {
    font-size: 16px;
  }

  .hero-layout {
    justify-content: flex-end;
    align-items: flex-start;
    padding-top: 130px;
    padding-bottom: 44px;
  }

  .collection-content {
    max-width: 100%;
  }

  .products-layout-2 {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .stores-thumb-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: row;
  }

  .sellers-products-title {
    font-size: 18px;
  }

  .sellers-products-thumb {
    width: 100%;
  }

  .contact-layout {
    flex-flow: column;
  }

  .contact-form {
    margin-bottom: 40px;
  }

  .contact-thumb {
    width: 100%;
  }

  .contact-thumb-wrap {
    max-width: 100%;
  }

  .contact-info-title {
    font-size: 22px;
  }

  .contact-content {
    max-width: 100%;
  }

  .contact-title-wrap {
    margin-bottom: 40px;
  }

  .contact-title {
    font-size: 50px;
  }

  .contact-section {
    padding-top: 177px;
    padding-bottom: 40px;
  }

  .section-title-wrap {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 50px;
  }

  .client-section-2 {
    padding-top: 177px;
    padding-bottom: 40px;
  }

  .categories-layout {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .blog-section-2 {
    padding-top: 177px;
    padding-bottom: 40px;
  }

  .faq-tabs-contents {
    margin-left: 0;
  }

  .faq-tabs {
    flex-flow: column;
    margin-top: 0;
  }

  .faq-section {
    padding-top: 177px;
    padding-bottom: 40px;
  }

  .faq-tabs-menu {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .products-section-2 {
    padding-top: 40px;
    padding-bottom: 120px;
  }

  .products-heading-layout {
    margin-bottom: 40px;
  }

  .collection-layout-2 {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .privacy-content {
    margin-bottom: 40px;
  }

  .privacy-text, .privacy-long-text {
    font-size: 18px;
  }

  .privacy-hero-section {
    padding-top: 177px;
    padding-bottom: 40px;
  }

  .privacy-section {
    padding-top: 40px;
  }

  .privacy-bottom-border {
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .privacy-title {
    font-size: 30px;
  }

  .privacy-hero-title {
    font-size: 60px;
  }

  .terms-hero-section {
    padding-top: 177px;
  }

  .terms-hero-title {
    font-size: 60px;
  }

  .about-text-wrap-2 {
    max-width: 100%;
  }

  .about-hero-section {
    padding-top: 177px;
    padding-bottom: 40px;
  }

  .about-text-wrap {
    max-width: 100%;
  }

  .about-hero-left {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-content: flex-start;
    align-items: flex-end;
  }

  .about-thumb {
    width: 100%;
  }

  .faq-title-2 {
    font-size: 40px;
  }

  .about-title-wrap-2 {
    max-width: 100%;
  }

  .about-hero-title {
    font-size: 36px;
  }

  .team-title {
    font-size: 40px;
  }

  .team-iteam-title {
    font-size: 20px;
  }

  .about-title-2 {
    font-size: 36px;
  }

  .team-sction {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .about-short-text-wrap {
    max-width: 100%;
  }

  .about-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .about-title {
    font-size: 36px;
  }

  .team-iteam-title-wrap {
    margin-bottom: 10px;
  }

  .about-hero-layout {
    margin-top: 0;
  }

  .about-layout-2 {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 80px;
  }

  .faq-section-2 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .about-hero-thumb-2-wrap {
    max-width: 140px;
    top: 0%;
  }

  .about-hero-text-wrap {
    margin-bottom: 50px;
  }

  .about-btn-wrap {
    margin-top: 30px;
  }

  .about-title-wrap {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .about-layout {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .team-layout {
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .changelog-bottom-border {
    margin-top: 40px;
  }

  .changelog-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .common-hero-section {
    padding-top: 177px;
    padding-bottom: 40px;
  }

  .common-hero-title {
    font-size: 50px;
  }

  .utility-content-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .utility-content-text {
    font-size: 16px;
  }

  .utility-layout {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .utility-content-title {
    margin-bottom: 0;
    font-size: 30px;
  }

  .changelog-version {
    font-size: 30px;
  }

  .changelog-text {
    font-size: 18px;
  }

  .b-details-hero-thumb-wrap {
    margin-bottom: 30px;
  }

  .b-details-hero-section {
    padding-top: 177px;
    padding-bottom: 40px;
  }

  .b-details-hero-title {
    font-size: 40px;
  }

  .product-default-state {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .product-details-left {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    max-width: 100%;
  }

  .extra-image {
    justify-content: flex-start;
  }

  .product-overview-wrap {
    margin-bottom: 40px;
  }

  .product-details-info-wrap {
    margin-bottom: 0;
  }

  .product-details-layout {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
    margin-bottom: 80px;
  }

  .product-details-caption-info-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-bottom: 20px;
  }

  .product-details-cart-wrap {
    margin-bottom: 20px;
  }

  .extra-image-list {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .product-details-main-image {
    width: 90vw;
  }

  .product-details-price-wrap {
    margin-bottom: 20px;
  }

  .product-details-right {
    width: 100%;
    max-width: 100%;
  }

  .product-details-section {
    padding-bottom: 40px;
  }

  .product-details-main-image-block {
    height: auto;
  }

  .shipping-method-wrap {
    margin-bottom: 20px;
    padding: 20px;
  }

  .shipping-method-item-price {
    font-size: 16px;
  }

  .order-items-wrap {
    padding: 20px;
  }

  .checkout-left {
    width: 100%;
    max-width: 100%;
  }

  .payment-info-wrap {
    margin-bottom: 20px;
    padding: 20px;
  }

  .checkout-right {
    flex: none;
    width: 100%;
    max-width: 100%;
    padding: 20px;
  }

  .checkout-layout {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
  }

  .checkout-form {
    padding-top: 177px;
    padding-bottom: 40px;
  }

  .shipping-address-wrap {
    margin-bottom: 20px;
    padding: 20px;
  }

  .checkout-common-title {
    font-size: 30px;
  }

  .customer-info-wrap {
    margin-bottom: 20px;
    padding: 20px;
  }

  .paypal-checkout-left {
    width: 100%;
    max-width: 100%;
  }

  .payment-info, .shipping-method {
    margin-bottom: 20px;
    padding: 20px;
  }

  .paypal-checkout-form {
    padding-top: 177px;
    padding-bottom: 40px;
  }

  .paypal-checkout-layout {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
  }

  .customer-info {
    margin-bottom: 20px;
    padding: 20px;
  }

  .oder-confirmation-layout {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
  }

  .oder-confirmation {
    padding-top: 177px;
    padding-bottom: 40px;
  }

  .auth-content {
    margin-bottom: 80px;
  }

  .sing-in-section {
    padding-top: 177px;
    padding-bottom: 40px;
  }

  .auth-heading-title {
    font-size: 50px;
    line-height: 110%;
  }

  .auth-heading-title-wrap, .auth-heading-title-wrap-2 {
    margin-bottom: 40px;
  }

  .error-sub-title {
    font-size: 28px;
    line-height: 112%;
  }

  .error-section {
    padding-top: 190px;
    padding-bottom: 100px;
  }

  .error-title-wrap {
    margin-bottom: 20px;
  }

  .error-title {
    font-size: 200px;
    line-height: 1;
  }

  .collection-products-title {
    font-size: 16px;
  }

  .explore-products-content-wrap {
    flex-flow: column;
  }

  .explore-products-title {
    font-size: 18px;
  }

  .products-thumb {
    width: 100%;
  }

  .products-title {
    font-size: 18px;
  }

  .blog-box-content {
    max-width: 100%;
  }

  .blog-box-title {
    font-size: 20px;
  }

  .password-form {
    margin-top: 40px;
    padding-bottom: 40px;
  }

  .password-form-label {
    font-size: 40px;
  }

  .my-account-heading {
    font-size: 30px;
  }

  .search-result-section {
    padding-top: 177px;
    padding-bottom: 40px;
  }

  .search-result-layout {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr;
  }

  .search-card-title {
    font-size: 16px;
  }

  .password-separator {
    margin-top: 40px;
  }

  .size-chart-table {
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
  }

  .size-selector {
    padding: 2rem 3rem;
  }

  .product-extra-image {
    width: 30vw;
  }

  .header-logo-link {
    max-width: 170px;
  }

  .hamburger-menu-wrapper {
    width: 42px;
    min-width: 42px;
    height: 42px;
    min-height: 42px;
  }

  .hamburger-menu-wrapper.w--open {
    background-color: #0000;
  }

  .hamburger-menu-bar {
    width: 44px;
    height: 3px;
  }

  .btn-circle-primary.small.search-btn-inside {
    padding-top: 2px;
  }

  .links-divider {
    margin-left: 20px;
    margin-right: 20px;
  }

  .cart-button-content {
    margin-left: 10px;
  }

  .header-search {
    margin-left: 30px;
    margin-right: 30px;
  }

  .header-nav-list-item {
    margin-bottom: 12px;
    padding-left: 0;
  }

  .header-nav-list-item.middle {
    margin-bottom: 0;
  }

  .grid-2-columns.header-top {
    grid-template-columns: 1.8fr 1fr;
  }

  .search-filter-button {
    padding-right: 0;
  }

  .c-form-block-filters {
    align-self: auto;
    display: block;
  }

  .c-grid-item.cc-30 {
    width: 100%;
    max-width: 100%;
    padding-right: 0;
  }

  .sidebar-holder {
    width: 100%;
    max-width: none;
  }

  .container-2._6ems {
    height: 100vh;
  }

  .cart-content-container {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  }

  .cart-content-container.checkout-page-container {
    flex-flow: column;
  }

  .checkout-button-container {
    width: 100%;
  }

  .cart-popup {
    padding-left: 24vw;
    display: none;
  }
}

@media screen and (max-width: 767px) {
  figure {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .c-cart-thumb-wrap {
    max-width: 130px;
  }

  .c-cart-line-item-label {
    font-size: 20px;
  }

  .footer-top {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    padding-bottom: 40px;
  }

  .footer-subscription-from-block {
    margin-bottom: 0;
  }

  .footer-bottom {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
  }

  .c-cart-price-wrap.mobile-only {
    margin-bottom: 12px;
    display: block;
  }

  .c-cart-content-wrap {
    flex-flow: wrap;
  }

  .nav-right {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .c-cart-content-left {
    width: 100%;
  }

  .footer-left {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .c-cart-list {
    max-height: 300px;
  }

  .colors-holder {
    grid-template-columns: 1fr 1fr;
  }

  .topbar-text {
    font-size: 12px;
    line-height: 1.5;
  }

  .c-cart-quantity-wrap {
    margin-bottom: 12px;
  }

  .c-cart-item {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .c-cart-line-item-value {
    font-size: 20px;
  }

  .blog-rich-text h1 {
    font-size: 36px;
  }

  .blog-rich-text h2 {
    font-size: 26px;
  }

  .blog-rich-text h3 {
    font-size: 24px;
  }

  .blog-rich-text h4 {
    font-size: 22px;
  }

  .blog-rich-text blockquote {
    font-size: 18px;
  }

  .c-cart-title, .c-cart-price {
    font-size: 20px;
  }

  .c-cart-container {
    max-width: 90%;
    padding: 20px;
  }

  .c-cart-content-right {
    display: none;
  }

  .c-cart-header-title {
    font-size: 30px;
    line-height: 1.2;
  }

  .topbar-section {
    padding-top: 1.408vw;
    padding-bottom: 1.408vw;
  }

  .btn-wrap-white-2.hero-btn.black {
    order: 0;
  }

  .style-gide-right {
    overflow: hidden;
  }

  .c-cart-option-wrap {
    margin-bottom: 12px;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-title-layout {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: wrap-reverse;
  }

  .stores-layout {
    padding: 20px;
  }

  .stores-thumb {
    width: 100%;
  }

  .stores-slider-arrow-icon {
    width: 18px;
    height: 18px;
  }

  .collection-title {
    font-size: 30px;
  }

  .clients-content {
    max-width: 100%;
    padding: 30px;
  }

  .instagram-thumb-wrap {
    width: 170px;
  }

  .blog-layout {
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
  }

  .client-slider-arrow-left {
    width: 40px;
    height: 40px;
    top: -72px;
    right: 60px;
  }

  .hero-text {
    font-size: 20px;
  }

  .stores-content {
    padding: 0;
  }

  .hero-top {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column-reverse;
    margin-bottom: 40px;
  }

  .products-grid-layout {
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr;
  }

  .brand-item-thumb {
    height: 40px;
  }

  .clients-thumb-wrap {
    max-width: 100%;
  }

  .clients {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    padding-right: 0;
  }

  .support-layout {
    grid-template-columns: 1fr 1fr;
  }

  .client-slider-arrow-right {
    width: 40px;
    height: 40px;
    top: -72px;
    right: 0%;
  }

  .hero-bottom-left {
    order: 0;
  }

  .stores-title {
    font-size: 24px;
  }

  .support-box-title {
    font-size: 20px;
  }

  .explore-slider {
    padding-bottom: 20px;
  }

  .stores-slider-arrow-right {
    width: 40px;
    height: 40px;
    top: -72px;
  }

  .categories-slider-arrow-left {
    width: 40px;
    height: 40px;
  }

  .explore-slider-arrow-right {
    width: 40px;
    height: 40px;
    inset: 6px auto 0% 40px;
  }

  .hero-content-left {
    padding-top: 0;
  }

  .clients-text-2 {
    font-size: 16px;
  }

  .hero-bottom-right {
    display: none;
  }

  .client-slider-arrow-icon {
    width: 18px;
    height: 18px;
  }

  .hero-btn-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .common-title, .common-title.left {
    font-size: 30px;
  }

  .clients-text {
    font-size: 16px;
  }

  .categories-slider-arrow-icon {
    width: 18px;
    height: 18px;
  }

  .hero-product-wrap {
    display: none;
  }

  .brand-item {
    margin-right: 30px;
  }

  .clients-title {
    font-size: 20px;
  }

  .explore-slider-arrow-left {
    width: 40px;
    height: 40px;
    inset: 46px auto 0% -40px;
  }

  .explore-slider-arrow-icon {
    width: 18px;
    height: 18px;
  }

  .support-box-text {
    font-size: 14px;
  }

  .brand-title {
    font-size: 30px;
  }

  .categories-slider-arrow-right {
    width: 40px;
    height: 40px;
    top: 8px;
  }

  .hero-bottom {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-flow: column;
    order: -1;
    justify-content: space-between;
    align-items: flex-start;
  }

  .stores-slider-arrow-left {
    width: 40px;
    height: 40px;
    top: -72px;
    right: 60px;
  }

  .hero-title {
    font-size: 40px;
    line-height: 50px;
  }

  .brand-text {
    font-size: 16px;
  }

  .hero-layout {
    grid-column-gap: 270px;
    grid-row-gap: 270px;
    flex-flow: column-reverse;
    height: auto;
    padding-top: 170px;
    padding-bottom: 60px;
  }

  .products-layout-2 {
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr;
  }

  .stores-thumb-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .contact-layout {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .contact-info-title {
    font-size: 20px;
  }

  .contact-title {
    font-size: 40px;
  }

  .contact-info-wrap-iteam {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
  }

  .section-title {
    font-size: 40px;
  }

  .categories-layout {
    grid-template-columns: 1fr 1fr;
  }

  .categori-heading-layout {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .faq-title {
    font-size: 18px;
  }

  .faq-text {
    font-size: 14px;
  }

  .products-heading-layout {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
  }

  .collection-layout-2 {
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr;
  }

  .privacy-content {
    margin-bottom: 30px;
  }

  .privacy-text, .privacy-long-text {
    font-size: 16px;
  }

  .privacy-hero-title, .terms-hero-title {
    font-size: 40px;
  }

  .about-hero-left {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .faq-title-2, .about-hero-title, .team-title {
    font-size: 30px;
  }

  .team-iteam-title {
    font-size: 18px;
  }

  .about-title-2 {
    font-size: 30px;
  }

  .about-hero-thumb-wrap {
    max-width: 100%;
  }

  .about-title {
    font-size: 30px;
  }

  .about-hero-thumb-2-wrap {
    max-width: 100%;
    margin-top: 40px;
    position: static;
    inset: auto auto 0% 0%;
  }

  .about-hero-text-wrap {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .about-title-wrap {
    margin-bottom: 20px;
  }

  .team-layout {
    grid-template-columns: 1fr 1fr;
  }

  .common-hero-section {
    padding-bottom: 40px;
  }

  .common-hero-title {
    font-size: 40px;
  }

  .utility-content-title {
    font-size: 28px;
  }

  .utility-content-title.mb-0 {
    font-size: 26px;
  }

  .changelog-text {
    font-size: 16px;
  }

  .b-details-hero-title, .care-instructions-title {
    font-size: 30px;
  }

  .product-details-oder-wrap {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .product-overview-title {
    font-size: 30px;
  }

  .shipping-method-wrap {
    padding: 20px;
  }

  .oder-item-title {
    font-size: 18px;
  }

  .order-items-wrap, .payment-info-wrap, .checkout-right {
    padding: 20px;
  }

  .oder-item-price {
    font-size: 16px;
  }

  .shipping-method-item-title {
    font-size: 18px;
  }

  .shipping-address-wrap {
    padding: 20px;
  }

  .checkout-common-title {
    font-size: 26px;
  }

  .customer-info-wrap {
    padding: 20px;
  }

  .auth-heading-title {
    font-size: 40px;
  }

  .auth-input {
    height: 50px;
  }

  .auth-heading-title-wrap, .auth-heading-title-wrap-2 {
    margin-bottom: 30px;
  }

  .error-sub-title {
    font-size: 24px;
  }

  .error-title {
    font-size: 150px;
  }

  .error-text {
    font-size: 16px;
  }

  .password-form-label {
    font-size: 30px;
  }

  .my-account-wrap {
    padding: 20px;
  }

  .my-account-heading-wrap {
    margin-bottom: 20px;
  }

  .my-account-heading {
    font-size: 26px;
  }

  .search-result-layout {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .slider {
    height: auto;
  }

  .header-logo-link {
    z-index: 2;
    max-width: 160px;
  }

  .header-logo-link.w--current {
    display: none;
  }

  .image-wrapper.cart-item-image-wrapper {
    border-radius: 10px;
    max-width: 80px;
  }

  .header-nav-menu-wrapper {
    z-index: 1;
    background-color: #171717;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    padding: 0 24px 24px;
    position: fixed;
    inset: 0%;
    overflow: auto;
  }

  .cart-quantity-2 {
    margin-right: 6px;
  }

  .header-nav-menu-wrapper---fade-top-mobile {
    z-index: 2;
    background-color: var(--white);
    height: 165px;
    display: block;
    position: sticky;
    inset: 0% 0% auto;
  }

  .pay-btn.cart {
    height: 48px;
  }

  .hamburger-menu-wrapper {
    z-index: 100;
    background-color: #f7f8f9;
    border: 1px #f7f8f9;
    border-radius: 50%;
    order: -1;
    width: 42px;
    min-width: 42px;
    height: 42px;
    min-height: 42px;
    margin-left: 0;
    overflow: hidden;
  }

  .hamburger-menu-wrapper.w--open {
    background-color: #ff005c;
  }

  .dropdown-column-wrapper {
    width: 100%;
    position: static;
    overflow: visible;
  }

  .hamburger-menu-bar {
    width: 18px;
    height: 2px;
    margin-top: 0;
    margin-bottom: 0;
  }

  .hamburger-menu-bar.bottom, .hamburger-menu-bar.top {
    background-color: #171717;
  }

  .btn-circle-primary {
    width: 54px;
    min-width: 54px;
    height: 54px;
    min-height: 54px;
    font-size: 24px;
  }

  .btn-circle-primary.small {
    width: 35px;
    min-width: 35px;
    height: 35px;
    min-height: 35px;
    font-size: 18px;
  }

  .btn-circle-primary.small.search-btn-inside {
    width: 38px;
    min-width: 38px;
    height: 38px;
    min-height: 38px;
  }

  .header-nav-link {
    margin-left: 0;
    margin-right: 0;
    font-size: 26px;
  }

  .cart-button-image {
    max-width: 23px;
  }

  .header-right-side {
    z-index: 2;
    position: relative;
  }

  .card {
    border-radius: 13px;
  }

  .card.dropdown {
    padding: 40px 0;
    overflow: visible;
  }

  .cart-button-content {
    margin-left: 8px;
    display: none;
  }

  .header-search {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .header-search.show-on-mbl {
    z-index: 1;
  }

  .header-search.hidden-on-mbl {
    flex: 1;
    max-width: 54%;
    margin-left: 24px;
  }

  .header-top-main-wrapper {
    display: none;
  }

  .dropdown-categories-grid {
    grid-column-gap: 20px;
  }

  .input {
    min-height: 50px;
  }

  .header-dropdown-wrapper {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    display: flex;
  }

  .header-nav-menu-list {
    z-index: 0;
    flex-direction: column;
    align-items: stretch;
    position: relative;
  }

  .header-nav-list-item.middle {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 35px;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .header-content-wrapper.header-top {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .btn-primary {
    padding: 16px 22px;
  }

  .flex-horizontal.header-menu {
    padding-bottom: 20px;
  }

  .headerwrapper {
    z-index: 200;
    inset: 0% 0% auto;
  }

  .hamburger-menu-icon-wrapper {
    grid-row-gap: 7px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity .3s;
    display: flex;
    position: absolute;
    inset: 0%;
  }

  .hamburger-menu-icon-wrapper:hover {
    opacity: .7;
  }

  .grid-2-columns {
    grid-template-columns: 1fr;
  }

  .grid-2-columns.header-top {
    grid-row-gap: 15px;
    grid-template-columns: 1fr;
    justify-content: center;
    justify-items: center;
  }

  .button {
    text-align: center;
    flex: 1;
    padding-top: 9px;
    padding-bottom: 9px;
    display: block;
  }

  .button.filter {
    display: none;
  }

  .button.filter:active {
    background-color: var(--primary);
  }

  .c-filter {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .c-filter.cc-select {
    padding-bottom: 16px;
  }

  .filter-button {
    display: flex;
  }

  .c-form-block-filters {
    padding: 0 32px 40px 0;
  }

  .c-grid-item.cc-30 {
    width: 100%;
    max-width: 100%;
    margin-right: 0%;
    top: 8%;
  }

  .cart-content-container {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .stores-cards-wrapper {
    flex-flow: column;
  }

  .adress-card {
    width: auto;
  }
}

@media screen and (max-width: 479px) {
  .c-cart-thumb-wrap {
    max-width: 100%;
  }

  .c-cart-line-item-label {
    font-size: 16px;
  }

  .paragraph {
    font-size: 12px;
  }

  .offer-text-wrap {
    top: 14px;
    right: -50px;
  }

  .section-spacing {
    padding-left: 16px;
    padding-right: 16px;
  }

  .footer-widget-link-text-wrap {
    flex-flow: column;
    max-width: none;
    max-height: none;
  }

  .style-gide-button-holder-layout {
    grid-template-columns: 1fr;
  }

  .c-cart-content-wrap {
    width: 100%;
  }

  .footer-left {
    grid-template-columns: 1fr;
  }

  .c-cart-list {
    max-height: 600px;
  }

  .footer-right {
    width: auto;
    min-width: auto;
  }

  .colors-holder {
    flex-flow: column;
    grid-template-columns: 1fr;
  }

  .footer-bottom-right {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .c-cart-option {
    font-size: 14px;
  }

  .nav-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .topbar-text {
    font-size: 12px;
  }

  .c-cart-item {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
  }

  .btn-wrap-2-white.hero-btn {
    padding-left: 20px;
    padding-right: 20px;
  }

  .c-cart-line-item-value {
    font-size: 16px;
  }

  .nav-link, .c-cart-title {
    font-size: 20px;
  }

  .footer-section {
    padding-top: 40px;
  }

  .c-cart-price {
    font-size: 16px;
  }

  .topbar-section {
    padding-top: 2.133vw;
    padding-bottom: 2.133vw;
  }

  .btn-wrap-white-2.hero-btn {
    margin-top: 16px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .btn-wrap-white-2.hero-btn.black {
    border-color: var(--primary);
    flex: 1;
    margin-top: 0;
    padding: 14px 20px;
  }

  .offer-text {
    font-size: 10px;
  }

  .style-gide-right {
    width: 100%;
    max-width: 100%;
  }

  .btn-wrap-2 {
    padding-right: 0;
    top: -5.8vh;
    right: -56%;
  }

  .btn-wrap-2.view-all-btn {
    font-size: 14px;
    top: 0;
  }

  .btn-wrap-2.stores-btn {
    border-style: solid;
    top: auto;
    right: auto;
  }

  .btn-wrap-2.explore-btn {
    border-radius: 40px;
  }

  .btn-wrap-2.collection-more-button {
    top: -6vh;
    right: -56%;
  }
  
  .btn-wrap-2.adress-btn {
    padding-right: 22px;
  }

  .footer-copyright {
    font-size: 12px;
  }

  .products-btn-wrap, .products-btn-wrap.products-btn-wrap-no-arrows {
    top: 0;
  }

  .stores-layout {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    padding: 20px;
  }

  .brand-section {
    padding-top: 44px;
    padding-bottom: 66px;
  }

  .instra-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .categories-section {
    padding-bottom: 40px;
  }

  .hero-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .stores-section, .sellers-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .collection-content-thumb-wrap {
    flex-flow: column;
    grid-template-columns: 1fr;
  }

  .clients-content {
    padding: 20px;
  }

  .instagram-thumb-wrap {
    width: 140px;
  }

  .client-slider-arrow-left {
    inset: auto auto 0% 0%;
  }

  .hero-text {
    font-size: 14px;
  }

  .hero-text.black {
    color: var(--primary);
  }

  .stores-content {
    width: auto;
    margin: 20px;
  }

  .hero-top {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    align-items: stretch;
    margin-bottom: 0;
    margin-left: 16px;
    margin-right: 16px;
    padding: 20px;
  }

  .products-grid-layout {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-columns: 1fr;
    width: auto;
  }

  .products-grid-layout.main-page {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    grid-template-columns: 1fr 1fr;
  }

  .products-grid-layout.collection-page-product-grid {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    grid-template-columns: 1fr 1fr;
    width: auto;
  }

  .brand-item-thumb {
    height: 35px;
  }

  .stores-addres {
    font-size: 14px;
  }

  .hero-title-wrap {
    margin-top: 0;
    margin-bottom: 20px;
  }

  .support-layout {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-columns: 1fr 1fr;
  }

  .client-slider-arrow-right {
    inset: auto auto 0% 60px;
  }

  .hero-bottom-left {
    margin-left: 0;
  }

  .stores-addres-wrap {
    max-width: 100%;
  }

  .stores-title {
    font-size: 20px;
  }

  .collection-content-thumb {
    width: 100%;
  }

  .support-box-title, .stores-email {
    font-size: 16px;
  }

  .explore-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .explore-slider {
    padding-bottom: 0;
  }

  .stores-slider-arrow-right {
    inset: auto auto 0% 12vw;
  }

  .categories-slider-arrow-left {
    border-radius: 40px;
    inset: 5.1vh auto 0% -12vw;
  }

  .explore-slider-arrow-right {
    border-radius: 40px;
    inset: auto auto auto 12vw;
  }

  .hero-content-left {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-thumb {
    max-width: 100%;
  }

  .hero-thumb.xl {
    display: none;
  }

  .hero-thumb.xs {
    filter: brightness(39%);
    object-fit: cover;
    object-position: 50% 100%;
    display: block;
  }

  .hero-thumb.xs.hero-thumb-mobile {
    aspect-ratio: 3 / 2;
    filter: none;
    object-fit: cover;
    height: 100%;
    margin-top: 0;
    margin-left: 0;
    position: static;
    overflow: hidden;
  }

  .hero-thumb.lg {
    display: none;
  }

  .collection-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hero-bottom-right {
    display: none;
  }

  .hero-btn-wrap {
    grid-column-gap: 28px;
    grid-row-gap: 28px;
    flex-flow: row;
    align-items: center;
  }

  .common-title {
    font-size: 32px;
  }

  .common-title.left {
    font-size: 32px;
    line-height: 140%;
  }

  .common-title.nothing-found-title {
    color: var(--primary);
    text-align: center;
  }

  .nothing-found-title {
    color: var(--primary);

  }

  .stores-slider {
    margin-left: -20px;
    margin-right: -20px;
    padding-bottom: 60px;
  }

  .support-section, .client-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .explore-slider-arrow-left {
    border-radius: 40px;
    inset: 5.1vh auto auto -12vw;
  }

  .client-slider {
    padding-bottom: 60px;
  }

  .stores-num {
    font-size: 16px;
  }
  
  /* .collection-slider-mask {
    max-width: 160px;
  } */

  .support-box-text {
    line-height: 20px;
  }

  .hero-thumb-wrap {
    justify-content: space-between;
    align-items: flex-end;
    width: auto;
    max-width: 100vw;
    height: auto;
    margin-top: 0;
    margin-left: 0;
    position: static;
    inset: 22vh 0% auto;
    overflow: visible;
  }

  .hero-small-text-wrap {
    margin-bottom: 4px;
  }

  .blog-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .brand-title {
    font-size: 32px;
    font-weight: 400;
  }

  .categories-slider-arrow-right {
    border-radius: 40px;
    inset: auto auto 0% 12vw;
  }

  .hero-bottom {
    order: 1;
    align-items: stretch;
    margin-bottom: 0;
  }

  .stores-slider-arrow-left {
    inset: 5.1vh auto 0% -12vw;
  }

  .products-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hero-small-text {
    font-size: 16px;
  }

  .hero-title {
    letter-spacing: -.04em;
    font-size: 34px;
    font-weight: 600;
    line-height: 44px;
  }

  .hero-title.black {
    color: var(--primary);
    letter-spacing: 0;
    font-size: 28px;
    font-weight: 400;
  }

  .brand-text {
    font-size: 14px;
    font-weight: 300;
  }

  .hero-layout {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    height: auto;
    padding-top: 22vh;
    padding-bottom: 20px;
  }

  .products-layout-2 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-columns: 1fr 1fr;
  }

  .collection-slider {
    padding-top: 0;
    padding-bottom: 0;
  }

  .stores-thumb-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    order: -1;
    grid-template-columns: 1fr;
    margin-left: 0;
  }

  .sellers-products-price, .sellers-products-title {
    font-size: 14px;
  }

  .contact-address-wrap {
    max-width: 100%;
  }

  .contact-info-title {
    font-size: 18px;
  }

  .contact-address {
    font-size: 14px;
  }

  .contact-title {
    font-size: 30px;
  }

  .contact-number {
    font-size: 14px;
  }

  .section-title-wrap.products-hero-title {
    text-align: center;
    width: auto;
  }

  .section-title {
    text-align: left;
    font-size: 30px;
    line-height: 140%;
  }

  .client-section-2 {
    padding-bottom: 40px;
  }

  .categories-layout {
    grid-template-columns: 1fr 1fr;
  }

  .blog-section-2 {
    padding-bottom: 40px;
  }

  .faq-title {
    font-size: 16px;
  }

  .products-section-2 {
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .products-heading-layout {
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    margin-bottom: 12px;
    overflow: visible;
  }

  .collection-layout-2 {
    grid-template-columns: 1fr;
  }

  .price-filter-dropdown-item {
    padding: 8px 12px;
    font-size: 12px;
  }

  .filter-dropdown-wrap {
    margin-bottom: 64px;
    margin-left: -20px;
    margin-right: -20px;
    overflow: auto;
  }

  .privacy-section {
    padding-top: 40px;
  }

  .privacy-bottom-border {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .privacy-title {
    font-size: 26px;
  }

  .privacy-hero-title {
    font-size: 30px;
  }

  .terms-hero-section {
    padding-bottom: 40px;
  }

  .terms-hero-title {
    font-size: 30px;
  }

  .team-iteam-thumb {
    width: 100%;
  }

  .team-sction, .about-section, .faq-section-2 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .team-layout {
    grid-template-columns: 1fr;
  }

  .utility-content-text-heilight {
    overflow-wrap: anywhere;
  }

  .changelog-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .common-hero-title {
    font-size: 30px;
  }

  .utility-layout {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .utility-content-title {
    font-size: 26px;
  }

  .product-details-left {
    flex-flow: column;
  }

  .product-details-caption-text-wrap {
    border-right-style: none;
  }

  .extra-image {
    flex-flow: row;
    flex: 0 auto;
    margin-right: -8px;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .product-details-title {
    font-size: 24px;
    line-height: 120%;
  }

  .product-details-oder-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    grid-template-columns: 1fr;
  }

  .product-details-caption-info-wrap {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-flow: column;
  }

  .extra-image-list {
    order: 1;
    justify-content: flex-start;
    align-items: center;
    margin-left: -20px;
    margin-right: -20px;
    overflow: auto;
  }

  .product-details-options-button-group {
    align-self: stretch;
  }

  .product-details-oder-box {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }

  .product-details-oder-box-icon-wrap {
    margin-top: 2px;
    margin-bottom: 0;
  }

  .product-details-main-image {
    width: 100vw;
    position: static;
  }

  .product-details-oder-box-text-wrap {
    max-width: 100%;
  }

  .product-details-section {
    padding-top: 140px;
  }

  .product-details-addtocart-wrap {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .product-details-main-image-block {
    width: 100vw;
  }

  .oder-item-thumb-wrap {
    max-width: 100%;
  }

  .shipping-method-item {
    flex-flow: column;
  }

  .order-item {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .auth-heading-title {
    font-size: 30px;
  }

  .auth-heading-title-icon {
    width: 40px;
  }

  .error-sub-title {
    font-size: 20px;
    line-height: 110%;
  }

  .error-title {
    font-size: 140px;
  }

  .collection-products-content {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    justify-content: space-between;
    align-items: flex-start;
    width: auto;
  }

  .collection-products-title {
    align-self: auto;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 400;
    display: block;
  }

  .explore-products {
    text-decoration: none;
    display: block;
  }

  .explore-products-content-wrap {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .explore-products-text {
    font-size: 14px;
  }

  .explore-products-text-wrap {
    margin-top: 8px;
  }

  .products-text {
    font-size: 14px;
  }

  .products-title {
    font-size: 14px;
    display: block;
  }

  .blog-box-thumb {
    width: 100%;
  }

  .blog-box-title {
    font-size: 20px;
    font-weight: 400;
  }

  .category-filter-dropdown-item {
    padding: 8px 12px;
    font-size: 12px;
  }

  .password-form-label {
    font-size: 26px;
  }

  .search-result-layout {
    grid-template-columns: 1fr;
  }

  .product-details-caption-link {
    text-decoration: underline;
  }

  .product-details-cart-form {
    margin-top: 28px;
  }

  .size-chart-table {
    justify-content: flex-start;
    align-items: stretch;
    width: auto;
    padding-right: 0;
  }

  .size-selector {
    flex-flow: column;
    flex: 1;
    justify-content: flex-start;
    align-items: center;
    min-width: 30vw;
    max-width: 30vw;
    height: auto;
    padding: 8px 12px;
    display: flex;
  }

  .preorder-button .manager-button{
    height: auto;
  }

  .collection-card-link {
    justify-content: space-between;
    align-self: stretch;
    align-items: stretch;
  }

  .collection-products-price {
    font-size: 14px;
  }

  .product-extra-image {
    vertical-align: baseline;
    width: 46vw;
    max-width: 47%;
    margin-bottom: 8px;
    margin-right: 8px;
  }

  .div-block {
    margin-left: -20px;
  }

  .sale-tag {
    margin-top: 4px;
    margin-right: 4px;
  }

  .collection-products-price-holder {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .slide-nav-5 {
    inset: auto 0% 0%;
  }

  .slider {
    height: auto;
  }

  .cart-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .header-logo-link {
    max-width: 150px;
  }

  .header-logo-link.w--current {
    flex: 0 auto;
    order: 0;
    max-width: 100px;
    display: block;
  }

  .image-wrapper.cart-item-image-wrapper {
    margin-bottom: 16px;
    margin-right: 0;
  }

  .header-nav-menu-wrapper {
    z-index: 1;
    background-color: #f8f8f8;
    height: auto;
    min-height: 100vh;
    max-height: none;
    padding-bottom: 42px;
    inset: 0%;
    overflow: auto;
  }

  .cart-item-price {
    color: #66696c;
    font-size: 16px;
    line-height: 18px;
  }

  .header-nav-menu-wrapper---fade-top-mobile {
    background-color: #f8f8f8;
  }

  .hamburger-menu-wrapper {
    background-color: #fff;
    border-style: solid;
    border-color: #e2e6eb;
    order: -1;
    margin-left: 0;
  }

  .hamburger-menu-wrapper.w--open {
    z-index: 20;
    background-color: var(--white);
  }

  .hamburger-menu-bar.top {
    border: 1px #000;
  }

  .cart-container {
    border-radius: 0;
  }

  .btn-circle-primary.small.search-btn-inside {
    padding-top: 6px;
    font-size: 24px;
    line-height: 1;
  }

  .links-divider {
    width: 100%;
    height: 1px;
    margin: 10px 0;
  }

  .header-nav-link {
    font-size: 18px;
  }

  .cart-button {
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }

  .cart-item-content {
    margin-right: 0;
  }

  .cart-button-image {
    max-width: 18px;
  }

  .header-logo {
    max-width: 88px;
    padding-left: 0;
  }

  .card {
    border-radius: 10px;
  }

  .card.dropdown {
    background-color: #0000;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .header-search.show-on-mbl {
    z-index: 100;
    display: flex;
  }

  .header-search.hidden-on-mbl {
    display: none;
  }

  .dropdown-categories-grid {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .input {
    padding-left: 20px;
    padding-right: 20px;
  }

  .container-default {
    padding-left: 16px;
    padding-right: 16px;
  }

  .header-nav-menu-list {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
  }

  .cart-button-wrapper {
    order: 1;
    margin-left: 8;
  }

  .whatsapp-button-wrapper {
    order: 2;
    margin-left: 8;
  }

  .header-nav-list-item {
    text-align: left;
    width: 100%;
  }

  .header-content-wrapper.header-top {
    justify-content: space-between;
    align-items: center;
  }

  .empty-state.cart-empty, .cart-header {
    padding-left: 20px;
    padding-right: 20px;
  }

  .btn-primary {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .cart-list {
    padding-left: 20px;
    padding-right: 20px;
  }

  .error-message-2.cart-error {
    margin-left: 20px;
    margin-right: 20px;
  }

  .flex-horizontal.align-center.header-top-links {
    flex-direction: column;
  }

  .headerwrapper {
    z-index: 100;
  }

  .hamburger-menu-icon-wrapper {
    z-index: 200;
  }

  .cart-item-main-content {
    flex-direction: column;
  }

  .subcategories-list {
    grid-template-columns: 1fr;
  }

  .button {
    text-align: center;
    padding-top: 9px;
    padding-bottom: 9px;
    display: inline-block;
  }

  .button.filter {
    color: var(--primary);
    text-align: right;
    background-color: #0000;
    background-image: url('../images/mynaui_filter_black.svg');
    background-position: 0%;
    background-repeat: no-repeat;
    background-size: auto;
    border: 1px #000;
    border-radius: 40px;
    flex: 0 auto;
    width: 96px;
    padding: 16px 0 16px 16px;
    transition: none;
    display: block;
  }

  .button.filter:hover {
    background-color: var(--transparent);
  }

  .button.filter.search {
    padding: 9px 0;
  }

  .button.filter.filter-close-button {
    text-align: right;
    background-image: url('../images/bitcoin-icons_cross-filled.svg');
    background-position: 100%;
    padding-left: 12px;
    padding-right: 28px;
  }

  .button.promocode-apply-button {
    padding: 18px 12px;
  }

  .button.checkout-redirect-button {
    margin-top: 0;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .button.continue-shopping-button {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .search-filter-button {
    margin-top: 0;
    margin-bottom: 0;
    padding-right: 0;
  }

  .c-filter.cc-select {
    padding-bottom: 8px;
  }

  .c-filter.cc-premiere {
    margin-top: 16px;
    padding-bottom: 0;
  }

  .c-filter.cc-premiere.price {
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .filter-button {
    align-self: stretch;
    margin-bottom: 40px;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
  }

  .filter-button.filter-close-button {
    justify-content: flex-end;
    align-items: stretch;
    margin-bottom: 20px;
  }

  .c-select-field-2:active {
    border-color: #98a11d;
  }

  .c-select-field-2:focus {
    color: var(--primary);
    border-color: #98a11d;
  }

  .c-form-block-filters {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    overflow: visible;
  }

  .c-grid-item.cc-30 {
    z-index: 200;
    background-color: var(--white);
    width: 80%;
    max-width: 100%;
    height: 100%;
    margin-right: 0%;
    padding: 24px;
    display: flex;
    position: relative;
    inset: 0%;
  }

  .sidebar-holder {
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    max-width: none;
    padding: 0;
    display: none;
    overflow: auto;
  }

  .product-block-flex {
    flex-flow: column;
  }

  .collection-products-title-and-brand {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    align-self: stretch;
  }

  .collection-products-title-and-brand .collection-products-title {
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 2 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: normal !important;
  }

  .product-cart-image {
    width: 32vw;
    max-width: none;
    margin-right: 0;
    padding: 0;
  }

  .list-item-3 {
    justify-content: flex-end;
    align-items: center;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    display: block;
    position: relative;
  }

  .product-list {
    flex: 1;
    width: auto;
    max-width: 100%;
    margin: 0;
    padding-left: 0;
    overflow: visible;
  }

  .order-summary {
    border-radius: 0;
  }

  .order-summary.checkout-page-order-summary {
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    position: static;
  }

  .product-name---card.product-name {
    margin-right: 20px;
    line-height: 120%;
  }
  
  .product-details-holder {
    flex-direction: column;
    flex: 1;
    margin-left: 16px;
    margin-right: 16px;
    display: flex;
  }

  .container-2 {
    padding: 1em;
  }

  .container-2._6ems {
    width: 100%;
    height: auto;
    padding-top: 1em;
    padding-bottom: 3em;
    overflow: auto;
  }

  .cart-content-container {
    grid-column-gap: 30px;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
  }

  .cart-content-container:active {
    grid-template-columns: 1fr;
  }

  .cart-content-container.checkout-page-container {
    flex-flow: column;
  }

  .radio-button-field-2.delivery {
    max-width: 100%;
  }

  .checkout-page-submit-button.button {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .checkout-page-submit-button.button:hover {
    background-color: var(--primary);
  }

  .block-header {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-flow: row;
    padding-bottom: 12px;
  }

  .block-header.checkout-page-block-header {
    flex-flow: column;
  }

  .cart-item {
    flex: 0 auto;
    height: auto;
    display: flex;
  }

  .div-price-text {
    padding-right: 0;
  }

  .remove-button {
    right: 10px;
  }

  .contact-text-field:focus {
    border: 1px solid #0c0407;
  }

  .checkout-section {
    margin-top: 0;
  }

  .seaarch-query {
    font-size: 24px;
  }

  .checkout-page-wrapper {
    padding-top: 170px;
  }

  .cart-popup {
    padding-left: 0;
    display: none;
  }

  .banner-gradient {
    background-image: linear-gradient(#fff0, #000 94%);
  }

  .heading-6 {
    font-size: 28px;
  }

  .image-2 {
    align-self: center;
    width: 60vw;
    min-width: 0;
    max-width: none;
  }

  .heading-7 {
    font-size: 32px;
    font-weight: 400;
  }

  .product-status-text {
    line-height: 120%;
  }

  .mobile-filter-container {
    z-index: 100;
    background-color: var(--white);
    width: 100vw;
    height: 100vh;
    padding: 48px 24px;
    position: fixed;
    inset: 0%;
    overflow: auto;
  }

  .sizechart-table-container {
    width: 100vw;
    top: 21vh;
  }

  .promocode-block-container {
    flex-flow: column;
    align-items: stretch;
  }

  .heading-9, .heading-10, .heading-11 {
    font-size: 28px;
    font-weight: 400;
  }

  .stores-section-v2 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .stores-cards-wrapper {
    flex-flow: column;
  }

  .adress-card {
    width: auto;
  }

  .container-checkout-page {
    padding-left: 1em;
    padding-right: 1em;
  }
  
  .image-4 {
    width: 36vw;
  }

  .text-block-16 {
    line-height: 140%;
  }

  .discount-value-placeholder {
    text-align: center;
    font-size: 14px;
    font-weight: 300;
  }

  .menu-logo-container {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    justify-content: space-between;
    align-items: center;
    display: flex;
  }

  .order-complete-animation {
    margin-bottom: 0;
  }

  .nothing-found-container {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 48px;
  }

  .collection-seo-description-body {
    column-count: 1;
  }

  .product-options-container {
    margin-bottom: 8px;
    padding-bottom: 4px;
  }

  .collection-description-rich-text {
    column-count: 1;
  }

  .collection-description-rich-text h1, .collection-description-rich-text p {
    margin-bottom: 8px;
  }

  .popup-content-container {
    width: 100vw;
    height: 100vh;
  }

  .pop-up-select-heading {
    order: 9999;
  }

  .heading-section-container {
    flex-flow: column;
  }

  .popup-option-select {
    flex: 1;
    max-width: none;
  }

  .third-option-form {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .third-option-form-submit-button {
    flex: 1;
  }

  .third-option-form-button-container {
    justify-content: flex-end;
    align-items: flex-end;
  }

  .black-friday-overlay {
    z-index: 80;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: #3339;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    margin-top: -20px;
    margin-bottom: -20px;
    display: flex;
  }
  
}

/* pagination.css */
#pagination-container {
  font-size: 18px;
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 100vw;
  margin: 30px auto;
  box-sizing: border-box;
}

#pagination-container button {
  background-color: var(--white);
  color: var(--primary);
  opacity: .3;
/*  border: 1px solid var(--border-clr);*/
  padding: 4px 8px;
  margin: 0 8px;
  cursor: pointer;
  transition: transform .1s, opacity .2s;
}

#pagination-container button:hover:not(:disabled) {
  transform: scale(1.1);
}
#pagination-container button:disabled {
  opacity: .3;
  cursor: default;
}


#pagination-container button.active {
  font-size: 20px;    
  opacity: 1 !important;  
  border-bottom-width: 1px !important; /* !important может понадобиться для переопределения стилей Webflow */
  border-bottom-style: solid !important;
  border-bottom-color: #000000 !important;
  color: var(--primary);
  border-color: var(--primary);
}
#pagination-container .arrow {
  font-size: 20px;
  margin: 0 12px;
}

#w-node-d3785142-ca1f-79bd-09fd-1b53852351d8-8790c180, #w-node-ce301fb5-fd62-e5c5-17b5-cee0b7a62c8e-8790c180, #w-node-a019c790-2f28-cbac-b702-7c78b81d6faf-8790c180, #w-node-_1ed2eae4-7185-db56-f5eb-aee172c78884-8790c180, #w-node-_473deb23-729e-55a2-d3e7-3678b72e73fa-8790c180, #w-node-_08d2f0bc-86ce-ee13-08f4-2dccfc307b59-8790c180, #w-node-_52f94c01-a161-e4c5-5040-a37a5299d8f5-8790c180, #w-node-da880da9-c1e6-d4cb-d7ee-2b7e6f9e97ec-8790c180 {
  place-self: stretch stretch;
}

#w-node-_9a2e9e4d-bfec-afe7-f76c-a551ae432813-ae43280d {
  justify-self: end;
}

#w-node-_80597255-818e-5fae-a229-4157d2d0c5f4-d2d0c592 {
  grid-area: span 1 / span 3 / span 1 / span 3;
  align-self: start;
}

#w-node-_6a4cba9b-fb8f-8321-42cc-c79d03883e3d-03883e39, #w-node-_79868bcc-d669-ee68-ace9-f167dacd10c4-470bd406 {
  justify-self: center;
}

#w-node-_3695d609-5406-a39f-b45a-bebad6072fe9-470bd406, #w-node-b784fb86-3a92-7170-82a6-0ad8c72e75d1-470bd406, #w-node-_675086dc-7811-575e-306e-f041b1864da9-470bd406, #w-node-ac77ece7-ccd8-9962-ccdb-f5f733afe04d-470bd406, #w-node-f0803478-9717-2227-3888-3e6ceb41b238-470bd406, #w-node-_170eb4a7-4dd9-05d6-e2d6-4f310ae63a3a-470bd406, #w-node-c1202214-5f3f-c1a8-979b-a048c5ed840f-470bd406, #w-node-_30e47b7a-a233-6c7c-bff1-211eee47d1a6-470bd406, #w-node-_20e40f4f-667f-59e1-0dca-823a591713f2-470bd406, #w-node-_8a948f31-1c3a-9019-028c-43f83c8e2e3d-470bd406, #w-node-b84cc14d-0fa9-1e6b-4a97-10468e42956b-470bd406, #w-node-_37293853-65be-1e17-c87a-52e225c777b4-470bd406, #w-node-fe33c9cc-8cc5-1e5a-8030-e02f87fa2703-470bd406, #w-node-_99ea7926-6da9-d022-531e-2ada2cbd5c63-470bd406, #w-node-_2f96eb2a-a3f4-e4ec-4af0-cff66eb19b30-470bd406, #w-node-bf1d9e95-fa8d-d4af-e423-8179366c814d-470bd406, #w-node-_4168fcbe-002d-c23c-3d54-5804ac766508-470bd406, #w-node-af0df354-bf0a-bd2a-8e89-f2e44e9a94f1-470bd406, #w-node-e24d68fc-fa39-7efe-702b-f0d1cc51a349-470bd406, #w-node-e103cad6-ef58-1e7f-2848-94aa60e7609b-470bd406, #w-node-_20fe0fc6-9f9b-03b8-543e-aa4a53bd9f78-470bd406, #w-node-_49ac179c-cf4b-2a52-0a0a-a4e8134a0671-470bd406, #w-node-c9d3a65f-7d04-0e43-8dce-3412e4e1cd19-470bd406, #w-node-dec1136b-8c56-3469-34fb-80638a0649c5-470bd406, #w-node-_8cb25cee-58c1-043b-7b6a-6658e9d6ea42-470bd406, #w-node-f5453d3c-3715-820e-d6f8-b198e6f2ffaa-470bd406, #w-node-effa8da7-5f7c-75bc-1a99-13e8a940b222-470bd406, #w-node-_4fec302b-9f1c-9583-c069-82a4cb177dea-470bd406, #w-node-_90e064a8-2183-f288-a6aa-63c40a691848-470bd406, #w-node-ce00f3c0-577c-4fdf-f672-c0d4d34dd6b5-470bd406, #w-node-a928c44d-b776-7240-cc6b-75bd053f8567-470bd406, #w-node-_01698ac0-e150-4ed0-1888-92b500a0224e-470bd406, #w-node-_3a29f387-bc0d-c1eb-754f-8f460d002f93-470bd406, #w-node-_8521d47a-0149-719a-6faa-80cfbdeebd64-470bd406, #w-node-_8325342c-990f-e65d-db43-e00d853e239c-470bd406, #w-node-_7dfbb73b-6dcf-c5a1-a0ea-0461de6e6144-470bd406, #w-node-_55b86057-5ae9-19de-237e-1de5669f4876-470bd406, #w-node-_07b5e7fa-3596-ca1b-92ad-25f0361ae945-470bd406, #w-node-_089364f3-ec7a-e4b0-4c23-471a47d4e9f8-470bd406, #w-node-_6bb0111a-0297-7c3f-e28a-cf050f7ca27a-470bd406, #w-node-_6fb690b1-7181-9fc0-ce21-7e3ff61baf87-470bd406, #w-node-_84e72d14-8659-e53d-3798-e1fff8dc45ce-470bd406, #w-node-ee72314d-f157-7cf6-e669-69f3513daa4e-470bd406, #w-node-af5c4022-0eb4-b775-7a6a-0a75c1d9cf27-470bd406, #w-node-_728ae296-2c9d-f128-7dca-51fae1e6bce3-470bd406, #w-node-b803914a-dcf7-dff5-e482-ecd778feb517-470bd406, #w-node-_4bc93637-4fac-6c6e-369d-132261cc209b-470bd406, #w-node-_69096580-0c02-99ed-8e2e-dfb5ab151add-470bd406, #w-node-ec24c47b-f200-26f7-1160-fbb8a5bbb300-470bd406, #w-node-_526fb743-e88f-251b-a59f-7af000d449ed-470bd406, #w-node-_98f5d138-ae81-ab3d-04b8-178d20ac24df-470bd406 {
  place-self: start stretch;
}

#w-node-_59f53c7c-3b72-27aa-4b4c-a3d1f34bd715-ef31bb6a {
  grid-area: span 1 / span 5 / span 1 / span 5;
}

#w-node-d3785142-ca1f-79bd-09fd-1b53852351d8-56576a9c, #w-node-ce301fb5-fd62-e5c5-17b5-cee0b7a62c8e-56576a9c, #w-node-da880da9-c1e6-d4cb-d7ee-2b7e6f9e97ec-56576a9c, #w-node-_4a5d2be6-ddc5-b1ff-5af1-76eabc38746b-56576a9c, #w-node-_4a5d2be6-ddc5-b1ff-5af1-76eabc38746f-56576a9c, #w-node-_4a5d2be6-ddc5-b1ff-5af1-76eabc387480-56576a9c {
  place-self: stretch stretch;
}

#w-node-_3ff0a155-530a-88d3-de83-67a3796619cb-6dcda188 {
  justify-self: center;
}

#w-node-_3695d609-5406-a39f-b45a-bebad6072fe9-6dcda188, #w-node-b784fb86-3a92-7170-82a6-0ad8c72e75d1-6dcda188, #w-node-_675086dc-7811-575e-306e-f041b1864da9-6dcda188 {
  place-self: start stretch;
}

#w-node-_79868bcc-d669-ee68-ace9-f167dacd10c4-b5e1e4ab {
  justify-self: center;
}

#w-node-_3695d609-5406-a39f-b45a-bebad6072fe9-b5e1e4ab, #w-node-b784fb86-3a92-7170-82a6-0ad8c72e75d1-b5e1e4ab, #w-node-_675086dc-7811-575e-306e-f041b1864da9-b5e1e4ab {
  place-self: start stretch;
}

@media screen and (max-width: 767px) {
  #w-node-_6a4cba9b-fb8f-8321-42cc-c79d03883e49-03883e39, #w-node-_79868bcc-d669-ee68-ace9-f167dacd10d0-470bd406, #w-node-_3ff0a155-530a-88d3-de83-67a3796619d7-6dcda188, #w-node-_79868bcc-d669-ee68-ace9-f167dacd10d0-b5e1e4ab {
    order: -9999;
    justify-self: stretch;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_6a4cba9b-fb8f-8321-42cc-c79d03883e3d-03883e39, #w-node-_79868bcc-d669-ee68-ace9-f167dacd10c4-470bd406 {
    justify-self: stretch;
  }

  #w-node-_59f53c7c-3b72-27aa-4b4c-a3d1f34bd715-ef31bb6a {
    grid-column: span 3 / span 3;
  }

  #w-node-_3ff0a155-530a-88d3-de83-67a3796619cb-6dcda188, #w-node-_79868bcc-d669-ee68-ace9-f167dacd10c4-b5e1e4ab {
    justify-self: stretch;
  }
}


