


.prime-section-title {
    font-size: 30px;
    letter-spacing: -1px;
    font-weight: bold;
    padding-bottom: 5px;
    margin-bottom: 5px;
}
.prime-section-subtitle {
    font-size: 14px;
    text-align: justify;
}

/*///////////////////////////////// ROLLCALL */
.rollcall-container {
    margin: auto;
}
.row-prime {
    display: flex;
    border: 1px solid lightgray;
    box-shadow: 0 0 15px -10px;
    border-radius: 4px;
    padding: 10px;
    margin: 20px 0;
}
.student-image-container {
    display: flex;
    justify-content: center;
    margin-right: 10px;
}
.student-image-container img {
    max-width: 100px;
    max-height: 100px;
}
.student-info {
    display: flex;
    width: 100%;
    flex-direction: column;
}
.student-name-container {
    display: flex;
    align-items: center;
    margin: 10px 0;
}
.student-chip {
    font-weight: bold;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    font-size: .9em;
    width: fit-content;
}
.student-chip-name {
    color: white;
    border-radius: 4px;
    padding: 2px 8px;
    background-color: #008aab;
    letter-spacing: 1px;
}
.set-options-container {
    margin: 10px 0;
    display: flex;
    flex-wrap: wrap;
}
.rollcall-field {
    margin: 2px 15px 2px 0 !important;
}
.rollcall-input {
    border: 1px solid lightgray !important;
    border-radius: 4px !important;
    padding-left: 10px !important;
    max-width: 90%;
    margin: 0;
}
.student-crop-container {
    display: flex;
    /*justify-content: space-between;*/
}
.student-crop {
    margin-right: 30px;
    display: flex;
    flex-direction: column;
}
.rollcall-help {
    font-size: .85em;
    color: gray;
    margin-bottom: 10px;
}
@media screen and (min-width: 992px){
    .rollcall-container { width: 70%; }
}
@media screen and (max-width: 992px){
    .rollcall-container { width: 90%; }
    .student-crop-container {
        flex-direction: column;
    }
}
@media screen and (max-width: 600px){
    .student-image-container { width: 100%; }
    .rollcall-container { width: 90%; }
    .row-prime {
        flex-direction: column;
        align-items: flex-start;
        overflow: hidden;
    }
    .rollcall-field {
        width: 100%;
        margin: 5px 0 !important;
    }
}
/*///////////////////////////////// ROLLCALL */

/*Preins modal styling*/

.pre-modal-row-prime {
    display: flex;
    /*border: 1px solid lightgray;*/
    /*box-shadow: 0 0 15px -10px;*/
    /*border-radius: 4px;*/
    padding: 10px;
    /*margin: 10px 0;*/
}
.pre-modal-row-prime.spaced-c {
    justify-content: space-between;
}
.pre-modal-row-prime.flex-c {
    flex-direction: column;
}
.pre-modal-name {
    font-size: 24px;
    letter-spacing: 2px;
    font-weight: bold;
}
.pre-modal-level-chip {
    display: flex;
    align-items: center;
    border: 0 solid #008AAB;
    border-radius: 25px;
    padding: 4px 16px;
    background: lightblue;
    color: black;
    width: fit-content;
    font-weight: bold;
    letter-spacing: 1px;
    margin-left: 20px;
}
.pre-modal-title {
    width: 100%;
    font-weight: bold;
    font-size: 18px;
    color: black;
    margin-bottom: 10px;
    letter-spacing: 1px;
}
.pre-modal-subtitle {
    width: 100%;
}
.pre-modal-subtitle .text {
    margin-left: 10px;
    color: black;
    letter-spacing: 1px;
}
.comment-box {
    border: 1px solid lightgray;
    padding: 8px;
    min-height: 100px;
    border-radius: 8px;
}

/*/////////////////////////////////////TODO: LEGACY*/
/*/////////////////////////////////////TODO: LEGACY*/
/*/////////////////////////////////////TODO: LEGACY*/
/*/////////////////////////////////////TODO: LEGACY*/


/********************************/
/* FUENTES */

/*@font-face {*/
/*    font-family: TextGyreAdventor;*/
/*    src: url("../fonts/adventor/TeXGyreAdventor-Regular.ttf");*/
/*    font-weight: 400;*/
/*}*/
/*@font-face {*/
/*    font-family: TextGyreAdventorBold;*/
/*    src: url("../fonts/adventor/TeXGyreAdventor-Bold.ttf");*/
/*    font-weight: 700;*/
/*}*/

html {
    /*font-family: TextGyreAdventor;*/
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

:root {
    --color1: #008aab;
    --color2: #3ab0c8;
    --color3: #d60056;
    --color4: #ba2253;
    --color5: #d8c722;
}

/* BACKGROUND COLOR MARCA EXITO */
.color1 {    background-color: #008aab;}
.color2 {    background-color: #3ab0c8;}
.color3 {    background-color: #d60056;}
.color4 {    background-color: #ba2253;}
.color5 {    background-color: #d8c722;}

/* TEXT COLOR MARCA EXITO */
.textcolor1 {    color: #008aab !important;}
.textcolor2 {    color: #3ab0c8 !important;}
.textcolor3 {    color: #d60056 !important;}
.textcolor4 {    color: #ba2253 !important;}
.textcolor5 {    color: #d8c722 !important;}

/* Estilos de Fuente */

.negrita { font-weight: bolder;}


.col-admin {
    width: 90%;
    margin: auto;
}

.w100 { width: 100%; }
.tleft { text-align: left; }

.button-style {
    cursor: pointer;
    margin: 5px 0;
    padding: 10px 16px;
}
.button-minimized-style {
    cursor: pointer;
    margin: 5px 0;
    padding: 5px 10px;
}
.button-with-icon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin: 5px 0;
    padding: 10px 16px;
}


.button-blue {
    border: 1px solid var(--color1);
    color: var(--color1);
    background-color: white;
}
.button-blue:hover, .button-blue-fixed {
    color: white;
    border: 1px solid var(--color1);
    background-color: var(--color1);
}
.button-green {
    border: 1px solid #4caf50;
    color: #4caf50;
    background-color: white;
}
.button-green:hover, .button-green-fixed {
    color: white;
    background-color: #4caf50;
    border: 1px solid #4caf50;
}
.button-red {
    border: 1px solid #F44336;
    color: #F44336;
    background-color: white;
}
.button-red:hover, .button-red-fixed {
    color: white;
    background-color: #F44336;
    border: 1px solid #F44336;
}

.payment-methods {
    display: flex;
    justify-content: space-evenly;
    padding: 20px;
    align-items: center;
    border: 1px solid lightgray;
}
@media screen and (max-width: 600px) {
    .payment-methods {
        padding: 0 20px;
        flex-direction: column;
        align-items: flex-start;
    }
}

.table-no-wrap tr > td {
    padding: 0 10px;
    white-space: nowrap;
}

.personalized-text-area {
    overflow-y: auto;
    resize: vertical;
    height: 100px;
    padding: 5px;
    margin: 10px 0;
}

/*DataTable Radius*/
.DTR {
    border-radius: 0px;
    border: 0px solid #000000;
}

/*Propiedad hidden para boton scroll up*/
.hidden { visibility: hidden;}
.borderrect { border-radius: 0px 0px 0px 0px;}

.datepicker-date-display .date-text {
    display: block;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
}

/* VALIDATION JQUERY SPECIAL CLASS (matriculacion.js) */
#formAlumno select {
    visibility: hidden;
    display: block;
    position: absolute;
}


/* ############################## GRAFICO ANUAL GLOBAL ############################## */
/* Set the colour of this series line */
.ct-chart .ct-series-a .ct-line { stroke: green;}
.ct-chart .ct-series-a .ct-point {
    stroke: green;
    stroke-linecap: circle;
}
.ct-chart .ct-series-b .ct-line { stroke: red;}
.ct-chart .ct-series-b .ct-point {
    stroke: red;
    stroke-linecap: circle;
}
.ct-chart .ct-series-c .ct-line { stroke: teal;}
.ct-chart .ct-series-c .ct-point {
    stroke: teal;
    stroke-linecap: circle;
}
/* ############################## GRAFICO ANUAL ACADEMIA ############################## */
.ct-chart2 .ct-series-a .ct-line { stroke: green;}
.ct-chart2 .ct-series-a .ct-point {
    stroke: green;
    stroke-linecap: circle;
}

.custom-ct-point-label {
    font-size: 14px;
}
.custom-ct-point-label--bar {
    filter: invert(1); /*workaround: no se puede establecer color al plugin */
    font-weight: bold;
}
/* ############################## GRAFICOS PERSONAL ############################## */


.ct-chartx1 .ct-label,.ct-chartx2 .ct-label,.ct-chartx3 .ct-label,.ct-chartx4 .ct-label {
    font-size: 14px;
    color: black;
}

.tartaFill1 {    fill: var(--color1); }
.tartaFill4 {    fill: var(--color4);}


/* ///////////////////TABLE USX////////////////////// */
.tableUSX td {    padding: 5px 0px 0px 0px;}
.tableUSX th {    padding: 6px 0px 0px 0px;}
.spanMarginInventory {    margin: 0 5px !important;}


/*CONTABILIDAD*/
.BLURPARAM {
    filter: blur(10px) grayscale(100%);
    -webkit-filter: blur(10px) grayscale(100%);
    -ms-filter: blur(10px) grayscale(100%);
}
.BLURPARAM:hover {
    filter: none;
    -webkit-filter: none;
    -ms-filter: none;
}
.BLUENOTICE {
    color: var(--color1);
    border: 1px solid var(--color1);
    padding: 10px 0px !important;
    border-radius: 10px
}

/* Quita los indicadores de los li en los tabs */
li.indicator {
    background-color: transparent !important;
}

/*###### NUEVO PANEL DE ADMINISTRACION ######*/
.TAB-ADMIN {
    height: auto !important;
    /*Quit= se descolocan*/
    line-height: unset !important;
    text-transform: unset !important;
    /*Quit = las letras se separan mucho del icono*/
    /* padding-bottom: 7px !important;   Se elimina separacion abajo de los menus */
    width: 20% !important;
}
@media (max-width: 992px) {
    .TAB-ADMIN {
        width: 100% !important;
        /*Controla la anchura en s y m. Esencial!*/
    }
}
.TAB-ADMIN a:focus.active {
    background-color: rgba(33, 150, 243, 0.1) !important;
    /*Color de fondo esta activo*/
}
.TAB-ADMIN a {
    color: rgba(33, 150, 243, 0.6) !important;
    /*Color de fondo al cargar admin*/
    padding: 5px !important;
    overflow: unset !important;
    border: 1px solid transparent;
}
.TAB-ADMIN a.active {
    border-color: var(--color1);
}

.TAB-ADMIN a:hover,
.TAB-ADMIN a.active {
    color: #2196f3 !important;
    /*Color cuando hover y active*/
    font-weight: bold;
}



/* CARTAS DE PERSONAL EN EL PANEL DE ADMINISTRACION */

.personal__container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
.personal__card {
    max-height: 400px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin: 5px;
    border-radius: 10px;
    border: 1px solid lightgrey;
    background-color: white;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    transition: all 300ms;
}
.personal__card:hover {
    transform: scale(1.2);
}
.personal__card:hover .card__edition {
    top: 10px;
}
.card__edition {
    position: absolute;
    top: -100px;
    left: 10px;
    width: 40px;
    height: 40px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 300ms;
    color: white;
    cursor: pointer;
}
.card__image {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 100%;
}
.image__personal {
    height: 250px;
}
.image__user {    height: 150px;}
.card__info {
    padding: 5px 10px 5px 10px;
}

.card__status {
    width: 100%;
    height: 5px;
}

.card__input {
    border: 1px solid lightgrey !important;
    padding-left: 10px !important;
    width: calc(100% - 10px) !important;
}

.card__change__password {
    color: white;
    cursor: pointer;
    padding: 5px;
    text-align: center;
}
/* (END) CARTAS DE PERSONAL EN EL PANEL DE ADMINISTRACION */


/* Modificador de la sub-búsqueda de las datatable */
.DT-SubSearch {
    margin: 0px !important;
    border: none !important;
    height: 2rem !important;
    box-shadow: unset !important;
}


.disabledJQ {
    pointer-events: none;
    opacity: 0.4;
    display: none;
}


/*Para que el select del modal no rompa*/
.special-select-max-height ul {
    max-height: 200px !important;
}


.ow-bundle-1, .ow-bundle-2 {
    margin: 0 !important;
    border-bottom: 0px !important;
    box-shadow: none !important;
}
.ow-bundle-1::placeholder, .ow-bundle-2::placeholder {
    color: black !important;
}


.textAreaIssue {
    border: 1px solid lightgray !important;
    margin-top: 5px !important;
    padding-left: 10px !important;
}


/* ////////////////////////////// */

.table-body-scrollable tbody {
    display: block !important;
    max-height: 350px !important;
    overflow-y: scroll !important;
}
.table-body-scrollable thead tr {
    width: calc(100% - 1em) !important;
}
  
.table-body-scrollable thead tr, .table-body-scrollable tbody tr {
    display: table;
    width: 100%;
    table-layout: fixed;
}


.table-body-scrollable thead tr th {
    padding: 5px 0 !important;
}
.table-body-scrollable tbody tr td {
    padding: 5px !important;
}



/*////////////////////////////*/

.canvas-container {
    display: flex;
    justify-content: center;
    background-color: rgba(100, 100, 100, 0.1);
    width: 480px;
    height: 270px;
}

.signature-pad {
    border: 1px solid grey;
    width: 100%;
    height: 100%;
}

.clean-signature {
    border: 1px solid var(--color1);
    padding: 5px 12px;
    cursor: pointer;
    color: var(--color1);
    user-select: none;
}
.clean-signature:hover {
    background-color: var(--color1);
    color: white;
}

/*////////////////////////////*/

.flotante {
    display: inline-block;
    color: #fff;
    position: relative;
    overflow: hidden;
    z-index: 1;
    /* width: 40px;
    height: 40px; */
    line-height: 40px;
    padding: 0;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-right: 1rem;
    background-color: #26a69a;
    /* border-radius: 50%; */
    -webkit-transition: background-color .3s;
    transition: background-color .3s;
    cursor: pointer;
    vertical-align: middle;
  }

.delete-highlighted {
    background-color: #ffecb3 !important;
}

.joiner {
    margin: 0 1rem;
}
