.carousel.slide {
     display: flex; 
     border: 1px solid var(--header-background-color);
     box-sizing: content-box
}

#zoomBackdrop{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.75);
    z-index: 999998;
}

.carousel.slide.zoomed{
    overflow: visible !important;
}

.zoomClose{
    position: absolute;
    top: -14px;
    right: -14px;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: rgba(0,0,0,.75);
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    line-height: 32px;
    text-align: center;
    cursor: pointer;
    z-index: 1000002;
    padding: 0;
    transition: .2s;
}

.zoomClose:hover{
    background: #d9534f;
    transform: scale(1.1);
}

.carousel.slide.zoomed .carousel-control-prev,
.carousel.slide.zoomed .carousel-control-next{
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 52px;
    opacity: 1 !important;
    z-index: 1000001;
}

.carousel.slide.zoomed .carousel-control-prev-icon,
.carousel.slide.zoomed .carousel-control-next-icon{
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(0,0,0,.65);
    background-size: 55%;
    box-shadow: 0 0 10px rgba(255,255,255,.7);
}

.carousel.slide.zoomed .carousel-control-prev:hover .carousel-control-prev-icon,
.carousel.slide.zoomed .carousel-control-next:hover .carousel-control-next-icon{
    background-color: rgba(0,0,0,.9);
    transform: scale(1.1);
}

.carousel.slide:not(.zoomed) .carousel-control-prev,
.carousel.slide:not(.zoomed) .carousel-control-next{
    display: none !important;
}

.carousel.slide:not(:empty){
    position: relative;
    cursor: pointer;
}

.carousel.slide:not(.zoomed):not(:empty)::after{
    content: "Ver imagens";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.45);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    opacity: 0;
    transition: opacity .2s;
    pointer-events: none;
    text-shadow: 0 1px 3px rgba(0,0,0,.8);
}

.carousel.slide:not(.zoomed):not(:empty):hover::after{
    opacity: 1;
}