/* :root {
    --bluePrime: #444290;
    --grayPrime: rgb(74, 74, 74);
    --redPrime: #ed3237;
} */

/* modal message */
#serverMessage {
    font-family: 'Poppins', 'Arial';
    font-size: 20pt;
}

#serverMessage #modal-title {
    color: var(--redPrime) !important;
}

#serverMessage .modal-body {
    font-family: 'Poppins', 'Arial';
    font-size: 0.6em;
}

.modal1 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #111111bd;
    display: flex;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: 0.5s;
}

.modal1--show {
    opacity: 1;
    pointer-events: unset;
    transition: 0.5s;
}

.modal__container1 {
    position: relative;
    display: flex;
    width: 80%;
    height: auto;
    background-color: #fff;
    max-width: 80%;
    max-height: 80%;
    margin: auto;
    border-radius: 6px;
    padding: 0;
}

.modal__container1 img {
    border-radius: 6px;
    width: 100%;
    z-index: 100000;
}

.modal__close1 {
    position: absolute;
    display: flex;
    width: 3%;
    right: 1%;
    top: 1%;
    text-decoration: none;
    background-color: none;
    border-radius: 50%;
}

.modal__close1 img {
    position: absolute;
    width: 100%;
}

/* seccion para comprar pasajes */
.section-ticket {
    font-family: 'Poppins', 'Arial';
    font-size: 16pt;
    background-color: var(--doradoGoldYellow);
}

.section-ticket > .container {
    background-color: rgba(120, 120, 120, 0.8);
    backdrop-filter: blur(10px);
}

.section-ticket .form-group select + span {
    width: 100% !important;
}

/* pone el borde horizontal inferior a los select de origen y destino */
.section-ticket .select2-selection {
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: 1px solid black;
    border-radius: 0px;
    /* background-color: rgba(255, 255, 255, 0.5); */
}

/* el tipo y tamaño de letra para los inputs y selects */
.section-ticket .select2-selection__rendered,
.section-ticket .datepicker,
.section-ticket select#cboCantidadMaximaPasajeros {
    font-family: 'Poppin', 'Arial';
    font-style: italic;
    font-weight: bold;
    font-size: 0.8em;
}

/* calendars */
.section-ticket .inputs .input-append.date > input {
    position: absolute;
    width: 100%;
    border-left: none;
    border-top: none;
    border-right: none;
    border-bottom: 1px solid black;
    border-radius: 0px;
}
.section-ticket .inputs .input-append.date > span {
    position: absolute;
    top: 0px;
    right: 0px;
}

/* add users */
.section-ticket select#cboCantidadMaximaPasajeros {
    background-image: url(../img/icon_add_user.svg);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    border-left: none;
    border-top: none;
    border-right: none;
    border-bottom: 1px solid black;
    border-radius: 0px;
}
/*Evita que se muestre la flecha por defecto en versiones de IE*/
.section-ticket select#cboCantidadMaximaPasajeros::-ms-expand {
    display: none;
}

.section-ticket .inputs #search-btn {
    background-color: var(--doradoGreen);
}

/* .section-ticket  */

@media (min-width: 768px) {
    /* TICKETS */
    .section-ticket .slogan {
        font-weight: 700;
    }
    .section-ticket .radios {
        font-size: 0.8em;
        font-weight: 400;
    }

    /* inputs */
    .section-ticket .card-title {
        font-size: 0.7em;
        font-weight: 400;
    }
    .section-ticket .inputs .form-group,
    .section-ticket .inputs .input-group {
        font-size: 0.7em;
        font-weight: bold;
    }
    .section-ticket .inputs button {
        font-size: 0.7em;
        font-weight: 300;
    }
}

@media screen and (max-width: 767.98px) {
    .section-ticket .inputs .card {
        width: 100%;
    }

    .section-ticket > .row:nth-child(1) > * {
        margin: 0px auto;
    }

    .section-ticket .radios label {
        font-size: 0.8em;
        font-weight: 400;
    }

    .section-ticket .slogan {
        display: flex;
        flex-direction: column;
        /* justify-content: center; */
        align-items: center;
        /* background-color: blue !important; */
    }
}
