@import url('https://vuela.aeromexico.com/fonts/stylesheet.css');

*{
    box-sizing: border-box;
}

:root{
    --amBrandBlue: #020C41;
    --amMediumBlue: #004990;
    --amDarkGray: #666666;
    --amMedGray: #999999;
    --amLighterGray: #E5E5E5;
    --amLightBlue: #035CF7;
    --activeBgImgArea: #b8d4fe;
    --activeBorderImgArea: #618ac9;
    --amRed: #E91B2F;
    --amFontMedium: 'NeueHaasUnicaPro-Medium', sans-serif;
    --amFontRegular: 'NeueHaasUnicaPro-Regular', sans-serif;
    --amFontLight: 'NeueHaasUnicaPro-Light', sans-serif;
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: 'NeueHaasUnicaPro-Regular';
    overflow-x: hidden;
}

button{
    outline: none !important;
}

p{
    margin: 0;
}

.strong{
    font-family: var(--amFontMedium);
}

.custom-scrollBar::-webkit-scrollbar{
	width: 3px;
	background-color: #ffffff;
}
.custom-scrollBar::-webkit-scrollbar-track{
    border-radius: 10px;
	background-color: var(--amLighterGray);    
}
.custom-scrollBar::-webkit-scrollbar-thumb{
	background-color: var(--amMedGray);
    width: 3px;
    border-radius: 10px;
}

.noneSelectArrow{
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    background-image: url('../assets/arrow-down-select.svg');
    background-repeat: no-repeat;
    background-position: right 2px top 50%;
    padding-right: 38px;
}

/* #region hero */
.bg-hero{
    margin-top: 60px;
    background-image: url('../assets/bg-hero1.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 432px;
    position: relative;
    overflow: hidden;    
}

@media screen and  (max-width:1024px){
    .bg-hero{
        height: 384px;
    }
    
}

@media screen and  (max-width:680px){
    .bg-hero{
        height: 460px;
    }
    
}

@media screen and  (max-width:540px){
    .bg-hero{
        background-image: url('../assets/bg-hero-resp.png');
        background-position: center;
        height: 460px;
    }
    
}

.bgHero-cloud1{
    position: absolute;
    bottom: -194px;
    right: -200px;
}

@media screen and (max-width:1024px) {
    .bgHero-cloud1 {
        bottom: -113px;
        right: -140px;
        width: 560px;
    }
    
}

@media screen and (max-width:680px) {
    .bgHero-cloud1 {
        bottom: 40px;
        right: inherit;
        width: 240px;
    }
    
}

@media screen and (max-width:540px) {
    .bgHero-cloud1{
        top: auto;
        bottom: 68px;
        left: -30px;
        width: 174px;
    }   
}

.bgHero-cloud2{
    position: absolute;
    top: 140px;
    left: -300px;
}
@media screen and (max-width:1280px) {
    .bgHero-cloud2 {
        top: 160px;
        left: -200px;
        width: 400px;
    }
    
}
@media screen and (max-width:1024px) {
    .bgHero-cloud2 {
        top: 200px;
        left: -200px;
        width: 300px;
    }
    
}

@media screen and (max-width:768px) {
    .bgHero-cloud2 {
        top: 200px;
        left: -200px;
        width: 270px;
    }    
}

@media screen and (max-width:680px) {
    .bgHero-cloud2 {
        top: 160px;
        left: inherit;
        right: -30px;
        width: 200px;
    }    
}

@media screen and (max-width:540px) {
    .bgHero-cloud2 {
        width: 130px;
    }    
}


.bgHero-airplane{
    position: absolute;
    right: 200px;
    top: 42px;
}

@media screen and (max-width:1400px) {
    .bgHero-airplane{
        position: absolute;
        right: 60px;
        width: 545px;
    }    
}

@media screen and (max-width:1280px) {
    .bgHero-airplane{
        position: absolute;
        right: 0px;
        width: 545px;
    }
    
}

@media screen and (max-width:1024px) {
    .bgHero-airplane{
        position: absolute;
        right: 20px;
        width: 520px;
    }
    
}

@media screen and (max-width:768px) {
    .bgHero-airplane{
        top: 54px;
        right: -40px;
        width: 438px;
    }    
}

@media screen and (max-width:680px) {
    .bgHero-airplane{
        top: auto;
        bottom: 0;
        right: 0px;
        width: 260px;
    }   
}

@media screen and (max-width:540px) {
    .bgHero-airplane{
        top: auto;
        bottom: 32px;
        right: 0px;
        width: 260px;
    }   
}


.ctaBar{
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    mix-blend-mode: normal;
}

.ctaBar-wrapper{
    padding: 18px 0;
    max-width: 734px;
    margin: 0 auto;
    overflow: hidden;    
}

@media screen and (max-width:768px) {
    .ctaBar-wrapper{
        margin: 0 64px;
    }    
}
@media screen and (max-width:680px) {
    .ctaBar-wrapper{
        margin: 0 32px;
    }    
}
@media screen and (max-width:440px) {
    .ctaBar-wrapper{
        margin: 0 20px;
    }    
}


.ctaBar-slideContent{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ctaBar-icontextContainer{
    display: flex;
}

.ctaBar-iconContainer{
    margin-right: 20px;
    background-color: #E6F2F9;
    width: 47px;
    height: 47px;
    border-radius: 50%;

}

@media screen and (max-width:540px) {
    .ctaBar-iconContainer{
        display: none;
    }    
}

.ctaBar-iconContainer img{
    vertical-align: middle;

}

.ctaBar-text-container{
    color: #ffffff;
    padding-right: 20px;
}

.ctaBar-preHeader{
    font-family: var(--amFontRegular);
    font-size: 12px;
    line-height: 18px;
}

.ctaBar-text{
    font-family: var(--amFontLight);
    font-size: 20px;
    line-height: 26px;
}

@media screen and (max-width:540px) {
    .ctaBar-text{
        font-size: 14px;
        line-height: 20px;
    }      
}

.ctaBar-ctaButton{
    padding: 13px 31px;
    color: #ffffff;
    background-color: var(--amRed);
    border: none;
    border-radius: 35px;
    font-size: 12px;
    line-height: 14px;
    font-family: var(--amFontRegular);
    text-transform: uppercase;
    cursor: pointer;
}

@media screen and (max-width:540px) {
    .ctaBar-ctaButton{
        padding: 13px 18px;
        min-width: 97px;
    }      
}

.ctaBar-ctaButton:hover{
    background-color: #D61527;
}

.ctaBar-ctaButton.buttonWhite{
    color: var(--amLightBlue);
    background-color: #ffffff;
}
.ctaBar-ctaButton.buttonWhite:hover{
    background-color: var(--amLightBlue);
    color: #ffffff;
}
#swiper-ctaBar-pagination{
    transform: translateY(-3px);
    height: 14px;

}
#swiper-ctaBar-pagination.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet:first-of-type {
    margin-left: 68px;
}
@media screen and (max-width:540px) {
    #swiper-ctaBar-pagination.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet:first-of-type {
        margin-left: 0;
    }    
}
#swiper-ctaBar-pagination .swiper-pagination-bullet{
    background-color: transparent;
    border: 1px solid #ffffff;
}

#swiper-ctaBar-pagination .swiper-pagination-bullet-active{
    background-color: #ffffff;
    border: 1px solid #ffffff;
}
.heroContent-text-wrapper{
    margin: 0 auto;
    max-width: 734px;
    margin-top: 68px;
    position: relative;
}
@media screen and (max-width:1024px) {
    .heroContent-text-wrapper{
        margin-top: 51px;
    }    
}
@media screen and (max-width:768px) {
    .heroContent-text-wrapper{
        max-width: 637px;
        margin-top: 51px;
    }    
}
@media screen and (max-width:680px) {
    .heroContent-text-wrapper{
        margin: 0 32px;
        margin-top: 32px;
    }    
}
@media screen and (max-width:440px) {
    .heroContent-text-wrapper{
        margin: 0 20px;
        margin-top: 27px;
    }    
}

.heroContent-text-container{   
    color: #ffffff;
    max-width: 540px;
}

@media screen and (max-width:1024px) {
    .heroContent-text-container{   
        max-width: 445px;
    }    
}
@media screen and (max-width:1024px) {
    .heroContent-text-container{   
        max-width: 445px;
    }    
}

@media screen and (max-width:680px) {
    .heroContent-text-container{   
        text-align: center;
        margin: 0 auto;
    }    
}

@media screen and (max-width:540px) {
    .heroContent-text-container{   
        text-align: center;
        max-width: 269px;
        margin: 0 auto;
    }    
}

.heroContent-preHeader{
    font-family: var(--amFontRegular);
    font-size: 14px;
    line-height: 14px;
    padding-bottom: 9px;
}

@media screen and (max-width:680px) {
    .heroContent-preHeader{
        font-size: 12px;
        line-height: 18px;
    }    
}
.heroContent-header{
    font-size: 52px;
    line-height: 56px;
    font-family: var(--amFontLight);
    padding-bottom: 9px ;
}

@media screen and (max-width:1024px) {
    .heroContent-header{
        font-size: 42px;
        line-height: 48px;
    }    
}
@media screen and (max-width:680px) {
    .heroContent-header{
        font-size: 24px;
        line-height: 30px;
    }    
}
.heroContent-content{
    font-size: 20px;
    line-height: 26px;
    font-family: var(--amFontLight);
    max-width: 508px;
    
}

@media screen and (max-width:1024px) {
    .heroContent-content{
        font-size: 16px;
        line-height: 22px;
        max-width: 406px;
    }    
}
@media screen and (max-width:680px) {
    .heroContent-content{
        font-size: 14px;
        line-height: 20px;
    }    
}


.heroContent-btnContent-container{
    margin-top: 30px;
}

.heroContent-btnContent{
    border: none;
    padding: 20px 41px 20px 35px;
    text-transform: uppercase;
    background-color: var(--amMediumBlue);
    color: #ffffff;
    border-radius: 35px;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-family: var(--amFontRegular);
    font-size: 14px;
    line-height: 14px;
}

@media screen and (max-width:680px) {
    .heroContent-btnContent{
        margin: 0 auto;
    }
    
}

.heroContent-btnContent-icon{
    padding-right: 10px;
}

.heroContent-btnContent-icon img{
    vertical-align: middle;
    width: 20px;
}


/* #endregion */

/* #region Form */

.formSection{
    background: #F7F7F7;
    padding-bottom: 90px;
    border-bottom: 1px solid #E5E5E5;
}

.formSection.imagePart-active{
    height: 1000px;
}


@media screen and (max-width:440px){
    .formSection.imagePart-active{
        height: 700px;
    }   
}

@media screen and (max-width:360px){
    .formSection.imagePart-active{
        height: 640px;
    }   
}

.sectionFormUsers-wrapper{
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    margin-top: -140px;
    overflow: hidden;
}

@media screen and (max-width:1024px) {
    .sectionFormUsers-wrapper{
        margin-top: -66px;
    }        
}

@media screen and (max-width:768px) {
    .sectionFormUsers-wrapper{
        max-width: 643px;
        
    }        
}

@media screen and (max-width:680px) {
    .sectionFormUsers-wrapper{
        margin: 0 32px;
        margin-top: -66px;        
    }        
}

@media screen and (max-width:440px) {
    .sectionFormUsers-wrapper{
        margin: 0 20px;
        margin-top: -90px;      
    }        
}


.sectionFormUsers-element{
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    transition: left 1s ease;
}

.sectionFormUsers-element.elementForm{
    left: 0;
}

.sectionFormUsers-element.elementForm.elementForm-disabled{
    left: -105%;
}

.sectionFormUsers-element.elementoImage{
    position: absolute;
    left: 100%;
}

.sectionFormUsers-element.elementoImage.elementImage-active{
    left: 0;
}

.sectionFormUsers-formBackdrop{
    background-color: rgba(255, 255, 255, 0.9);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 100;
    border-radius: 12px;
    visibility: hidden;
    opacity: 0;
    text-align: center;
    padding: 20px;

    transition: visibility .3s ease, opacity .3s ease;
}

.sectionFormUsers-formBackdrop.sectionFormUsers-formBackdrop-active{
    visibility: visible;
    opacity: 1;
}

.sectionFormUsers-formBackdrop-title{
    color: var(--amLightBlue);
    font-family: var(--amFontMedium);
    font-size: 18px;
    line-height: 24px;
    padding-bottom: 3px;
}

@media screen and (max-width:440px) {
    .sectionFormUsers-formBackdrop-title{
        font-size: 14px;
        line-height: 20px;
    }    
}

.sectionFormUsers-formBackdrop-subtitle{
    color: var(--amBrandBlue);
    font-size: 28px;
    line-height: 28px;
    padding-bottom: 12px;
}

@media screen and (max-width:440px) {
    .sectionFormUsers-formBackdrop-subtitle{
        font-size: 18px;
        line-height: 24px;
    }    
}


.sectionFormUsers-formBackdrop-image{
    width: 100%;
    max-width: 180px;
}

@media screen and (max-width:440px) {
    .sectionFormUsers-formBackdrop-image{
        max-width: 140px;
    }    
}

.finalImageCreated-wrapper{
    background-color: #ffffff;
    border: 1px solid #E5E5E5;
    box-shadow: 0px -5px 10px rgb(0 0 0 / 5%);
    border-radius: 12px;
    max-width: 736px;
    margin: 0 auto;    
    margin-bottom: 20px;
}

.finalImageCreated-containerPad{
    padding: 42px 31px 35px 31px;
}

@media screen and (max-width:768px) {
    .finalImageCreated-containerPad{
        padding: 42px 38px;
    }        
}

@media screen and (max-width:680px) {
    .finalImageCreated-containerPad{
        padding: 25px 20px;
    }        
}

.finalImageCreated-legend{
    display: flex;
    padding-bottom: 35px;
}

@media screen and (max-width:540px){
    .finalImageCreated-legend{
        flex-direction: column;
        padding-bottom: 20px;
    }
}


@media screen and (max-width:680px) {
    .finalImageCreated-containerPad{
        padding: 25px 20px;
    }        
}

.finalImageCreated-legendIcon{
    width: 73px;
}

@media screen and (max-width:540px){
    .finalImageCreated-legendIcon{
        display: flex;
        align-items: center;
        padding-bottom: 10px;
        width: 100%;
    }
}


.finalImageCreated-legendIcon img{
    width: 73px;
}

@media screen and (max-width:540px){
    .finalImageCreated-legendIcon img{
        width: 40px;
    }
    
}

.finalImageCreated-legendPreheader.responsive{
    display: none;
}

@media screen and (max-width:540px){
    .finalImageCreated-legendPreheader.responsive{
        display: block;
        margin-left: 10px;
    
    }
}

.finalImageCreated-legendHeader-container{
    display: flex;
    flex-direction: column;
    margin-left: 20px;
    justify-content: space-between;
    max-width: 519px;
}

@media screen and (max-width:540px){
    .finalImageCreated-legendHeader-container{
        margin-left: 0;
    }
}

.finalImageCreated-legendPreheader{
    font-size: 14px;
    line-height: 14px;
    color: #48A83E;
    font-family: var(--amFontMedium);
}

@media screen and (max-width:540px){
    .finalImageCreated-legendPreheader{
        display: none;
    }
}

.finalImageCreated-legendHeader{
    font-size: 20px;
    line-height: 26px;
    font-family: var(--amFontRegular);
    color: var(--amBrandBlue);
    letter-spacing: -0.01rem;
}

@media screen and (max-width:540px){
    .finalImageCreated-legendHeader{
        font-size: 14px;
        line-height: 20px;
    }
}

.finalImageCreated-finalImage-container{
    background: #FFFFFF;
    margin: 0 auto;
    max-width: 400px;
    width: 100%;
    margin-bottom: 30px;
}

.finalImageCreated-finalImage-container img{
    width: 100%;
}

.finalImageCreated-downloadButton{
    background-color: var(--amRed);
    border-radius: 35px;
    padding: 20px 32px;
    text-transform: uppercase;
    text-decoration: none;
    width: 100%;
    max-width: 310px;
    margin: 0 auto;
    border: none;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 14px;
    cursor: pointer;
}

@media screen and (max-width:440px){
    .finalImageCreated-downloadButton{
        padding: 16px;
    }
    
}

.finalImageCreated-downloadButton:hover{
    background-color: #D61527;
    color: #ffffff;
    text-decoration: none;
}

.finalImageCreated-downloadButton-icon{
    padding-right: 10px;
}

.finalImageCreated-redSocial{
    background-color: #F2F8FC;
    padding: 24px 31px;
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width:540px) {
    .finalImageCreated-redSocial{
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100vw;
        padding: 20px;
        flex-direction: column;
        align-items: center;
        border-radius: 20px 20px 0 0;
        box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.05);
        z-index: 100;
        transform: translateY(100%);
        transition: bottom .6s ease;
    }
    
    .finalImageCreated-redSocial.finalImageCreated-redSocial-active{
        transform: translateY(0%);        
    }
}

.finalImageCreated-redSocial-title-container{
    max-width: 516px;
}

@media screen and  (max-width:540px){
    .finalImageCreated-redSocial-title-container{
        text-align: center;
        max-width: 300px;
    }    
}

.finalImageCreated-redSocial-title{
    font-size: 18px;
    line-height: 24px;
    color: var(--amBrandBlue);
}

#finalImageCreated-redSocial-titleName{
    text-transform: capitalize;
}

@media screen and  (max-width:540px){
    .finalImageCreated-redSocial-title{
        font-size: 14px;
        line-height: 20px;
        padding-bottom: 14px;
    }    
}

.finalImageCreated-redSocial-titleHashtag{
    color: var(--amLightBlue);
}

.finalImageCreated-redSocial-icons{
    display: flex;
    align-items: flex-end;
}

.finalImageCreated-redSocial-icons-container{
    width: 130px;
    display: flex;
    justify-content: space-between;
}

.finalImageCreated-redSocial-iconImage{
    width: 26px;
}

.formUsers{
    position: relative;
    left: 0;
    max-width: 736px;
    margin: 0 auto;
    margin-bottom: 20px;
    background-color: #ffffff;
    border: 1px solid #E5E5E5;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.05);
    border-radius: 12px;    
}


.formUsers-fieldset{
    border: none;
    padding: 42px 64px;
    margin: 0;
}

@media screen and (max-width:768px) {
    .formUsers-fieldset{
        padding: 42px 38px;
    }        
}

@media screen and (max-width:680px) {
    .formUsers-fieldset{
        padding: 25px 20px;
    }        
}

.formUsers-legend{
    display: flex;
    padding-bottom: 50px;
}

@media screen and (max-width:540px){
    .formUsers-legend{
        flex-direction: column;
        padding-bottom: 40px;
    }
}

.formUsers-legendIcon{
    width: 73px;
}


@media screen and (max-width:540px){
    .formUsers-legendIcon{
        display: flex;
        align-items: center;
        padding-bottom: 10px;
        width: 100%;
    }
}

.formUsers-legendIcon img{
    width: 73px;
}

@media screen and (max-width:540px){
    .formUsers-legendIcon img{
        width: 40px;
    }
    
}

.formUsers-legendPreheader.responsive{
    display: none;
}

@media screen and (max-width:540px){
    .formUsers-legendPreheader.responsive{
        display: block;
        margin-left: 10px;
    
    }
}

.formUsers-legendHeader-container{
    display: flex;
    flex-direction: column;
    margin-left: 20px;
    justify-content: space-between;
    max-width: 515px;
}

@media screen and (max-width:540px){
    .formUsers-legendHeader-container{
        margin-left: 0;
    }
}


.formUsers-legendPreheader{
    font-size: 14px;
    line-height: 14px;
    color: var(--amLightBlue);
    font-family: var(--amFontMedium);
}

@media screen and (max-width:540px){
    .formUsers-legendPreheader{
        display: none;
    }
}

.formUsers-legendHeader{
    font-size: 20px;
    line-height: 26px;
    font-family: var(--amFontRegular);
    color: var(--amBrandBlue);
}

@media screen and (max-width:540px){
    .formUsers-legendHeader{
        font-size: 14px;
        line-height: 20px;
    }
}

.formUsers-rowInputs{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 32px;    
}

@media screen and (max-width:680px){
    .formUsers-rowInputs{
        grid-template-columns: repeat(1, 1fr);
        column-gap: normal;    
    }
    
}


.formUsers-groupInput{
    position: relative;
    padding-bottom: 24px;
}

.formUsers-labelInput{
    position: absolute;
    transform: translateY(-8px) translateX(10px);
    font-size: 12px;
    line-height: 1;
    background-color: #ffffff;
    padding: 0 3px;
    margin: 0;
    z-index: 10;
    color: var(--amBrandBlue);
}

.formUsers-labelInput.formUsers-labelInputValid{
    color: #48A83E;
}
.formUsers-labelInput.formUsers-labelInputInvalid{
    color: #E91B2F;
}

.formUsers-input{
    padding: 13px 15px;
    width: 100%;
    border: 1px solid var(--amLighterGray);
    border-radius: 3px;
    font-size: 14px;
    color: var(--amBrandBlue);
}

.formUsers-input.formUsers-inputValid{
    border: 1px solid #48A83E;
}
.formUsers-input.formUsers-inputInvalid{
    border: 1px solid #E91B2F;
}

.formUsers-input.iconValid{
    background-image: url('../assets/icon-valid-input.svg');
    background-repeat: no-repeat;
    background-position: right 13px top -15px;
    transition: background-position .4s ease;
}

.formUsers-input.iconValid.iconValid-active{
    background-position: right 13px top 50%;
}

.formUsers-input.formUsers-inputSelect{
    background-image: url('../assets/arrow-down-select.svg');
    background-position: right 17px top 50%;
    background-repeat: no-repeat;

}
.formUsers-input::placeholder{
    font-size: 14px;
    color: #999999;
}

.formUsers-input:focus-visible{
    border: 1px solid #007CC2;
    border-radius: 3px;
    outline: none;
}

.formUsers-input-active{
    border: 1px solid #007CC2;
    border-radius: 3px;
    outline: none;
}



.formUsers-input-errorWarning-container{
    overflow: hidden;
}

.formUsers-input-errorWarning{
    font-size: 12px;
    line-height: 12px;
    color: var(--amRed);
    margin-top: -14px;
    display: block;
    transition: margin-top .4s ease, padding-bottom .4s ease;
}

@media screen and (max-width:540px) {
    .formUsers-input-errorWarning{
        margin-top: -24px;
    }
    
    
}

.formUsers-input-errorWarning.input-errorWarning-active{
    margin-top: 11px;
    padding-bottom: 2px;
}

.formUsers-inputSelect{
    color: #999999;
    background-color: #ffffff;
    margin: 0;
    height: auto;
}

.formUsers-inputSelect.formUsers-inputSelect-active{
    color: var(--amBrandBlue);
}

.formUsers-inputSelect option{
    color: var(--amBrandBlue);
    font-size: 16px;
}

.formUsers-inputSelect::-webkit-scrollbar{
	width: 3px;
	background-color: #ffffff;
}
.formUsers-inputSelect::-webkit-scrollbar-track{
    border-radius: 10px;
	background-color: var(--amLighterGray);    
}
.formUsers-inputSelect::-webkit-scrollbar-thumb{
	background-color: var(--amMedGray);
    width: 3px;
    border-radius: 10px;
}


/*Fecha de nacimiento*/

.inputBirthDay{
    color: #999999;
    font-size: 14px;
    border: none;
    background-color: #ffffff;
    margin: 0;
    width: auto;
    height: auto;
}

.inputBirthDay.inputBirthDay-active{
    color: var(--amBrandBlue);
}

/* .inputBirthDay:focus-visible{
    border: 1px solid #007CC2;
    border-radius: 3px;
    outline: none;
} */

.formUsers-input-birthDay-slash{
    color: var(--amBrandBlue);
}

.inputBirthDay option{
    color: var(--amBrandBlue);
    font-size: 16px;
}

.inputBirthDay::-webkit-scrollbar{
	width: 3px;
	background-color: #ffffff;
}
.inputBirthDay::-webkit-scrollbar-track{
    border-radius: 10px;
	background-color: var(--amLighterGray);    
}
.inputBirthDay::-webkit-scrollbar-thumb{
	background-color: var(--amMedGray);
    width: 3px;
    border-radius: 10px;
}

/* Destino */
.formUsers-inputDestino{
    text-transform: capitalize;
}

.destinoAutoComplete{
    position: relative;
}

.formUsers-destinoAutocomplete-listwrapper{
    position: absolute;
    z-index: 100;
    background: #FFFFFF;
    border: 1px solid var(--amLightBlue);
    border-radius: 3px;
    border-top: 1px solid var(--amLighterGray);
    padding: 20px 5px 5px 5px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    display: none;
    width: 100%;
}

.formUsers-destinoAutocomplete-listwrapper.destinoAutocomplete-list-active{
    display: block;
}

.formUsers-destinoAutocomplete-list-container{
    overflow: auto;
    max-height: 120px;
}

.formUsers-destinoAutocomplete-listwrapper-title{
    font-family: var(--amFontMedium);
    color: var(--amBrandBlue);
    font-size: 12px;
    line-height: 16px;
    padding-left: 14px;
    display: block;

}
.formUsers-destinoAutocomplete-list{
    padding: 0px;
    margin: 0;
    list-style: none;

}

.formUsers-destinoAutocomplete-list-element{
    font-size: 18px;
    line-height: 36px;
    padding: 0 14px;
    color: #D6D6D6;
    font-family: var(--amFontRegular);
    cursor: pointer;
    text-transform: capitalize;
}

.formUsers-destinoAutocomplete-list-element:hover{
    background-color: #f7f7f7;
}

.formUsers-destinoAutocomplete-list-element-marcado{
    color: var(--amBrandBlue);
    font-family: var(--amFontMedium);
}

.formUser-imageArea-wrapper{
    margin-bottom: 40px;
}

.formUser-imageArea{
    border: 1px dashed #D6D6D6;
    border-radius: 5px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;    
}

@media screen and (max-width:560px) {
    .formUser-imageArea{
        flex-direction: column;
        padding: 15px;
    }
    
}

.formUser-imageArea.formUser-imageArea-active{
    background-color: var(--activeBgImgArea);
    border: 1px dashed var(--activeBorderImgArea);
}

.formUser-imageArea-iconText-container{
    display: flex;
}

@media screen and (max-width:560px) {
    .formUser-imageArea-iconText-container{
        padding-bottom: 16px;
        align-self: flex-start;
        margin: 0 auto;
    }
    
}

.formUser-imageArea-text{
    padding-left: 15px;
    padding-right: 30px;
}

@media screen and (max-width:560px) {
    .formUser-imageArea-text{
        padding-right: 0;
    }    
}

.formUser-imageArea-title1{
    font-size: 18px;
    line-height: 24px;
    color: var(--amBrandBlue);
    font-family: var(--amFontMedium);
    margin: 0;
}

.formUser-imageArea-title2{
    font-size: 12px;
    line-height: 18px;
    color:var(--amDarkGray);
    font-family: var(--amFontRegular);
    margin: 0;
}


.formUser-imageArea-buttonSearch{
    background-color: var(--amLightBlue);
    border: none;
    border-radius: 35px;
    padding: 13px 23px;
    color: #ffffff;
    cursor: pointer;
    text-transform: uppercase;
    font-family: var(--amFontRegular);
    font-size: 12px;
    line-height: 14px;
}

@media screen and (max-width:560px){
    .formUser-imageArea-buttonSearch{
        max-width: 210px;
        width: 100%;
        text-align: center;
    }        
}
.formUser-imageArea-buttonSearch-iconBrowser{
    padding-right: 10px;
}

@media screen and (max-width:560px){
    .formUser-imageArea-buttonSearch-iconBrowser{
        display: none;
    }        
}

.formUser-imageArea-buttonSearch-iconBrowser img{
    width: 12px;
    vertical-align: baseline;
}

.formUsers-groupCheckbox-wrapper{
    padding-bottom: 15px;
}

/* The container */
.formUsers-checkbox-container {
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 14px;
    line-height: 20px;
    display: inline-block;
    color: #0B2343;
    font-family: var(--amFontRegular);
    margin: 0;
  }

  .formUsers-checkbox-container a{
      color: var(--amLightBlue);
  }
  
  /* Hide the browser's default checkbox */
  .formUsers-checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Create a custom checkbox */
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #FFFFFF;
    border: 1px solid #D6D6D6;
    border-radius: 3px;
  }
  
  /* On mouse-over, add a grey background color */
  .formUsers-checkbox-container:hover input ~ .checkmark {
    border: 1px solid var(--amLightBlue);
  }
  
  /* When the checkbox is checked, add a blue background */
  .formUsers-checkbox-container input:checked ~ .checkmark {
    background-color: var(--amLightBlue);
    border: 1px solid var(--amLightBlue);
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .formUsers-checkbox-container input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the checkmark/indicator */
  .formUsers-checkbox-container .checkmark:after {
    left: 6px;
    top: 1px;
    width: 7px;
    height: 12px;
    border: solid #ffffff;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
.formUsers-submitBtn-container{
    padding-top: 40px;
}
.formUsers-submitBtn{
    background-color: #CCCCCC;
    border-radius: 35px;
    border: none;
    text-transform: uppercase;
    color: #ffffff;
    padding: 23px;
    font-size: 14px;
    line-height: 14px;
    width: 100%;    
}

.formUsers-submitBtn-active{
    background-color: var(--amRed);
    cursor: pointer;  
}
.formUsers-submitBtn-active:hover{
    background-color: #D61527; 
}
/* #endregion */


#imageGenerated{
    width: 640px;
    height: 800px;
    top: -200%;
    position: fixed;
    left: -200%;
    background-image: url('../assets/bgimagecreate.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}


#imageGenerated .imageCreate-wrapper{
    position: relative;
    width: 640px;
    height: 800px;
}


#imageGenerated .bgImg{
    position: absolute;
    max-width: 100%;
}

#imageGenerated .bgImg.bgImg1{
    top: 20px;
    left: 0px;
    width: 190px;
}

#imageGenerated .bgImg.bgImg2{
    top: 58px;
    right: 0px;
    width: 250px;
}

#imageGenerated .bgImg.bgImg3{
    bottom: 0px;
    left: 0px;
    width: 200px;
}

#imageGenerated .bgImg.bgImg4{
    bottom: 0px;
    right: 0px;
    width: 170px;
}

#imageGenerated .bgImg.bgImg5{
    top: 260px;
    left: 90px;
    width: 80px;
}

#imageGenerated .bgImg.bgImg6{
    top: 244px;
    right: 80px;
    width: 80px;

}

#imageGenerated .bgImg.bgImg7{
    bottom: 120px;
    left: 94px;
    width: 150px;
}

#imageGenerated .bgImg.bgImg8{
    bottom: 224px;
    right: 80px;
    width: 142px;
}

.imageCreate-titleCountry{
    color: #ffffff;
    font-size: 40px;
    font-family: var(--amFontRegular);
    text-align: center;
    padding: 50px 0 10px 0;
    position: relative;
}

.imageCreate-titleCountry #imageCreate-titleCountry{
    text-transform: capitalize;
}

#imageGenerated #aeromexicoName{
    font-size: 38px;
    font-family: 'NeueHaasUnicaPro-Bold';
    text-align: center;
    position: relative;
    margin: 0;
    padding: 12px;
}
.logo-aero{
    max-width: 200px;
    vertical-align: middle;
}

#nameAlias{
    position: relative;
    bottom: -6px;
    color: #ffffff;
    text-transform: uppercase;
    font-family: 'BigVestaPro-ExtraBold';
}

#aeromexico-cinta-relative{
    position: relative;
    top: 8px;
}

.imageGenerated-aeromexicoCinta{
    width: 374px;
    height: 54px;
    position: absolute;
    bottom: -35px;
    right: -68px;
    transform: scale(0.62);
}

.imageLoaded{
    max-width: 350px;
    margin: 0 auto;
    margin-top: 40px;
    position: relative;
}

.marcoImage{
    width: 370px;
    text-align: center;
    position: relative;
    margin-top: 40px;
    left: 144px;
    top: 20px;
}

.marcoImageClip{
    top: 295px;
    left: 200px;
    position: absolute;
    width: 260px;
    height: 255px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    
}

.imagePerspective-container{
    position: fixed;
    left: 0;
    top: 0;
}

.imagePerspective{
    /* clip-path: polygon(0 0, 96% 7%, 100% 94%, 3% 100%); */
    /* background-image: url('../assets/p06-movil-Home_Miami.jpg'); */
    position: absolute;
    top: 0;
    left: 0;
    width: 240px;
    height: 241px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}

.imagePerspective img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.imageLoaded-wrapper{
    border-radius: 8px;
    transform: rotateX(360deg) rotateY(48deg) rotateZ(0deg) skewX(3deg) skewY(3deg);
    transform-origin: center;
    position: absolute;
    top: 80px;
    left: 62px;
    width: 348px;
}

/* .imageLoaded img{
    width: 100%;
    height: 100%;
    margin: 24px;
    object-fit: cover;    
} */


.imageGeneratd-text{
    font-family: 'NeueHaasUnicaPro-Bold', sans-serif;
    text-align: center;
    font-size: 32px;
    line-height: 38px;
    max-width: 380px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
    position: relative;
}

/* #region Chapter11*/
#section-Chapter11{
    background-color: #ffffff;
    padding-bottom: 72px;
    padding-top: 72px;
}

@media screen and (max-width:640px){
    #section-Chapter11{
        padding-top: 54px;
    }    
}
.chapter11-wrapper{
    margin: 0 auto;
    max-width: 736px;
}
@media screen and (max-width:740px){
    .chapter11-wrapper{
        padding: 0 20px;
    }    
}
.chapter11-container{
    border: 1px solid #CCE5F3;
    background-color: #FAFCFE;
    box-shadow: 0px 3px 2px rgba(0, 0, 0, 0.03);
    border-radius: 4px;
    padding: 15px 32px;
    max-height: 110px;
    overflow: hidden;
    transition: max-height 1s ease;
}


@media screen and (max-width:540px) {
    .chapter11-container{
        padding: 14px 20px;
        max-height: 140px;
    }
}

@media screen and (max-width:340px) {
    .chapter11-container{
        padding: 14px 20px;
        max-height: 160px;
    }
}

.chapter11-container.chapter11-container-active{
    max-height: 500px;
    padding: 15px 32px;
}

@media screen and (max-width:640px) {
    .chapter11-container.chapter11-container-active{
        max-height: 640px;
    }    
}
@media screen and (max-width:540px) {
    .chapter11-container.chapter11-container-active{
        padding: 14px 20px 32px 20px;
    }
}
@media screen and (max-width:440px) {
    .chapter11-container.chapter11-container-active{
        max-height: 900px;
    }    
}

.chapter11-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.chapter11-headerIconText-container{
    display: flex;
    align-items: center;
}
.chapter11-headerIcon{
    margin-right: 20px;
    background-color: #E6F2F9;
    border-radius: 50%;
}
@media screen and (max-width:540px) {
    .chapter11-headerIcon{
        margin-right: 10px;
    }
}
.chapter11-headerIcon img{
    width: 60px;
    vertical-align: middle;
}
@media screen and (max-width:680px) {
    .chapter11-headerIcon img{
        width: 50px;
    }
}
@media screen and (max-width:540px) {
    .chapter11-headerIcon img{
        width: 35px;
    }
}
.chapter11-headerPreheader{
    font-size: 12px;
    line-height: 18px;
    color: var(--amLightBlue);
    font-family: var(--amFontMedium);    
}
.chapter11-headerTitle{
    font-size: 20px;
    line-height: 26px;
    color: var(--amBrandBlue);
    font-family: var(--amFontRegular);
    max-width: 440px;
}
@media screen and (max-width:540px) {
    .chapter11-headerTitle{
        font-size: 16px;
        line-height: 22px;
    }
}
.chapter11-headerButton{
    border: none;
    background-color: inherit;
    color: var(--amLightBlue);
    font-family: var(--amFontMedium);
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 20px;
}
@media screen and (max-width:680px) {
    #chapter11-headerButton-text{
        display: none;    
    }
}
.chapter11-headerButton-icon{
    padding-left: 4px;
    position: relative;
    top: -2px;
}

.chapter11-contentParagraph{
    padding-top: 32px;
    font-family: var(--amFontRegular);
    color: var(--amBrandBlue);
}

@media screen and (max-width:540px) {
    .chapter11-contentParagraph{
        padding-top: 20px;
    }
}

.chapter11-contentParagraph p{
    font-size: 14px;
    line-height: 20px;
    padding-bottom: 14px;
}

.chapter11-contentParagraph p:last-of-type{
    padding-bottom: 0;
}

.chapter11-video-container{
    margin: 0 auto;
    padding: 24px 0;
    border-radius: 8px;
    overflow: hidden;
}

.chapter11-video{
    width: 100%;
}

/* #endregion */

/* #region Modal video */

.modalVideo{
    position: fixed;
    z-index: 250;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    transition:  opacity .4s ease, visibility .4s ease;

}
.modalVideo.active{
    visibility: visible;
    opacity: 1;
}
.modalVideo-content{
    background-color: #ffffff;
    margin: 7% auto;
    border-radius: 0px 0px 4px 4px;
    width: 420px;
}

@media screen and (max-width:1200px){
    .modalVideo-content {
        margin: 8% auto;
    }
}

@media screen and (max-width:800px){
    .modalVideo-content {
        margin: 14% auto;
    }
}

@media screen and (max-width:540px){
    .modalVideo-content {
        margin: 25% auto;
    }
}


.contentVideo {
    background-color: transparent;
    height: 400px;
    max-width: 100%;
    width: 50%;
}

@media screen and (max-width:1200px){
    .contentVideo {
        width: 80%;
    }
}

@media screen and (max-width:800px){
    .contentVideo {
        width: 90%;
    }
}

@media screen and (max-width:479px){
    .contentVideo {
        height: 320px;
    }
}
.modalVideo-header {
    display: flex;
    justify-content: end;
    align-items: flex-start;
}

#closebutonModal{
    cursor: pointer;
}

.contentVideo .iframeVideo {
    border-radius: 4px;
    max-width: 100%;
    width: 1280px;
    height: 400px;
}


/* #endregion */