/**
 * Public CSS side of the plugin.
 *
 * @link       https://jumpinggiraffe.com
 * @package    jgbb_bundles
 * @subpackage jgbb_bundles/assets/css
 * @author     Jumping Giraffe Ltd
 */
.jgbb_bundles .jgbb_cart_option_container {
    position: relative;
    display: inline-block;
    min-width: 180px;
}

.jgbb_bundles .jgbb_product_cart_option_select {
    background-color: #f1f1f1;
    padding: 3px 16px;
    border: 1px solid #ddd;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.jgbb_bundles .jgbb_product_cart_options {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 180px;
    /* box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);*/
    z-index: 1;
    width: 470px;
}

.jgbb_bundles .jgbb_product_cart_options label {
    display: block;
    padding: 2px 16px;
    cursor: pointer;
    margin-bottom: .4rem;
}

.jgbb_bundles .jgbb_product_cart_options label:hover {
    background-color: #ddd;
}

.jgbb_bundles .jgbb_product_cart_options input{margin-right: 10px; height: 1rem; width: 1rem;}
.jgbb_bundles .jgbb_product_cart_options .jgbb_product_cart_options_percent {color:red;}

.jgbb_bundles .jgbb_product_cart_options_show {
    display: block;
}

.jgbb_bundles .jgbb_product_cart_options_arrow {
    transition: transform 0.3s ease;
}

.jgbb_bundles .jgbb_product_cart_options_arrow_up {
    transform: rotate(180deg);
}
