#wpd_product_option_popup_overlay {
    background: #000000c4;
    width: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 99999;
    display: none;
}

#wpd_product_option_popup_main_container {
    position: fixed;
    background: white;
    top: 80px;
    bottom: 0;
    left: 51%;
    transform: translate(-50%, 0);
    z-index: 9999999999;
    width: 480px;
    max-height: 650px;
    display: none;
    overflow: hidden;    
    flex-direction: column;
}

#wpd_production_option_body {
    overflow: auto;
    padding: 24px;
    flex: 1;
}

#wpd_product_image {
    width: 80px;
    height: 80px;
}

#wpd_product_title {
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 8px;
}

#wpd_product_desc {
    line-height: 23px;
}

#wpd_product_general_info_wrapper {
    display: flex;
    align-items: flex-start;
    column-gap: 16px;
}

#wpd_product_title_desc_wrapper {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

#wpd_close_product_option {
    cursor: pointer;
    width: 40px;
}

.wpd-product-option-value-wrapper {
    display: flex;
    gap: 16px;
    margin-top: 4px;
    flex-wrap: wrap;
}

.wpd-product-option-value {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 12px 16px;
    cursor: pointer;
    line-height: 16px;
    font-size: 14px;
}

#wpd_product_options_wrapper {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    margin-top: 24px;
}

#wpd_product_sku_wrapper{
    margin-top: 24px;
    margin-bottom: -24px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 16px 0;
}

#wpd_product_option_price_wrapper {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 16px;
    margin-top: 24px;
    padding: 16px 0;
    row-gap: 16px;
}

#wpd_product_option_price {
    font-weight: 400;
    font-size: 32px;
    line-height: 32px;
}

#wpd_product_option_compare_price,
#wpd_product_option_vd_desc {
    font-weight: 400;
}

#wpd_product_option_volume_discount_label {
    background: #44DDCC;
    color: #FFFFFF;
    margin-right: 24px;
    padding: 4px 8px;
    flex: none;
    font-size: 12px;
    line-height: 12px;
}

#wpd_product_option_vd_table_wrapper {
    margin-top: 8px;
    padding: 0 1px 1px 1px;
}

#wpd_product_option_vd_table_wrapper table {
    width: 100%;
}

#wpd_product_option_vd_table_wrapper th {
    text-align: left;
}

#wpd_product_option_vd_main_wrapper {
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

#wpd_product_option_add_to_cart {
    padding: 16px 0;
    flex: 1 1 auto;
    position: relative;
}

#wpd_production_option_footer {
    padding: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    background: white;    
    width: 100%;
}

#wpd_product_option_sold_out {
    padding: 16px 0;
    flex: 1 1 auto;
    display: none;
    position: relative;        
    opacity: 0.5;
    pointer-events: none;        
}

/* mobile css */
@media only screen and (max-width: 600px) {
    #wpd_product_option_popup_main_container {
        width: 100% !important;
        top: 0;        
        left: 0;
        transform: none;
        max-height:none;
    }
}