html, body { 
  height: 100%;
  margin: 0px;
  padding: 0px;
  font-family: 'PT Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  background-color: #EFEFEF;
}

* {
  box-sizing: border-box;
}

button.btn-primary.btn-theme {
  background-color: #084A80;
  border-color: #5F9ED9;
  /*background-color: #F7B733;
  border-color: #F7B733;*/
}
button.btn-primary.btn-theme:hover {
  background-color: #0B67B3;
  border-color: #65A7E5;
  /*background-color: #EBAD31;
  border-color: #F7B733;*/
}

body.disabled-form input, body.disabled-form select, body.disabled-form label {
  pointer-events: none;
}

/*h1 {
  
}
h2 {
  
}
h3 {
  
}
h4 {
  
}
h5 {
  
}*/

a.disabled {
  text-decoration: none;
  color: #AAA !important;
  cursor: default;
}

/* Colores */
.color-white, a.color-white {
  color: #FFF !important;
}
.color-red, a.color-red {
  color: #F00 !important;
}
.extra-validation { /* Necesario para realizar las validaciones extra */
  color: #F00 !important;
}

.btn-link {
  color: #4ABDAC;
  font-weight: 700;
}
.btn-link:hover {
  color: #2B6E64;
}

.alert-text {
  color: #FFF;
}

a.breadcrum {
  color: #FFF !IMPORTANT; 
  text-decoration: none;
}
a.breadcrum:hover {
  text-decoration: underline !IMPORTANT;
}

.bd-callout {
  padding: 1.25rem;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  border: 1px solid #EEE;
  border-left-width: .25rem;
  border-radius: .25rem;
}

.bd-callout-success {
  border-left-color: #3C763D;
}
.bd-callout-success b {
  color: #3C763D;
}

.bd-callout-warning {
  border-left-color: #F1A02C;
}
.bd-callout-warning b {
  color: #F1A02C;
}

.bd-callout-danger {
  border-left-color: #F00;
}
.bd-callout-danger b {
  color: #F00;
}

/* FIX PARA EL TITULO DEL ACORDEON DE BOOTSTRAP 4 */
.accordion h5 .btn {
  white-space: normal;
}

/* OVERWRITE DE EASY DOTS PARA LA NAVEGACIÓN LATERAL DE MOMENTOS */
.scroll-indicator-controller>div.active {
  background: #367AB3;
  border-color: rgba(0,0,0,.25);
}
.scroll-indicator-controller>div span {
  color: #367AB3;
}
.scroll-indicator-controller>div {
  border: 1px solid #367AB3;
}
.scroll-indicator-controller {
  z-index: 50;
}

/**/
.swal2-styled.swal2-cancel {
  border-radius: 0;
}
.swal2-styled.swal2-confirm {
  border-radius: 0;
  background-color: #084A80;
}
.swal2-styled.swal2-confirm:hover {
  background-color: #0B67B3;
}
.swal2-styled.swal2-confirm:focus {
  box-shadow: 0 0 0 3px #0B67B3;
}

/* GENERAL ****************************************************************************/

/* Contenedor principal */
.main-container {
  margin-top: 140px;
}
span.pMonitor {
  color: #FF504A;
}
span.pStaff {
  color: #F78F33;
}
span.pEspecialista {
  color: #EA2386;
}
span.pAdmin {
  color: #899E37;
}

/* Header *********************************/
header {
  position: fixed;
  top: 0;
  padding: 0; 
  background-color: #FFF;
  height: 120px;
  z-index: 1001;
  box-shadow: 0px 1px 10px 0px rgba(0,0,0,0.1);
}
header .logo {
  margin: auto 0;
}
header .logo img {
  margin-top: -12px;
}
header .minedu {
  height: 90px; 
  line-height: 90px; 
  padding-right: 20px;
}
header #title-responsive {
  display: none;
  font-family: 'PT Sans Narrow', sans-serif;
  text-align: center; 
  height: 30px; 
  line-height: 30px;
}

/* Menu ******************************************/
.menu_bt {
  height: 30px; 
  text-align: center;
  background-color: #5F5F5F;
  color: #FFF;
  cursor: pointer;
  padding: 0 20px;
  transition: all .2s linear;
}
.menu_bt:hover {
  background-color: #D6D6D6;
  color: #5F5F5F;
}
#main-menu-bt {
  line-height: 30px;
  font-size: 1rem;
}

#main-menu {
  position: fixed;
  top: 120px;
  right: 0;
  z-index: 70;
  width: 320px;
  height: calc(100% - 120px);
  background-color: #5F5F5F;
  transition: all .5s;
  overflow: hidden; 
}
#main-menu.main-menu_hide {
  right: -325px;
}
#main-menu .list {
  padding-left: 0;
  list-style: none;
}
#main-menu .list a {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
  width: 100%;
  padding: 8px 15px;
  outline: none;
  text-decoration: none;
  color: #FFF;
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 1.125rem;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,.2);
}
#main-menu .list a:hover {
  background-color: rgba(255,255,255,.1);
}
#main-menu .list li.separator {
  height: 40px;
  border-bottom: 1px solid rgba(255,255,255,.2);
}
#main-menu .list li.profile-su {
  background-color: #4D4D4D;
}
#main-menu .list li.profile-su > span {
  font-weight: 700;
  text-transform: uppercase;
}
#main-menu .list li.profile {
  color: #FFF;
  padding: 20px 15px 30px;
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 1.125rem;
}
.user-welcome {
  font-family: 'PT Sans Narrow', sans-serif;
  line-height: 30px; 
  margin-left: 20px;
}
.user-welcome > span {
  font-weight: 700;
  text-transform: uppercase;
}

/* Titulo de proyecto ******************************/
.project_title {
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 2.143rem;
  color: #4D4D4D !IMPORTANT;
  text-decoration: none !IMPORTANT;
  line-height: 90px;
}
/* Titulo de momento ********************************/
.momento-head {
  border-top: 1px solid #BBB; 
  background-color:#EEE;
}

/* Alertas ******************************************/
.alert-warning {
  background-color: #FF504A;
  color: #FFF;
}

/* Cards *********************************************/
.card {
  border: 0;
  border-radius: 0;
  width: 100%;
  overflow: hidden;
  background-color: #FFF;
  -webkit-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.1);
  -moz-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.1);
  box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.1);
}
.card_title {
  width: 100%; 
  color: #FFF;
  background-color: #F7B733;
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 1.286rem; 
  font-weight: 400;
  padding: 40px 20px 20px;
  text-transform: uppercase;
  /*text-align: center;*/
  /*border-bottom: 1px solid #B5B5B5;*/
  background-color: #F7B733;
}
.card_title a, .card_title a:hover {
  text-decoration: none;
  color: #F33A33;
}
.card_title .fas {
  margin-right: 10px;
}
.card_content {
  position: relative;
  background-position: center center; 
  background-size: cover; 
  width: 100%; 
}

/* Lista de links */
ul.list_links {
  list-style: none;
  padding-left: 0;
}
ul.list_links li {
  margin-bottom: 20px;
}
ul.list_links .links_info {
  color: #7F7F7F;
  font-weight: 700;
  text-transform: uppercase;
}
ul.list_links a {
  text-decoration: none;
  color: #333333;
  /*font-size: 1.286rem;*/
  font-weight: 700;
}
ul.list_links a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background-color: #262E31; 
  color: #FFF; 
  margin-top: 20px; 
  padding: 30px 0;
}
.footer_title {
  color: #666666;
  font-family: 'Aleo', serif;
  font-size: 1.25rem;
  font-weight: 700;
}

/* Cancelar y guardar */
#btCancel, #btSubmit, #btAprove {
  min-width: 190px;
}

/* Clases comunes a todo el sitio */
.main-container {
  margin-top: 0;
  padding-top: 20px;
  min-height: 800px;
}
.blue_text {
  color: #0090D9;
}
.orange_text {
  color: #BA7000;
}
.ico_tooltip {
  color: #999;
}
hr.lvl2 {
  border-top: 1px dashed rgba(0,0,0,.1);
}
/* Modal */
/*.modal {
  display:    none;
  position:   fixed;
  z-index:    1050;
  top:        0;
  left:       0;
  height:     100%;
  width:      100%;
  background: rgba( 255, 255, 255, .8 ) 
              url('../img/preload_f.gif') 
              50% 50% 
              no-repeat;
}
.modal-error {
  color: #FF0000;
}
body.loading .modal {
  overflow: hidden;
  display: block;
}*/
.form-control {
  border-radius: 0;
}
.btn-lg {
  border-radius: 0;
}


/* FORM 07 *******************************************************************************/
.odd_block_title {
  background-color: #E1EBF2;
}
.odd_block {
  background-color: #E1EBF2; 
  margin-left: -15px; 
  margin-right: -15px; 
  padding-left: 15px; 
  padding-right: 15px;
}
.optionRespuesta {
  background-color: #F2F2F2;
}
.odd_block .optionRespuesta {
  background-color: #D3DCE3 !IMPORTANT;
}


/* FORMS THEME ***************************************************************************/
.forms .main_title {
  background-color: #0D74C9;
}
.forms .card-header .btn-link {
  color: #FFF;
}
.forms .card-header:hover .btn-link {
  color: #FFF;
}
.forms .card-header {
  background-color: #367AB3;
}

.forms .card-header2 .btn-link {
  color: #FFF;
}
.forms .card-header2:hover .btn-link {
  color: #FFF;
}
.forms .card-header2 {
  background-color: #456782;
}
.forms .card-header2 {
  padding: .50rem 1.25rem;
}
/*.forms .sec_title, #home .access_bg_forms {
  background-image: url('../img/bg_botones.png'), linear-gradient(to right, #004D95 , #368ECA);
  background-position: top left;
  background-repeat: repeat-x;
  background-color: #004D95;
  
  font-family: 'Aleo', serif;
  font-weight: 300;
  font-size: 1.125rem;
  color: #FFF;
}*/
.forms ul.form_list {
  list-style: none;
}
.forms ul.form_list li {
  padding: 15px 15px;
  margin-left: -15px;
}
.forms ul.form_list li:nth-child(odd) {
  background-color: #F8F8F8;
}
.forms ul.form_list .fas {
  color: #00699E;
  margin-right: 10px;
}
.forms ul.form_list li a {
  text-decoration: none;
  color: #0090D9;
}
.forms ul.form_list li a:hover {
  text-decoration: underline;
}

/* COBERTURAS THEME ***************************************************************************/
.coberturas .main_title {
  background-color: #F39200;
}
.coberturas ul.form_list {
  list-style: none;
}
.coberturas ul.form_list li {
  padding: 15px 15px;
  margin-left: -15px;
}
.coberturas ul.form_list li:nth-child(odd) {
  background-color: #F8F8F8;
}
.coberturas ul.form_list .fas {
  color: #806640;
  margin-right: 10px;
}
.coberturas ul.form_list li a {
  text-decoration: none;
  /*color: #FF9900;*/
  color: #BA7000;
}
.coberturas ul.form_list li a:hover {
  text-decoration: underline;
}

/* Tablas **********************************/
.boldCol {
  font-weight: 700;
}
.row-filters {
  max-width: 1140px;
  margin: 0 auto;
}

/* REPORTES THEME ***************************************************************************/
.reportes .main_title {
  background-color: #AAA;
}
.reportes .sec_title, #home .access_bg_reportes {
  background-image: url('../img/bg_botones.png'), linear-gradient(to right, #818284 , #B3B4B8);
  background-position: top left;
  background-repeat: repeat-x;
  background-color: #818284;
  
  font-family: 'Aleo', serif;
  font-weight: 300;
  font-size: 1.125rem;
  color: #FFF;
}
.reportes ul.form_list {
  list-style: none;
}
.reportes ul.form_list li {
  padding: 15px 15px;
  margin-left: -15px;
}
.reportes ul.form_list li a:hover {
  text-decoration: underline;
}
.reportes ul.form_list li:nth-child(odd) {
  background-color: #F8F8F8;
}

.reportes ul.form_list.forms .fas {
  color: #00699E;
  margin-right: 10px;
}
.reportes ul.form_list.forms li a {
  text-decoration: none;
  color: #0090D9;
}
.reportes p.sub {
  color: #0090D9;
  font-size: 1.125rem;
}
.reportes p.sub .fas {
  color: #00699E;
}

.reportes ul.form_list.coberturas .fas {
  color: #806640;
  margin-right: 10px;
}
.reportes ul.form_list.coberturas li a {
  text-decoration: none;
  color: #BA7000;
}
.reportes p.sub_cobertura {
  color: #806640;
  font-size: 1.125rem;
}
.reportes p.sub_cobertura .fas {
  color: #BA7000;
}


/* DESCARGAS THEME ***************************************************************************/
.descargas .main_title {
  background-color: #A6BA31;
}

#main-menu{
  top: 133px !important;
}


.main-container{
  max-width: 90% !important;
}

.table, .datatable{
  font-size: 14px;
}
.pointer{
cursor: pointer;
}
.hidden{
  display: none;
}

/* Mostrar solo en desktop */
.show-desktop {
    display: none;
}

@media (min-width: 1024px) { /* lg en Tailwind equivale a 1024px */
    .show-desktop {
        display: inline;
    }
}

/* Mostrar solo en mobile */
.show-mobile {
    display: inline;
}

@media (min-width: 1024px) {
    .show-mobile {
        display: none;
    }
}

.show-mobile {
    margin-left: 1.5rem;  /* px-4 */
    margin-right: 1.5rem;
    background-color: white; /* bg-white */
    display: block; /* block */
}

@media (min-width: 768px) { /* md:hidden */
    .show-mobile {
        display: none;
    }
}

.show-mobile span {
    display: block; /* block */
    font-size: 0.875rem; /* text-sm → 14px */
    white-space: nowrap; /* truncate */
    overflow: hidden;
    text-overflow: ellipsis;
    width: 87%;
    min-width: 200px;
}

.show-mobile span:first-child {
    font-weight: bold; /* font-bold */
}

.show-mobile span.pStaff {
    text-transform: uppercase; /* uppercase */
}

.mx-2{
      margin-left: .5rem !important;
}
.pr-0{
  padding-right: 0;
}