/* Pop up */


body.popup_open_no_scroll {
    overflow: hidden;
}
.contenedor_popup {
    display: none;
}

.contenedor_popup.activo {
    display: block;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    overflow: hidden;    
    background-color: rgba(0, 0, 0, 0.7);
}

.contenedor_popup .popup {
    position: absolute;
    max-height: 650px;
    height: 80vh;
    max-width: 900px !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    overflow:auto;
    padding: 40px 20px !important;
    background-color: #ffffff;
}

.popup {
    scrollbar-width: thin;
    scrollbar-color: #000000 transparent;
}

.popup::-webkit-scrollbar {
    width: 16px;
}

.popup::-webkit-scrollbar-track {
    background: transparent;
}

.popup::-webkit-scrollbar-thumb {
    background-color: #ffffff;
    border-radius: 10px;
    border: 3px solid #000000;
}


.btn_cerrar_popup{
    position: absolute;
    top: -25px;
    right: 5px;
    z-index: 999;
}

.btn_cerrar_popup p {
    font-size: 0;
}

.btn_cerrar_popup p::before {
    content: url(../images/close.svg);
}

.btn_cerrar_popup p:hover{
    cursor: pointer;
    opacity: 0.8;
}


#avanzado img{
    aspect-ratio: 1.3;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

#visiones img{
    aspect-ratio: 1.8;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;

}
#visiones .btn_open_modal{
    cursor: pointer;
    margin-bottom: 30px;
}

#visiones .btn_open_modal::before{
    content: " ";
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #000000;
    opacity: 0.3;
    z-index: 10;
    border-radius: 5px;
}

#visiones .btn_open_modal::after{
    content: url(../images/play.svg);
    content: url(../images/play.svg);
    position: absolute;
    top: calc(50% - 37px);
    /* width: 73px; */
    /* height: 73px; */
    left: calc(50% - 37px);
    z-index: 20;
}