﻿/* -------------------------------- 

Main components 

-------------------------------- */
/**, *::after, *::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*::after, *::before {
  content: '';
}*/

.cd-main-content {
    text-align: center;
}

    .cd-main-content h1 {
        font-size: 20px;
        font-size: 1.25rem;
        /*color: #64788c;*/
        color: rgba(0, 102, 67, 1);
        padding: 4em 0;
    }

    .cd-main-content .cd-btn {
        position: relative;
        display: inline-block;
        padding: 1em 2em;
        background-color: #89ba2c;
        color: #ffffff;
        font-weight: bold;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        border-radius: 50em;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 0 5px rgba(0, 0, 0, 0.1);
        -webkit-transition: all 0.2s;
        -moz-transition: all 0.2s;
        transition: all 0.2s;
    }

.no-touch .cd-main-content .cd-btn:hover {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
}

.cd-panel {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    visibility: hidden;
    -webkit-transition: visibility 0s 0.6s;
    -moz-transition: visibility 0s 0.6s;
    transition: visibility 0s 0.6s;
    z-index: 1001; /* Make one higher than the login control so it won't show through */
    background: rgba(0, 0, 0, 0.5);
}

    .cd-panel::after {
        /* overlay layer */
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /*background: transparent;*/
        background: rgba(0, 0, 0, 0.5);
        cursor: pointer;
        -webkit-transition: background 0.3s 0.3s;
        -moz-transition: background 0.3s 0.3s;
        transition: background 0.3s 0.3s;
    }

    .cd-panel.is-visible {
        visibility: visible;
        -webkit-transition: visibility 0s 0s;
        -moz-transition: visibility 0s 0s;
        transition: visibility 0s 0s;
    }

        .cd-panel.is-visible::after {
            background: rgba(0, 0, 0, 0.6);
            -webkit-transition: background 0.3s 0s;
            -moz-transition: background 0.3s 0s;
            transition: background 0.3s 0s;
        }

        .cd-panel.is-visible .cd-panel-close::before {
            -webkit-animation: cd-close-1 0.6s 0.3s;
            -moz-animation: cd-close-1 0.6s 0.3s;
            animation: cd-close-1 0.6s 0.3s;
        }

        .cd-panel.is-visible .cd-panel-close::after {
            -webkit-animation: cd-close-2 0.6s 0.3s;
            -moz-animation: cd-close-2 0.6s 0.3s;
            animation: cd-close-2 0.6s 0.3s;
        }

@-webkit-keyframes cd-close-1 {
    0%, 50% {
        -webkit-transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(0);
    }
}

@-moz-keyframes cd-close-1 {
    0%, 50% {
        -moz-transform: rotate(0);
    }

    100% {
        -moz-transform: rotate(0);
    }
}

@keyframes cd-close-1 {
    0%, 50% {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }
}

@-webkit-keyframes cd-close-2 {
    0%, 50% {
        -webkit-transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(0);
    }
}

@-moz-keyframes cd-close-2 {
    0%, 50% {
        -moz-transform: rotate(0);
    }

    100% {
        -moz-transform: rotate(0);
    }
}

@keyframes cd-close-2 {
    0%, 50% {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }
}

.cd-panel-header {
    position: fixed;
    width: 90%;
    height: 58px;
    line-height: 50px;
    background: #006643;
    z-index: 2;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
    -webkit-transition: top 0.3s 0s;
    -moz-transition: top 0.3s 0s;
    transition: top 0.3s 0s;
}

    .cd-panel-header h1 {
        font-family: Montserrat, sans-serif;
        font-size: 1.15em;
        font-weight: 400;
        color: #fff;
        text-transform: uppercase;
        padding-left: 5%;
        width: auto;
    }

.from-right .cd-panel-header, .from-left .cd-panel-header {
    top: -50px;
}

.from-right .cd-panel-header {
    right: 0;
}

.from-left .cd-panel-header {
    left: 0;
}

.is-visible .cd-panel-header {
    top: 0;
    -webkit-transition: top 0.3s 0.3s;
    -moz-transition: top 0.3s 0.3s;
    transition: top 0.3s 0.3s;
}

.cd-panel-close {
    position: inherit;
    /*margin-right: 6%;*/
    /*margin-right: 1%;*/
    top: 18px;
    right: 15px;
    height: 20px;
    width: 20px;
    /* image replacement */
    display: block;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    vertical-align: middle;
    align-content: center;
    box-sizing: border-box;
    background-image: url('/Content/responsive/images/img_x.svg');
    background-repeat: no-repeat;
}

    .cd-panel-close::before, .cd-panel-close::after {
        /* close icon created in CSS */
        position: absolute;
        top: 22px;
        left: 20px;
        height: 3px;
        width: 20px;
        background-color: #424f5c;
        /* this fixes a bug where pseudo elements are slighty off position */
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    .cd-panel-close::before {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .cd-panel-close::after {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

.no-touch .cd-panel-close:hover {
    /*background-color: #424f5c;*/
}

    .no-touch .cd-panel-close:hover::before, .no-touch .cd-panel-close:hover::after {
        background-color: #ffffff;
        -webkit-transition-property: -webkit-transform;
        -moz-transition-property: -moz-transform;
        transition-property: transform;
        -webkit-transition-duration: 0.3s;
        -moz-transition-duration: 0.3s;
        transition-duration: 0.3s;
    }
/*.no-touch .cd-panel-close:hover::before {
  -webkit-transform: rotate(220deg);
  -moz-transform: rotate(220deg);
  -ms-transform: rotate(220deg);
  -o-transform: rotate(220deg);
  transform: rotate(220deg);
}*/
/*.no-touch .cd-panel-close:hover::after {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}*/

.cd-panel-container {
    font-size: 16px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    position: fixed;
    width: 90%;
    height: 100%;
    top: 0;
    background: #fff;
    z-index: 1;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-delay: 0.3s;
    -moz-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.from-right .cd-panel-container {
    right: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    -moz-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    -o-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
}

.from-left .cd-panel-container {
    left: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    -moz-transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    -o-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}

.is-visible .cd-panel-container {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    transition-delay: 0s;
}

.cd-panel-content {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 70px 5%;
    overflow-y: auto;
    overflow-x: hidden;
    /* smooth scrolling on touch devices */
    -webkit-overflow-scrolling: touch;
    padding-right: 20px;
    /*background: #363636 !important;*/
}

    .cd-panel-content p {
        font-size: 14px;
        font-size: 0.875rem;
        color: #424f5c;
        line-height: 1.4;
        /*margin: 0 !important;*/
    }

        .cd-panel-content p:first-of-type {
            margin-top: 0;
        }

.ibe-btn {
    min-width: 145px;
    padding: 20px;
    border: 1px solid #fff;
    background-color: #006643;
    color: #fff;
    height: 60px;
    line-height: 100%;
    font-weight: 700;
    text-align: center;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.w-button {
    display: inline-block !important;
    padding: 9px 15px !important;
    color: white;
    border: 0;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
    border-radius: 0;
}

    .w-button:hover {
        background-color: #3898EC;
    }

.ibe-modal-content-container {
    margin-top: 3.5% !important;
    padding-right: 0%;
    padding-left: 0% !important;
}

#btnContinueBooking {
    cursor: pointer;
    height: 18px;
}

#btnReturnToBooking,
#flightDetailsReturnToBooking,
#fareRulesReturnButton,
#secureFlightReturnButton,
#btnFlightDetailsReturnToBooking {
    padding: 20px !important;
    border: 1px solid #fff;
    line-height: 100%;
    height: inherit;
}

    #btnReturnToBooking:hover,
    #flightDetailsReturnToBooking:hover,
    #fareRulesReturnButton:hover,
    #secureFlightReturnButton:hover,
    #btnFlightDetailsReturnToBooking:hover {
        background-color: #26619c;
    }

#searchButton:hover {
    background-color: #26619c;
}

.ibe-no-link {
    cursor: pointer;
}

.ibe-img-er-signup-height {
    height: 40px !important;
}

#AddBundleHeader a, #RemoveBundleHeader a {
    color: white;
}

#BundleSavings {
    padding-bottom: 0;
}

    #BundleSavings .ibe-cart-item-content-box {
        width: auto;
    }

.img-fare-display {
    display: block;
}

.calendar-date-mobile {
    height: 45px;
}
/* -------------------------------- 


.worksDescriptionText{
    width: 304px;
}

.ibe-cart-item-savings-banner{
    margin-bottom:0%;
}

.flag-container {
    margin-top: 2%;
    margin-bottom: 1%;
    box-sizing: border-box;
    height: 60px !important;
    display: inline-block !important;
    position: relative;
}

/*  base flag css class
    used on the discount den fare slider
*/
.flag {
    width: 240px;
    height: 0px;
    border-right: 30px solid transparent;
    border-top: 30px solid #d04041;
    border-left: 30px solid #d04041;
    border-bottom: 30px solid #d04041;
    display: inline-block;
    position: relative;
}

/* flag text container for multiple lines 
   top line of text
*/
.flag-text-top {
    color: white;
    align-items: center;
    display: inline-block;
    font-weight: bold;
    font-size: 1.125em;
    padding: 0px;
    position: absolute;
    top: -17px;
}

/* flag text container for multiple lines 
   bottom line of text
*/
.flag-text-bottom {
    color: white;
    align-items: center;
    display: inline-block;
    font-weight: bold;
    font-size: 1em;
    position: absolute;
    top: -1px;
    padding-top: 2px;
}

/* -------------------------------- 

Early Returns signup slider section

-------------------------------- */

#erSignupPaxIcon {
    margin-top: -6%;
}

#EarlyReturnsSignupForm #password-input {
    width: 100%;
}

#EarlyReturnsSignupForm #password-icon {
    float: right;
}

#EarlyReturnsSignupForm .password-label-icon {
    display: inline-block;
    width: 100%;
}

    #EarlyReturnsSignupForm .password-label-icon div {
        display: inline-block;
    }

#EarlyReturnsSignupForm input {
    border: 1px solid #9a9a9b;
}

#EarlyReturnsSignupForm label {
    margin-bottom: 2px;
}

#EarlyReturnsSignupForm .ibe-form-field-label-container {
    display: inline-block;
    width: 100%;
}

#EarlyReturnsSignupForm .ibe-from-row-dob .ibe-form-field-label-container div {
    display: inline-block;
    width: 100%;
}

#EarlyReturnsSignupForm select {
    width: 100%;
}

#EarlyReturnsSignupForm .ibe-modal-btn-container-terms {
    width: auto;
}

.ibe-er-signup-required {
    text-align: right;
}

.ibe-er-signup-suffix {
    height: 38px;
    border: 1px solid #9a9a9b;
    color: #006643;
    font-size: 0.875em;
    display: block;
    width: 100%;
}

.ibe-er-signup-dropdowns {
    height: 38px;
    /*border: 1px solid #9a9a9b !important;*/
    border: 1px solid #9a9a9b;
    height: 38px !important;
    background-color: #fff !important;
    background-image: -webkit-linear-gradient(270deg, #fff, #fff);
    background-image: linear-gradient(180deg, #fff, #fff);
    color: #6d6d6d;
    font-size: 0.875em;
    padding: 8px 12px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.428571429;
    vertical-align: middle;
    background-color: #ffffff;
    /*border: 1px solid #d7d7d7;*/
    display: inline-block;
}

.ibe-er-signup-dropdowns-dob-width {
    width: 150px;
    /*height: 38px !important;*/
    height: 40px !important;
}

.ibe-er-signup-height-fix {
    height: 38px !important;
    box-sizing: border-box;
}

.ibe-er-signup-nopadding {
    padding: 0 0 0 0;
}

.ibe-er-signup-dropdown-height-fix {
    height: 40px !important;
}

.er-btn {
    min-width: 155px;
    padding: 20px;
    background-color: #006643;
    color: #fff;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block !important;
    border: 0;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
    border-radius: 0;
}

    .er-btn:hover {
        background-color: #26619c;
        color: #fff;
    }

.img-fare-height {
    height: 30px !important;
}

.img-fare-min-dimensions {
    min-height: 38px;
    min-width: 38px;
}

.img-ersignup-password-info {
    display: inline-block;
    max-width: 100%;
    vertical-align: middle;
    text-align: right;
}

.img-ersignup-password-info-icon {
    max-width: 100%;
    vertical-align: middle;
    text-align: right;
}

.ibe-er-signup-error-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-block;
}

.ibe-er-signup-error-item {
    color: red;
    /*margin-bottom: 20px;*/
    font-weight: bold;
    /*display: block;*/
}

.ibe-er-signup-error-item-background {
    /*background-color: red;*/
    border-color: red !important;
}

.ibe-pass-text-large {
    font-size: 35px;
}

/* -------------------------------- 

Discount Den Fare slider section

-------------------------------- */

.dd-checkmark {
    list-style: none;
}

    .dd-checkmark:before {
        content: '✓';
    }

.dd-btn {
    min-width: 200px;
    padding: 20px;
    background-color: #006643;
    color: #fff;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block !important;
    border: 0;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
    border-radius: 0;
}

    .dd-btn:hover {
        background-color: #0a6183;
        color: #fff;
        text-decoration: none;
    }

.checkmark-green {
    list-style: none;
    padding: .2em 0 .2em 0;
}

    .checkmark-green:before {
        content: '✓';
        color: #006643;
    }

#PasswordRequirementsContent ul {
    margin: 0;
    padding-top: .5em;
}

.worksDescriptionText {
    width: 80%;
}
/* -------------------------------- 

Remove Bundle Slider

-------------------------------- */
#removeBundleButtonContainer {
    display: inline-block;
    width: 100%;
    white-space: initial;
    margin-top: 3%;
}

#stillBundleAndSave {
    display: inline-block;
    width: 100%;
    margin-bottom: 5%;
}

#removeBundle {
    display: inline-block;
    width: 100%;
}

#remove_bundle_button_slider,
#btnStillBundleAndSave {
    width: 100%;
    padding: 5px;
    white-space: initial;
    height: 45px;
}

#remove_bundle_button_slider {
    background-color: #646464;
    float: initial;
}

#flightsInfoPlaceholder .ibe-modal-content-container {
    margin-bottom: 5%;
}

#FlightDetailsSlider .ibe-flight-details-item {
    line-height: 150%;
}

#connectingDescription {
    display: inline-block;
}

.BundleSavingsTextPaddingRight {
    padding-right: 10px;
}

.specialFareSignupFee, .specialFarePromotion {
    width: 100%;
}

.specialFarePromotion {
    line-height: 150%;
}

.specialFarePromotion {
    line-height: 150%;
}

.renewalDisplay {
    display: inline-flex;
}

#cart_flight_gwmonthly {
    display: flex;
}

#gwpromocional_div {
    display: inline-flex;
    width: 100%;
}

.js-flightGWMonthlyAmt {
    margin-left: 2px;
}

.js-flightGWMonthlyAmtRenewal {
    margin-left: 2px;
}

/* -------------------------------- 

Media queries

-------------------------------- */
@media only screen and (min-width: 479px) {
    #remove_bundle_button_slider, #btnStillBundleAndSave {
        line-height: 45px;
    }

    .worksDescriptionText {
        width: 100%;
    }

    .ibe-cart-bundle-savings-container {
        width: 350px;
    }

    .cd-panel-header h1 {
        font-size: 1.25em;
    }
}

@media only screen and (min-width: 755px) {

    #stillBundleAndSave,
    .ibe-modal-content-container {
        padding-right: 2%;
    }

    .cd-panel-container {
        width: 90%;
    }

    .cd-panel-header {
        width: 90%;
    }

    .forgot-password-modal {
        width: 90%;
    }

    .ibe-modal-cart-intital {
        margin-top: 0% !important;
        margin-bottom: 0% !important;
        padding-right: 0% !important;
        padding-left: 0% !important;
    }

    #EarlyReturnsSignupForm select, #EarlyReturnsSignupForm .password-label-icon {
        width: 100%;
    }
}

@media (min-width: 768px) {

    #EarlyReturnsSignupForm select, #EarlyReturnsSignupForm .password-label-icon {
        width: 300px;
    }

    #stillBundleAndSave {
        width: 60%;
    }

    #removeBundle {
        width: 37%;
    }

    .cd-panel-header h1 {
        font-size: 1.5em;
    }
}

@media (min-width: 991px) {


    .cd-panel-header h1 {
        font-size: 1.75em;
    }

    #EarlyReturnsSignupForm .last-name, #EarlyReturnsSignupForm .suffix, #EarlyReturnsSignupForm .city, #EarlyReturnsSignupForm .state {
        display: inline-block;
        width: auto;
    }

    #EarlyReturnsSignupForm .last-name, #EarlyReturnsSignupForm .city {
        padding-right: 1%;
    }

    #EarlyReturnsSignupForm select {
        width: 150px;
    }

    #EarlyReturnsSignupForm #erSignupCountryResidence {
        width: 300px;
    }


    #EarlyReturnsSignupForm .ibe-from-row-dob .ibe-form-field-label-container div {
        display: inline-block;
        width: auto;
        padding-right: 7px;
    }
}

@media only screen and (min-width: 1139px) {
    #removeBundleButtonContainer {
        width: 100%;
    }

    .cd-panel-container {
        font-size: 14px;
        width: 775px;
    }

    .cd-panel-content {
        font-size: 1.15em;
    }

        .cd-panel-content p {
            font-size: 16px;
            font-size: 1rem;
            line-height: 1.6;
        }

    .cd-panel-header {
        width: 775px;
    }
}

@media only screen and (min-width: 1170px) {
    .cd-main-content h1 {
        font-size: 32px;
        font-size: 2rem;
    }
}
