/* HEADER TOP */
    header > .top {
        background: #1E1E1E;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    header > .top > .logo {
        display: none;
    }
    header > .top > .phone {
        font-size: 15px;
        font-weight: 600;
        color: #fff;
        text-align: center;
        border: 1px solid #FFFFFF;
        border-radius: 5px;
        line-height: 20px;
        display: flex;
        padding: 0 18px;
        justify-content: center;
        align-items: center;
        height: 32px;
    }
    header > .top > .phone:hover, header > .top > .phone:active, header > .top > .icon-phone:active {
        background: #FFF;
        color: #333 !important;
    }
    header > .top > .phone > .icon {
        margin-top: -3px;
        margin-right: 5px;
    }


/* HEADER BOTTOM */
    header > .bottom {
        height: 60px;
        display: flex;
        background: #fff;
        position: relative;
        box-shadow: 0 2px 3px 0 rgba(0,0,0,0.12);
    }
    header > .bottom > .main-nav-trigger {
        display: inline-block;
    }
    header > .bottom > .main-nav-trigger:hover, header > .bottom > .main-nav-trigger.open {
        background: #EBEBEB;
    }
    header > .bottom > .main-nav-trigger > .icon {
        background-image: url(/images/icons-sprite.png);
        height: 60px;
        width: 70px;
        display: block;
        background-repeat: no-repeat;
        background-position: -371px -45px;
    }
    header > .bottom > .logo {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #fff;
    }
    header > .bottom > .logo > img {
        width: 150px;
        height: 46px;
    }

    /* Quick Booking Form */
    header > .bottom > form.quick-booking {
        position: absolute;
        top: -999px;
        left: 0;
        right: 0;
        z-index: 10;
        opacity: 0;
        background: #171717;
        box-shadow: 4px 1px 3px 0 rgba(0,0,0,0.12);
        padding: 18px 20px 30px;
        transition: opacity 1s;
    }
    header > .bottom > form.quick-booking.open {
        top: 60px;
        opacity: 1;
    }
    header > .bottom > form.quick-booking > ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    header > .bottom > form.quick-booking > ul > li {
        color: #fff;
        position: relative;
    }
    header > .bottom > form.quick-booking > ul > li > ul.mobile-languages {
        margin: 0;
        padding: 0;
        background: #171717;
        list-style: none;
        border: 1px solid #fff;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1;
    }
    header > .bottom > form.quick-booking > ul > li > ul.mobile-languages > li > a {
        color: #fff;
        font-weight: 600;
        font-size: 14px;
        display: block;
        line-height: 19px;
        padding: 15px 20px;
    }
    header > .bottom > form.quick-booking > ul > li > ul.mobile-languages > li > a:hover {
        background: #4C4C4C;
    }
    header > .bottom > form.quick-booking > ul > li > a,
    header > .bottom > form.quick-booking > ul > li > span {
        color: #fff;
        font-size: 14px;
        line-height: 19px;
        font-weight: 600;
        padding: 12px 0;
        display: block;
        margin-bottom: 12px;
        border-bottom: 1px solid #333;
        position: relative;
        padding-left: 22.5px;
    }
    header > .bottom > form.quick-booking > ul > li > a > .icon,
    header > .bottom > form.quick-booking > ul > li > span > .icon {
        height: 17px;
        width: 14px;
        display: block;
        margin-right: 8.8px;
        position: absolute;
        top: 50%;
        left: 0;
        margin-top: -8.5px;
    }
    header > .bottom > form.quick-booking > ul > li > span input {
        background: transparent;
        width: 100%;
        border: none;
        outline: none;
        font-weight: normal;
    }
    header > .bottom > form.quick-booking > ul > li > span .Zebra_DatePicker_Icon {
        display: none;
    }
    header > .bottom > form.quick-booking > ul > li > span input::placeholder {
        color: #fff;
    }
    header > .bottom > form.quick-booking > .input-email > input {
        font-size: 14px;
        color: #fff;
        line-height: 19px;
        background: transparent;
        border: none;
        width: 100%;
        border-bottom: 1px solid #333;
        padding: 11px 0;
        outline: none;
    }
    header > .bottom > form.quick-booking > .input-email > input::placeholder {
        color: #9E9E9E;
    }
    header > .bottom > form.quick-booking > .book-now {
        font-size: 15px;
        color: #333333;
        font-weight: 600;
        margin-top: 18px;
        height: 45px;
        width: 100%;
        background: #fff;
        transition: background .15s;
    }
    header > .bottom > form.quick-booking > .book-now:hover,
    header > .bottom > form.quick-booking > .book-now:active,
    header > .bottom > form.quick-booking > .book-now:focus {
        background: #EBEBEB;
    }
    header > .bottom > .quick-booking-trigger {
        font-size: 14px;
        color: #999999;
        font-weight: 700;
        line-height: 60px;
        width: 79px;
        text-align: center;
        padding: 0 5px;
    }
    header > .bottom > .quick-booking-trigger:hover, header > .bottom > .quick-booking-trigger.open {
        background: #EBEBEB;
    }
    header > .bottom > .quick-booking-trigger > span.text-book {
        display: inline-block;
    }
    header > .bottom > .quick-booking-trigger > span.text-cancel {
        display: none;
    }
    header > .bottom > .quick-booking-trigger.open > span.text-book {
        display: none;
    }
    header > .bottom > .quick-booking-trigger.open > span.text-cancel {
        display: inline-block;
    }
