#modal-product-quick-view {
    display: flex;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100;
    top: 0;
    left: 0;
    opacity: 1;
    max-height: 100%;
    box-shadow: 0px 0px 80px rgba(47, 54, 56, 0.09);
    overflow: auto;
    justify-content: center;
    align-items: flex-start;
    background-color: rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
}

.close-btn {
    background-color: white;
    position: absolute;
    top: 32px;
    right: 32px;
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 100%;
    padding: 2px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.close-btn>img {
    width: 16px;
}

#modal-product-quick-view.active {
    animation: modal-appear 0.6s ease;
}

@keyframes modal-appear {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

#modal-product-quick-view>.container {
    padding: 48px;
    background-color: #fff;
    margin-top: 30px;
    margin-bottom: 30px;
    transition: 0.5s all ease;
    box-sizing: border-box;
}

#modal-product-quick-view.active>.container {
    transition: 0.6s all ease;
}

#modal-product-quick-view .product-info-foot {
    margin-top: 16px;
}

#modal-product-quick-view .product-info-content {
    height: auto;
}

.tab-product .nav-material.nav-tabs {
    border-bottom: 2px solid #ddd;
    border-right: 0;
}

#top-tab>li {
    display: block !important;
}

.tab-product .nav-material.nav-tabs .nav-item .nav-link.active {
    background-color: unset;
}

.tab-product .nav-material.nav-tabs .nav-item .nav-link,
.product-full-tab .nav-material.nav-tabs .nav-item .nav-link {
    color: var(--color-black);
    text-align: center;
    padding: 0 15px 18px 15px;
    border: 0;
    font-family: "Poppins";
    font-size: 16px;
   
}

.tab-product .nav-material.nav-tabs .nav-link.active,
.product-full-tab .nav-material.nav-tabs .nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.tab-product .tab-content.nav-material,
.product-full-tab .tab-content.nav-material {
    padding-top: 20px;

    min-height: 150px;

}

.tab-product .tab-content.nav-material {
    padding-bottom: 70px;
}

.tab-product .nav-material.nav-tabs .nav-link.active~.material-border,
.product-full-tab .nav-material.nav-tabs .nav-link.active~.material-border {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 1;
}

.tab-product .nav-material.nav-tabs .nav-item .material-border,
.product-full-tab .nav-material.nav-tabs .nav-item .material-border {
    border-bottom: 4px solid var(--primary-color);
    opacity: 0;
    border-radius: 8px;
}

.tab-product .nav-material.nav-tabs {
    border-bottom: 1px solid #ddd;
    border-right: 0;
    display: flex;
    flex-direction: row;
}

.collection-wrapper .product-slick>div>img {
    width: 100%;
    height: 400px;
    max-height: 400px;
    object-fit: contain;
    border-radius: 4px;
}

/* .slider .slider-wrapper>* img:not(.card-produto > * img, img.rounded-circle), */
#details>div.item-details>div>div.container>div>div:nth-child(1)>div.row.flex>div>div>div>div>div>img {
    object-fit: cover;
    height: 80px;
    border-radius: 4px;
    width: -webkit-fill-available;
    max-width: 80px;
}

.slider.slider-item>div {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (min-width: 850px){
	.product-title--desktop{
		display: none;
	}
}
