:root {
    --color-azul: #1D3341;
    --color-celeste: #2B84A2;
    --color-1: #A59F49;
    --color-2: #2B84A2;
    --color-3: #7394A7;
    --color-4: #18728D;
    --color-5: #242F4B;
    --color-6: #1D3341;

}

html,
body {
    min-height: -webkit-fill-available;
    min-height: 100%;
    position: relative;
    font-family: "Montserrat", sans-serif ! Important;
    font-size: 16px;
    background-color: #ffffff ! Important;
    color: #383838;
}

* {
    box-sizing: border-box;
}

.bg-azul {    background-color: var(--color-azul);}
.bg-celeste {    background-color: var(--color-celeste);}

a {
    color: var(--color-celeste);
    text-decoration: none;
}
a:hover {
    color: var(--color-azul);
}
/*----------------------------- ENCABEZADO -----------------------------------*/
#header {    
	padding: 20px;
}
#header .area {
    margin: 0px;
    line-height: 2rem;
    color: #ffffff;
    text-align: right;
    font-weight: 600;
    font-size: 2.3rem;
}
#header .sub-brand {
    text-align: right;
    color: #FFF;
    font-weight: 200;
    font-size: 1.2rem;
}
.escudo-movil {
    display: none;
}
/*------------------------------- NAVBAR ------------------------------------------------------------*/
a.nav-link, li.nav-item.nav-link {    padding: 10px 15px ! Important;}
a.nav-link.dropdown-toggle.show{    background-color: #0c8faa! Important;}

.navbar-dark .navbar-nav .nav-link {
    color: white;
    text-transform: uppercase;
    font-weight: 500;
}

.navbar-dark .navbar-nav .nav-link:hover {
    background-color: #0c8faa;
    color: white;
}
li.nav-item.nav-link :hover, li.nav-item.nav-link div:hover  {
    background-color: var(--color-celeste);
    color: white;
}
.navbar-dark .navbar-nav .dropdown-menu {
    background-color: #0c8faa;
    border: none;
	margin-top: 0px;
	border-radius: 0px 0px 5px 5px;
}

.navbar-dark .navbar-nav .dropdown-menu .dropdown-item {
    /*color: white;*/
}

.navbar-dark .navbar-nav .dropdown-menu .dropdown-item:hover {
    background-color: #0c8faa;
    color: white;
}

.navbar {
    font-size: 1rem;
}


/*----------------------------- CONTENIDO ------------------------------------*/
main {
    min-height: calc(100vh - 416px);
    padding: 4em 0em;
}

.titulo-seccion {
	font-weight: 700;
}
.descripcion{
	font-size: 1.2rem;
    font-weight: 400;
}
.btn {
    border-radius: 10px;
    cursor: pointer;
}
.alert-message{
    background-repeat: no-repeat;
    position: fixed;
    bottom: 5px;
    left: 20px;
    font-size: larger;
    z-index: 99;
}
/*-------------------------------- PANELES ---------------------------------------*/


section.paneles {    position: relative;}
section.paneles a { text-decoration: none;}
section.paneles .card-header {background-color: #023059; color: #FFF;}
section.paneles .card-body { 	    }
section.paneles .card-body i {    font-size: 2.5rem;    margin-right: 20px ! Important;    color: var(--color-4);}
section.paneles .card:hover {  transform: translateY(-5px); box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);  background-color: #fbfbfb;  cursor: pointer; /*border: 1px solid #023059;*/} 

.panel {
    margin-bottom: 2em;
    border: solid 1px #ddd;
    border-radius: 10px;
    border-color: #ddd;
    border-bottom-color: rgb(221, 221, 221);
    border-bottom: 12px solid var(--color-4);
    box-shadow: none;
    color: #333;
    display: block;
    width: 100%;
    text-decoration: none !important;
}

.panel:hover {
    background: #f2faf3;
    color: var(--color-4);
}

.panel h3 {
    font-size: 1.25em;
    font-weight: 700;
    line-height: 1.3;
    margin: .25em 0;
}

/*-------------------------------- CHAT ---------------------------------------*/

.chat {
    background-color: #f7f7f7;
    border: 1px solid #e8e8e8;
    padding: 2em;
    margin-bottom: 2em;
    border-radius: 0.375rem;
}
.chat-body {
    padding: 0px 15px 15px 15px;
}
#chat-log {
    background-color: #FFF;
    height: 400px;
    overflow-y: auto;
    font-weight: 400;
    line-height: 1.5em;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
#chat-log i {
    color: #00000050;
}

/*-------------------------------- PIE ---------------------------------------*/

footer {
    display: block;
}
.footer-main {
    background-color: #e3e3e3;
	
}
.footer-main a{
    text-decoration: none;
    background-color: transparent;
}	
	
footer .copyright {
    color: white;
    font-size: 0.9rem;
    text-align: center;
}

/*------------------------------ Tarjetas-informática -------------------------------*/
.tarjeta {
    min-height: 92%;
    margin-bottom: 30px;
    border: solid 1px #ddd;
    border-radius: 10px;
    box-shadow: none;
    color: #333 !important;
    display: block;
    text-decoration: none !important;
}

.tarjeta-header {
    min-height: 50px !important;
    padding: 1rem;
    transition: opacity .15s;
    background-position: center center;
    background-size: cover;
    border: 0;
    border-top-left-radius: 9px !important;
    border-top-right-radius: 9px !important;
    text-align: center !important;
}

.tarjeta-descripcion {
    padding: 15px 20px 0px 20px;
}

.tarjeta-pie {
    padding: 0em 0.25em;
}

.tarjeta-imagen {
    height: 50px;
}
a.tarjeta:focus,
a.tarjeta:hover {
    background: #f3faff;
    color: #333;
}

a.tarjeta:active {
    color: #6a1b99;
}

.tarjeta-border-celeste {
    border-color: #ddd;
    border-bottom-color: rgb(221, 221, 221);
    border-bottom: 12px solid var(--color-celeste) !important;
}
.text-celeste {
    color: var(--color-celeste);
}

/*-------------------------------- OTROS TAMAÑOS DE PANTALLA ---------------------------------------*/
@media screen and (max-width:767px) {
	main {    min-height: auto;    padding: 2em 0em;}
    .escudo-desktop { display: none; }
    .escudo-movil { display: block; }
	#header .container {     padding: 0px;}
	#header .area { text-align: left; font-size:1.8rem;}	
	#header .sub-brand { text-align: left; font-size: 1.1rem;}

	#offcanvasNavbar {	max-width: 80%;}
	#offcanvasNavbar .offcanvas-header {   display: flex;    flex-wrap: nowrap;    justify-content: space-between;    align-items: center;    padding: .75rem 1.5rem;}
	#offcanvasNavbar button.btn-close.text-reset {    background-color: #1D3341;    border: 0;    border-radius: 50%;    height: 32px;    outline: none;    margin-left: auto;    padding: 0;    transition: all .2s ease-in-out;    text-shadow: none;    font-weight: 500;    font-size: 38px;    line-height: 32px;    opacity: initial;}	
	#offcanvasNavbar span.c-buttontext {    font-weight: 500;    font-size: 38px;    line-height: 32px;    color: #1D3341;    display: block;    height: 32px;    transition: all .35s ease;}
	#offcanvasNavbar button.close.js-offcanvas-close.c-button {    border: 0px;    border-radius: 50%;}
	#offcanvasNavbar .offcanvas-body {    padding: 25px 0px;}
	#offcanvasNavbar li.nav-item.lindiv {    display: flex;    justify-content: space-between;    align-items: stretch;    position: static;    border-bottom: 1px solid #e9ecef;    padding: 0 2rem;}
	#offcanvasNavbar .nav-link {    padding: 15px 0px; color: var(--color-azul);}
	#offcanvasNavbar .nav-link:hover {    background-color: #dee0e1;}	
	#offcanvasNavbar a.nav-link.dropdown-toggle {    background-color: transparent;}
	#offcanvasNavbar a.nav-link.dropdown-toggle.show {    background-color: #dee0e1! Important;}
	#offcanvasNavbar ul.dropdown-menu.show {         padding: 0px!Important;    margin-top: 0px!Important;    border-radius: 0px!Important; background-color: #f8f9fa;}
	#offcanvasNavbar ul.navbar-nav.admin {    border-top: 1px solid var(--color-azul);    padding-top: 0.5rem;    margin-top: 1rem;}
	#offcanvasNavbar a.dropdown-item {    padding: 10px 15px ! Important;}
	
	        
	
}