.contenedor_padre_cupones{
    padding: 0px 20px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}
.contenedor_cupones_control{
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    max-width: 600px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
        box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
}
.contenedor_titulos{
    background-color: #1a73e8;
    border-bottom: 5px solid #4696ff;
    display: flex;
    flex-direction: column;
    padding: 30px 15px;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.titulo_contenedor_cupones{
    font-family: 'Rubik';
    color: #fff;
    font-size: 24px;
    margin-bottom: 14px;
    display: flex;
}
.titulo_contenedor_cupones img{
    width: 25px;
    height: 25px;
    margin-right: 5px;
}
.subtitulo_contenedor_cupones{
    font-family: 'Rubik';
    color: #fff;
}
.contenedor_secundario{
    width: 100%;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.contenedor_input_documento{
    display: flex;
    align-items: center;
    justify-content: center;
}
.texto_contenedor_cupones{
    font-family: 'Rubik';
    margin-right: 5px;
}
.input_documento_cupon{
    background-color: #fafafa;
    border: 1px solid #ebebeb;
    padding: 8px 10px !important;
    outline: none;
    border-radius: 5px;
    cursor: pointer;
}
.input_documento_cupon:focus{
    border: 1px solid #1a73e8;
}
.boton_consultar_cupones{
    font-family: 'Rubik';
    cursor: pointer;
    margin-top: 20px;
    border-radius: 4px;
    color: #fff;
    background-color: #1a73e8;
    border: none;
    padding: 10px 25px;
}
.boton_consultar_cupones:hover{
    opacity: 80%;
}
@media screen and (max-width:500px){
    .contenedor_input_documento{
        flex-direction: column;
    }
    .texto_contenedor_cupones{
        margin-right: 0px;
        margin-bottom: 5px;
    }
}