/* genearal styles */
.mobile_only {
  display: none;
}
@media only screen and (max-width: 768px) {
  .desktop_only {
    display: none;
  }
  .mobile_only {
    display: block;
  } 
}

/* texts */ 
.ProductItem__Title.Heading {
  margin-top: 8px;
  margin-bottom: unset;
}

.ProductItem__Title.Heading a {
  font-family: 'Baskerville', serif;
  text-transform: initial;
  font-size: 19px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.5px;
  text-align: center;
  color: #000000;
}

.ProductItem__PriceList.Heading {
  font-family: 'Brandon Grotesque', sans-serif;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #000000;
  font-size: 16px;
}

span.ProductItem__Price.Price.Price--highlight.Text--subdued .money {
  font-weight: 500;
  margin-left: 0px;
}

/* buttons */
.ProductForm__AddToCart {
  font-family: 'Brandon Grotesque', sans-serif;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  /* color: #ffffff; */
  font-size: 18px;
  height: 55px;
  cursor: pointer;
}

.Button {
  width: unset;
}

/* foundation collection banner */
.collection_banner_wrapper {
  display: block;
  position: relative;
}

.collection_banner_wrapper h2 {
  position: absolute;
  top: calc(50% - 45px);
  left: 15%;
  font-size: 55px;
  font-style: italic;
  letter-spacing: 3px;
  font-weight: bold;
}

@media only screen and (max-width: 768px) {
}

/* html section */

.collection_html_wrapper {
  display: flex;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  flex-direction: row;
  flex-wrap: wrap;
}

.html_50_block {
  width: 50%;
  margin: 35px auto 0;
  padding: 35px;
  position: relative;
}

img.html_quotes {
  position: absolute;
  max-width: 50px;
  left: 0;
}

.html_50_block h3 {
  font-size: 22px;
  margin-left: 10px;
  margin-top: 20px;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.html_50_block p {
  text-align: center;
}

img.html_signature {
  position: absolute;
  right: 0;
  max-width: 150px;
  margin-top: -30px;
}

@media only screen and (max-width: 768px) {
  .html_50_block {
    width: 100%;
  }
  img.html_quotes {
    left: 10px;
    top: 40px;
    
  }
  img.html_signature {
    right: 10px;
  }
}

/* add to bag */

.Grid__Cell:hover {
  .custom-select-wrapper {
    opacity: 1;
    transition: opacity 1s;
  }
  ul.slick-dots {
    opacity: 1;
    transition: opacity 1s;
  }
}

.custom-select-wrapper {
  opacity: 0;
  position: relative;
  user-select: none;
  width: 100%;
  margin-top: 20px;
}
 .custom-select {
   position: relative;
   display: flex;
   flex-direction: column;
}

 .custom-options {
   position: absolute;
   display: block;
   top: -378px;
   left: 0;
   right: 0;
   border: 1px solid #000;
   border-bottom: none;
   background: #fff;
   transition: all 0.5s;
   opacity: 0;
   visibility: hidden;
   pointer-events: none;
   z-index: 1000;
   height: 378px;
   overflow: scroll;
}
 .custom-select.open .custom-options {
   opacity: 1;
   visibility: visible;
   pointer-events: all;
}
 .custom-option {
   position: relative;
   border-bottom: 1px solid #f2f2f2;
   padding: 10px 15px;
   display: flex;
   flex-wrap: wrap;
   flex-direction: row;
   align-items: center;
}
 .custom-option:hover {
   cursor: pointer;
   background-color: #f2f2f2;
}
 .custom-option.selected {
   color: #000;
   background-color: #D8D8D8;
}
.custom-option.btn-collection.Button.selected {
  padding: 20px 15px; 
  font-family: 'Brandon Grotesque', sans-serif;
  font-size: 16px;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: 0.27px;
}

 .custom-option .ColorSwatch--large {
   margin-right: 15px;
   border-radius: 50%;
   width: 42px;
   height: 42px;
 }

@media only screen and (max-width: 768px) {
  .custom-select-wrapper {
    opacity: 1;
  }
}

/* slides */

.collection_outer_wrapper {
  position: relative;
}

.slick_prev_arrow {
  content: '';
  content: '';
  background-image: url(/cdn/shop/files/arrow-left.png);
  background-size: 12px;
  height: 75px;
  width: 75px;
  position: absolute;
  top: calc(50% - 37.5px);
  z-index: 8;
  left: 00px;
  background-repeat: no-repeat;
  background-position-x: 10px;
  background-position-y: center;
  cursor: pointer;
}

.slick_next_arrow {
  content: '';
  background-image: url(/cdn/shop/files/arrow-next.png);
  background-size: 12px;
  height: 75px;
  width: 75px;
  position: absolute;
  top: calc(50% - 37.5px);
  z-index: 8;
  right: 0px;
  background-repeat: no-repeat;
  background-position-x: 10px;
  background-position-y: center;
  background-position-x: calc(100% - 10px);
  background-position-y: center;
  cursor: pointer;
}

.slick_next_arrow,
.slick_prev_arrow {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

ul.slick-dots {
  list-style: disc;
  display: flex;
  position: absolute;
  justify-content: center;
  text-align: center;
  width: 100%;
  bottom: 0;
  opacity: 0;
  padding-left: 50px;
/*   margin-left: -18px; */
}

ul.slick-dots li {
  list-style-type: circle;
  font-size: 25px;
  padding: 0 9px;
  position: relative;
/*   left: calc(50% - 9px); */
}

ul.slick-dots li.slick-active {
  list-style-type: disc;
}

ul.slick-dots li button {
  font-size: 0;
}

@media only screen and (max-width: 768px) {
  ul.slick-dots {
    opacity: 1;
  }
}

/* mini section */

.collection_mini_section {
  display: flex;
  flex-direction: row;
  /* height: 50px; */
  align-items: center;
  max-width: 70%;
  margin: 10px auto;
}

.collection_mini_section.mini_section_video {
  max-width: 100%;
}

.mini_thumbnail img {
  max-height: 50px;
  max-width: unset;
}

.mini_text {
  text-align: left;
  margin-left: 15px;
  font-family: 'Brandon Grotesque', sans-serif;
  font-size: 15.5px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.27px;
  color: #000000;
}

.mini_text_centered {
  text-align: center;
  font-size: 15.5px;
  font-family: 'Brandon Grotesque', sans-serif;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.27px;
  color: #000000;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  .collection_mini_section {
    max-width: 100%;
  }
}

/* shades button */

.shade-select-wrapper {
  opacity: 1;
  position: relative;
  user-select: none;
  width: 100%;
  margin-top: 20px;
  cursor: pointer;
}
.shade-select {
   position: relative;
   display: flex;
   flex-direction: column;
}
.shade-select .custom-select__trigger.btn-collection.ProductForm__AddToCart.Button--primary.Button--full.Button {
  min-height: 60px;
}

.shade-options {
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  right: 0;
  border: 1px solid #000;
  border-top: none;
  background: #fff;
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1000;
  max-height: 378px;
  overflow: scroll;
}
.shade-select.open .shade-options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.shade-option {
  position: relative;
  border-bottom: 1px solid #f2f2f2;
  padding: 10px 15px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
}
.shade-option:hover {
  cursor: pointer;
  background-color: #f2f2f2;
}

.shade-option:hover .ColorSwatch--large {
  border: 1px solid #1c1b1b;
}

.shade-option:hover
.shade-option.selected {
  color: #000;
  background-color: #D8D8D8;
}
.shade-option.btn-collection.Button.selected {
  padding: 20px 15px; 
}

.shade-option .ColorSwatch--large,
.btn-collection .ColorSwatch--large {
  margin-right: 15px;
  border-radius: 50%;
  width: 42px;
  height: 42px;
}
.shade-option-soldout .var_title_main {
  text-decoration: line-through;
}
.shade-option-soldout .var_desc {
  text-decoration: none;
}
.btn-collection .ColorSwatch--large {
  border: 1px solid white;
}

.shade-select-wrapper .btn-collection {
  justify-content: normal;
  height: 58px;
}

.shade_value {
  display: none;
}

.swatch_info_section {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-self: center;
}
/* .shade_desc {
  font-size: 10px;
  width: 100%;
  text-transform: none;
  margin-top: 5px;
  letter-spacing: 1px;
} */
.var_desc {
  font-size: 10px;
  width: 100%;
  text-transform: none;
  margin-top: 5px;
  display: block;
  font-family: 'Brandon Grotesque', sans-serif;
  font-size: 13px;
  color: #6d6d6d;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
}
.var_title {
  text-align: left;
  font-family: 'Brandon Grotesque', sans-serif;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: 0.27px;
  text-transform: none;
}
span.custom-select__trigger.btn-collection.ProductForm__AddToCart.Button--primary.Button.add_to_bag_btn_true {
    padding: 18px 28px;
}
@media only screen and (max-width: 768px) {
  .shade-select-wrapper {
    opacity: 1;
  }
  .var_title {
    max-width: 255px;
  }
}
@media only screen and (max-width: 375px) {
  .var_title {
    max-width: 220px;
  }
}
@media only screen and (max-width: 375px) {
  .var_title {
    max-width: 205px;
  }
}

@media only screen and (max-width: 350px) {
  .var_title {
    max-width: 150px;
  }
}

.product_reviews_wrapper {
/*   max-width: 1230px; */
  margin: 35px 90px;
}

@media only screen and (max-width: 768px) {
  .product_reviews_wrapper {
    margin: 35px 0px;
  }
}

.shade-finder-dropdown-option {
  position: relative;
  border-bottom: 1px solid #f2f2f2;
  padding: 10px 15px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  align-content: center;
  cursor: pointer;
}

.shade-finder-dropdown-option span {
  text-transform: uppercase;
  font-weight: 600;
}

.shade-finder-dropdown-option img {
  margin-right: 15px;
  width: 42px;
  padding: 7px;
}
