/* Produto */
:root { 
    --product-title-color: var(none); /* color|Cor do titulo */
    --product-title-size: 30px; /* text|tamanho do titulo */

    --btn-cart: #0068d6; /* color|Cor Botão Comprar */
    --btn-cart-hover: #003247; /* color|Cor Botão Comprar Hover */
}


#input-quantity-wrapper{width:100px; margin-top: 20px;}

#button-cart-fixed{position: fixed; left: 0; bottom: 0; width: 100%; border-radius: 0; padding:15px; display: none;}

.radio.radio-option{padding:10px 15px; position: relative; border:solid 1px #eee; display: inline-block; margin-bottom:5px; width: auto;}
.radio.radio-option input{position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer;}
.radio.radio-option.active{background: var(--primary); color: #fff;}
.control-label{font-weight: 500; margin-top: 10px;}

@media(max-width:767px){
    .breadcrumb{display: none;}
}

#product-product .wishlist{font-size: 20px; color: red;}
#product-product h1{font-size: var(--product-title-size); color: var(--product-title-color, var(--primary));}

.product-price h2{margin-bottom: 0;}

/* SLIDER */
.swiper-thumbs .swiper-slide {
    height: 100%;
    opacity: 0.8;
}

.swiper-thumbs {
    margin-top: 10px;
}

.swiper-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}

/* Product navigation */
.swiper-product-prev,.swiper-product-next{position: absolute; top: 50%; margin-top: -15px; z-index: 30000; cursor: pointer;}
.swiper-product-prev svg,.swiper-product-next svg{height: 30px;}
.swiper-product-prev svg path,.swiper-product-next svg path{fill: var(--primary);}
.swiper-product-prev{left: 10px;}
.swiper-product-next{right: 10px;}

.accordion-button:not(.collapsed){background-color:#efefef; color:var(--primary); font-weight: bold;}