﻿/*@font-face {
    font-family: VAG Rounded;
    src: url(/fonts/fuenteLetra.otf);
}
*/

.bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.b-example-divider {
    height: 3rem;
    background-color: rgba(0, 0, 0, .1);
    border: solid rgba(0, 0, 0, .15);
    border-width: 1px 0;
    box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
}

.b-example-vr {
    flex-shrink: 0;
    width: 1.5rem;
    height: 100vh;
}

.bi {
    vertical-align: -.125em;
    fill: currentColor;
}

.nav-scroller {
    position: relative;
    z-index: 2;
    height: 2.75rem;
    overflow-y: hidden;
}

    .nav-scroller .nav {
        display: flex;
        flex-wrap: nowrap;
        padding-bottom: 1rem;
        margin-top: -1px;
        overflow-x: auto;
        text-align: center;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

header {
    display: block;
    position: relative;
    color: rgb(0, 0, 0);
}

    header::after {
        content: "";
        background: url("../img/Fondo2.jpeg");
        opacity: 0.7;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        position: absolute;
        z-index: -1;
        background-size: cover;
    }

footer {
    display: block;
    position: relative;
    color: rgb(0, 0, 0);
    /*margin-bottom: 0;*/
    padding: 0 0;
    height: 10%;
}

    footer::after {
        content: "";
        background: url("../img/Fondo2.jpeg");
        opacity: 0.7;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        position: absolute;
        background-size: cover;
        z-index: -1;
    }


.ImgLogoHeader {
    max-width: 20%;
    max-width: 20%;
    object-fit: contain;
    margin-left: 80%;
}

.bodyContainer {
    margin-top: 1%;
    margin-bottom: 1%;
    height: fit-content;
}

html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

body {
    display: flex;
    flex-direction: column;
}

.container.wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Previene el desplazamiento en el contenedor */
}

main {
    flex: 1;
    overflow-y: auto; /* Permite el desplazamiento vertical en main */
    padding: 20px; /* Ajusta el relleno según tus necesidades */
}

h2,
h3 {
    font-family: VAG Rounded;
    color: #E51F59;
}


h4 {
    font-weight: 400 !important;
}

/*.container {
    max-width: 960px;
}*/

.needs-validation {
    padding: 30px;
    border-radius: 20px;
}

/*.needs-validation {
    border-style: solid;
    border-color: #79B5AB;
    padding: 20px;
    background: white;
    border-radius: 20px;
    border-color: white;
}*/


.botonRegistro {
    text-align: center;
    align-items: center;
}

.mb-3 {
    font-size: 20px;
}

form {
    font-size: 15px;
    font-family: inherit;
}

label {
    color: black;
    font-family: "Quicksand", Sans-serif;
    font-size: 13px;
    font-weight: bold;
    line-height: 1.2em;
    letter-spacing: 0px;
}

small {
    color: #949698;
    font-family: "Quicksand", Sans-serif;
    font-size: 10px;
    font-weight: bold;
    line-height: 1.2em;
    letter-spacing: 0px;
}

input,
button,
select,
optgroup,
textarea {
    font-family: "Roboto", sans-serif !important;
    font-size: 13px !important;
}


.needs-validation .form-control,
.needs-validation .form-select {
    border-color: #79B5AB;
}

.form-control:disabled, .form-control[readonly] {
    background-color: #ffffff;
    opacity: 1;
}

.form-check {
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5em;
    margin-bottom: 0.125rem;
    text-align: initial;
}

.needs-validation1 .form-control,
.needs-validation1 .form-select {
    border-color: #79b5ab;
}

.ocultar {
    display: none;
}

.mostrar {
    width: fit-content;
    display: block;
}

.alert {
    padding: 5px;
    font-size: 15px;
}

.label {
    white-space: nowrap;
}

.required-field::before {
    content: '*';
    color: red;
    margin-right: 5px;
}

/*Estilos de barra de desplazamientto*/
::-webkit-scrollbar {
    width: 5px; /* Ancho de la barra de desplazamiento */
}

::-webkit-scrollbar-track {
    background: #f1f1f1; /* Color del fondo de la barra de desplazamiento */
}

::-webkit-scrollbar-thumb {
    background: #E51F59; /* Color del "pulgar" de la barra de desplazamiento */
    border-radius: 10px; /* Borde redondeado del "pulgar" */
}

    ::-webkit-scrollbar-thumb:hover {
        background: #79b5ab; /* Color del "pulgar" de la barra de desplazamiento al pasar el cursor sobre él */
    }
