/*
* SECTIONS
*/
.main{
    padding-bottom: 2.25rem;
}

.cards--container{
    padding-inline: 14px;
}

.cards--container h3{
    font-size: 1.375rem;
    text-align: center;
}








/*
* SPECIAL SECTIONS
*/
.sp-initial-content{
    padding-top: 25px;
    padding-inline: 14px;
}









/* 
*  MODAL -- COVER
*/
.cover{
    display: none; /* Hidden by default */

    position: fixed; /* Stay in place */
    z-index: 9999; /* Sit on top */
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    overflow: auto; /* Enable scroll if needed */
    background-color: #fff;
}

.d-none{
    display: none;
}

.show{
    display: flex !important;
}

.cover--main{
    width: 100%;

    background-color: #1b1b1b;
}

.cover--header{
    display: flex;

    color:white;

    align-items: baseline;
    justify-content: space-between;

    margin-block: 5px;
    padding-inline: 20px;
}

.cover--header img{
    width: 16px;
}

.cover--body{
    background-color: #fff;
    height: 100%;

    border-top-right-radius: 15px;
    border-top-left-radius: 15px;

    padding-top: 25px;
    padding-inline: 15px;
}

.search--input--container{
    position: relative;
}

.search--input{
    margin: 0;
    margin-bottom: 12px;
    padding: 21px 16px 7px 48px;
    background-color: rgb(255 255 255 / 0%);
    border-style: none;
    border-bottom: 2px solid rgb(255 255 255 / 0);

    border-radius: .25rem;
    border: 1px solid #d9d9d9;

    box-sizing: border-box;

    min-height: 52px;

    text-align: start;
    width: 100%;
}

.search--input:focus{
    outline: none;
    border: 1px solid #d9d9d9;
    border-bottom: 2px solid #34c759;
}

.search--input--icon{
    position: absolute;
    z-index: 999;
    top: 15px;
    left: 15px;

    width: 18px;
}

.search--input--label{
    position: absolute;
    z-index: 998;
    top: 8px;
    left: 47px;

    font-size: 11px;
    color:#7f7f7f;

    width: 20px;
}

.destination{
    box-sizing: border-box;
    padding: 16px 60px 15px 12px;
    border-bottom: 1px solid #cccccc;
}

.destination:hover{
    background-color: #f3f3f3;
}

.destination :nth-child(1){
    display: inline;
    font-size: 16px;
    font-weight: 700;

    margin-right: 5px;
}

.destination :nth-child(2){
    display: inline;
    font-size: 14px;
    margin-right: 5px;
}

.destination :nth-child(3){
    display: inline;
    font-size: 14px;
}





/*
* FORMS
*/
.passenger-selector{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;

    justify-content: space-between;
}

.passenger-btn{
    min-width: 95px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;

    justify-content: space-between;
}

.passenger-btn img{
    width: 25px;
    height: 25px;
}

.passenger-btn h1{
    font-size: 26px;
}






/*
* MAIN-CARD
*/
.main--card{
    padding-top: 16px;

    border-radius: 16px;
    background-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.main--card--header{
    display: flex;
    justify-content: center;
}

.main--card--header form{

    display: flex;
    justify-content: space-between;
    min-width: 14.6875rem;
    box-sizing: border-box;
    padding: 10px 18px;
    background-color: #fff;
    border-radius: 6.25rem;
    box-shadow: 0 0.125rem 0.75rem rgba(27,27,27,.15); 
}

.main--card--header form label{
    font-size: .875rem;
}

.main--card--body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    margin-top: 16px;
    padding: 20px 24px;

    border-radius: 16px;
    background-color: #fff;
}

/* MAIN-INPUT-GROUP */

.main--input-group {
    position: relative;
    display: flex;
    flex-direction: row;

    border-radius: .25rem;
    border: 1px solid #d9d9d9;
}

.main--input-group .fd-icon{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    /* Asegúrate de que la imagen no sea más grande que el contenedor */
    width: 20px;
    max-width: 100%;
    max-height: 100%;
}

.btn-ig{
    position: relative;
    margin: 0;
    padding: 21px 16px 7px 48px;
    background-color: rgb(255 255 255 / 0%);
    border-style: none;
    border-bottom: 2px solid rgb(255 255 255 / 0);
    cursor: pointer;

    text-align: start;
    width: 100%;
}

#btn-passengers{
    padding: 16px 21px 10px 48px !important;
}

.btn-ig:hover{
    border-bottom: 2px solid #34c759;
}


.btn-ig-icon{
    position: absolute;
    z-index: 999;
    top: 15px;
    left: 15px;

    width: 20px;
}

.btn-ig-label{
    position: absolute;
    z-index: 998;
    top: 8px;
    left: 47px;

    font-size: 11px;
    color:#7f7f7f;

    width: 20px;
}

.btn-ig-text{
    font-weight: 700;
}

/* MAIN-RADIOS */

.radio-wrapper {
    display: inline-block;
    cursor: pointer;

}

.radio-circle {
    width: 16px;
    height: 16px;
    border: 1px solid #7f7f7f;
    border-radius: 50%;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    opacity: 1;
}

.radio-circle:hover{
    border: 1px solid #34c759;
}

.radio-dot {
    width: 8px;
    height: 8px;
    background-color: #ffffff; /* Color verde */
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0; /* Se oculta por defecto */
}

.radio-label {
    padding-left: 5px;
    vertical-align: middle;
}

input[type="radio"] {
    display: none;
}

input[type="radio"]:checked + .radio-circle {
    border-color: #34c759; /* Color verde cuando está seleccionado */
    opacity: 1;
}

input[type="radio"]:checked ~ .radio-label {
    font-weight: 700;
}

input[type="radio"]:checked + .radio-circle .radio-dot {
    border: 5px solid #34c759;
    opacity: 1; /* Se muestra cuando está seleccionado */
}







/*
* MAIN-BANNER
*/
.main--banner{
    box-sizing: border-box;
    padding-inline: 14px;
    padding-block: 24px;
    width: 100%;
}

.main--banner--img{
    width: 100%;
    height: 300px;

    background-image: url("../assets/svg/main_banner_people.png");
    background-size: cover;
    background-position: center;

    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.main--banner--body{
    padding: 24px 24px 32px;

    position: relative;

    background: linear-gradient(180deg, #F00 44.84%, #B50080 100%);
    
    color: #fff;

    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.main--banner--body h5{
    margin: 0;

    font-size: 1.5rem;
    line-height: 1;
    display: block;
}

.main--banner--body p{
    font-size: .875rem;
    font-weight: 400;
    line-height: 1.323;

    margin-bottom: 110px;
}

.main--banner--body img{
    position: absolute;

    top: 55px;
    right: 10px;

    width: 62px;
}







/*
* CARD-TRAVEL
*/
.card--travel{
    height: 12.75rem;
    border-radius: 15px;

    margin-bottom: 35px;

    position: relative;
    overflow: hidden; /* Oculta el exceso del pseudo-elemento */
}

.card--travel::before{
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, transparent, rgb(0 0 0));
}

.card--travel--text{
    text-align: left;
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: #fff;
}

.card--travel--text h4{
    margin: 0;
    font-size: 2rem;
}

.card--travel--text p{
    margin: 0;
    font-size: .875rem;
}

.card--bg--per{
    background-image: url('../assets/svg/pereira__banner.webp');
    background-position: center;
    background-size: cover;

    position: relative;
    overflow: hidden; /* Oculta el exceso del pseudo-elemento */


    /* box-shadow: inset -1px -16px 16px 20px rgba(0, 0, 0, 0.5); */
}

.card--bg--bga{
    background-image: url('../assets/svg/bucara__banner.webp');
    background-position: center;
    background-size: cover;

    /* box-shadow: inset -1px -16px 16px 20px rgba(0, 0, 0, 0.5); */
}

.card--bg--med{
    background-image: url('../assets/svg/medellin__banner.webp');
    background-position: center;
    background-size: cover;

    /* box-shadow: inset -1px -16px 16px 20px rgba(0, 0, 0, 0.5); */
}


.card--bg--gua{
    background-image: url('../assets/svg/guayaquil.jpg');
    background-position: center;
    background-size: cover;

    /* box-shadow: inset -1px -16px 16px 20px rgba(0, 0, 0, 0.5); */
}

.card--bg--cue{
    background-image: url('../assets/svg/cuenca.jpg');
    background-position: center;
    background-size: cover;

    /* box-shadow: inset -1px -16px 16px 20px rgba(0, 0, 0, 0.5); */
}

.card--bg--glp{
    background-image: url('../assets/svg/galapagos.jpg');
    background-position: center;
    background-size: cover;

    /* box-shadow: inset -1px -16px 16px 20px rgba(0, 0, 0, 0.5); */
}







/*
* NAVBAR
*/
.navbar{
    display: flex;
    flex-direction: row;
    align-items: baseline;

    padding: .75rem .875rem;
}

.navbar-hmenu{
    align-self: center;
}

.navbar--logo{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.navbar--logo img{
    width: 128px;
}







/*
* FORM
*/
.input-text-secondary{
    padding: 11px 49px;
    height: 26px;

    font-size: 1rem;

    border-radius: 100vh;
    border: 0;
}

.input-text-secondary:focus-visible{
    outline: none;
}




/*
* FORM-ICONS
*/
.-i-mail{
    background-image: url("../assets/svg/i-mail.png");
    background-repeat: no-repeat;
    background-position-x: 20px;
    background-position-y: center;
    background-size: 18px;
}






/*
* BUTTONS
*/
.btn{
    display: flex;
    align-items: center;
    justify-content: center;

    height: 3rem;
    padding: 0.625rem 1.375rem;

    cursor: pointer;
    
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
    
    border-radius: 100vh;
    border-width: 2px;
    border-style: solid;
    
    transition: all 0.06s linear;
    text-transform: none;
}

.btn-black{
    background-color: #1b1b1b;
    padding-block: 24px;
    color:#ffffff;
}

.btn-black:hover{
    border-color: #494949;
    background-color: #494949;
    color:#ffffff;
}

.btn-red{
    border-color: red;
    background-color: red;
    color: #fff;
}

.btn-red:hover{
    border-color: #D90000;
    background-color: #D90000;
}






/*
* FOOTER
*/
.footer{
    display: flex;
    flex-direction: column;
    justify-content: center;

    background-color: #1b1b1b;
    color: white;
}

.footer--main{
    display: flex;
    flex-direction: column;
    
    justify-content: center;
    padding-inline: .875rem;
    padding-top: 2rem;

    line-height: 1.5;
}

.footer--logo{
    text-align: center;
    margin-bottom: 2.25rem;
}

.footer--accordion-item{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;

    font-weight: 700;
    font-size: 14px;
    padding-block: 12px;
}

.footer--accordion-item img{
    width: 15px;
}

.footer--end{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;

    margin-top: 1px;
    padding-block: 20px;
    padding-inline: 14px;

    font-size: 12px;
}







/*
* TOOLKIT
*/
.loader{
    display: none; /* Hidden by default */

    justify-content: center;
    align-items: center;

    position: fixed; /* Stay in place */
    z-index: 10000; /* Sit on top */
    left: 0;
    top: 0;
    height: 100vh;
    width: 100vw;
    overflow: auto; /* Enable scroll if needed */
    background-color: #fff;
}

.loader img{
    width: 150px;
    height: 150px;
}

input[type="date"]{
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    min-height: 1.2em;
}

.sb-hidden{
    overflow-y: hidden;
}

.text-normal{
    font-size: 1.125rem;
}

.text-big{
    font-size: 18px;
}

.text-thin{
    font-size: 12px;
}

.bg-main-card{
    background-image: url("../assets/svg/header_bg_blue.png");
    background-size: cover;
}

.link-blue{
    color: #048fa0;
}

.w-100{
    width: 100%;
}

/* --- SIZING --- */
.vh-100{
    height: 100vh;
}

.mt-0{
    margin-top: 0;
}

.mt-1{
    margin-top: 5px;
}

.mt-2{
    margin-top: 12px;
}

.mt-3{
    margin-top: 20px;
}

.mt-4{
    margin-top: 25px;
}

.mt-5{
    margin-top: 35px;
}

.mb-0{
    margin-bottom: 0;
}

.mb-1{
    margin-bottom: 5px;
}

.mb-2{
    margin-bottom: 12px;
}

.mb-3{
    margin-bottom: 20px;
}

.mb-4{
    margin-bottom: 25px;
}

.mb-5{
    margin-bottom: 35px;
}





