@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600');

:root {
    --barras: #343739;
    --texto: #fff;
    --contrastante: #99cbff;
    --fondoNav: #343739;
    --fondoNavHover: #545759;
    --camposFondo: #e6e6e6;
}

*,
*:before,
*:after {
    margin: 0;
    padding: 0;
    outline: 0;
    border: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
}

body {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    color: #777;
    text-align: center;
    font-size: 12px;
    font-family: 'Open Sans', sans-serif;
    overflow: scroll;
    min-height: 100%;
    max-height: 100%;
    height: 100vh;
    background-color: #e2e2e2;
}

small {
    font-size: 10px;
}

header {
    height: 60px;
}

main {
    display: flex;
    position: relative;
    min-width: 320px;
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
    padding: 2px 12px;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: wrap;
    flex-grow: 1 !important;
    flex-shrink: 0 !important;
}

header,
main,
footer {
    flex: 0;
}

footer {
    margin: 100px auto 0 auto;
    width: 100%;
    height: max-content;
    background: #343739;
    display: flex;
    flex-flow: row;
    justify-content: center;
    font-size: 10px;
    color: #fff;
    line-height: 24px;
    text-align: center;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 20px 0;
}

footer a {
    color: #fff;
    text-decoration: none;
    flex: 1;
}

h1,
h2,
h3 {
    font-weight: 300;
}

.encabezado_seccion {
    margin: 20px auto;
    font-size: 1.8rem;
}

.logOfic {
    position: relative;
    margin: 20px auto 30px auto;
    max-width: 180px;
}

.sombra-magica {
    box-shadow: 0 40px 35px -10px #9c9c9c5c;
}

.login_f {
    position: relative;
    display: flex;
    align-items: center;
    flex-flow: column;
    margin: 0 auto;
    max-width: 340px;
    border: 10px solid transparent;
    text-align: center;
    justify-items: center;
}

.login_f input[type=text],
.login_f input[type=password],
.login_f input[type=submit] {
    margin-bottom: 6px;
    border-radius: 50px;
    line-height: 50px;
}

.login_f input[type=text],
.login_f input[type=password] {
    width: 260px;
    border-left: 50px solid transparent;
    color: #545759;
}

.login_f input[type=submit] {
    width: 321px;
    height: 50px;
    background: #10395e;
    color: #e7e8e9;
    cursor: pointer;
}

.correo {
    background: #e6e6e6;
    background-image: url(../imagenes/sobresito.png);
    background-position: -30px 16px;
    background-repeat: no-repeat;
}

.goback_link {
    display: block;
    width: 200px;
    background-color: #75787b;
    color: #fff;
    padding: 10px;
    border-radius: 4px;
    position: relative;
    margin: auto;
    box-shadow: 0 10px 20px -15px #000;
    cursor: pointer;
}

.llavex {
    background: #e6e6e6;
    background-image: url(../imagenes/llavesita.png);
    background-position: -30px 16px;
    background-repeat: no-repeat;
}

/********** Responsive menu **********/

header {
    display: flex;
    position: relative;
    width: 100%;
    height: 60px;
    background-color: var(--barras);
    z-index: 1000;
    user-select: none;
    flex: 0 auto;
    flex-direction: row;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: left;
}

#menuPrincipal {
    position: relative;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 60px;
    background-color: var(--barras);
    z-index: 1000;
    user-select: none;
    flex-wrap: wrap;
    flex-direction: row;
    color: #fff;
}

.toggleIcon {
    display: none;
    font-size: 2.2rem;
    color: var(--texto);
    margin-left: 10px;
    cursor: pointer;
    color: #ffffff;
}

input,
select {
    background-color: var(--camposFondo);
}

.menu-toggle {
    display: none;
}

nav {
    position: relative;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    height: 70px;
    flex-direction: row;
    z-index: 1;
    background-color: #343739;
    gap: 20px;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    position: relative;
}

a.boton_menu {
    text-decoration: none;
    color: var(--contrastante);
    padding: 10px;
    margin: 0 5px;
    transition: background-color 0.3s;
    background-color: transparent;
    -webkit-tap-highlight-color: transparent;
    color: #ffffff;
}

nav ul li a:hover {
    background-color: var(--fondoNavHover);
    -webkit-tap-highlight-color: transparent;
}

nav ul li .active {
    color: #99cbff;
}

.homeIcon {
    display: none;
}

@media (max-width: 824px) {
    #menuPrincipal {
        height: 70px;
    }

    .toggleIcon {
        display: block;
        -webkit-tap-highlight-color: transparent;
    }

    nav {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        background-color: var(--barras) !important;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        height: 93vh;
        background-color: var(--fondoNav);
    }

    nav a.boton_menu {
        border-bottom: 1px solid #282828;
        box-shadow: 0 1px 0 #44494c;
        width: 100%;
        padding-bottom: 29px !important;
    }

    .menu-toggle:checked+nav {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 20px;
        padding: 20px;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
        height: 100%;
    }

    nav ul li {
        width: 100%;
        height: 60px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
    }

    nav ul li a {
        width: 100%;
        box-sizing: border-box;
        -webkit-tap-highlight-color: transparent;
    }

    .homeIcon {
        display: block;
        position: absolute;
        width: 50px;
        top: 4px;
        right: 44%;
        outline: none;
        -webkit-tap-highlight-color: transparent;
    }

    .homeIcon:hover,
    .homeIcon:focus {
        outline: none;
        border-radius: 20px;
        box-shadow: 0 0 10px 0 rgba(132, 171, 233, 0.7);
    }
}

/**************** EOF ***************/

.forma2 {
    position: relative;
    display: flex;
    flex-flow: column;
    margin: 0 auto;
    width: 340px;
}

.forma2 input,
.forma2 select {
    margin-bottom: 8px;
    height: 40px;
    border: 1px solid #eee;
    border-radius: 4px;
    background: #fefefe;
}

.forma2 input[type=text],
.forma2 input[type=email] {
    padding: 0 10px;
    width: 320px;
}

.forma2 input[type=submit] {
    width: 342px;
    background: #39a7cf;
    color: #fff;
    cursor: pointer;
}

input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.cajon-texto-top {
    flex: 1;
    margin: 0 auto;
    width: 320px;
    max-height: 160px;
}

.atencion {
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 24px;
    background: #cc9827;
    color: #fff;
    text-align: center;
    font-weight: 600;
    line-height: 24px;
    -webkit-transform: translate(190px, -42px);
    transform: translate(190px, -42px);
}


/*.selector1{
  position:relative;display:flex;justify-content:space-around;margin:100px auto;width:1000px;height:111px;background:#eee;
}*/

.selector1 {
    position: relative;
    display: flex;
    flex-flow: wrap;
    justify-content: space-evenly;
    margin: 20px auto;
    padding: 2px 3px;
    border: 10px solid transparent;
    min-width: 360px;
    max-width: 640px;
    width: 100%;
    height: auto;
    background: #eee;
}


/*.selector1 a, .selector1_1 a{display:flex;align-items:center;flex:1;justify-content:center;border-radius:4px;background:#4c4c4c;color:#fff;text-decoration:none;font-size:20px;-webkit-transition:-webkit-background 256ms ease;
transition:background 256ms ease;}*/

.selector1 a,
.selector1_1 a {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    justify-content: center;
    border-radius: 4px;
    background: #4c4c4c;
    color: #fff;
    min-width: 200px;
    margin: 2px;
    height: 100px;
    text-decoration: none;
    font-size: 14px;
    transition: background 256ms ease;
}

.selector1 a:not(:last-child) {
    border-right: 1px solid #eee;
}

.selector1 a:hover,
.selector1_1 a:hover {
    background: #777;
}

.selectorV {
    position: relative;
    display: flex;
    flex-flow: column;
    margin: 50px auto;
    width: 340px;
    background: #eee;
}

.selectorV input[type=submit] {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
    padding: 57px 0;
    width: 100%;
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    cursor: pointer;
    -webkit-transition: -webkit-background 256ms ease;
    transition: background 256ms ease;
}

.selectorV #almn_btn {
    background: #10395e;
    box-shadow: 0 -29px 75px #031525 inset
}

.selectorV #almn_btn:hover {
    background: #516281;
}

.selectorV #tchr_btn {
    background: #9b3422;
    background: #9b3422;
    box-shadow: 0 -29px 75px #4a1708 inset;
}

.selectorV #tchr_btn:hover {
    background: #824d52;
}

table {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 0 auto;
    min-width: 360px;
    max-width: 720px;
    width: 100%;
    border-collapse: collapse;
    flex-direction: column;
    flex-wrap: wrap;
}

table tr {
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: #f6f6f6;
}

table th {
    padding: 10px;
    background: #545759;
    color: #cfcfcf;
    text-align: center;
    flex: 1 1 100%;
}

table td {
    padding: 10px;
    border: 1px solid #eee;
    text-align: center;
    flex: 1 1 100%;
}

table td a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
}

.maestros_t tr td:nth-child(1) {
    width: 270px !important;
    text-align: left !important;
}

.maestros_t tr td:nth-child(4),
.maestros_t tr td:nth-child(5) {
    max-width: 54px !important;
}

.liga_imagen {
    position: relative;
    display: block;
    margin: 0 auto;
    width: 130px;
    height: 30px;
    color: #656b51;
    text-decoration: none;
    font-weight: 600;
    line-height: 30px;
    -webkit-transform: translateX(-15px);
    transform: translateX(-15px);
}

.liga_imagen img {
    position: absolute;
    top: 4px;
    right: -25px;
    display: inline-block;
    -webkit-transition: -webkit-transform 256ms ease;
    transition: transform 256ms ease;
}

.liga_imagen:hover>img {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
}

.retotno_btn {
    position: relative;
    display: inline-block;
    margin: 40px auto;
    color: #777;
    text-decoration: none;
}

.retotno_btn img {
    -webkit-transition: -webkit-transform 256ms ease;
    transition: transform 256ms ease;
    -webkit-transform: scale(.9);
    transform: scale(.9);
}

.retotno_btn img:hover {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.selector2 {
    position: relative;
    margin: 0 auto;
    padding-top: 10px;
    width: 600px;
    border-top: 1px solid #ddd;
    text-align: left;
}

.selecrt_niv {
    position: relative;
    float: left;
    width: 200px;
    height: 100px;
    text-align: center;
}

.selecrt_grp,
.selecrt_hrr {
    position: relative;
    float: left;
    width: 150px;
    height: 100px;
    text-align: center;
}

.nv_label,
.gr_label,
.hr_label {
    display: block;
    width: 100%;
    height: 100%;
    border: 1px solid #fff;
    border-radius: 6px;
    background: #546c75;
    color: #fff;
    text-shadow: 0 0 30px #46b5ba, 0 0 20px white, 0 0 10px white;
    font-size: 20px;
    line-height: 100px;
    cursor: pointer;
    -webkit-transition: -webkit-background 256ms ease;
    transition: background 256ms ease;
}

.nv_label:hover,
.gr_label:hover,
.selecrt_hrr:hover {
    background: #267c9c;
}

input[type='radio']:checked+label {
    background: #39a7cf;
}

input[type=radio] {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
}

.selector2 legend {
    position: relative;
    margin: 0 20px;
    padding: 0 20px;
    letter-spacing: 5px;
    font-size: 10px;
}

.aviso1 {
    position: relative;
    display: block;
    margin: 0 auto;
    padding: 30px;
    width: 340px;
    background: #ffaf20;
    box-shadow: -2px 4px 19px -1px #a28644;
    color: #000;
    text-decoration: none;
    text-shadow: 3px 2px 10px #fff;
    font-weight: 600;
}

.separador20px {
    position: relative;
    display: block;
    margin: 0 auto;
    height: 100px;
}

[type='date'] {
    background: #fff url(../imagenes/microCalendario.png) 98% 50% no-repeat;
}

[type='date']::-webkit-inner-spin-button {
    display: none;
}

[type='date']::-webkit-calendar-picker-indicator {
    opacity: 0;
}

.inputDiv {
    position: relative;
    margin: 40px auto;
    width: 600px;
}

input[type='range'] {
    display: block;
    width: 600px;
    height: 40px;
    border: 0;
}

input[type='range']:focus {
    outline: none;
}

input[type='range'],
input[type='range']::-webkit-slider-runnable-track,
input[type='range']::-webkit-slider-thumb {
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
}

input[type=range]::-webkit-slider-thumb {
    margin-top: -9px;
    width: 20px;
    height: 20px;
    border: 3px solid #334248;
    border-radius: 50%;
    background-color: #546c75;
}

input[type=range]::-moz-range-thumb {
    width: 15px;
    height: 15px;
    border: 3px solid #333;
    border-radius: 50%;
    background-color: #546c75;
}

input[type=range]::-ms-thumb {
    width: 20px;
    height: 20px;
    border: 3px solid #333;
    border-radius: 50%;
    background-color: #546c75;
}

input[type=range]::-webkit-slider-runnable-track {
    height: 1px;
    background-color: #708e99;
}

input[type=range]:focus::-webkit-slider-runnable-track {
    outline: none;
}

input[type=range]::-moz-range-track {
    height: 3px;
    background-color: #485d65;
}

input[type=range]::-ms-track {
    height: 3px;
    background-color: #485d65;
}

input[type=range]::-ms-fill-lower {
    background-color: #39a7cf;
}

input[type=range]::-ms-fill-upper {
    background-color: #39a7cf;
}

.etiqueta {
    position: absolute;
    top: -45px;
    z-index: 9;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background-color: #39a7cf;
    color: white;
    text-align: center;
    font-size: 20px;
    line-height: 40px;
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
}

.etiqueta:after {
    position: relative;
    top: -8px;
    left: 13px;
    z-index: 8;
    display: block;
    width: 15px;
    height: 15px;
    background-color: #39a7cf;
    content: '';
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.selector2 .meses_sel {
    margin: 40px 0;
    padding: 10px;
    width: 300px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #f8fbff;
    color: #5c6669;
    font-size: 18px;
}

.control_td_a {
    padding: 0 !important;
}

.control_td_a a {
    display: block;
    padding: 10px;
    -webkit-transition: all 256ms ease;
    transition: all 256ms ease;
}

.control_td_a a img {
    -webkit-transition: all 256ms ease;
    transition: all 256ms ease;
}

.control_td_a a:hover img {
    -webkit-transform: scale(.85);
    transform: scale(.85);
}

.onoffswitch {
    position: relative;
    width: 100px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -ms-user-select: none;
}

.onoffswitch-checkbox {
    display: none;
}

.onoffswitch-label {
    display: block;
    overflow: hidden;
    border: 2px solid #fff;
    border-radius: 20px;
    cursor: pointer;
}

.onoffswitch-inner {
    display: block;
    margin-left: -100%;
    width: 200%;
    -webkit-transition: margin .3s ease-in 0s;
    transition: margin .3s ease-in 0s;
}

.onoffswitch-inner:before,
.onoffswitch-inner:after {
    display: block;
    float: left;
    box-sizing: border-box;
    padding: 0;
    width: 50%;
    height: 30px;
    color: black;
    font-weight: bold;
    font-size: 12px;
    font-family: Trebuchet, Arial, sans-serif;
    line-height: 30px;
}

.onoffswitch-inner:before {
    padding-left: 12px;
    background-color: #39a7cf;
    color: #fff;
    content: 'ACTIVO';
}

.onoffswitch-inner:after {
    padding-right: 6px;
    background-color: #e85764;
    color: #fff;
    content: 'INACTIVO';
    text-align: right;
}

.onoffswitch-switch {
    position: absolute;
    top: 0;
    right: 67px;
    bottom: 0;
    display: block;
    margin: 5px;
    width: 20px;
    border: 2px solid #fff;
    border-radius: 20px;
    background: #fff;
    -webkit-transition: all .3s ease-in 0s;
    transition: all .3s ease-in 0s;
}

.onoffswitch-checkbox:checked+.onoffswitch-label .onoffswitch-inner {
    margin-left: 0;
}

.onoffswitch-checkbox:checked+.onoffswitch-label .onoffswitch-switch {
    right: 0;
}

.tabla-3 {
    position: relative;
    margin: 0 auto;
    width: 300px;
}

.tabla-3 .fila_a td:first-child {
    padding: 0;
    width: 15px;
    background: #5a666b;
    color: #fff;
    text-align: center;
}

.tabla-3 .fila_b td:last-child {
    padding: 0 !important;
    width: 15px;
    background: #5a666b;
    color: #fff;
    text-align: center;
    line-height: 1px;
}

.tabla-3 input[type=checkbox] {
    width: 20px;
    height: 20px;
    background: transparent;
}

.microform {
    position: relative;
    display: block;
    margin: 0;
    height: 37px;
}

.round {
    position: absolute;
    top: 0;
    left: 0;
}

.round label {
    position: absolute;
    top: 0;
    left: 0;
    width: 38px;
    height: 37px;
    text-align: center;
    cursor: pointer;
}

.round label::before {
    position: absolute;
    transform: translate(-8px, 16px);
    color: #414a4e;
    content: ' \2298';
    font-size: 19px;
    opacity: 1;
}

.round label::after {
    position: absolute;
    top: 17px;
    left: 10px;
    content: ' \2605';
    font-size: 22px;
    opacity: 0;
}

.round input[type='checkbox'] {
    visibility: hidden;
}

.round input[type='checkbox']:checked+label {
    background-color: #39a7cf;
}

.round input[type='checkbox']:checked+label::after {
    opacity: 1;
}

.round input[type='checkbox']:checked+label::before {
    opacity: 0;
}

.boton_azul,
.boton_naranja {
    position: relative;
    display: block;
    margin: 0 auto;
    width: 107%;
    height: 38px;
    border-radius: 3px;
    text-shadow: 0 1px 2px #00000070;
    color: #fff;
    font-size: 12px;
    cursor: pointer;
    -webkit-transition: -webkit-background 256ms ease;
    transition: background 256ms ease;
    -webkit-transform: translateX(-9px);
    transform: translateX(-9px);
}

.boton_azul {
    background: #39a7cf;
}

.boton_azul:hover {
    background: #63bad9;
}

.boton_naranja {
    background: #ff9600;
    display: flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    padding: 0 70px;
    font-weight: 600;
}

.boton_naranja:hover {
    background: #ffb900;
}

.nomail {
    display: block;
    width: 100%;
    height: 37px;
    background: #d8d8bb;
    box-shadow: 0 0 12px #9b9b7d inset;
    color: #9f9f93;
    text-align: center;
    text-shadow: 0 0 10px #353529;
    font-size: 16px;
    line-height: 37px;
}

.funcionesadicionales {
    position: relative;
    display: flex;
    flex-flow: row;
    justify-content: space-evenly;
    margin: 0 AUTO;
    width: 340PX;
}

.funcionesadicionales a {
    flex: 1;
    padding: 10px 0;
    border-radius: 3px;
    background-color: #ff6800;
    color: #fff;
    text-shadow: -1px 1px 1px #c96816;
    font-weight: 600;
    font-size: 11px;
    -webkit-transition: -webkit-background 256ms ease;
    transition: background-color 256ms ease;
}

.funcionesadicionales a:hover {
    background-color: #ff9130;
}

.funcionesadicionales a:not(:nth-last-of-type(-n+1)) {
    margin-right: 1px;
}

.advertencia,
.exitomensaje {
    position: relative;
    display: inline-block;
    margin: 0 auto;
    padding: 20px;
    border-radius: 3px;
    color: #fff;
}

.advertencia {
    background-color: #d17780;
    text-shadow: -1px 1px 1px #761e26;
}

.exitomensaje {
    background-color: #b2d134;
    text-shadow: -1px 1px 1px #62741a;
}

.filaseparadora {
    background-color: #eee;
    color: #6f7f85;
    text-align: center;
    font-size: 10px;
}

.agregadoOK {
    background-image: url(../imagenes/aprobar.png) !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.mensaje_error {
    display: inline-block;
    position: relative;
    margin: 0 auto;
    text-align: center;
    width: fit-content;
    padding: 10px 47px;
    border-radius: 6px;
    background-color: #CC5F44;
    color: #fff;
    text-shadow: 1px 1px 0 #000;
}

.forma2 input[type=date] {
    background: url(../imagenes/microCalendario.png);
    background-position: 95% 50%;
    background-repeat: no-repeat;
}

.lista_detalles_1 {
    position: relative;
    z-index: 4;
    font-size: .84rem;
    font-family: 'Open Sans';
    font-weight: 600;
    color: #656565;
    background-color: #ffffff;
}

details.lista_detalles_1>summary {
    list-style: none;
    cursor: pointer;
    padding: 10px;
    color: #fff;
    text-shadow: 0 1px #006b92;
    background-color: #39a7cf;
    transition: all 265ms ease;
}

details.lista_detalles_1>summary:hover {
    background-color: #63bad9;
}

details.lista_detalles_1>summary::marker {
    display: none;
}

.lista_ejercicios {
    list-style: none;
}

.lista_ejercicios li {
    border-bottom: 1px solid #ddd;
}

.lista_ejercicios label {
    width: 100%;
    height: 40px;
    display: flex;
    flex-flow: wrap;
    align-content: center;
    justify-content: space-around;
    align-items: center;
    cursor: pointer;
    padding: 0 15px;
}

.lista_ejercicios label:hover {
    background-color: #656565;
    color: #fff;
}

.lista_ejercicios input[type="radio"]:checked+label {
    background-color: #3b3b3b;
    color: #fff;
}

.lista_ejercicios input[type="radio"]:focus+label {
    border: 2px dashed #444;
    padding: 0 0 0 10px;
}

.lista_ejercicios li:first-child {
    padding: 10px 10px;
    background-color: #d8d8d8;
    font-weight: 600;
    cursor: none;
    pointer-events: none;
}

.lista_ejercicios li:last-child {
    margin-bottom: 20px;
}

.lista_ejercicios label span {
    display: flex;
    flex: 1;
    font-weight: 400;
}

.alerta {
    display: block;
    width: 100%;
    padding: 30px;
    background-color: #B0192F;
    color: #fff;
    border-radius: 4px;
}

.edicion_grupos {
    display: flex;
    list-style: none;
    flex-direction: column;
    flex-wrap: wrap;
    width: 400px;
    position: relative;
    margin: 0 auto;
}

.edicion-grupos_header {
    width: 100%;
}

.edicion_grupos li {
    display: flex;
    flex-shrink: 0;
    flex-direction: row;
    margin-bottom: 1px;
}

.edicion_grupos li>span:nth-child(1) {
    flex: 1;
    text-align: left;
    padding: 10px;
}

.edicion_grupos li>span:nth-child(2) {
    width: 30px;
    transform: translateX(-8px);
}

.edicion_grupos li>span:nth-child(2) .round label::after {
    top: 2px;
    left: 10px;
}

.edicionHeader {
    display: block;
    width: 100%;
    padding: 15px 0 !important;
    font-weight: 600;
    text-align: center !important;
    background-color: #eeeeee;
}

.ligae_mailer_mssg {
    color: #006b92;
    font-weight: 600;
}

.centrado {
    text-align: center;
}

.bloque {
    display: block;
}

.calendario {
    position: relative;
    margin: 0 auto;
    max-width: 720px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    cursor: default;
    background-color: #fff;
    gap: 2px;
    padding: 10px;
    border-radius: 6px;
}

.calendario div {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 640px;
}

.calendario div span {
    position: relative;
}

.calendario div span b {
    position: absolute;
    right: 20px;
    font-size: 1.4rem;
    font-weight: 100;
    transform: translateY(-6px);
}

.calendario div:nth-child(even) {
    background: #f2f2f2;
}

.calendario div span:nth-child(1) {
    flex-basis: 190px;
    padding: 5px 8px;
    text-align: left;
    font-weight: 600;
}

.calendario div span:nth-child(2) {
    flex-basis: 130px;
    padding: 5px 8px;
    text-align: left;
}

.calendario div span:nth-child(3) {
    flex-basis: 300px;
    padding: 5px 8px;
    text-align: left;
}

.regresar_btn {
    position: relative;
    margin: 0 auto;
    display: block;
    background-color: #39a7cf;
    color: #fff;
    padding: 10px 40px;
    border-radius: 4px;
    transition: all 250ms ease;
}

.regresar_btn:hover {
    background-color: #63bad9;
}

/* Listados de examenes aplicados a los grupos */

.Listado_ll_2contenedores {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 341px;
    max-width: max-content;
    width: 100%;
    align-items: flex-start;
    position: relative;
    margin-left: 17px;
    list-style: none;
}

.Listado_ll_2contenedores li {
    position: relative;
    display: flex;
    width: 100%;
    text-align: left;
    font-size: .85rem;
    border-bottom: 1px solid #e5e5e5;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
}

.Listado_ll_2contenedores li:nth-child(odd) {
    background-color: #f4f4f4;
}

.Listado_ll_2contenedores li>span {
    position: relative;
    height: 40px;
    line-height: 40px;
    display: inline-block;
}

.Listado_ll_2contenedores li>span:nth-child(1) {
    display: flex;
    width: 450px;
    border-right: 1px solid #e5e5e5;
    margin-right: 10px;
    padding-left: 20px;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
}

.Listado_ll_2contenedores li span:nth-child(1)>span {
    display: flex;
    position: absolute;
    right: 0;
    width: 80px;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}

.Listado_ll_2contenedores li span:nth-child(1)>span a {
    height: 40px;
    width: 40px;
    line-height: 48px;
    opacity: .5;
    transition: all .3s ease-in-out;
}

.Listado_ll_2contenedores li span:nth-child(1)>span a:hover {
    opacity: 1;
}

.Listado_ll_2contenedores li span:nth-child(1)>span a img {
    width: 16px;
    height: 16px;

}

.Listado_ll_2contenedores li>span:nth-child(2) {
    flex: 1;
    min-width: 100px;
    max-width: 200px;
    text-align: center;
    padding: 0 20px;
    border-right: 1px solid #e5e5e5;
}

.liston_mensaje {
    position: relative;
    margin: 0 auto 70px auto;
    display: inline-block;
    padding: 10px 0;
    width: 100%;
    background-color: #5c6062;
    color: #fff;
    border-radius: 4px;
    box-shadow: 0 6px 11px -7px #00000085;
}

.mensaje_especial {
    position: relative;
    margin: 0 auto;
    min-width: 320px;
    max-width: 640px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px;
    background-color: #5f7773;
    color: white;
    text-shadow: 0 1px 1px rgb(36 36 36);
    border-radius: 4px;
    border: 1px solid #374d49;
    box-shadow: 0 10px 30px -10px #484545;
}

.mensaje_especial p {
    text-align: left;
}

.local_btn {
    display: block;
    margin-top: 4px;
    margin-bottom: 0;
    padding: 0 30px;
    font-size: 1rem;
    height: 60px;
    width: 320px;
    line-height: 60px;
}

.contenedor_mensajes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.mensajes_cont {
    width: 320px;
    margin: 10px;
    padding: 10px;
    border: 1px solid #d5d5d5;
    border-radius: 5px;
    background-color: white;
    box-shadow: 0 20px 30px -15px #00000040;
}

.imagen img {
    max-width: 300px;
    height: auto;
}

.titulo h3 {
    font-size: 1.5em;
    font-weight: bold;
    color: #333;
}

.mensaje p {
    font-size: 1em;
    color: #333;
    text-align: justify;
}

.tipo p {
    font-size: 1em;
    padding: 20px;
    background-color: #343739;
    color: white;
    margin-top: 40px;
    cursor: default;
}

hr {
    border-top: 1px solid #d5d5d5;
    border-bottom: 1px solid #f9f9f9;
    width: 100%;
    margin: 29px auto;
}

.mensajeTTL {
    display: inline-block;
    font-weight: 600;
    color: #006b92;
    cursor: pointer;
}

a {
    color: #777;
    text-decoration: none;
}

/* ! Calendario Refactor 2  */
/* * Nueva versión */
.timeline {
    max-width: 600px;
    margin: 0 auto;
}

.event {
    margin-bottom: 1px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.event-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    cursor: pointer;
    font-weight: bold;
    background-color: #f9f9f9;
}

.event-header:hover {
    background-color: #eaeaea;
}

.event-header span {
    display: flex;
    align-items: center;
}

.event-header .icon {
    margin-right: 10px;
    font-size: 20px;
}

.event-content {
    display: block;
    padding: 15px;
    border-top: 1px solid #ddd;
}

.event-content p {
    margin: 0;
    line-height: 1.6;
}

.event.open .event-content {
    display: block;
}

.postit_lleyow {
    background: linear-gradient(137deg, #fffce6 0%, #fff8c4 38%, #fff8c5 67%, #fff6aa 100%);
    padding: 10px 24px 12px 24px;
    border-radius: 5px;
    margin-top: 10px !important;
    text-align: center;
    box-shadow: 0 2px 2px 0px #00000017;
    font-weight: 400;
    font-style: italic;
}

/* Toggle Button Style */
#toggleFecha {
    padding: 10px 20px;
    background-color: #39a7cf;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 10px;
}

#toggleFecha:hover {
    background-color: #63bad9;
}

/* Collapsible Container Style */
#fechaContainer {
    transition: max-height 0.3s ease-out;
}