/* Hide default combinations */
/* #product .product-variants,
#product .add-to-cart,
#product .product-quantity{
    display:none !important;
} */

/* Toggle switch */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}
.switch input { display: none; }
.slider {
    position: absolute;
    cursor: pointer;
    background-color: #ccc;
    border-radius: 34px;
    transition: .4s;
    height: 100%;
    width: 100%;
}
.slider:before {
    content: "";
    position: absolute;
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    border-radius: 50%;
    transition: .4s;
}
input:checked + .slider {
    background-color: #2196F3;
}
input:checked + .slider:before {
    transform: translateX(26px);
}

/* Custom */
.product-additional-info {
    width: 100%;
}

.tvfooter-product-sticky-bottom #mix-combination-div {
    display: none;
}