@charset "UTF-8";
/* RESET */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    line-height: 18px;
    font-family: "Source Sans Pro", "Arial", sans-serif;
    font-size: 14px;
    color: #333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after,
    q:before, q:after {
        content: "";
        content: none;
    }

table {
    border-collapse: collapse;
    border-spacing: 0;
}

html {
    position: relative;
    min-height: 100%;
    min-width: 300px;
}

input,
textarea,
button {
    font-family: inherit;
}

a {
    text-decoration: none;
    color: #0C6AA0;
}

b {
    font-weight: 600;
}

a:hover {
    color: #333;
    text-decoration: none;
}

/* Custom Bootstarp
---------------------------------------
*/
@media only screen and (max-width: 767px) {
    .container {
        position: relative;
        display: block;
        width: 100%;
        padding: 0 10px;
    }
}

@media only screen and (min-width: 768px) {
    .container {
        position: relative;
        display: block;
        width: 95%;
        max-width: 1170px;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 767px) {
    .coupon-container {
        display: none;
    }
}

@media only screen and (min-width: 768px) {
    .coupon-container {
        position: relative;
        display: block;
        width: 95%;
        max-width: 1170px;
        margin: 0 auto;
    }
}

.modal-backdrop {
    display: none;
}

.modal .modal-dialog {
    transition: -webkit-transform 0.3s ease-in-out;
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
}

.modal.in {
    background: rgba(0, 0, 0, 0.6);
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

    .modal.in .modal-dialog {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

.modal.left .modal-dialog {
    float: left;
    -ms-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

.modal.left.in .modal-dialog {
    left: 0;
    right: auto;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    width: 100%;
}

.modal.right .modal-dialog {
    float: right;
    -ms-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

.modal.right.in .modal-dialog {
    right: 0;
    left: auto;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.modal.bottom .modal-dialog {
    bottom: 0;
    left: auto;
    right: auto;
    -ms-transform: translateY(100%);
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
}

.modal.bottom.in .modal-dialog {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

/* Custom Auto complete
---------------------------------------
*/
.ui-autocomplete {
    border-radius: 2px;
}

@media only screen and (min-width: 768px) {
    .ui-autocomplete {
        width: 450px !important;
    }
}

.ui-autocomplete .ui-menu-item {
    padding: 0;
    border-radius: 0;
    outline: none;
}

    .ui-autocomplete .ui-menu-item:not(:last-child) {
        border-bottom: 1px dashed #ddd;
    }

.ui-autocomplete .ui-menu-item-wrapper {
    margin: 0;
    padding: 5px 0;
}

    .ui-autocomplete .ui-menu-item-wrapper.ui-state-active, .ui-autocomplete .ui-menu-item-wrapper.ui-state-active:hover {
        background: #f4f4f4;
        border: 0;
    }

.ui-autocomplete .select-code {
    margin: 0;
}

/* Custom Datepicker
---------------------------------------
*/
.ui-datepicker {
    z-index: 9999 !important;
    width: 100% !important;
    border: 0;
    padding: 0;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    border-radius: 0;
    background: white !important;
    font-family: arial;
}

@media screen and (max-width: 450px) {
    .ui-datepicker {
        left: 0 !important;
        padding: 10px;
        background: white !important;
    }
}

@media (min-width: 451px) and (max-width: 767px) {
    .ui-datepicker {
        width: 400px !important;
        padding: 10px;
        background: white !important;
    }
}

.ui-datepicker.ui-datepicker-multi {
    width: 600px !important;
}

    .ui-datepicker.ui-datepicker-multi .ui-datepicker-group {
        background: white;
    }

    .ui-datepicker.ui-datepicker-multi .ui-datepicker-group-first {
        padding: 5px 10px 10px;
    }

    .ui-datepicker.ui-datepicker-multi .ui-datepicker-group-last {
        padding: 5px 10px 10px;
        border-left: 1px solid #f3f3f3;
    }

.ui-datepicker .ui-datepicker-calendar {
    display: table;
    width: 100% !important;
    margin: 0 !important;
}

    .ui-datepicker .ui-datepicker-calendar thead, .ui-datepicker .ui-datepicker-calendar tbody, .ui-datepicker .ui-datepicker-calendar tr {
        display: block;
        width: 100%;
    }

    .ui-datepicker .ui-datepicker-calendar th, .ui-datepicker .ui-datepicker-calendar td {
        width: 14.28%;
        height: auto;
        display: inline-block;
        float: left;
        padding: 0;
    }

    .ui-datepicker .ui-datepicker-calendar th {
        color: #999999;
        font-weight: normal;
    }

    .ui-datepicker .ui-datepicker-calendar span, .ui-datepicker .ui-datepicker-calendar a {
        line-height: 38px;
    }

.ui-datepicker .ui-state-default {
    padding: 0;
    cursor: pointer;
}

    .ui-datepicker .ui-state-default:hover {
        background-color: #d9d9d9;
        color: #333333;
        border-radius: 2px;
    }

    .ui-datepicker .ui-state-default.ui-state-active {
        background-color: #0c64ad;
        color: white;
        border-radius: 2px;
    }

.ui-datepicker .ui-datepicker-header {
    background: transparent;
    border: 0;
    padding: 0;
    color: black;
    border-radius: 0;
    border-bottom: 1px dashed #b3b3b3;
}

    .ui-datepicker .ui-datepicker-header .ui-datepicker-title {
        margin: 5px 0 5px;
        line-height: 30px;
        font-size: 14px;
    }

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    opacity: 0.5;
    top: 5px;
    height: auto;
    width: auto;
    display: inline-block;
    color: gray;
    overflow: hidden;
    cursor: pointer !important;
}

    .ui-datepicker .ui-datepicker-prev:before,
    .ui-datepicker .ui-datepicker-next:before {
        position: relative;
        display: inline-block;
        font-style: normal;
        font-weight: 400;
        line-height: 1;
        padding: 0;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        outline: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        background: transparent;
        border: 0;
        font-family: "FontAwesome";
        font-size: 24px;
        text-align: center;
        width: 26px;
        height: 26px;
    }

    .ui-datepicker .ui-datepicker-prev:hover,
    .ui-datepicker .ui-datepicker-next:hover {
        opacity: 1;
        background-color: #d9d9d9;
        color: #333333;
        border-radius: 2px;
    }

    .ui-datepicker .ui-datepicker-prev .ui-icon,
    .ui-datepicker .ui-datepicker-next .ui-icon {
        display: none;
    }

    .ui-datepicker .ui-datepicker-prev:before {
        content: "\f104";
      }
      
      .ui-datepicker .ui-datepicker-next:before {
        content: "\f105";
      }
      

.ui-datepicker .ui-state-hover {
    border: 0;
    background: transparent;
}

.ui-datepicker .ui-state-default,
.ui-datepicker .ui-widget-content .ui-state-default,
.ui-datepicker .ui-widget-header .ui-state-default {
    border: 0;
    background: transparent;
    font-weight: normal;
    text-align: center;
    color: #333333;
}

/* Custom UI-Widget
---------------------------------------
*/
.ui-widget.ui-widget-content .ui-dialog-titlebar-close {
    background-image: url("/sites/1/Images/V3/ui-icons.png?v=2");
    background-repeat: no-repeat;
    background-position: -96px -128px;
    width: 18px;
    height: 18px;
}

@media only screen and (max-width: 767px) {
    .ui-widget.ui-widget-content {
        width: calc(100% - 30px) !important;
        margin: 0 auto;
    }
}

/* Custom Zopim
---------------------------------------
*/
@media only screen and (max-width: 767px) {
    .zopim {
        display: none !important;
    }
}

/* Block 
---------------------------------------
*/
.block {
    background: white;
    border: 1px solid #e1e1e1;
    position: relative;
    display: block;
    text-align: center;
    margin-top: 10px;
}

    .block .header {
        display: block;
        color: #0c64ad;
        padding: 6% 10%;
        font-size: 18px;
        line-height: 1.2em;
        border-bottom: 1px dotted #e1e1e1;
    }

        .block .header i {
            position: absolute;
            color: #C1DBEA;
            font-size: 42px;
            right: 10%;
            top: 4.5%;
        }

    .block .body {
        font-size: 14px;
        line-height: 1.4em;
        text-align: left;
        padding: 0 10px 10px 10px;
    }

    .block .list {
        border-top: 1px solid #cccccc;
        text-align: center;
        padding-bottom: 10px;
    }

        .block .list:first-child:last-child {
            border: 0;
        }

        .block .list:first-child:not(:last-child) {
            border: 0;
        }

.section-why .block .header {
    color: #3f4d61;
    font-size: 16px;
    padding: 6% 5px;
}

.section-why .block .body li {
    padding-left: 40px;
    min-height: 45px;
    position: relative;
    margin: 10px 0;
    font-size: 13px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.section-why .block .icon {
    position: absolute;
    top: 0;
    left: -3px;
    display: inline-block;
    background: url(/sites/1/Images/V3/sprite-all.png?v=2) no-repeat;
    background-repeat: no-repeat;
    width: 42px;
    height: 42px;
    content: "";
    -webkit-transform: scale(0.6);
    -ms-transform: scale(0.6);
    transform: scale(0.6);
}

    .section-why .block .icon.icon-free {
        background-position: -136px -66px;
    }

    .section-why .block .icon.icon-live {
        background-position: -198px -66px;
    }

    .section-why .block .icon.icon-save {
        background-position: -136px -120px;
    }

    .section-why .block .icon.icon-special {
        background-position: -198px -119px;
    }

.block-ssl {
    background: white;
    border: 1px solid #e1e1e1;
    position: relative;
    display: block;
    text-align: center;
    margin-top: 10px;
}

    .block-ssl .header {
        display: block;
        color: #0c64ad;
        padding: 6% 10%;
        font-size: 18px;
        line-height: 1.2em;
        border-bottom: 1px dotted #e1e1e1;
    }

        .block-ssl .header i {
            position: absolute;
            color: #C1DBEA;
            font-size: 42px;
            right: 10%;
            top: 4.5%;
        }

    .block-ssl .body {
        font-size: 14px;
        line-height: 1.4em;
        text-align: left;
        padding: 0 10px 10px 10px;
    }

    .block-ssl .list {
        border-top: 1px solid #cccccc;
        text-align: center;
        padding-bottom: 10px;
    }

        .block-ssl .list:first-child:last-child {
            border: 0;
        }

        .block-ssl .list:first-child:not(:last-child) {
            border: 0;
        }

        .block-ssl .list a {
            display: block;
            margin: auto;
            margin-top: 15px;
        }

        .block-ssl .list span {
            display: block;
            margin: auto;
            margin-top: 15px;
            color: #3f4d61;
        }

    .block-ssl ul.list-style {
        font-size: 14px;
        line-height: 1.4em;
        text-align: left;
        padding: 10% 0 0;
        list-style: none;
        margin: 0;
        color: #3f4d61;
    }

        .block-ssl ul.list-style li {
            position: relative;
            padding-left: 18px;
            margin-bottom: 15px;
        }

            .block-ssl ul.list-style li:before {
                position: relative;
                display: inline-block;
                font-style: normal;
                font-weight: 400;
                line-height: 1;
                padding: 0;
                -webkit-font-smoothing: antialiased;
                -moz-osx-font-smoothing: grayscale;
                outline: none;
                -webkit-box-shadow: none;
                box-shadow: none;
                background: transparent;
                border: 0;
                font-family: "FontAwesome";
                content: "ï€Œ";
                color: #0c64ad;
                position: absolute;
                font-size: 12px;
                top: 2px;
                left: 0;
            }

            .block-ssl ul.list-style li a {
                color: #056BA8;
            }

    .block-ssl .help-call > span {
        color: black;
        font-weight: bold;
        font-size: 13px;
        margin-bottom: 5px;
        text-decoration: none !important;
    }

    .block-ssl .help-call > i {
        color: #0c64ad;
        vertical-align: middle;
        font-size: 20px;
    }

    .block-ssl .help-call > h4 {
        color: #0c64ad;
        display: inline;
        margin: 0;
        font-size: 20px;
        font-weight: bold;
        vertical-align: middle;
    }

/* Loading 
---------------------------------------
*/
#Loading {
    min-height: 0;
    padding: 0;
}

@media only screen and (max-width: 767px) {
    #Loading {
        padding: 10px 5px;
    }
}

#Loading .loading-col01 {
    width: 280px;
    float: left;
    display: none;
    padding-right: 15px;
}

@media only screen and (min-width: 1200px) {
    #Loading .loading-col01 {
        display: block;
    }
}

#Loading .loading-col02 {
    display: inline-block;
    float: left;
    width: 100%;
}

@media only screen and (min-width: 1200px) {
    #Loading .loading-col02 {
        width: calc(100% - (280px + 160px));
    }
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {
    #Loading .loading-col02 {
        width: calc(100% - 160px);
    }
}

@media only screen and (min-width: 768px) {
    #Loading .loading-col02 {
        padding-right: 15px;
    }
}

#Loading .loading-col03 {
    width: 160px;
    float: right;
}

#Loading #METAQuote {
    margin-top: 45px;
}

@media only screen and (max-width: 767px) {
    #Loading #METAQuote {
        margin: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
    #Loading #METAQuote {
        margin-top: 10px;
    }
}

#Loading .new-bar {
    border: 1px solid #e1e1e1;
    border-radius: 20px;
    padding: 5px;
    margin: 5px 0 10px;
    background: white;
}

    #Loading .new-bar .bar-load {
        height: 15px;
        border-radius: 6px;
        background: #60abe8;
        background-image: url("/sites/1/Images/V3/loading.gif");
        background-size: auto 35px;
    }

#Loading .section-modal .modal-header {
    border: 0;
    padding: 15px 0 10px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    color: #3f4d61;
}

#Loading .section-modal .FiltersAll {
    width: 100%;
}

    #Loading .section-modal .FiltersAll > div[class*=Show] {
        margin: 0 0 10px 0;
        padding: 0 10px;
        width: 100%;
        position: relative;
        display: inline-block;
        border: 1px solid #e1e1e1;
    }

        #Loading .section-modal .FiltersAll > div[class*=Show][class*=AirlinesDiv] {
            margin: 0;
        }

    #Loading .section-modal .FiltersAll .SliderBoxLabel {
        position: relative;
        background: white;
        border: 0;
        border-radius: 0;
        color: #3f4d61;
        text-transform: uppercase;
        font-size: 14px;
        font-weight: bold;
        padding: 8px 0;
        text-align: left;
        border-bottom: 1px dotted #b3b3b3;
    }

    #Loading .section-modal .FiltersAll .SliderBox {
        background: white;
        display: block;
        text-align: center;
        padding: 10px 0;
    }

        #Loading .section-modal .FiltersAll .SliderBox .SliderLabelSub {
            color: #0c64ad;
            display: inline-block;
        }

        #Loading .section-modal .FiltersAll .SliderBox div[class=PriceDisplay],
        #Loading .section-modal .FiltersAll .SliderBox div[class=DurationDisplay] {
            position: absolute;
            right: 10px;
            top: 8px;
            color: #2e7bcc;
            font-weight: bold;
            font-size: 14px;
        }

        #Loading .section-modal .FiltersAll .SliderBox .ui-slider {
            display: block;
            width: 92%;
            padding: 0;
            background: #a9acb1;
            height: 8px !important;
            border: 0;
            position: relative;
            margin: 10px 8px 10px 8px;
        }

@media only screen and (max-width: 767px) {
    #Loading .section-modal .FiltersAll .SliderBox .ui-slider {
        width: 96%;
    }
}

#Loading .section-modal .FiltersAll .SliderBox .ui-slider .ui-slider-range {
    display: inline-block;
    color: #2e7bcc;
}

    #Loading .section-modal .FiltersAll .SliderBox .ui-slider .ui-slider-range.ui-widget-header.ui-corner-all {
        background: #a6d3f9 !important;
        border-radius: 0;
    }

#Loading .section-modal .FiltersAll .SliderBox .ui-slider .ui-slider-handle {
    width: 23px !important;
    height: 23px !important;
    z-index: 100 !important;
    border: 1px solid #b0b0b0;
    background-color: white !important;
    background-image: none !important;
    border-radius: 100%;
    cursor: move !important;
    top: -8px !important;
    margin-left: -10px;
    position: absolute;
    outline: none;
}

    #Loading .section-modal .FiltersAll .SliderBox .ui-slider .ui-slider-handle:hover, #Loading .section-modal .FiltersAll .SliderBox .ui-slider .ui-slider-handle:focus {
        background: white;
        border-color: #2e7bcc;
        -webkit-box-shadow: 0 0 0 2px #2e7bcc;
        box-shadow: 0 0 0 2px #2e7bcc;
    }

#Loading .section-modal .FiltersAll .SliderBox .CheckBoxTable {
    display: inline-block;
    width: 100%;
    padding: 0;
}

    #Loading .section-modal .FiltersAll .SliderBox .CheckBoxTable tr {
        display: block;
        text-align: left;
    }

        #Loading .section-modal .FiltersAll .SliderBox .CheckBoxTable tr > td {
            position: relative;
        }

    #Loading .section-modal .FiltersAll .SliderBox .CheckBoxTable .StopsCheckBoxList > td {
        display: inline-block;
        padding-right: 15px;
    }

    #Loading .section-modal .FiltersAll .SliderBox .CheckBoxTable .input-group {
        width: 100%;
    }

    #Loading .section-modal .FiltersAll .SliderBox .CheckBoxTable label {
        width: 100%;
        display: block;
        margin: 0;
        font-size: 13px;
        font-weight: normal;
        cursor: pointer;
        position: relative;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        -o-user-select: none;
        user-select: none;
    }

        #Loading .section-modal .FiltersAll .SliderBox .CheckBoxTable label:before {
            width: 18px;
            height: 18px;
            background: white;
            border: 1px solid #cdcdcd;
            border-radius: 0;
            content: "";
            display: inline-block;
            vertical-align: middle;
            margin-right: 5px;
        }

        #Loading .section-modal .FiltersAll .SliderBox .CheckBoxTable label:hover {
            border-color: #0c64ad;
        }

    #Loading .section-modal .FiltersAll .SliderBox .CheckBoxTable input {
        cursor: pointer;
        display: inline-block;
        position: absolute;
        top: 0;
        left: 0;
        display: none;
    }

        #Loading .section-modal .FiltersAll .SliderBox .CheckBoxTable input:checked + label:before {
            border-color: #a8a8a8;
            background: #f4f4f4;
        }

        #Loading .section-modal .FiltersAll .SliderBox .CheckBoxTable input:checked + label:after {
            position: relative;
            display: inline-block;
            font-style: normal;
            font-weight: 400;
            line-height: 1;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            outline: none;
            -webkit-box-shadow: none;
            box-shadow: none;
            background: transparent;
            border: 0;
            font-family: "FontAwesome";
            content: "ï€Œ";
            position: absolute;
            font-size: 14px;
            left: 2px;
            top: 3px;
            color: #0c64ad;
        }

#Loading .section-modal .FiltersAll div[class*=ShowPriceDiv] .SliderBox,
#Loading .section-modal .FiltersAll div[class*=ShowDurationDiv] .SliderBox,
#Loading .section-modal .FiltersAll div[class*=ShowDepartureDiv] .SliderBox,
#Loading .section-modal .FiltersAll div[class*=ShowReturnDiv] .SliderBox {
    margin: 0;
}

#Loading .section-modal .FiltersAll div[class*=DepartTimeDiv] .SliderBoxInside .SliderLabelSub,
#Loading .section-modal .FiltersAll div[class*=ReturnTimeDiv] .SliderBoxInside .SliderLabelSub {
    float: left;
    text-align: left;
    margin-bottom: 15px;
    color: #818181;
}

#Loading .section-modal .FiltersAll div[class*=DepartTimeDiv] .SliderBoxInside .SliderLabel,
#Loading .section-modal .FiltersAll div[class*=ReturnTimeDiv] .SliderBoxInside .SliderLabel {
    float: right;
    text-align: right;
    margin-bottom: 15px;
    color: #2e7bcc;
    font-weight: bold;
}

#Loading .section-modal .FiltersAll div[class*=DepartTimeDiv] .SliderBoxInside .ui-slider,
#Loading .section-modal .FiltersAll div[class*=ReturnTimeDiv] .SliderBoxInside .ui-slider {
    clear: both;
}

    #Loading .section-modal .FiltersAll div[class*=DepartTimeDiv] .SliderBoxInside .ui-slider:not(:last-child),
    #Loading .section-modal .FiltersAll div[class*=ReturnTimeDiv] .SliderBoxInside .ui-slider:not(:last-child) {
        margin-bottom: 15px;
    }

#Loading .section-modal .FiltersAll div[class*=ShowAirlinesDiv] .SliderBox .FilterSub {
    color: #818181;
    position: absolute;
    top: 8px;
    right: 8px;
}

    #Loading .section-modal .FiltersAll div[class*=ShowAirlinesDiv] .SliderBox .FilterSub .AirlinesAll,
    #Loading .section-modal .FiltersAll div[class*=ShowAirlinesDiv] .SliderBox .FilterSub .AirlinesNone {
        color: #818181;
        background: transparent;
        font-size: 14px;
        border: 0;
        padding: 0;
        font-weight: normal;
        display: inline-block;
        cursor: pointer;
    }

        #Loading .section-modal .FiltersAll div[class*=ShowAirlinesDiv] .SliderBox .FilterSub .AirlinesAll:hover,
        #Loading .section-modal .FiltersAll div[class*=ShowAirlinesDiv] .SliderBox .FilterSub .AirlinesNone:hover {
            text-decoration: underline;
        }

#Loading .section-modal .FiltersAll div[class*=ShowAirlinesDiv] .SliderBox .CheckBoxTable {
    padding: 10px 0;
}

    #Loading .section-modal .FiltersAll div[class*=ShowAirlinesDiv] .SliderBox .CheckBoxTable tr {
        width: 100%;
        display: block;
        text-align: left;
    }

@media screen and (max-width: 1199px) {
    #Loading .section-modal .FiltersAll div[class*=ShowAirlinesDiv] .SliderBox .CheckBoxTable tr {
        width: 50%;
        display: block;
        float: left;
    }
}

#Loading .section-modal .FiltersAll div[class*=ShowAirlinesDiv] .SliderBox .CheckBoxTable td {
    width: 100%;
    display: block;
    text-align: left;
    padding-bottom: 10px;
}

@media only screen and (max-width: 767px) {
    #Loading .section-modal .FiltersAll > div[class*=Show] {
        border: 0;
    }
}

#Loading .block-loading {
    padding: 2em;
    margin-bottom: 15px;
    margin-top: 45px;
    border: 1px solid #e1e1e1;
}

@media only screen and (max-width: 767px) {
    #Loading .block-loading {
        padding: 1em;
    }
}

@media screen and (max-width: 991px) {
    #Loading .block-loading {
        margin-top: 10px;
    }
}

#Loading .block-loading .loading-bar {
    border: 1px solid #e1e1e1;
    border-radius: 20px;
    padding: 5px;
    margin: 5px 0 10px;
    background: white;
}

#Loading .block-loading .progress {
    height: 15px;
    border-radius: 6px;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
}

    #Loading .block-loading .progress .progress-bar {
        background-color: #a6d3f9;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

#Loading .block-loading h6 {
    font-size: 14px;
    margin: 20px 0 10px;
}

#Loading .block-destination {
    background: #f8f8f8;
    border: 1px solid #e1e1e1;
    color: white;
}

    #Loading .block-destination .top {
        text-align: center;
        padding: 1em;
    }

        #Loading .block-destination .top .icon-logo {
            background-image: url("/sites/1/Images/V3/sprite-all.png?v=2");
            background-repeat: no-repeat;
            position: relative;
            display: inline-block;
            content: "";
            padding: 0;
            outline: none;
            -webkit-box-shadow: none;
            box-shadow: none;
            border: 0;
            background-position: 0 -350px;
            width: 240px;
            height: 60px;
        }

    #Loading .block-destination .middle {
        text-align: center;
        padding: 2em 0;
        border-top: 1px dotted #e1e1e1;
        border-bottom: 1px dotted #e1e1e1;
        background: white;
    }

        #Loading .block-destination .middle h5 {
            font-size: 16px;
            line-height: 1.5;
            color: #676767;
        }

@media only screen and (max-width: 767px) {
    #Loading .block-destination .middle h5 {
        font-size: 16px;
        padding: 0 10px;
    }
}

#Loading .block-destination .middle strong {
    font-size: 24px;
    font-weight: bold;
    color: #3f4d61;
    text-transform: uppercase;
    margin: 5px 0;
    display: inline-block;
}

@media only screen and (max-width: 767px) {
    #Loading .block-destination .middle strong {
        font-size: 16px;
    }
}

#Loading .block-destination .bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 25px 20px;
}

@media only screen and (max-width: 767px) {
    #Loading .block-destination .bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@media screen and (max-width: 991px) {
    #Loading .block-destination .bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

#Loading .block-destination .bottom .left {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

@media only screen and (max-width: 767px) {
    #Loading .block-destination .bottom .left {
        width: 100%;
        margin: 5px 0 10px;
        border: 0;
        padding: 0;
        height: auto;
    }
}

@media screen and (max-width: 991px) {
    #Loading .block-destination .bottom .left {
        width: 100%;
        margin: 0;
    }
}

#Loading .block-destination .bottom .left .icon-people {
    background-image: url("/sites/1/Images/V3/sprite-all.png?v=2");
    background-repeat: no-repeat;
    position: relative;
    display: inline-block;
    content: "";
    padding: 0;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0;
    background-position: -250px -342px;
    width: 70px;
    height: 85px;
    opacity: 0.5;
    margin-right: 10px;
    margin-top: -10px;
}

#Loading .block-destination .bottom .left h1 {
    font-size: 26px;
    color: #0c64ad;
    font-weight: bold;
    margin: 0 0 10px 0;
}

#Loading .block-destination .bottom .left h4 {
    font-size: 18px;
    color: #3f4d61;
    margin: 0 0 5px 0;
}

#Loading .block-destination .bottom .left p {
    font-size: 12px;
    color: #3f4d61;
    margin: 0;
}

@media only screen and (min-width: 1024px) and (max-width: 1199px) {
    #Loading .block-destination .bottom .left h1 {
        font-size: 24px;
    }

    #Loading .block-destination .bottom .left img {
        margin-left: 0;
    }
}

#Loading .block-destination .bottom .left a:hover h1,
#Loading .block-destination .bottom .left a:hover h4 {
    text-decoration: underline;
}

#Loading .block-destination .bottom .right {
    width: 50%;
    position: relative;
    padding: 0 20px;
}

@media screen and (max-width: 991px) {
    #Loading .block-destination .bottom .right {
        display: none;
    }
}

#Loading .block-destination .bottom .right h4 {
    font-size: 18px;
    color: #3f4d61;
    font-weight: bold;
    margin: 0 0 10px 0;
}

#Loading .block-destination .bottom .right p {
    font-size: 14px;
    color: #3f4d61;
    margin: 0;
    padding-right: 80px;
}

#Loading .block-destination .bottom .right .icon-smartpledge {
    background-image: url("/sites/1/Images/V3/sprite-all.png?v=2");
    background-repeat: no-repeat;
    position: relative;
    display: inline-block;
    content: "";
    padding: 0;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0;
    background-position: -338px -345px;
    width: 100px;
    height: 55px;
    position: absolute;
    top: -15px;
    right: -10px;
}

#Loading .section-banner-right {
    margin-top: 45px;
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {
    #Loading .section-banner-right {
        display: block;
    }
}

@media screen and (max-width: 991px) {
    #Loading .section-banner-right {
        margin-top: 10px;
    }
}

@media screen and (min-width: 1200px) and (max-width: 1400px) {
    #Loading .section-banner-right {
        display: block;
    }
}

/* Fixed bar
---------------------------------------
*/
.section-bottom-fixed {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1042;
    width: 100%;
}

@media only screen and (min-width: 1024px) {
    .section-bottom-fixed.nav-call {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        color: white;
        font-size: 16px;
        font-weight: bold;
        padding: 2px 0;
        background: rgba(0, 0, 0, 0.7);
        -webkit-box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
        box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
    }

        .section-bottom-fixed.nav-call a {
            background: #ff7a3a;
            border: 1px solid #ff6921;
            text-align: center;
            color: #d34500;
            -webkit-transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
            -o-transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
            transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
            cursor: pointer;
            outline: none;
            -webkit-box-shadow: 1px, 2px, 2px, rgba(0, 0, 0, 0.3);
            -moz-box-shadow: 1px, 2px, 2px, rgba(0, 0, 0, 0.3);
            -ms-box-shadow: 1px, 2px, 2px, rgba(0, 0, 0, 0.3);
            -o-user-select: 1px, 2px, 2px, rgba(0, 0, 0, 0.3);
            box-shadow: 1px, 2px, 2px, rgba(0, 0, 0, 0.3);
            border-width: 1px;
            background: transparent;
            color: white;
            padding: 5px 10px;
            border-radius: 20px;
            margin-left: 10px;
        }

            .section-bottom-fixed.nav-call a:hover {
                background: #ff5e11;
            }

            .section-bottom-fixed.nav-call a:active {
                background: #ba3c00;
                outline: none;
            }

            .section-bottom-fixed.nav-call a:focus {
                outline: none;
            }

        .section-bottom-fixed.nav-call .group-left {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
        }

            .section-bottom-fixed.nav-call .group-left h4 {
                margin-bottom: 5px;
            }

        .section-bottom-fixed.nav-call .group-right {
            border-left: 1px dotted #7f7f7f;
            padding-left: 20px;
            margin-left: 20px;
            min-width: 350px;
        }

            .section-bottom-fixed.nav-call .group-right .NewsletterFormDiv {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-orient: vertical;
                -webkit-box-direction: normal;
                -ms-flex-direction: column;
                flex-direction: column;
                position: relative;
            }

                .section-bottom-fixed.nav-call .group-right .NewsletterFormDiv .NewsletterRow {
                    position: relative;
                    z-index: 1;
                }

                    .section-bottom-fixed.nav-call .group-right .NewsletterFormDiv .NewsletterRow .NewsletterEmailLabel {
                        margin-bottom: 5px;
                    }

                    .section-bottom-fixed.nav-call .group-right .NewsletterFormDiv .NewsletterRow .NewsletterEmail {
                        width: 70%;
                    }

                        .section-bottom-fixed.nav-call .group-right .NewsletterFormDiv .NewsletterRow .NewsletterEmail .form-control {
                            display: inline-block;
                            width: 100%;
                            padding: 0 15px;
                            height: 38px;
                            line-height: 38px;
                            margin-bottom: 0;
                            border-radius: 2px 0 0 2px;
                            background: white;
                            border: 1px solid #e1e1e1;
                            font-weight: normal;
                            font-size: 12px;
                            color: black;
                            outline: none;
                            z-index: 2;
                            cursor: pointer;
                            -webkit-box-shadow: none;
                            box-shadow: none;
                        }

                .section-bottom-fixed.nav-call .group-right .NewsletterFormDiv .NewsletterButtonDiv {
                    margin-top: -38px;
                    margin-left: 70%;
                    position: relative;
                    z-index: 2;
                }

                    .section-bottom-fixed.nav-call .group-right .NewsletterFormDiv .NewsletterButtonDiv .NewsletterButton {
                        background: #0c64ad;
                        border: 1px solid #0a5695;
                        text-align: center;
                        color: #052d4e;
                        -webkit-transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
                        -o-transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
                        transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
                        cursor: pointer;
                        outline: none;
                        -webkit-box-shadow: 1px, 2px, 2px, rgba(0, 0, 0, 0.3);
                        -moz-box-shadow: 1px, 2px, 2px, rgba(0, 0, 0, 0.3);
                        -ms-box-shadow: 1px, 2px, 2px, rgba(0, 0, 0, 0.3);
                        -o-user-select: 1px, 2px, 2px, rgba(0, 0, 0, 0.3);
                        box-shadow: 1px, 2px, 2px, rgba(0, 0, 0, 0.3);
                        color: white;
                        z-index: 11;
                        padding: 0 15px;
                        height: 38px;
                    }

                        .section-bottom-fixed.nav-call .group-right .NewsletterFormDiv .NewsletterButtonDiv .NewsletterButton:hover {
                            background: #094e87;
                        }

                        .section-bottom-fixed.nav-call .group-right .NewsletterFormDiv .NewsletterButtonDiv .NewsletterButton:active {
                            background: #041f36;
                            outline: none;
                        }

                        .section-bottom-fixed.nav-call .group-right .NewsletterFormDiv .NewsletterButtonDiv .NewsletterButton:focus {
                            outline: none;
                        }

                .section-bottom-fixed.nav-call .group-right .NewsletterFormDiv .FooterVal {
                    position: relative;
                    font-size: 12px;
                    font-weight: normal;
                    margin-top: 5px;
                }
}

@media only screen and (max-width: 767px) {
    .section-bottom-fixed.nav-call-mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        color: white;
        font-size: 12px;
        text-transform: uppercase;
        padding: 0 0;
        height: 40px;
        -webkit-box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
        box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
        background: #293d54;
    }

        .section-bottom-fixed.nav-call-mobile .call-button-left,
        .section-bottom-fixed.nav-call-mobile .call-button-right {
            width: 60px;
            margin-top: -5px;
        }

            .section-bottom-fixed.nav-call-mobile .call-button-left a,
            .section-bottom-fixed.nav-call-mobile .call-button-right a {
                color: white;
                background: #ff7a3a;
                border: 1px solid #ff6921;
                text-align: center;
                color: #d34500;
                -webkit-transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
                -o-transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
                transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
                cursor: pointer;
                outline: none;
                -webkit-box-shadow: 1px, 2px, 2px, rgba(0, 0, 0, 0.3);
                -moz-box-shadow: 1px, 2px, 2px, rgba(0, 0, 0, 0.3);
                -ms-box-shadow: 1px, 2px, 2px, rgba(0, 0, 0, 0.3);
                -o-user-select: 1px, 2px, 2px, rgba(0, 0, 0, 0.3);
                box-shadow: 1px, 2px, 2px, rgba(0, 0, 0, 0.3);
                color: white;
                display: block;
                padding: 4px 3px 8px;
                border-radius: 2px;
                font-weight: bold;
                text-align: center;
                -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
                box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
            }

                .section-bottom-fixed.nav-call-mobile .call-button-left a:hover,
                .section-bottom-fixed.nav-call-mobile .call-button-right a:hover {
                    background: #ff5e11;
                }

                .section-bottom-fixed.nav-call-mobile .call-button-left a:active,
                .section-bottom-fixed.nav-call-mobile .call-button-right a:active {
                    background: #ba3c00;
                    outline: none;
                }

                .section-bottom-fixed.nav-call-mobile .call-button-left a:focus,
                .section-bottom-fixed.nav-call-mobile .call-button-right a:focus {
                    outline: none;
                }

                .section-bottom-fixed.nav-call-mobile .call-button-left a:before,
                .section-bottom-fixed.nav-call-mobile .call-button-right a:before {
                    background-image: url("/sites/1/Images/V3/sprite-all.png?v=2");
                    background-repeat: no-repeat;
                    position: relative;
                    display: inline-block;
                    content: "";
                    padding: 0;
                    outline: none;
                    -webkit-box-shadow: none;
                    box-shadow: none;
                    border: 0;
                    background-repeat: no-repeat;
                    vertical-align: middle;
                    width: 18px;
                    height: 18px;
                    display: inline-block;
                    margin: 0 auto -2px;
                }

            .section-bottom-fixed.nav-call-mobile .call-button-left a {
                border-radius: 0 100px 100px 0;
                padding: 3px 10px 3px 0px;
            }

                .section-bottom-fixed.nav-call-mobile .call-button-left a:before {
                    background-position: -186px -291px;
                }

            .section-bottom-fixed.nav-call-mobile .call-button-right a {
                border-radius: 100px 0 0 100px;
                padding: 3px 0 3px 10px;
            }

                .section-bottom-fixed.nav-call-mobile .call-button-right a:before {
                    background-position: -220px -291px;
                }

        .section-bottom-fixed.nav-call-mobile .call-detail {
            width: 100%;
            line-height: 1;
            text-align: center;
            padding: 0 5px;
            font-weight: bold;
        }
}

@media only screen and (min-width: 1200px) {
    .section-bottom-fixed.nav-call-mobile {
        display: none;
    }
}

/* Nav-bar Bottom */
.nav-call-bottom-mob {
    background: url("/sites/1/Images/V3/call-bottom-bg.jpg") no-repeat right bottom;
    background-size: cover;
    width: 100%;
    height: 70px;
    position: fixed;
    bottom: 0;
    left: 0;
    -webkit-filter: drop-shadow(0 1px 8px rgba(0, 0, 0, 0.2));
    filter: drop-shadow(0 1px 8px rgba(0, 0, 0, 0.2));
    display: none;
    padding-top: 0px;
    z-index: 100;
}

@media only screen and (max-width: 1023px) {
    .nav-call-bottom-mob {
        display: block;
    }
}

.nav-call-bottom-mob h4 {
    text-align: center;
    color: #16385a;
    font-size: 15px;
    margin: 0px 0;
    font-weight: 900;
}

.nav-call-bottom-mob p {
    font-size: 15px;
    text-align: center;
    margin: 0 auto 0px;
}

    .nav-call-bottom-mob p strong {
        font-weight: 600;
        color: #45ba11;
    }

.nav-call-bottom-mob .callNchat {
    /*         display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
  */
    position: relative;
    width: 58%;
    margin: 0 auto;
}

    .nav-call-bottom-mob .callNchat .call-but-bot {
        border-radius: 100px;
        background: #45ba11;
        -webkit-filter: drop-shadow(0 3px 6px rgba(69, 186, 17, 0.5));
        filter: drop-shadow(0 3px 6px rgba(69, 186, 17, 0.5));
        width: 100%;
        margin: 0 auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        color: #fff;
        height: 28px;
        font-size: 18px;
        font-weight: 600;
    }

        .nav-call-bottom-mob .callNchat .call-but-bot span {
            color: #fcff00;
        }

    .nav-call-bottom-mob .callNchat .chat-but-bot {
        background: #fff;
        border-radius: 100px;
        height: 48px;
        width: 48px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-filter: drop-shadow(0 5px 3px rgba(0, 0, 0, 0.2));
        filter: drop-shadow(0 5px 3px rgba(0, 0, 0, 0.2));
        position: absolute;
        right: -70px;
        top: -25px;
    }

        .nav-call-bottom-mob .callNchat .chat-but-bot img {
            height: 70%;
        }

.nav-call-bottom-mob .operator-na {
    position: absolute;
    background: url("/sites/1/Images/V3/call-center-header-008.png") no-repeat;
    width: 78px;
    height: 79px;
    content: "";
    display: block;
    top: 0;
    left: 0;
    -webkit-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7);
}

/* Header
---------------------------------------
*/
#CultureMenu li {
    float: left;
    border-bottom: 1px solid #ededed;
}

@media only screen and (min-width: 768px) {
    #CultureMenu li:nth-last-child(-n+2) {
        border: 0;
    }
}

#CultureMenu li > a {
    padding: 8px;
    color: transparent;
    font-size: 13px;
    position: relative;
    -webkit-transition: 0.1s ease-in-out;
    -o-transition: 0.1s ease-in-out;
    transition: 0.1s ease-in-out;
}

    #CultureMenu li > a:before {
        -webkit-box-shadow: 0px 1px 1px #aaa;
        box-shadow: 0px 1px 1px #aaa;
        background: url(/sites/1/Images/V3/sprite-flag.png?v=2) no-repeat;
        background-position: -140px -105px;
        background-repeat: no-repeat;
        border-radius: 100px;
        position: relative;
        display: inline-block;
        content: "";
        outline: none;
        width: 25px;
        height: 25px;
        vertical-align: middle;
    }

    #CultureMenu li > a:after {
        position: absolute;
        left: 41px;
        top: 10px;
        display: inline-block;
        content: "none";
        padding: 0;
        outline: none;
        width: 100px;
        color: black;
    }

    #CultureMenu li > a:hover {
        background: #f2f2f2;
        color: transparent;
    }

    #CultureMenu li > a:hover:before {
        -webkit-box-shadow: 0px 0px 0px 1px #2c99e8;
        box-shadow: 0px 0px 0px 1px #2c99e8;
    }

    #CultureMenu li > a:hover:after {
        color: #2c99e8;
    }

#CultureMenu li[data-cultureid="1"]:hover:after {
content: "English";
}

#CultureMenu li[data-cultureid="1"] > a:before {
background-position: -105px 0;
}

#CultureMenu li[data-cultureid="1"] > a:after {
content: "English";
}

#CultureMenu li[data-cultureid="2"]:hover:after {
content: "Spanish";
}

#CultureMenu li[data-cultureid="2"] > a:before {
background-position: 0px -105px;
}

#CultureMenu li[data-cultureid="2"] > a:after {
content: "Español Spanish";
}

#CultureMenu li[data-cultureid="3"]:hover:after {
content: "German";
}

#CultureMenu li[data-cultureid="3"] > a:before {
background-position: -35px -35px;
}

#CultureMenu li[data-cultureid="3"] > a:after {
content: "Deutsch German";
}

#CultureMenu li[data-cultureid="4"]:hover:after {
content: "French";
}

#CultureMenu li[data-cultureid="4"] > a:before {
background-position: 0 -35px;
}

#CultureMenu li[data-cultureid="4"] > a:after {
content: "Français French";
}

#CultureMenu li[data-cultureid="5"]:hover:after {
content: "Thai";
}

#CultureMenu li[data-cultureid="5"] > a:before {
background-position: -35px -105px;
}

#CultureMenu li[data-cultureid="5"] > a:after {
content: "ภาษาไทย Thai";
}

#CultureMenu li[data-cultureid="6"]:hover:after {
content: "Arabic";
}

#CultureMenu li[data-cultureid="6"] > a:before {
background-position: 0 0;
}

#CultureMenu li[data-cultureid="6"] > a:after {
content: "لعربي Arabic";
}

#CultureMenu li[data-cultureid="7"]:hover:after {
content: "Chinese Simplified";
}

#CultureMenu li[data-cultureid="7"] > a:before {
background-position: -35px 0;
}

#CultureMenu li[data-cultureid="7"] > a:after {
content: "简体中文 Chinese Simplified";
}

#CultureMenu li[data-cultureid="8"]:hover:after {
content: "Chinese Traditional";
}

#CultureMenu li[data-cultureid="8"] > a:before {
background-position: -35px 0;
}

#CultureMenu li[data-cultureid="8"] > a:after {
content: "繁體中文 Chinese Traditional";
}

#CultureMenu li[data-cultureid="11"]:hover:after {
content: "Farsi/Persian";
}

#CultureMenu li[data-cultureid="11"] > a:before {
background-position: -140px 0;
}

#CultureMenu li[data-cultureid="11"] > a:after {
content: "فارسی Farsi/Persian";
}

#CultureMenu li[data-cultureid="12"]:hover:after {
content: "Russian";
}

#CultureMenu li[data-cultureid="12"] > a:before {
background-position: -140px -70px;
}

#CultureMenu li[data-cultureid="12"] > a:after {
content: "Русский Russian";
}

#CultureMenu li[data-cultureid="13"]:hover:after {
content: "Portuguese";
}

#CultureMenu li[data-cultureid="13"] > a:before {
background-position: -105px -70px;
}

#CultureMenu li[data-cultureid="13"] > a:after {
content: "Português Portuguese";
}

#CultureMenu li[data-cultureid="14"]:hover:after {
content: "Korean";
}

#CultureMenu li[data-cultureid="14"] > a:before {
background-position: -70px -70px;
}

#CultureMenu li[data-cultureid="14"] > a:after {
content: "한국어 Korean";
}

#CultureMenu li[data-cultureid="15"]:hover:after {
content: "Japanese";
}

#CultureMenu li[data-cultureid="15"] > a:before {
background-position: -35px -70px;
}

#CultureMenu li[data-cultureid="15"] > a:after {
content: "日本語 Japanese";
}

#CultureMenu li[data-cultureid="16"]:hover:after {
content: "Italian";
}

#CultureMenu li[data-cultureid="16"] > a:before {
background-position: 0 -70px;
}

#CultureMenu li[data-cultureid="16"] > a:after {
content: "Italiano Italian";
}

#CultureMenu li[data-cultureid="17"]:hover:after {
content: "Indonesian";
}

#CultureMenu li[data-cultureid="17"] > a:before {
background-position: -140px -35px;
}

#CultureMenu li[data-cultureid="17"] > a:after {
content: "Bahasa Indonesia Indonesian";
}

#CultureMenu li[data-cultureid="19"]:hover:after {
content: "Hebrew";
}

#CultureMenu li[data-cultureid="19"] > a:before {
background-position: -105px -35px;
}

#CultureMenu li[data-cultureid="19"] > a:after {
content: "עברית Hebrew";
}

#CultureMenu li[data-cultureid="20"]:hover:after {
content: "Greek";
}

#CultureMenu li[data-cultureid="20"] > a:before {
background-position: -70px -35px;
}

#CultureMenu li[data-cultureid="20"] > a:after {
content: "Ελληνικά Greek";
}

#CultureMenu li[data-cultureid="21"]:hover:after {
content: "Czech";
}

#CultureMenu li[data-cultureid="21"] > a:before {
background-position: -70px 0;
}

#CultureMenu li[data-cultureid="21"] > a:after {
content: "čeština Czech";
}

#CultureMenu li[data-cultureid="22"]:hover:after {
content: "Vietnamese";
}

#CultureMenu li[data-cultureid="22"] > a:before {
background-position: -105px -105px;
}

#CultureMenu li[data-cultureid="22"] > a:after {
content: "Tiếng Việt Vietnamese";
}

#CultureMenu li[data-cultureid="23"]:hover:after {
content: "Turkish";
}

#CultureMenu li[data-cultureid="23"] > a:before {
background-position: -70px -105px;
}

#CultureMenu li[data-cultureid="23"] > a:after {
content: "Türkçe Turkish";
}
          
@media (min-width: 768px) and (max-height: 758px) {
    #CurrencyMenu {
        max-height: 90vh;
        overflow-y: scroll;
    }
}

#CurrencyMenu .currency-suggest {
    display: table;
    width: 100%;
    margin-bottom: 9px;
}

    #CurrencyMenu .currency-suggest li {
        width: 33.333%;
        padding: 0 10px;
    }

#CurrencyMenu .currency-all {
    display: inline-block;
    width: 100%;
    margin-bottom: 9px;
}

    #CurrencyMenu .currency-all li {
        width: 33.333%;
        padding: 0 10px;
    }

#CurrencyMenu li:nth-last-child(-n+1) a {
    border: 0;
}

#CurrencyMenu li:nth-child(3n) {
    padding: 0;
}

#CurrencyMenu li.title {
    background: #f3f3f3;
    width: 100%;
    font-size: 12px;
    padding: 10px 14px;
    color: #9a9a9a;
    text-transform: uppercase;
    margin-bottom: 9px;
}

    #CurrencyMenu li.title:hover:before, #CurrencyMenu li.title:hover:after {
        display: none;
    }

#CurrencyMenu li > a {
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 8px;
    white-space: nowrap;
    font-size: 13px;
    outline: none;
    color: #676767;
    border-bottom: 1px solid #eeeeee;
    -webkit-transition: 0.1s ease-in-out;
    -o-transition: 0.1s ease-in-out;
    transition: 0.1s ease-in-out;
}

    #CurrencyMenu li > a strong {
        position: relative;
        display: inline-block;
        border-radius: 3px;
        font-size: 13px;
        outline: none;
        width: 40px;
        vertical-align: middle;
        text-align: center;
        color: #2c99e8;
        -webkit-transition: 0.1s ease-in-out;
        -o-transition: 0.1s ease-in-out;
        transition: 0.1s ease-in-out;
    }

    #CurrencyMenu li > a:hover {
        background: #f8f8f8;
    }

        #CurrencyMenu li > a:hover:before {
            background: #0c64ad;
            color: white;
            border-color: #0c64ad;
        }

        #CurrencyMenu li > a:hover:after {
            color: #2c99e8;
        }

#CurrencyMenu li.active a {
    background: #f8f8f8;
}

#CurrencyMenu li[data-currencyid="1"]:hover:after {
    content: "United States Dollar";
}

#CurrencyMenu li[data-currencyid="48"]:hover:after {
    content: "Euro";
}

#CurrencyMenu li[data-currencyid="2"]:hover:after {
    content: "United Kingdom Pounds";
}

#CurrencyMenu li[data-currencyid="67"]:hover:after {
    content: "India Rupees";
}

#CurrencyMenu li[data-currencyid="11"]:hover:after {
    content: "Australia Dollars";
}

#CurrencyMenu li[data-currencyid="29"]:hover:after {
    content: "Canada Dollars";
}

#CurrencyMenu li[data-currencyid="130"]:hover:after {
    content: "Singapore Dollars";
}

#CurrencyMenu li[data-currencyid="31"]:hover:after {
    content: "Switzerland Francs";
}

#CurrencyMenu li[data-currencyid="104"]:hover:after {
    content: "Malaysia Ringgits";
}

#CurrencyMenu li[data-currencyid="74"]:hover:after {
    content: "Japan Yen";
}

#CurrencyMenu li[data-currencyid="33"]:hover:after {
    content: "China Yuan Renminbi";
}

#CurrencyMenu li[data-currencyid="63"]:hover:after {
    content: "Hungary Forint";
}

#CurrencyMenu li[data-currencyid="4"]:hover:after {
    content: "United Arab Emirates Dirhams";
}

#CurrencyMenu li[data-currencyid="103"]:hover:after {
    content: "Mexico Pesos";
}

#CurrencyMenu li[data-currencyid="111"]:hover:after {
    content: "New Zealand Dollars";
}

#CurrencyMenu li[data-currencyid="169"]:hover:after {
    content: "South Africa Rand";
}

#CurrencyMenu li[data-currencyid="116"]:hover:after {
    content: "Philippines Pesos";
}

#CurrencyMenu li[data-currencyid="3"]:hover:after {
    content: "Thailand Baht";
}

#CurrencyMenu li[data-currencyid="64"]:hover:after {
    content: "Indonesia Rupiahs";
}

#CurrencyMenu li[data-currencyid="125"]:hover:after {
    content: "Saudi Arabia Riyals";
}

#CurrencyMenu li[data-currencyid="59"]:hover:after {
    content: "Hong Kong Dollars";
}

#CurrencyMenu li[data-currencyid="23"]:hover:after {
    content: "Brazil Reais";
}

#CurrencyMenu li[data-currencyid="145"]:hover:after {
    content: "Turkey Lira";
}

#CurrencyMenu li[data-currencyid="75"]:hover:after {
    content: "Kenya Shillings";
}

#CurrencyMenu li[data-currencyid="80"]:hover:after {
    content: "South Korea Won";
}

#CurrencyMenu li[data-currencyid="68"]:hover:after {
    content: "Iraq Dinars";
}

#CurrencyMenu li[data-currencyid="109"]:hover:after {
    content: "Norway Kroner";
}

#CurrencyMenu li[data-currencyid="81"]:hover:after {
    content: "Kuwait Dinars";
}

#CurrencyMenu li[data-currencyid="123"]:hover:after {
    content: "Russia Rubles";
}

#CurrencyMenu li[data-currencyid="129"]:hover:after {
    content: "Sweden Kronor";
}

#CurrencyMenu li[data-currencyid="41"]:hover:after {
    content: "Denmark Kroner";
}

#CurrencyMenu li[data-currencyid="45"]:hover:after {
    content: "Egypt Pounds";
}

#CurrencyMenu li[data-currencyid="117"]:hover:after {
    content: "Pakistan Rupees";
}

#CurrencyMenu li[data-currencyid="65"]:hover:after {
    content: "Israel New Shekels";
}

#CurrencyMenu li[data-currencyid="118"]:hover:after {
    content: "Poland Zlotych";
}

#CurrencyMenu li[data-currencyid="120"]:hover:after {
    content: "Qatar Riyals";
}

#CurrencyMenu li[data-currencyid="32"]:hover:after {
    content: "Chile Pesos";
}

#CurrencyMenu li[data-currencyid="34"]:hover:after {
    content: "Colombia Pesos";
}

#CurrencyMenu li[data-currencyid="148"]:hover:after {
    content: "Taiwan New Dollars";
}

#CurrencyMenu li[data-currencyid="10"]:hover:after {
    content: "Argentina Pesos";
}

#CurrencyMenu li[data-currencyid="39"]:hover:after {
    content: "Czech Republic Koruny";
}

#CurrencyMenu li[data-currencyid="156"]:hover:after {
    content: "Vietnam Dong";
}

#CurrencyMenu li[data-currencyid="112"]:hover:after {
    content: "Oman Rials";
}
   
header.header {     
    background: #0c64ad;
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1050;
}

@media only screen and (max-width: 767px) {
    header .header-logo {
        display: inline-block;
        float: left;
    }

        header .header-logo div {
            background: url(/sites/1/Images/V3/logo.svg) no-repeat;
            background-repeat: no-repeat;
            vertical-align: middle;
            width: 140px;
            height: 45px;
            padding: 5px 0;
            margin: 3px 0 2px;
        }
}

@media only screen and (min-width: 768px) {
    header .header-logo {
        display: inline-block;
        float: left;
    }

        header .header-logo div {
            background: url(/sites/1/Images/V3/logo.svg) no-repeat;
            background-repeat: no-repeat;
            padding: 0;
            margin-top: 8px;
            width: 220px;
            height: 75px;
        }
}

@media only screen and (max-width: 767px) {
    header .header-mobile {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        float: right;
        z-index: 999;
        padding: 0;
    }
}

header .header-mobile .hamburger {
    background: transparent;
    border: none;
    position: relative;
    display: inline-block;
}

    header .header-mobile .hamburger:hover, header .header-mobile .hamburger:focus, header .header-mobile .hamburger:active {
        outline: none;
    }

    header .header-mobile .hamburger > div {
        width: 20px;
        height: 44px;
        position: relative;
    }

    header .header-mobile .hamburger.is-closed .hamb-top {
        -webkit-transition: all 0.35s ease-in-out;
        background-color: white;
        top: 16px;
    }

    header .header-mobile .hamburger.is-closed .hamb-middle {
        background-color: white;
        margin-top: -1px;
        top: 50%;
    }

    header .header-mobile .hamburger.is-closed .hamb-bottom {
        -webkit-transition: all 0.35s ease-in-out;
        background-color: white;
        bottom: 16px;
    }

    header .header-mobile .hamburger.is-open .hamb-top {
        -webkit-transform: rotate(45deg);
        -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.73, 1, 0.28, 0.08);
        background-color: white;
        margin-top: -2px;
        top: 50%;
    }

    header .header-mobile .hamburger.is-open .hamb-middle {
        background-color: white;
        display: none;
    }

    header .header-mobile .hamburger.is-open .hamb-bottom {
        -webkit-transform: rotate(-45deg);
        -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.73, 1, 0.28, 0.08);
        background-color: white;
        margin-top: -2px;
        top: 50%;
    }

    header .header-mobile .hamburger.is-closed .hamb-top,
    header .header-mobile .hamburger.is-closed .hamb-middle,
    header .header-mobile .hamburger.is-closed .hamb-bottom, header .header-mobile .hamburger.is-open .hamb-top,
    header .header-mobile .hamburger.is-open .hamb-middle,
    header .header-mobile .hamburger.is-open .hamb-bottom {
        height: 2px;
        position: absolute;
        left: 0;
        width: 100%;
    }

@media only screen and (min-width: 768px) {
    header .header-mobile .hamburger {
        display: none;
    }
}

header .header-mobile .btn-call {
    top: 7px;
    right: 5px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 6px 0 10px;
    border: 0.11em solid white;
    border-radius: 4px;
    text-decoration: none;
    min-height: 38px;
    color: white;
    background-color: transparent;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

    header .header-mobile .btn-call:hover {
        background-color: #ff7a3a;
    }

    header .header-mobile .btn-call i {
        font-size: 24px;
        margin-right: 5px;
    }

    header .header-mobile .btn-call span {
        text-align: left;
        line-height: 1;
        font-weight: bold;
        font-size: 14px;
        text-transform: uppercase;
    }

@media only screen and (min-width: 768px) {
    header .header-mobile .btn-call {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    header .offcanvas-collapse {
        top: 50px;
    }

        header .offcanvas-collapse .modal-dialog {
            width: 260px;
            padding-bottom: 40px;
        }
}

@media only screen and (min-width: 768px) {
    header .offcanvas-collapse {
        padding: 0;
        top: 0;
        width: calc(100% - 220px);
        float: right;
        position: relative;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
        overflow: visible;
        background: transparent;
        -webkit-box-shadow: none;
        box-shadow: none;
        display: table-cell !important;
    }

        header .offcanvas-collapse .modal-dialog {
            background: transparent;
            -webkit-box-shadow: none;
            box-shadow: none;
            width: 100%;
        }
}

@media only screen and (max-width: 767px) {
    header .modal-dialog .menu-group {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

        header .modal-dialog .menu-group .culture-div {
            -webkit-box-ordinal-group: 1;
            -ms-flex-order: 0;
            order: 0;
        }

            header .modal-dialog .menu-group .culture-div ~ div {
                -webkit-box-ordinal-group: 3;
                -ms-flex-order: 2;
                order: 2;
            }

                header .modal-dialog .menu-group .culture-div ~ div ~ div {
                    -webkit-box-ordinal-group: 2;
                    -ms-flex-order: 1;
                    order: 1;
                }
}

@media only screen and (min-width: 768px) {
    header .modal-dialog {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

        header .modal-dialog .menu-group {
            display: block;
            float: left;
            padding-right: 20px;
        }
}

@media only screen and (max-width: 767px) {
    header .header-menu .item {
        display: block;
    }

        header .header-menu .item a {
            color: #3f4d61;
            padding: 12px 20px 12px 20px;
            display: inline-block;
            width: 100%;
            text-transform: uppercase;
            font-weight: 400;
        }

            header .header-menu .item a:hover, header .header-menu .item a:focus {
                color: #ff7a3a;
            }
}

@media only screen and (min-width: 768px) {
    header .header-menu ul {
        padding-left: 10px;
        margin: 20px 0 0;
        display: inline-block;
        float: right;
    }

    header .header-menu .item {
        display: inline-block;
        padding: 0 15px;
    }

        header .header-menu .item a {
            color: white;
            text-transform: uppercase;
            padding: 0 0 10px;
            height: 35px;
            display: inline-block;
            cursor: pointer;
            opacity: 0.7;
        }

            header .header-menu .item a:before {
                background: url(/sites/1/Images/V3/sprite-all.png?v=2) no-repeat;
                background-position: 0 0;
                background-repeat: no-repeat;
                display: inline-block;
                margin: 0 auto;
                width: 25px;
                height: 25px;
                vertical-align: middle;
                content: "";
                margin-right: 5px;
                -webkit-transform: scale(0.8);
                -ms-transform: scale(0.8);
                transform: scale(0.8);
            }

            header .header-menu .item a:hover {
                opacity: 1;
            }

        header .header-menu .item.flights a:before {
            background-position: -11px -69px;
        }

        header .header-menu .item.hotels a:before {
            background-position: -11px -109px;
        }

        header .header-menu .item.cars a:before {
            background-position: -11px -149px;
        }

        header .header-menu .item.cruises a:before {
            background-position: -11px -192px;
        }

        header .header-menu .item.events a:before {
            background-position: -11px -234px;
        }

        header .header-menu .item.group a:before {
            position: relative;
            display: inline-block;
            font-style: normal;
            font-weight: 400;
            line-height: 1;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            outline: none;
            -webkit-box-shadow: none;
            box-shadow: none;
            background: transparent;
            border: 0;
            font-family: "FontAwesome";
            content: "ïƒ€";
            font-size: 20px;
            margin: 0;
            top: 2px;
        }
}

@media only screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1199px) {
    header .header-menu .item.group a:before {
        display: none;
    }
}

@media only screen and (min-width: 768px) {
    header .header-menu .item.active a {
        font-weight: bold;
        border-bottom: 3px solid #ff7a3a;
        opacity: 1;
    }
}

@media only screen and (min-width: 768px) {
    header .header-menu .item:last-child {
        padding-right: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {
    header .header-menu {
        display: block;
        bottom: 25px;
    }

        header .header-menu ul {
            border: 0;
        }

        header .header-menu .item a:before {
            display: none;
        }
}

@media only screen and (min-width: 1200px) {
    header .header-menu {
        display: block;
    }
}

@media only screen and (max-width: 767px) {
    header .culture-div {
        display: table;
        width: 100%;
    }

        header .culture-div .culture-nav {
            float: none;
            margin: 0;
            padding: 0;
            border-bottom: 1px solid #e6e6e6;
        }

            header .culture-div .culture-nav > li {
                float: none;
                width: 100%;
                margin: 0;
            }

                header .culture-div .culture-nav > li.open > a {
                    background: #f3f3f3 !important;
                    -webkit-box-shadow: none;
                    box-shadow: none;
                    border: 0;
                }

                header .culture-div .culture-nav > li .caret {
                    float: right;
                    margin: 8px 0;
                }

            header .culture-div .culture-nav .dropdown-menu {
                background: transparent;
                border: 0;
                -webkit-box-shadow: none;
                box-shadow: none;
                position: relative;
                min-width: 0;
                width: 100%;
                margin: 0;
                padding: 0;
                border-radius: 0;
            }

                header .culture-div .culture-nav .dropdown-menu li {
                    position: relative;
                    width: 100%;
                }

                    header .culture-div .culture-nav .dropdown-menu li:hover:after {
                        position: absolute;
                        top: 30px;
                        left: 50%;
                        display: inline-block;
                        content: attr(data-cultureid);
                        white-space: nowrap;
                        width: auto;
                        height: 20px;
                        font-size: 12px;
                        color: black !important;
                        border-radius: 4px;
                        background: #e6e6e6;
                        border: 1px solid #cccccc;
                        -webkit-box-shadow: 0px 1px 4px #d9d9d9;
                        box-shadow: 0px 1px 4px #d9d9d9;
                        padding: 0 5px;
                        z-index: 11;
                        -webkit-animation: 1s ease 0s normal forwards 1 popup;
                        animation: 1s ease 0s normal forwards 1 popup;
                    }

                    header .culture-div .culture-nav .dropdown-menu li > a {
                        padding: 10px 0 15px 20px !important;
                    }

                        header .culture-div .culture-nav .dropdown-menu li > a:after {
                            left: 50px !important;
                            top: 15px !important;
                        }

            header .culture-div .culture-nav .dropdown .btn.culture-button {
                color: #3f4d61;
                padding: 12px 20px 12px 20px !important;
                display: inline-block;
                width: 100%;
                text-transform: uppercase;
                font-weight: 400;
                white-space: normal;
                text-align: left;
                font-size: 14px;
                background: transparent;
                border: 0;
            }

                header .culture-div .culture-nav .dropdown .btn.culture-button:hover, header .culture-div .culture-nav .dropdown .btn.culture-button:focus {
                    background: transparent !important;
                    -webkit-box-shadow: none;
                    box-shadow: none;
                    border: 0;
                    color: #ff7a3a;
                }
}

@media only screen and (min-width: 768px) {
    header .culture-div {
        float: right;
        display: inline-block;
        padding: 8px 0 0;
    }

        header .culture-div .culture-nav {
            margin: 0;
            padding: 0;
            margin-right: -5px;
            display: inline-block;
        }

            header .culture-div .culture-nav .dropdown-menu {
                margin: 0;
                padding: 12px 0 0;
            }

                header .culture-div .culture-nav .dropdown-menu .caret {
                    float: right;
                    margin: 4px 0 0 4px;
                    vertical-align: middle;
                }

                header .culture-div .culture-nav .dropdown-menu li {
                    position: relative;
                }

                    header .culture-div .culture-nav .dropdown-menu li:hover:after {
                        position: absolute;
                        top: 30px;
                        left: 50%;
                        display: inline-block;
                        content: attr(data-cultureid);
                        white-space: nowrap;
                        width: auto;
                        height: 20px;
                        font-size: 12px;
                        color: black !important;
                        border-radius: 4px;
                        background: #e6e6e6;
                        border: 1px solid #cccccc;
                        -webkit-box-shadow: 0px 1px 4px #d9d9d9;
                        box-shadow: 0px 1px 4px #d9d9d9;
                        padding: 0 5px;
                        z-index: 11;
                        -webkit-animation: 1s ease 0s normal forwards 1 popup;
                        animation: 1s ease 0s normal forwards 1 popup;
                    }

            header .culture-div .culture-nav .dropdown .btn.culture-button {
                display: inline-block;
                text-transform: uppercase;
                font-weight: 400;
                white-space: normal;
                text-align: left;
                font-size: 12px;
                line-height: 1;
                background: transparent !important;
                border-radius: 0;
                border: 0;
                border-left: 1px solid white;
                -webkit-box-shadow: none;
                box-shadow: none;
            }

                header .culture-div .culture-nav .dropdown .btn.culture-button:hover, header .culture-div .culture-nav .dropdown .btn.culture-button:focus {
                    background: transparent;
                    -webkit-box-shadow: none;
                    box-shadow: none;
                    color: #ff7a3a;
                    outline: none;
                }

        header .culture-div #CultureMenu {
            min-width: 500px;
            padding: 5px 0;
            border-radius: 3px;
        }

            header .culture-div #CultureMenu li {
                width: calc(50% - 10px);
                float: left;
                margin: 0 5px;
            }

        header .culture-div #CurrencyMenu {
            min-width: 740px;
            padding: 5px 0;
            border-radius: 3px;
        }

            header .culture-div #CurrencyMenu li {
                width: calc((100% / 3) - 10px);
                float: left;
                margin: 0 5px;
            }
}

header .culture-div ~ div {
    float: right;
}

    header .culture-div ~ div ~ div {
        clear: both;
    }

@media only screen and (max-width: 767px) {
    header .header-submenu {
        border-top: 1px solid #e6e6e6;
        margin: 5px 0;
        padding: 5px 0;
    }

        header .header-submenu a {
            color: #3f4d61;
            padding: 12px 20px 12px 20px;
            display: inline-block;
            width: 100%;
            text-transform: uppercase;
            font-weight: 400;
        }

            header .header-submenu a:hover, header .header-submenu a:focus {
                color: #ff7a3a;
            }
}

@media only screen and (min-width: 768px) {
    header .header-submenu {
        position: relative;
        display: inline-block;
        padding: 8px 0 0;
        float: right;
    }

        header .header-submenu .sub-item {
            display: inline-block;
            float: left;
            padding: 0 0;
        }

            header .header-submenu .sub-item a {
                color: white;
                font-size: 12px;
                text-transform: uppercase;
                padding: 0 8px;
                display: inline-block;
                cursor: pointer;
                line-height: 1;
            }

            header .header-submenu .sub-item:not(:last-child) a {
                border-right: 1px solid white;
            }
}

@media only screen and (max-width: 767px) {
    header .header-phone {
        padding: 12px 20px 12px 20px;
    }

        header .header-phone a {
            display: inline-block;
            width: 100%;
            font-weight: bold;
        }

        header .header-phone .detail {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
        }

        header .header-phone .phone-us {
            font-size: 18px;
            -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
            order: 1;
        }

        header .header-phone .phone-int {
            -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
            order: 2;
            font-size: 16px;
            margin-top: 5px;
        }

        header .header-phone .phone-title {
            font-size: 12px;
            margin-bottom: 3px;
            font-weight: 700;
            -webkit-box-ordinal-group: 1;
            -ms-flex-order: 0;
            order: 0;
        }

        header .header-phone img {
            display: none;
        }
}

@media only screen and (min-width: 768px) {
    header .header-phone {
        float: right;
        color: white;
        display: block;
    }

        header .header-phone .detail {
            position: relative;
            text-align: right;
            display: inline-block;
            padding-top: 10px;
        }

        header .header-phone a {
            display: block;
            text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.7);
        }

        header .header-phone .phone-us {
            color: #ff7a3a;
            font-size: 26px;
            font-weight: bold;
            line-height: 0;
        }

            header .header-phone .phone-us:before {
                position: relative;
                display: inline-block;
                font-style: normal;
                font-weight: 400;
                line-height: 1;
                padding: 0;
                -webkit-font-smoothing: antialiased;
                -moz-osx-font-smoothing: grayscale;
                outline: none;
                -webkit-box-shadow: none;
                box-shadow: none;
                background: transparent;
                border: 0;
                font-family: "FontAwesome";
                content: "ï‚•";
                color: #0c64ad;
                background: #ff7a3a;
                border-radius: 20px;
                font-size: 20px;
                line-height: 25px;
                text-align: center;
                width: 25px;
                height: 25px;
                vertical-align: middle;
                margin-right: 5px;
            }

        header .header-phone .phone-int {
            color: white;
            font-size: 16px;
            font-weight: bold;
        }

        header .header-phone .phone-title {
            font-size: 12px;
        }

        header .header-phone .operator {
            margin-top: 10px;
            float: right;
            display: inline-block;
            width: 94px;
            height: 74px;
            background: url(/sites/1/Images/V3/sprite-all.png?v=2) no-repeat;
            background-position: -93px -188px;
            background-repeat: no-repeat;
        }
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {
    header .header-phone .operator {
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
    header .header-phone {
        display: none;
    }
}

/* HEADER CALL GREENY */
.header-phone-new {
    float: right;
    color: #fff;
    padding-right: 83px;
    padding-top: 10px;
    position: relative;
    background: #da8619;
    min-height: 84px;
    text-align: right;
}

@media only screen and (min-width: 768px) {
    .header-phone-new {
        background: url("/sites/1/Images/V3/header-call-shade-bg.png?v=2") no-repeat bottom right;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
    .header-phone-new {
        display: none;
    }
}

.header-phone-new::after {
    background: url("/sites/1/Images/V3/call-center-header-008.png") no-repeat;
    width: 63px;
    height: 64px;

    content: "";
    display: block;
    position: absolute;
    right: 10px;
    top: 10px;
}

.header-phone-new .message {
    font-size: 18px;
    font-weight: 600;
}

.header-phone-new .first-message {
    font-size: 14px;
}

    .header-phone-new .first-message strong {
        color: #fcff00;
    }

.header-phone-new .call-greeny a {
    background: #45ba11;
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    border-radius: 100px;
    height: 25px;
    padding: 0 8px 0 12px;
    display: inline-block;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    float: right;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .header-phone-new .call-greeny a::before {
        background: url("/sites/1/Images/V3/header-call-mini-icon.png?v=2") no-repeat;
        position: absolute;
        left: -9px;
        top: 5px;
        content: "";
        display: block;
        width: 17px;
        height: 17px;
    }

    .header-phone-new .call-greeny a span {
        color: #fcff00;
    }

/* Footer
---------------------------------------
*/
footer {
    display: table;
    width: 100%;
    float: left;
}

    footer .footer-wrap-top {
        background: #0c64ad;
    }

@media only screen and (max-width: 767px) {
    footer .footer-wrap-top {
        display: none;
    }
}

footer .footer-wrap-top .title {
    font-size: 16px;
    font-weight: bold;
    color: white;
    margin: 0 30px 0 0;
    display: table;
    width: 100%;
}

    footer .footer-wrap-top .title p {
        font-weight: normal;
        padding: 10px 0;
        font-size: 14px;
        opacity: 0.8;
        display: block;
        margin: 0;
        min-height: 40px;
    }

footer .footer-wrap-top .menu-group {
    position: relative;
    display: table;
    width: 100%;
    margin-bottom: 30px;
    margin-top: 30px;
    z-index: 11;
}

    footer .footer-wrap-top .menu-group ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    footer .footer-wrap-top .menu-group li {
        display: inline-block;
        float: left;
    }

    footer .footer-wrap-top .menu-group hr {
        opacity: 0.4;
        margin: 10px 0;
    }

    footer .footer-wrap-top .menu-group a {
        display: block;
        color: white;
        opacity: 0.8;
        margin-right: 3px;
        line-height: 1.5;
    }

        footer .footer-wrap-top .menu-group a:hover {
            text-decoration: underline;
        }

footer .footer-wrap-top .social-group {
    width: 20%;
    margin-right: 40%;
    display: inline-block;
    float: left;
}

    footer .footer-wrap-top .social-group a {
        width: 40px;
        height: 40px;
        display: inline-block;
        text-align: center;
        border: 1px solid white;
        border-radius: 20px;
        padding: 8px;
        margin-right: 5px;
    }

        footer .footer-wrap-top .social-group a i {
            color: white;
            font-size: 20px;
            line-height: 1.2;
        }

footer .footer-wrap-top .download-group {
    width: 40%;
    position: relative;
    display: inline-block;
    float: left;
}

    footer .footer-wrap-top .download-group .mobile-frame {
        position: absolute;
        bottom: 0;
        right: 0;
        height: 200px;
        overflow: hidden;
    }

        footer .footer-wrap-top .download-group .mobile-frame span {
            background: url(/sites/1/Images/V3/sprite-all.png?v=2) no-repeat;
            background-position: -247px 0;
            background-repeat: no-repeat;
            content: "";
            width: 191px;
            height: 340px;
            display: inline-block;
            position: relative;
        }

    footer .footer-wrap-top .download-group a {
        display: inline-block;
        border: 1px solid white;
        color: white;
        padding: 8px 12px;
        border-radius: 2px;
        margin-bottom: 30px;
    }

        footer .footer-wrap-top .download-group a i {
            color: white;
            font-size: 24px;
            margin-right: 5px;
            vertical-align: middle;
            margin-top: -5px;
        }

footer .footer-wrap-bottom {
    padding: 25px 0 60px;
    background: #f4f4f4;
}

    footer .footer-wrap-bottom p {
        color: gray;
        font-size: 13px;
        opacity: 0.8;
    }

    footer .footer-wrap-bottom .pic-trust {
        background: url(/sites/1/Images/V3/trust-1.png) white;
        background-size: 98% auto;
        background-position: center;
        background-repeat: no-repeat;
        border-radius: 3px;
        content: "";
        width: 250px;
        height: 80px;
        display: block;
        position: relative;
        margin: 15px auto;
    }

@media only screen and (max-width: 767px) {
    footer .footer-wrap-bottom {
        padding: 0px 0;
    }

        footer .footer-wrap-bottom p {
            font-size: 11px;
        }

            footer .footer-wrap-bottom p:first-child {
                display: none;
            }

        footer .footer-wrap-bottom .pic-trust {
            display: none;
        }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
    footer .footer-wrap-top .title {
        margin: 20px 0 10px;
    }

    footer .footer-wrap-top .menu-group {
        margin: 10px 0;
    }

        footer .footer-wrap-top .menu-group li {
            width: 20%;
        }

            footer .footer-wrap-top .menu-group li:nth-child(3) {
                display: none;
            }

    footer .footer-wrap-top .social-group {
        width: 27%;
        margin-right: 35%;
    }

    footer .footer-wrap-top .download-group {
        width: 38%;
    }

        footer .footer-wrap-top .download-group .mobile-frame {
            display: none;
        }

        footer .footer-wrap-top .download-group a {
            padding: 6px 7px;
        }
}

@media only screen and (min-width: 1024px) and (max-width: 1199px) {
    footer .footer-wrap-top .menu-group li {
        width: 18%;
        float: none;
    }

    footer .footer-wrap-top .social-group {
        margin-right: 30%;
    }

    footer .footer-wrap-top .download-group {
        width: 50%;
    }

        footer .footer-wrap-top .download-group a {
            padding: 6px 10px;
        }
}

/* Sidebar
---------------------------------------
*/
.offcanvas-collapse {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: auto;
    height: 100% !important;
    padding: 0 !important;
    overflow-y: auto;
    overflow-x: hidden;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: transparent;
    width: 100%;
}

    .offcanvas-collapse.collapsing {
        overflow: visible;
    }

    .offcanvas-collapse .modal-dialog {
        padding: 0;
        margin: 0;
        /*width: 320px;*/
        float: right;
        min-height: 100%;
        background: white;
        -webkit-box-shadow: -3px 0 10px rgba(0, 0, 0, 0.1);
        box-shadow: -3px 0 10px rgba(0, 0, 0, 0.1);
    }

        .offcanvas-collapse .modal-dialog .modal-body {
            padding: 0;
        }

@media only screen and (min-width: 768px) {
    .offcanvas-collapse .modal-dialog {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.overlay {
    display: block;
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 11;
}

/* Black Layer
---------------------------------------
*/
@-webkit-keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }

    50% {
        -webkit-transform: translate3d(0, 30px, 0);
        transform: translate3d(0, 30px, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }

    50% {
        -webkit-transform: translate3d(0, 30px, 0);
        transform: translate3d(0, 30px, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes slideInUp {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }

    50% {
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInUp {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }

    50% {
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

#modalBlackLayer {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    z-index: 16000001;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.8);
}

    #modalBlackLayer:not(.in) .modal-dialog {
        -webkit-transform: translate3d(0, 100px, 0);
        transform: translate3d(0, 100px, 0);
    }

    #modalBlackLayer .modal-dialog {
        margin: 0 !important;
        padding: 0 !important;
        width: 100%;
        height: 100%;
        top: 0;
    }

    #modalBlackLayer .modal-content {
        border-radius: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
        border: 0;
        background: transparent;
    }

    #modalBlackLayer .content-wrap {
        width: 100%;
        height: 100%;
        display: block;
        position: relative;
    }

        #modalBlackLayer .content-wrap .content-group {
            width: 100%;
            height: 100%;
            display: block;
            position: relative;
        }

            #modalBlackLayer .content-wrap .content-group.android .row-header {
                padding: 15px 15px 0;
            }

                #modalBlackLayer .content-wrap .content-group.android .row-header img {
                    width: 180px;
                    display: block;
                    margin: 0 auto 0;
                }

                #modalBlackLayer .content-wrap .content-group.android .row-header .close {
                    opacity: 1;
                    color: white;
                    text-shadow: none;
                    margin: 0 10px;
                    font-size: 32px;
                    font-weight: normal;
                    line-height: 1;
                }

            #modalBlackLayer .content-wrap .content-group.android .row-body {
                color: white;
                text-align: center;
            }

                #modalBlackLayer .content-wrap .content-group.android .row-body .trustpilot-widget {
                    display: inline-block;
                    margin: 15px 0;
                    border: 1px solid white;
                    border-radius: 3px;
                    padding: 10px 0;
                }

            #modalBlackLayer .content-wrap .content-group.android .row-footer {
                text-align: center;
                position: fixed;
                bottom: 240px;
            }

@media screen and (max-height: 640px) {
    #modalBlackLayer .content-wrap .content-group.android .row-footer {
        position: relative;
        bottom: 0;
    }
}

#modalBlackLayer .content-wrap .content-group.android .row-footer h4 {
    font-size: 18px;
    line-height: 1.4;
    padding: 10px 1.5em 0;
    position: relative;
    text-align: center;
    color: white;
}

#modalBlackLayer .content-wrap .content-group.android .row-footer .icon-arrow {
    position: relative;
    display: inline-block;
    margin: 1em auto 0;
    -webkit-animation-duration: 0.9s;
    animation-duration: 0.9s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}

    #modalBlackLayer .content-wrap .content-group.android .row-footer .icon-arrow:before {
        display: block;
        margin: 0 auto;
        margin-right: 9px;
        content: "";
        width: 3px;
        height: 40px;
        background: white;
    }

    #modalBlackLayer .content-wrap .content-group.android .row-footer .icon-arrow:after {
        display: block;
        margin: 0 auto;
        content: "";
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 20px solid white;
    }

#modalBlackLayer .content-wrap .content-group.ios .row-header {
    padding: 15px 15px 0;
}

    #modalBlackLayer .content-wrap .content-group.ios .row-header img {
        width: 180px;
        display: block;
        margin: 0 auto 0;
    }

    #modalBlackLayer .content-wrap .content-group.ios .row-header .close {
        opacity: 1;
        color: white;
        text-shadow: none;
        margin: 0 10px;
        font-size: 32px;
        font-weight: normal;
        line-height: 1;
    }

#modalBlackLayer .content-wrap .content-group.ios .row-body {
    color: white;
    text-align: center;
}

    #modalBlackLayer .content-wrap .content-group.ios .row-body .trustpilot-widget {
        display: inline-block;
        margin: 15px 0;
        border: 1px solid white;
        border-radius: 3px;
        padding: 10px 0;
    }

#modalBlackLayer .content-wrap .content-group.ios .row-footer {
    position: fixed;
    bottom: 90px;
    width: 100%;
}

@media screen and (max-height: 480px) {
    #modalBlackLayer .content-wrap .content-group.ios .row-footer {
        position: relative;
        bottom: 0;
        top: 80px;
    }
}

#modalBlackLayer .content-wrap .content-group.ios .row-footer h4 {
    font-size: 18px;
    line-height: 1.4;
    padding: 0 1.5em;
    position: relative;
    text-align: center;
    color: white;
}

#modalBlackLayer .content-wrap .content-group.ios .row-footer .icon-arrow {
    position: absolute;
    display: inline-block;
    margin: 0 auto 4em;
    top: -4em;
    right: 30%;
    -webkit-animation-duration: 0.9s;
    animation-duration: 0.9s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
}

    #modalBlackLayer .content-wrap .content-group.ios .row-footer .icon-arrow:before {
        display: block;
        margin: 0 auto;
        content: "";
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 20px solid white;
    }

    #modalBlackLayer .content-wrap .content-group.ios .row-footer .icon-arrow:after {
        display: block;
        margin: 0 auto;
        margin-right: 9px;
        content: "";
        width: 3px;
        height: 40px;
        background: white;
    }

/* Call Overlay
---------------------------------------
*/
#callOverlay {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    z-index: 16000001;
}

    #callOverlay .modal-dialog {
        margin: 0 !important;
        padding: 0 !important;
        width: 100%;
        z-index: 16000001;
    }

    #callOverlay .modal-content {
        border-radius: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
        border: 0;
        height: 100vh;
        background: #f4f4f4;
    }

@media screen and (min-width: 480px) and (max-width: 767px) {
    #callOverlay .modal-content {
        background: white;
    }
}

#callOverlay .modal-header {
    background: #195b8b;
    padding: 3px;
    position: fixed;
    top: 0;
    width: 100%;
}

    #callOverlay .modal-header img {
        height: 30px;
    }

    #callOverlay .modal-header .close {
        opacity: 1;
        color: white;
        text-shadow: none;
        margin: 0 10px;
        font-size: 32px;
        font-weight: normal;
        line-height: 1;
    }

#callOverlay .modal-body {
    padding: 0;
}

#callOverlay .groupCall {
    width: 100%;
    height: 100vh;
    display: table;
    padding-top: 40px;
    color: black;
    background: white;
}

#callOverlay .dynamicHeading {
    color: #153570;
    font-size: 26px;
    text-align: center;
    padding: 10px 10px 0;
}

    #callOverlay .dynamicHeading.CallOverlay {
        font-size: 18px;
        text-align: center;
        color: #333;
        padding: 15px 0px 0;
    }

        #callOverlay .dynamicHeading.CallOverlay strong {
            display: block;
            font-size: 30px;
            margin: 15px auto;
        }

        #callOverlay .dynamicHeading.CallOverlay .call-grap {
            width: 100%;
            display: block;
            margin: 30px auto 20px;
        }

        #callOverlay .dynamicHeading.CallOverlay .saveUPTO {
            font-size: 18px;
        }

#callOverlay .unpub-fair {
    font-size: 19px;
    text-align: center;
}

#callOverlay .modal-footer.call-over-footer {
    padding: 15px 0 20px;
    background: none;
}

    #callOverlay .modal-footer.call-over-footer .callButton {
        background: #17CE2D;
        border-radius: 5px;
        margin: 10px auto;
        width: 90%;
        -webkit-box-shadow: 0 3px 11px -2px rgba(23, 206, 45, 0.9);
        box-shadow: 0 3px 11px -2px rgba(23, 206, 45, 0.9);
    }

#callOverlay .imageExecutive {
    text-align: center;
    width: 50%;
    margin: 0 auto;
}

    #callOverlay .imageExecutive img {
        height: 200px;
    }

#callOverlay .phoneOnly {
    color: #fff;
    background-color: #6689ca;
    text-align: center;
    margin: 5px 10px 25px;
    padding: 10px;
    font-size: 23px;
    line-height: 28px;
}

#callOverlay .saveUPTO {
    font-size: 18px;
    text-align: center;
    line-height: 22px;
    margin: 10px 0 15px 0;
}

    #callOverlay .saveUPTO b {
        color: #a80000;
    }

#callOverlay .modal-footer {
    text-align: center;
    padding: 25px 0 90px;
    width: 100%;
    border: 0;
    background: #f4f4f4;
    margin-top: 20px;
}

    #callOverlay .modal-footer .phoneUs {
        text-align: center;
        font-size: 34px;
        font-weight: bold;
        line-height: 34px;
        color: #153570;
    }

    #callOverlay .modal-footer .callButton {
        color: #fff;
        display: block;
        margin: 10px 40px 0;
        background-color: #a80000;
        text-align: center;
        padding: 3px 0;
        font-size: 26px;
        font-weight: bold;
        line-height: 40px;
    }