<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#product .interrogation-icon {
  color: #000;
  border: 1px solid #888;
  padding: 1px 7px;
  border-radius: 9999px;
}

/* 
    Handling tootip style 
    --- 11-01-2024
*/
#product .tooltip-trigger {
  position: relative;
  display: inline-block;
  /* border-bottom: 1px dotted black; */
}

#product .tooltip-trigger .tooltip-text {
  font-size: 12px;
  padding: 8px 4px;
  visibility: hidden;
  width: 240px;
  background-color: #030303aa;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  /* padding: 5px 0;s */
  position: absolute;
  z-index: 4;
  top: 120%;
  left: -36px;
  margin-left: -60px;
}

#product .tooltip-trigger .tooltip-text::after {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #030303aa transparent;
}

#product .tooltip-trigger:hover .tooltip-text {
  visibility: visible;
}

/* 
    GLOBAL STYLES, APPLIES GLOBALLY FOR EVERY BREAKPOINT 
    --- 26-01-2024
*/

/* attempt: using grid */
#product .product-variants.certideal-variants {
  display: flex;
  flex-wrap: wrap;
  /* border-bottom: 1px solid #d6d4d4; */
  column-gap: 12px;
}

#product .product-variants.certideal-variants &gt; .product-variants-item {
  min-width: 156px;
  flex-shrink: 0;
  flex-grow: 1;
  width: fit-content;
}

#product .product-variants.certideal-variants &gt; .product-variants-item:nth-child(1),
#product .product-variants.certideal-variants &gt; .product-variants-item:nth-child(3) {
  flex-grow: 0;
  width: 320px;
}

#product .product-variants.certideal-variants &gt; .product-variants-item ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
}

#product .product-variants.certideal-variants &gt; .product-variants-item ul li label {
  width: 100%;
}
/* 
/* end */

#product .product-variants.certideal-variants .product-variants-item .radio-label {
  border: 2px solid #252850;
  color: #252850;
  box-shadow: 0;
  line-height: 32px;
  border-radius: 4px;
  box-shadow: none;
  /* test */
  font-size: 12px;
  font-weight: 600;
  /* attempt */
  width: 100%;
  text-align: center;
  transition: 100ms all ease;
}

#product .product-variants.certideal-variants .product-variants-item {
  border: 0 !important;
}

#product .product-variants.certideal-variants .input-radio:checked + span,
.input-radio:hover + span {
  background-color: #252850;
  color: #f8d13b !important;
}

#product .product-variants.certideal-variants .product-variants-item .control-label {
  text-align: left;
  font-weight: 900;
}

.input-color:checked + span,
.input-color:hover + span {
  outline: 2px solid #252850;
  outline-offset: 2px;
  border: 0 solid transparent !important;
}

#product .product-variants.certideal-variants .color {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
}

/* 
    ADAPTATION FOR SM-SCREEN
    -- 26-01-2024
*/

@media (max-width: 768px) and (min-width: 640px) {
  #product .product-variants.certideal-variants {
    /* display: flex;
    flex-wrap: wrap; */
    column-gap: 40px;
  }

  #product .product-variants.certideal-variants &gt; .product-variants-item {
    flex-grow: 1;
    flex-shrink: 0;
  }

  #product .product-variants.certideal-variants &gt; .product-variants-item ul {
    display: flex;
  }

  #product .product-variants.certideal-variants &gt; .product-variants-item:not(:first-child) ul li {
    flex-shrink: 0;
    flex-grow: 1;
  }

  #product .tooltip-trigger .tooltip-text {
    left: 16px;
  }
}

/* 
    ADAPTATION FOR MOBILE AND SMALL SCREENS
    -- 26-01-2024
*/
@media (max-width: 639px) {
  #product .product-variants.certideal-variants {
    display: block;
  }

  #product .product-variants.certideal-variants &gt; .product-variants-item:not(:first-child) {
    width: 100%;
  }

  #product .product-variants.certideal-variants &gt; .product-variants-item:not(:first-child) {
    padding-top: 0px;
  }

  #product .product-variants.certideal-variants &gt; .product-variants-item:not(:first-child) ul li {
    flex-grow: 1;
    flex-shrink: 0;
  }

  #product .product-variants.certideal-variants &gt; .product-variants-item ul li label {
    width: 100%;
  }
  /* for color radio */

  #product .product-variants.certideal-variants &gt; .product-variants-item ul {
    gap: 4px;
  }

  #product .product-variants.certideal-variants .color {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
  }

  #product .tooltip-trigger .tooltip-text {
    left: 56px;
  }
}

/* certideal grade esthÃ©tique */

#product .grade-esthetique {
  display: flex;
  justify-items: start;
  align-items: center;
  column-gap: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #d6d4d4;
}

#product .grade-esthetique .icon-container img {
  height: 29px;
}

#product .grade-esthetique .text-container {
  display: flex;
  column-gap: 32px;
}

#product .grade-esthetique .text {
  font-size: 13px;
  font-weight: bold;
  color: #252850;
}

#product .grade-esthetique .link {
  text-decoration: underline;
  font-weight: bold;
}

@media (max-width: 767px) {
  #product .grade-esthetique {
    margin-bottom: 20px;
  }
}
</pre></body></html>