/** Shopify CDN: Minification failed

Line 152:0 Unexpected "}"

**/
.drops-quick-picker {
    align-items: center;
    background: var(--solid-white);
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
    position: relative;
    top: 0;
    transition: all 200ms ease;
    z-index: 99;
}

.drops-quick-picker h4 {
    max-width: 95%;
    margin: 10px auto 0 auto;
}
.drops-quick-picker h5 {
    color: var(--main-color);
    font-weight: 600;
    margin: 0;
}

.drops-quick-picker a {
    color: var(--solid-black);
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.drops-quick-picker a:hover {
    color: var(--main-color);
    text-decoration: none;
}

.drops-quick-picker:hover a {
    text-decoration: none !important;
}

.drops-quick-picker ul {
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 0 0 20px 0;
    min-height: 33px;
    padding: 0;
}

.drops-quick-picker ul li {
    list-style: none;
    margin: 0 5px;
}

.drops-quick-picker span {
    background: var(--basic-gray-darkess);
    border-radius: 20px;
    cursor: pointer;
    display: block;
    font-size: 12px;
    line-height: 12px;
    padding: 6px 12px;
    transition: all 400ms ease;
}

.drops-quick-picker span:hover,
.drops-quick-picker span[data-variant-selected] {
    background: var(--main-color);
    color: var(--solid-white);
}

span[data-variant-not-available] {
    cursor: not-allowed;
    opacity: 0.6;
}

span[data-variant-not-available]:hover {
    background: var(--basic-gray-darkess);
    color: inherit;
    cursor: not-allowed;
}

/* Controls cart_content height for slide up effect */
.drops-product-card .card__content {
    max-height: 115px;
    margin-bottom: 20px;
    overflow: hidden;
}

.drops-product-card:hover .card__content {
    overflow: inherit;
}

.drops-product-card:hover .drops-quick-picker {
    top: -60px;
}

.drops-quick-picker--hide {
    display: none;
}

drop-picker-prices {
    align-items: center;
    display: flex;
    font-size: 14px;
    font-weight: 600;
    justify-content: space-between;
    margin: 0 0 15px 0;
}

drop-picker-prices .drop-picker-prices__regular {
    color: var(--base-red);
}

drop-picker-prices .drop-picker-prices__regular.picker-prices--regular {
    color: var(--main-color);
}

drop-picker-prices .drop-picker-prices__compare {
    color: var(--base-gray);
    text-decoration: line-through;
}

/* Responsive */
@media screen and (max-width: 749px) {
    .drops-product-card .card__content {
        max-height: inherit;
        overflow: inherit;
    }

    .drops-product-card:hover .drops-quick-picker {
        top: 0;
    }
   .drops-quick-picker ul {
    font-size: 0px; 
  } 
  
  
  .drops-quick-picker {
    align-items: center; 
  } 
  
  
  .drops-quick-picker span {
    font-size: 10px;
  
  }
}
}