html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px; /* margin */
}

/*
footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px;
}
*/

/************** Fondos **************/
.gradienteFondo {
    background: rgb(250,250,250);
    background: linear-gradient(90deg, rgba(250,250,250,1) 58%, rgba(196,215,255,1) 84%, rgba(119,162,255,1) 100%);
}

.fondoBlanco {
    background-color: white;
}

.fondoBlanco02 {
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: #0025B8;
    background-color: white;
}

.divEspecialTitulo01 {
    background: rgb(250,250,250);
    background: linear-gradient(90deg, rgba(185,214,255,1) 23%, rgba(235,243,255,1) 64%, rgba(250,250,250,1) 100%);
}

.divSeccionEspecial1 {
    border-radius: 10px;
    background: rgb(225,231,255);
    background: linear-gradient(90deg, rgba(225,231,255,1) 0%, rgba(225,231,255,1) 66%, rgba(124,165,255,1) 100%);
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2); /* Sombra ligera */
}

.divContratoUsuario {
    border-radius: 20px;
    border-style: solid;
    border-width: 3px;
    border-color: #0025B8;
    background: rgb(250,250,250);
    background: linear-gradient(90deg, rgba(250,250,250,1) 31%, rgba(255,255,196,1) 64%, rgba(255,212,119,1) 100%);
}

.divContratoUsuarioBaja {
    border-radius: 20px;
    border-style: solid;
    border-width: 3px;
    border-color: #566573;
    background: rgb(250,250,250);
    background: linear-gradient(90deg, rgba(250,250,250,1) 31%, rgba(230,230,230,1) 64%, rgba(210,210,210,1) 100%);
}

.divOperActivaUsuario {
    border-radius: 20px;
    border-style: solid;
    border-width: 3px;
    border-color: #0025B8;
    background: rgb(225,231,255);
    background: linear-gradient(90deg, rgba(225,231,255,1) 0%, rgba(225,231,255,1) 66%, rgba(124,165,255,1) 100%);
}

.divOperActivaUsuarioRed {
    border-radius: 20px;
    border-style: solid;
    border-width: 3px;
    border-color: red;
    background: rgb(225,231,255);
    background: linear-gradient(90deg, rgba(225,231,255,1) 0%, rgba(225,231,255,1) 66%, rgba(124,165,255,1) 100%);
}

.colorMyBlueBorder01 {
    border-color: #0025B8;
}

.remove-px-2 {
    margin: 0 -1.25rem;
}

.seccionEspecial1Separador01 {
    border-bottom: solid 3px rgb(250,250,250);
    margin: 0 -1rem;
}

.operacionUsuarioSeparador01 {
    border-bottom: solid 1px #0025B8;
}

.operacionUsuarioSeparadorAlerta01 {
    border-bottom: solid 1px red;
}

/************** Para Spinners, centrado y con fondo translucido ***************/
#myspinnerwrap {
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    top: 0;
    background-color: rgba(255,255,255,0.5);
    z-index: 1031; /* High z-index so it is on top of the page */
}

.myspinner {
    display: flex;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -5em;
    margin-left: -5em;
    width: 10rem;
    height: 10rem;
}

/************** standardTable1 table ***************/
table.standardTable1 {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    border-collapse: collapse !important;
}

    table.standardTable1 th {
        background-color: #3377ff;
        color: white;
        padding: 4px !important;
        border-bottom: 2px solid #ccc;
    }
    
    table.standardTable1 td {
        padding: 4px !important;
        border-bottom: 2px solid #ccc;        
    }

    table.standardTable1 tr:hover {
        background-color: #b3ccff;
    }

/************** standardTable1Error table ***************/
table.standardTable1Error {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    border-collapse: collapse !important;
}

    table.standardTable1Error th {
        background-color: #ff0000;
        color: white;
        padding: 4px !important;
        border-bottom: 2px solid #ccc;
    }

    table.standardTable1Error td {
        padding: 4px !important;
        border-bottom: 2px solid #ccc;
    }

    table.standardTable1Error tr:hover {
        background-color: #b3ccff;
    }

/************** Subtable **************/
table.subTable1 {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    border-collapse: collapse !important;
}

    table.subTable1 thead th {
        background-color: #a490ff !important;
        color: white !important;
        font-weight: normal !important;
        border-bottom: 1px solid #dee2e6 !important;
    }

    table.subTable1 td {
        background-color: #f0f0ff !important;
    }

/************** Animaciones **************/
.anim1, .anim2 {
    animation: blinking 1.2s infinite;
}

@keyframes blinking {
    0% { opacity: 0 }
    10% { opacity: 0.1 }
    30% { opacity: 0.3 }
    60% { opacity: 0.6 }
    90% { opacity: 0.9 }
    100% { opacity: 1 }
}

/************** Passwords **************/
.password-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.password-wrapper input {
    padding-right: 2.5rem; /* Espacio para el icono */
}

.password-wrapper .toggle-password {
    position: absolute;
    top: 50%;
    right: 0.75rem; /* Ajustar distancia del borde derecho */
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 1.0rem;
    color: #6c757d; /* Gris para el icono */
}

.password-wrapper .toggle-password:active {
    color: #343a40; /* Oscurecer el icono al presionar */
}

/************** Botones ***************/
.roundedUser {
    border-radius: 15px;
}

.width150 {
    width: 150px;
}

.width200 {
    width: 200px;
}

.width250 {
    width: 250px;
}

.width300 {
    width: 300px;
}

.width350 {
    width: 350px;
}

.verySmallButton01 {
    font-size: 0.8em;
    padding: 0 0.5em;
}

/************** Toggles ***************/
.toggle.rounded1,
.toggle-on.rounded1,
.toggle-off.rounded1,
.toggle-handle {
    border-radius: 20rem;
}

/************** Imágenes **************/
.roundedImg {
    border-radius: 15px;
}

/************** Enlaces **************/
.enlaceSimpleBlack {
    text-decoration: none;
    color: black;
}

.enlaceSimpleBlack:hover {
        color: black;
}

/************** Otros ***************/
.alertZoneUser {
    border-radius: 20px;
    border-style: solid;
    border-width: 3px;
    border-color: red;
}

/************** Textos ***************/
.boldBlack10 {
    font-size: 10px;
    font-weight: bold;
}
.boldBlue10 {
    font-size: 10px;
    font-weight: bold;
    color: blue;
}
.boldGreen10 {
    font-size: 10px;
    font-weight: bold;
    color: green;
}
.boldRed10 {
    font-size: 10px;
    font-weight: bold;
    color: red;
}

.boldBlack12 {
    font-size: 12px;
    font-weight: bold;
}

.boldBlue12 {
    font-size: 12px;
    font-weight: bold;
    color: blue;
}
.boldGreen12 {
    font-size: 12px;
    font-weight: bold;
    color: green;
}
.boldRed12 {
    font-size: 12px;
    font-weight: bold;
    color: red;
}

.boldBlack14 {
    font-size: 14px;
    font-weight: bold;
    color: black;
}
.boldBlue14 {
    font-size: 14px;
    font-weight: bold;
    color: blue;
}
.boldGreen14 {
    font-size: 14px;
    font-weight: bold;
    color: green;
}
.boldRed14 {
    font-size: 14px;
    font-weight: bold;
    color: red;
}

.boldBlack16 {
    font-size: 16px;
    font-weight: bold;
    color: black;
}
.boldBlue16 {
    font-size: 16px;
    font-weight: bold;
    color: blue;
}
.boldGreen16 {
    font-size: 16px;
    font-weight: bold;
    color: green;
}
.boldRed16 {
    font-size: 16px;
    font-weight: bold;
    color: red;
}
.boldWhite16 {
    font-size: 16px;
    font-weight: bold;
    color: white;
}

.boldBlack17 {
    font-size: 17px;
    font-weight: bold;
    color: black;
}
.boldBlue17 {
    font-size: 17px;
    font-weight: bold;
    color: blue;
}
.boldGreen17 {
    font-size: 17px;
    font-weight: bold;
    color: green;
}
.boldRed17 {
    font-size: 17px;
    font-weight: bold;
    color: red;
}
.boldWhite17 {
    font-size: 17px;
    font-weight: bold;
    color: white;
}

.boldBlack18 {
    font-size: 18px;
    font-weight: bold;
}
.boldBlue18 {
    font-size: 18px;
    font-weight: bold;
    color: blue;
}
.boldGreen18 {
    font-size: 18px;
    font-weight: bold;
    color: green;
}
.boldRed18 {
    font-size: 18px;
    font-weight: bold;
    color: red;
}
.boldWhite18 {
    font-size: 18px;
    font-weight: bold;
    color: white;
}

.boldBlack19 {
    font-size: 19px;
    font-weight: bold;
}
.boldBlue19 {
    font-size: 19px;
    font-weight: bold;
    color: blue;
}
.boldGreen19 {
    font-size: 19px;
    font-weight: bold;
    color: green;
}
.boldRed19 {
    font-size: 19px;
    font-weight: bold;
    color: red;
}
.boldWhite19 {
    font-size: 19px;
    font-weight: bold;
    color: white;
}

.boldBlack20 {
    font-size: 20px;
    font-weight: bold;
}
.boldBlue20 {
    font-size: 20px;
    font-weight: bold;
    color: blue;
}
.boldGreen20 {
    font-size: 20px;
    font-weight: bold;
    color: green;
}
.boldRed20 {
    font-size: 20px;
    font-weight: bold;
    color: red;
}
.boldWhite20 {
    font-size: 20px;
    font-weight: bold;
    color: white;
}

.boldBlack22 {
    font-size: 22px;
    font-weight: bold;
}
.boldBlue22 {
    font-size: 22px;
    font-weight: bold;
    color: blue;
}
.boldGreen22 {
    font-size: 22px;
    font-weight: bold;
    color: green;
}
.boldRed22 {
    font-size: 22px;
    font-weight: bold;
    color: red;
}
.boldWhite22 {
    font-size: 22px;
    font-weight: bold;
    color: white;
}

.boldBlack24 {
    font-size: 24px;
    font-weight: bold;
}
.boldBlue24 {
    font-size: 24px;
    font-weight: bold;
    color: blue;
}
.boldGreen24 {
    font-size: 24px;
    font-weight: bold;
    color: green;
}
.boldRed24 {
    font-size: 24px;
    font-weight: bold;
    color: red;
}
.boldWhite24 {
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.boldBlack26 {
    font-size: 26px;
    font-weight: bold;
}
.boldBlue26 {
    font-size: 26px;
    font-weight: bold;
    color: blue;
}
.boldGreen26 {
    font-size: 26px;
    font-weight: bold;
    color: green;
}
.boldRed26 {
    font-size: 26px;
    font-weight: bold;
    color: red;
}
.boldWhite26 {
    font-size: 26px;
    font-weight: bold;
    color: white;
}

.boldBlack28 {
    font-size: 28px;
    font-weight: bold;
}
.boldBlue28 {
    font-size: 28px;
    font-weight: bold;
    color: blue;
}

.boldBlack30 {
    font-size: 30px;
    font-weight: bold;
}
.boldBlue30 {
    font-size: 30px;
    font-weight: bold;
    color: blue;
}

/************** Logos y fotos ***************/
.prodimarLogo01 {
    width: 280px;
    height: 75px;
}

.puertoFoto img {
    width: 100%;
}

.iconoOpciones {
    width: auto;
    height: 42px;
}

/************** Iconos para expandir-contraer Collapsables ***************/
a[aria-expanded=true] .fa-chevron-down {
    display: none;
}

a[aria-expanded=false] .fa-chevron-up {
    display: none;
}