/** Shopify CDN: Minification failed

Line 494:0 Unexpected "{"

**/
/* Sunscreen Comparison Design CSS */
.comparison-main-section-mobile {
    display: none;
}
 .comparison-main-section {
    display: none;
}
.comparison-section-popup {
    display: none;
}
.comparison-product-popup {
    display: none;
}
@media (min-width: 769px) and (max-width: 1023px) {
 .comparison-main-section {
    display: none;
}
.comparison-section-popup {
    display: none;
}
.comparison-product-popup {
    display: none;
}
.comparison-main-section-mobile {
    display: none;
}
}

@media (max-width: 768px) {
.comparison-main-section-mobile {
    display: block;
}
  .comparison-main-section {
    display: none;
}
.custom-dropdown {
  position: relative;
  width: 100%;
  cursor: pointer;
}
.dropdown-options {
    display: none;
}
.dropdown-options.active {
    display: block !important;
    height: auto;
}  
.dropdown-selected {
    border: 1px solid #707070;
    background: white;
    position: relative;
    height: 46px;
    display: flex;
    align-items: center;
    font-family: poppins-Regular !important;
    padding-left: 12px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}


.dropdown-options {
   position: absolute;
   top: 100%;
   left: 0;
   right: 0;
   background: white;
   border: 1px solid #707070;
   border-top: none;
   max-height: max-content;
   overflow-y: auto;
   z-index: 1000;
   border-bottom-left-radius: 6px;
   border-bottom-right-radius: 6px;
}
.select-compare-product-dropdown {
  position: relative; /* required for ::after to be positioned correctly */
  cursor: pointer;
}
/* Rotate arrow when dropdown is active */
.select-compare-product-dropdown.rotated::after {
  transform: translateY(-50%) rotate(180deg);
}

.dropdown-option {
  padding: 8px 12px;
  cursor: pointer;
  border-bottom: 1px solid #DFDFDF;
  font-size: 12px;
  background-color: #F2F2F2;
}
.clear-all-btn {
    height: 46px !important;
    border-radius: 10px;
}


.dropdown-option:hover {
  background-color: #f5f5f5;
}

.dropdown-option:last-child {
  border-bottom: none;
}  
.comparison-product-popup {
    display: block;
}  
.comparison-main-section {
    padding: 10px 10px 0;
}
button.close-comparison-div {
    position: absolute;
    top: -12px;
    right: -7px;
    background: #AEACAC;
    border-radius: 50%;
    font-size: 12px;
    color: #fff;
    width: 20px;
    height: 20px;
  
}
.comparison-inner-section {
    margin-bottom: 10px;
}
.comparison-product-info.first-div p {
    font-family: 'poppins-SemiBold' !important;
}
.comparison-inner-section span.Compare-text {
    font-size: 12px;
    color: #757575;
    font-family: poppins-SemiBold !important;
}

.custom-comparison-checkbox {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-family: poppins-SemiBold !important;
    font-size: 16px;
    color: #666; 
}

.custom-comparison-checkbox input {
    display: none !important;
}

.custom-comparison-checkbox .checkmark {
    margin-right: 8px;
    display: inline-block;
    position: relative;
    transition: all .3s ease;
    width: 15px;
    height: 15px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #757575;
    border-radius: 2px;
    opacity: 1;
}

.custom-comparison-checkbox input:checked + .checkmark {
    border-color: #ff3399;
    background-color: #fff;
}

.custom-comparison-checkbox input:checked+.checkmark:after {
    content: "";
    position: absolute;
    left: 4px;
    top: 0px;
    width: 6px;
    height: 9px;
    border: solid #ff3399;
    border-width: 0 1px 1px 0;
    transform: rotate(45deg);
}

.custom-comparison-checkbox input:checked ~ span,
.custom-comparison-checkbox input:checked ~ .checkmark + span {
    color: #ff3399;
}

.comparison-section-popup {
    display: none;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
}

.comparison-section-popup.active {
    display: block;
    position: fixed;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 0px 12px #00000085;
    border-radius: 8px;
    z-index: 1;
    width: calc(100% - 8%);
    padding: 10px;
}

button.compare-product-btn {
    flex-shrink: 0;
    background: black;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    font-family: poppins-SemiBold !important;
}

.comparision-popup-inner-section {
    display: flex;
    justify-content: space-around;
}

button.compare-product-btn .cursor-default, :disabled {
    cursor: default;
    background: #959595 !important;
}

.comparison-product-popup {
    display: none;
}
.comparison-product-popup.active {
    display: block;
    position: fixed;
    bottom: 7.7%;
    left: 0;
    background: white;
    z-index: 1001;
    width: 100%;
    overflow-y: auto;
    padding-bottom: 20px;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
}

.comparison-section-popup.active p {
    color: #000000;
    font-size: 14px;
    font-family: poppins-SemiBold !important;
    line-height: normal;
}

.comparison-product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:15px 20px;
    border-bottom: none;
}

.comparison-product-header p {
    margin: 0;
    font-size: 18px;
    color: #000;
    font-family: 'poppins-bold' !important;
}

.close-comparison-popup {
    cursor: pointer;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: all 0.3s ease;
}

.close-comparison-popup:hover {
    background: #e0e0e0;
    color: #333;
}

.comparison-product-item {
    display: flex !important;
    flex-direction: row !important;
    gap: 0;
    border-radius: 12px;
    width: 100%;
    min-height: auto;
}

.comparison-product-info {
    display: flex;
    flex-direction: column;
    float: none;
    position: relative;
}


.comparison-product-info:first-child > div {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    font-weight: 600;
    font-size: 13px;
    color: #333;
    text-align: center;
    width: 100%;
}

.comparison-product-info:first-child > div:first-child {
    border-radius: 6px;
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F2F2F2;
    padding: 10px;
    margin: 0 auto;
    margin-bottom: 5px;
}

/* Product columns */
.comparison-product-info:not(:first-child) {
    position: relative;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}


.comparison-product-info:not(:first-child) > div:last-child {
    border-bottom: none;
}
/* Product titles */
.comparison-product-image p {
    color: #FAF8FF;
}
.comparison-product-title {
    width: 100%;
    position: absolute;
    background: #F68443;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    padding: 8px;
    height: 60px;
    
}
.comparison-product-title p {
    margin: 0;
    line-height: 1.3;
    color: #333;
}

/* Price styling */
.money-print {
    font-weight: 700;
    color: #333;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.non-bold {
    font-weight: 600;
}

/* Action buttons */
.comparison-action-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e9ecef;
}

.clear-all-btn {
    color: #333;
    border: 1px solid #000;
    border-radius: 7px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.comparison-product-info product-form.dev_atc_form.parent-of-button {
    padding: 0 0 0 0;
}
.comparison-product-info .card-product-new-design .comming-soon button span, .card-product-new-design .parent-of-button button span {
    padding: 9px;
    letter-spacing: normal;
}
.sunscreen-image {
    display: block !important;
    background: #F2F2F2;
    height: 130px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}
.sunscreen-box {
    padding: 19px 0;
    background: #EAEAEA;
    margin-bottom: 8px;
    border-bottom-right-radius: 7px;
    border-bottom-left-radius: 7px;
    text-align: center;
    height: 60px;
}  
.clear-all-btn:hover {
    background: #f8f9fa;
    border-color: #aaa;
}

.add-to-cart-btn {
    background: #000;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.add-to-cart-btn:hover {
    background: #333;
}
.comparison-product-popup .comparison-product-item {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    padding: 0 8px;
}
content {
    padding: 0 8px;
}
.comparison-product-popup .comparison-product-info {
    width: 30%;
    gap: 2px;
}
.hidden {
    display: none !important;
}
/* Reset any potential conflicting styles */
.comparison-product-info {
    clear: none;
    float: none;
    margin: 0;
    padding: 0;
}
.comparison-close-product-div {
    position: absolute;
    color: #fff;
    background: #FF0000;
    border-radius: 50px;
    width: 21px;
    height: 21px;
    right: 0;
    top: -10px;
    
}
.comparison-close-product {
    position: absolute;
    bottom: 1px;
    left: 7px;
}  
.comparison-product-image img {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    height: 130px;
}
.comparison-text {
    height: 60px;
    text-align: center;
    background-color: #f9d56e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: poppins-Regular !important;
}
.comparison-product-popup.active {
    width: 100%;
}
.comparison-text p {
    font-family: 'poppins-Regular' !important;
} 
.select-compare-product-dropdown {
    max-width: 100%;
}
{
    font-size: 12px;
    min-height: 48px;
    padding: 12px 35px 12px 16px;
    font-family: 'poppins-Regular' !important;
}
.select-compare-product-dropdown::after {
    right: 16px;
    border-left-width: 6px;
    border-right-width: 6px;
    border-top-width: 8px;
}  
.comparison-action-buttons {
    flex-direction: column;
    align-items: center;
}
.clear-all-btn,
.add-to-cart-btn {
    width: 100%;
    max-width: 250px;
}
.comparison-product-info:first-child > div {
    height: 60px;
    background: #f2f2f2;
}
.comparison-product-image .comparison-product-title p {
    font-size: 13px;
    color: #FAF8FF;
    text-align: center;
    font-family: 'poppins-bold' !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow: hidden;
    -webkit-box-orient: vertical;
}
.comparison-product-price-type {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    margin-bottom: 8px;
}
.comparison-product-skin-type {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}
.comparison-product-item p {
    font-size: 13px;
    color: #000;
    line-height: 16px;
}
.overlay.active {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: block;
}
.comparison-product-image {
    height: 190px !important;
    margin-bottom: 5px;
}
.card-product-new-design .money-print {
    font-size: 20px !important;
    font-family: 'poppins-SemiBold' !important;
}

  /* Modern Dropdown Styling */
.select-compare-product-dropdown {
   position: relative;
   width: 100%;
   max-width: 250px;
}

.select-compare-product-dropdown label {
   display: none;
}

.select-compare-product-dropdown select {
   width: 100%;
   min-height: 50px;
   padding: 15px 40px 15px 20px;
   border: 1px solid #707070;
   border-radius: 12px;
   background: white;
   font-size: 12px;
   font-weight: 500;
   color: #000;
   cursor: pointer;
   outline: none;
   appearance: none;
   -webkit-appearance: none;
   -moz-appearance: none;
   transition: all 0.3s ease;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Custom dropdown arrow */
.select-compare-product-dropdown::after {
   content: '';
   position: absolute;
   top: 50%;
   right: 20px;
   transform: translateY(-50%);
   width: 0;
   height: 0;
   border-left: 8px solid transparent;
   border-right: 8px solid transparent;
   border-top: 10px solid #333;
   pointer-events: none;
   transition: transform 0.3s ease;
}
.comparison-product-Price-type.comparison-text {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    margin-bottom: 8px;
}
.select-compare-product-dropdown select:focus {
   border-bottom-right-radius: 0px;
   border-bottom-left-radius: 0px;
   
}

/* Option styling */
.select-compare-product-dropdown select option {
   padding: 12px 20px;
   font-size: 16px;
   font-weight: 500;
   color: #333;
   background: white;
   border: none;
   line-height: 1.4;
}

.select-compare-product-dropdown select option:hover {
   background: #f8f9fa;
}
.sunscreen-label {
    font-size: 12px;
    color: #000;
    font-family: 'poppins-SemiBold' !important;
}
.comparison-product-info button.quiz_add_to_cart.btn-anim.add-tocart-button {
    min-width: auto;
}
}
@media (max-width: 480px) {
}
@media (min-width: 320px) and (max-width: 390px) {
 .dropdown-options.active {
    height: 330px;
}    
.dropdown-options {
  max-height: max-content;
}
.comparison-product-item p {
  font-size: 12px;
  color: #000;
}  
 .comparison-product-info:first-child > div:first-child {
    height: 150px;
  }
  .comparison-product-image {
     height: 154px !important;
     margin-bottom: 0px;
  }
  .card-product-new-design .money-print {
    font-size: 14px !important;
  }
  .comparison-product-image .comparison-product-title p {
        font-size: 12px;
    }
  .comparison-product-info .card-product-new-design .comming-soon button span, .card-product-new-design .parent-of-button button span {
    font-size: 10px !important;
}
.comparison-product-popup.active {
    bottom: 6.7%;
}
.comparison-product-title {
  height: 40px;
  width: 100%;
  padding: 5px;
} 
.comparison-product-Price-type.comparison-text {
  margin-bottom: 5px;
}
.comparison-text {
  height: 45px;
  padding: 3px;
}
.comparison-product-info:first-child > div {
  height: 45px;
  background: #f2f2f2;
} 
.comparison-product-price-type {
  margin-bottom: 5px;
}  
.clear-all-btn {
    height: 48px !important;
    border-radius: 10px;
}
.comparison-product-image img {
 height: 110px;
}

.sunscreen-image{
    height: 110px;
}
.sunscreen-box {
    padding: 8px 0;
    height: 40px;
}   
}
