/*ESTILOS DE POP*/
/*ESTILOS POP DE RESPUESTA */
#contenedor-pop-compra{
    position: fixed;
    z-index: 101;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    padding-top: 10px;
    background-color: rgba(32,32,32,.8);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .7s ease-out;
}
.oculto-pop{
    display: none !important;
}
.cerrar-pop-boton{
    position: absolute;
    top: 5px;
    right: 5px;
    width: 25px;
    height: 25px;
    background-color: rgba(250,12,29,1);
    padding: 15px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 18px !important;
    font-weight: bold;
    cursor: pointer;
    transition: all .5s ease-out;
}
.cerrar-pop-boton:hover{
    transform: scale(1.3) rotate( 360deg );
    background-color: rgba(250,12,29,.8);  
}
.con-int-pop{
    position: relative;
    width: 40%;
    /* margin-top: 50px; */
    height: auto;
    max-height: 95%;
    background-color: #fff;
    padding: 20px;
    border-radius: 7px;
    text-align: center;
    overflow-y: scroll;
    /* overflow: hidden; */
    -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);
}
.imagen-pop{
    width: 70%;
    height: 150px;
    object-fit: contain;
    object-position: center;
}
.respuesta-pop{
    width: 100%;
    padding: 7px 0px;   
    margin-bottom: 10px;
    font-family: 'Principal',sans-serif;
    text-align: center;
    font-size: 18px;
    color: rgba(250,12,29,.8) !important;
    font-weight: bold;
}
.con-int-pop h5{
    font-family: 'Titulo',acumin,sans-serif;
    color: #202020;
    font-size: 17px; 
    margin: 5px auto;
    color: rgba(250,12,29,.8);
    font-weight: initial;
}
.con-int-pop p{
    width: 100%;
    text-align: center;
    margin: 10px auto 10px auto;
    font-family: 'Principal',sans-serif;
    color: rgba(32,32,32,1);
    font-size: 15px;
}
.con-int-pop p>a{
    width: 100%;
    font-family: 'Principal',sans-serif;
    color: rgba(250,12,29,.9);
    font-size: 16px;
    font-weight: bold;
}
.con-int-pop p>a:hover{
    color: rgba(250,12,29,1);
}
#formulario-compra{
    width: 100%;
    text-align: left;
}
#cont-validar-compra{
    margin: 5px 0px;
}
#formulario-compra label, #cont-validar-compra label{
    width: 100%;
    font-family: 'Principal',acumin,sans-serif;
    color: #202020;
    font-size: 15px; 
    margin: 2px 0;
    color: rgba(104,161,36,1);    
    font-weight: bold;
}
#formulario-compra input, #formulario-compra select, #cont-validar-compra input, #cont-validar-compra select{
    width: 100%;
    padding: 5px;
    margin: 5px;
    border-radius: 7px;
    border: 1px solid #676767;
    font-family: 'Principal',sans-serif;
    color: rgba(32,32,32,1);
    font-size: 14px;
} 
.pagar-boton{
    color: rgba(255,255,255,1) !important;
    background-color: rgba(250,12,29,.8) !important;
    text-align: center !important;
    margin: 20px auto 10px auto !important;
    padding: 10px 25px !important;
    border: none !important;
    display: block;
    box-sizing: border-box;    
    cursor: pointer;
    font-weight: bold;    
    transition: all 0.5s ease-out;
    letter-spacing: var(--espaciado-titulos);
    font-size: 16px !important;
    max-width: 160px;    
}
input:invalid {
  border: 2px solid red;
}
@media (max-width: 800px){
    .con-int-pop{
        width: 80%;  
    }
}