html {
    scroll-behavior: smooth;
}
.headerHide{
    opacity: 0;
    transition: all 0.5s;
    transition-delay: 200ms;
}
.headerShow{
    opacity: 1;
}
.hide{
    opacity: 0;
    transition: all 0.5s;
    transform: translateX(-100%);
}
.show{
    opacity: 1;
    transform: translateX(0);
}
.firstSec{
    transition-delay: 800ms !important;
}
.logo_mtnt{
    transition-delay: 800ms !important;
}

.logo:nth-child(1){
    transition-delay: 100ms;
}
.logo:nth-child(2){
    transition-delay: 200ms;
}
.logo:nth-child(3){
    transition-delay: 400ms;
}


.train_card:nth-child(1){
    transition-delay: 600ms !important;
}
.train_card:nth-child(2){
    transition-delay: 800ms !important;
}
.train_card:nth-child(3){
    transition-delay: 1000ms !important;
}
.air-datepicker {
    font-size: 1.25rem;
    border: none;
    box-shadow: none;
    background-color: #000;
    color: #fff;
    width: 100%;
}
.air-datepicker-nav--title:hover{
    background-color: #000;
}

.air-datepicker-nav--title {
    color: red;
}

.air-datepicker-nav--months {
    color: red;
}

.air-datepicker-cell {
    padding: 10px;
}

.air-datepicker-cell.-current- {
    color: #fff;
}

.air-datepicker-cell.-selected-:not(.-focus-) {
    background-color: #F51923 !important; /* Cambia el fondo a negro */
    color: #fff !important; /* Cambia el color del texto a blanco */
}
.air-datepicker-cell.-selected-.-focus- {
    background-color: #F51923;
    color: #fff;
}



.air-datepicker-cell.-focus- {
    color: #F51923;
    background-color: black;

}

.air-datepicker-nav-title {
    font-size: 1.5rem;
}

.air-datepicker-body--day-name {
    color: #F51923;
    font-weight: bold
}
.air-datepicker-cell.-selected-.-current- {
    color: #fff;
    background-color: #F51923;

}



.loader {
    border-top-color: transparent;
    border-right-color: white;
    border-bottom-color: white;
    border-left-color: white;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.air-datepicker-nav--action {
    background-color: transparent; /* Cambia el color de fondo */
    color: transparent; /* Cambia el color del texto */

}

.air-datepicker-nav--action:focus .air-datepicker-nav--action:hover {
    background-color: #ff6b81; /* Cambia el color de fondo al pasar el mouse */
}

.flip-container {
    display: flex;
    height:auto;
    perspective: 1000px; /* Da el efecto de 3D */
}

.flip-card {
    width: 100%;
    height: auto;
    position: relative;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card-front, .flip-card-back {
    position: relative;
    width: 100%;
    height: 100%;
    backface-visibility: hidden; /* Oculta la parte trasera cuando no está activa */
    display: flex;
    justify-content: center;
    align-items: center;
}

.flip-card-front {
    background-color: #000;
    color: #fff;
}

.flip-card-back {
    background-color: #ff4757;
    color: white;
    transform: rotateY(180deg); /* La parte trasera está rotada 180 grados por defecto */
}

.flip-card.flipped {
    transform: rotateY(180deg); /* Gira la tarjeta cuando tiene la clase 'flipped' */
}

@media(prefers-reduced-motion){
    .hidden{
        opacity: 1;
        transition: none;
    }
    .headerHide{
        opacity: 1;
        transition: none;
    }
    .firstSec{
        opacity: 1;
        transition: none;
    }
}

