.icon {
    width:18px;
    height:18px;
    margin-left: 8px;
}

.lang-inline li a {
    color: #F19A11 !important;
}

a.nav-link {
    font-size: 1.5rem;
}

.alert-info {
    color: #F19A11 !important;
    background-color: #074d75 !important;
    padding: 20px;
    text-shadow: none;
    border: none;
    line-height: 45px;
}

h1.page-header-green {
    color: #074d75 !important;
    text-shadow: 2px 2px rgba(122, 122, 122, 0.133);
    font-weight: bold;
    font-size: 2.2rem !important;
    text-transform: uppercase;
}

.mod-languages .nav-link {
    color: #f6f6f6;
}
.lang-active a span {
    color: #e2e2e2 !important;
    position: relative;
}
.lang-active a span::after {
    content: ''; /* Es necesario para crear el pseudo-elemento */
    position: absolute;
    bottom: -5px; /* Desplazar el subrayado hacia abajo */
    left: 0;
    width: 100%;
    height: 2px; /* Grosor del subrayado */
    background-color: #e2e2e2; /* Color del subrayado */
}

.bg-light {
    background-color: #f2f2f2;
}
.text-grey {
    color: #a6a8a3;
}

.orange { color: #F19A11; }

.round {
    border-radius: 20px;
}

.subfooter img {
    max-width: 300px;
}

.btn-primary, .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.disabled, .btn-primary:disabled {
    color: #fff;
    background-color: #F19A11;
    border-color: #F19A11;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #F19A11;
    background-color: #074d75;
    border-color: #074d75 #074d75 #074d75;
    font-weight: bold;
}

.tab-content {
    display: none; /* Ocultamos todo el contenido por defecto */
}

.tab-content.active {
    display: block; /* Solo mostramos el contenido activo */
    border: 3px solid orange;
}

.tab-content.active:hover {
    display: block; /* Solo mostramos el contenido activo */
    border: 3px solid #f2f2;
}

.displayer {
    position: relative; 
}

.displayer::after {
    content: ''; /* Crea el pseudoelemento */
    position: absolute;
    bottom: -20px; /* Coloca la flecha debajo de la card */
    left: 50%; /* Centra la flecha */
    transform: translateX(-50%); /* Ajusta el centro */
    width: 0;
    height: 0;
    border-left: 10px solid transparent; /* Forma el triángulo */
    border-right: 10px solid transparent; /* Forma el triángulo */
    border-top: 20px solid #074d75; /* Flecha apuntando hacia abajo */
    display: none; /* Oculta la flecha por defecto */
}

.displayer.active::after {
    display: block; /* Muestra la flecha cuando la card es activa */
}

.displayer.active {
    background-color: #074d75;
    outline: 0;
}
.displayer.active p {
    color: #fff !important;
    text-decoration: none;
}
.displayer.active h3 {
    color: #f19a11 !important;
    text-decoration: none;
}

@keyframes bounce {
    0% { transform: translateY(0); }
    25% { transform: translateY(-10px); }
    50% { transform: translateY(0); }
    75% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.bounce-animation {
    animation: bounce 0.6s ease-in-out;
}

@media (min-width: 768px) {
    .px-md-10 {
        padding-right: 10rem !important;
        padding-left: 10rem !important;
    }
}