/*
 Flavor picker styles.
 Rendered by BOTH ProductFlavorDescription and FTCProduct, so both enqueue this
 file under the shared handle 'plm-flavor-picker' and it loads once either way.
 FTCProduct/style.css keeps only its own scoped override of these rules.
*/

.product-flavor-picker {
    padding-top: 15px;
    padding-bottom: 10px;
    position: relative;
}

.product-price-picker .product-flavor-picker {
    padding-top: 0;
}

.product-flavor-picker button {
    color: #1c439b;
    font-size: 13px;
    font-weight: bold;
    line-height: 39px;
    letter-spacing: 1px;
    border: 2px solid #979797;
    background-color: #ffffff;
    padding: 6px 45px 6px 10px;
    display: block;
    position: relative;
    width: 100%;
    text-align: left;
}

.product-flavor-picker button:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 9px 0 9px;
    border-color: #979797 transparent transparent transparent;
    position: absolute;
    right: 15px;
    top: 20px;
}

.product-flavor-picker ul {
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 10;
    border: 2px solid #979797;
    margin-top: -12px;
    background-color: #f0f0f0;
    width: 100%;
    list-style: none;
    padding: 0;
    display: none;
}

.product-flavor-picker ul li {
    display: block;
    font-size: 13px;
    font-weight: bold;
    line-height: 39px;
    letter-spacing: 1px;
    color: #979797;
    padding: 6px 10px;
    cursor: pointer;
}