/* FOTOS E VÍDEOS */

.media-wrapper * {
    transform: scale(1);
    transition: 300ms all;
}

.media-wrapper *:hover {
    transform: scale(1.03);
}


/* MODAL */

.modal-header .btn-close {
    background-size: auto;
    width: 0.5em;
}

.modal-content {
    background-color: transparent;
}

.modal-footer {
    /*background-color: rgba(0,0,0,0.3);*/
    padding-top: 0;
    padding-bottom: 0;
    border: none;
}


/* CAROUSEL DO MODAL */

.owl-next {
    right: 15px;
    position: absolute;
    top: 45%;
    color: #fff !important;
    height: 55px;
    width: 55px;
    background: rgba(255, 255, 255, 0.2) !important;
    opacity: 1;
    border-radius: 30px;
    transition: all 0.3s ease;
    &:hover {
        background-color: var(--gold) !important;
    }
}

.owl-prev {
    position: absolute;
    color: #fff !important;
    top: 45%;
    left: 0;
    height: 55px;
    width: 55px;
    background: rgba(255, 255, 255, 0.2) !important;
    opacity: 1;
    border-radius: 30px;
    transition: all 0.3s ease;
    &:hover {
        background-color: var(--gold) !important;
    }
}

.owl-nav {
    margin: 0 !important;
}

.owl-dots-container {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    background-color: rgba(0,0,0,0.3);
    width: 100%;
}

.owl-dots {
    margin: 8px 0 !important;
}

.owl-dot {
    border: none;
    background-color: transparent;
}