/* Editor
================================= */

.nx-editor .textblock > .PageElement-Title {
    font-family: 'Tahoma', sans-serif;
    font-weight: bold;
    font-size: 36px;
    color: #147ccc;
}

.nx-editor-default {
    width: 1140px;
}

.nx-editor-buttons-default {
    width: 1140px;
}

/* Site
================================= */

.nx-body {
    font-size: 15px;
    line-height: 1.428571429;
    color: #1f2426;
}

    .nx-body.body-default {
        background: #dadada url(../Images/bg-img.jpg) top center repeat-x;
    }

    .nx-body.container {
        max-width: 1000px;
    }


    /* Background Colors
================================= */

    .nx-body .primary-bg-color {
        background: #424242;
    }

    .nx-body .secondary-bg-color {
        background: #f8f8f8;
    }

    .nx-body .tertiary-bg-color {
        background: #062d40;
    }

.nx-page {
    background: transparent;
}



/* Typography
================================= */

.nx-body .primary-font-color {
    color: #147ccc;
}

.nx-body .secondary-font-color {
    color: #1f7099;
}


.nx-body a {
    color: #147ccc;
}

    .nx-body a:focus,
    .nx-body a:hover {
        color: #0a4766;
    }

.nx-body h1 {
    font-family: 'Tahoma', sans-serif;
    font-weight: bold;
    font-size: 42px;
    color: #147ccc;
}

.nx-body h2 {
    font-family: 'Tahoma', sans-serif;
    font-weight: bold;
    font-size: 36px;
    color: #147ccc;
}

.nx-body h3 {
    font-family: 'Tahoma', sans-serif;
    font-weight: bold;
    font-size: 30px;
    color: #147ccc;
}

.nx-body h4 {
    font-family: 'Tahoma', sans-serif;
    font-weight: bold;
    font-size: 24px;
    color: #147ccc;
}

.nx-body p {
    color: #1f2426;
}


/* Nav
================================= */

.nx-body .menu-wrapper {
    padding: 20px 0 10px 0;
    background: url(../Images/main-nav-bg.jpg) top center repeat-x, -webkit-linear-gradient(#ececec, #dddddd);
    background: url(../Images/main-nav-bg.jpg) top center repeat-x, -o-linear-gradient(#ececec, #dddddd);
    background: url(../Images/main-nav-bg.jpg) top center repeat-x, -moz-linear-gradient(#ececec, #dddddd);
    background: url(../Images/main-nav-bg.jpg) top center repeat-x, linear-gradient(#ececec, #dddddd);
    background: url(../Images/main-nav-bg.jpg) top center repeat-x, -ms-linear-gradient(#ececec, #dddddd);
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#ececec', EndColorStr='#dddddd')"; /* IE8 and 9 */
}

.nx-menu {
    padding: 0;
    border-radius: 20px;
    box-shadow: 2px 2px 4px #999;
    background: linear-gradient(#ffffff, #dddddd);
    background: -webkit-linear-gradient(#ffffff, #dddddd);
    background: -o-linear-gradient(#ffffff, #dddddd);
    background: -moz-linear-gradient(#ffffff, #dddddd);
    background: -ms-linear-gradient(#ffffff, #dddddd);
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#ececec', EndColorStr='#dddddd')"; /* IE8 and 9 */
    position: relative;
    z-index: 1021;
}

    .nx-menu nav {
        margin: 0;
        padding: 0;
        line-height: 0.9em;
    }

        .nx-menu nav a {
            font-size: 13px;
            color: #524f4f;
        }

            .nx-menu nav a:focus,
            .nx-menu nav a:hover {
                color: #147ccc;
                text-decoration: none;
            }

        .nx-menu nav ul li:hover > ul,
        .nx-menu nav ul li:focus > ul {
            display: block;
            position: absolute;
            z-index: 99;
            box-shadow: 4px 4px 6px #333;
        }

        .nx-menu nav ul {
            list-style: none;
            position: relative;
            display: inline-table;
            margin: 0;
            padding: 0;
        }

            .nx-menu nav ul:after {
                content: "";
                clear: both;
                display: block;
            }

            .nx-menu nav ul li {
                float: left;
                /*border-right: 1px solid #d5d5d5;*/
            }

                .nx-menu nav ul li.more {
                    padding-right: 0;
                    background-image: url(../Images/caret-down.png);
                    background-repeat: no-repeat;
                    background-position: right 16px top 14px !important;
                    background-position-x: 85%;
                    background-position-y: 45%;
                }

                .nx-menu nav ul li:nth-child(1) {
                    border-top-left-radius: 20px;
                    border-bottom-left-radius: 20px;
                }

                .nx-menu nav ul li a {
                    display: block;
                    padding: 15px 36px;
                }

                .nx-menu nav ul li.current a {
                    color: #147ccc;
                    font-weight: bold;
                }

            .nx-menu nav ul ul {
                display: none;
                position: absolute;
                /*top: 100%;*/
                line-height: 1.2em;
                min-width: 188px;
            }

                .nx-menu nav ul ul li {
                    float: none;
                    border-top: 1px solid #eee;
                    border-right: 1px solid #147ccc;
                    position: relative;
                    background-color: #147ccc;
                    min-width: 188px;
                }

                    .nx-menu nav ul ul li:first-child {
                        border-top: none;
                    }

                    .nx-menu nav ul ul li.more {
                        padding-right: 0;
                        background-image: url(../Images/caret-right.png);
                        background-repeat: no-repeat;
                        background-position: right 10px top 16px;
                    }

                    .nx-menu nav ul ul li a {
                        color: #fff;
                    }

                        .nx-menu nav ul ul li a:hover,
                        .nx-menu nav ul ul li a:focus {
                            color: #000;
                        }

                    .nx-menu nav ul ul li:nth-child(1) {
                        border-top-left-radius: 0;
                        border-bottom-left-radius: 0;
                    }

                    .nx-menu nav ul ul li:hover,
                    .nx-menu nav ul ul li:focus {
                        background-color: #3daafe;
                    }

                .nx-menu nav ul ul ul {
                    position: absolute;
                    left: 100%;
                    top: 0;
                }

                    .nx-menu nav ul ul ul li {
                        background: #3daafe;
                    }

        .nx-menu nav .selected > a {
            color: #3daafe;
        }

        .nx-menu nav ul ul .selected {
            background-color: #266596;
        }

            .nx-menu nav ul ul .selected > a {
                color: #abd9fc;
            }


/* Social Media Company Page
================================= */

/* Horizontal Small */

.nx-body .socialmediascompanypage > .HorizontalBarSmall .share-Facebook {
    background: url(../Images/SocialNetworks/Blue/Small/fb.png) 0 0 no-repeat;
}

.nx-body .socialmediascompanypage > .HorizontalBarSmall .share-GooglePlus {
    background: url(../Images/SocialNetworks/Blue/Small/gp.png) 0 0 no-repeat;
}

.nx-body .socialmediascompanypage > .HorizontalBarSmall .share-LinkedIn {
    background: url(../Images/SocialNetworks/Blue/Small/li.png) 0 0 no-repeat;
}

.nx-body .socialmediascompanypage > .HorizontalBarSmall .share-StumbleUpon {
    background: url(../Images/SocialNetworks/Blue/Small/su.png) 0 0 no-repeat;
}

.nx-body .socialmediascompanypage > .HorizontalBarSmall .share-Twitter {
    background: url(../Images/SocialNetworks/Blue/Small/tw.png) 0 0 no-repeat;
}

.nx-body .socialmediascompanypage > .HorizontalBarSmall .share-Flickr {
    background: url(../Images/SocialNetworks/Blue/Small/fr.png) 0 0 no-repeat;
}

.nx-body .socialmediascompanypage > .HorizontalBarSmall .share-Instagram {
    background: url(../Images/SocialNetworks/Blue/Small/ig.png) 0 0 no-repeat;
}

.nx-body .socialmediascompanypage > .HorizontalBarSmall .share-Pinterest {
    background: url(../Images/SocialNetworks/Blue/Small/pi.png) 0 0 no-repeat;
}

.nx-body .socialmediascompanypage > .HorizontalBarSmall .share-Tumblr {
    background: url(../Images/SocialNetworks/Blue/Small/tu.png) 0 0 no-repeat;
}

.nx-body .socialmediascompanypage > .HorizontalBarSmall .share-YouTube {
    background: url(../Images/SocialNetworks/Blue/Small/yt.png) 0 0 no-repeat;
}

.nx-body .socialmediascompanypage > .HorizontalBarSmall .share-Blog {
    background: url(../Images/SocialNetworks/Blue/Small/bl.png) 0 0 no-repeat;
}

/* Vertical Small */

.nx-body .socialmediascompanypage > .VerticalBarSmall .share-Facebook {
    background: url(../Images/SocialNetworks/Blue/Small/fb.png) 0 0 no-repeat;
}

.nx-body .socialmediascompanypage > .VerticalBarSmall .share-GooglePlus {
    background: url(../Images/SocialNetworks/Blue/Small/gp.png) 0 0 no-repeat;
}

.nx-body .socialmediascompanypage > .VerticalBarSmall .share-LinkedIn {
    background: url(../Images/SocialNetworks/Blue/Small/li.png) 0 0 no-repeat;
}

.nx-body .socialmediascompanypage > .VerticalBarSmall .share-StumbleUpon {
    background: url(../Images/SocialNetworks/Blue/Small/su.png) 0 0 no-repeat;
}

.nx-body .socialmediascompanypage > .VerticalBarSmall .share-Twitter {
    background: url(../Images/SocialNetworks/Blue/Small/tw.png) 0 0 no-repeat;
}

.nx-body .socialmediascompanypage > .VerticalBarSmall .share-Flickr {
    background: url(../Images/SocialNetworks/Blue/Small/fr.png) 0 0 no-repeat;
}

.nx-body .socialmediascompanypage > .VerticalBarSmall .share-Instagram {
    background: url(../Images/SocialNetworks/Blue/Small/ig.png) 0 0 no-repeat;
}

.nx-body .socialmediascompanypage > .VerticalBarSmall .share-Pinterest {
    background: url(../Images/SocialNetworks/Blue/Small/pi.png) 0 0 no-repeat;
}

.nx-body .socialmediascompanypage > .VerticalBarSmall .share-Tumblr {
    background: url(../Images/SocialNetworks/Blue/Small/tu.png) 0 0 no-repeat;
}

.nx-body .socialmediascompanypage > .VerticalBarSmall .share-YouTube {
    background: url(../Images/SocialNetworks/Blue/Small/yt.png) 0 0 no-repeat;
}

.nx-body .socialmediascompanypage > .VerticalBarSmall .share-Blog {
    background: url(../Images/SocialNetworks/Blue/Small/bl.png) 0 0 no-repeat;
}


/* Vertical Large */

.nx-body .socialmediascompanypage > .VerticalBarLarge .share-Facebook {
    background: url(../Images/SocialNetworks/Blue/Large/fb.png) 0 0 no-repeat;
}

.nx-body .socialmediascompanypage > .VerticalBarLarge .share-GooglePlus {
    background: url(../Images/SocialNetworks/Blue/Large/gp.png) 0 0 no-repeat;
}

.nx-body .socialmediascompanypage > .VerticalBarLarge .share-LinkedIn {
    background: url(../Images/SocialNetworks/Blue/Large/li.png) 0 0 no-repeat;
}

.nx-body .socialmediascompanypage > .VerticalBarLarge .share-StumbleUpon {
    background: url(../Images/SocialNetworks/Blue/Large/su.png) 0 0 no-repeat;
}

.nx-body .socialmediascompanypage > .VerticalBarLarge .share-Twitter {
    background: url(../Images/SocialNetworks/Blue/Large/tw.png) 0 0 no-repeat;
}

.nx-body .socialmediascompanypage > .VerticalBarLarge .share-Flickr {
    background: url(../Images/SocialNetworks/Blue/Large/fr.png) 0 0 no-repeat;
}

.nx-body .socialmediascompanypage > .VerticalBarLarge .share-Instagram {
    background: url(../Images/SocialNetworks/Blue/Large/ig.png) 0 0 no-repeat;
}

.nx-body .socialmediascompanypage > .VerticalBarLarge .share-Pinterest {
    background: url(../Images/SocialNetworks/Blue/Large/pi.png) 0 0 no-repeat;
}

.nx-body .socialmediascompanypage > .VerticalBarLarge .share-Tumblr {
    background: url(../Images/SocialNetworks/Blue/Large/tu.png) 0 0 no-repeat;
}

.nx-body .socialmediascompanypage > .VerticalBarLarge .share-YouTube {
    background: url(../Images/SocialNetworks/Blue/Large/yt.png) 0 0 no-repeat;
}

.nx-body .socialmediascompanypage > .VerticalBarLarge .share-Blog {
    background: url(../Images/SocialNetworks/Blue/Large/bl.png) 0 0 no-repeat;
}


/* Horizontal Large */

.nx-body .socialmediascompanypage > .HorizontalBarLarge .share-Facebook {
    background: url(../Images/SocialNetworks/Blue/Large/fb.png) 0 0 no-repeat;
}

.nx-body .socialmediascompanypage > .HorizontalBarLarge .share-GooglePlus {
    background: url(../Images/SocialNetworks/Blue/Large/gp.png) 0 0 no-repeat;
}

.nx-body .socialmediascompanypage > .HorizontalBarLarge .share-LinkedIn {
    background: url(../Images/SocialNetworks/Blue/Large/li.png) 0 0 no-repeat;
}

.nx-body .socialmediascompanypage > .HorizontalBarLarge .share-StumbleUpon {
    background: url(../Images/SocialNetworks/Blue/Large/su.png) 0 0 no-repeat;
}

.nx-body .socialmediascompanypage > .HorizontalBarLarge .share-Twitter {
    background: url(../Images/SocialNetworks/Blue/Large/tw.png) 0 0 no-repeat;
}

.nx-body .socialmediascompanypage > .HorizontalBarLarge .share-Flickr {
    background: url(../Images/SocialNetworks/Blue/Large/fr.png) 0 0 no-repeat;
}

.nx-body .socialmediascompanypage > .HorizontalBarLarge .share-Instagram {
    background: url(../Images/SocialNetworks/Blue/Large/ig.png) 0 0 no-repeat;
}

.nx-body .socialmediascompanypage > .HorizontalBarLarge .share-Pinterest {
    background: url(../Images/SocialNetworks/Blue/Large/pi.png) 0 0 no-repeat;
}

.nx-body .socialmediascompanypage > .HorizontalBarLarge .share-Tumblr {
    background: url(../Images/SocialNetworks/Blue/Large/tu.png) 0 0 no-repeat;
}

.nx-body .socialmediascompanypage > .HorizontalBarLarge .share-YouTube {
    background: url(../Images/SocialNetworks/Blue/Large/yt.png) 0 0 no-repeat;
}

.nx-body .socialmediascompanypage > .HorizontalBarLarge .share-Blog {
    background: url(../Images/SocialNetworks/Blue/Large/bl.png) 0 0 no-repeat;
}



/* Content
================================= */

.nx-body .offer {
    border: 1px solid #c2c9cc;
    border-radius: 20px;
    background: #f8f8f8;
    padding: 15px;
    margin-top: 10px;
    margin-bottom: 15px;
}

    .nx-body .offer img {
        width: 100%;
    }

    .nx-body .offer h3 {
        margin-top: 10px;
        margin-bottom: 0;
    }

/* Content: Offer Groups*/
.nx-body .OGMainTable {
    border: 1px solid #147CCC;
    background-color: #FFFFFF;
}

.nx-body .OGSupplierInfoContainer {
    padding-top: 5px;
    padding-right: 5px;
    padding-left: 5px;
}

.nx-body .OGCategoryTableHeader {
    text-align: center;
}

.nx-body .OGCategoryTableLeft {
    border-left: 1px solid #147CCC;
    border-bottom: 1px solid #147CCC;
}

.nx-body .OGCategoryTableRight {
    border-left: 1px solid #147CCC;
    border-right: 1px solid #147CCC;
    border-bottom: 1px solid #147CCC;
}

.nx-body .OGPaddedContainer {
    padding: 5px;
}


/* Content: Search Results */

.nx-body table.ContentTitleBar2 td {
    color: #fff;
    background-color: #147CCC;
}

.nx-body .SRBottomSearchCritLabel {
    color: #fff;
}

.nx-body table.ContentTitleBar2 td a {
    color: #fff;
}

.nx-body .tabactiveBackground {
    background-color: #147CCC;
    color: #fff;
}

.nx-body .bg2,
.nx-body .bg1 {
    background-color: #147CCC;
}

.nx-body .bg3 {
    background-color: #003366;
}

.nx-body .ODPriceBoxHeader {
    color: #fff;
    border-left: 1px solid #147CCC;
    border-right: 1px solid #147CCC;
}

.nx-body .ODPriceBoxRow1 {
    background: #EEE;
}

.nx-body td.SROfferContent {
    background-color: #fff;
}

.nx-body .SRPrice800 {
    color: #ffffcc;
}

.nx-body .SpecialOD {
    background-color: #ffffcc;
    border: 1px solid #aaaaaa;
}

/* Content: Offer Details */

.nx-body div#DetailPageTop {
    background-color: #fff;
}

.nx-body .MainContentOD {
    border: 1px solid #147CCC;
    padding: 15px;
    background-color: #fff;
}

.nx-body .ODTabActive {
    background-color: #147CCC;
}

.nx-body .ODTabInactive {
    background-color: #003366;
}

.nx-body table.ListTable1 {
    background-color: #fff;
}


/* Content: Compare  */

.nx-body td.CompareColumn {
    border: 1px solid #999;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background-color: #fff;
}

.nx-body div.CompareTop {
    background-color: #DADADA;
    color: #003366;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 10px;
    height: 80px;
    overflow: hidden;
}

.nx-body .ResultsBoxTop {
    font-size: 14px;
    font-weight: bold;
}


/* Page Elements - Quick Search
================================= */

.nx-body .quicksearch-container {
    padding: 14px;
    border-radius: 20px;
}

    .nx-body .quicksearch-container a {
        color: #fff;
    }

        .nx-body .quicksearch-container a:hover,
        .nx-body .quicksearch-container a:focus {
            color: #fff;
        }

.nx-body .quicksearch-tab a {
    background: #1460CC;
    border-radius: 20px 20px 0 0;
}

    .nx-body .quicksearch-tab a.active {
        background: #147CCC;
        color: #fff;
        border-bottom-right-radius: 0;
    }

.nx-body .quicksearch-tab-body {
    background: #147CCC;
    border-radius: 0 20px 20px 20px;
    padding: 0 10px 20px 10px;
    min-width: 285px;
}

.nx-body .quicksearch__v2 .quicksearch-container {
    padding: 15px;
}

.nx-body .quicksearch__v2 h4 {
    color: #ffffff !important;
}

.nx-body .quicksearch__v2 label.MuiInputLabel-shrink {
    color: #ffffff !important;
}

.nx-body .quicksearch__v2 span.MuiFormControlLabel-label:not(.MuiInputLabel-animated) {
    color: #ffffff !important;
}

.nx-body .quicksearch__v2 a {
    color: #fff;
}

.nx-body .quicksearch__v2 ul:not(.MuiAutocomplete-listbox):not(.MuiAutocomplete-groupUl) li {
    color: #fff;
}

.nx-body .MuiInputLabel-shrink {
    background-color: #424242 !important;
}

/* Page Elements - Cruise Search
================================= */

.nx-body .cruisesearch-container {
    padding: 14px;
    border-radius: 20px;
}

    .nx-body .cruisesearch-container a {
        color: #fff;
    }

        .nx-body .cruisesearch-container a:hover,
        .nx-body .cruisesearch-container a:focus {
            color: #fff;
        }

/* Page Elements - Offer Highlight
================================= */

.nx-body div.offerHL {
    border-radius: 20px;
    padding: 14px;
}

    .nx-body div.offerHL .HLtitle {
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        margin: -14px -14px 14px -14px;
    }




/* Footer
================================= */

.nx-footer {
}

    .nx-footer.container {
        padding-top: 15px;
        padding-bottom: 15px;
        border-top: 1px solid #999;
    }

    .nx-footer p,
    .nx-footer h1,
    .nx-footer h2,
    .nx-footer h3,
    .nx-footer h4,
    .nx-footer li,
    .nx-footer a {
        /*color: #fff;*/
    }

/* Search result category header */
.nx-body .categories-header-color {
    color: white;
}

.nx-related-offer-title {
    font-weight: bold;
    font-size: 18px;
    font-style: italic;
}

.search-filter {
    border: 1px solid #c2c9cc;
    background: #f8f8f8 !important;
}

.advance-search-filter {
    background: #f8f8f8;
}

.more-search {
    background: #1f7099;
    color: white !important;
    text-align: center;
}

    .more-search:hover {
        background: #1f7099 !important;
    }

.offer-itinerary-tooltip {
    color: #1f7099 !important;
    background: #fff;
}

.offer-dates-preposition {
    color: #c2c9cc;
}

.resort-heading,
.resort-footer {
    background: #1f7099;
    color: #fff !important;
}

.nx-body .OGCategoryTableBorder {
    border-left: 1px solid #1f7099;
    border-right: 1px solid #1f7099;
    border-bottom: 1px solid #1f7099;
    height: 50px;
    width: 100%;
}

.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
    color: #fff !important;
    background-color: #1f7099;
    border-color: #1f7099;
}

.offer-amenity,
.offer-content-container {
    background: #f8f8f8;
}

.itinerary-table {
}

    .itinerary-table > tr:nth-child(2n + 1),
    .itinerary-table > tbody > tr:nth-child(2n + 1),
    .itinerary-table > tfoot > tr:nth-child(2n + 1) {
        background: #f8f8f8;
    }

.nx-body .search-item {
    border: 1px solid #c2c9cc;
    border-radius: 20px;
    background: #f8f8f8;
    padding: 15px;
    margin-top: 10px;
    margin-bottom: 15px;
}



    .nx-body .search-item h3 {
        margin-top: 10px;
        margin-bottom: 0;
    }

.offer-price-sm {
    color: #147ccc;
    font-weight: bold;
}

.offer-price {
    color: #147ccc;
    font-weight: bold;
}
/* used in MVC search result, offer group, offer details*/
.nx-body .OGCategory-left {
    border-left: 1px solid #1f7099;
    border-bottom: 1px solid #248A99;
    height: 50px;
    width: 100%;
}

.nx-body .OGCategory-right {
    border-right: 1px solid #1f7099;
    border-bottom: 1px solid #1f7099;
    height: 50px;
    width: 100%;
}

/* Agent Directory */

.agent-bio {
    min-height: 130px;
    max-height: 130px;
}

.nx-body .system-container {
    border: 1px solid #c2c9cc;
    border-radius: 20px;
    background: #f8f8f8;
    padding: 15px;
    margin-top: 10px;
    margin-bottom: 15px;
}

/* Trip Request */
.nx-body .trip-request .trip-request-offer-cart .add-offer-button-container {
    background: rgba(222, 222, 222, 1) !important;
}
