/* Estilos generales */
body {
    margin: 0;
    padding: 0;
    width: 100%;
}

/* Estilos para el proceso */
.process-steps li {
    pointer-events: none;
}

/* Estilos para inputs */
input {
    padding: 0.375rem 2.25rem 0.375rem 0.75rem;
    border-radius: 0.25rem;
}

/* Estilos para la barra de notificación */
#hellobar-bar {
    font-family: "Open Sans", sans-serif;
    width: 100%;
    margin: 0;
    display: table;
    font-weight: 400;
    padding: .33em .5em;
    -webkit-font-smoothing: antialiased;
    color: #5c5e60;
    position: fixed;
    background-color: #ffe5c9;
    box-shadow: 0 1px 3px 2px rgba(0,0,0,0.15);
}

#hellobar-bar.regular {
    height: 300px;
    font-size: 14px;
    padding: .2em .5em;
}

.hb-content-wrapper {
    text-align: center;
    position: relative;
    display: table-cell;
    vertical-align: middle;
}

.hb-content-wrapper p {
    margin-top: 0;
    margin-bottom: 0;
}

.hb-text-wrapper {
    margin-right: .67em;
    display: inline-block;
    line-height: 1.3;
}

.hb-text-wrapper .hb-headline-text {
    font-size: 1em;
    display: inline-block;
    vertical-align: middle;
}

#hellobar-bar .hb-cta {
    display: inline-block;
    vertical-align: middle;
    margin: 5px 0;
    color: #ffe5c9;
    background-color: #22af73;
    border-color: #22af73;
}

.hb-cta-button {
    opacity: 1;
    color: #fff;
    display: block;
    cursor: pointer;
    line-height: 1.5;
    max-width: 22.5em;
    text-align: center;
    position: relative;
    border-radius: 3px;
    white-space: nowrap;
    margin: 1.75em auto 0;
    text-decoration: none;
    padding: 0;
    overflow: hidden;
    top: 100px;
}

.hb-cta-button .hb-text-holder {
    border-radius: inherit;
    padding: 5px 15px;
}

.hb-close-wrapper {
    display: table-cell;
    width: 1.6em;
}

.hb-close-wrapper .icon-close {
    font-size: 14px;
    top: 15px;
    right: 25px;
    width: 15px;
    height: 15px;
    opacity: .3;
    color: #000;
    cursor: pointer;
    position: absolute;
    text-align: center;
    line-height: 15px;
    z-index: 1000;
    text-decoration: none;
}

/* Estilos para el contenedor responsive */
#contenedor {
    display: flex;
}

#seccion {
    flex: 1;
}

/* Estilos para mostrar/ocultar contenido */
.read-more-state {
    display: none;
}

.read-more-target {
    opacity: 0;
    max-height: 0;
    font-size: 0;
    transition: .25s ease;
}

.read-more-state:checked ~ .read-more-wrap .read-more-target {
    opacity: 1;
    font-size: inherit;
    max-height: 999em;
}

.read-more-state ~ .read-more-trigger:before {
    content: 'Toggle';
}

.read-more-state:checked ~ .read-more-trigger:before {
    content: 'Show Less';
}

.read-more-trigger {
    cursor: pointer;
    display: inline-block;
    padding: 0 .5em;
    color: #666;
    font-size: .9em;
    line-height: 2;
    border: 1px solid #ddd;
    border-radius: .25em;
}

/* Media queries */
@media only screen and (max-width: 1490px) {
    #hellobar-bar {
        position: -webkit-sticky;
        position: sticky;
    }
}

@media screen and (max-width: 900px) {
    .contenedor {
        flex-direction: column;
        max-width: 50%;
    }
    
    .col-5 {
        width: 100%;
    }
    
    #seccion {
        flex: none;
    }
    
    #movil {
        bottom: 40px;
    }
}

/* Estilos para campos inválidos */
.is-invalid {
    border-color: #dc3545 !important;
}

.invalid-feedback {
    display: none;
    color: #dc3545;
    font-size: 0.875em;
}

/* Estilo para el botón deshabilitado */
button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Estilo para las casillas de verificación obligatorias no marcadas */
.obligatorio.checkbox-style:not(:checked) + label {
    color: #dc3545;
}