#modal-product-quick-view {
    display: flex;
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 4;
    top: 0;
    left: 0;
    box-shadow: 0px 0px 80px rgba(47, 54, 56, 0.09);
    overflow-y: auto;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
}
.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 > .details-container {
    border-radius: 10px;
    padding: 48px;
    background-color: #fff;
    margin-top: -100px;
    transition: 0.5s all ease;
    max-width: 800px;
    box-sizing: border-box;
}

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

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

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

@media screen and (max-width: 750px) {
    #modal-product-quick-view {
        align-items: flex-start;
    }

    #modal-product-quick-view.active > .container {
        margin-top: 30px;
        margin-bottom: 30px;
    }
}

.tab-product .nav-material.nav-tabs {
    border-bottom: 1px 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 20px 15px;
    border: 0;
    font-weight: 600;
}
.tab-product .nav-material.nav-tabs .nav-link.active,
.product-full-tab .nav-material.nav-tabs .nav-link.active {
    color: var(--color-pink);
}

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

.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: 2px solid var(--color-pink);
    opacity: 0;
}

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