﻿:root {
    --color1: hsl(207,81.8%,43.1%); /*azul - #1477c8*/
    --color2: hsl(207.3,82.7%,68.2%); /*azul celeste - #6bb4f1*/
    --color3: hsl(208.2,83.1%,88.4%); /* baby blue - #c9e3fa */
    --color4: hsl(155.00, 41.38%, 88.63%); /* baby green - #d6eee4 */
    --color5: hsl(153.66, 42.27%, 19.02%); /* deep green - #1c4533*/
    --color6: hsl(208.1,83.7%,73.5%); /*azul claro - #83bff4*/
    --colorPrimarioOscuro: hsl(208.2,83.9%,43.7%); /*azul intenso - #1275cd*/
    --colorPrimario: hsl(208.2,83.9%,53.7%); /*Azul - #268fec*/
    --colorSecundario: hsl(208.3,83.8%,63.7%); /*Azul suave -  	#55a7f0*/
    --colorRojoOscuro: red;
    --SJDazulLogo: #00A3E0;
    --SJDverde: #1c997b;
    --SJDverdeSuave: #55a692;
    --SJDazul: #15a0db;
    --SJDazulSuave: #63c2eb;
    --SJDlavanda: #c08eb4;
    --SJDmagenta: #c75787;
    --SJDnaranja: #e48821;
    --SJDnaranjaSuave: #e3b27b;
    --SJDamarillo: #fce8a0;
    --SJDlima: #82be74;
    --SJDnegro: #0d0d0d;
    --SJDcrema: #f2ead7;
    --SJDrojo: #c94d5a;
    --SJDrojoSuave: #ed808c;
    --fontSize8: 8px;
    --fontSize10: 10px;
    --fontSize11: 11px;
    --fontSize12: 12px;
    --fontSize14: 14px;
    --fontSize15: 15px;
    --fontSize16: 16px;
    --fontSize17: 17px;
    --fontSize18: 18px;
    --fontSize20: 20px;
    --fontSize21: 21px;
    --fontSize22: 22px;
    --fontSize23: 23px;
    --fontSize24: 24px;
    --fontSize26: 26px;
    --fontSize28: 28px;
    --fontSize30: 30px;
    --fontSize32: 32px;
    --fontSize35: 35px;
    --fontSize40: 40px;
    --fontSize42: 42px;
    --fontSize45: 45px;
}

* {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    font-weight: 300;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.ttf');
}

@font-face {
    font-family: 'Roboto-Medium';
    src: url('../fonts/Roboto-Medium.ttf');
}

@font-face {
    font-family: 'Roboto-Black';
    src: url('../fonts/Roboto-Black.ttf');
}

@font-face {
    font-family: 'Roboto-Bold';
    src: url('../fonts/Roboto-Bold.ttf');
}

@font-face {
    font-family: 'Roboto-Light';
    src: url('../fonts/Roboto-Light.ttf');
}

@font-face {
    font-family: 'Roboto-Thin';
    src: url('../fonts/Roboto-Thin.ttf');
}

* {
    outline: none;
    box-sizing: border-box;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

html, body {
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
    font-size: var(--fontSize14);
    line-height: 1.5;
    background-color: #F8F8F8;
}

.form360 {
    height: 100%;
}

.topbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    /*background: var(--SJDazulLogo);*/
    background: var(--color1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
}

a {
    color: var(--colorPrimario);
}

.topbar-izquierda, .topbar-derecha {
    display: flex;
    height: 60px;
}

.topbar-logo {
    /*background-image: url('../images/logo.png');*/
    height: 60px;
    width: 170px;
    background-repeat: no-repeat;
    background-position: left;
    /*background-size: contain;*/
    cursor: pointer;
    background-size: contain;
}

.linklogo {
    text-decoration: none;
}

.menu-btn {
    width: 60px;
    height: 60px;
    margin-right: 0px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}

.menu-btn__burger,
.menu-btn__burger::before,
.menu-btn__burger::after {
    width: 24px;
    height: 3px;
    border-radius: 5px;
    background-color: #fff;
    transition: all 0.5s ease-in-out;
}

    .menu-btn__burger::before,
    .menu-btn__burger::after {
        content: "";
        position: absolute;
    }

    .menu-btn__burger::before {
        transform: translateY(-8px);
    }

    .menu-btn__burger::after {
        transform: translateY(8px);
    }

.menu-btn.open .menu-btn__burger {
    transform: translateX(-50px);
    background-color: transparent;
    box-shadow: none;
    pointer-events: none;
}

    .menu-btn.open .menu-btn__burger::before {
        transform: rotate(45deg) translate(35px, -35px);
    }

    .menu-btn.open .menu-btn__burger::after {
        transform: rotate(-45deg) translate(35px, 35px);
    }

.leftmenulateralcontainer {
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    position: fixed;
    width: 340px;
    top: 60px;
    bottom: 0;
    left: -400px;
    box-shadow: 0 0 2px #B8B8B8;
    background-color: #f8f8f8;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    padding-bottom: 0px;
    height: calc(100% - 60px);
    z-index: 1041;
    overflow-y: scroll;
    overflow-x: hidden;
    scrollbar-width: thin;
    overflow-y: scroll;
}

.jconfirm-content-pane {
    scrollbar-width: thin;
}

.leftmenulateralcontainer::-webkit-scrollbar, .leftmenulateralcontainer::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background-color: #f0f0f0;
}

.leftmenulateralcontainer.opened {
    left: 60px;
}

.leftmenulateralcontainer.sinmenu.opened {
    left: 0px;
}

.leftmenulaterallinks {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    padding-top: 20px;
}

.linkleftmenulateral {
    padding: 0 10px;
    height: 44px;
    border-radius: 22px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    width: 260px;
    align-items: center;
    font-size: var(--fontSize15);
    color: #555;
    font-family: 'Roboto';
    font-weight: 400;
    flex-shrink: 0;
    margin-bottom: 5px;
    border: 2px solid transparent;
}

    .linkleftmenulateral .icomenulateral {
        width: 24px;
        height: 20px;
        background-size: contain;
        background-position: center center;
        margin-right: 20px;
        background-repeat: no-repeat;
    }

    .linkleftmenulateral.active .icomenulateral {
        filter: invert(98%) sepia(5%) saturate(371%) hue-rotate(311deg) brightness(117%) contrast(87%);
    }

    .linkleftmenulateral:hover {
        background-color: #FEFEFE;
    }

    .linkleftmenulateral.active, .linkleftmenulateral.activeasigmenu {
        color: #444;
        font-family: 'Roboto-Medium';
        background-color: #FFF;
        border-color: var(--color3);
    }

    .linkleftmenulateral:before {
        font-family: "Font Awesome 5 Free";
        display: block;
        text-align: center;
        width: 24px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 20px;
        font-size: var(--fontSize18);
        color: #BBB;
    }

    .linkleftmenulateral.fas::before {
        font-weight: 900;
    }

    .linkleftmenulateral.active:before {
        color: #4c4746;
    }

.menu-home-footer {
    width: 318px;
    padding: 4px;
    margin-top: 30px;
}

    .menu-home-footer .copy {
        text-align: center;
        font-size: var(--fontSize12);
        color: #bbb;
        margin-bottom: 20px;
        user-select: none;
        -moz-user-select: none;
        -webkit-user-select: none;
        -ms-user-select: none;
    }

.topbar-derecha, #menumini {
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.menu-home-footer .apps {
    display: flex;
    justify-content: center;
}

.menu-home-footer .appsdisc {
    font-size: var(--fontSize11);
    color: #CCC;
    line-height: 14px;
    padding-left: 9px;
    list-style-type: circle;
    margin-top: 10px;
}

.separador-menuprincipal, .separador-menuprincipallateral, .separador-menuprincipallateral-cuadrados {
    margin: 12px 12px 4px;
    padding-bottom: 2px;
    font-size: var(--fontSize14);
    color: #BBB;
    width: 100%;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.separador-menuprincipallateral, .separador-menuprincipallateral-cuadrados {
    margin: 12px 0;
    margin-left: 0px;
    padding: 0 10px 2px;
    margin-left: 30px;
    border-bottom: 1px solid #EBEBEB;
}

a.separador-menuprincipallateral {
    width: 100%;
    display: block;
    margin-left: 0px;
    color: var(--colorPrimario);
}

.linkleftmenulateral {
    padding: 0 10px;
    height: 44px;
    border-radius: 22px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    width: 260px;
    align-items: center;
    font-size: var(--fontSize15);
    color: #555;
    font-family: 'Roboto';
    font-weight: 400;
    flex-shrink: 0;
    margin-bottom: 5px;
    border: 2px solid transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
}

.mpre-menumini, .mpre-menuminidb {
    background: #444;
    position: fixed;
    z-index: 9999;
    top: 60px;
    left: 0px;
    width: 60px;
    flex-shrink: 0;
    height: calc(100% - 60px);
    overflow: hidden;
}

    .mpre-menumini .mpre-tcoption {
        position: relative;
        width: 60px;
        height: 60px;
        margin: 0;
        padding: 6px 0px;
        color: #FFF;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        font-size: var(--fontSize20);
    }

        .mpre-menumini .mpre-tcoption:hover, .mpre-menumini .mpre-tcoption.active {
            background: #696969;
        }

.minimenu-fa .mpre-tcico {
    color: #CCC;
    margin-top: 4px;
    font-size: var(--fontSize24);
    cursor: pointer;
}

.mpre-tcoption .icomenulateral {
    width: 26px;
    height: 26px;
    border-left: 2px solid transparent;
    border-right: 2px solid transparent;
    border-bottom: 2px solid transparent;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}

    .mpre-tcoption .icomenulateral.logomini360 {
        width: 30px;
    }

.mpre-tctext {
    font-size: var(--fontSize11);
    margin-top: 5px;
    word-break: break-all;
}

    .mpre-tctext.logomini360 {
        margin-top: 1px;
    }

.contenidopagina {
    padding-top: 50px;
    padding-left: 60px;
    transition: all ease-in-out .2s;
    min-height: 100%;
    /*background: #F4F4F4;*/
}

    .contenidopagina.sinmenu {
        padding-left: 0px;
    }

    .contenidopagina.opened {
        padding-left: 400px;
    }

        .contenidopagina.opened.sinmenu {
            padding-left: 340px;
        }

.contenidopaginainner {
    /* padding: 0px 50px 0px 0px; */
}

.grupo-menuprincipal .grupo-ml-links {
    height: 0px;
    transition: height 0.3s ease;
    overflow: hidden;
    transition: all 0.2s ease;
}

    .grupo-menuprincipal .grupo-ml-links.opened {
        padding-top: 10px;
    }

.grupo-ml-parent {
    display: flex;
    align-items: center;
    padding: 0 10px;
    padding-right: 15px;
    border-radius: 22px;
    justify-content: space-between;
    height: 44px;
    cursor: pointer;
    font-size: var(--fontSize14);
    color: var(--colorPrimario);
    border: 2px solid transparent;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    background-color: #FAFAFA;
    border-color: #F0F0F0;
}

    .grupo-ml-parent.opened {
        border-color: var(--color2);
        background-color: var(--color4);
        position: sticky;
        top: 5px;
        z-index: 1;
    }

/*.grupo-ml-parent.opened::before {
    content: "";
    display: block;
    width: calc(100% + 14px);
    background-color: transparent;
    border-top: 10px solid #F8F8F8;
    border-left: 10px solid #F8F8F8;
    border-radius: 32px;
    height: calc(100% + 14px);
    position: absolute;
    top: -12px;
    left: -12px;
    pointer-events: none;
}*/

/*.grupo-ml-parent.opened::before {
    content: "";
    display: block;
    width: calc(100% + 14px);
    background-color: transparent;
    border-top: 10px solid #F8F8F8;
    border-radius: 29px;
    height: calc(100% + 14px);
    position: absolute;
    top: -12px;
    left: -12px;
    pointer-events: none;
    border-radius: 30px 24px 0 0;
}

.grupo-ml-parent.opened::after {
    content: "";
    display: block;
    width: calc(100% + 14px);
    background-color: transparent;
    border-left: 7px solid #F8F8F8;
    border-radius: 100px;
    height: calc(100% + 14px);
    position: absolute;
    top: -12px;
    left: -8px;
    pointer-events: none;
    transform: rotate(2deg);
    transform-origin: top left;
}*/

.leftmenulateralcontainer .grupo-menuprincipal::before {
    content: "";
    display: block;
    width: 320px;
    background-color: #F8F8F8;
    height: 30px;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    transition: all ease-in 1s;
}

.leftmenulateralcontainer .grupo-menuprincipal.noanimbefore::before {
    transition: all ease-in 0s;
}

.leftmenulateralcontainer.opened .grupo-menuprincipal::before {
    top: 60px;
    left: 60px;
}

.leftmenulateralcontainer.opened.sinmenu .grupo-menuprincipal::before {
    left: 0px;
}

.linkleftmenulateral.fas.fa-home {
    z-index: 1;
}

.grupo-ml-parent .caretmenu {
    transition: all ease-in .2s;
}

.grupo-ml-parent.opened .caretmenu {
    transform: rotate(180deg);
}

.grupo-ml-parent:hover {
    background: #FFF;
}

.grupo-menuprincipal {
    margin-top: 10px;
    width: 260px;
}

.grupo-ml-links .linkleftmenulateral {
    height: 38px;
}

    .grupo-ml-links .linkleftmenulateral.active {
        background: var(--color3);
        border-color: var(--color2);
        color: var(--colorPrimario);
    }

        .grupo-ml-links .linkleftmenulateral.active .faicomenulateral {
            color: var(--colorPrimario);
        }

.faicomenulateral {
    margin-right: 10px;
    font-size: var(--fontSize10);
    color: #E4E4E4;
}

.user-profile {
    display: flex;
    align-items: center;
    padding: 0 10px;
    cursor: pointer;
    height: 100%;
}

.user-profile-wrapper {
    display: flex;
    align-items: center;
}

.user-profile:hover, .user-profile.active {
    background: rgba(255,255,255,.2);
}

.up-caret {
    color: var(--color5);
}

.up-imgprofile, .avatarusuarioperfil {
    width: 40px;
    height: 40px;
    border: 2px solid var(--color3);
    background-position: center center;
    border-radius: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.avatarusuarioperfil {
    margin-top: 0 !important;
    height: 101px !important;
    width: 101px !important;
    background-size: cover !important;
    background-position: center center !important;
}

.user-profile-menu {
    display: none;
    position: fixed;
    top: 68px;
    right: 8px;
    flex-direction: column;
    align-items: center;
    width: 250px;
    background: #FFF;
    border-radius: 5px;
    box-shadow: 0px 0px 4px #BBB;
    border: 1px solid var(--color3);
    padding: 20px 0;
}

    .user-profile-menu.opened {
        display: flex;
    }

    .user-profile-menu a {
        display: block;
        padding: 10px;
        width: 100%;
        color: var(--colorPrimario);
        text-decoration: none;
    }

        .user-profile-menu a span {
            margin-right: 10px;
            font-size: var(--fontSize12);
            border: 1px solid var(--color2);
            border-radius: 100%;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 24px;
            height: 24px;
        }

        .user-profile-menu a:hover {
            background: var(--color4);
        }

.up-name {
    /*color: var(--color5);*/
    color: #FFF;
    font-size: var(--fontSize12);
    margin: 0 10px;
}

.up-caret {
    color: #FFF;
}

.user-profile-menu .up-name {
    color: #444;
    word-break: break-all;
    margin: 0;
}

.user-profile-menu .up-detail {
    margin: 0;
    padding: 10px;
    font-size: var(--fontSize12);
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #EEE;
    width: calc(100% - 20px);
}

.topbar-derecha-botones, .topbar-izquierda-botones {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}

.topbar-izquierda-botones {
    margin-right: 0;
    margin-left: 2px;
}

.boton360ico {
    align-items: center;
}

    .boton360ico .ico, .boton360ico .icono {
        margin-top: 1px;
        margin-right: 6px;
        font-size: var(--fontSize12);
        color: rgba(255,255,255,.9);
    }

    .boton360ico .icono {
        margin-top: 0px;
    }

    .boton360ico .texto {
        font-size: var(--fontSize12);
        line-height: 12px;
    }

.topbar-derecha-botones a, .boton360icono, .topbar-izquierda-botones a, .topbar-derecha-botones .divclick {
    min-width: 58px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #FFF !important;
    text-decoration: none !important;
    font-size: var(--fontSize11);
    border-radius: 5px;
    margin: 0 4px;
    position: relative;
    cursor: pointer;
}

    .boton360icono.active {
        background: var(--colorSecundario);
        color: #FFF;
    }

    .topbar-derecha-botones a:hover, .topbar-izquierda-botones a:hover, .topbar-derecha-botones .divclick:hover {
        color: #FFF;
        background: rgba(255,255,255,.2);
    }

    .topbar-derecha-botones a .text, .boton360icono .texto, .topbar-izquierda-botones a .text, .topbar-derecha-botones .divclick .text {
        margin: 0 10px;
        font-size: var(--fontSize11);
        font-weight: normal;
        font-family: Roboto;
    }

    .topbar-derecha-botones a .ico, .boton360icono .icono, .topbar-izquierda-botones a .ico, .topbar-derecha-botones .ico {
        font-size: var(--fontSize24);
        margin-bottom: 4px;
    }

.pag-filtros-botones .boton360icono:not(.boton360cancelar) {
    background-color: var(--SJDazul);
    color: #FFF;
}

    .pag-filtros-botones .boton360icono:not(.boton360cancelar):hover {
        background-color: var(--colorSecundario);
    }

.pag-filtros-botones .boton360cancelar {
    background: #E0E0E0;
    color: #888;
}

    .pag-filtros-botones .boton360cancelar:hover {
        background: #D4D4D4;
    }

.pag-filtros-botones .boton360icono .icono {
    font-size: var(--fontSize18);
    margin: 2px 0 3px 0;
}

.boton360icono {
    color: var(--colorSecundario);
}

.boton360icono {
    background: var(--color4);
}

    .boton360icono:hover {
        background: var(--color3);
    }

    .boton360icono.active:hover {
        background: var(--colorPrimario);
    }

    .boton360icono .icono {
        margin-top: 4px;
    }

    .boton360icono .badgecheck {
        position: absolute;
        right: -2px;
        top: -2px;
        font-size: var(--fontSize10);
        width: 16px;
        height: 16px;
        border-radius: 100%;
        display: none;
        justify-content: center;
        align-items: center;
        color: #FFF;
        background: var(--colorVerdeOscuro);
        opacity: 0;
        pointer-events: none;
    }

    .boton360icono.active .badgecheck {
        display: flex;
    }

    .topbar-derecha-botones a .badge, .boton360icono .badge, .topbar-izquierda-botones a .badge {
        position: absolute;
        right: -2px;
        top: -2px;
        font-size: var(--fontSize11);
        font-family: Roboto-Medium;
        width: 16px;
        height: 16px;
        border-radius: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #FFF;
        background: var(--colorRojo);
    }

.boton360iconofix {
    width: 70px;
    margin-right: 10px;
    margin-left: 0px;
}

.user-profile-menu .up-imgprofile {
    width: 80px;
    height: 80px;
    background: var(--color4);
    background-size: cover;
    background-position: center center;
}

.db-wrapper {
    width: 100%;
    display: flex;
    flex-flow: wrap;
}

.col-botones, .col-calendario, .col-grupos {
    /*min-width: 200px;*/
    flex-shrink: 0;
}

.col-botones {
    flex: 4;
}

.col-calendario {
    flex: 2;
}

.col-grupos {
    flex: 5;
}

.db-mb-boton {
    background: #FFF;
}

    .db-mb-boton[onclick] {
        cursor: pointer;
    }














.div-ayudaleer {
    position: absolute;
    width: 100%;
    background-color: transparent;
    padding: 5vw;
    transition: all .5s;
    z-index: 999;
}

.hidden {
    display: none !important;
}

.div-ayudaleer .contenido {
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.2);
    margin-top: 5px;
    padding: 5px;
    border-radius: 5px;
    min-height: 500px;
    -webkit-box-shadow: 2px 2px 5px #999;
    -moz-box-shadow: 2px 2px 5px #999;
}

.div-ayudaleer .contenido-clave {
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.2);
    margin-top: 5px;
    padding: 5px;
    height: 150px;
    width: 30%;
    margin-left: 30%;
    padding: 5px;
    -webkit-box-shadow: 2px 2px 5px #999;
    -moz-box-shadow: 2px 2px 5px #999;
}

.div-ayudaleer .contenido .contenido-cuerpo {
    margin-top: 10px;
    padding: 5px;
}

.div-ayudaleer .close {
    font-size: var(--fontSize22);
    margin-left: 10px;
}

#AyudaEditorCancelarLinkButton {
    font-size: var(--fontSize22);
    margin-left: 10px;
}

#AyudaEditorGuardarLinkButton {
    font-size: var(--fontSize22);
    margin-left: 10px;
}

#hlAyuda {
    background-color: white !important;
    color: rgb(25, 117, 210) !important;
    right: 5px;
    top: 6px;
    float: right;
}

.logomovil {
    right: 45px !important;
}

.div-ayudaeditor {
    position: absolute;
    width: 98%;
    background-color: #fff;
    padding: 5vw;
    min-height: 600px;
    z-index: 999;
}

.db-mb-boton {
    background: #FFF;
    border-radius: 5px;
    margin: 6px;
    width: calc(100% - 12px);
    height: calc(100% - 12px);
    padding: 20px;
}

.flex-row, .flex-row-form, .flex-row-footer, .flex-form-row {
    display: flex;
}

    .flex-form-row:not(:first-of-type) {
        margin-top: 20px;
    }

.flex-form-row {
    align-items: center;
}

.flex-form-rowtop {
    align-items: flex-start;
}

.flex-form-row-center {
    width: 100%;
    justify-content: center;
}

.flex-form-col-botones {
    align-items: flex-end;
}

.flex-row-footer {
    align-items: center;
    justify-content: flex-end;
}

.flex-row-margin {
    margin-top: 10px;
}

.flex-row-margin-extra {
    margin-top: 30px;
}

.flex-row-form {
    align-items: center;
    margin-bottom: 10px;
}

    .flex-row-form:last-of-type {
        margin-bottom: 0px;
    }

.flex-row-flow {
    flex-flow: wrap;
}

.flex-row-space {
    justify-content: space-between !important;
}

.flex-row-spacear {
    justify-content: space-around !important;
}

@media only screen and (max-width: 700px) {
    .flex-row-space {
        flex-direction: column;
    }
}

.flex-row-flow:not(:last-of-type) {
    margin-bottom: 40px;
}

.db-menu-botones .flex-row.flex-row-flow {
    margin-bottom: 0px;
}

.flex-col, .flex-form-col {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 200px;
}

.flex-col-padding {
    padding: 0 10px;
}

.flex-col-form {
    min-width: 300px;
    padding: 0 20px;
}

.flex-row-flow {
    padding: 0;
}

.flex-col-form:first-of-type {
    padding-left: 0px;
    padding-right: 20px;
}

.flex-col-form:last-of-type {
    padding-left: 20px;
    padding-right: 0px;
}

.flex-form-col {
    min-width: 300px;
    padding: 0 10px;
}

.flex-col-nomin, .flex-form-col-nomin {
    min-width: 0;
}

.flex-form-col:first-of-type {
    padding-left: 0px;
    padding-right: 10px;
}

.flex-form-col:last-of-type {
    padding-left: 10px;
    padding-right: 0px;
}

.flex-form-col-nopadding {
    padding: 0 !important;
}

@media only screen and (max-width: 700px) {
    .flex-col-form:not(:first-of-type):not(:last-of-type) {
        padding: 10px 0 20px 0;
    }
}

.flex-col-form-nomin {
    min-width: 0;
}

.flex-col-270 {
    min-width: 270px;
}

.db-mb-boton {
    display: flex;
    align-items: center;
    border: 2px solid #F2F2F2;
}

.db-mb-boton-cuadrado {
    flex-direction: column;
    align-items: flex-start;
}

    .db-mb-boton-cuadrado .db-mbb-detalle {
        margin-top: 10px;
    }

.db-mbb-ico {
    color: #DDD;
    font-size: var(--fontSize26);
    margin-right: 10px;
    display: flex;
    flex-shrink: 0;
    width: 26px;
    justify-content: center;
}

.db-mbb-titulo {
    font-size: var(--fontSize21);
    color: var(--colorSecundario);
    font-family: Roboto-Light;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.db-mb-boton-cuadrado .db-mbb-titulo {
    font-family: Roboto-Light;
    padding: 0 10px;
}

.db-mbb-subtitulo {
    font-size: var(--fontSize12);
    color: #999;
    margin-top: 4px;
    font-family: Roboto-Light;
}

.db-mb-boton-rosa {
    border-color: #ffd2f9;
}

    .db-mb-boton-rosa .db-mbb-ico {
        color: #ffd2f9;
    }

.db-mb-boton-verde {
    border-color: #bbedb3;
}

    .db-mb-boton-verde .db-mbb-titulo {
        color: #5fd44c;
    }

    .db-mb-boton-verde .db-mbb-ico {
        color: #bbedb3;
    }

.db-mb-boton-amarillo {
    border-color: #fcda7c;
}

    .db-mb-boton-amarillo .db-mbb-ico {
        color: #fcda7c;
    }

.db-mb-boton-azul {
    border-color: #b4e5ff;
}

    .db-mb-boton-azul .db-mbb-titulo {
        color: #35b8ff;
    }

    .db-mb-boton-azul .db-mbb-ico {
        color: #b4e5ff;
    }

.table360 {
    width: 100%;
}

.db-mbb-detalle {
    width: 100%;
}

.table360.noborder, .table360.noborder td {
    border: 0;
}

.db-msg-row {
    display: flex;
    align-items: center;
}

.db-msg-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    width: 100%;
}

    .db-msg-header[data-leido="False"] .db-msg-remitente {
        /*color: #0097e9;*/
    }

.db-msg-contenido {
    width: 100%;
}

.db-msg-linkwrapper {
    text-decoration: none;
    color: #000;
}

.db-msg-remitente {
    font-size: var(--fontSize11);
    color: #555;
}

.db-msg-fecha {
    color: #888;
    font-size: var(--fontSize11);
}

.db-msg-detalle {
    font-size: var(--fontSize14);
}

.table360dbmensajes td {
    cursor: pointer;
    padding: 10px;
    /*padding-left: 0;*/
}

.table360dbmensajes tr {
    border-bottom: 1px solid #eee;
}

    .table360dbmensajes tr:hover {
        background: #F8F8F8;
    }

    .table360dbmensajes tr:last-of-type {
        border-bottom: none;
    }

.db-msg-detalle[data-leido="False"] {
    font-family: Roboto-Medium;
}

.db-msg-ico {
    color: #81d3ff;
    margin-right: 10px;
}

.db-mb-boton-verde .db-msg-ico {
    color: #bbedb3;
}

.db-msg-ico[data-leido="True"]::before {
    color: #CCC;
    content: "";
}

.col-calendario, .col-grupos, .col-menubotones {
    margin: 6px;
}

.db-grupos {
    padding: 20px;
    background: #FFF;
    border-radius: 5px;
}

    .db-grupos:not(:last-of-type) {
        margin-bottom: 10px;
    }

.db-calendario {
    padding: 10px;
}

.db-calendario {
    /*min-width: 360px;*/
    flex-shrink: 0;
}

.db-column-title {
    color: #AAA;
}

.db-grupos-detalle {
    margin-top: 10px;
    width: 100%;
}

.db-grupos-grupo {
    border-bottom: 1px solid #EEE;
    cursor: pointer;
}

    .db-grupos-grupo:hover {
        background: #F8F8F8;
    }

    .db-grupos-grupo:last-of-type {
        border-bottom: none;
    }

    .db-grupos-grupo .db-gg-parent {
        color: #666;
        padding: 10px;
        user-select: none;
        -moz-user-select: none;
        -webkit-user-select: none;
        -ms-user-select: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.db-gg-contenido {
    display: flex;
    flex-flow: wrap;
    height: 0;
    min-height: 0;
    padding-left: 5px;
    transition: all 0.2s ease;
    overflow: hidden;
    cursor: auto;
    background: #FFF;
    justify-content: center;
}

.db-gg-parent-caret {
    color: #2d6a8e;
    transition: all 0.2s ease;
}

    .db-gg-parent-caret.opened {
        transform: rotate(180deg);
    }

.db-gg-contenido.opened {
    padding-top: 10px;
    padding-bottom: 6px;
}

.db-gg-contenido a {
    display: flex;
    align-items: center;
    /*background: #e7f7ff;
    color: #27597d;*/
    background: var(--colorSecundario);
    color: #FFF;
    padding: 6px 8px;
    border-radius: 3px;
    margin: 4px;
    font-size: var(--fontSize12);
    /*border: 1px solid #b4e5ff;*/
    /*height: 28px;*/
    text-decoration: none;
    flex-shrink: 0;
    /*flex: 1;*/
    justify-content: center;
    flex-direction: column;
    width: 75px;
}

    .db-gg-contenido a:hover {
        background: var(--colorPrimario);
    }

.db-gg-ico {
    font-size: var(--fontSize14);
    color: rgba(255,255,255,.8);
    /*margin-right: 5px;*/
}

.db-gg-texto {
    flex-shrink: 0;
    font-size: var(--fontSize11);
    margin-top: 4px;
}

.pag-titulo {
    display: flex;
    align-items: center;
    height: 38px;
    font-size: var(--fontSize21);
    font-family: Roboto-Light;
    color: var(--colorSecundario); /*#444;*/
    justify-content: space-between;
}

.pag-t-boton {
    background: var(--colorPrimario);
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    font-size: var(--fontSize14);
    text-decoration: none;
    color: #FFF;
    border-radius: 3px;
    font-family: Roboto-Medium;
}

    .pag-t-boton:hover {
        /*color: var(--colorPrimario);*/
        background: var(--colorSecundario);
    }

.pag-alert span {
    display: flex;
    background: var(--colorRojo);
    padding: 10px;
    color: #FFF;
    border-radius: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
}

    .pag-alert span a {
        color: #FFF;
    }

    .pag-alert span.alertaverde {
        background: var(--colorVerde);
    }

    .pag-alert:empty, .pag-alert span:empty {
        display: none;
    }

.pag-filtros {
    display: flex;
    align-items: center;
    flex-flow: wrap;
}

.pag-filtros-margintop {
    margin-top: 20px;
}

.pag-filtros-marginbottom {
    margin-bottom: 20px;
}

.pag-filtros-flextop {
    align-items: flex-start
}

.pag-filtros-col, .flex-col-form {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin-right: 20px;
}

    .pag-filtros-col input.datepicker {
        text-align: center;
    }

.pag-filtros-col60, .flex-form-col60 {
    max-width: 60px;
}

.pag-filtros-col100, .flex-form-col100 {
    max-width: 100px;
}

.flex-form-col115 {
    max-width: 115px;
}

.pag-filtros-col200, .flex-form-col200 {
    max-width: 200px;
}

.pag-filtros-col300, .flex-form-col300 {
    max-width: 300px;
}

.pag-filtros-col400, .flex-form-col400 {
    max-width: 400px;
}

.pag-filtros-col500, .flex-form-col500 {
    max-width: 500px;
}

.flex-form-col800 {
    max-width: 800px;
}

.pag-filtros-col-row {
    flex-direction: row;
    align-items: center;
}

.pag-filtros .pag-filtros-col100 input[type="text"], .pag-filtros .pag-filtros-col100 select, .pag-filtros .pag-filtros-col100 input[type="number"],
.pag-filtros .pag-filtros-col200 input[type="text"], .pag-filtros .pag-filtros-col200 select, .pag-filtros .pag-filtros-col200 input[type="number"]
.pag-filtros .pag-filtros-col300 input[type="text"], .pag-filtros .pag-filtros-col300 select, .pag-filtros .pag-filtros-col300 input[type="number"]
.pag-filtros .pag-filtros-col400 input[type="text"], .pag-filtros .pag-filtros-col400 select, .pag-filtros .pag-filtros-col400 input[type="number"]

.flex-form-row .flex-form-col100 input[type="text"], .flex-form-row .flex-form-col100 select, .flex-form-row .flex-form-col100 input[type="number"],
.flex-form-row .flex-form-col200 input[type="text"], .flex-form-row .flex-form-col200 select, .flex-form-row .flex-form-col200 input[type="number"],
.flex-form-row .flex-form-col300 input[type="text"], .flex-form-row .flex-form-col300 select, .flex-form-row .flex-form-col300 input[type="number"],
.flex-form-row .flex-form-col400 input[type="text"], .flex-form-row .flex-form-col400 select, .flex-form-row .flex-form-col400 input[type="number"],
.flex-form-row .flex-form-col880 input[type="text"], .flex-form-row .flex-form-col880 select, .flex-form-row .flex-form-col880 input[type="number"],
.flex-form-row .flex-form-col115 input[type="number"] {
    min-width: 10px;
    width: 100%;
}

.flex-form-row .flex-form-col60, .flex-form-row .flex-form-col100, .flex-form-row .flex-form-col200, .flex-form-row .flex-form-col300, .flex-form-row .flex-form-col400,
.flex-form-row .flex-form-col880, .flex-form-row .flex-form-col115 {
    min-width: 10px;
}

.pag-filtros .pag-filtros-col-fecha input[type="text"],
.pag-filtros .pag-filtros-col-fecha input[type="number"],
.pag-filtros .pag-filtros-col-min input[type="text"],
.pag-filtros .pag-filtros-col-min input[type="number"],
.flex-form-col-min input[type="text"],
.flex-form-col-min input[type="number"],
.flex-form-col-auto input[type="text"],
.flex-form-col-auto input[type="number"],
.flex-form-col-min2 input[type="text"],
.flex-form-col-min2 input[type="number"],
.flex-form-col-fecha input[type="text"],
.flex-form-col-fecha input[type="number"] {
    min-width: 0px;
}

.pag-filtros-col-fecha, .flex-form-col-min, .flex-form-col-med, .pag-filtros-col-min, .flex-form-col-auto, .flex-form-col-min2, .flex-form-col-fecha2 {
    min-width: 0;
    flex: unset;
}

.flex-form-col-auto {
    flex: 1;
}

    .pag-filtros-col-fecha input,
    .flex-form-col-min input[type="text"], .flex-form-col-min select, .flex-form-col-min input[type="number"],
    .flex-form-col-med input[type="text"], .flex-form-col-med select, .flex-form-col-med input[type="number"],
    .pag-filtros-col-min input[type="text"], .pag-filtros-col-min select, .pag-filtros-col-min input[type="number"],
    .flex-form-col-auto input[type="text"], .flex-form-col-auto select, .flex-form-col-auto input[type="number"],
    .flex-form-col-min2 input[type="text"], .flex-form-col-min2 select, .flex-form-col-min2 input[type="number"],
    .flex-form-col-fecha input[type="text"], .flex-form-col-fecha select, .flex-form-col-fecha input[type="number"] {
        min-width: 0px;
        width: 120px;
        text-align: center;
    }

.flex-form-col-min2 input[type="text"], .flex-form-col-min2 select, .flex-form-col-min2 input[type="number"] {
    width: 60px;
}

.flex-form-col-fecha input[type="text"], .flex-form-col-fecha select, .flex-form-col-fecha input[type="number"] {
    width: 100px;
}

.flex-form-col-auto input[type="text"], .flex-form-col-auto select, .flex-form-col-auto input[type="number"] {
    width: 100%;
}

.flex-form-col-med input[type="text"], .flex-form-col-med select, .flex-form-col-med input[type="number"] {
    width: 260px;
}

.flex-form-col-min select, .flex-form-col-med select, .flex-form-col-auto select, .flex-form-col-min2 select {
    text-align: left;
}

.flex-form-col-center {
    justify-content: center;
}

.pag-filtros-col:last-child {
    margin-right: 0px;
}

.pag-f-label {
    font-family: Roboto;
    color: #333;
    margin-bottom: 2px;
}

.pag-f-label-boton .pag-f-label {
    margin-bottom: 0;
}

.pag-filtros-col select, .pag-filtros input[type="text"], .pag-filtros input[type="number"] {
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #DDD;
    min-width: 300px;
}

    .pag-filtros input[type="text"][readonly], .pag-filtros input[type="number"][readonly] {
        background: #F8F8F8;
    }

.pag-content {
    position: relative;
    padding: 10px; 
    border-radius: 5px;
     margin: 5px; 
}

.tabs360 {
    margin-top: 30px;
}

    .tabs360 .ajax__tab_header {
        margin-bottom: 20px;
        border-bottom: 2px solid var(--color2);
        display: flex;
    }

        .tabs360 .ajax__tab_header .ajax__tab_tab {
            cursor: pointer;
            display: flex;
            padding: 6px 10px;
            margin-bottom: 10px;
            background: var(--color4);
            color: var(--colorPrimario);
            margin-right: 10px;
            border-radius: 5px;
            font-size: var(--fontSize14);
        }

            .tabs360 .ajax__tab_header .ajax__tab_tab:hover {
                background: var(--color3);
            }

        .tabs360 .ajax__tab_header .ajax__tab_active .ajax__tab_tab {
            background: var(--colorSecundario);
            color: #FFF;
        }

.ajax__tab_container {
    visibility: visible !important;
}

.pag-f-label-boton {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2px;
}

.pag-f-lb-boton {
    cursor: pointer;
    display: flex;
    padding: 4px 6px;
    background: var(--color4);
    color: var(--colorPrimario);
    border-radius: 5px;
    font-size: var(--fontSize12);
    text-decoration: none;
}

    .pag-f-lb-boton:hover {
        background: var(--color3);
    }

    .pag-f-lb-boton span {
        margin-right: 4px;
    }

.pag-filtros-botones {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.pag-filtros-botones-margintop {
    margin-top: 10px;
}

.pag-filtros-derecha {
    align-items: flex-end;
}

.pag-filtros-imagen img {
    border-radius: 100%;
    width: 50px;
}

.pag-fb-boton {
    border: none;
    margin-right: 10px;
    cursor: pointer;
    display: flex;
    padding: 8px 12px;
    background: var(--color4);
    color: var(--colorPrimario);
    border-radius: 5px;
    font-size: var(--fontSize12);
    text-decoration: none;
}

    .pag-fb-boton:hover {
        background: var(--color3);
    }

    .pag-fb-boton:last-child {
        margin-right: 0;
    }

.grid360-container100 {
    width: 100%;
}

.grid360-container {
    padding-top: 30px;
}

.grid360-container-nomargin {
    padding-top: 10px;
}

.grid360-container-nomargin-nopadding {
    padding: 0px;
    margin: 0px;
}

.grid360 th:not([align]) {
    text-align: left;
}

.grid360 th.columnafecha, .grid360 td.columnafecha {
    text-align: center;
    width: 200px;
}

.grid360 {
    margin-bottom: 20px;
    font-size: var(--fontSize14);
    border: 1px solid #EEE;
    color: #222;
    width: 100%;
    border-collapse: collapse;
}

.grid360-nomargin {
    margin-bottom: 0px;
}

.grid360 th a {
    text-decoration: none;
    color: var(--colorSecundario);
}

.grid360 a {
    text-decoration: none;
    color: var(--colorSecundario);
}

    .grid360 a.boton360 {
        color: #FFF;
    }

.btngrid360 {
    margin: 2px 2px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

    .btngrid360 .ico, th a.btngrid360 {
        display: inline-flex;
        width: 36px;
        height: 36px;
        justify-content: center;
        align-items: center;
        border: 2px solid var(--color2);
        border-radius: 100%;
        margin: 0 5px;
        font-size: var(--fontSize18);
    }

    .btngrid360 .text {
        margin-top: 3px;
        font-size: var(--fontSize11);
        line-height: 11px;
    }

.btngrid360noborder .ico {
    border: none;
}

.btngrid360:hover .ico {
    color: var(--colorPrimarioOscuro);
    background-color: var(--color4);
    border-color: var(--colorPrimario);
}

.btngrid360-rojo:hover .ico {
    color: var(--colorRojo);
    border-color: var(--colorRojoClaro);
    background-color: var(--colorRojoClaro2);
}

.btngrid360-rojo:hover .text {
    color: var(--colorRojo);
}

th a.btngrid360 {
    background: var(--SJDazul);
    border-color: var(--SJDazul);
    color: #FFF;
}

/*.grid360 .actions-auto {
    width: 1000px;
}*/

.grid360 .actions-1 {
    width: 120px;
    min-width: 120px;
    text-align: center;
}

.grid360 th.col-center, .grid360 tr.col-center {
    text-align: center;
}

.grid360 .actions-1-min {
    width: 60px;
    text-align: center;
}

.grid360 .actions-1-med {
    width: 80px;
    text-align: center;
}

.grid360 .actions-1-big {
    width: 100px;
    min-width: 100px;
    text-align: center;
}

.grid360 .actions-2 {
    width: 128px;
    min-width: 120px;
    text-align: center;
}

.grid360 .actions-3 {
    width: 212px;
    min-width: 200px;
    text-align: center;
}

.grid360 .actions-4 {
    width: 256px;
    min-width: 240px;
    text-align: center;
}

.grid360 .actions-5 {
    width: 280px;
    min-width: 280px;
    text-align: center;
}


.grid360 .actions-text-30 {
    width: 30%;
}

.grid360 tr.HeaderGrid th.actions-nopadding:first-child, .grid360 tr.RowGrid td.actions-nopadding:first-child, .grid360 tr.AlternatingGrid td.actions-nopadding:first-child {
    padding-left: 0;
}

.textcenter {
    text-align: center;
}

.textleft {
    text-align: left;
}

.grid360 th.actions-center, .grid360 td.actions-center {
    text-align: center;
}

    .grid360 th.actions-center > div, .grid360 td.actions-center > div {
        margin: 0 auto;
    }

.grid360 th.actions-left, .grid360 td.actions-left {
    text-align: left;
}

.width300 {
    width: 300px;
}

.grid360 .HeaderGrid {
    height: 50px;
    background: #F6F6F6;
    color: #444;
}

.grid360 tr.RowGrid, .grid360 tr.AlternatingGrid {
    height: 50px;
    border-bottom: 1px solid #EEE;
}

    .grid360 tr.RowGrid:hover, .grid360 tr.AlternatingGrid:hover {
        background-color: var(--color5);
    }

    .grid360 tr.HeaderGrid th:first-child, .grid360 tr.RowGrid td:first-child, .grid360 tr.AlternatingGrid td:first-child {
        padding-left: 10px;
    }

.grid360 tr.HeaderGrid th:not(:first-child):not(.actions-1):not(.actions-1-min):not(.actions-1-med):not(.actions-1-big):not(.actions-2):not(.actions-3):not(.actions-4):not(.actions-5),
.grid360 tr td:not(:first-child):not(.actions-1):not(.actions-1-min):not(.actions-1-med):not(.actions-1-big):not(.actions-2):not(.actions-3):not(.actions-4):not(.actions-5) {
    padding: 5px;
}

.grid360-nopadding tr.HeaderGrid th:first-child, .grid360-nopadding tr.RowGrid td:first-child, .grid360-nopadding tr.AlternatingGrid td:first-child {
    padding-left: 0;
}

.grid360-nopaddingtop {
    padding-top: 0;
}

.grid360 tr.AlternatingGrid {
    background-color: #FAFAFA;
}

.grid360 tr:last-child {
    border-bottom: none;
}

.grid360footer {
    padding-left: 10px;
    font-size: var(--fontSize14);
    color: #444;
}

.fc-header-toolbar.fc-toolbar .fc-toolbar-title {
    font-size: var(--fontSize12);
    color: var(--colorPrimarioOscuro);
    font-family: Roboto;
    font-weight: normal;
}

    .fc-header-toolbar.fc-toolbar .fc-toolbar-title:first-letter {
        text-transform: uppercase;
    }

.fc-daygrid-day {
    cursor: pointer;
}

.db-calendario-mes .fc-daygrid-day.active, .mdm-calendario .fc-daygrid-day.active, .mdd-calendario .fc-daygrid-day.active {
    background: #f6e58d;
}

.db-calendario-mes .fc-event-time, .db-calendario-mes .fc-event-title,
.mdm-calendario .fc-event-time, .mdm-calendario .fc-event-title {
    display: none;
}

/*.db-calendario-mes .fc-daygrid-day-events, .db-calendario-mes .fc-daygrid-body-unbalanced .fc-daygrid-day-events,
.mdm-calendario .fc-daygrid-day-events, .mdm-calendario .fc-daygrid-body-unbalanced .fc-daygrid-day-events {
    height: 0px;
    width: 0px;
    min-height: 0px;
    position: absolute;
    left: calc(50% - 8px);
    bottom: 14px;
}

.db-calendario-mes .fc-daygrid-event-dot, .db-calendario-mes.fc-direction-ltr .fc-daygrid-event.fc-event-end, .db-calendario-mes .fc-direction-rtl .fc-daygrid-event.fc-event-start, 
.mdm-calendario .fc-daygrid-event-dot, .mdm-calendario.fc-direction-ltr .fc-daygrid-event.fc-event-end, .mdm-calendario .fc-direction-rtl .fc-daygrid-event.fc-event-start {
    position: absolute;
    top: 9px;
    left: 7px;
    pointer-events: none;
}*/


.db-calendario-mes .fc-daygrid-day-events, .db-calendario-mes .fc-daygrid-body-unbalanced .fc-daygrid-day-events,
.mdm-calendario .fc-daygrid-day-events, .mdm-calendario .fc-daygrid-body-unbalanced .fc-daygrid-day-events {
    pointer-events: none;
    /*position: absolute;
    top: 14px;
    left: 0px;*/
}

.db-calendario-mes .fc-daygrid-body-natural .fc-daygrid-day-events,
.mdm-calendario .fc-daygrid-body-natural .fc-daygrid-day-events {
    margin-bottom: 0;
}

.db-calendario-mes .fc-daygrid-body-unbalanced .fc-daygrid-day-events,
.mdm-calendario .fc-daygrid-body-unbalanced .fc-daygrid-day-events {
    position: relative;
    min-height: 1px;
}

.mdm-calendario .fc-daygrid-dot-event, .db-calendario-mes .fc-daygrid-dot-event {
    position: absolute;
    position: absolute;
    top: -12px;
    right: -4px;
}

.db-calendario-mes .fc-daygrid-day-events .fc-daygrid-event-harness,
.mdm-calendario .fc-daygrid-day-events .fc-daygrid-event-harness {
    visibility: visible !important;
}


.db-calendario-mes .fc-daygrid-day-top,
.mdm-calendario .fc-daygrid-day-top {
    display: flex;
    justify-content: center;
}

.mdm-calendario .fc-daygrid-block-event {
    /*display: none;*/
}

.db-calendario-dias {
    margin-top: 20px;
}

.db-calendario-mes .fc-button.fc-button-primary {
    background: var(--SJDazul);
    border: none;
    height: 30px;
    line-height: 30px;
    padding: 0 8px;
    font-size: var(--fontSize14);
}

.fc .fc-button-primary:not(:disabled):active, .fc .fc-button-primary:not(:disabled).fc-button-active {
    background: var(--color2);
}

.db-calendario-mes .fc-button.fc-button-primary span::before {
    height: 28px;
    display: inline-block;
}

.fc .fc-button-primary:focus, .fc .fc-button-primary:active {
    box-shadow: none;
}

.fc .fc-button-primary:not(:disabled):active:focus, .fc .fc-button-primary:not(:disabled).fc-button-active:focus {
    box-shadow: none;
}

.fc .fc-button .fc-icon {
    line-height: 19px;
}

.db-calendario-mes .fc-col-header-cell-cushion {
    font-family: Roboto-Medium;
    font-weight: normal;
    color: var(--colorPrimario);
}

.db-calendario-me .fc-scroller {
    overflow: hidden !important;
}

.buscadormenu {
    width: 260px;
    position: relative;
    top: 0px;
    z-index: 1;
}

.inputbuscarmenu {
    border: 2px solid #DDD;
    border-radius: 30px;
    height: 30px;
    margin-top: 10px;
    margin-bottom: 5px;
    width: 100%;
    padding: 5px 10px;
}

.db-calendario-mes.fc .fc-daygrid-day-number {
    font-size: var(--fontSize14);
    padding: 6px;
}

.db-calendario-dias .fc-list-event.fc-event {
    font-size: var(--fontSize12);
    cursor: pointer;
}

.db-calendario-dias .fc-list-day-cushion {
    font-family: Roboto-Medium;
    font-weight: normal;
    font-size: var(--fontSize14);
    color: var(--colorPrimario)
}

.confirm-mini {
    max-width: 400px;
    margin: 0 auto;
}

.db-age-fecha {
    font-size: var(--fontSize12);
    font-family: Roboto-Medium;
}

.db-age-alu {
    font-size: var(--fontSize11);
    color: #888;
}

.btnbuscarmodal {
    transition: all .2s ease;
    border: 2px solid var(--color2);
    border-radius: 17px;
    color: var(--colorPrimarioOscuro);
    text-decoration: none;
    font-size: var(--fontSize21);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 34px;
    width: 34px;
    height: 34px;
    margin: 0 10px;
    padding: 0 5px;
}

    .btnbuscarmodal:hover {
        background: var(--color5);
    }

.btnbuscarmodal-nomargin {
    margin-right: 0px;
}

.botoncheck360 {
    display: inline-flex;
    align-items: center;
    flex-direction: row;
}

.labelinfoverde {
    color: #349624;
    font-family: Roboto-Medium;
}

.labelinfoform {
    line-height: 36px;
    color: var(--colorSecundario);
    font-family: Roboto-Medium;
}

.labelinfomarca {
    display: inline-flex;
    padding: 10px;
    border-radius: 5px;
    background: var(--color4);
    color: var(--colorPrimario);
    font-size: var(--fontSize12);
}

.grid360 a.NotaGrid {
    height: 42px;
    width: 42px;
    color: var(--colorPrimario);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    background: var(--color4);
    border-radius: 5px;
    margin: 5px;
    font-size: var(--fontSize12);
    margin: 0 auto;
}

    .grid360 a.NotaGrid:hover {
        background: var(--color3);
    }

.modal360 {
    min-width: 300px;
    background: #FFF;
    -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    z-index: 9999999;
    display: flex;
    flex-direction: column;
    /*top: 80px !important;
    bottom: 20px !important;*/
    min-width: 320px;
    max-height: 90%;
}

.modalBackground {
    background: rgba(0,0,0,.1);
}

.modalFondo {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,.1);
    z-index: 99;
    display: none;
}

    .modalFondo.active {
        display: flex;
    }

.modal360-500 {
    max-width: 500px;
}

.modal360ventana {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: fadein .2s;
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal360ventana.active {
    display: flex;
}

.modal360subventana {
    z-index: 99999999;
}

@media only screen and (min-width: 700px) {
    .modal360-500 {
        width: 500px;
    }

    .modal360-800 {
        width: 800px;
    }
}

.modal360-800 {
    max-width: 800px;
    max-height: calc(100% - 120px);
}

.modal360-320 {
    max-width: 320px;
}

.modal360-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.modal360-title {
    color: #333;
}

.modal360-title {
    display: flex;
    flex-direction: column;
}

.modal360-title, .modal360-t-title {
    color: #333;
    font-family: Roboto;
    font-size: var(--fontSize18);
    color: var(--colorPrimario);
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
}

    .modal360-title .modal360-t-subtitle {
        font-size: var(--fontSize12);
        color: #888;
        display: flex;
        flex-direction: column;
        margin-top: 8px;
    }

        .modal360-title .modal360-t-subtitle span {
            margin-bottom: 4px;
        }

            .modal360-title .modal360-t-subtitle span:last-of-type {
                margin-bottom: 0px;
            }

.modal360-body {
    overflow: auto;
    /*max-height: 500px;*/
}

.modal360-body-padding {
    padding: 20px;
    padding-top: 0px;
}

.modal360-body-padding-extra {
    padding: 20px;
    padding-top: 0px;
}

.modal360cerrar {
    align-self: flex-start;
    font-size: var(--fontSize23);
    color: #BBB;
    transition: all .2s ease;
    cursor: pointer;
    padding: 2px 8px;
    padding-top: 0px;
}

    .modal360cerrar:hover {
        color: var(--colorRojo);
    }

.notas-cuadrados {
    display: flex;
    flex-flow: wrap;
}

    .notas-cuadrados .NotaGrid {
        cursor: pointer;
        color: var(--colorPrimario);
        background: var(--color4);
        width: 60px;
        height: 60px;
        border-radius: 3px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        margin: 5px;
        font-size: var(--fontSize12);
        padding: 5px;
        user-select: none;
        -moz-user-select: none;
        -webkit-user-select: none;
        -ms-user-select: none;
    }

        .notas-cuadrados .NotaGrid:hover {
            background: var(--color3);
        }

        .notas-cuadrados .NotaGrid.nota-marcada {
            background: var(--colorPrimario);
            color: #FFF;
        }

            .notas-cuadrados .NotaGrid.nota-marcada:hover {
                background: var(--colorPrimarioOscuro);
            }

.btnmodalselect {
    padding: 10px;
    font-size: var(--fontSize21);
}

.grid360-container .dt-buttons {
    display: flex;
    justify-content: flex-end;
    margin: 0 0 10px 0;
}

    .grid360-container .dt-buttons a {
        background: var(--colorSecundario);
        color: var(--color5);
        text-decoration: none;
        font-size: var(--fontSize12);
        padding: 5px;
        border-radius: 3px;
        margin-left: 5px;
    }

        .grid360-container .dt-buttons a:hover {
            background: var(--colorPrimario);
        }

.pag-filtros .alumnoseleccionado, .pag-filtros .titulopagina {
    background: #FFF;
    border: none;
    font-size: var(--fontSize16);
    color: var(--colorPrimario);
    margin-left: 10px;
}

.pag-filtros .titulopagina {
    font-size: var(--fontSize18);
    margin-left: 0px;
    margin-bottom: 10px;
}

.grid360 a.grid360linkrow {
    color: var(--colorPrimarioOscuro);
}

.clickcelda {
    cursor: pointer;
}

.grid360-alumnofila {
    display: flex;
    align-items: center;
}

.fotoalumno {
    border: 2px solid #D6D6D6;
    border-radius: 100%;
    width: 32px;
    height: 32px;
    margin-right: 10px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
    flex-shrink: 0;
}

.fotoalumno22 {
    width: 22px;
    height: 22px;
    border: 1px solid #D6D6D6;
}

.fotoalumnoimg {
    object-fit: cover;
    width: 50px;
    height: 50px;
    border: 2px solid var(--color4);
}

.tabs360 .tabs360-headers, .tabs360 .tabs360-headers-sub {
    display: flex;
    margin-bottom: 10px;
    border-bottom: 2px solid var(--color2);
    padding-bottom: 10px;
    align-items: center;
    flex-flow: wrap;
    /*overflow-x: auto;*/
}

.tabs360 .tabs360-headers-sub {
    border-bottom: none;
    flex-flow: wrap;
}

.tabs360 .tab360-header, .boton360, .tabs360 .tab360-header-sub {
    cursor: pointer;
    display: inline-flex;
    padding: 6px 10px;
    background: var(--color3);
    color: var(--colorSecundario);
    margin-right: 10px;
    border-radius: 5px;
    font-size: var(--fontSize14);
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    font-family: Roboto-Medium;
    flex-shrink: 0;
}

.tabs360 .tab360-header-sub {
    background: var(--color3);
    margin: 5px;
}

    .tabs360 .tab360-header-sub:first-of-type {
        margin-left: 0px;
    }

.tab360-header, .tab360-header-sub {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 32px;
}

.enlace360 {
    color: var(--colorPrimario);
    text-decoration: underline;
    cursor: pointer;
}

.enlace360icono {
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 4px 6px;
    border-radius: 3px;
    color: #FFF;
    background: var(--colorPrimario);
    flex-shrink: 0;
}

    .enlace360icono:hover {
        opacity: .8;
    }

    .enlace360icono .texto {
        font-size: var(--fontSize11);
    }

    .enlace360icono .icono {
        font-size: var(--fontSize11);
        margin-right: 5px;
        margin-top: -2px;
    }

        .enlace360icono .icono.far.fa-envelope {
            margin-top: 0px;
        }

.db-mb-boton-verde .enlace360icono {
    color: #FFF;
    background: #4dcf37;
}

.boton360flotante {
    position: fixed;
    bottom: 40px;
    right: 40px;
    border-radius: 100%;
    background: var(--colorSecundario);
    width: 55px;
    height: 55px;
    color: #FFF;
    border: 0;
    box-shadow: 0px 0px 2px #888;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: var(--fontSize24);
    z-index: 99999;
    cursor: pointer;
}

    .boton360flotante:hover {
        background: var(--colorPrimario);
    }

.boton360flotantemini {
    right: 110px;
    width: 40px;
    height: 40px;
    font-size: var(--fontSize18);
    bottom: 47px;
}

.tabs360 .tab360-header.active, .boton360, .tabs360 .tab360-header-sub.active {
    background: var(--colorSecundario);
    color: #FFF;
}

.boton360cancelar {
    background: #888;
}

.boton360:last-child {
    margin-right: 0;
}

.boton360:hover {
    background: var(--colorPrimario);
}

.boton360cancelar:hover {
    background: #777;
}

.tab360-tab, .tab360-tab-sub {
    display: none;
    padding-top: 10px;
}

    .tab360-tab.active, .tab360-tab-sub.active {
        display: block;
    }

.oculto {
    display: none !important;
}

/*---------------------------------------*/
/* Cargando 360*/
/*---------------------------------------*/

.cargando360, .cargandoEventos {
    display: none;
    position: fixed;
    z-index: 99999999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    justify-content: center;
    align-items: center;
    background: rgba(255,255,255,.4);
}

    .cargandoEventos::after {
        content: "Generando eventos";
        font-size: 24px;
        display: block;
    }

.cargando360div {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.lds-ripple {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

    .lds-ripple div {
        position: absolute;
        border: 4px solid var(--colorPrimario);
        opacity: 1;
        border-radius: 50%;
        animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .lds-ripple div:nth-child(2) {
            animation-delay: -0.5s;
        }

@keyframes lds-ripple {
    0% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 72px;
        height: 72px;
        opacity: 0;
    }
}

.modal360-bodyform {
    display: flex;
    flex-direction: column;
}

.input360, .flex-form-row input[type="text"], .flex-form-row select, .flex-form-row input[type="number"] {
    border: 1px solid #DDD;
    border-radius: 5px;
    padding: 10px;
    font-family: Roboto;
    font-size: var(--fontSize14);
}

.input360, .flex-form-col select {
    color: #333;
}

    .input360:focus, .flex-form-row input[type="text"]:focus, .flex-form-row select:focus, .flex-form-row input[type="number"]:focus, .datepicker:focus, textarea:focus {
        border-color: var(--color2) !important;
    }

textarea.input360 {
    resize: vertical;
}

.input360-300 {
    width: 300px;
}

.modal360-bodyform input[type="text"], .modal360-bodyform input[type="number"] {
    margin-top: 4px;
    border: 1px solid #DDD;
    border-radius: 5px;
    padding: 10px;
}

.modal360-bodyform .camponumero {
    width: 100px;
}

.camponumero {
    width: 100px;
    text-align: center;
}

.camponumero-min {
    width: 50px;
    text-align: center;
}

.campofecha {
    max-width: 200px;
    text-align: center;
}

.modal360-bodyform input[type="button"] {
    align-self: flex-end;
    margin-top: 10px;
    border: none;
    background: var(--colorSecundario);
    border-radius: 5px;
    color: #FFF;
    padding: 6px 10px;
    cursor: pointer;
}

.grid360horario {
    table-layout: fixed;
}

    .grid360horario td {
        padding: 10px;
        width: auto;
        border-left: 1px solid #EEE;
    }

.grid360.grid360horario tr.HeaderGrid th:first-child, .grid360.grid360horario tr.RowGrid td:first-child, .grid360.grid360horario tr.AlternatingGrid td:first-child {
    padding: 10px 0;
    width: 120px;
    text-align: center;
    border: none;
}

.grid360.grid360horario tr.RowGrid:hover, .grid360.grid360horario tr.AlternatingGrid:hover {
    background-color: transparent;
}

.label360 {
    display: flex;
    width: 100%;
    margin-bottom: 10px;
    font-size: var(--fontSize16);
    font-family: Roboto-Medium;
    color: var(--colorPrimario);
    padding-bottom: 5px;
    border-bottom: 2px solid var(--color4);
}

.boton360 {
    display: inline-flex;
    text-decoration: none;
    border: none;
}

.boton360rojo {
    background: var(--colorRojo);
}

    .boton360rojo:hover {
        background: var(--colorRojoOscuro);
    }

.label360.label360boton {
    align-items: center;
    justify-content: space-between;
}

.modal360-body .label360 {
    font-size: var(--fontSize14);
    font-family: Roboto;
    border-bottom-width: 1px;
}

.pag-filtros-margin {
    margin-bottom: 10px;
}

.originalTextareaInfo {
    text-align: right;
    font-size: var(--fontSize12);
    color: #888;
}

.flex1 {
    flex: 1;
}

.labelrojo {
    color: var(--colorRojo);
}

.check360 {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

    .check360 label {
        cursor: pointer;
        color: #222;
        user-select: none;
        -moz-user-select: none;
        -webkit-user-select: none;
        -ms-user-select: none;
        padding: 0;
        padding-left: 4px;
    }

    .check360 input {
        margin: 0;
        margin-right: 4px;
        cursor: pointer;
    }

.check360derecha label {
    padding-left: 0;
    padding-right: 4px;
}

.numericupdown360 {
    margin-bottom: 10px;
}

    .numericupdown360 table tr {
        height: 25px;
    }

    .numericupdown360 input[type="button"] {
        border: 0 !important;
        width: 20px !important;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 !important;
        height: 20px !important;
        background: var(--colorSecundario) !important;
        color: #FFF;
        cursor: pointer;
        border-radius: 100%;
    }

        .numericupdown360 input[type="button"]:hover {
            background: var(--colorPrimario) !important;
        }

    .numericupdown360 table tbody > tr:first-child > td:first-child {
        vertical-align: top !important;
        padding-right: 5px !important;
        line-height: 32px;
    }

.margintop5 {
    margin-top: 5px !important;
}

.marginbottom5 {
    margin-bottom: 5px !important;
}

.margintop10 {
    margin-top: 10px !important;
}

.marginbottom10 {
    margin-bottom: 10px;
}

.marginleft5 {
    margin-left: 5px;
}

.marginleft10 {
    margin-left: 10px;
}

.marginleft20 {
    margin-left: 20px;
}

.marginright5 {
    margin-right: 5px;
}

.marginright10 {
    margin-right: 10px;
}

.margintop20 {
    margin-top: 20px;
}

.marginbottom20 {
    margin-bottom: 20px;
}


.lblinfowarning {
    border-radius: 5px;
    color: #d19203;
    background: #fff2d5;
    padding: 10px;
    display: inline-flex;
}

    .lblinfowarning:empty {
        display: none;
    }

.dot-separator360 {
    color: #DDD;
    margin: 0 10px;
    font-size: var(--fontSize10);
}



.cuadrante-nombrealumno {
    font-size: var(--fontSize12);
    width: 180px;
}

.grid360.gridcuadrante th a {
    text-decoration: none;
    color: #FFF;
    font-weight: normal;
    font-family: Roboto-Medium;
}

.input100 {
    width: 100%;
}

.input50 {
    width: 50px;
}

.agregarcol {
    font-size: var(--fontSize12);
    border-radius: 50%;
    width: 21px;
    height: 21px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-top: 8px;
    border: 2px solid white;
    text-align: center;
    margin-left: 10px;
}

.NotaGridProg {
    min-height: 100%;
    min-width: 100%;
    height: 50px;
    width: 100%;
    display: block;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    padding-top: 13px;
    font-weight: 500;
    color: #555 !important;
}

.CabeceraGirada {
    white-space: nowrap;
    -ms-transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    /*writing-mode: tb-rl;*/
    width: 30px;
    display: inline-block;
    margin-bottom: 20px;
    _margin-bottom: 0px;
    margin-top: 200px;
}

.CabeceraGiradaBlanco5 {
    white-space: nowrap;
    -ms-transform: rotate(270deg);
    -webkit-transform: rotate( 270deg );
    -moz-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    /* writing-mode: tb-rl; */
    width: 30px;
    display: inline-block;
    /* margin-bottom: -20px; */
    margin-top: 185px;
    color: white !important;
    width: 45px;
    margin-bottom: 20px;
    margin-bottom: 20px;
    line-height: 28px;
}


.CabeceraGiradaBlanco {
    white-space: nowrap;
    -ms-transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    /*writing-mode: tb-rl;*/
    width: 30px;
    display: inline-block;
    margin-bottom: 20px;
    margin-top: 200px;
    /*color:white !important;*/
}

.grid360-container-botonflotante {
    padding-bottom: 80px;
}

span[style*="visibility:hidden;"] {
    display: none;
}

.grid-separar {
    display: flex;
    width: 100%;
    justify-content: space-around;
}

    .grid-separar span {
        display: flex;
        flex: 1;
        justify-content: center;
        align-items: center;
    }

.panel360 {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 9999;
    display: none;
    background: #FFF;
    padding: 20px;
    border-radius: 5px;
    overflow: auto;
    min-height: 100%;
}

.aulavirtualcontainer {
    margin-top: 20px;
}

    .aulavirtualcontainer .aluclasecontent {
        width: 120px;
        height: 120px;
        border: none;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        cursor: pointer;
    }

        .aulavirtualcontainer .aluclasecontent .imagealuclase {
            width: 70px;
            height: 70px;
            background-color: #CCC;
            border: 2px solid var(--color2);
            border-radius: 100%;
            background-size: cover;
            background-position: center center;
        }

        .aulavirtualcontainer .aluclasecontent .nombrealumno {
            font-size: var(--fontSize11);
            margin-top: 4px;
            text-align: center;
            color: var(--colorPrimario);
        }

.AulaIntegral {
    display: block;
    margin: auto;
    width: 900px;
}

ul#brainstorming li {
    margin: 1em;
    display: inline-block;
}

.nomargintop {
    margin-top: 0 !important;
}

.nopaddingtop {
    padding-top: 0 !important;
}

.nomarginbottom {
    margin-bottom: 0 !important;
}

.nomarginleft {
    margin-left: 0 !important;
}

.nomarginright {
    margin-right: 0 !important;
}

.width100p {
    width: 100%;
}

.modal360-panel {
    display: none;
}

    .modal360-panel.active {
        display: block;
        position: fixed;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

.ayudapaginavacia {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--fontSize16);
    color: #888;
    padding: 50px;
    padding-bottom: 40px;
}

    .ayudapaginavacia .ico {
        font-size: var(--fontSize30);
        margin-right: 10px;
        color: #fdcb6e;
    }

.entradaprofesor {
    border-bottom: 1px solid #EEE;
    padding: 5px 10px 15px;
    display: block;
    width: calc(100% - 20px);
    margin-bottom: 5px;
    color: var(--colorPrimario);
}

    .entradaprofesor input {
        margin-right: 5px;
    }

    .entradaprofesor label {
        cursor: pointer;
    }

.masterdetail360 {
    display: flex;
    /*flex-flow: wrap;*/
    width: 100%;
}

.md-master {
    max-width: 300px;
    flex-shrink: 0;
}

.md-master-200 {
    width: 200px;
}

.md-master-250 {
    width: 250px;
}

    .md-master-250.md-master-scroll {
        width: 270px;
    }

.md-master-300 {
    width: 300px;
}

.md-detail {
    flex: 1;
    margin-left: 20px;
}

.md-detail-border {
    padding-left: 20px;
    border-left: 2px solid var(--color3);
}

/*.mdm-calendario .fc-daygrid-day-events {
    display: none;
}*/

.mdm-calendario td {
    text-align: center;
    font-size: var(--fontSize14);
}

.mdm-calendario.fc .fc-daygrid-day-top {
    justify-content: center;
}

.mdm-calendario-eventos {
    padding: 10px 0;
    border-top: 1px solid #EEE;
    margin-top: 20px;
}

.tipoevento {
    font-size: var(--fontSize14);
    display: flex;
    align-items: center;
    height: 38px;
    padding: 0 10px;
    cursor: pointer;
    border-bottom: 1px solid #EEE;
}

    .tipoevento:last-of-type {
        border-bottom: 0;
    }

    .tipoevento:hover {
        background: #F4F4F4;
    }

    .tipoevento .color {
        width: 18px;
        height: 18px;
        display: block;
        border-radius: 100%;
        margin-right: 5px;
    }

    .tipoevento.active {
        background: var(--color3);
        border-bottom-color: var(--color2);
        color: var(--colorPrimario);
    }

@media only screen and (max-width: 700px) {
    .mpre-menumini {
        display: flex;
        top: unset;
        bottom: 0;
        left: 0;
        width: 100%;
        right: 0;
        height: 60px;
        flex-direction: row;
        justify-content: space-between
    }

    .contenidopagina {
        padding-left: 0px;
        padding-bottom: 60px;
    }

    .db-calendario {
        min-width: 340px;
    }

    .leftmenulateralcontainer.opened {
        left: 0px;
        padding-bottom: 60px;
    }
}

.flatpickr-calendar.open {
    z-index: 99999999 !important;
}

.input360.datepicker {
    text-align: center;
}

.colorpicker360 {
    width: 74px;
}

.displaynone {
    display: none !important;
}

.opacity0 {
    opacity: 0;
    position: absolute;
    pointer-events: none;
}

.grid360.gridcuadrante tr.califPorcentajes td.califPorcentaje {
    font-size: var(--fontSize11);
    color: #000;
    text-align: center;
}

.grid360.gridcuadrante tr.califPorcentajes {
    position: sticky;
    top: 60px;
}

.grid360.gridcuadrante th .califFecha {
    font-size: var(--fontSize8);
    color: #333;
}


.grid360.gridcuadrante a.NotaGridProg.califConComentario {
    /*text-decoration: underline;*/
    position: relative;
}

    .grid360.gridcuadrante a.NotaGridProg.califConComentario:after {
        content: "";
        font-family: 'Font Awesome 5 Free';
        font-weight: 500;
        font-size: var(--fontSize11);
        position: absolute;
        right: -4px;
        top: 10px;
        color: var(--colorPrimario);
    }

.grid360.gridcuadrante thead th a div.califNota {
    color: #000;
}

.calif-color-oscuro-1, .calif-color-oscuro-2, .calif-color-oscuro-3, .calif-color-oscuro-4 {
}

.calif-color-claro-1, .calif-color-claro-2, .calif-color-claro-3, .calif-color-claro-4 {
}

.calif-color-oscuro-1 {
    background-color: #22a6b3;
}

.calif-color-claro-1 {
    background-color: #7ed6df;
}

.calif-color-oscuro-2 {
    background-color: #f0932b;
}

.calif-color-claro-2 {
    background-color: #ffbe76;
}

.calif-color-oscuro-3 {
    background-color: #6ab04c;
}

.calif-color-claro-3 {
    background-color: #badc58;
}

.calif-color-oscuro-4 {
    background-color: #eb4d4b;
}

.calif-color-claro-4 {
    background-color: #ff7979;
}

.grid360.gridcuadrante th a {
    text-decoration: none;
    font-weight: normal;
    font-family: Roboto-Medium;
}

.gridcuadrante .titulo {
    width: 52px;
    max-width: 52px;
}

.gridcuadrante .actividad {
    width: 35px;
    max-width: 35px;
}

.agregarcol {
    font-size: var(--fontSize12);
    border-radius: 50%;
    width: 21px;
    height: 21px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-top: 8px;
    border: 2px solid white;
    text-align: center;
    margin-left: 10px;
    color: #FFF;
}

.NotaGridProg {
    min-height: 100%;
    min-width: 100%;
    height: 50px;
    width: 100%;
    display: block;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    padding-top: 13px;
    font-weight: 500;
    color: #555 !important;
}

.CabeceraGirada {
    white-space: nowrap;
    -ms-transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    width: 30px;
    display: inline-block;
    margin-bottom: 20px;
    _margin-bottom: 0px;
    margin-top: 200px;
}

.CabeceraGiradaBlanco5 {
    white-space: nowrap;
    -ms-transform: rotate(270deg);
    -webkit-transform: rotate( 270deg );
    -moz-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    width: 30px;
    display: inline-block;
    margin-top: 185px;
    width: 45px;
    margin-bottom: 20px;
    color: #000;
    margin-bottom: 20px;
    line-height: 28px;
}


.CabeceraGiradaBlanco {
    white-space: nowrap;
    -ms-transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    width: 30px;
    display: inline-block;
    margin-bottom: 20px;
    margin-top: 200px;
}

.ebard360 {
    font-size: var(--fontSize17);
}

.ebard360sub {
    font-size: 8px;
    line-height: 14px;
}

.boton360i {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3px 6px;
    height: 39px;
}

    .boton360i .texto {
        font-size: var(--fontSize11);
        margin-top: 2px;
    }

    .boton360i .icono {
        font-size: var(--fontSize17);
    }

.eventotitulo {
    font-size: var(--fontSize18);
    margin-bottom: 8px;
}

.eventodescripcion {
    font-size: var(--fontSize14);
    color: #444;
}

.lblinfo {
    color: #888;
    font-style: italic;
    font-size: var(--fontSize14);
}

/* Los distintos colores de los links del menú lateral*/

.mpre-menumini .mpre-tcoption.linkazul {
    /*color: #b9d6e8;*/
    color: var(--SJDazul);
}

.mpre-menumini .mpre-tcoption.linkazulSuave {
    /*color: #b9d6e8;*/
    color: var(--SJDazulSuave);
}

.mpre-menumini .mpre-tcoption.linklima {
    color: var(--SJDlima);
}

.mpre-menumini .mpre-tcoption.linkamarillo {
    /*color: #fce8a0;*/
    color: var(--SJDamarillo);
}

.mpre-menumini .mpre-tcoption.linkcrema {
    /*color: #fce8a0;*/
    color: var(--SJDcrema);
}

.mpre-menumini .mpre-tcoption.linkverde {
    /*color: #6ab04c;*/
    color: var(--SJDverde);
}

.mpre-menumini .mpre-tcoption.linkrojo {
    /*color: #fabcba;*/
    color: var(--SJDrojo);
}

.mpre-menumini .mpre-tcoption.linkrojoSuave {
    /*color: #fabcba;*/
    color: var(--SJDrojoSuave);
}

.mpre-menumini .mpre-tcoption.linknaranja {
    /*color: #f8cfa2;*/
    color: var(--SJDnaranja);
}

.mpre-menumini .mpre-tcoption.linkturquesa {
    color: #d9f9f9;
}

.mpre-menumini .mpre-tcoption.linkmorado {
    color: #eec8f6;
}

.mpre-menumini .mpre-tcoption.linkmagenta {
    color: var(--SJDmagenta);
}

.mpre-menumini .mpre-tcoption.linklavanda {
    color: var(--SJDlavanda);
}

/*------------------------------------------------------------*/

.tablainformes td {
    padding: 0 !important;
}

.tablainformes {
    margin: 10px 0;
    width: 100%;
}

    .tablainformes .resaltartexto {
        font-family: Roboto-Medium;
    }

.labelgridtitulo {
    color: var(--colorPrimario);
    margin-top: 10px;
}

.inputcenter {
    text-align: center;
}

.dataTables_empty {
    padding: 20px;
    color: #666;
    font-style: italic;
    /*display: block;*/
    line-height: 40px;
}

.boton360iconocirculo {
    display: flex;
    flex-direction: column;
    background: transparent;
    color: var(--colorSecundario);
    align-items: center;
    margin-right: 0px;
    padding: 6px;
}

    .boton360iconocirculo:last-of-type {
        padding-right: 0px;
    }

    .boton360iconocirculo:hover {
        background: transparent;
    }

    .boton360iconocirculo .icono {
        display: inline-flex;
        width: 36px;
        height: 36px;
        justify-content: center;
        align-items: center;
        border: 2px solid var(--colorSecundario);
        border-radius: 100%;
        margin: 0 5px;
        font-size: var(--fontSize18);
        background: var(--colorSecundario);
        color: #FFF;
    }

.boton360iconocirculo-min .icono {
    width: 30px;
    height: 30px;
    font-size: var(--fontSize14);
}

.boton360iconocirculo.boton360cancelar, .boton360iconocirculo.boton360cancelar:hover {
    background: transparent;
}

.boton360iconocirculo:hover .icono {
    color: #FFF; /*var(--color4);*/
    background-color: var(--colorPrimario);
    border-color: var(--colorPrimario);
}

.boton360iconocirculo.boton360cancelar .icono {
    color: #FFF;
    background-color: #999;
    border-color: #999;
}

.boton360iconocirculo.boton360cancelar:hover .icono {
    background-color: #888;
    border-color: #888;
}

.boton360iconocirculo .texto {
    margin-top: 3px;
    font-size: var(--fontSize11);
    line-height: 11px;
    text-align: center;
}

.boton360iconocirculo.boton360cancelar .texto {
    color: #999;
}

.boton360iconocirculo-rojo:hover .icono {
    color: var(--colorRojoClaro2);
    border-color: var(--colorRojo);
    background-color: var(--colorRojo);
}

.boton360iconocirculo-rojo:hover .texto {
    color: var(--colorRojo);
}

.icono.far.fa-paper-plane {
    padding-right: 4px;
}

.pag-botones {
    display: flex;
    align-items: center;
}

.labelinfo360 {
    display: flex;
    font-family: Roboto;
    font-style: italic;
    font-size: var(--fontSize14);
    color: #888;
}

.fc .fc-toolbar.fc-header-toolbar {
    margin-bottom: 10px;
}

.input360-min {
    width: 50px;
    text-align: center;
}

.input360-med {
    width: 80px;
    text-align: center;
}

.cuadrantetipo {
    padding: 2px 4px;
    display: inline-flex;
    width: 100%;
    background: var(--color4);
}

.enlacedb {
    text-decoration: none;
    color: #222;
}

.me-titulo {
    font-size: var(--fontSize18);
}

.me-fecha {
    font-size: var(--fontSize12);
    color: #888;
}

.me-mensaje {
    color: #333;
}

.me-destinatario {
    color: var(--SJDazul);
}

.tablalistados td {
    padding: 5px;
    font-size: var(--fontSize14);
}

.accordion360.accordion360-header {
    display: flex;
    align-items: center;
    height: 40px;
    background: var(--color4);
    color: var(--colorPrimario);
    padding: 0 10px;
    margin: 5px 0;
    border-radius: 2px;
    cursor: pointer;
}

    .accordion360.accordion360-header .icono {
        margin-right: 5px;
    }

.plan-md-boton {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
    padding: 0 5px 0 10px;
    text-decoration: none;
    margin-bottom: 10px;
    border-radius: 5px;
    background: var(--color5);
    width: 300px;
}

.plan-md-botontitulo {
    background: #FFF;
    border-bottom: 2px solid var(--color3);
    border-radius: 0px;
}

.plan-md-boton a {
    text-decoration: none;
}

.plan-md-boton-titulo {
    display: flex;
    align-items: center;
}

    .plan-md-boton-titulo .icon {
        width: 30px;
        height: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 100%;
        margin-right: 10px;
        background-color: var(--color3);
    }

.rbalineado {
    display: flex;
    align-items: center;
    font-size: var(--fontSize18);
    margin-right: 10px;
}

    .rbalineado:last-of-type {
        margin-right: 0px;
    }

    .rbalineado input {
        margin: 0;
        margin-right: 3px;
        margin-left: 5px;
    }

.tablacriteriolomce {
    border-collapse: separate;
    background: var(--color4);
}

    .tablacriteriolomce th, .tablacriteriolomce td {
        padding: 10px;
        background: #FFF;
        font-size: var(--fontSize14);
    }

    .tablacriteriolomce .cabeceracriterio {
        text-align: left;
        font-weight: normal;
        background: var(--color4);
        color: var(--colorPrimarioOscuro);
    }

        .tablacriteriolomce .cabeceracriterio h3, .tablacriteriolomce .items .item h3 {
            font-weight: normal;
            font-family: Roboto-Medium;
            margin: 0 0 5px 0;
            font-size: var(--fontSize16);
            color: var(--colorPrimarioOscuro);
        }

.dataTables_paginate .pagination {
    display: flex;
    padding-left: 0px;
    justify-content: flex-end;
}

    .dataTables_paginate .pagination li {
        list-style-type: none;
        background: var(--SJDazul);
        padding: 4px 8px;
        border-radius: 3px;
    }

        .dataTables_paginate .pagination li a {
            text-decoration: none;
            color: #FFF;
        }

        .dataTables_paginate .pagination li:first-of-type, .paginate_button:not(:last-of-type) {
            margin-right: 20px;
        }

.form-control.input-sm {
    border-radius: 5px;
    border: 1px solid #CCC;
    padding: 6px;
    margin-bottom: 10px;
    margin-left: 4px;
    width: 200px;
}

    .form-control.input-sm:focus {
        border-color: var(--color2);
    }

.imagechart360 {
    object-position: 0 -11px;
}

.floatleft {
    float: left;
}

.jconfirm-buttons {
    display: block;
    width: 100%;
    text-align: right;
}

.jconfirm.jconfirm-white .jconfirm-box .jconfirm-buttons button, .jconfirm.jconfirm-light .jconfirm-box .jconfirm-buttons button {
    font-family: 'Roboto-Medium';
    font-variant: small-caps;
    text-transform: none;
    font-size: var(--fontSize14);
    font-weight: 400;
}

.flex-form-col-botones-eventos {
    display: flex;
    flex-direction: row;
}

    .flex-form-col-botones-eventos .flex-form-col {
        padding: 0;
    }

    .flex-form-col-botones-eventos .nuevotipo, .botonnuevotipo {
        width: 68px;
    }

    .flex-form-col-botones-eventos .boton360i {
        margin: 0 2px;
    }

.db-mbb-botonesredes {
    display: flex;
    justify-content: space-around
}

    .db-mbb-botonesredes a {
        text-decoration: none;
    }

    .db-mbb-botonesredes .info-box {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: var(--fontSize11);
        background: var(--color4);
        padding: 6px;
        border-radius: 5px;
        color: var(--colorPrimario);
        margin: 0 4px;
    }

        .db-mbb-botonesredes .info-box:hover {
            background: var(--color3);
        }

        .db-mbb-botonesredes .info-box .icon {
            font-size: var(--fontSize24);
        }

        .db-mbb-botonesredes .info-box .text {
            text-align: center;
        }

.tablapadres {
    border-collapse: collapse;
    table-layout: fixed;
}

    .tablapadres tr td, .tablapadres tr th {
        padding: 10px !important;
        text-align: left !important;
    }

.jconfirm .jconfirm-box .jconfirm-buttons button.btneditarevento, .jconfirm .jconfirm-box .jconfirm-buttons button.btneliminarevento {
    display: none;
}

.mdd-calendario .fc-daygrid-event {
    white-space: inherit;
}

.grid360 {
    width: 100% !important;
    border-collapse: collapse !important;
}

    .grid360 tr {
        height: 50px;
    }

        .grid360 tr.even {
            background-color: #FAFAFA;
        }

        .grid360 tr:not(.HeaderGrid):hover {
            background-color: #FAFAFA;
            color: var(--colorPrimario);
        }

    .grid360 tbody tr td {
        border: 1px solid #ddd !important;
        padding: 5px;
    }

    .grid360 thead th, .grid360 thead td {
        border-bottom: none;
    }

    .grid360 .HeaderGrid {
        border: 1px solid #DDD;
    }

table.dataTable thead th, table.dataTable thead td {
    border-bottom: 1px solid #DDD;
}

.dataTables_wrapper .dataTables_filter {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 10px;
    align-items: center;
    flex-flow: wrap;
}

    .dataTables_wrapper .dataTables_filter input, .dataTables_wrapper .dataTables_filter select {
        background: #FFF;
        border: 1px solid #CCC;
        border-radius: 20px;
        padding: 10px 15px;
        width: 300px;
        margin-right: 20px;
    }

        .dataTables_wrapper .dataTables_filter input:focus,
        .dataTables_wrapper .dataTables_filter select:focus {
            border-color: var(--SJDazul);
        }

    .dataTables_wrapper .dataTables_filter .lblbusqueda {
        margin-right: 5px;
    }

.db-boton-cuadrado {
    color: var(--colorPrimario);
    background: var(--color4);
    border: 2px solid var(--color2);
    border-radius: 5px;
    width: calc(100%);
    padding: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

    .db-boton-cuadrado .ico {
        font-size: var(--fontSize21);
        margin-right: 10px;
        color: var(--color2);
    }

.db-menu-botones a {
    text-decoration: none;
}

.col-menubotones {
    margin-left: 0px;
}

.fototexto {
    display: flex;
    align-items: center;
}

.dt-200 {
    width: 200px;
}

.dataTables_wrapper .dataTables_info {
    color: #666;
    font-size: var(--fontSize14);
}

.dataTables_wrapper .dataTables_paginate {
    margin-top: 20px;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

    .dataTables_wrapper .dataTables_paginate .paginate_button {
        padding: 4px 10px;
        margin-right: 10px;
        border: 2px solid transparent;
    }

        .dataTables_wrapper .dataTables_paginate .paginate_button:active {
            box-shadow: none;
        }

        .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
            color: var(--SJDazul) !important;
            background: transparent;
            border: 2px solid var(--color2);
        }

        .dataTables_wrapper .dataTables_paginate .paginate_button.current {
            background: var(--color3);
            border: 2px solid var(--color2);
        }

            .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
                background: var(--color2);
                border: 2px solid var(--SJDazul);
            }

.col-menubotones .db-menu-botones {
    position: sticky;
    top: 76px;
}

.grid360lista tr.odd, .grid360lista tr.even {
    background: #FFF;
}

.grid360lista.grid360listalink tr.odd, .grid360lista.grid360listalink tr.even {
    cursor: pointer;
}

.grid360lista .HeaderGrid {
    border-color: transparent;
}

.grid360lista tbody tr td {
    border-color: transparent !important;
    padding: 5px;
}

.grid360lista tbody tr:not(:last-of-type) td {
    border-bottom: 1px solid #EEE !important;
}

.grid360lista {
    border: 1px solid transparent;
}

    .grid360lista thead {
        position: absolute !important;
        opacity: 0;
        pointer-events: none;
    }

.dt-info {
    color: #666;
}

.jconfirm-box-container.col-md-4 {
    width: 360px;
    margin: auto;
}

.form-prompt {
    display: flex;
    flex-direction: column;
}

.jconfirm-content .form-control {
    padding: 8px;
    margin-top: 10px;
    border-radius: 3px;
    border: 1px solid #DDD;
    width: 100%;
    margin-bottom: 12px;
}

.iinfo {
    color: #888;
    font-style: italic;
    font-size: var(--fontSize14);
    margin: 10px 0 20px;
}

.form-prompt label {
    color: #444;
}

.form-prompt input::placeholder {
    color: #bbb;
    opacity: 1;
}

.btntopcambiarcentro {
    border: 2px solid #ffe0c3;
}

.cambiarcentro {
    font-size: var(--fontSize14);
    margin: 0 10px 5px;
}

.menuvacio {
    color: #888;
    margin-top: 10px;
}

.imagenpreview {
    background-image: url('../images/noimage.png');
    background-size: contain;
    background-position: left center;
    background-repeat: no-repeat;
    height: 100px;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.archivobtnwrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 10px;
}

.btneliminararchivo {
    color: var(--colorRojo);
    cursor: pointer;
    margin-left: 10px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .btneliminararchivo:hover {
        background-color: var(--colorRojoClaro2);
    }

.gamacolores {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 2px solid #EEE;
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    width: 100%;
}

.checkcon-nivel, .checkcon-gama {
    font-size: var(--fontSize21);
    color: #CCC;
}

.colorswrapper {
    display: flex;
}

    .colorswrapper .color:last-of-type {
        margin-right: 0px;
    }

.gamacolores .color {
    border-radius: 4px;
    width: 20px;
    height: 20px;
    display: block;
    margin-right: 4px;
}

.gamacolores.active {
    border-color: var(--SJDazul);
}

    .gamacolores.active .checkcon-gama {
        color: var(--SJDazul);
    }

.switch360, .switch360checkbox, .switch360marcartodo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
    cursor: pointer;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    font-size: var(--fontSize14);
}

.actions-center .switch360checkbox {
    height: 50px;
    display: inline-flex;
    margin-left: 15px !important;
    margin-right: 0 !important;
}

.actions-flex {
    display: flex;
    align-items: center;
    justify-content: center;
}

.switch360marcartodo {
    justify-content: flex-end;
}

.switch360 .fas {
    font-size: var(--fontSize21);
    color: var(--colorPrimario);
}

.switch360checkbox .fas, .switch360checkbox .far,
.switch360marcartodo .fas, .switch360marcartodo .far {
    font-size: var(--fontSize21);
    color: #CCC;
}

.switch360marcartodo .fas, .switch360marcartodo .far {
    margin-left: 10px;
}

    .switch360checkbox .fas.checked, .switch360checkbox .far.checked,
    .switch360marcartodo .fas.checked, .switch360marcartodo .far.checked {
        font-size: var(--fontSize21);
        color: var(--colorPrimario);
    }

.switch360:hover span, .switch360checkbox:hover span, .switch360marcartodo:hover span {
    color: var(--colorPrimario);
}

.flex-form-row-container {
    align-items: flex-start;
    justify-content: center;
    flex-flow: wrap;
}

.flex-form-col-container {
    align-items: center;
    justify-content: flex-start;
    flex-flow: column;
}

.flex-form-row-container > .flex-form-col {
    min-width: 300px;
}

.flex-form-row-container > .flex-form-col {
    padding: 0 20px;
}

    .flex-form-row-container > .flex-form-col:first-of-type {
        padding-left: 0px;
        padding-right: 20px;
    }

    .flex-form-row-container > .flex-form-col:last-of-type {
        padding-left: 20px;
        padding-right: 0px;
    }

.gamacolorescontainer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 2px;
}

@media only screen and (max-width: 700px) {
    .pag-content {
        padding: 20px 10px;
    }

    .flex-form-row-container > .flex-form-col:not(:first-of-type) {
        margin-top: 10px;
    }

    .flex-form-row-container > .flex-form-col {
        padding: 0;
    }

        .flex-form-row-container > .flex-form-col:first-of-type {
            padding-left: 0px;
            padding-right: 0px;
        }

        .flex-form-row-container > .flex-form-col:last-of-type {
            padding-left: 0px;
            padding-right: 0px;
        }

    .gamacolorescontainer {
        margin-top: 10px;
        align-items: center;
    }
}

.breadcrum {
    display: flex;
    align-items: center;
}

    .breadcrum a {
        text-decoration: none;
    }

.bc-separator {
    font-size: var(--fontSize14);
    color: #CCC;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 3px;
}

.dataTables_wrapper {
    width: 100%;
}

.card360 {
    border: 2px solid #EEE;
    border-radius: 10px;
    cursor: pointer;
}

    .card360:hover {
        border-color: var(--color2);
    }

.card360titulo {
    padding: 15px 10px;
    font-size: var(--fontSize16);
    color: #333;
}

.card360-separator {
    height: 2px;
    background: var(--color3);
}

.card360info {
    display: flex;
    flex-direction: column;
    color: #888;
    font-size: var(--fontSize12);
    line-height: 18px;
    padding: 10px;
}

.card360container {
    display: grid;
    grid-template-columns: repeat(auto-fill,290px);
    grid-column-gap: 20px;
    row-gap: 20px;
    width: 100%;
    justify-content: center;
}

.card360containermini {
    grid-template-columns: repeat(auto-fill,164px);
    cursor: pointer;
}

.card360contenido {
    border: 2px solid #EEE;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}

    .card360contenido .card360-separator {
        display: none;
    }

    .card360contenido:hover {
        border-color: var(--color2);
    }

    .card360contenido .card360titulo {
        padding: 10px;
        font-size: var(--fontSize16);
    }

    .card360contenido .card360info {
        padding-top: 0px;
    }

.boton360round {
    border-radius: 30px;
}

.card360footer {
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card360body {
    flex: 1;
}

.card360info .fas {
    color: #DDD;
    margin: 0 6px;
    font-size: var(--fontSize8);
}

.nodeco {
    text-decoration: none;
}

.its {
    display: flex;
    align-items: center;
    flex: 1;
}

.ts-container {
    display: flex;
    flex-direction: column;
}

.its-subtitle {
    font-size: var(--fontSize12);
    color: #666;
}

table.grid360.dataTable.no-footer {
    border-bottom: none !important;
}

.mediumconfirm {
    min-width: 300px;
    max-width: 500px;
    margin: auto;
}

.bigconfirm {
    min-width: 300px;
    max-width: 800px;
    margin: auto;
}

.biggerconfirm {
    min-width: 300px;
    max-width: 910px;
    margin: auto;
}

.maxconfirm {
    min-width: 300px;
    max-width: 98%;
    margin: auto;
}

.im-separator {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    color: #bbb;
    font-size: var(--fontSize12);
    margin: 10px 0;
}

    .im-separator span {
        margin: 0 10px;
        border-bottom: 1px solid #eee;
        height: 0px;
        flex: 1;
    }

.form-modal-center {
    text-align: center;
}

.btnconfirmleft {
    float: left;
}

.requiredmark {
}

.lista360check-row, .lista360select-row {
    height: auto;
    padding: 10px 0 10px 0;
    border-bottom: 1px solid #EEE;
    border-radius: 0;
}

    .lista360check-row:last-of-type, .lista360select-row:last-of-type {
        border-bottom: none;
    }

.lista360select-row {
    padding: 10px;
    cursor: pointer;
    color: var(--colorPrimario);
}

    .lista360select-row.active {
        background-color: var(--color3);
    }

.tt-imagecontainer {
    width: 100%;
    position: relative;
    height: 200px;
    overflow: hidden;
}

.tt-imagen {
    background-size: cover;
    background-position: center center;
    height: 200px;
    width: 100%;
    border-radius: 10px 10px 0 0;
    background-color: #F2F2F2;
    opacity: .5;
    filter: blur(6px);
    position: absolute;
    z-index: 1;
}

.tt-imagentop {
    background-size: contain;
    background-position: center center;
    height: 200px;
    width: 100%;
    border-radius: 10px 10px 0 0;
    background-color: #DDD;
    background-color: rgba(255, 255, 255, 0.3);
    background-repeat: no-repeat;
    position: absolute;
    z-index: 2;
}

.card360containermini .tt-imagecontainer, .card360containermini .tt-imagen, .card360containermini .tt-imagentop {
    height: 130px;
}

.cardcontroles {
    display: flex;
    flex-direction: row-reverse;
    border-radius: 10px;
    background: rgba(255,255,255,.5);
    width: 100%;
}

.hbtncard {
    width: 28px;
    height: 28px;
}

    .hbtncard a {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
    }

.cardcontroles .hbtncard .icobtncard {
    color: #444;
}

    .cardcontroles .hbtncard .icobtncard:hover, .cardcontroles .hbtncard a:hover .icobtncard {
        color: var(--SJDazul);
    }

.labeldestacada {
    color: var(--SJDazul);
}

.infocontenido {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contenidoImagen {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    background-size: cover;
    background-position: center center;
}

/* Menus desplegables */

.menu-grupo .menu-grupo-links, .filtro-grupo .filtro-grupo-links {
    height: 0px;
    transition: height 0.3s ease;
    overflow: hidden;
    transition: all 0.2s ease;
}

    .menu-grupo .menu-grupo-links.opened, .filtro-grupo .filtro-grupo-links.opened {
        padding-top: 10px;
    }

.presmenulateralizquierdo .menu-grupo .menu-grupo-links.opened {
    padding-top: 0;
}

/*.menu-grupo .menu-grupo-links.opened, .filtro-grupo .filtro-grupo-links.opened {
    padding-top: 10px;
}*/

.menu-grupo-parent, .filtro-grupo-parent {
    display: flex;
    align-items: center;
    padding: 0 10px;
    padding-right: 15px;
    justify-content: space-between;
    height: 44px;
    cursor: pointer;
    font-size: var(--fontSize14);
    color: var(--colorPrimario);
    border: 1px solid transparent;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    background-color: #FFF;
    border-radius: 3px;
}

    .menu-grupo-parent.opened, .filtro-grupo-parent.opened {
        border-color: var(--color3);
        background-color: var(--color4);
        position: sticky;
        top: 5px;
        z-index: 1;
    }

.presmenulateralizquierdo .menu-grupo-parent.opened {
    top: 0;
}

.filtro-grupo-parent.opened {
    top: 0px;
}

.menu-grupo, .filtro-grupo {
    width: 100%;
}

.menu-grupo-links .linkleftmenulateral, .filtro-grupo-links .linkleftmenulateral {
    height: 44px;
}

    .menu-grupo-links .linkleftmenulateral.active, .filtro-grupo-links .linkleftmenulateral.active {
        background: var(--color3);
        border-color: var(--color2);
        color: var(--colorPrimario);
    }

        .menu-grupo-links .linkleftmenulateral.active .faicomenulateral, .filtro-grupo-links .linkleftmenulateral.active .faicomenulateral {
            color: var(--colorPrimario);
        }

.menu-grupo-parent .caretmenu, .filtro-grupo-parent .caretmenu {
    transition: all ease-in .2s;
}

.menu-grupo-parent.opened .caretmenu, .filtro-grupo-parent.opened .caretmenu {
    transform: rotate(180deg);
}

.menu-grupo-parent:hover, .filtro-grupo-parent:hover {
    background: #FAFAFA;
}

.menu-grupo-parent.opened:hover, .filtro-grupo-parent.opened:hover {
    background: var(--color4);
}

.menu-grupo-links-wrapper .linkleftmenulateral, .filtro-grupo-links-wrapper .linkleftmenulateral {
    width: 100%;
    margin-bottom: 0px;
    border-radius: 3px;
}

    .menu-grupo-links-wrapper .linkleftmenulateral:hover, .filtro-grupo-links-wrapper .linkleftmenulateral:hover {
        background: #FAFAFA;
    }

.menu-grupo-links-wrapper .faicomenulateral, .filtro-grupo-links-wrapper .faicomenulateral {
    color: var(--color3);
}

.filtro-grupo-links .its-title {
    font-size: var(--fontSize12);
    color: #333;
}

.filtro-grupo-links .its-subtitle {
    font-size: var(--fontSize11);
    color: #888;
    margin-top: 1px;
}

.filtro-grupo-links .its-title, .filtro-grupo-links .its-subtitle {
    overflow: hidden;
    width: 175px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.filtro-grupo-links .lista360check-row {
    padding: 0 5px;
}

.contenido-pagina-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill,200px);
    grid-column-gap: 10px;
    row-gap: 20px;
    width: 100%;
    justify-content: left;
}

.contenido-pagina {
    width: 200px;
    height: 250px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid #EEE;
    padding: 10px;
    border-radius: 3px;
}

    .contenido-pagina:hover {
        border-color: var(--color2);
    }

.iframepagina {
    border: none;
    width: 352px;
    height: 452px;
    pointer-events: none;
    -webkit-transform: translate(-200px,-200px) scale(.5, .5);
    -moz-transform: translate(-200px,-200px) scale(.5, .5);
    -o-transform: translate(-200px,-200px) scale(.5, .5);
    -ms-transform: translate(-200px,-200px) scale(.5, .5);
    transform-origin: 0px 0px;
    transform: scale(.5, .5);
    overflow: hidden;
}

.tox-tinymce-aux, .tox.tox-tinymce.tox-fullscreen {
    z-index: 99999 !important;
}

.tox.tox-tinymce.tox-fullscreen {
    top: 60px;
}

.md-master-scroll {
    overflow-x: hidden;
    overflow-y: scroll;
    scrollbar-width: thin;
    overflow-y: scroll;
}

    .md-master-scroll::-webkit-scrollbar, .md-master-scroll::-webkit-scrollbar {
        width: 8px;
        height: 8px;
        background-color: #f0f0f0;
    }

.md-master-scroll-auto {
    overflow-y: auto;
}

.tabs360-tabs-scroll .tab360-tab, .tabs360-tabs-scroll .tab360-tab-sub {
    margin-top: 0;
    padding-top: 0;
    padding-right: 5px;
}

.ulasignaciones {
    margin: 0;
    padding-left: 0;
    font-size: var(--fontSize12);
    color: #666;
    list-style-type: none;
}

    .ulasignaciones li {
        padding: 5px;
        background: var(--color3);
        display: inline-block;
        color: var(--colorPrimario);
        margin: 4px;
        border-radius: 3px;
        border: 1px solid var(--color2);
    }

.lblgridnormal {
    font-size: var(--fontSize14);
    color: #222;
}

.listatitulo360 .lblgridnormal {
    font-size: var(--fontSize16);
    color: var(--colorSecundario);
}

.listatitulo360 .lblinfo {
    font-style: normal;
    font-size: var(--fontSize14);
    color: #999;
    margin-top: 5px;
}

.lblgridchip {
    background: var(--color4);
    border-radius: 3px;
    color: var(--colorPrimario);
    font-size: var(--fontSize12);
    padding: 2px 4px;
    margin-right: 10px;
}

.right60 {
    right: 60px;
}



/* Muro / Entregables */

.mu-wrapper, .mmu-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #F8F8F8;
    border-radius: 10px;
    padding: 20px;
    padding-bottom: 20px;
}

.pres-cpre-container .mu-wrapper, .pres-cpre-container .mmu-wrapper {
    background: transparent;
}

.mu-card, .mmu-card {
    /*width: 500px;*/
    width: 100%;
    background: #FFF;
    border-radius: 4px;
    box-shadow: 0 1px 4px #e4e4e4;
    margin-bottom: 20px;
    max-width: 600px;
}

.mu-cardpost, .mmu-cardpost {
    padding: 20px;
    color: var(--SJDazul);
}

.mu-cardpost {
    cursor: pointer;
}

.mu-posts .mu-cardpost:hover {
    background: #f6f6f6;
    box-shadow: 0 0px 4px #D8D8D8;
}

.valorpost, .gruposvisible {
    display: flex;
    padding: 8px 20px;
    border-top: 1px solid #EEE;
    align-items: center;
    justify-content: space-between;
}

    .gruposvisible:empty {
        display: none;
    }

.gruposvisible {
    font-size: var(--fontSize12);
    color: #BBB;
}

.pv-div {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.mu-card:last-of-type {
    margin-bottom: 0px;
}

.mu-card.pendiente > *:not(.iinfo):not(.controlspostadmin) {
    opacity: .4;
}

.mu-card.pendiente {
    border: 3px solid #d2efff;
}

.mu-avatarusuario, .mu-avatarusuariocomentario, .mmu-avatarusuario, .mmu-avatarusuariocomentario {
    width: 50px;
    height: 50px;
    background-size: cover;
    background-position: center center;
    border-radius: 100%;
    margin-right: 10px;
    flex-shrink: 0;
}

.mu-avatarusuariocomentario, .mmu-avatarusuariocomentario {
    width: 30px;
    height: 30px;
}

.mu-newpostrow, .mmu-newpostrow {
    display: flex;
    justify-content: space-between;
}

.mu-newpostrowbottom, .mmu-newpostrowbottom {
    margin-top: 10px;
}

.mu-escribirnuevo, .mmu-escribirnuevo {
    flex: 1;
}

    .mu-escribirnuevo textarea, .mmu-escribirnuevo textarea, .mu-newpostrow input {
        height: 70px;
        border-radius: 3px;
        border: 1px solid #EEE;
        font-family: Roboto;
        width: 100%;
        font-size: var(--fontSize12);
        padding: 10px;
        resize: none;
        overflow: hidden;
        color: #444;
    }

.entregables-wrapper .mu-newpostrow input {
    height: auto;
    margin-bottom: 10px;
}

.entregables-wrapper .mmu-newpost .mmu-avatarusuario {
    display: none;
}

.mu-escribirnuevo textarea::placeholder, .mmu-escribirnuevo textarea::placeholder, .mu-newpostrow input::placeholder {
    color: #777;
}

.mu-btntool, .mmu-btntool {
    color: #BBB;
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
    font-size: var(--fontSize18);
    border-radius: 100%;
}

    .mu-btntool:hover, .mmu-btntool:hover {
        color: #2a6280;
        background-color: #c0dbea;
    }

.mu-controlsleft, .mmu-controlsleft {
    /*padding-left: 60px;*/
}

.mu-controlsright, .mmu-controlsright {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
}

.mu-btnpublicar, .mmu-btnpublicar {
    background: var(--SJDazul);
    font-size: var(--fontSize12);
    border-radius: 3px;
    padding: 3px 8px;
    margin: 0 5px;
    margin-right: 0px;
    text-align: center;
    display: none;
    justify-content: center;
    align-items: center;
    color: #FFF;
    cursor: pointer;
    height: 28px;
}

    .mu-btnpublicar.active, .mmu-btnpublicar.active {
        display: flex;
        -webkit-animation: fadeInUp .5s ease-in-out 0s forwards;
        animation: fadeInUp .5s ease-in-out 0s forwards;
    }

.mu-infovacio {
    font-size: var(--fontSize14);
    text-align: center;
    color: #777;
}

.mu-infovacio-principal {
    font-size: var(--fontSize21);
    font-family: 'Roboto-Light';
    text-align: center;
    color: #777;
    margin-top: 0px;
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(50%, 0,0);
        transform: translate3d(50%, 0,0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(50%, 0,0);
        transform: translate3d(50%, 0,0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.mu-posts {
    /*padding: 20px;*/
    padding-top: 10px;
}

.mu-postrowinfousuario, .mmu-postrowinfousuario {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.mu-infopost, .mmu-infopost {
    font-size: var(--fontSize12);
    color: var(--colorPrimario);
}

    .mu-infopost div, .mmu-infopost div {
        line-height: 18px;
    }

.mu-nombreusuario, .mmu-nombreusuario {
    font-family: Roboto-Medium;
    font-size: var(--fontSize14);
}

.mu-ccheader .mu-nombreusuario, .mmu-ccheader .mmu-nombreusuario {
    display: flex;
    justify-content: center;
    flex-direction: column;
    line-height: 18px;
}

.mmu-ccheader .mmu-nombreusuario {
    line-height: 30px;
}

.mmu-ccheader .mmu-nombreusuario {
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-end;
}

.mmu-ccheader .mmu-nombreusuario {
    line-height: 20px;
}

    .mmu-ccheader .mmu-nombreusuario .tipousuariocomentario {
        margin-left: 6px;
    }

.mu-contenidopost {
    -ms-word-break: break-all;
    word-break: break-all;
    word-break: break-word;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    cursor: pointer;
}

.mmu-contenidopost {
    display: block;
    -ms-word-break: break-all;
    word-break: break-all;
    word-break: break-word;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
    color: #222;
}

.mmu-contenidopost {
    cursor: auto;
}

.verified {
    background: url('../images/shield.svg');
    width: 14px;
    height: 14px;
    background-size: cover;
    margin-left: 4px;
}

.mu-tipousuario, .mmu-tipousuario {
    display: inline-flex;
    font-family: Roboto-Medium;
    align-items: center;
    color: #6bccff;
    font-size: var(--fontSize12);
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.mu-fechahora, .mmu-fechahora {
    color: #aaa;
    font-family: Roboto;
    font-size: var(--fontSize12);
    text-transform: capitalize;
}

.mu-infopostcolumn, .mmu-infopostcolumn {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.mu-icomenu, .mmu-icomenu {
    color: #CCC;
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    cursor: pointer;
}

    .mu-icomenu:hover, .mmu-icomenu:hover {
        color: #AAA;
        background: #F4F4F4;
    }

.mu-postactions, .mmu-postactions {
    position: relative;
    width: 30px;
}

.mu-contextmenu, .mmu-contextmenu {
    position: absolute;
    right: 0px;
    display: none;
    flex-direction: column;
    background: #FFF;
    box-shadow: 0px 1px 3px #AAA;
    border-radius: 4px;
    z-index: 1;
}

    .mu-contextmenu span, .mmu-contextmenu span {
        cursor: pointer;
        height: 40px;
        display: flex;
        align-items: center;
        padding: 10px;
        font-size: var(--fontSize14);
        width: 150px;
        color: var(--colorPrimario);
    }

        .mu-contextmenu span:hover, .mmu-contextmenu span:hover {
            background: #EEE;
        }

.mu-crearcomentario, .mu-comentariocontainer, .mmu-crearcomentario, .mmu-comentariocontainer {
    padding: 20px;
    background: #EFEFEF;
    display: flex;
    flex-direction: row;
    padding-bottom: 10px;
    border-bottom: 1px solid #E8E8E8;
}

.mu-comentariocontainer, .mmu-comentariocontainer {
    display: flex;
    flex-direction: column;
    padding: 10px;
    /*padding-left: 50px;*/
    border-bottom: 1px solid #E4E4E4;
    margin: 0 10px;
    background: transparent;
}

.mmu-comentariocontainer {
    border-bottom: 0px;
}

.mu-comentario, .mmu-comentario {
    background: #FDFDFD;
    border-bottom: 1px solid #EEE;
}

.mu-titlerespuestas, .mmu-titlerespuestas {
    line-height: 30px;
    padding-left: 20px;
    font-size: var(--fontSize12);
    background: #F0F0F0;
    color: #555;
    border-top: 1px solid #E8E8E8;
    border-bottom: 1px solid #E8E8E8;
}

.mmu-titlerespuestas {
    display: none;
}

.mu-comentariowrapper, .mmu-comentariowrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.mu-comentario.noborder .mu-comentariocontainer, .mmu-comentario.noborder .mmu-comentariocontainer {
    border-bottom: none;
}

.mu-contenidocomentario, .mmu-contenidocomentario {
    flex: 1;
    display: flex;
    flex-direction: column;
}

    .mu-contenidocomentario textarea, .mmu-contenidocomentario textarea {
        border-radius: 2px;
        border: 1px solid #DDD;
        resize: none;
        width: 100%;
        font-family: Roboto;
        color: #444;
        padding: 10px;
        font-size: var(--fontSize12);
        height: 34px;
        overflow: hidden;
    }

.mu-infoenviarcomentario, .mmu-infoenviarcomentario {
    font-size: var(--fontSize11);
    color: #BBB;
    display: flex;
    justify-content: space-between;
}

    .mu-infoenviarcomentario span, .mmu-infoenviarcomentario span {
        line-height: 20px;
    }

.mu-comentariocontent, .mmu-comentariocontent {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.mu-ccheader, .mmu-ccheader {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.mu-comentariotexto, .mmu-comentariotexto {
    margin-top: 5px;
    font-size: var(--fontSize12);
    -ms-word-break: break-all;
    word-break: break-all;
    word-break: break-word;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
}

.mu-cardcomentarios, .mmu-cardcomentarios {
    background: #efefef;
}

.userinfoid, .userinfotipo, .userinfocentro, .userinfotipocentro {
    display: none;
}

.mu-comentariotools, .mmu-comentariotools {
    display: flex;
    justify-content: flex-end;
}

.mu-fileindicator {
    color: var(--SJDazul);
    font-size: var(--fontSize18);
    margin-right: 10px;
}

.mu-archivoadjunto {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 5px 0;
}

.mu-adjuntos, .mmu-adjuntos {
    color: #666;
    font-size: var(--fontSize14);
}

.mu-newpost .mu-adjuntos:not(:empty), .mmu-newpost .mu-adjuntos:not(:empty) {
    margin-top: 20px;
}

.mu-icoupload, .mmu-icoupload {
    margin: 0 8px 0 0;
    font-size: var(--fontSize21);
}

    .mu-icoupload.fa-file-pdf, .mmu-icoupload.fa-file-pdf {
        color: #e95340;
    }

    .mu-icoupload.fa-file-video, .mmu-icoupload.fa-file-video {
        color: #f9ca24;
    }

    .mu-icoupload.fa-file-word, .mmu-icoupload.fa-file-word {
        color: #2a5492;
    }

    .mu-icoupload.fa-file-excel, .mmu-icoupload.fa-file-excel {
        color: #1f7049;
    }

    .mu-icoupload.fa-file-image, .mmu-icoupload.fa-file-image {
        color: var(--SJDazul);
    }

.mu-adjuntos-title, .mmu-adjuntos-title {
    border-bottom: 1px solid #EEE;
    padding-bottom: 2px;
    margin-bottom: 10px;
    color: #999;
}

.mu-adjuntonombre, .mmu-adjuntonombre {
    word-break: break-all;
}

.mu-adjuntowrapper, .mmu-adjuntowrapper {
    display: flex;
    align-items: center;
    /*line-height: 30px;*/
    word-break: break-all;
    margin-bottom: 2px;
}

.mu-cardadjuntos, .mmu-cardadjuntos {
    padding: 20px;
    padding-top: 0px;
    color: #666;
    font-size: var(--fontSize14);
}

.mu-comentario .mu-cardadjuntos, .mmu-comentario .mmu-cardadjuntos {
    padding: 10px;
    padding-top: 20px;
}

.mu-cardadjuntos:empty, .mmu-cardadjuntos:empty {
    padding: 0;
}

.mu-cardadjuntos a, .mmu-cardadjuntos a {
    color: #666;
}

.mu-enlaceadjuntar, .mmu-enlaceadjuntar {
    cursor: pointer;
    color: #3D8EB9;
    font-size: var(--fontSize14);
    margin-top: 5px;
}

.mu-tools, .mmu-tools {
    /*display: flex;*/
    width: 100%;
    /*max-width: 500px;*/
    justify-content: space-between;
    display: none;
}

.mu-tools-full, .mmu-tools-full {
    max-width: 100%;
    padding: 0 12px;
}

.mu-cardadjuntos, .gruposvisible, .mu-comentarios {
    display: none;
}

.mmu-posts {
    width: 100%;
    max-width: 600px;
}

.entregables-posts, .entregables-posts .mmu-card {
    width: 100%;
    max-width: none;
    cursor: pointer;
}

    .entregables-posts, .entregables-posts .mmu-card .mmu-contenidopost {
        cursor: pointer;
    }

        .entregables-posts, .entregables-posts .mmu-card .mmu-crearcomentario {
            cursor: auto;
        }

.entregables-wrapper .mmu-card {
    max-width: none;
}

.entregables-posts .mmu-card:not(.active) .mmu-avatarusuario,
.entregables-posts .mmu-card:not(.active) .mmu-tipousuario,
.entregables-posts .mmu-card:not(.active) .mmu-comentarios,
.entregables-posts .mmu-card:not(.active) .mmu-cardadjuntos,
.entregables-posts .mmu-card:not(.active) .evalpost {
    display: none;
}

.entregables-posts .mmu-card:not(.active) .mmu-contenidopost {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*.entregables-posts .mmu-card:not(.active) .mmu-postrowinfousuario {
    margin-bottom: 0px;
}*/

.tipso_style {
    border-bottom: none;
}

.linkleftmenulateral.subtema.active {
    border-color: transparent;
    font-family: Roboto;
}

    .linkleftmenulateral.subtema.active:hover {
        background: var(--color3);
    }

.flex-center {
    justify-content: center !important;
    align-items: center !important;
}

.li360 {
    height: 40px;
    font-size: var(--fontSize14);
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0 5px;
}

    .li360:not(:last-of-type) {
        border-bottom: 1px solid #EEE;
    }

    .li360:hover, .li360.active {
        color: var(--colorPrimario);
        background: var(--color4);
    }

    .li360 .btneliminararchivo {
        margin: 0 5px 0 0;
        flex-shrink: 0;
    }

.sticky0 {
    position: sticky;
    top: 0;
}

.listapalabras, .editarpalabra {
    overflow-y: scroll;
    overflow-x: hidden;
    padding-right: 5px;
}

.flexstart {
    justify-content: flex-start;
    align-items: flex-start;
}

.jflexstart {
    justify-content: flex-start !important;
}

.aflexstart {
    justify-content: flex-start !important;
}

.editarpalabra {
    margin-top: 74px;
}

.sidemenu360 {
    width: 0px;
}

    .sidemenu360.active {
        width: 300px;
    }

.md-detail.sidemenuopen {
    margin-left: 0;
}

.masterdetail360botonmenu, .btnlist360, .masterdetail360botonfs {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--fontSize18);
    width: 32px;
    height: 32px;
    border-radius: 100%;
    color: var(--colorPrimario);
    margin-right: 10px;
    cursor: pointer;
    margin-top: -5px;
}

    .masterdetail360botonmenu:hover, .btnlist360:hover, .masterdetail360botonfs:hover {
        background: var(--color4);
    }

.indice-button-child {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 0px;
}

.btnlist360 {
    margin: 0px;
    font-size: var(--fontSize16);
    flex-shrink: 0;
}

.nombresubtema {
    -ms-word-break: break-all;
    word-break: break-all;
    word-break: break-word;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
    width: 205px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    cursor: pointer;
}

.flexline {
    display: flex;
    align-items: center;
}

.contenido-tools {
    border-top: 1px solid #EEE;
    border-bottom: 1px solid #EEE;
    padding: 5px 0;
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
}

.botoncrear, .botonver {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.botonver {
    margin-right: 5px;
}

    .botoncrear .fas, .botonver .fas {
        display: flex;
        justify-content: center;
        align-items: center;
        color: var(--colorPrimario);
        background: var(--color4);
        width: 25px;
        height: 25px;
        border-radius: 3px;
        margin-right: 5px;
        font-size: var(--fontSize12);
    }

    .botonver .fas {
        margin-left: 5px;
        margin-right: 0;
    }

    .botoncrear .textocrear, .botonver .textocrear {
        font-size: var(--fontSize12);
        color: #666;
    }

    .botoncrear:hover .fas, .botonver:hover .fas {
        background: var(--color3);
        font-size: var(--fontSize14);
    }

    .botoncrear:hover .textocrear, .botonver:hover .textocrear {
        color: var(--colorPrimarioOscuro);
    }

.compa-nuevoselector {
    font-size: var(--fontSize12);
}

.userselectnone {
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.lista360select-row {
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.compa-nuevotipo:last-of-type {
    margin-left: 20px;
}

.bigbtncard {
    border: 2px solid var(--color2);
    color: var(--colorPrimario);
    background-color: var(--color4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    cursor: pointer;
    width: 90px;
    height: 90px;
}

    .bigbtncard:hover {
        background-color: var(--color3);
    }

    .bigbtncard .ico {
        font-size: var(--fontSize26);
        margin-bottom: 10px;
    }

    .bigbtncard .text {
        font-size: var(--fontSize14);
    }

.listapaginas:empty {
    display: none;
}

.carettemas {
    margin-right: 5px;
}

.grupotema {
    padding-right: 0;
}

.btneditartema:hover {
    background-color: var(--color3);
}

.imagenindice {
    height: 100px;
    width: 100%;
    background-size: cover;
    background-position: center center;
}

.df-usuario {
    font-size: var(--fontSize12);
    display: flex;
    align-items: center;
}

.df-fecha {
    margin-left: 10px;
    color: #888;
}

.df-pregunta {
    margin: 10px 0;
}

.df-responder {
    padding-top: 10px;
    border-top: 1px solid #EEE;
    display: flex;
    flex-direction: column;
}

.df-footer {
    margin: 10px 0;
    display: flex;
    justify-content: flex-end;
}

.infoguardando360 {
    display: flex;
    align-items: center;
    font-size: var(--fontSize12);
    margin-right: 10px;
}

    .infoguardando360 span {
        font-size: var(--fontSize14);
        margin-right: 4px;
    }

        .infoguardando360 span.ok {
            color: #38e46e;
        }

.boton360iconotexto {
    display: inline-flex;
    align-items: center;
}

    .boton360iconotexto .icono {
        margin-right: 5px;
        font-size: var(--fontSize12);
    }

.ha-unidad {
    font-size: var(--fontSize12);
    color: #444;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #EEE;
    height: 40px;
}

.ha-tema {
    line-height: 30px;
    border-bottom: 1px solid #EEE;
    display: flex;
    justify-content: space-between;
}

.ha-unidades-wrapper {
    padding-left: 40px;
}

.historial-tiempo li {
    font-size: var(--fontSize14);
    line-height: 30px;
}

    .historial-tiempo li:not(:last-of-type) {
        border-bottom: 1px solid #EEE;
    }

    .historial-tiempo li:first-letter {
        text-transform: capitalize;
    }

.ha-unidad-nombre {
    width: 100%;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.if-total {
    color: var(--colorPrimario);
    margin-left: 10px;
}

.iinfovacio {
    color: #666;
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.toolbar-botones {
    flex: 1;
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.co-editar-boton {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    padding: 5px;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid #F2F2F2;
}

    .co-editar-boton:hover {
        border: 2px solid #EEE;
        background-color: #FAFAFA;
    }

.ceb-texto {
    font-size: var(--fontSize12);
    color: #555;
}

.ceb-icono {
    margin-bottom: 5px;
    width: 26px;
    height: 26px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

input[type="text"], textarea, input[type="search"] {
    -webkit-appearance: none;
}

.dt-inputnota {
    border: 1px solid #AAA;
    border-radius: 2px;
    color: #333;
    -webkit-appearance: none;
    font-family: 'Roboto';
    font-size: var(--fontSize14);
    padding: 2px 4px;
    width: 50px;
    text-align: center;
}

.dt-notaalumno .far {
    margin-left: 4px;
    color: var(--SJDazul);
    display: flex;
    align-items: center;
    font-size: var(--fontSize14);
    display: none;
}

.prespagina {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.pres-topbar {
    display: flex;
    background: #FFF;
    align-items: center;
    height: 50px;
    justify-content: space-between;
    border-bottom: 1px solid #DEDEDE;
}

.nopadding {
    padding: 0 !important;
}

.pt-boton {
    display: flex;
    align-items: center;
    color: #666;
    height: 49px;
    flex: 1;
    padding-left: 10px;
    cursor: pointer;
}

    .pt-boton.paginaSiguiente {
        justify-content: flex-end;
        padding-left: 0;
        padding-right: 10px;
    }

    .pt-boton:hover {
        background: #F6F6F6;
    }

.pt-icono {
    font-size: var(--fontSize28);
    margin: 0 10px;
}

.pt-texto {
    font-size: var(--fontSize12);
    color: #888;
}

.pt-botoncenter {
    justify-content: center;
}

.contenidopaginapres, .presmenulateralizquierdo {
    background: #FFF;
}

.topbar-derecha-botones-menu {
    display: none;
    align-items: center;
    /*margin-right: 20px;*/
    padding-right: 10px;
    /*border-right: 1px solid rgba(255,255,255,.4);*/
}

    .topbar-derecha-botones-menu.opened {
        display: flex;
    }

.topbar-derecha-botonmenu.active {
    border: 2px solid rgba(255,255,255,.5);
}

.topbar-derecha-botones-menu .icoimagen {
    margin-bottom: 5px;
    width: 24px;
    height: 24px;
    background-size: 18px;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: rgba(255,255,255,.9);
    border-radius: 100%;
}

.topbar-presentacion .topbar-derecha-botones {
    margin-right: 2px;
}

.contenidopaginapres {
    display: flex;
}

.paginaswrapperpresen {
    flex: 1;
}

.presen-bar-derecha {
    background: #f8f8f8;
    position: relative;
    height: auto;
}

.mdpre-boton {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-decoration: none;
    color: #666;
    padding: 10px;
    cursor: pointer;
}

    .mdpre-boton:hover, .mdpre-boton.active {
        background: #F6F6F6;
    }

    .mdpre-boton.active {
        color: var(--colorPrimario);
        background: var(--color4);
    }

        .mdpre-boton.active .mpre-tcsubtext {
            color: var(--colorPrimario);
        }

    .mdpre-boton:first-of-type {
        border-radius: 3px 3px 0 0;
    }

    .mdpre-boton:last-of-type {
        border-radius: 0 0 3px 3px;
    }

    .mdpre-boton:not(:last-of-type) {
        border-bottom: 1px solid #E4E4E4;
    }

    .mdpre-boton .mpre-tctext {
        font-size: var(--fontSize14);
    }

    .mdpre-boton .mpre-tcsubtext {
        font-size: var(--fontSize12);
        color: #AAA;
        margin-top: 2px;
    }

.presen-bar-derecha-grupobotones {
    background: #FFF;
    border-radius: 3px;
    margin: 10px;
    padding: 10px;
    width: 150px;
    overflow: hidden;
}

.presen-tituloseccion {
    font-family: Roboto-Light;
    font-size: var(--fontSize24);
    color: var(--colorPrimario);
    padding: 10px;
}

.prescontenidos-wrapper {
    padding: 20px;
}

.referencias-wrapper .flex-form-col:not(:first-of-type) {
    margin-top: 20px;
}

.df-dudarespuesta {
    padding: 0 0 10px 0;
}

    .df-dudarespuesta .pag-f-label {
        color: #888;
        display: block;
        border-bottom: 1px solid #EEE;
        margin-bottom: 5px;
        font-size: var(--fontSize14);
    }

.paginaswrapperpresen .dudafeedback {
    border: 2px solid var(--color4);
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 10px;
}

.paginaswrapperpresen .mu-wrapper, .paginaswrapperpresen .mmu-wrapper {
    border-radius: 0;
}

.contenidopagina[data-espresentacion="1"] {
    background: #F8F8F8;
}

    .contenidopagina[data-espresentacion="1"] .pres-paginaswrapper {
        display: none;
    }

.prespaginappt {
    width: 1280px;
    height: 720px;
    display: block;
    background: #FFF;
    box-shadow: 0px 0px 4px #DDD;
    transform-origin: center center;
    transform: matrix(.7, 0, 0, .7, 0, 0);
    touch-action: none;
    user-select: none;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    position: absolute;
    overflow: hidden;
}

.contenidopagina[data-espresentacion="1"] .prespagina {
    max-width: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    overflow: auto;
    position: relative;
}

.presentpaginascontrols {
    position: fixed;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background: #FFF;
    color: #888;
    font-size: var(--fontSize32);
    cursor: pointer;
    top: calc(50%);
    left: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 4px #CCC;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

    .presentpaginascontrols:hover {
        box-shadow: 0px 0px 5px #AAA;
    }

.contenidopaginapres.opened .presentpaginascontrols.presenPaginaAnterior {
    left: 360px;
}

.presentpaginascontrols.presenPaginaAnterior {
    padding-right: 4px;
}

.presentpaginascontrols.presenPaginaSiguiente {
    left: auto;
    right: 190px;
    padding-left: 4px;
}

.overflowxhidden {
    overflow-x: hidden !important;
}

.mapacriterio {
    border: 1px solid var(--color3);
    margin-bottom: 20px;
}

.mc-row {
    display: flex;
}

.mc-header {
    background-color: var(--color3);
    color: var(--SJDazul);
}

.mc-header-title {
    font-size: var(--fontSize22);
    margin-bottom: 10px;
}

.mc-header-subtitle {
    font-size: var(--fontSize14);
}

.mc-col, .mc-header {
    padding: 10px;
    flex: 1;
}

.mc-row {
    border-bottom: 1px solid var(--color3);
}

    .mc-row:last-of-type {
        border-bottom: none;
    }

.mc-col-border {
    border-right: 1px solid var(--color3);
}

.mc-title {
    color: var(--SJDazul);
    font-family: 'Roboto-Medium';
    font-size: var(--fontSize12);
    margin-bottom: 6px;
}

.mc-col-content {
    color: #777;
    font-size: var(--fontSize14);
}

.valorinstrumento {
    display: flex;
    align-items: center;
    height: 40px;
    justify-content: space-between;
    border-bottom: 1px solid #EEE;
    font-size: var(--fontSize14);
}

    .valorinstrumento:last-of-type {
        border-bottom: 0;
    }

    .valorinstrumento .txtorden {
        width: 70px !important;
    }

.txtnumero {
    width: 70px !important;
}

.txtorden {
    text-align: center;
}

.grid360-colnumero input {
    margin: 0 5px;
    text-align: center;
}

.grid360-colnumero .far.fa-check-circle {
    margin: 5px 0;
    display: none;
    align-items: center;
    font-family: Roboto;
    font-size: var(--fontSize12);
    color: var(--colorVerdeOscuro);
}

    .grid360-colnumero .far.fa-check-circle.active {
        display: flex;
    }

    .grid360-colnumero .far.fa-check-circle:before {
        font-family: 'Font Awesome 5 Free';
        margin-right: 2px;
    }

.flex-form-row.disabled {
    opacity: .5;
    pointer-events: none;
}

.tab360-header[data-grupopes] {
    position: relative;
}

.grupopes {
    display: none !important;
}

    .grupopes.active {
        display: flex !important;
        align-items: center;
        position: absolute;
        top: 40px;
        left: 0;
        background: #FFF;
        padding: 10px;
        border-radius: 5px;
        box-shadow: 0px 0px 2px #CCC;
        z-index: 9999;
        flex-flow: wrap;
        width: 160px;
        flex-direction: column;
    }

    .grupopes .tabs360 {
        flex-shrink: 0;
        background: #FFF;
        width: 140px;
        margin: 5px 0;
        justify-content: flex-start;
    }



/* Rubricas */
.cuadricularubrica {
    background: #E8E8E8;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 1px 1px;
    margin-top: 20px;
}

    .cuadricularubrica th {
        text-align: left;
        font-weight: normal;
        font-family: 'Roboto-Medium';
        color: var(--SJDazul);
    }

    .cuadricularubrica th, .cuadricularubrica td {
        width: 200px;
        background: #FFF;
        padding: 10px;
    }

    .cuadricularubrica .nocell {
        background: #E4E4E4;
    }

.ru-btneditarcelda {
    display: inline-flex;
    align-items: center;
    width: 0px;
    white-space: nowrap;
    overflow: hidden;
    height: 20px;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    opacity: 0;
    color: #0075E4;
    flex-shrink: 0;
}

    .ru-btneditarcelda.active {
        width: 25px;
        opacity: 1;
    }

.celleditable {
    cursor: pointer;
}

.ru-celleditable {
    display: flex;
    justify-content: space-between;
}

.ru-nombredit {
    display: inline-flex;
    align-items: center;
    -ms-word-break: break-all;
    word-break: break-all;
    word-break: break-word;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
}

.ru-notanivel {
    background: var(--color3);
    color: var(--SJDazul);
    padding: 0px 4px;
    border-radius: 3px;
    font-size: var(--fontSize12);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-left: 4px;
}

.ru-textarea {
    border: 1px solid #AAA;
    border-radius: 2px;
    resize: none;
    padding: 8px;
    height: 100px;
    font-family: 'Roboto';
    color: #222;
    font-size: var(--fontSize12);
}

    .ru-textarea:focus {
        border-color: var(--SJDazul);
    }

.celleditable.rucenter {
    color: #0075E4;
    text-align: center !important;
}

.bigtitlecontent {
    border-bottom: 1px solid #EEE;
    padding: 5px 0;
    color: #888;
    margin: 20px 0 0 0;
}

    .bigtitlecontent:first-of-type {
        margin: 0;
    }

.celleditable:hover {
    background: #f2f9ff;
}

.tablarubrica .tableconfirm {
    background: #E8E8E8;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 1px 1px;
    margin-top: 2px;
}


    .tablarubrica .tableconfirm .nocell {
        background: #E4E4E4;
    }

    .tablarubrica .tableconfirm th, .tablarubrica .tableconfirm td {
        width: 200px;
        background: #FFF;
        padding: 10px;
    }

    .tablarubrica .tableconfirm th {
        text-align: left;
        font-weight: normal;
        font-family: 'Roboto-Medium';
        color: var(--SJDazul);
    }

.grupopestitulo {
    display: flex;
    align-items: center;
}

    .grupopestitulo .fas {
        margin-left: 5px;
    }

.tab360-header .grupopestitulo .fas {
    transition: transform ease-in .2s;
}

.tab360-header.activemenu .grupopestitulo .fas {
    transform: rotate(180deg);
}

.btnvolverpaginas {
    height: 40px;
    width: 40px;
    cursor: pointer;
    font-size: var(--fontSize24);
    color: var(--colorPrimario);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    border-radius: 100%;
}

    .btnvolverpaginas:hover {
        background: var(--color4);
    }

.unreadrow {
    font-family: 'Roboto-Bold';
}

/* Mensajes */

.vermensaje-info-usuario {
    font-size: var(--fontSize14);
    color: #0075e4;
    display: flex;
    align-items: center;
}

    .vermensaje-info-usuario .lis-avatarusuario {
        margin-left: 10px;
        width: 30px;
        height: 30px;
        margin-right: 5px;
    }

.vermensaje-wrapper.baralumno {
    position: sticky;
    top: 60px; /*barra53*/
    background: #FFF;
    z-index: 9999;
    padding: 10px 0;
}

.vermensaje-info-fecha {
    color: #777;
    background: #F4F4F4;
    border-radius: 2px;
    padding: 2px 4px;
    font-size: var(--fontSize12);
    display: inline-block;
}

.vermensaje-wrapper-multiple {
    padding: 10px;
    border-radius: 8px;
    border: 2px solid #F6F6F6;
    margin: 10px 0;
}

    .vermensaje-wrapper-multiple:hover {
        border-color: #E2E2E2;
    }

    .vermensaje-wrapper-multiple.active, .vermensaje-wrapper-multiple.active:hover {
        border-color: #0075e4;
    }

    .vermensaje-wrapper-multiple .vermensaje-asunto {
        padding: 3px;
        margin-top: 10px;
        font-size: var(--fontSize18);
        border-bottom: 1px solid #f0f0f0
    }

    .vermensaje-wrapper-multiple .responderwrapper {
        margin: 3px;
        /*padding-right: 5px;*/
        padding: 20px;
        padding-top: 10px;
        background: #F4F4F4;
        border-radius: 8px;
        margin-top: 40px;
    }

.titulomensajesresponder, .vermensaje-titlerespuestas {
    color: #444;
    margin-bottom: 20px;
    font-family: 'Roboto-Medium';
}

.vermensaje-titlerespuestas {
    border-bottom: 1px solid #CCC;
    padding-bottom: 4px;
    margin-top: 40px;
}

.vermensaje-info-usuariores {
    display: flex;
    align-items: center;
    margin-bottom: 0px;
    font-size: var(--fontSize14);
    color: var(--SJDazul);
}

    .vermensaje-info-usuariores .lis-avatarusuario {
        width: 30px;
        height: 30px;
    }

.vermensaje-respuesta {
    margin-left: 40px;
}

.vermensaje-wrapper-respuesta {
    margin-left: 10px;
}

.vermensaje-wrapper-multiple-md {
    display: flex;
    align-items: flex-start;
}

.vermensaje-wrapper-multiple-md-lista {
    width: 250px;
    flex-shrink: 0;
    padding: 0 20px;
}

.vermensaje-wrapper-multiple-md-detalle {
    flex: 1;
}

.vermensaje-wrapper-multiple-md-lista ul {
    list-style-type: none;
}

    .vermensaje-wrapper-multiple-md-lista ul li {
        display: flex;
        align-items: center;
        border-bottom: 1px solid #EEE;
        padding: 5px 0;
        font-size: var(--fontSize12);
        line-height: 17px;
    }

        .vermensaje-wrapper-multiple-md-lista ul li:last-of-type {
            border-bottom: 0px;
        }

        .vermensaje-wrapper-multiple-md-lista ul li .lis-avatarusuario {
            width: 30px;
            height: 30px;
        }

.titulolistarecep {
    font-family: 'Roboto-Medium';
    margin-bottom: 10px;
}

.nuevasrespuestas {
    background: #fbdedb;
    color: #e74c3c;
    padding: 3px 6px;
    border-radius: 2px;
    font-size: var(--fontSize11);
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    margin-right: 5px;
    font-weight: normal !important;
}

.vermensaje-wrapper-multiple-md-lista ul {
    padding: 0;
    margin: 0;
}

.vermensaje-info-usuario .fotoalumno {
    margin: 0;
}

.archivoadjuntor {
    margin-left: 40px;
    font-size: var(--fontSize12);
    color: #666;
}

/* Fin Mensajes */
.prespagina .ce-element[data-accion="navegarpagina"]:not(.nosombra):hover,
.prespagina .ce-element[data-accion="navegarenlace"]:not(.nosombra):hover,
.prespagina .ce-element[data-accion="ventanaemergente"]:not(.nosombra):hover,
.prespagina .ce-element[data-accion="etiquetaemergente"]:not(.nosombra):hover {
    background: rgba(0,0,0,.4);
    cursor: pointer !important;
}

    .prespagina .ce-element[data-accion="navegarpagina"]:not(.nosombra):hover img,
    .prespagina .ce-element[data-accion="navegarenlace"]:not(.nosombra):hover img,
    .prespagina .ce-element[data-accion="ventanaemergente"]:not(.nosombra):hover img,
    .prespagina .ce-element[data-accion="etiquetaemergente"]:not(.nosombra):hover img {
        -webkit-filter: brightness(70%);
        cursor: pointer !important;
    }

.prespagina h1,
.prespagina h2,
.prespagina h3,
.prespagina h4,
.prespagina h5 {
    margin: 0;
}

.controlespresentacion {
    transform: translateX(calc(-50% - 85px));
    bottom: 5px;
    display: none;
}

    .controlespresentacion.active {
        display: flex;
    }

.tabs360-infoguardar {
    font-size: var(--fontSize12);
    color: #888;
    text-align: center;
    margin-top: 2px;
}

.presGuardarPagina {
    padding-top: 0px;
    padding-bottom: 0px;
}

.dataTables_wrapper .dt-buttons {
    float: left;
}

    .dataTables_wrapper .dt-buttons .dt-button, .dataTables_wrapper .dt-buttons .dt-button:hover {
        background: var(--SJDazul);
        color: #FFF;
        border: none;
        border-radius: 3px;
        cursor: pointer;
        padding: 2px 4px;
    }

table tr.selected {
    background: var(--color4) !important;
    color: var(--colorPrimario);
}

table.dataTable.dt-checkboxes-select tbody tr {
    cursor: auto;
}

.dt-checkboxes {
    cursor: pointer;
}

.headerbuscar input {
    border: 1px solid #CCC;
    padding: 5px;
    border-radius: 3px;
    width: 100%;
}

.uploader-big {
    width: 240px;
    height: 160px;
}

.listatitulo360padding {
    padding-left: 50px !important;
}

table.dataTable thead .sorting, table.dataTable thead .sorting_asc, table.dataTable thead .sorting_desc, table.dataTable thead .sorting_asc_disabled, table.dataTable thead .sorting_desc_disabled {
    cursor: pointer;
    position: relative;
}

    table.dataTable thead .sorting::before, table.dataTable thead .sorting_asc::before, table.dataTable thead .sorting_desc::before, table.dataTable thead .sorting_asc_disabled::before, table.dataTable thead .sorting_desc_disabled::before {
        right: 1em;
        content: "\2191";
    }

    table.dataTable thead .sorting::after, table.dataTable thead .sorting_asc::after, table.dataTable thead .sorting_desc::after, table.dataTable thead .sorting_asc_disabled::after, table.dataTable thead .sorting_desc_disabled::after {
        right: 0.5em;
        content: "\2193";
    }

    table.dataTable thead .sorting::before, table.dataTable thead .sorting::after, table.dataTable thead .sorting_asc::before, table.dataTable thead .sorting_asc::after, table.dataTable thead .sorting_desc::before, table.dataTable thead .sorting_desc::after, table.dataTable thead .sorting_asc_disabled::before, table.dataTable thead .sorting_asc_disabled::after, table.dataTable thead .sorting_desc_disabled::before, table.dataTable thead .sorting_desc_disabled::after {
        position: absolute;
        bottom: 11px;
        display: block;
        opacity: 0.3;
        font-size: var(--fontsize21);
    }

table.dataTable thead th.sorting_disabled::before, table.dataTable thead th.sorting_disabled::after {
    content: "";
}

table.dataTable thead .sorting_asc::before, table.dataTable thead .sorting_desc::after {
    opacity: 1;
}

table.dataTable thead .sorting_asc::before, table.dataTable thead .sorting_desc::after {
    opacity: 1;
}

.copyspan, .autoevalspan, .gamificacionspan {
    display: inline-flex;
    margin-right: 5px;
    background: #cee8ee;
    color: #378ca0;
    padding: 3px 6px;
    border-radius: 2px;
    font-size: var(--fontSize11);
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    cursor: help !important;
}

.eliminarmarcadasgrid {
    background-color: #E74C3C;
    color: #FFF;
    padding: 2px 4px;
    cursor: pointer;
    border-radius: 3px;
    margin-left: 10px;
}

.lista-elementoeliminar {
    border-bottom: 1px solid #EEE;
    line-height: 30px;
}

.elementoseliminar {
    margin-top: 16px;
    margin-bottom: 16px;
}

.disabled {
    opacity: .5;
    pointer-events: none;
}

.pre-diccionaropal {
    border-bottom: 1px double var(--SJDazul);
    background: var(--color3);
    cursor: help;
}

.tipsoimg {
    border-radius: 5px;
    max-height: 100px;
    max-width: 100px;
    display: block;
    margin: auto;
    margin-bottom: 5px;
}

.pptb-hidepage.active {
    color: #e74c3c;
}

.obadge {
    position: absolute;
    background: #fbdedb;
    color: #e74c3c;
    font-size: var(--fontSize11);
    padding: 0px 4px;
    border-radius: 3px;
    bottom: 2px;
    right: 2px;
}

.pres-plantilla-img.pres-plantilla-plus {
    font-size: var(--fontSize40);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #888;
}

.linkleftmenulateral.switch360marcartodo {
    padding-right: 3px;
}

.card360containermini .card360contenido.selected {
    border-color: var(--colorPrimario);
}

.up-detail {
    display: flex;
    align-items: center;
}

.pres-paginaswrapper, .presen-bar-derecha-grupobotones {
    position: sticky;
    top: 60px;
}

.presen-bar-derecha-grupobotones {
    top: 70px;
}

.actions-1, .actions-2, .actions-3, .actions-4, .actions-5 {
    vertical-align: middle;
    height: 50px;
    min-width: 130px;
}

.star-rating input {
    display: none;
}

.star-rating label {
    color: #ccc;
    cursor: pointer;
}

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    font-size: var(--fontSize35);
    justify-content: space-around;
    text-align: center;
    margin: 0px 0 0;
    width: 160px;
}

    .star-rating label:hover, .star-rating label:hover ~ label {
        color: #fc0;
    }

    .star-rating :checked ~ label {
        color: #f90;
    }

.taxbloom {
    background-image: url('../images/bloom.png');
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: right;
}

.tb-checks {
    width: 120px;
}

.valignbottom {
    vertical-align: bottom;
}

.card360footer.multibtn a {
    margin: 0 5px;
}

    .card360footer.multibtn a.tareas span {
        background: #FFF;
        color: var(--colorPrimario);
        border: 1px solid var(--colorPrimario);
        position: relative;
    }

        .card360footer.multibtn a.tareas span:hover {
            background: var(--color4);
        }

        .nt-badge, .card360footer.multibtn a.tareas span.nt-badge {
            border: none;
            border-radius: 100%;
            background: var(--colorRojo);
            color: #FFF;
            width: 18px;
            height: 18px;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            font-size: var(--fontSize11);
            position: absolute;
            top: -6px;
            right: -6px;
        }

.tareasPendientesUsuario {
    display: flex;
    flex-flow: wrap;
}

    .tareasPendientesUsuario .t-card {
        border: 2px solid #EEE;
        border-radius: 10px;
        cursor: pointer;
        margin: 10px;
        padding: 10px;
        width: 300px;
        display: flex;
        flex-direction: column;
    }

        .tareasPendientesUsuario .t-card:hover {
            border-color: var(--color2);
        }

        .tareasPendientesUsuario .t-card .tipotarea {
            border-bottom: 1px solid var(--color3);
            margin-bottom: 10px;
            color: var(--colorPrimario);
        }

        .tareasPendientesUsuario .t-card .t-title {
            font-family: Roboto-Medium;
            margin-bottom: 5px;
        }

        .tareasPendientesUsuario .t-card .t-fechainicio, .tareasPendientesUsuario .t-card .t-fechafin {
            font-size: var(--fontSize12);
            color: #888;
        }

        .tareasPendientesUsuario .t-card .t-desc {
            font-size: var(--fontSize14);
            color: #444;
            margin-bottom: 5px;
            flex: 1;
        }

        .tareasPendientesUsuario .t-card .t-fechainicio.fecharojo, .tareasPendientesUsuario .t-card .t-fechafin.fecharojo {
            color: var(--colorRojo);
        }

table.dataTable thead th, table.dataTable thead td {
    padding: 0px;
}

.btnaddtipoevento, .btnguardartipoevento {
    border-radius: 100% !important;
    width: 32px;
    height: 32px;
    margin-right: 10px !important;
    align-items: center;
}

.btnguardartipoevento {
    margin-right: 10px !important;
    margin-left: 10px !important;
    flex-direction: column;
}

    .btnguardartipoevento .texto {
        color: var(--colorPrimario);
        font-size: var(--fontSize11);
        margin-top: 10px;
    }

    .btnguardartipoevento .fas {
        margin-top: 3px;
    }

.listatipoeventos {
    width: 100%;
}

    .listatipoeventos li {
        height: 34px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 0 4px;
    }

        .listatipoeventos li:hover {
            /*background: var(--color4);*/
        }

        .listatipoeventos li:not(:last-of-type) {
            border-bottom: 1px solid #EEE;
        }

.btneditartipoevento {
    cursor: pointer;
    background: var(--color4);
    padding: 4px 6px;
    font-size: var(--fontSize12);
    color: var(--colorPrimario);
    width: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 24px;
    border-radius: 3px;
}

.colorPickerinput {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    padding: 0;
    width: 24px;
    height: 24px;
    border: none;
    margin: 0px 10px 0 0 !important;
    cursor: pointer;
    border-radius: 3px;
}

.colortipoevento {
    border-radius: 100%;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    display: block;
}

.eventodescripciontipo {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

    .eventodescripciontipo .colortipoevento {
        width: 14px;
        height: 14px;
        margin-right: 5px;
    }

.colortitulo {
    display: flex;
    align-items: center;
}

textarea {
    resize: vertical;
}

.db-column.col-calendario {
    margin: 0 0 0 10px;
}

.db-wrapper .listacontenidos {
    grid-template-columns: repeat(auto-fill,200px);
}

.db-wrapper .tt-imagecontainer, .db-wrapper .tt-imagen, .db-wrapper .tt-imagentop {
    height: 137px;
}

.btnseguimientocontenido, .boton360portada {
    color: var(--colorPrimario);
    background: #FFF;
    border: 2px solid #EEE;
    display: flex;
    align-items: center;
}

    .btnseguimientocontenido:hover, .boton360portada:hover {
        background: #FFF;
        color: var(--colorSecundario);
        border-color: var(--color3);
    }

    .btnseguimientocontenido .far, .boton360portada .far {
        margin-right: 4px;
        font-size: var(--fontSize12);
    }

    .boton360portada.btneditarcontenido {
        height: 33px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: 10px;
    }

        .boton360portada.btneditarcontenido .fas,
        .boton360portada.btneditarcontenido .far {
            margin-right: 4px;
            font-size: var(--fontSize14);
        }

.db-wrapper .card360titulo {
    font-size: var(--fontSize14);
}

.db-wrapper .card360info {
    font-size: var(--fontSize11);
    padding-bottom: 0px;
}

.db-wrapper .cargando360div {
    margin-top: 0px;
}

.fc .fc-list-empty {
    background: #F8F8F8;
    color: #999;
}

.fc a {
    color: #666;
}

.mdm-calendario td .fc-daygrid-day-frame {
    min-height: 28px;
}

.mdd-calendario td .fc-daygrid-day-frame {
    min-height: 76px;
}

.db-mb-boton-cuadrado .fc-list-day-text {
    text-transform: capitalize;
}

div.card360contenido .card360info > span {
    display: flex;
    align-items: center;
    line-height: 12px;
    flex-direction: column;
    align-items: flex-start;
}

    div.card360contenido .card360info > span span:last-of-type {
        margin-top: 4px;
    }

    div.card360contenido .card360info > span .fas {
        display: none !important;
    }

.mu-newpostrowcell {
    display: flex;
    flex-direction: column;
    font-size: var(--fontSize12);
    color: #888;
    margin-right: 30px;
}

    .mu-newpostrowcell select {
        background: #FFF;
        padding: 8px;
        border: 1px solid #EEE;
        border-top-color: rgb(238, 238, 238);
        border-right-color: rgb(238, 238, 238);
        border-bottom-color: rgb(238, 238, 238);
        border-left-color: rgb(238, 238, 238);
        border-radius: 3px;
        font-size: var(--fontSize11);
        color: #888;
    }

.mu-newpostrow, .mmu-newpostrow {
    display: flex;
    justify-content: space-between;
}

.rowformevaluable2 {
    justify-content: flex-start;
}

.mu-newpostrow input:not([type="checkbox"]) {
    height: 30px !important;
}

.mu-newpostrow input[type="checkbox"] {
    margin: 5px 0 0 0;
}

.muev-inputmin {
    width: 70px !important;
    text-align: center;
}

.infoeval {
    font-size: var(--fontSize12);
    font-family: 'Roboto-Medium';
    color: #999;
    margin-right: 10px;
}

.btn-muro-evaluable, .btncambiarusuario {
    color: #05a8ff;
    padding: 6px;
    border-radius: 3px;
    cursor: pointer;
    font-size: var(--fontSize12);
    display: flex;
    align-items: center;
    border: 1px solid #d1efff;
}

    .btn-muro-evaluable:hover {
        color: #38baff;
    }

.infoeval .far {
    color: #38e46e;
}

.evalpost {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.btn-muro-evaluable .fas {
    margin-right: 5px;
    margin-left: 2px;
}

.evalbtn {
    display: flex;
    align-items: center;
    margin: 0 0 5px 0;
}

    .evalbtn a {
        text-decoration: none;
    }

.btn-muro-evaluable .far {
    margin-right: 5px;
    margin-left: 2px;
}

.evalbtn > a, .evalbtn > div {
    margin: 0 5px;
}

.jcform-row {
    margin-top: 10px;
    display: flex;
    flex-direction: row;
}

.jcform-cell {
    min-width: 90px !important;
    flex-shrink: 0 !important;
}

    .jcform-cell.flex1 {
        width: 100%;
        flex: 1;
    }

    .jcform-cell:not(:first-of-type) {
        margin-left: 15px;
    }

.txtorden, .txtordenbig {
    width: 70px !important;
    text-align: center;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btnmodtarea {
    display: none;
}

.nombreevaluable {
    font-size: var(--fontSize16);
    margin-bottom: 10px;
    color: var(--colorPrimario);
}

.nombreeval, .nombreeval .mmu-nombreusuario {
    color: #555;
}

.evalnoeval {
    color: var(--colorRojo);
    border-color: #fcdede;
}

    .evalnoeval:hover {
        color: var(--colorRojoOscuro);
    }

.boton360iconocirculomini {
    padding: 0;
}

    .boton360iconocirculomini .icono {
        width: 32px;
        height: 32px;
        font-size: var(--fontSize16);
    }

.btndermuro {
    display: flex;
    align-items: center;
}

.mapaentregable {
    margin-right: 10px;
}

.mmu-fileindicator {
    margin-right: 5px;
    color: var(--color2);
}

.mmu-adjunto:not(:first-of-type) {
    margin-top: 5px;
}

.mmu-adjuntos .mmu-archivoadjunto {
    margin-top: 5px;
}

.mmu-cardadjuntos {
    display: none;
}

.mmu-adjuntosbtn {
    display: flex;
}

.btnmostraradjuntos, .btnobservacionescomentario {
    color: var(--SJDazul);
    border: 2px solid var(--color3);
    background: var(--color4);
    border-radius: 3px;
    padding: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

    .btnmostraradjuntos:hover, .btnobservacionescomentario:hover {
        background: var(--color3);
        border-color: var(--color2);
    }

.btnobservacionescomentario {
    margin-left: 10px;
}

.btntoolcomentario.unread {
    color: #ff9e6b;
    border-color: #ffe2d2;
    background-color: #FFF;
    animation: shake 350ms 2 linear;
    -moz-animation: shake 350ms 2 linear;
    -webkit-animation: shake 350ms 2 linear;
    -o-animation: shake 350ms 2 linear;
    animation-iteration-count: infinite;
}

@keyframes shake {
    0% {
        transform: translate(3px, 0);
    }

    50% {
        transform: translate(-3px, 0);
    }

    100% {
        transform: translate(0, 0);
    }
}

@-moz-keyframes shake {
    0% {
        -moz-transform: translate(3px, 0);
    }

    50% {
        -moz-transform: translate(-3px, 0);
    }

    100% {
        -moz-transform: translate(0, 0);
    }
}

@-webkit-keyframes shake {
    0% {
        -webkit-transform: translate(3px, 0);
    }

    50% {
        -webkit-transform: translate(-3px, 0);
    }

    100% {
        -webkit-transform: translate(0, 0);
    }
}

@-ms-keyframes shake {
    0% {
        -ms-transform: translate(3px, 0);
    }

    50% {
        -ms-transform: translate(-3px, 0);
    }

    100% {
        -ms-transform: translate(0, 0);
    }
}

@-o-keyframes shake {
    0% {
        -o-transform: translate(3px, 0);
    }

    50% {
        -o-transform: translate(-3px, 0);
    }

    100% {
        -o-transform: translate(0, 0);
    }
}

.mmu-avatarcontenido {
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 3px;
    margin: 0 5px 0 3px;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}

.mmu-nombreusuarioflex {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.mmu-titulopost {
    display: flex;
    align-items: center;
}

.mmu-wordseparator {
    margin: 0 4px;
    padding-top: 1px;
}

.tipousuariocomentario {
    color: #6bccff;
    font-size: var(--fontSize11);
    display: flex;
    align-items: center;
}

.mpre-menumini {
    justify-content: space-around;
}

    .mpre-menumini .mpre-tcoption {
        width: auto;
        flex: 1;
    }

.star-rating-post {
    font-size: var(--fontSize15);
}

.star-rating-post {
    margin: 0px;
    margin-bottom: 0px;
    font-size: var(--fontSize15);
    width: 100px;
}

.pv-div {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.post-valoracion, .post-valoracion-user {
    margin-left: 4px;
    font-size: var(--fontSize12);
    color: #C4C4C4;
}

.valorpost:empty {
    display: none;
}

.elibro {
    cursor: pointer;
}

.fo-post {
    display: flex;
    flex-direction: column;
    flex-flow: wrap;
    padding: 10px;
    /*box-shadow: 0px 0px 2px #CCC;*/
    border: 2px solid #EEE;
    margin-bottom: 20px;
    border-radius: 5px;
    cursor: pointer;
}

    .fo-post:hover {
        background: #FBFBFB;
        border-color: var(--color2);
    }

.fo-infopost {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.fo-infouser {
    display: inline-flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.contenido-respuesta-wrapper .fo-infouser .fo-iu-ad {
    /*margin-bottom: 10px;*/
}

.fo-iu-avatar .lis-avatarusuario {
    margin: 0px;
    width: 20px;
    height: 20px;
    margin-right: 6px;
}

.fo-iu-nombre {
    font-size: var(--fontSize12);
    color: #666;
}

.fo-iu-avatar {
    margin-left: 4px;
}

.fo-iu-nombre {
    margin-right: 4px;
}

.fo-ip-titulo {
    font-size: var(--fontSize16);
    color: #555;
    margin-bottom: 6px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.fo-ip-resume {
    color: #AAA;
    font-size: var(--fontSize12);
    padding-bottom: 6px;
    border-bottom: 1px dashed #a0d8c0;
    margin-bottom: 6px;
}

.fo-iu-ad {
    font-size: var(--fontSize12);
    color: #AAA;
}

.postprincipal {
    padding: 20px;
    margin: 12px;
    border: 2px solid #EEE;
    display: flex;
    flex-direction: row;
}

.postrespuesta {
    border: 2px solid #EEE;
    border-radius: 5px;
    padding: 10px;
    margin: 12px;
    margin-left: 50px;
}

    .postprincipal:hover, .postrespuesta:hover {
        border-color: var(--color3);
    }

.postprincipal .titulo {
    margin-bottom: 10px;
    font-size: var(--fontSize21);
    color: #555;
}

.fo-post-ver a, .fo-post-ver a:link, .fo-post-ver a:visited, .fo-post-ver a:active {
    color: #40989f;
    text-decoration: none;
}

.fo-post-ver .contenido {
    font-size: var(--fontSize14);
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0;
}

    .fo-post-ver .contenido p:last-of-type {
        margin-bottom: 0px;
    }

.infouser-respuesta {
    flex-direction: column;
    width: 140px;
    flex-shrink: 0;
}

    .infouser-respuesta .lis-avatarusuario {
        width: 50px;
        height: 50px;
        margin: 0px;
    }

.contenido-respuesta-wrapper {
    flex: 1;
    padding-left: 10px;
    margin-left: 10px;
    border-left: 2px solid #F6F6F6;
}

.infouser-respuesta .fo-iu-avatar {
    margin-left: 0;
}

.postrespuesta {
    display: flex;
    flex-direction: row;
}

.fo-post-tools {
    display: flex;
    flex-flow: wrap;
    padding-top: 5px;
}

    .fo-post-tools:empty {
        display: none;
    }

.fo-post-tool {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--SJDazul);
    font-size: var(--fontSize12);
    padding: 4px 6px;
    cursor: pointer;
    margin-top: 4px;
    border-radius: 3px;
}

    .fo-post-tool:not(:first-of-type) {
        margin-left: 5px;
    }

    .fo-post-tool:hover {
        background: var(--color4);
    }

    .fo-post-tool:first-of-type {
        /*padding-left: 0px;*/
    }

.fpt-ico {
    margin-right: 2px;
}

.fpt-edit .fpt-ico {
    margin-bottom: 2px;
}

.fo-post-tools {
    border-top: 1px solid #EEE;
    margin-top: 6px;
}

.listaforoposts a {
    text-decoration: none;
    margin-bottom: 16px;
}


    .listaforoposts a:last-of-type {
        margin-bottom: 0px;
    }

.foropost .fo-infouser .fo-iu-nombre {
    margin-top: 5px;
}

.formreply {
    padding: 12px;
    margin-left: 40px;
}

.formcreatepost #texto {
    visibility: hidden;
}

.flexend {
    padding: 20px 0 0 0;
    display: flex;
    justify-content: flex-end;
}

.postnopublico .contenido, .postnopublico .infouser-respuesta, .postnopublico .fo-iu-ad {
    opacity: .4;
}

.newindicator {
    background: #c0392b;
    color: #FFF;
    font-size: var(--fontSize12);
    padding: 0px 4px;
    border-radius: 3px;
    cursor: pointer;
    line-height: 20px;
    margin-right: 10px;
}

.btntoptabs, .btntoptabspres, .btntoptabsprog {
    position: relative;
    width: 40px;
    height: 40px;
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-left: 5px;
    border-radius: 100%;
}

    .btntoptabs:hover {
        background-color: var(--color3);
    }

.submenu li {
    padding: 10px 15px;
}

.submenu {
    position: absolute;
    background: #FFF;
    border-radius: 3px;
    box-shadow: 0px 0px 5px #888;
    display: none;
    list-style-type: none;
    left: -140px;
    top: 0;
    padding-left: 0;
    z-index: 9;
    font-size: var(--fontSize12);
}

    .submenu li:hover {
        color: var(--colorPrimario);
    }

.db-menu-botones .mmu-wrapper {
    padding-top: 0;
}

.muromax .mmu-posts, .muromax .mmu-card {
    max-width: none;
}

.finalizarTema .pt-icono {
    font-size: var(--fontSize21);
}

.finalizarTema.finished .pt-icono {
    color: var(--colorPrimario);
}

.editarayuda {
    color: #BBB;
    font-size: var(--fontSize14);
    cursor: pointer;
}

.jconfirm-box-container.titlebar .jconfirm-title {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
}

.porcentok {
    color: #3498db;
}

.porcentko {
    color: #e74c3c;
}

.inputbuscarglobalwrapper {
    margin: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inputbuscarglobal {
    border: 2px solid #DDD;
    border-radius: 30px;
    height: 30px;
    width: 100%;
    max-width: 300px;
    padding: 5px 10px;
}

.grupocontenido {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gr-nombre {
    overflow: hidden;
    white-space: nowrap;
}

.gr-num {
    width: 20px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--colorPrimario);
    color: #FFF;
    border-radius: 100%;
    height: 20px;
    font-size: var(--fontSize12);
    margin-left: 10px;
}

    .gr-num.num0 {
        background: var(--color2);
    }

.menuGoogle {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    border-top: 1px solid #EEE;
    padding: 20px 10px 0;
    width: 100%;
}

.mg-title {
    color: #888;
    font-size: var(--fontSize16);
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

    .mg-title img {
        height: 20px;
        margin-right: 4px;
    }

.switch360 .mg-icono img {
    height: 14px;
}

.mg-icono {
    margin-right: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #CCC;
    border-radius: 100%;
    height: 24px;
    width: 24px;
}

.menuGoogle .switch360 .pag-f-label {
    display: flex;
    align-items: center;
}

.sl-libroinfo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sl-portada {
    width: 140px;
    margin-bottom: 10px;
}

.sl-titulo {
    width: 100%;
    margin-bottom: 10px;
}

.sl-isbn {
    color: #666;
    width: 100%;
}

.sl-usuarios {
    display: flex;
    flex-direction: column;
}

.sl-usuario {
    display: flex;
    align-items: center;
    height: 40px;
    cursor: pointer;
    padding: 0 5px;
    font-size: var(--fontSize14);
}

.sl-usuariostitulo {
    color: #444;
    margin-top: 30px;
    border-bottom: 1px solid #EEE;
}

.sl-usuario:hover {
    background: #F2F2F2;
}

.sl-usuario.active {
    background: var(--color4);
}

.sl-unidad-title {
    font-size: var(--fontSize16);
    height: 40px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    color: var(--colorPrimarioOscuro);
    background: var(--color3);
    border-radius: 5px;
    margin-bottom: 8px;
    cursor: pointer;
}

.sl-unidad-actividades {
    font-size: var(--fontSize14);
    color: #444;
    display: none;
}

.sl-unidad.active .sl-unidad-actividades {
    display: block;
}

.sl-actividad {
    height: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    border-bottom: 1px solid #EEE;
}

    .sl-actividad span {
        display: flex;
        align-items: center;
    }

    .sl-actividad:hover {
        background: #F2F2F2;
    }

    .sl-actividad .far {
        font-size: var(--fontSize10);
        margin-right: 5px;
    }

.notas_actividadnota {
    background: var(--SJDazul);
    color: #FFF;
    border-radius: 100%;
    width: 25px;
    height: 25px;
    font-size: var(--fontSize12);
    display: flex;
    justify-content: center;
    align-items: center;
}

.spannotas div {
    margin: 0 5px;
}

.spannotas .fas, .spannotas .far {
    font-size: var(--fontSize12);
    margin-right: 4px;
}


.tabs360 .tab360-header {
    border: 2px solid var(--color2);
    border-radius: 0;
    border-bottom: 0;
    background: #FFF;
    border-right: 0;
    margin-right: 0;
}

    .tabs360 .tab360-header.active {
        color: var(--colorPrimarioOscuro);
        background: var(--color3);
    }

.tabs360 :not(.tab360-header) + .tab360-header {
    border-radius: 5px 0 0 0;
    margin-left: 5px;
}

.tabs360 .tab360-header:first-of-type {
    border-radius: 5px 0 0 0;
    margin-left: 5px;
}

.tabs360 .tab360-header:last-of-type, .tabs360 .tab360-header.tabultima {
    border-radius: 0 5px 0 0;
    border-right: 2px solid var(--color2);
}

.tabs360 .tabs360-headers {
    padding-bottom: 0;
}

.flexnoweight {
    flex: none;
}

.pag-alert-info span {
    background: #dfecf5;
    color: #3577a0;
}

.convocatoriagrupo {
    min-width: 400px;
}

.lf-grupos, .cf-contenido, select {
    background: #FFF;
}

.imgevcal {
    width: 40px;
    margin-right: 10px;
}

.db-calendario-dias .fc-list-event-title > div {
    display: flex;
}

.breadcrum img {
    max-width: 36px;
    max-height: 36px;
    margin-right: 5px;
}

.boton360iconocirculo .icono img {
    max-width: 21px;
    max-height: 21px;
}

.boton360.boton360iconocirculo.boton360google .icono {
    background: #FFF;
    border: 2px solid var(--color2);
}

.boton360crdrivelink {
    display: none;
}

    .boton360crdrivelink.active {
        display: flex;
    }

.labelicon {
    display: inline-flex;
    align-items: center;
    margin-right: 10px;
}

.switch360.floatleft {
    height: 34px;
}

.tabs360-right {
    margin-left: auto;
    margin-right: 0;
    display: flex;
    align-items: center;
}

.contenidofullscreen .topbar, .contenidofullscreen .mpre-menumini, .contenidofullscreen .pag-titulo, .contenidofullscreen .leftmenulateralcontainer .grupo-menuprincipal::before {
    display: none;
}

.contenidofullscreen .pag-content {
    margin-top: 0;
}

.contenidofullscreen .contenidopagina {
    padding: 0;
}

.jconfirm-content .grupolistacheck {
    padding-right: 10px;
}

.inputlist {
    width: 123px !important;
    padding: 4px !important;
    margin: 2px 0;
    text-align: center !important;
    font-size: var(--fontSize12) !important;
}

.indice-contenido-apertura .ha-tema {
    align-items: center;
}

.act-info-grid {
    background: #e1f1f5;
    color: #3d9db3;
    padding: 3px 6px;
    border-radius: 2px;
    font-size: var(--fontSize11);
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    /*cursor: help !important;*/
    margin-right: 5px;
}

.linkprogramaciones {
    padding-right: 0;
    padding-left: 9px;
    width: 278px;
    border-radius: 0;
}

    .linkprogramaciones:hover {
        background: #FAFAFA;
    }

    .linkprogramaciones .faicomenulateral {
        margin-right: 5px;
    }

    .linkprogramaciones.active {
        background: var(--color3);
        color: var(--colorPrimario);
        font-family: Roboto;
    }

    .linkprogramaciones .faicomenulateral {
        color: var(--colorPrimario);
    }

.switch360col {
    flex-direction: column;
    align-items: flex-start;
}

.form360noheight {
    height: auto;
}

.tipso_bubble {
    font-size: var(--fontSize12);
}

.labelinfoguardado {
    margin-right: 10px;
    margin-top: -8px;
}

    .labelinfoguardado .noguardado {
        color: var(--colorRojo);
        font-size: var(--fontSize12);
        background: var(--colorRojo);
        border-radius: 3px;
        color: #FFF;
        padding: 4px 8px;
    }

.df-group {
    display: flex;
    align-items: center;
    margin: 5px;
    flex-shrink: 0;
}

    .df-group select {
        max-width: 240px;
    }

.nopaddingleft {
    padding-left: 0 !important;
}

.campo120 {
    max-width: 120px;
    text-align: center;
    font-size: var(--fontSize12) !important;
    flex-shrink: 0;
}

.campofecha {
    max-width: 200px;
    text-align: center;
}

.flexnoweight {
    flex: none;
}

.datetimepickersec {
    margin-left: 10px;
}

.list-contenido-item {
    display: flex;
    padding-top: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid #EEE;
    cursor: pointer;
    align-items: center;
}

    .list-contenido-item:last-of-type {
        border-bottom: 0;
    }

    .list-contenido-item:hover {
        background: #F4F4F4;
    }

    .list-contenido-item .tt-imagencaratula {
        height: 34px;
        width: 34px;
        position: relative;
        border-radius: 5px;
        background-size: cover;
        flex-shrink: 0;
        margin-left: 5px;
    }

    .list-contenido-item .card360titulo {
        font-size: var(--fontSize14);
        padding: 0;
        display: flex;
        align-items: center;
        /*word-break: break-all;*/
        white-space: nowrap;
        margin-left: 10px;
        text-overflow: ellipsis;
        width: 220px;
        overflow: hidden;
    }

.listasalas {
    display: grid;
    grid-template-columns: repeat(auto-fill,290px);
    grid-column-gap: 20px;
    row-gap: 20px;
    width: 100%;
}

.listasalasprofesores {
    grid-template-columns: repeat(auto-fill,270px);
    justify-content: center;
}

.salaconf {
    border-radius: 10px;
    border: 2px solid #EEE;
    padding: 10px;
}

    .salaconf .sc-fecha {
        text-transform: capitalize;
        font-size: var(--fontSize14);
    }

    .salaconf .sc-titulo {
        font-size: var(--fontSize18);
        margin: 10px 0;
    }

    .salaconf .sc-descripcion {
        font-size: var(--fontSize14);
        margin: 10px 0 0 0;
        color: #666;
    }

.listasalasnuevas .salaconf .sc-fecha {
    color: var(--colorVerdeOscuro);
}

.listasalasantiguas .salaconf .sc-fecha {
    color: var(--colorRojo);
}

.salaconf .sc-icono {
    font-size: var(--fontSize42);
    color: #EEE;
    width: 100%;
    height: 52px;
    text-align: center;
    margin-bottom: 20px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.colacceso {
    width: 120px;
    margin-left: 10px;
    pointer-events: none;
}

.btneditarreunion {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.badgenew {
    background: var(--colorVerdeOscuro);
    border-radius: 100%;
    width: 16px;
    height: 16px;
    margin-left: 10px;
}

.cursorpointer {
    cursor: pointer;
}

.section-label {
    font-family: Roboto-Light;
    font-size: var(--fontSize18);
    color: var(--colorPrimario);
    margin-bottom: 20px;
}

/* MULTI FAB */

.multi-action {
    /*display: inline-flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 56px;
    height: 56px;
    margin: 300px 0 0 -28px;
    left: 50%;*/



    position: fixed;
    bottom: 40px;
    right: 40px;
    border-radius: 100%;
    background: var(--colorSecundario);
    width: 55px;
    height: 55px;
    color: #FFF;
    border: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: var(--fontSize20);
    z-index: 99999;
    cursor: pointer;
}

.action-button {
    position: absolute;
    width: 55px;
    height: 55px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 0;
    outline: 0;
    background: var(--colorSecundario);
    font-size: var(--fontSize24);
    color: white;
    z-index: 2;
    box-shadow: 0px 0px 2px #888;
    transition: all 0.3s;
}

.actions {
    position: absolute;
    list-style: none inside none;
    margin: 0 0 0 0;
    padding: 0;
    width: auto;
    float: left;
    background-color: transparent;
    top: 8px;
    left: 8px;
    z-index: 1;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

    .actions li {
        position: absolute;
        display: block;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.16), 0 2px 5px 0 rgba(0, 0, 0, 0.26);
        margin: 0;
        background: #212121;
        color: #ffffff;
        transition: all 0.3s;
        transform: scale(0.3);
    }

        .actions li:nth-child(1), .actions li:nth-child(2), .actions li:nth-child(3), .actions li:nth-child(4), .actions li:nth-child(5) {
            background: var(--colorSecundario);
        }

        .actions li a {
            background: inherit;
            color: inherit;
            display: block;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            line-height: 40px;
            text-align: center;
        }

        .actions li:active {
            box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19), 0 8px 17px 0 rgba(0, 0, 0, 0.2);
        }

.action-button.active {
    box-shadow: 0 17px 50px 0 rgba(0, 0, 0, 0.19), 0 12px 15px 0 rgba(0, 0, 0, 0.24);
}

    .action-button.active ~ .actions li {
        transition: all 0.3s;
        transform: scale(1);
    }

        .action-button.active ~ .actions li:nth-child(1) {
            margin-top: -56px;
        }

        .action-button.active ~ .actions li:nth-child(2) {
            margin-top: -104px;
        }

        .action-button.active ~ .actions li:nth-child(3) {
            margin-top: -152px;
        }

        .action-button.active ~ .actions li:nth-child(4) {
            margin-top: -200px;
        }

        .action-button.active ~ .actions li:nth-child(5) {
            margin-top: -248px;
        }

.action-button span {
    transition: all 0.3s;
}

.action-button.active:not(.no-rotate) span {
    transform: rotate(-45deg);
}

.minwidth400 {
    min-width: 400px;
}

@media only screen and (max-width: 1320px) {
    .colprofcalendario {
        padding-left: 0 !important;
    }
}

.card360titulo .mg-icono {
    margin-right: 10px;
    border: none;
}

    .card360titulo .mg-icono img {
        width: 26px;
        height: 26px;
    }

.listagrupos .card360titulo {
    display: flex;
    align-items: center;
    line-height: 24px;
}

.listacontenidos .card360titulo {
    display: flex;
    align-items: center;
}

.jconfirm-content {
    padding-right: 10px;
}

.mmu-card.active > .mmu-cardadjuntos {
    display: block;
}

.bigbtncard.nuevapagina .text {
    margin-left: 0;
}

.gdrive360comp .lds-ripple div {
    position: absolute !important;
    border: 4px solid var(--colorPrimario) !important;
}

.gdrive360comp .lds-ripple {
    display: inline-block !important;
    position: relative !important;
    width: 80px !important;
    height: 80px !important;
}

.gdrive360comp {
    display: flex;
    grid-template-columns: repeat(auto-fill,175px);
    grid-column-gap: 20px;
    row-gap: 20px;
    width: 100% !important;
    justify-content: center;
}

    .gdrive360comp.active {
        display: grid;
    }

.gdrive360elem {
    height: 175px !important;
    border: 1px solid #DDD !important;
    display: flex;
    border-radius: 10px !important;
    flex-direction: column;
    cursor: pointer !important;
}

    .gdrive360elem:hover {
        border-color: var(--SJDazul) !important;
    }

.gd360image {
    flex: 1;
    background-size: cover !important;
    background-position: center center !important;
    border-radius: 10px 10px 0 0 !important;
    background-repeat: no-repeat !important;
}

.gd360footer {
    height: 50px !important;
    display: flex;
    align-items: center;
    padding: 0 10px !important;
    border-radius: 0 0 10px 10px;
}

.gd360title {
    font-size: var(--fontSize12) !important;
    width: 130px !important;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.gd360icon {
    margin-right: 10px !important;
    margin-top: 6px !important;
}

.gdrive360elem.active {
    border-color: var(--SJDazul) !important;
}

    .gdrive360elem.active .gd360title {
        font-family: Roboto-Medium;
    }

    .gdrive360elem.active .gd360footer {
        background: var(--color4);
    }

.tox .fas, .tox .far {
    font-family: 'Font Awesome 5 Free' !important;
}

.tox .fab {
    font-family: 'Font Awesome 5 Brands' !important;
}

.tox .fas {
    font-weight: 900 !important;
}

.tox .far {
    font-weight: 900 !important;
}

.tox .fab {
    font-weight: 400 !important;
}

.copiarcontenidoinfo {
    margin-top: 10px;
    font-size: var(--fontSize16);
}

.topbar-title {
    margin-left: 10px;
    color: #FFF;
    font-family: Roboto;
    display: flex;
    align-items: center;
    user-select: none;
    font-size: 22px;
}

    .topbar-title .fas {
        margin-right: 5px;
        font-size: var(--fontSize11);
        color: rgba(255,255,255,.6);
    }

.iguardartop {
    margin-right: 5px;
}

.prespaginappt h1 {
    font-size: 56px;
}

.prespaginappt h2 {
    font-size: var(--fontSize45);
}

.select100 select {
    width: 100%;
}

.paginaspdf {
    /*opacity: 0;
    position: absolute;*/
    display: none;
    pointer-events: none;
}

.paginapdf {
    position: relative;
    width: 1280px;
    height: 720px;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.list-loading-item {
    font-size: var(--fontSize18);
    color: #999;
    margin-bottom: 5px;
}

    .list-loading-item .lli-ico {
        margin-right: 10px;
    }

.btnleerpagina {
    cursor: pointer;
    font-size: var(--fontSize21);
    width: 49px;
    height: 49px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--SJDazul);
}

    .btnleerpagina:hover {
        background: #F2F2F2;
    }

.label-min-grid {
    width: 0px;
    display: block;
    overflow: hidden;
}

.flatpickr-monthDropdown-months option {
    color: #FFF;
    background: #27262f;
    font-size: var(--fontSize14);
}

.boton360iconorow {
    align-items: center;
}

    .boton360iconorow span {
        margin-right: 5px;
    }

.boton360gris {
    background: #999;
}

.boton360azul {
    background: #69bcc2;
}

.audiorecordinfo {
    color: #69bcc2;
    margin-right: 10px;
    font-size: var(--fontSize14);
}

    .audiorecordinfo span {
        margin-right: 5px;
    }



.presaudioplayer {
    font-size: var(--fontSize24);
    color: #FFF;
    width: 100%;
    height: 100%;
    display: flex;
    background: #0075e4;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
}

.playing {
    background: rgba(255, 255, 255, 0.1);
    width: 100%;
    height: 100%;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0.5rem;
    box-sizing: border-box;
    background: #0075e4;
}

.playingpagina {
    width: 30px;
    height: 28px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0.2rem;
    box-sizing: border-box;
}

.playing__bar {
    display: inline-block;
    background: white;
    width: 30%;
    height: 100%;
    -webkit-animation: up-and-down 1.3s ease infinite alternate;
    animation: up-and-down 1.3s ease infinite alternate;
}

.playing__bar1 {
    height: 60%;
}

.playing__bar2 {
    height: 30%;
    -webkit-animation-delay: -2.2s;
    animation-delay: -2.2s;
}

.playing__bar3 {
    height: 75%;
    -webkit-animation-delay: -3.7s;
    animation-delay: -3.7s;
}

@-webkit-keyframes up-and-down {
    10% {
        height: 30%;
    }

    30% {
        height: 100%;
    }

    60% {
        height: 50%;
    }

    80% {
        height: 75%;
    }

    100% {
        height: 60%;
    }
}

@keyframes up-and-down {
    10% {
        height: 30%;
    }

    30% {
        height: 100%;
    }

    60% {
        height: 50%;
    }

    80% {
        height: 75%;
    }

    100% {
        height: 60%;
    }
}

.videosubidopres {
    width: 100%;
    height: 100%;
}

.iinfovacioaviso {
    color: #0075e4;
    font-size: var(--fontSize14);
    margin: 10px;
    background: #cce6ff;
    border-radius: 3px;
    padding: 10px;
}

.pres-audio.edrag {
    width: 44px;
    height: 44px;
}

.pres-container-canvas * {
    animation-name: unset !important;
}

.grid360-container-botonflotante:empty {
    padding-bottom: 0;
}

.fo-post-tools .fo-post-tool .fpt-ico {
    line-height: normal;
}

.cce-accesos:first-of-type {
    color: var(--colorPrimario);
    font-weight: bold;
}

.cce-accesos .cce-title span:nth-child(2) {
    text-transform: capitalize;
}

.cce-accesos .cce-title {
    display: flex;
    border-bottom: 1px solid #EEE;
    height: 30px;
    align-items: center;
}

.cce-accesos:last-of-type .cce-title {
    border-bottom: 0;
}

.cce-accesos .cce-title .cce-fecha {
    margin-right: 10px;
}

.cce-accesos .cce-title .cce-ip {
    flex: 1;
    text-align: right;
    margin-left: 10px;
}

.pres-videos-subidos {
    display: flex;
    align-items: center;
}

    .pres-videos-subidos .pres-video-nombre {
        margin-left: 5px;
        width: 100%;
        display: block;
    }

.pab-titulo {
    margin-top: 5px;
    background: #EEE;
    font-size: var(--fontSize12);
    color: #555;
    padding: 5px;
}

.pab-content .pres-videos-subidos {
    flex-shrink: 0;
}

.pab-content {
    display: flex;
    align-items: center;
    flex-direction: column;
}

    .pab-content .pab-video {
        display: flex;
        align-items: center;
        width: 100%;
    }

    .pab-content .pres-video-nombre {
        font-size: var(--fontSize11);
    }

.btncopiarcodigo {
    padding: 6px 8px;
}

    .btncopiarcodigo .far, .btncopiarcodigo .fas {
        margin-right: 0px !important;
    }

.fas.no-icon:before, .far.no-icon:before, .fab.no-icon:before {
    display: none;
}

.fas.no-icon, .far.no-icon, .fab.no-icon {
    font-family: Roboto;
    font-weight: normal;
}

.modo-texto, .modo-texto .btneliminararchivo {
    width: auto !important;
    padding: 0 4px !important;
}

.boton360flotante.modo-texto {
    border-radius: 40px !important;
    padding: 0 10px !important;
}

.boton360flotante.boton360flotantemini.modo-texto {
    right: 265px !important;
}

.input-confirm {
    width: 100%;
    border: 1px solid #CCC;
    padding: 10px;
    border-radius: 5px;
    background: #FFF;
    cursor: pointer;
}

.card360footer .nodeco .boton360 {
    display: flex;
    align-items: center;
}


.card360footer .nodeco .ico {
    margin-right: 5px;
}

figcaption {
    color: #888;
    font-size: 14px !important;
}

/*SJD*/






.contenidopagina.opened {
    padding-left: 340px;
}

.field-error {
    border: 2px solid var(--colorRojoOscuro) !important;
}

.fieldset-theme fieldset {
    border-top: 10px solid #ebf2f4;
}

    .fieldset-theme fieldset legend {
        color: #3c4b54;
        font-size: 14px;
        font-weight: bold;
        line-height: 23px;
        padding: 10px 10px 10px 0;
        width: auto;
        border: none;
        margin: 0;
    }

        .fieldset-theme fieldset legend i {
            background-color: #ecf0f3 !important;
            border-radius: 20px !important;
            color: #7b878e !important;
            float: left;
            margin-right: 5px !important;
            min-width: 25px;
            padding: 5px 7px 5px 7px !important;
            text-align: center;
        }

.fieldset-theme legend {
    float: none;
}

.widget-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #EEE;
    position: sticky;
    top: 60px;
    background: #FFF;
    padding: 5px 10px;
    z-index: 99;
}

.widget-buttons {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
}

.widget-toolbar {
    margin: 0 10px;
}

    .widget-toolbar a {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        text-decoration: none;
        min-width: 51px;
        border-radius: 5px;
        padding: 5px;
    }

        /*.widget-toolbar a:hover {
    background: #dbe7eb;
}*/

        .widget-toolbar a::before {
            border: 2px solid;
            border-radius: 100%;
            width: 34px;
            height: 34px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 18px;
        }

        .widget-toolbar a span {
            font-size: 12px;
            margin-top: 5px;
            text-transform: capitalize;
            font-family: 'Roboto';
        }

    .widget-toolbar .ico-boton30.fa-check {
        /*border-color: #E48821;
        color: #E48821;*/

        color: var(--SJDnaranja);
        border-color: var(--SJDnaranja);
    }

    .widget-toolbar .ico-boton30.fa-save {
        /*border-color: #1B987A;
        color: #1B987A;*/

        color: var(--SJDverde);
        border-color: var(--SJDverde);
    }

    .widget-toolbar .ico-boton30.fa-times {
        /*border-color: #C51A2C;
        color: #C51A2C;*/
        color: var(--SJDrojo);
        border-color: var(--SJDrojo);
    }

    .widget-toolbar .ico-boton30.fa-calendar {
        /*border-color: #C51A2C;
        color: #C51A2C;*/
        color: var(--SJDazul);
        border-color: var(--SJDazul);
    }

.space-10 {
    height: 10px;
}

.grey.lighter.pull-left.position-relative {
    display: inline-flex;
    align-items: center;
}

.container-row-space .row {
    margin-bottom: 5px;
}

.container-row-space .form-switch {
    margin-top: 5px;
}

.widget-header h3 {
    color: var(--SJDazul);
    min-height: 30px;
}

.form-check-input:checked {
    background-color: var(--SJDazul) !important;
    border-color: var(--SJDazul) !important;
}

.requiredmark {
    margin-left: 2px;
}

.table a.circulo, .filtros a.circulo {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-decoration: none;
    border-radius: 5px;
}

    .table a.circulo::before, .filtros a.circulo::before {
        border: 2px solid;
        border-radius: 100%;
        width: 30px;
        height: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 18px;
        margin: 1px;
    }

    .table a.circulo span {
        font-size: 11px;
        margin-top: 4px;
        text-transform: capitalize;
        font-family: 'Roboto';
    }

.table .circulo.verde, .verde {
    /*color: var(--colorVerdeOscuro);*/
    color: var(--SJDverde);
}

.verdeSuave {
    color: var(--SJDverdeSuave);
}

.lima {
    color: var(--SJDlima);
}

.table .circulo.azul, .azul {
    /*color: var(--colorPrimarioOscuro);*/
    color: var(--SJDazul);
}

.azulSuave {
    color: var(--SJDazulSuave);
}

.azulLogo {
    color: var(--SJDazulLogo);
}

.table .circulo.rojo, .rojo {
    color: var(--SJDrojo);
    /*color: var(--SJDrojoSuave);*/
}

.rojoSuave {
    color: var(--SJDrojoSuave);
}

.rojoMagenta {
    color: var(--SJDmagenta);
}

.lavanda {
    color: var(--SJDlavanda);
}

.circulo.negro, .negro {
    /*color: #000;*/
    color: var(--SJDnegro);
}

.table th, .table td {
    vertical-align: middle;
}

    .table th a {
        text-decoration: none;
        color: var(--colorPrimarioOscuro);
        font-weight: bold;
    }


    .table th.center, .table td.center {
        text-align: center;
    }

.readonly {
    pointer-events: none;
    background: #EEE !important;
}

.col-boton-buscar {
    display: inline-flex;
    align-items: flex-end;
    padding-bottom: 3px;
}

.pag-content .filtros {
    margin-bottom: 15px;
}

.col-switch {
    display: inline-flex;
    align-items: center;
}

/*----------------------------------------------------------*/

/*Cambia el color de las pestañas de los formularios*/
.caja-botones .nav-pills > li.active:nth-child(2) > a, .caja-botones .nav-pills > li.active:nth-child(7) > a, .caja-botones .nav-pills > li.active:nth-child(12) > a {
    background-color: var(--SJDverdeSuave);
}

.caja-botones .nav-pills > li.active:nth-child(3) > a, .caja-botones .nav-pills > li.active:nth-child(8) > a, .caja-botones .nav-pills > li.active:nth-child(13) > a {
    background-color: var(--SJDnaranja);
}

.caja-botones .nav-pills > li.active:nth-child(4) > a, .caja-botones .nav-pills > li.active:nth-child(9) > a {
    background-color: var(--SJDmagenta);
}

.caja-botones .nav-pills > li.active:nth-child(5) > a, .caja-botones .nav-pills > li.active:nth-child(10) > a {
    background-color: var(--SJDverde);
}

/*----------------------------------------------------------*/

.topbar-selector-centro {
    width: 350px;
}

/*----------------------------------------------------------*/

.paginacion td table tbody tr > td {
    padding-left: 4px;
    padding-right: 4px;
    font-size: 16px;
}

/*----------------------------------------------------------*/
/*Tabla de disponibilidad del voluntario*/

.tablaDisponibilidad tbody tr td {
    border: 1px solid #ccc;
    background-color: white;
    max-width: 100px;
    min-width: 40px;
    text-align: center;
    padding: 2px;
}

.tablaDisponibilidad .VODISdia label {
    margin-left: 10px;
}

.tablaDisponibilidad {
    width: 90%;
    margin: auto;
    border-collapse: collapse;
}

.VODISdia td {
    padding-top: 4px;
    padding-bottom: 3px;
}

.VODISdia td, .VODIShorarioDesde td:first-child, .VODIShorarioHasta td:first-child {
    text-align: center;
}

    .VODISdia td:nth-child(odd), .VODIShorarioDesde td:nth-child(odd), .VODIShorarioHasta td:nth-child(odd) {
        background-color: #EEE;
    }

.VODIShorarioDesde td input, .VODIShorarioHasta td input {
    background-color: transparent;
}

/*----------------------------------------------------------*/
/* Panel flotante con tabla de disponibilidad */

.VOdisponible_tabla {
    margin-right: 0px;
    margin-left: auto;
    /*width: 52%;*/
}

    .VOdisponible_tabla td, .VOdisponible_tabla tr {
        border: 1px solid #ccc;
        padding: 10px 15px;
        text-align: center;
        width: 70px;
    }

.campoDisp {
    width: 70px;
}

.VOdisponible_titulo {
    background-color: #ececec;
}

.VOdiaValido {
    background-color: var(--SJDverdeSuave);
}

.VOdiaNoValido {
    background-color: var(--SJDrojoSuave);
}

/*----------------------------------------------------------*/
/* Mensajes scrolleable */

.pantalla-chat {
    max-height: 70vh;
    overflow-y: scroll;
}

#MainContent_ftbTexto {
    resize: none;
    overflow: hidden;
    border-radius: 15px;
    padding: 5px 8px;
}

/*------------------------------------------------------------*/

.panelContrasena {
    position: absolute;
    background-color: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 2px 2px 2px #808080;
    min-width: 300px;
    top: 30vh;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*----------------------------------------------------------*/

.NotasPanel {
    position: absolute;
    z-index: 80;
    width: 50%;
    min-width: 300px;
    left: 25%;
}

/*
    .VOdisponible_panel{
    position: absolute;
    z-index: 80;
    width: 50%;
    min-width: 300px;
    left: 25%;
}

.VOdisponible_tabla{
    margin: auto;
}

.VOdisponible_tabla td, .VOdisponible_tabla tr{
    border: 1px solid #ccc;
    padding: 10px 15px;
}

.VOdisponible_titulo{
    background-color: #ececec;
}
    .VOdiaValido {
    background-color: var(--SJDverdeSuave);
}
.VOdiaNoValido {
    background-color: var(--SJDrojoSuave);
}*/


/*----------------------------------------------------------*/

.mensajeCorrespondencia {
    background-color: #ececec;
    padding: 10px 20px;
    margin: 10px 0px;
    border-radius: 5px;
    border: 1px solid #cecece;
}

.mensajeTexto {
    border: 1px solid #cecece;
    background-color: white;
    padding: 10px;
    margin: 5px 0px 20px 0px;
    box-shadow: -4px 4px 5px #dedede;
    max-height: 50vh;
    min-height: 30vh;
    overflow: scroll;
    overflow-x: hidden;
}

/*----------------------------------------------------------*/
/*Tabla de disponibilidad del voluntario*/

.UsuarioCentroLabel {
    color: white;
    font-size: 14px;
    margin: 0px 20px 0px 0px;
    font-weight: normal;
}

/*----------------------------------------------------------*/


.columna80 {
    width: 70px;
}

.form-select {
    font-size: inherit !important;
}

.td-accion {
    display: flex;
    align-items: baseline;
}


.cir60::before {
    width: 60px;
    height: 60px;
    line-height: 53px;
}

.cir60.fa::before {
    font-size: 35px;
    border-width: 4px !important;
}


.cir30::before {
    width: 30px;
    height: 30px;
    line-height: 25px;
}

.cir30.fa::before {
    font-size: 18px;
    border-width: 2px !important;
}

.cir20::before {
    width: 20px;
    height: 20px;
    line-height: 15px;
}

.cir20.fa::before {
    font-size: 10px;
    border-width: 2px !important;
}

.mini-textbox {
    width: 40px;
}

.boton360grupo.active {
    background-color: #4fa861;
    border-color: #2a7423;
}

.fieldset-theme {
    padding: 15px;
}

.my-tabs {
    margin-top: 20px;
}

.buscar-campo {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

.buscar-boton {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

input[type=checkbox] + label, input[type=radio] + label, .form-check-label {
    font-weight: normal;
}

.titulo {
    color: var(--SJDazul);
    margin-left: 30px;
}
