.loader{
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 10000;
}

.loader__gif{
    width: 130px;
    height: 130px;
}

/* POPUP */

.popup{
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    background-color: #000;
    z-index: 9999;
}

.popup__header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 24px 16px 16px;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}

.popup__content{
    width: 100%;
    height: 100%;
    padding: 24px 16px;
    border-radius: 20px 20px 0 0;
    color: #1b1b1b;
    background-color: #fff;
}

.popup__content-input{
    position: relative;
    border: 1px solid #d9d9d9;
    border-bottom: 2px solid #23c847;
    border-radius: 4px;
}

.popup__input{
    width: 100%;
    height: 52px;
    padding-left: 48px;
    padding-top: 6px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    outline: 0;
}

.popup__input-passengers{
    padding-top: 0;
    padding-bottom: 2px;
}

.popup__content-input .bx{
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    font-size: 20px;
}

.popup__placeholder{
    position: absolute;
    top: 7px;
    left: 48px;
    font-size: 11px;
    font-weight: 400;
}

.popup__passengers{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}

.popup__passengers-el{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    color: #1b1b1b;
}

.popup__passengers-ttl{
    font-size: 18px;
}

.popup__passengers-sub{
    font-size: 12px;
    color: #5a5a5a;
}

.popup__passengers-el div:last-child{
    display: flex;
    align-items: center;
    justify-content: center;
}

.passengers__btn{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid;
}

.passengers__btn .bx{
    font-size: 16px;
    color: #000;
    font-weight: bolder;
}

.passengers__amount{
    width: 44px;
    font-size: 25px;
    font-weight: 600;
    text-align: center;
    padding-bottom: 4px;
}

.popup__btn{
    width: 100%;
    height: 52px;
    margin-top: 20px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    background-color: #000;
    border: none;
}

/* WRAPPER */

.wrapper{
    background-color: #fafafa;
}

/* HEADER */

.header{
    padding: 12px 14px;
}

.header__content{
    display: flex;
    align-items: center;
}

.header__menu{
    flex: 0 0 auto;
    font-size: 22px;
}

.header__logo{
    flex: 1 1 100%;
    height: 30px;
}

/* MAIN */

/* |- BANNER -| */

.banner{
    position: relative;
}

.banner__bg{
    position: absolute;
    top: 0;
    left: 0;
    height: 253px;
}

.banner__bg img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* |- FORM -| */

.form{
    position: relative;
    padding: 24px 14px;
}

.form__content{
    width: 100%;
    padding-top: 16px;
    border-radius: 16px;
    background-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 .125rem .75rem rgba(27, 27, 27, 0.15);
    overflow: hidden;
}

.form__flight-op{
    width: max-content;
    margin: 0 auto;
    padding: 10px 18px;
    border-radius: 20px;
    background-color: #fff;
}

.form__flight-op.shadow{
    box-shadow: 0 .125rem .75rem rgba(27, 27, 27, 0.15);
}

.flight__content{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flight__content{
    display: flex;
    gap: calc(0.25rem* 4) !important;
}

.flight__op{
    display: flex;
    align-items: center;
}

.flight__op label{
    height: 20px;
}

.flight__txt{
    font-size: 14px;
}

.flight__op .input__checkbox[type="checkbox"],
.flight__op .popup__checkbox[type="checkbox"] {
    display: none;
}

.custom-checkbox {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 4px;
    border: 1px solid #5c5c5c;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
}

.custom-checkbox::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
    opacity: 0;
    z-index: 1;
}

.custom-checkbox::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #23c847;
    border-radius: 50%;
    opacity: 0;
}

.input__checkbox[type="checkbox"]:checked + .custom-checkbox::before,
.input__checkbox[type="checkbox"]:checked + .custom-checkbox::after,
.popup__checkbox[type="checkbox"]:checked + .custom-checkbox::before,
.popup__checkbox[type="checkbox"]:checked + .custom-checkbox::after {
    opacity: 1;
}

.input__checkbox[type="checkbox"]:checked + .custom-checkbox,
.popup__checkbox[type="checkbox"]:checked + .custom-checkbox {
    border-color: #23c847;
}

.form__box{
    width: 100%;
    height: 100%;
    margin-top: 16px;
    border-radius: 16px;
    background-color: #fff;
}

.form__t{
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 24px;
}

.form__t-popup{
    padding: 20px 8px;
}

.form__el-gap{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form__content-inputs{
    position: relative;
    display: flex;
    border-radius: 4px;
    border: 1px solid #d9d9d9;
}

.form__content-el{
    position: relative;
    flex: 1 1 100%;
    display: flex;
    align-items: center;
    height: 52px;
    padding-left: 48px;
    cursor: pointer;
}

.form__content-inputs .form__content-el:last-child::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 32px;
    border-left: 1px solid #d9d9d9;
}

.form__content-el .bx{
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    font-size: 20px;
}

.form__sub{
    position: absolute;
    top: 50%;
    left: 48px;
    transform: translateY(-50%);
    font-size: 16px;
}

.form__ttl.active ~ .form__sub,
.form__input:not(:placeholder-shown) ~ .form__sub{
    top: 7px;
    transform: translateY(0);
    font-size: 11px;
}

.form__ttl{
    width: 100%;
    margin-top: 8px;
    font-size: 16px;
    color: #1b1b1b;
    font-weight: 600;
}

.form__input{
    width: 100%;
    height: 100%;
    border: none;
}

.form__input--popup{
    padding-top: 8px;
    font-weight: 600;
    font-size: 15px;
}

.form__input--weight{
    font-size: 15px;
    font-weight: 600;
}

.form__search{
    width: 100%;
    height: 52px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    background-color: #1b1b1b;
    border: none;
}

.form__b{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding-bottom: 20px;
}

.form__b-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 108px;
    height: 40px;
    border-radius: 32px;
    font-size: 14px;
    font-weight: 600;
    color: #1b1b1b;
    border: none;
    background-color: transparent;
    box-shadow: 0 .125rem 0.1rem rgba(27, 27, 27, .15);
    cursor: pointer;
}

.trash {
    padding: 24px 14px;
    color: #1b1b1b;
}

.box {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.box__img{
    width: 100%;
}

.box__content{
    position: relative;
    padding: 24px;
    color: #fff;
    background-color: red;
}

.box__content::after{
    content: "";
    position: absolute;
    top: 30px;
    right: 18px;
    width: 54px;
    height: 54px;
    background: url(../img/index/icon-avianca.png);
    background-position: center;
    background-repeat: no-repeat;
}

.box__ttl{
    margin-bottom: 10px;
    font-size: 32px;
    line-height: 1;
    font-weight: 600;
}

.box__ttl small{
    font-size: 24px;
}

.box__txt{
    line-height: 1.323;
    font-size: 14px;
}

.box__btns{
    margin-top: 40px;
    text-align: right;
    width: 100%;
}

.box__btn{
    width: 98px;
    height: 33px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    background-color: #fff;
}

.trash__ttl{
    margin-top: 80px;
    font-size: 22px;
    text-align: center;
}

.carousel{
    display: flex;
    gap: 20px;
    overflow: hidden;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 40px 0;
}

.carousel__el{
    position: relative;
    min-width: 368px;
    padding: 21px 25px 24px 102px;
    border-radius: 14px;
    background-color: #fff;
    box-shadow: 0 0 1.25rem rgba(27, 27, 27, .3);
}

.carousel--big .carousel__el{
    height: 172px;
    overflow: hidden;
    padding-left: 122px;
}

.carousel__img{
    position: absolute;
    top: 30px;
    left: 20px;
}

.carousel--big .carousel__img{
    top: 0;
    left: 0;
    width: 100px;
    height: 100%;
    overflow: hidden;
}

.carousel__img img{
    width: 60px;
    height: 60px;
}

.carousel--big .carousel__img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel__ttl{
    font-size: 20px;
}

.carousel__txt{
    line-height: 1.2;
    margin: 8px 10px 0 0;
}

.carousel__link{
    text-decoration: underline;
    color: #0190A0;
    cursor: pointer;
}

.box--cards{
    display: flex;
    gap: 40px;
    flex-direction: column;
    margin-top: 40px;
}

.card{
    width: 100%;
    min-height: 187px;
    padding: 1.1rem;
    border-radius: 20px;
    background: url(../img/index/bannerav_lmplus.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom right;
    color: #fff;
}

.card:nth-child(2){
    background: url(../img/index/thumbnail_cob_generica.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom right;
    color: #1b1b1b;
}

.card:nth-child(3){
    background: url(../img/index/promo-card-blue-card-lifemiles.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom right;
}

.card__data{
    margin-bottom: 24px;
}

.card__ttl{
    font-size: 23px;
}

.card__sub{
    font-size: 17px;
}

.card__ttl-small{
    font-size: 20px;
}

.card__btn{
    width: 142px;
    height: 43px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 600;
    background-color: #fff;
    border: none;
}

.card:nth-child(2) .card__btn{
    background-color: #000;
    color: #fff;
}

/* FOOTER */

.footer{
    padding-top: 32px;
    color: #fff;
    background-color: #1b1b1b;
}

/* |- FOOTER__CONTENT -|*/

.footer__content{
    padding: 0 14px;
    text-align: center;
}

.footer__logo{
    display: flex;
    justify-content: center;
    margin-bottom: 36px;
}

.footer__logo img{
    width: 170px;
}

.footer__ttl{
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 600;
}

.footer__sub{
    margin-bottom: 24px;
    font-size: 16px;
    font-weight: 400;
}

.footer__email-content{
    position: relative;
    border-radius: 50px;
    overflow: hidden;
}

.footer__email-content .bx{
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    font-size: 20px;
    color: #1b1b1b;
}

.footer__email{
    width: 100%;
    height: 52px;
    padding: 0 160px 0 44px;
    border: none;
}

.footer__email-btn{
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    height: 40px;
    padding: 0 18px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background-color: #ff0000;
    border: none;
}

.footer__txt{
    margin: 16px 0;
    font-size: 12px;
}

.footer__txt a{
    color: #fff;
}

.footer__txt--big{
    margin-bottom: 24px;
    font-size: 18px;
}

.footer__connect{
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__connect-el{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin: 16px 12px 0;
    border-radius: 50%;
    background-color: #fff; 
}

.footer__connect-el .bx{
    font-size: 22px;
    color: #1b1b1b;
}

.footer__copyright{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 14px 23px;
    margin-top: 30px;
    font-size: 12px;
    border-top: 1px solid #fff;
}

.footer__copyright div{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.footer__copyright span{
    margin-bottom: 7px;
}

.footer__copyright img{
    width: 72px;
}