/*ESTILOS POP DE RESPUESTA */
.contenedor-pop{
    position: fixed;  
    z-index: 99;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background-color: rgba(32,32,32,.2);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .7s ease-out;
    cursor: no-drop;
}
.oculto-pop{
    display: none !important;
}
.con-int-pop{
    position: relative;
    width: 35%;
    height: auto;
    background-color: #fff;    
    border-radius: 7px;
    text-align: center;
    -webkit-box-shadow: 2px 2px 15px 5px rgba(32,32,32,.6);
    -moz-box-shadow: 2px 2px 15px 5px rgba(32,32,32,.6);
    box-shadow: 2px 2px 15px 5px rgba(32,32,32,.6);
}
.cabecera-pop{
    width: 100%;    
    position: relative;
    background-color: rgba(2,97,167);    
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 30px !important;
    box-sizing: border-box;
    border-radius: 7px 7px 0px 0px;
}
.cabecera-pop>h5{
    font-family: 'Quicksand', sans-serif;
    font-size: 15px;
    color: #fff;
    background-color: rgb(0,169,157,1);
    width: 35px;
    height: 35px;   
    border-radius: 50%;
    border: 4px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cabecera-pop>p{
    font-family: 'Quicksand', sans-serif;
    font-size: 25px;
    color: #fff;
}
.cabecera-pop>div{
    font-family: 'Quicksand', sans-serif;
    font-size: 25px;
    color: #fff;
    font-weight: bold;
}
.img-principal-pop{
    width: 100%;
    object-fit: contain;
}
.respuesta-pop{
    width: 100%;
    padding: 7px 20px;
    font-family: 'Quicksand', sans-serif;
    color: #323232;    
    font-size: 17px;      
    text-align: justify;
    box-sizing: border-box;
}
@media (max-width: 800px){
    .con-int-pop{
        width: 80%;  
    }
}