.modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
}

.modal-content {
    background-color: transparent;
    border-radius: 0.5rem;
    left: 50%;    
    position: absolute;
    padding: 1rem 1.5rem;
    transform: translate(-50%, -50%);
    top: 50%;    
    width: auto;       
}

.show-modal {
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}

.modal__fotos_principal {
    border-radius: 10px;
    cursor: pointer;
    margin-bottom: 1rem;    
    width: 30rem;
}

.modal__fotos_secundarias {        
    padding: 0 6rem;
    display: flex;
    justify-content: space-between;
}

.modal__fotos_secundaria {
    cursor: pointer;      
    height: 5rem;
    width: 5rem;
}

.modal__fotos_container {
    align-items: center;    
    display: flex;
    clear: right;
    flex-direction: row;
}

.modal__fotos_seta {
    align-items: center;
    background-color: white;
    border-radius: 100%;
    cursor: pointer;
    display: flex;    
    height: 3rem;    
    justify-content: center;
    position: relative;    
    width: 3rem;    
}

.modal__fotos_seta--direita {
    left: -25px;
}

.modal__fotos_seta--esquerda {
    right: -25px;
}

.modal__fotos_secundaria img {
    border-radius: 10px;
    height: 100%;
    width: 100%;    
}

.modal__fechar {
    cursor: pointer;
    float: right;
    left: -45px;
    height: 1.2rem;
    margin-bottom: 1rem;
    position: relative;
}

@media screen and (max-width: 900px) {
    .modal-content {
        display: none;
    }    

    .show-modal {
        display: none;        
    }
}        

