:root{
    --orange: #ff8c00;
    --white: white;
}

/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
    z-index: 99;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}
.fw-thin {
    font-weight: 100;
}

.text-uppercase {
    font-size: 12px;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.link-hover {
    transition: 0.5s;
}

.link-hover:hover {
    color: var(--bs-primary) !important;
}


.img-zoomin {
    transition: 0.5s;
    max-width: 100%;
}

.img-zoomin:hover {
    transform: scale(1.1);
}

/*** Topbar Start ***/
.sticky-top {
    transition: 1.5s;
    /***background: var(--orange);***/
    background-image: linear-gradient(to right, #E84832 , #ff8c00);
}

.topbar {
    padding: 10px 0;
}

.topbar .top-info {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.topbar .top-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 400;
    display: flex;
    align-items: center;
    padding-left: 20px;
}

.dapIMG{
    width: 30px;
    max-width: 30px;
}

@media (max-width: 1200px) {  
    .dapIMG{
        width: 30px;
        max-width: 30px;
    }
   
    .sticky-top .top-link {
        display: none;
    }

    .navbar-toggler {
        margin-left: auto;
        margin-top: 0px !important;
    }

}

.topbar .top-link a {
    font-size: medium;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
}

.topbar .top-link a small:hover {
    color: var(--bs-secondary) !important;
    transition: 0.5s;
}

.topbar .top-link a small:hover i {
    color: var(--bs-primary) !important;
}

#note {
    position: relative;
    animation: noteAnimate 10s linear infinite;
    animation-timing-function: ease-in-out;
    display: flex;
    align-items: center;
}

@keyframes noteAnimate {
    0% { left: -800px; }
    50% {left: 0px;}
    100% { left: 800px; }
}

@media(max-width: 1200px){
    #ultimoMin{
        width: 400px !important;
    }
}

.topbar .dropdown-toggle::after {
    border: none;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .topbar .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        font-weight: 400;
        font-family: 'Fredoka', sans-serif;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        transition: .5s;
        opacity: 0;
    }

    #topNavCuenta{
        font-size: 15px;

    }

   
}
.dropdown .dropdown-menu a:hover {
    background: var(--orange);
    color: var(--white);
}

.topbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    border-radius: 10px !important;
    transition: .5s;
    opacity: 1;

}

#topNavCuenta{
    color: white;
}

/*** Topbar End ***/


/*** Navbar Start ***/
.navbar-collapse {
    display: none; /* Oculta la navbar colapsada inicialmente */
}

.navbar-collapse.show {
    display: block; /* Muestra la navbar colapsada cuando se agrega la clase 'show' */
}



.navbar .navbar-nav .nav-link {
    padding: 10px 15px;
    font-weight: 400;
    font-family: 'Fredoka', sans-serif;
    font-size: 16px;
    transition: .5s;
    color:white;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.sticky-top.bg-white .navbar .navbar-nav .nav-link:hover,
.sticky-top.bg-white .navbar .navbar-nav .nav-link.active {
    color: var(--orange);
}

.navbar .dropdown-toggle::after {
    border: none;
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        font-weight: 400;
        font-family: 'Fredoka', sans-serif;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        transition: .5s;
        opacity: 0;
        z-index: 1
    }

    
}

.dropdown .dropdown-menu a:hover {
    background: var(--orange);
    color: white;
}


.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    border-radius: 10px !important;
    transition: .5s;
    opacity: 1;
}

.nav-item .dropdown-menu {
    display: none; 
    position: absolute; 
    background: #ffc107; 
    z-index: 1; 
    padding: 0; 
    border-radius: 0; 
}


.nav-item:hover .dropdown-menu {
    display: block; 
}

@media (min-width: 1200px) {
    .navbar .navbar-collapse .border-top {
        border-top: none !important;
    }

}

#searchModal .modal-content {
    background: rgba(255, 255, 255, .8);
}

#navBarlink{
    background-color: #333333;
    color: white;
}
/*** Navbar End ***/


/*** Features Start ***/
.features {
    width: 100%;
    background: linear-gradient(rgba(26, 125, 255, 0.5), rgba(255, 255, 255, 0.3)), url(../img/features-background.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
/*** Features End ***/


/*** Top News Start ***/
.news-2 h3 {
    position: relative;
}

.news-2 h3::after {
    content: "";
    line-height: 1.3rem;
    background: var(--bs-secondary);
    position: absolute;
    width: 68%;
    top: 50%;
    transform: translateY(-50%);
    height: 1px;
    right: 0;
    opacity: 0.2;
}
/*** Top News End ***/


/*** Latest News Start ***/
.latest-news{
    background-color: white;
    /***background-color: white;***/
}
.latest-news .latest-news-carousel.owl-carousel{
    position: relative;
}

.latest-news .latest-news-carousel.owl-carousel .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    left: -50px; 
    transform: translateY(-50%);
    font-size: 25px;
    padding: 1px 10px;
    transition: 0.5s;
    color: black;
    border-radius: 30px;
    z-index: 1;
}

.latest-news .latest-news-carousel.owl-carousel .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    right: -50px; 
    transform: translateY(-50%);
    font-size: 25px;
    padding: 1px 10px;
    transition: 0.5s;
    color: black;
    border-radius: 30px;
    z-index: 1;
}

.latest-news .latest-news-carousel.owl-carousel .owl-nav .owl-prev:hover,
.latest-news .latest-news-carousel.owl-carousel .owl-nav .owl-next:hover {
    background: var(--orange);
    color: var(--bs-white);
    border-radius: 20px;

}

.img-zoomin2 {
    transition: 0.5s;
    height: auto;
    width: 100%;  
}
/*** Latest News End ***/


/*** Whats New Start ***/
.populer-news .whats-carousel.owl-carousel {
    position: relative;
}

.populer-news .whats-carousel.owl-carousel .owl-nav .owl-prev {
    position: absolute;
    top: -80px;
    right: 70px;
    font-size: 20px;
    padding: 2px 20px;
    transition: 0.5s;
    margin-right: 10px;
    border: 1px solid var(--orange);
    color: var(--white);
    border-radius: 20px;
}

.populer-news .whats-carousel.owl-carousel .owl-nav .owl-next {
    position: absolute;
    top: -80px;
    right: 0;
    font-size: 20px;
    margin-left: 10px;
    padding: 2px 20px;
    transition: 0.5s;
    border: 1px solid var(--bs-primary);
    color: var(--white);
    border-radius: 20px;
}

.populer-news .whats-carousel.owl-carousel .owl-nav .owl-prev:hover,
.populer-news .whats-carousel.owl-carousel .owl-nav .owl-next:hover {
    background: var(--orange);
    color: var(--bs-white);
    border-radius: 10px;
}

.populer-news .tab-class .nav-item a{
    background: #F1F1F1 !important;
    color: black !important;
}

.populer-news .tab-class .nav-item a.active {
    background: var(--orange) !important;
    color: white !important;
}

.lifestyle .lifestyle-item {
    position: relative;
    overflow: hidden;
}

.lifestyle .lifestyle-item img {
    transition: 0.5s;
}

.lifestyle .lifestyle-item:hover img {
    transform: scale(1.2);
}

.lifestyle .lifestyle-item .lifestyle-content {
    position: absolute;
    width: 100%; 
    height: 100%; 
    top: 0; 
    left: 0; 
    padding: 20px; 
    display: flex; 
    flex-direction: column; 
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}
/*** Whats New End ***/


/*** Banner Section start ***/
.banner-2 {
    position: relative;
}

.banner-content-2 {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    /**background: linear-gradient(rgba(26, 125, 255, 0.7), rgba(255, 255, 255, 0.7));**/
    z-index: 2;
}
/*** Banner Section End ***/


/*** Footer Start ***/
.footer button:hover {
    background: var(--bs-white) !important;
    color: var(--orange) !important;
}

.footer .footer-item-1 .line-h {
    line-height: 38px;
}

.footer .footer-item-1 a i {
    transition: 0.5s;
}

.footer .footer-item-1 a:hover i {
    color: var(--orange) !important;
}

.footer .footer-item-3 a {
    line-height: 38px;
}

.footer .footer-item-2 a {
    transition: 0.5s;
}

.footer .footer-item-2 a:hover {
    color: var(--orange) !important;
}

.footer .footer-item-3 a {
    transition: 0.5s;
}

.footer .footer-item-3 a:hover {
    color: var(--orange) !important;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
/*** Footer End ***/



.facebookIcon{
    background-color: #0862F6;
    padding: 10px;
    color: white;
    transition: 0.5s;
    border-radius: 18px;
    width: 35px;
    text-align:center;
}

.twitterIcon{
    background-color: black;
    padding: 10px;
    color: white;
    transition: 0.5s;
    border-radius: 18px;
    width: 35px;
    text-align:center;

}

.igIcon{
    background-color: #8044B5;
    padding: 10px;
    color: white;
    transition: 0.5s;
    border-radius: 18px;
    width: 35px;
    text-align:center;

}

.ybIcon{
    background-color: #F60002;
    padding: 10px;
    color: white;
    transition: 0.5s;
    border-radius: 18px;
    width: 35px;
    text-align:center;
}

.linkedinIcon{
    background-color: #0077B0;
    padding: 10px;
    color: white;
    transition: 0.5s;
    border-radius: 18px;
    width: 35px;
    text-align:center;
}

.cerrarSesionIcon{
    background-color: transparent;
    padding: 10px;
    color: white;
    transition: 0.5s;
    border-radius: 18px;
    width: 35px;
    text-align:center;
}

.aCerrar{
    text-decoration: none;
    color: white;
    letter-spacing: -1px;
    font-size: 14px !important;
}

.navMenu{
    background-color: #333333;
}

.navbarCollapse{
    color: white;
}


/**accespos**/


body{
    background-image: url("../img/fondo.png") !important;
    background-repeat: repeat;
    background-color: #f1f1f1;
    background-size: 20%;
}

.profile{
    width: 35%;
    border-radius: 50%;
    border: 1px solid #e7e7e7;
    padding: 5px;
    background: #e7e7e7;
    text-align: center;
    margin-top: -35%;
  }

  .nombre{
    text-align: left;
    margin-left: 20px;
    margin-bottom: 0px;
    margin-top: -15%;
  }

  .dpto{
    padding: 0px;
    margin-top: -15px;
    font-size: 12px;
  }

  .espaciado{
    margin-top: 10%;
  }

  .logoDAP{
    width: 100%;
  }

  .botonesPerfil{
    display: inline;
    text-align: center;
  }

  .rowBotones{
    padding-bottom: 5%;

  }

  .iconosPerfil{
    color: var(--orange);
    border-color: none;
    background-color: none;
  }

  .verPerfil{
    text-align: center;
    background-color: var(--orange);
    color: white;
    align-items: center;
    width: 80%;
    border-radius: 20px;
    font-size: 14px;
  }

  .calendarContainer1{
    background-color: red !important;
  }

  .imagen{
    margin-top: -10%;
    position: absolute;
  }

  tr.group,
    tr.group:hover {
        /*background-color: rgba(0, 35, 173, 0.562) !important;*/
        color: #0d51c6;
        font-weight: bold;
    }
    
    :root.dark tr.group,
    :root.dark tr.group:hover {
        background-color: rgba(0, 0, 0, 0.75) !important;
    }

.btnEditarContacto{
    color: #0d51c6;
    background-color: white;
    border: none;
    text-align: center;
}



.inputIcon {
    position: absolute;
    right: 10px;
  }

.modalHeader{
    background-color: #234D95;
    color: white;
}

.modal-title{
    color: white;
}

.actualizarBtn{
    background-color: #234D95;
    color: white;
}

.btnEnviarDatos{
    margin-top: 1%;
    margin-bottom: 3%;
    background-color: #234D95 ;
    color: white;
}

/*DESCARGAS*/
.cardDescargas{
    background-color: #e9e8e8; 
    margin-bottom: 10px; 
    height: 250px;
}

.cardDescargasPPT{
    background-color: #e9e8e8; 
    margin-bottom: 10px; 
    height: 310px;
}

.cardDescargasDoc{
    background-color: #e9e8e8; 
    margin-bottom: 10px; 
    height: 350px;
}

.cardDescargasFolleto{
    background-color: #e9e8e8; 
    margin-bottom: 10px; 
    height: 280px;
    padding: 10px 0px 0px 0px;
}

.cardDescargasProt{
    background-color: #e9e8e8; 
    margin-bottom: 10px; 
    height: 200px;
}

#navMiPerfil{
    display: none;
}

/* CELULAR */
@media (max-width: 576px) {
    .acceso{
        height: 30px!important;
    }

    .acceso img{
        height: 20px !important;
    }

    @keyframes noteAnimate {
        0% { left: -200px; }
        100% { left: 100px; }
    }

    #navBarlink{
        margin-bottom: 30px !important;
    }

    #indicadores{
        display: none !important;
        font-size: 20px;
    }

    .cardDescargas{
        height: auto;
    }

    .cardDescargasPPT{
        height: auto;
    }

    .cardDescargasDoc{
        height: auto;
    }

    .cardDescargasFolleto{
        height: auto;
    }

    .cardDescargasProt{
        height: auto;
    }

    #imagenConcurso{
        width: 350px !important;
    }

    .carousel-item{
        margin-bottom: 30px !important;
    }

    .vuelosCard{
        padding: 20px !important;
        height: 250px !important;
    }

    .vuelosCard p{
        font-size: 16px !important;
    }

    .vuelosCard img{
        width: 40px !important;
    }

    .vuelosCard span{
        font-size: 16px !important;
    }

    #navPills {
        display: hide;
    }

    #sideBarPerfil{
        display: hide;
    }

    #iconosNavBar{
        display: none;
    }

    #note{
        font-size: 12px !important;
        white-space: nowrap;
    }

    #footerNoticias{
        display: none;
    }

    #ultimoMin{
        width: 200px !important;
    }

    .navbar-toggler {
        margin-left: auto;
        margin-top: -70px !important;
    }

    #imgPortada, #imgPortadaUser{
        height: 180px !important;
    }

    .miniImagen{
        width: 60px  !important;
      
    }

    #navMiPerfil{
        display: block !important;
    }

    .tituloVuelo{
        font-size: 18px;
    }

    .tituloOrigenDest{
        font-size: 18px !important;
    }

    .horasVuelo{
        font-size: 10px !important;
    }

    #flecha{
        display:none;
    }
}

.btnDocumentos{
    display: inline-block;
    padding: 5%;
    background-color: white;
    /*border-color: orange;*/
    /*color: orange;*/
    border: none;
    border-radius: 5%;
    width: 100%;
    box-shadow: 0px 0px 5px 5px rgb(218, 218, 218) 
}


.btnDocumentos:hover{
    scale: 1.05;
    transition: 0.5s;
}


.btnDescargar{
    text-align: center;
}

.userIMAGEN{
    width: 100%;
    border-radius: 50%;
    margin-top: -50%;
    margin-left: 10%;
    border: 1px solid #e7e7e7;
    background-color: #e7e7e7;
    padding: 5px;
    display: inline;
}

.nombreUsuario{
    display: inline;
    margin-top: -150px;
}


.card-text{
    font-size: 14px;
}

.tabPerfil{
    padding: 30px;
    border: 1px solid; 
    border-color: #DEE2E6;
}

.btnPerfil{
    background-color: #234D95;
    color: white;
    padding: 8px;
    margin-top: 3%;
    border-radius: 5px;
    border: none;
}

.btnNuevoUsuario{
    background-color: #234D95;
    color: white;
    padding: 8px;
    border-radius: 5px;
    border: none;
    margin-bottom: 10px;
}


.postTxtArea{
    width: 100%;
    margin-top: 25px;
}

.postTxtArea2{
    width: 100%;
}

.fechaPost{
    font-size: 12px;
}

.imagenPost{
    width: 80%;
    vertical-align: center;
    border-radius: 50px;
    margin-top: 25px;
}

#showPosts{
    margin-top: 2%;
}

.accionesPost{
    font-size: 14px;
    cursor: pointer;
    color: #234D95;
}

.textareaComentario{
   
}

.tituloEnviarComentario{
    margin-top: 5%;
}

#imgPreview{
 max-width: 30%; 
 text-align: center;
 margin-top: 6%;
}


#tituloEntrada{
    margin-bottom: 5%;
}

.categoria{
    margin-top: 5%;
    margin-bottom: 5%;
}

.ultimoNoticias{
    margin-bottom: 5%;
}

.btnNoticia{
    background-color: #234D95;
    color: white;
    padding: 8px;
    border-radius: 5px;
    border: none;
}

.btnEditarNoticia{
    background-color: green;
    color: white;
    border-radius: 5px;
    border: none;
    text-align:center;
}

.btnEliminarNoticia{
    background-color: red;
    color: white;
    border-radius: 5px;
    border: none;
    text-align:center;
}


.text-bg-success{
    background-color: green;
}

.text-bg-danger{
    background-color: red;
}

.botonesEstado{
    background-color: transparent;
    border: none;
}

.pDetalles{
    font-size: 12px;
}

.botonLeerMas{
    background-color: #234D95;
    color: white;
    padding: 8px;
    border-radius: 5px;
    border: none;
}

.botonLeerMas:hover{
    background-color: grey;
    color: white;
    padding: 8px;
    border-radius: 5px;
    border: none;
    transition: 1s;
}

.imagenCard{
    max-height: 300px;
    cursor: pointer;
}

.imagenCard:hover{
    filter: brightness(70%);
    transition: 1s;
}

.colCard{
    margin-bottom: 10px;
}

#avisos{
    align-items: center;
    vertical-align: center;
}

.publicarAviso{
    padding: 5px;
    color: white;
    background-color: #234d95;
    margin-top: 2%;
    border: none;
    border-radius: 5px;
}

#mostrarEnviarAviso{
    margin-top: 2%;
}

.imagenHistoria{
    width: 100%; 
    border-top-left-radius: 5%;
    border-top-right-radius: 5%;
}

.cardHistoria{
    border-radius: 5%; 
    box-shadow: 0px 0px 15px 10px rgb(240, 240, 240); 
    border: none;
}

.hrTitulo{
    border: 1.5px solid #EEB415;
    width: 30%;
    margin-top: -2%;
    opacity: 100%;
}

.imgAutor{
    max-width: 50%;

}

.imagenComentario{
    width: 70%;
    vertical-align: center;
    border-radius: 50px;
}

.rowComentarios{
    margin-top: 10px;
    margin-left: 5px;
    background-color: #E9ECEF;
    border-radius: 20px;
    padding: 5px;
    width: 90%;
}

.row25{
    width: 85%;
    margin-left: 15%;
}

.btnCumpleanos{
    background-color: var(--orange);
    color: white;
    padding: 5px;
    border: none;
    font-size: 14px;
}

.nav-link{
    color: var(--orange);
}

.nav-link:hover{
    color: var(--orange);
}

.is-invalid{
    border: 1px !important;
}

#indicadores{
    font-size: 13px;
    display: inline;
    color: black;
    overflow: hidden;
}

.imgIndicador{
    width: 15px;
    padding: none;
    margin: 0px;
    display: inline;
}

.miniImagen{
    border-radius: 50%;
    width: 30%;
    padding: 5px;
    display: inline;
}

.btnEditarAviso{
    color: #EEB415;
    background-color: transparent;
    border: none;
    text-align: center;
}

.btnEliminarAviso{
    color: #E84832;
    background-color: transparent;
    border: none;
    text-align: center;
}

.btnMensajeAviso{
    color: #EF7A1A;
    background-color: transparent;
    border: none;
    text-align: center;
}

.carousel-item {
    transition: 3s !important;
  }

.carousel-caption{
    margin-top: 20px!important;
}

/*** vuelos carrusel***/
.vuelos {
    background-color: white;
}

.vuelos .vuelos-carousel {
    position: relative; /* Asegúrate de que el contenedor sea relativo */
}

.vuelos .vuelosCard{
    background-color: #f3f3f3;
    color:#333333;
    height: 280px;
    padding: 10px;
    transition: 0.5s;
}

.vuelosCard:hover{
    transform: scale(1.02);
}

.vuelos .vuelos-carousel .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    left: -50px; /* Ajusta este valor para crear espacio */
    transform: translateY(-50%);
    font-size: 25px;
    padding: 1px 10px;
    transition: 0.5s;
    color: black;
    border-radius: 30px;
    z-index: 1;
}

.vuelos .vuelos-carousel .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    right: -50px; /* Ajusta este valor para crear espacio */
    transform: translateY(-50%);
    font-size: 25px;
    padding: 1px 10px;
    transition: 0.5s;
    color: black;
    border-radius: 30px;
    z-index: 1;
}

.vuelos .vuelos-carousel .owl-nav .owl-prev:hover,
.vuelos .vuelos-carousel .owl-nav .owl-next:hover {
    background: var(--orange);
    color: var(--bs-white);
    border-radius: 20px;
}


/*** Latest News End ***/

/*** LISTADO DE VUELOS ***/
#rowVuelos{
    background-image: url("http://intranet.dap.cl/img/mundo2.png");
    background-position-x: center;
    background-size: 200px;
    background-repeat: no-repeat;
    background-position-y: 20px;
    
}

.cardItinerario{
    margin-bottom: 5%;
    cursor: pointer;
    box-shadow: 0px 0px 3px 3px rgb(244, 244, 244); 
}

.cardItinerario:hover{
    transform: scale(1.02);
    transition: 1s;
}

#vuelos-tab-pane{
   padding: 0px 10px 10px 10px;
    border: #0862F6;
    border-width: 3px;
}

.cardVuelos{
    margin-bottom: 5%;
    padding: 15px;
    color: #333333;
}

.cardVuelos:hover{
    transform: scale(1.04);
    transition: 1s;
}

.aFooterSeccion{
    color: var(--orange);
}

.aFooterSeccion:hover{
    transition: 1.5s;
    color:#333333
}

hr.gradient {
    height: 2px;
    border: none;
    border-radius: 6px;
    background: linear-gradient(
        to right, #E84832 , #ff8c00
    );
  }

.tituloCardInicio{
    background-color: #e8e8e8;
    margin:none;
    
}

.cardComunidap{
    border-radius: 8%;
    box-shadow: 0px 0px 15px 10px rgb(240, 240, 240); 
    border: none;
}

.imagenComunidap{
    width: 100%; 
    border-radius: 8%;
    box-shadow: 0px 0px 15px 10px rgb(224, 224, 224); 
}

.imagenComunidap:hover{
    transform: scale(1.05);
    transition: 0.8s;
}

.inline{
    display: inline;
}

.btnEnviarMensaje{
    background-color: #234D95;
    color: white;
    padding: 10px;
    margin-top: 3%;
    border-radius: 5px;
    border: none;
    font-size: 12px;
}

.crMensajes{
    max-height: 500px;
    overflow-y: auto;
}

.imagenMensajeria{
    width: 100%;
    border-radius: 50%;
}

.rowMsj{
    background-color: #F0F7FC;
    padding: 10px;
    cursor: pointer;
}

.rowMsj:hover{
    transition: 0.5s;
    background-color: #dce0e2;
    padding: 10px;
}

.rowMsj2{
    background-color: rgb(234, 239, 243);
    padding: 10px;
    cursor: pointer;
}

.rowMsj2:hover{
    transition: 0.5s;
    background-color: #dce0e2;
    padding: 10px;
}

.textoMsj{
    font-weight: 100;
    color: black;
}

.page-item.active .page-link {
    color: #fff !important;
    background-color: var(--orange) !important;
    border: none;
}

.leerMasNoticias{
    color: #EF7A1A;
}

.leerMasNoticias:hover{
    color: #E84832;
    transition: 0.5s;
}

.tituloNoticiaA:hover{
    color: #EF7A1A;
    transition: 0.5s;
}

.compartirBoton{
    font-size: 12px;
    background-color: #FF8C00;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 5px;
    margin-bottom: 10px;
}


.imagenBuscador{
    width: 100%;
}

.dataTables_info{
    font-size: 10px !important;
}

.botonesBuscador{
    background-color: #FE8A01;
    color: white;
    border: none;
    font-size: 16px;
    padding-left: 10px;
    padding-right: 10px;
    opacity: 60%;
}

.botonesBuscador:hover{
    background-color: black;
    transition: 1s;
}

.botonVolver{
    width: 110px;
    border: none;
    background-color: #FE8A01;
    color: white;
    font-size: 14px;
    border-radius: 5px;
    padding: 5px;
}

.botonVolver:hover{
    background-color: #d47100;
    transition: 1s;
}

.centrarImagen {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}


.revistas{
    background-color: white;
    /***background-color: white;***/
}
.revistas .revistas-carousel.owl-carousel{
    position: relative;
}

.revistas .revistas-carousel.owl-carousel .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    left: -50px; 
    transform: translateY(-50%);
    font-size: 25px;
    padding: 1px 10px;
    transition: 0.5s;
    color: black;
    border-radius: 30px;
    z-index: 1;
}

.revistas .revistas-carousel.owl-carousel .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    right: -50px; 
    transform: translateY(-50%);
    font-size: 25px;
    padding: 1px 10px;
    transition: 0.5s;
    color: black;
    border-radius: 30px;
    z-index: 1;
}

.revistas .revistas-carousel.owl-carousel .owl-nav .owl-prev:hover,
.revistas .revistas-carousel.owl-carousel .owl-nav .owl-next:hover {
    background: var(--orange);
    color: var(--bs-white);
    border-radius: 20px;

}
.revistas-item {
    filter: brightness(0.8);
    transition: 0.8s;
}


.revistas-item:hover {
    filter: brightness(1);
    transition: 0.8s;
}

.btnRevista{
    background-color: #234D95;
    border: none;
    color: white;
    font-size: 18px;
    padding: 5px;
}

/*****TRIVIA*/
#trivia{
    width: 100%;
    height: 390px;
    background-color: #004085;
    padding: 30px;
    border-radius: 20px;
}

.contenidoInfo,
.tiempoAgotado{
    background-color: white;
    padding: 20px;
    border-radius: 20px;
    color: #004085;
    height: 330px;
}

.resultado,
.yaRespondio{
    background-color: white;
    padding: 20px;
    border-radius: 20px;
    color: #004085;
    height: 330px;
    text-align: center;
    align-items: center;
}

.contenidoInfo button{
    background-color: #004085;
    color: white;
    border-radius: 10px;
    border: none;
    padding: 10px;
}

.lista{
    color: black;
}

.empezarBoton{
    display: flex;                  
    justify-content: center;        
    align-items: center;        
    margin: 90px 0px 500px 0px;
}

.empezarBoton button{
    padding: 20px 50px 20px 50px;
    font-size: 20px;
    color: #004085;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    box-shadow: 5px 5px 5px 3px rgba(132, 132, 132, 0.5);
}

.tiempo{          
    width: 250px;               
    background: white;        
    padding: 10px;               
    border-radius: 10px;  
    margin: 0px 250px 10px;    
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); 
    text-align: center;    
}

.tiempo_texto {
    color: #004085;                
    font-weight: bold;           
}

.pregunta{

    background-color: white;
    padding: 30px;
    border-radius: 10px;
    height: 330px;
}

.botonSgte{
    text-align: center;
}

.botonSiguiente{
    background-color: #004085;
    color: white;
    border-radius: 10px;
    border: none;
    padding: 10px;

}

.total_que{
    text-align:right;
}

.pregunta footer{
    color: black;
    height: 30px;
    padding: 0px 30px;
    text-align: right;
    justify-content: space-between;
    border-top: 1px solid lightgrey;
}

.tiempoAgotado h6{
    margin-top: 20px;
    font-size: 30px;
    text-align: center;
}

.fade-in {
    opacity: 0; 
    transition: opacity 0.5s ease-in; 
}

.fade-in.show {
    opacity: 1; 
}

.imagenTiempo{
    text-align: center;
}

#textoResultado{
    font-size: 16px;
    font-weight: bold;
    color: #004085;
    text-align: center;
}

/****************IG-********/
.ig{
    margin: 20px auto 0 auto;
    border: 1px solid #ccc;
    border-radius: 2px;
    width: 100%;
    max-width: 320px;
    background: white;
    font-size: 12px;
    box-shadow: 7px 24px 20px 3px rgba(242,242,242,1);
  }

.ig-header{
    padding: 10px;
    display: flex;
    align-items: center;
}

.ig-image {
    width: 100%; 
    height: 230px; 
    overflow: hidden; 
    display: flex; 
    align-items: center; 
    justify-content: center;
}

.ig-post-image {
    width: auto; 
    height: 100%; 
    min-width: 100%;
    object-fit: cover; 
}

.columnaIg{
    cursor: pointer;
}

.columnaIg:hover{
    transform: scale(1.03);
    transition: 1s;
}

.user-image{
    border-radius: 50%;
    width: 30px;
    height: 30px;
}

.user-name{
    font-weight: bold;
    margin-left: 10px;
}
  
.time{
    text-align: right;
    width: 100%;
    color: #ccc;
}

.ig-content{
    padding: 10px;
}
  
  
.ig .hr{
    border: none;
    border-bottom: 1px solid #ccc;
    margin-top: 5px;
    margin-bottom: 5px;
}

.botonig{
    cursor: pointer;
    border: none;
    font-family: "system-ui";
    font-size: 14px;
    color: rgb(255, 255, 255);
    padding: 5px;
    transition: 2s;
    width: 140px;
    box-shadow: rgb(0, 0, 0) 0px 0px 0px 0px;
    border-radius: 20px;
    /*background: linear-gradient(164deg, rgba(255, 17, 0, 0.64) 0%, rgb(255, 179, 0) 66%);*/
    background-color: #333333;
}


.revisaIG {
    text-align: center;
    margin: 40px 0px 40px 0px;
}

.botonTuto{
    background: #FE8A01;
    color: white;
    text-align: center;
    border: none;
    padding: 5px 15px 5px 15px;
    border-radius: 15px;
    opacity: 0.7;
    box-shadow: rgb(202, 201, 201) 3px 3px 3px 3px;
}

.fb-page {
    width: auto !important; 
    max-width: 500px; 
    margin: auto; 
}


.alerta-image {
    animation: pulse 1s infinite;
    cursor: pointer;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.enviarMensajeBoton{
    background-color: #004085;
    color: white;
    font-size: 12px;
    border-radius: 15px;
    border: none;
}

.btnSubirGaleria{
    background-color: #333333;
    color: white;
    padding: 10px 30px 10px 30px;
    font-size: 16px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    box-shadow: rgb(232, 232, 232) 3px 3px 3px 3px;
}

.btnSubirGaleria:hover{
    transform: scale(1.02);
    transition: 1s;
}

.btnGaleria{
    background-color: #333333;
    color: white;
    padding: 10px 15px 10px 15px;
    font-size: 14px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
}
/*******GALERIA*****/
.cuadroGaleria{
    width: 100%; 
}

.image-container{
    cursor: pointer;
    /*border-radius: 15px;*/
    background-color: #F1F1F1;
    margin-bottom: 30px;
}

.captionGaleria{
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: rgba(51, 51, 51, 0.5);
    color: white;
    padding: 10px;
    transition: bottom 0.5s ease;
}

.btnCaption{
    background-color: white;
    color: black;
    border: none;
    font-size: 12px;
    border-radius: 10px;
    padding: 0px 10px 0px 10px;
}

.image-container:hover .captionGaleria {
    bottom: 0;
}


.filtros{
    background-color:rgba(241, 241, 241, 0.3);
    padding: 10px;
}

.btnBuscarVuelos{
    border: none;
}

.btnQuitarFiltro{
    background: none;
    border: none;
    font-size: 12px;
    text-align: start;
}

.botonComuniDAP{
    padding: 10px;
    color: white;
    background-color: var(--orange);
    border-radius: 15px;
    border-color: transparent;
}

.fechaVuelo{
    font-weight: bold;
    font-size: 16px;
    color: black;
}

.hrefUltimoMin{
    color:#333333;
}

.hrefUltimoMin:hover{
    color: white;
}

.form-check-input:checked{
    background: var(--orange);  
    border: black;  
}

.accordion-button{
    font-weight: 400;
    font-family: 'Fredoka', sans-serif !important;
}

.accordion-button i {
    margin-right: 10px; 
    color: var(--orange);
}

.botonReporte{
    background-color: var(--orange);
    color: white;
    font-size: 14px;
    padding: 5px 10px 5px 10px;
    border-radius: 10px;
    border-color: transparent;
}


tr.groupfinanzas,
tr.groupfinanzas:hover {
    /*background-color: rgba(0, 35, 173, 0.562) !important;*/
    color: #ff8c00;
    font-weight: bold;
}

:root.dark tr.groupfinanzas,
:root.dark tr.groupfinanzas:hover {
    background-color: rgba(0, 0, 0, 0.75) !important;
}

.resumenCard{
    border-radius: 15px;
    box-shadow: 0px 0px 1px 1px rgb(218, 218, 218);
}

.resumenCard:hover{
    transform: scale(1.02);
    transition: 1s;
}

.hrAdolescente{
    border: 1.5px solid #EEB415;
    width: 45%;
    margin-left: 28%;
    margin-top: -2%;
    opacity: 100%;
}

.cardBoletin{
    transition: 0.5s;
    margin: 0;
    padding: 0;
}

.cardBoletin .card-body{
    background-color: #004085;
    margin: 0;
    padding: 5px;
    border-radius: 0px 0px 5px 5px;
    color: white;
}

.cardBoletin:hover{
    transform: scale(1.01);
}

/* ---- NUEVO DISEÑO DE GALERÍA MODERNA ---- */

/* 1. La tarjeta principal de cada elemento */
.gallery-card {
    position: relative; /* Clave para posicionar el overlay */
    overflow: hidden;   /* Oculta lo que se salga de la tarjeta */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    background-color: #f8f9fa; /* Color de fondo por si algo falla */
}

.gallery-card:hover {
    transform: translateY(-5px); /* Efecto de levantar la tarjeta */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* 2. El contenedor del medio (imagen o ícono) */
.gallery-media {
    width: 100%;
    /* Usa aspect-ratio para cajas perfectas sin importar el ancho */
    aspect-ratio: 4 / 3; /* Proporción 4:3. Puedes usar 1/1 para un cuadrado */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 3. La imagen dentro del contenedor */
.gallery-media img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* La imagen cubre todo el espacio sin deformarse */
}

/* 4. Estilo para cuando no es una imagen (ej. un PDF) */
.gallery-file-icon {
    font-size: 6rem; /* Tamaño del ícono */
    color: #6c757d;   /* Color del ícono */
}

/* 5. El overlay que aparece al pasar el mouse */
.gallery-caption {
    padding: 15px;
    background-color: #f8f9fa; /* Fondo gris claro y suave */
    border-top: 1px solid #e9ecef; /* Línea sutil de separación */
}

.gallery-caption-title {
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #343a40; /* Color de texto oscuro para buen contraste */
    margin: 0;
}

.subtituloGaleria{
    font-size: 14px;
}

.btnLike{
    background: none;
    color: #E84A30;
    border: none;
    font-size: 12px;
}

