/* Minification failed. Returning unminified contents.
(190,31): run-time error CSS1046: Expect comma, found '255'
(190,39): run-time error CSS1046: Expect comma, found '/'
(204,37): run-time error CSS1046: Expect comma, found '255'
(204,45): run-time error CSS1046: Expect comma, found '/'
(205,38): run-time error CSS1046: Expect comma, found '255'
(205,46): run-time error CSS1046: Expect comma, found '/'
 */
/*Global*/
*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /* Mejor renderizado de fuentes */
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: #E4E3E3;
}

main {
    min-height: 100vh;
}

    main .content-wrapper-before {
        position: absolute;
        z-index: -1;
        top: 0;
        left: 0;
        width: 100%;
        height: 240px;
        -webkit-transition: .3s ease all;
        transition: .3s ease all;
    }

/* estilos para editor de texto froala*/
.fr-element.fr-view > ul:not(.browser-default) > li {
    list-style-type: disc;
    margin-left: 20px;
}

.fr-view > ul:not(.browser-default) > li {
    list-style-type: disc;
    margin-left: 35px !important;
}

ul[style="list-style-type: circle;"] > li {
    list-style-type: inherit !important;
    margin-left: 20px;
}

ul[style="list-style-type: disc;"] > li {
    list-style-type: inherit !important;
    margin-left: 20px;
}

ul[style="list-style-type: square;"] > li {
    list-style-type: inherit !important;
    margin-left: 20px;
}

/* Establecer ancho máximo de elementos de un formulario ya que son 100% de ancho por defecto */
input,
select {
    max-width: 455px;
}

/* Estilos para móviles */
@media only screen and (max-width : 600px) {
}

/* Estilos para móviles y tablets */
@media only screen and (max-width: 992px) {
}

/* Estilos para escritorio */
@media only screen and (min-width: 993px) {
}

/* Date picker */
.datepicker-date-display, /* Color del encabezado */
.datepicker-table td.is-selected /* Color del dia seleccionado */ {
    background-color: black !important;
}

    .datepicker-date-display .year-text, /* Color del texto del año */
    .datepicker-date-display .date-text /* Color del texto de los dias del año */ {
        color: white !important;
    }
/* Fin de Date picker */

/* Toasts personalizados para mensajes de exito, de error o de información */
#toast-container {
    top: 1.5rem !important;
    right: 50% !important;
    transform: translateX(50%);
}

    #toast-container .toast {
        font-weight: bold;
    }

.toast-exito {
    color: #468847 !important;
    background-color: #DFF0D8 !important;
}

.toast-error {
    color: #f44336 !important;
    background-color: #ffcdd2 !important;
}

.toast-informacion {
    color: #1F5098 !important;
    background-color: #bbdefb !important;
}

.toast-precaucion {
    color: #000 !important;
    background-color: #f3d57c !important;
    text-align: right;
}
/* Fin de Toasts personalizados */

/* Tabs */
.tabs .tab a.active {
    background-color: #eaf1fb !important;
}

.tabs .indicator {
    background-color: #1f5098 !important;
}
/* Fin de Tabs */

/* Sobreescribir colores para ajustarse a los de INA */
.blue {
    background-color: #1F5098 !important;
}

.blue-text {
    color: #1F5098 !important;
}

.yellow {
    background-color: #eba93a !important;
}

.yellow-text {
    color: #eba93a !important;
}
/* Fin de sobreescritura de colores */

/* Breadcrumb */
.breadcrumb {
    height: 40px;
    line-height: 40px;
    font-size: 1rem;
}
/* Fin de breadcrumb */

/* Sobreescritura de la etiqueta strong ya que materialize le aplica un font-weight de 500 */
strong {
    font-weight: bolder !important;
}

/* Sobreescribir ancho de input numéricos */
input[type="number"] {
    width: 64px !important;
}

/* Sobreescribir input checkbox para usar el original con @Html.EditorFor */
[type="checkbox"]:checked, [type="checkbox"]:not(:checked) {
    position: relative !important;
    top: 2px;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: all !important;
}


[type="checkbox"] + span:not(.lever):before, [type="checkbox"]:not(.filled-in) + span:not(.lever):after {
    position: relative !important;
    top: 2px;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: all !important;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    z-index: 0;
    border: 2px solid rgb(255 255 255 / 0%);
    border-radius: 1px;
    margin-top: 3px;
    -webkit-transition: .2s;
    transition: .2s
}

[type="checkbox"]:checked + span:not(.lever):before {
    top: -4px;
    left: -5px;
    width: 12px;
    height: 22px;
    border-top: 2px solid transparent;
    border-left: 2px solid transparent;
    border-right: 2px solid rgb(255 255 255 / 0%) !important;
    border-bottom: 2px solid rgb(255 255 255 / 0%) !important;
    -webkit-transform: rotate(40deg);
    transform: rotate(40deg);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
}

[type="checkbox"] + span:not(.lever) {
    position: relative;
    padding-left: 10px;
    cursor: pointer;
    display: inline-block;
    height: 25px;
    line-height: 25px;
    font-size: 1rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Utilizado en agregar acuerdo */
.collection .collection-item.avatar {
    min-height: 64px !important;
}

/* Estilos para móviles */
@media only screen and (max-width : 600px) {
}

/* Estilos para móviles y tablets */
@media only screen and (max-width: 992px) {
}

/* Estilos para escritorio */
@media only screen and (min-width: 993px) {
}

.datepicker-cancel, .datepicker-clear, .datepicker-today {
    color: #f44336 !important;
}

.datepicker-done {
    color: #1f5098 !important;
}

.datepicker-table td.is-today {
    color: #003d68 !important;
}

.timepicker-canvas line {
    stroke: #E8981D;
}

.timepicker-canvas-bearing {
    stroke: none;
    fill: #E8981D !important
}

.timepicker-canvas-bg {
    stroke: none;
    fill: #E8981D !important
}

.timepicker-digital-display {
    background-color: #003d68 !important
}

.timepicker-tick.active, .timepicker-tick:hover {
    background-color: rgba(235,169,58,0.25) !important
}

.datepicker-date-display {
    background-color: #003C5E !important;
}

.datepicker-table td.is-selected {
    background-color: #E8981D !important;
}

.timepicker-close {
    color: #1f5098 !important
}

.teal-text {
    color: #25782d !important;
}
.dropdown-content li > a, .dropdown-content li > span {
    color: #00ccbb;
}

input:not([type]):focus:not([readonly]), input[type=text]:not(.browser-default):focus:not([readonly]), input[type=password]:not(.browser-default):focus:not([readonly]), input[type=email]:not(.browser-default):focus:not([readonly]), input[type=url]:not(.browser-default):focus:not([readonly]), input[type=time]:not(.browser-default):focus:not([readonly]), input[type=date]:not(.browser-default):focus:not([readonly]), input[type=datetime]:not(.browser-default):focus:not([readonly]), input[type=datetime-local]:not(.browser-default):focus:not([readonly]), input[type=tel]:not(.browser-default):focus:not([readonly]), input[type=number]:not(.browser-default):focus:not([readonly]), input[type=search]:not(.browser-default):focus:not([readonly]), textarea.materialize-textarea:focus:not([readonly]) {
    border-bottom: 1px solid #1f5098 !important;
    -webkit-box-shadow: 0 1px 0 0 #1f5098 !important;
    box-shadow: 0 1px 0 0 #1f5098 !important;
}

.select-wrapper input.select-dropdown:focus {
    border-bottom: 1px solid #1f5098 !important
}
 /*   input:not([type]):focus:not([readonly]) + label, input[type=text]:not(.browser-default):focus:not([readonly]) + label, input[type=password]:not(.browser-default):focus:not([readonly]) + label, input[type=email]:not(.browser-default):focus:not([readonly]) + label, input[type=url]:not(.browser-default):focus:not([readonly]) + label, input[type=time]:not(.browser-default):focus:not([readonly]) + label, input[type=date]:not(.browser-default):focus:not([readonly]) + label, input[type=datetime]:not(.browser-default):focus:not([readonly]) + label, input[type=datetime-local]:not(.browser-default):focus:not([readonly]) + label, input[type=tel]:not(.browser-default):focus:not([readonly]) + label, input[type=number]:not(.browser-default):focus:not([readonly]) + label, input[type=search]:not(.browser-default):focus:not([readonly]) + label, textarea.materialize-textarea:focus:not([readonly]) + label {
        color: #1f5098 !important;
    }*/

table.dataTable thead tr th,
table.dataTable thead tr td {
    padding: 0.5rem 1rem 0.5rem 0.2rem;
}

table.dataTable tbody tr td {
    padding: 0.2rem;
}

.dataTables_paginate {
    float: left !important;
}


/*table.dataTable tbody td,*/
.bordered {
    border: 1px solid #ddd;
}

table.dataTable thead tr th,
table.dataTable tfoot tr td,
table.dataTable.no-footer {
    border-color: #ddd !important;
    /*border-bottom: 0 !important;*/
}

/* Estilos para dispositivos móviles */
@media only screen and (max-width: 600px) {
    /* Ícono de expandir fila */
    table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > td:first-child:before, table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > th:first-child:before {
        top: 13px;
    }
}

.ui-dialog {
    z-index: 998;
}

.ui-dialog-titlebar,
.ui-dialog-titlebar-close {
    font-weight: 600;
    background-color: white;
    border: none;
    color: black;
    display: none;
}
/****************************************************************************************************
    Page Loader
****************************************************************************************************/

/****************************************************************************************************
  Utilización en página web:
      <div class="sk-wave">
        <div class="sk-rect sk-rect1"></div>
        <div class="sk-rect sk-rect2"></div>
        <div class="sk-rect sk-rect3"></div>
        <div class="sk-rect sk-rect4"></div>
        <div class="sk-rect sk-rect5"></div>
      </div>
****************************************************************************************************/

.page-loader-wrapper {
    z-index: 99999999;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    overflow: hidden;
    text-align: center;
}

    .page-loader-wrapper .loader {
        position: relative;
        top: calc(50% - 30px);
    }

    .page-loader-wrapper p {
        font-size: 1rem;
        font-weight: bold;
        color: #e8ab00;
    }

.sk-wave {
    margin: 20px auto;
    width: 80px;
    height: 60px;
    text-align: center;
    font-size: 10px;
}

    .sk-wave .sk-rect {
        background-color: #e8ab00;
        height: 100%;
        width: 6px;
        display: inline-block;
        -webkit-animation: sk-waveStretchDelay 1.2s infinite ease-in-out;
        animation: sk-waveStretchDelay 1.2s infinite ease-in-out;
    }

    .sk-wave .sk-rect1 {
        -webkit-animation-delay: -1.2s;
        animation-delay: -1.2s;
    }

    .sk-wave .sk-rect2 {
        -webkit-animation-delay: -1.1s;
        animation-delay: -1.1s;
    }

    .sk-wave .sk-rect3 {
        -webkit-animation-delay: -1s;
        animation-delay: -1s;
    }

    .sk-wave .sk-rect4 {
        -webkit-animation-delay: -0.9s;
        animation-delay: -0.9s;
    }

    .sk-wave .sk-rect5 {
        -webkit-animation-delay: -0.8s;
        animation-delay: -0.8s;
    }

    .sk-wave .sk-rect6 {
        -webkit-animation-delay: -0.7s;
        animation-delay: -0.7s;
    }

    .sk-wave .sk-rect7 {
        -webkit-animation-delay: -0.6s;
        animation-delay: -0.6s;
    }

    .sk-wave .sk-rect8 {
        -webkit-animation-delay: -0.5s;
        animation-delay: -0.5s;
    }

@-webkit-keyframes sk-waveStretchDelay {
    0%, 40%, 100% {
        -webkit-transform: scaleY(0.4);
        transform: scaleY(0.4);
    }

    20% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}

@keyframes sk-waveStretchDelay {
    0%, 40%, 100% {
        -webkit-transform: scaleY(0.4);
        transform: scaleY(0.4);
    }

    20% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}

/*Estilos para la página de inicio de sesión*/
.login {
    min-height: 100vh;
    background: url("Images/bg-master.jpg") no-repeat center center;
    background-size: cover;
}

/* Estilos para móviles */
@media only screen and (max-width : 600px) {
}

/* Estilos para móviles y tablets */
@media only screen and (max-width: 992px) {
}

/* Estilos para escritorio */
@media only screen and (min-width: 993px) {
}

/*@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400');*/

.oops {
    min-height: 78vh;
}

    .oops h1 {
        font-size: 10rem;
        font-weight: 300 !important;
        color: #211b19;
        text-transform: uppercase;
    }

    .oops h2 {
        font-size: 2rem;
        font-weight: 300 !important;
        text-transform: uppercase;
        background-color: #365F91;
        padding: 10px 5px;
        color: #FFFFFF;
    }

    .oops a {
        display: inline-block;
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }

/* Estilos para móviles y tablets */
@media only screen and (max-width: 992px) {
    .oops h1 {
        font-size: 5rem;
    }

    .oops h2 {
        font-size: 1rem;
    }
}

/* Clases personalizadas */
.ancla {
    position: relative;
    top: -64px;
}

.seccion {
    margin: 0.7rem 0 .6rem 0;
}

.select-small {
    height: 2.2rem !important;
}

/****************************************************************************************************
    Botones personalizados
****************************************************************************************************/
/*.btn-outline-blue {
    border: solid 0.5px #1F5098 !important;
}

.btn-outline-yellow {
    border: solid 0.5px #CC8A00 !important;
}

.btn-accion {
    min-width: 140px;
}*/

/****************************************************************************************************
    Bordes
****************************************************************************************************/
.border-yellow {
    border: solid 1px #CC8A00;
}

.border-lightyellow {
    border: solid 1px #ffdf99;
}

.border-blue {
    border: solid 1px #1F5098;
}

.border-lightblue {
    border: solid 1px #aac5ee;
}

.border-gray {
    border: solid 1px #e0e0e0;
}

.border-lightgray {
    border: solid 1px #cccccc;
}

/****************************************************************************************************
    Estilos para móviles
****************************************************************************************************/
@media only screen and (max-width : 600px) {
    .left-on-small {
        float: left !important;
    }

    .center-on-small {
        text-align: center !important;
    }

    /*.margin-bottom-on-small {
        margin-bottom: 4rem !important;
    }

    span.brand-logo {
        line-height: 25px !important;
    }

    .mt-1-on-small {
        margin-top: 0.5rem !important;
    }

    .mt-1-on-small {
        margin-top: 1rem !important;
    }

    .fz-1-25r-on-small {
        font-size: 1.25rem !important;
    }

    .p-0-on-small {
        padding: 0rem !important;
    }

    .fz-1r-on-small {
        font-size: 1rem !important;
    }

    .margin-bottom-on-small {
        margin-bottom: 4rem !important;
    }*/
}

/****************************************************************************************************
    Estilos para móviles y tablets
****************************************************************************************************/
@media only screen and (max-width: 992px) {
    /*.padding-left-right-0-on-medium {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .margin-top-on-medium {
        margin-top: 5rem !important;
    }

    select.fontFamily {
        width: 95px;
        right: 34px;
    }

    select.fontSize {
        width: 55px;
        right: 10px;
    }

    a.btn {
        margin-bottom: 5px;
    }

    .mb-1-on-med-and-down {
        margin-bottom: 0.5rem !important;
    }

    .mb-y-1-on-med-and-down {
        margin-bottom: 1rem !important;
        margin-top: 1rem !important;
    }

    .clear-left-on-med-and-down {
        clear: left !important;
    }

    .opcion-inicio {
        max-width: 280px !important;
    }

        .opcion-inicio img {
            height: 120px !important;
        }

    .mr-1-on-med-and-up {
        margin-right: 1rem !important;
    }

    .right-on-med-and-up {
        float: right !important;
    }

    .width-720px-on-med-and-up {
        width: 720px !important;
    }

    .clear-left-on-med-and-up {
        clear: left !important;
    }

    .center-on-medium {
        text-align: center !important;
    }

    .padding-left-right-0-on-medium {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .margin-top-on-medium {
        margin-top: 5rem !important;
    }

    .hide-on-large-and-med {
        display: none;
    }

    .opcion-inicio {
        max-width: 280px !important;
    }

        .opcion-inicio img {
            height: 100px !important;
        }*/
}

/****************************************************************************************************
    Estilos para escritorio
****************************************************************************************************/
@media only screen and (min-width: 993px) {
    .right-on-large {
        float: right !important;
    }

    /*.left-on-large {
        float: left !important;
    }

    .btn-regresar {
        padding-right: 2rem;
    }

    .text-right-on-med-large {
        text-align: right !important;
    }

    .width-720px-med-large {
        width: 720px !important;
    }

    .width-60-on-large {
        width: 60% !important;
    }

    .max-width-60-on-large {
        max-width: 60% !important;
    }

    .hide-on-large {
        display: none !important;
    }

    .hide-on-large-and-down {
        display: none !important;
    }

    .hide-on-large-and-med {
        display: none;
    }

    .left-on-large {
        float: left !important;
    }



    .btn-regresar {
        padding-right: 2rem;
    }

    .width-60-on-large {
        width: 60% !important;
    }

    .max-width-60-on-large {
        width: 60% !important;
    }

    .hide-on-large-and-med {
        display: none;
    }*/
}

/*Otros*/
/*#region Footer*/
/*Atributos del logo*/
/*.ina-logo {
    width: 180px;
    height: auto;
}*/

footer div p {
    font-size: 1rem;
}

.page-footer {
    background-color: #1D2625 !important;
}

/*.table-nonfluid {
    width: auto !important;
}

.input-field.col label {
    left: 0 !important;
}

.aperturalibro .input-field.col label {
    left: .75rem !important;
}
*/

.no-wrap {
    white-space: nowrap !important;
}
/*
.pre-wrap {
    white-space: pre-wrap !important;
}*/

/*.middle {
    display: table-cell;
    vertical-align: middle;
}

.icono-info {
    position: absolute;
    left: 48%;
    top: 45%;
}

.box-shadow-none {
    box-shadow: none !important;
}

.robot-font-family {
    font-family: 'Robot', sans-serif;
}

.clear-left {
    clear: left !important;
}

li.li-no-hover:hover {
    background-color: transparent;
}*/

@page {
    margin: 10mm;
}

@media print {
    .pagebreak-before {
        page-break-before: always;
    }

    thead {
        display: table-header-group;
    }

    tfoot {
        display: table-footer-group;
    }

    button {
        display: none;
    }

    body {
        margin: 0;
    }
}

.not-active {
    pointer-events: none;
    cursor: default;
}

/*we need to style the popup with CSS so it is placed as a popup does*/
#popup {
    display: none;
    position: absolute;
    /*    margin: 0 auto;*/
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0px 0px 16px 1px #000;
}

#mensajepopup {
    display: none;
    position: absolute;
    /*    margin: 0 auto;*/
    top: 18%;
    /*    top: 50%;*/
    left: 89%;
    width: 256px;
    height: 79px;
    transform: translate(-50%, -50%);
    box-shadow: 0px 0px 16px -8px #000;
}

#CambioContraseña {
    text-align: center;
}

/*a {
    color: #3953a5 !important;
}*/
