/**
 * Public CSS side of the plugin.
 *
 * @link       https://jumpinggiraffe.com
 * @package    jgeo_woocommerce_extra_options
 * @subpackage jgeo_woocommerce_extra_options/public/css
 * @author     Jumping Giraffe Ltd
 */
.jgeo_cart_option_container {
    position: relative;
    display: inline-block;
    min-width: 180px;
}

.jgeo_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;
}

.jgeo_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;
}

.jgeo_product_cart_options label {
    display: block;
    padding: 2px 16px;
    cursor: pointer;
    margin-bottom: .4rem;
}

.jgeo_product_cart_options label:hover {
    background-color: #ddd;
}

.jgeo_product_cart_options_show {
    display: block;
}

.jgeo_product_cart_options_arrow {
    transition: transform 0.3s ease;
}

.jgeo_product_cart_options_arrow_up {
    transform: rotate(180deg);
}