/** Shopify CDN: Minification failed

Line 84:14 Expected ":"
Line 84:20 Expected ":"

**/
.pf_product_variant_and_atc{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .5rem;
    padding: 0 16px;
    display: none;
}

.pf_product_variant_and_atc .atc_redirect_btn{
    width: 100%;
    height: 40px;
}

.pf_product_variant_and_atc .atc_redirect_btn *{
    font-size: 14px;
}


.pf_product_variant_and_atc .choose_strength_btn{
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background-color: transparent;
    border: 1px solid #000;
    color: #000;
    padding: 12px;
}

.pf_product_variant_and_atc .choose_strength_btn svg path{
    fill: #000;
}

.pf_product_variant_and_atc .strength_modal_wrapper{
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    background-color: rgba(0, 0, 0, .3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.pf_product_variant_and_atc .strength_modal_wrapper.active{
    opacity: 1;
    visibility: visible;
}

.pm__information:has(.strength_modal_wrapper.active){
    z-index: 25;
}

.pf_product_variant_and_atc .close_btn{
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border-radius: 50%;
    border: 1px solid #000;
    background-color: #FFF;
    transform: translateY(100vh);
    transition: all ease 350ms;
}

.pf_product_variant_and_atc .main_content{
    max-height: calc(90vh - 80px);
    overflow-y; auto;
    width: 100%;
    background-color: #fff;
    transform: translateY(100%);
    transition: all ease 350ms;
}

.pf_product_variant_and_atc .strength_modal_wrapper{
    transition-delay: 400ms;
}

.pf_product_variant_and_atc .strength_modal_wrapper.active {
    transition-delay: 0ms;
}

.pf_product_variant_and_atc .strength_modal_wrapper.active .close_btn,
.pf_product_variant_and_atc .strength_modal_wrapper.active .main_content{
    transform: translateY(0%);
}

.pf_product_variant_and_atc .main_content .pf_option{
    padding: 10px 12px;
    display: grid;
    grid-template-columns: 3fr 2fr;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #e5e5e5;
}

.pf_product_variant_and_atc .pf_option .option_atc_btn{
    width: 100%;
}

.pf_product_variant_and_atc .pf_option .option_atc_btn.sold_out{
    background-color: #a4b7ad;
    border-color: #a4b7ad;
    color: #0f172a;
}

.pf_product_variant_and_atc .pf_option .option_info{
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.pf_product_variant_and_atc .pf_option .option_info *{
    font-size: 16px;
}

.pf_product_variant_and_atc .pf_option  .low_stock{
    color: #e24848;
}

.pf_product_variant_and_atc .pf_option  .option_info:has(.sold_out){
    color: #7f7f7f;
}


@media only screen and (max-width: 768px) {

    .pm__information .pm__buttons-pay-quantity{
        order: -1;
        height: 0px;
        margin-bottom: 0;
    }
    .pm__information .pm__atc-form button,
    .pm__information .pm__atc-form{
        opacity: 0;
        visibility: visible;
        height: 0px;
        padding: 0;
    }

    .pm__information .pm__title-meta{
        order: -2;
    }
    .pm__information .atc-usps-bar,
    .pm__information variant-selects .SelectBox--Wrapper{
        display: none;
    }

    .pf_product_variant_and_atc{
        display: grid;
    }

    .pm__information .pm__information-wrapper{
        gap: 0;
    }

    .pm__information .pm__information-wrapper > div{
        margin-bottom: 1.5rem;
    }

    .pm__information .pm__information-wrapper .pm__buttons-pay-quantity{
        margin-bottom: 0;
    }

}