/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
.jgeo_cart_option_container {
    position: relative;
    display: inline-block;
    min-width: 180px;
    width: 99%;
    margin: 20px 3px;
    border: 1px solid #5a5a5a;
}

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