:root {
    --primary-color: #005a78;
    --secondary-color: #ff9800;
    --touch-color: #c0392b;
    --text-color: #333;
    --background-light: #fff;
    --red-hover: var(--touch-color);
    --card-background: rgba(255, 255, 255, 0.9);
    --card-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.fa,
.fas {
    filter: brightness(10);
}

.w-100 {
    width: 100%;
}

/* --- Premium Refinements --- */
.card,
.instant-quote {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
    border-radius: 12px !important;
    overflow: hidden;
}

.btn,
button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.btn:hover,
button:hover {
    background-color: var(--touch-color) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(192, 57, 43, 0.3);
}

.btn.light {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
}

/* --- New Attractive Unified Header --- */
.site-header {
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.top-bar {
    background: #1e2e42;
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
    margin-left: 15px;
}

.top-bar a:hover {
    color: var(--secondary-color);
}

.main-header {
    background: rgba(34, 44, 51, 0.7) !important;
    /* Increased opacity for background view */
    backdrop-filter: blur(12px);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
}

@media (max-width: 767px) {
    .logo img {
        height: 45px;
    }

    .top-bar-inner {
        flex-direction: column;
        gap: 5px;
    }

    .top-bar a {
        margin: 0 10px;
    }
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 25px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: #333;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--touch-color);
    /* Red color for touch/hover */
    transform: translateY(-2px);
}

/* Submenu Styling */
.arrowtop {
    display: flex;
    align-items: center;
}

.drop-aro {
    margin-left: 5px;
    cursor: pointer;
    width: 12px;
}

.ul-wrap {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(34, 44, 51, 0.7) !important;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: none;
    border-top: 3px solid var(--primary-color);
    padding: 10px 0;
    z-index: 1001;
}

.ul-wrap ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ul-wrap li a {
    display: block;
    padding: 10px 20px;
    text-transform: none;
}

.ul-wrap li a:hover {
    background: #f8f9fa;
}

.nav-links li:hover>.ul-wrap,
.ul-wrap.show-submenu {
    display: block;
}

/* Mobile Toggle */
@media (max-width: 991px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .navbar-collapse.show .nav-links {
        display: flex;
    }

    .navbar-toggle {
        display: block;
        background: transparent;
        border: 1px solid #ddd;
        padding: 9px 10px;
        border-radius: 4px;
        cursor: pointer;
    }

    .navbar-toggle .icon-bar {
        display: block;
        width: 22px;
        height: 2px;
        background-color: #333;
        border-radius: 1px;
        margin-bottom: 4px;
    }

    .navbar-toggle .icon-bar:last-child {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 480px) {
    body {
        width: 100% !important;
        min-height: 100vh !important;
    }

    .logo .logo_inr {
        padding-right: 5px;
    }

    .testfooter {
        padding: 10px 0 0 10px;
    }

    .col-lg-2.col-md-2.col-sm-12.logo_col.pull-left {
        background-color: #000 !important;
        border-radius: 15px;
    }
}

@media screen and (max-width: 990px) {
    body {
        width: 100% !important;
        min-height: 100vh !important;
    }

    ul.login-details.pull-right {
        width: 251px !important;
        margin-top: -1px !important;
        padding-right: 5px;
    }

    .testfooter {
        padding: 10px 0 0 10px !important;
    }

    .logo .logo_inr {
        padding-right: 5px;
    }

    .col-lg-2.col-md-2.col-sm-12.logo_col.pull-left {
        background-color: #000 !important;
        border-radius: 15px;
    }
}

.row.airport_main a,
.book_online a {
    color: black;
    font-weight: bold;
}

.airpot,
.book_one,
.book_two,
.book_three {
    font-size: larger;
}

.term_page .card {
    background: rgba(34, 44, 51, 0.9) none repeat scroll 0 0 !important;
}

.term_page .rgt-img-section {
    background: rgba(34, 44, 51, 0.9) none repeat scroll 0 0 !important;
}

#add-way input {
    color: #fff !important;
    font-weight: bold !important;
}

.card.card-container.instant-quote .booking_info {
    font-style: normal !important;
}

.profile.pull-right .ul-wrap {
    height: 180px !important;
}

/* Extra Small Devices, Phones */
@media screen and (max-width: 768px) {
    .testfooter {
        max-width: 88%;
    }

    .col-md-2.image {
        display: none;
    }

    .footer-logo {
        display: block !important;
    }
}

.col-md-2.image.foot-img3 img {
    width: 94%;
    margin-top: 0px;
}

.footer-logo {
    display: none;
}

.testfooter {
    background: rgba(34, 44, 51, 0.7) none repeat scroll 0 0;
    border-radius: 4px;
    float: left;
    margin-top: 10px;
    padding: 10px 0 0 90px;
    width: 100%;
    color: #fff;
}

.testrow {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-left: calc(-.5 * var(--bs-gutter-x));
}

.testrow.otherlnks {
    margin-right: -65px;
}

@media (min-width: 768px) {
    .testcol-md-3 {
        flex: 0 0 auto;
        width: 25%;
    }
}

.testrow>* {
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y);
}

ul.testfooter-links {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 20px;
}

li {
    display: list-item;
    text-align: -webkit-match-parent;
}

ul.testfooter-links a {
    color: #fff;
    font-size: 14px;
    line-height: 24px;
}

ul {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
}

*,
::after,
::before {
    box-sizing: border-box;
}

ul.testmenu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    font-size: 14px;
    color: #ffffff;
}

.testmenu li {
    margin-right: 35px;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--bs-heading-color, inherit);
}

ul.testmenu li a {
    color: #fff;
    text-decoration: none;
}

.footer2 {
    background: none;
    margin-left: -30px;
}

footer {
    background: unset;
}

.testfooter a {
    color: #fff;
}



* {
    box-sizing: border-box;
}


/* Container & Grid */
.container {
    width: 100%;
    padding-right: var(--gutter-width);
    padding-left: var(--gutter-width);
    margin-right: auto;
    margin-left: auto;
    max-width: var(--container-max-width);
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -var(--gutter-width);
    margin-left: -var(--gutter-width);
}

[class*="col-"] {
    position: relative;
    width: 100%;
    padding-right: var(--gutter-width);
    padding-left: var(--gutter-width);
}

/* Responsive Grid Base (XS) */
.col-xs-1,
.col-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
}

.col-xs-2,
.col-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}

.col-xs-3,
.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.col-xs-4,
.col-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.col-xs-5,
.col-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}

.col-xs-6,
.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-xs-7,
.col-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}

.col-xs-8,
.col-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.col-xs-9,
.col-9 {
    flex: 0 0 75%;
    max-width: 75%;
}

.col-xs-10,
.col-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
}

.col-xs-11,
.col-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
}

.col-xs-12,
.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 576px) {
    .col-sm-1 {
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .col-sm-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-sm-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-sm-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 768px) {
    .col-md-1 {
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .col-md-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-md-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-md-10 {
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 992px) {
    .col-lg-1 {
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .col-lg-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-lg-10 {
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .col-lg-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Spacing & Layout Utilities */
.pull-left {
    float: left !important;
}

.pull-right {
    float: right !important;
}

.float-lft {
    float: left !important;
}

.float-rgt {
    float: right !important;
}

.no-padding {
    padding: 0 !important;
}

.margin-bottom-1em {
    margin-bottom: 1em !important;
}

.margin-bottom-zero {
    margin-bottom: 0 !important;
}

.margin-top-10 {
    margin-top: 10px !important;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Visibility */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

@media (max-width: 1024px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }
}

/* Components: Navbar */
.navbar-toggle {
    display: none;
    background: transparent;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 9px 10px;
    cursor: pointer;
}

.icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #888;
    border-radius: 1px;
}

.icon-bar+.icon-bar {
    margin-top: 4px;
}

@media (max-width: 767px) {
    .navbar-toggle {
        display: block;
    }

    .navbar-collapse {
        display: none !important;
        width: 100%;
    }

    .navbar-collapse.show {
        display: block !important;
    }
}

/* Components: Cards */
.card {
    background: var(--white);
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
}

.card-container {
    padding: 15px;
}

/* Components: Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    font-weight: 600;
    text-align: center;
    border-radius: 4px;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
}

.btn.light {
    background-color: #f8f9fa;
    color: #333;
    border-color: #ddd;
}

/* Components: Alerts */
.alert_orang {
    background-color: var(--orange);
    color: #fff;
    padding: 15px;
    border-radius: 4px;
}

/* Icon Styling & Sizing */
.fa,
.fas {
    display: inline-block;
    width: 1.25em;
    height: 1.25em;
    vertical-align: middle;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.fa-1x {
    font-size: 1em;
}

.fa-2x {
    font-size: 2em;
}

/* SVG Data URIs for Icons */
/* --- Premium Footer (Inspired by AlHaram Travel) --- */
.site-footer {
    background-color: rgba(34, 44, 51, 0.7) !important;
    backdrop-filter: blur(12px);
    color: #ffffff;
    padding: 70px 0 20px;
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
}

.site-footer h4 {
    color: #ffffff;
    margin-bottom: 25px;
    font-size: 20px;
    font-weight: 700;
    text-transform: none;
    /* More modern than total uppercase */
    position: relative;
    padding-bottom: 0px;
    text-align: left;
}

.footer-col {
    margin-bottom: 40px;
    text-align: left;
}

.footer-description {
    color: #e0f2f7;
    margin-bottom: 25px;
    font-size: 13.5px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.footer-links-list a:hover {
    color: var(--touch-color);
    /* Red highlight from touch color */
    padding-left: 8px;
}

/* Contact Info Column */
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    margin-top: 3px;
    opacity: 0.9;
}

.contact-text {
    flex: 1;
    color: #ffffff;
    font-weight: 500;
}

/* Payment Icons */
.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.payment-badge {
    height: 30px;
    background: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-badge img {
    max-height: 100%;
}

/* Footer Bottom & Branding */
.footer-center-branding {
    text-align: center;
    margin: 40px 0 20px;
}

.footer-logo-premium {
    max-width: 200px;
    margin-bottom: 20px;
}

.footer-note {
    background: rgba(0, 0, 0, 0.2);
    padding: 15px 20px;
    border-radius: 4px;
    font-size: 12px;
    color: #e0f2f7;
    text-align: left;
    /* Changed from center */
    margin-top: 30px;
}

.footer-bottom-bar {
    text-align: left;
    /* Changed from center */
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* SVG Icon Replacements for Contact */
.icon-phone-w {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23ff9800' d='D164.9 24.6c-7.7-18.6-28-28.5-47.4-23.2l-88 24C12.1 30.2 0 46 0 64C0 311.4 200.6 512 448 512c18 0 33.8-12.1 38.6-29.5l24-88c5.3-19.4-4.6-39.7-23.2-47.4l-96-40c-16.3-6.8-35.2-2.1-46.3 11.6L304.7 368C234.3 334.7 177.3 277.7 144 207.3L193.3 167c13.7-11.2 18.4-30 11.6-46.3l-40-96z'/%3E%3C/svg%3E");
}

.icon-mail-w {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23ff9800' d='M64 112c-8.8 0-16 7.2-16 16v22.1L220.5 291.7c20.7 17 50.4 17 71.1 0L464 150.1V128c0-8.8-7.2-16-16-16H64zM48 212.2V384c0 8.8 7.2 16 16 16H448c8.8 0 16-7.2 16-16V212.2L322 328.8c-38.4 31.5-93.7 31.5-132 0L48 212.2z'/%3E%3C/svg%3E");
}

.icon-geo-w {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath fill='%23ff9800' d='M215.7 499.2C267 435 384 279.4 384 192C384 86 298 0 192 0S0 86 0 192c0 87.4 117 243 168.3 307.2c12.3 15.3 35.1 15.3 47.4 0zM192 128a64 64 0 1 1 0 128 64 64 0 1 1 0-128z'/%3E%3C/svg%3E");
}

.fa-male {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 192 512'%3E%3Cpath fill='%23666' d='M96 0c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64S60.7 0 96 0m48 144h-11.4c-22.7 10.4-49.6 10.9-73.3 0H48c-26.5 0-48 21.5-48 48v136c0 13.3 10.7 24 24 24h16v136c0 13.3 10.7 24 24 24h64c13.3 0 24-10.7 24-24V352h16c13.3 0 24-10.7 24-24V192c0-26.5-21.5-48-48-48z'/%3E%3C/svg%3E");
}

.fa-suitcase {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23666' d='M128 416c-17.7 0-32 14.3-32 32s14.3 32 32 32h256c17.7 0 32-14.3 32-32s-14.3-32-32-32H128zm352-256h-96V80c0-44.1-35.9-80-80-80h-96c-44.1 0-80 35.9-80 80v80H32c-17.7 0-32 14.3-32 32v224c0 17.7 14.3 32 32 32h448c17.7 0 32-14.3 32-32V192c0-17.7-14.3-32-32-32z'/%3E%3C/svg%3E");
}

.fa-shopping-bag {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23666' d='M448 128V480c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32V128H448zm-224 240c44.2 0 80-35.8 80-80h48c0 70.7-57.3 128-128 128s-128-57.3-128-128h48c0 44.2 35.8 80 80 80zm112-240v-16C336 49.6 286.4 0 224 0S112 49.6 112 112v16H0v64h448v-64H336z'/%3E%3C/svg%3E");
}

.fa-info-circle {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%2337648C' d='M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 110c23.2 0 42 18.8 42 42s-18.8 42-42 42-42-18.8-42-42 18.8-42 42-42zm56 254c0 6.6-5.4 12-12 12h-88c-6.6 0-12-5.4-12-12v-24c0-6.6 5.4-12 12-12h12v-64h-12c-6.6 0-12-5.4-12-12v-24c0-6.6 5.4-12 12-12h64c6.6 0 12 5.4 12 12v100h12z'/%3E%3C/svg%3E");
}

/* Light versions for header/usp */
.fa-plane {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath fill='%23fff' d='M480 192H128L64 256v64l64-32h352c35.3 0 64-28.7 64-64s-28.7-64-64-64z'/%3E%3C/svg%3E");
}

.fa-clock {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23fff' d='M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200z'/%3E%3C/svg%3E");
}

.fa-taxi {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 512'%3E%3Cpath fill='%23fff' d='M624 208h-64v-64c0-8.8-7.2-16-16-16H96c-8.8 0-16 7.2-16 16v64H16c-8.8 0-16 7.2-16 16v160h608V224c0-8.8-7.2-16-16-16z'/%3E%3C/svg%3E");
}

.fa-tag {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23fff' d='M0 252.1V48C0 21.5 21.5 0 48 0h204.1c12.7 0 25 5.1 33.9 14.1l211.9 211.9c18.7 18.7 18.7 49.1 0 67.9L293.8 493.8c-18.7 18.7-49.1 18.7-67.9 0L14.1 286.1c-9-9-14.1-21.2-14.1-34z'/%3E%3C/svg%3E");
}

/* Social Icons */
.fa-facebook {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='%23fff' d='M279.1 288l14.2-92.7h-88.9v-60.1c0-25.4 12.4-50.1 52.2-50.1h40.4V6.3S260.4 0 225.4 0c-73.2 0-121.1 44.4-121.1 124.7V195.3H22.9V288h81.4v224h100.2V288z'/%3E%3C/svg%3E");
}

.fa-twitter {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23fff' d='M459.4 151.7c.3 4.5.3 9.1.3 13.6 0 138.7-105.6 298.6-298.6 298.6-59.5 0-114.7-17.2-161.1-47.1 8.4 1 16.6 1.3 25.3 1.3 49.1 0 94.2-16.6 130.3-44.8-46.1-1-84.8-31.2-98.1-72.8 6.5 1 13 1.6 19.8 1.6 9.4 0 18.8-1.3 27.6-3.6-48.1-9.7-84.1-52-84.1-103v-1.3c14 7.8 30.2 12.7 47.4 13.3-28.3-18.8-46.8-51-46.8-87.4 0-19.5 5.2-37.4 14.3-53 51.7 63.7 129.3 105.3 216.4 109.8-1.6-7.8-2.6-15.9-2.6-24 0-57.8 46.8-104.9 104.9-104.9 30.2 0 57.5 12.7 76.7 33.1 23.7-4.5 46.5-13.3 66.6-25.3-7.8 24.4-24.4 44.8-46.1 57.8z'/%3E%3C/svg%3E");
}

.fa-linkedin {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23fff' d='M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3z'/%3E%3C/svg%3E");
}

.fa-youtube {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath fill='%23fff' d='M549.7 124.1c-6.3-23.7-24.8-42.3-48.3-48.6C458.8 64 288 64 288 64S117.2 64 74.6 75.5c-23.5 6.3-42 24.9-48.3 48.6-11.4 42.9-11.4 132.3-11.4 132.3s0 89.4 11.4 132.3c6.3 23.7 24.8 41.5 48.3 47.8C117.2 448 288 448 288 448s170.8 0 213.4-11.5c23.5-6.3 42-24.2 48.3-47.8 11.4-42.9 11.4-132.3 11.4-132.3s0-89.4-11.4-132.3z'/%3E%3C/svg%3E");
}

/* Custom Overrides & Misc */
.logo_col {
    background-color: #000 !important;
    border-radius: 15px;
}

.header-phn li {
    list-style: none;
    display: inline-block;
    color: #fff;
    margin-left: 10px;
}

.login-details {
    list-style: none;
    display: flex;
    color: #fff;
    padding: 0;
}

.nav_new h2 {
    cursor: pointer;
}

.ul-wrap.show-submenu {
    display: block !important;
}

/* Tooltips */
.tooltiptext {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    z-index: 1000;
    background: #333;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    width: 250px;
    transition: opacity 0.3s;
}

.tooltiptext.show {
    visibility: visible;
    opacity: 1;
}

/* Footer specific */
.testfooter {
    background: #333;
    color: #fff;
    padding: 40px 0;
    width: 100%;
    float: left;
}

.testrow {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.testmenu {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
}

.testmenu a {
    color: #fff;
    text-decoration: none;
}

.footer2 {
    padding: 20px 0;
    text-align: center;
}

.social-icons a {
    margin: 0 10px;
}

#preamble .default-form .where-input {
    background: #384248 none repeat scroll 0 0;
    border-radius: 3px;
    margin-bottom: 20px;
    padding: 10px;
}

/* -----------------------------------------------------------------------------



    GENERAL



----------------------------------------------------------------------------- */

body {
    background-color: #fff !important;

    background-image: url(./images/new_bg3.png);
    background-attachment: fixed;
    background-repeat: no-repeat;
    width: 100%;
    background-position: center;
    background-size: cover;
    margin: 0;
    padding: 0;
}

html {

    font-family: 'Open Sans', sans-serif !important;
    font-size: 14px;

    color: #333;

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;

    -moz-osx-font-smoothing: grayscale;

    -webkit-text-size-adjust: 100%;

    letter-spacing: normal !important;

}

/*@font-face{

	font-family:roboto;

	src:url(../fonts/roboto.regular.eot), url(../fonts/roboto.regular.otf), url(../fonts/roboto.regular.ttf), url(../fonts/roboto.regular.woff);

}*/





/*

@font-face {

	font-family: 'roboto';

	src: url('../fonts/roboto.thin.eot');

	src: url('../fonts/roboto.thin.woff') format('woff'), url('../fonts/roboto.thin.ttf') format('truetype'), url('../fonts/roboto.thin.svg') format('svg');

	font-weight: normal;

	font-style: normal;

}

*/

/*@font-face 

{

	font-family: roboto regular;

	src: url('fonts/roboto.regular.eot');

	src: url('fonts/roboto.regular.woff') format('woff'), url('fonts/roboto.regular.ttf') format('truetype'), url('fonts/roboto.regular.svg') format('svg');

} 

@font-face {

	font-family: 'roboto';

	src: url('../fonts/roboto.light.eot');

	src: url('../fonts/roboto.light.woff') format('woff'), url('../fonts/roboto.light.ttf') format('truetype'), url('../fonts/roboto.light.svg') format('svg');

	font-weight: normal;

	font-style: normal;

}

*/



/*bootstrap tagsinput---------------------------------*/







.bootstrap-tagsinput {

    background-color: #fff;

    border: 1px solid #ccc;

    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

    display: inline-block;

    padding: 4px 6px;

    color: #555;

    vertical-align: middle;

    border-radius: 4px;

    max-width: 100%;

    line-height: 22px;

    cursor: text;

}

.bootstrap-tagsinput input {

    border: none;

    box-shadow: none;

    outline: none;

    background-color: transparent;

    padding: 0 6px;

    margin: 0;

    width: auto !important;

    max-width: inherit;

}

.bootstrap-tagsinput.form-control input::-moz-placeholder {

    color: #777;

    opacity: 1;

}

.bootstrap-tagsinput.form-control input:-ms-input-placeholder {

    color: #777;

}

.bootstrap-tagsinput.form-control input::-webkit-input-placeholder {

    color: #777;

}

.bootstrap-tagsinput input:focus {

    border: none;

    box-shadow: none;

}

.bootstrap-tagsinput .tag {

    float: left;

    margin: 10px 6px;

    color: white;

}

.bootstrap-tagsinput .tag [data-role="remove"] {

    margin-left: 8px;

    cursor: pointer;

}

.bootstrap-tagsinput .tag [data-role="remove"]:after {

    content: "x";

    padding: 0px 2px;

}

.bootstrap-tagsinput .tag [data-role="remove"]:hover {

    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);

}

.bootstrap-tagsinput .tag [data-role="remove"]:hover:active {

    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}





/*bootstrap tagsinput---------------------------------*/









h4 {

    font-size: 1.5em !important;

    letter-spacing: normal !important;

}

h1,
h2,
h3,
h4,
h5,
h6,
body,
html {

    /*font-family: 'Open Sans', sans-serif !important;*/

    letter-spacing: normal !important;

}



.clear {

    clear: both;

}

a:hover,
a:focus {

    text-decoration: none;



}

.dropdown-menu>li>a:hover,
.dropdown-menu>li>a:focus {

    width: 100%;

}







/* -------------------------------------------------------------------------

    TYPOGRAPHY

------------------------------------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6,
hgroup,
form,
ul,
ol,
dd,
figure,
pre,
table,
button,
fieldset,
hr,
iframe {

    margin: 0;

    /*font-family: 'Open Sans', sans-serif !important;*/

    letter-spacing: normal !important;

}



h1 {

    font-size: 3.75em;

    line-height: 1.1em;

    letter-spacing: normal !important;

}



h2 {

    font-size: 3em;

    line-height: 1.1em;

}



h3 {

    font-size: 1.5em;

    line-height: 1.1em;

    color: black;

    font-weight: bold;

}



h4 {

    font-size: 1.875em;

    line-height: 1.1em;

}



h5 {

    font-size: 1.5em;

    line-height: 1.1em;

}



h6 {

    font-size: 1.125em;

    line-height: 1.1em;

}

h1,

h2,

h3,

h4,

h5,

h6 {

    margin-top: 30px;

    margin-bottom: 10px;

}





a {

    text-decoration: none !important;

    /*color: rgba(26, 26, 26, 0.5);*/

    -webkit-transition: all 300ms ease-in-out;

    -moz-transition: all 300ms ease-in-out;

    -ms-transition: all 300ms ease-in-out;

    -o-transition: all 300ms ease-in-out;

    transition: all 300ms ease-in-out;

}



a:hover,

a.active {

    color: #333;

    text-decoration: none;

    -webkit-transition: all 300ms ease-in-out;

    -moz-transition: all 300ms ease-in-out;

    -ms-transition: all 300ms ease-in-out;

    -o-transition: all 300ms ease-in-out;

    transition: all 300ms ease-in-out;

    text-decoration: none !important;

}



img {
    max-width: 100%;
}



table {
    width: 100%;
}



ul>li {
    position: relative;
}



ul>li:first-child {
    margin-left: 0;
}



ul>li:last-child {
    margin-right: 0;
}



/* -------------------------------------------------------------------------

    FORMS

------------------------------------------------------------------------- */

.bootstrap-tagsinput {

    width: 100% !important;

    padding: 0px !important;

    border: none !important;

}

.bootstrap-tagsinput input {

    border: none !important;

    border-radius: 0px !important;

}

.default-form textarea {

    padding: 9px 7px !important;

    height: 60px !important;

    width: 100%;
    font-family: 'Open Sans', sans-serif !important;

    font-size: 14px;

    border: 1px solid lightgrey;

    -webkit-transition: all 300ms ease-in-out;

    -moz-transition: all 300ms ease-in-out;

    -ms-transition: all 300ms ease-in-out;

    -o-transition: all 300ms ease-in-out;

    transition: all 300ms ease-in-out;

}

.default-form input[type=text],

.default-form input[type=number],

.default-form input[type=password],

.default-form input[type=date],

.default-form input[type=email],

.default-form select {

    padding: 9px 7px !important;

    height: 40px !important;

    width: 100%;
    font-family: 'Open Sans', sans-serif !important;

    font-size: 14px;

    border: 1px solid lightgrey;

    -webkit-transition: all 300ms ease-in-out;

    -moz-transition: all 300ms ease-in-out;

    -ms-transition: all 300ms ease-in-out;

    -o-transition: all 300ms ease-in-out;

    transition: all 300ms ease-in-out;

}



.passenger-name-section input[type=text],

.passenger-name-section input[type=password],

.passenger-name-section input[type=date],

.passenger-name-section input[type=email],

.passenger-name-section select {

    padding: 9px 7px;

    height: 50px;

    width: 100%;
    font-family: 'Open Sans', sans-serif !important;

    font-size: 14px;

    border: 1px solid transparent;

    -webkit-transition: all 300ms ease-in-out;

    -moz-transition: all 300ms ease-in-out;

    -ms-transition: all 300ms ease-in-out;

    -o-transition: all 300ms ease-in-out;

    transition: all 300ms ease-in-out;

    border-radius: 0px !important;

}

.passenger-name-section input[type=text],



.passenger-name-section input[type=password],

.passenger-name-section input[type=date],

.passenger-name-section input[type=email],

.passenger-name-section select,

.passenger-name-section textarea {

    color: black !important;

    text-shadow: none;

    background: white !important;

}







.passenger-section select:focus:-ms-input-placeholder {
    color: transparent !important;
}



.passenger-section select:focus::-webkit-input-placeholder {
    color: transparent !important;
}



.passenger-sectionselect:focus:-moz-placeholder {

    color: transparent !important;

}

.passenger-section select:focus::-moz-placeholder {

    color: transparent;

}



.passenger-section select:-ms-input-placeholder {
    color: #a9a9a9;
}



.passenger-section select::-webkit-input-placeholder {
    color: #a9a9a9;
}



.passenger-section select:-moz-placeholder {

    color: #a9a9a9;

}

.passenger-section select::-moz-placeholder {

    color: #a9a9a9;

}





select:focus:-ms-input-placeholder {
    color: transparent !important;
}



select:focus::-webkit-input-placeholder {
    color: transparent !important;
}



elect:focus:-moz-placeholder {

    color: transparent !important;

}

select:focus::-moz-placeholder {

    color: transparent;

}



select:-ms-input-placeholder {
    color: #a9a9a9;
}



select::-webkit-input-placeholder {
    color: #a9a9a9;
}



select:-moz-placeholder {

    color: #a9a9a9;

}

select::-moz-placeholder {

    color: #a9a9a9;

}



.default-form select:-ms-input-placeholder {
    color: #a9a9a9;
}



.default-form select::-webkit-input-placeholder {
    color: #a9a9a9;
}



.default-form select:-moz-placeholder {

    color: #a9a9a9;

}

.default-form select::-moz-placeholder {

    color: #a9a9a9;

}



.card select:focus:-ms-input-placeholder {
    color: transparent !important;
}



.card select:focus::-webkit-input-placeholder {
    color: transparent !important;
}



.card select:focus:-moz-placeholder {

    color: transparent !important;

}

.card select:focus::-moz-placeholder {

    color: transparent;

}



.card select:-ms-input-placeholder {
    color: #a9a9a9;
}



.card select::-webkit-input-placeholder {
    color: #a9a9a9;
}



.card select:-moz-placeholder {

    color: #a9a9a9;

}

.card select::-moz-placeholder {

    color: #a9a9a9;

}

.preamble p {
    text-shadow: none !important;
    color: #fff;
}



.default-form select:focus:-ms-input-placeholder {
    color: transparent;
}



.default-form select:focus::-webkit-input-placeholder {
    color: transparent;
}



.default-form select:focus:-moz-placeholder {

    color: transparent;

}

.default-form select:focus::-moz-placeholder {

    color: transparent;

}



#passenger_name:focus:-ms-input-placeholder {
    color: transparent !important;
}



#passenger_name:focus::-webkit-input-placeholder {
    color: transparent !important;
}



#passenger_name:focus:-moz-placeholder {

    color: transparent !important;

}

#passenger_name:focus::-moz-placeholder {

    color: transparent !important;

}



#passenger_name:-ms-input-placeholder {
    color: #a9a9a9;
}



#passenger_name::-webkit-input-placeholder {
    color: #a9a9a9;
}



#passenger_name:-moz-placeholder {

    color: #a9a9a9;

}

#passenger_name::-moz-placeholder {

    color: #a9a9a9;

}



#email-placeholder:-ms-input-placeholder {
    color: #a9a9a9;
}



#email-placeholder::-webkit-input-placeholder {
    color: #a9a9a9;
}



#email-placeholder:-moz-placeholder {

    color: #a9a9a9;

}

#email-placeholder::-moz-placeholder {

    color: #a9a9a9;

}





#phone-placeholder:-ms-input-placeholder {
    color: #a9a9a9;
}



#phone-placeholder::-webkit-input-placeholder {
    color: #a9a9a9;
}



#phone-placeholder:-moz-placeholder {

    color: #a9a9a9;

}

#phone-placeholder::-moz-placeholder {

    color: #a9a9a9;

}



#country_code:-ms-input-placeholder {
    color: #a9a9a9;
}



#country_code::-webkit-input-placeholder {
    color: #a9a9a9;
}






#country_code:-moz-placeholder {

    color: #a9a9a9;

}

#country_code::-moz-placeholder {

    color: #a9a9a9;

}



#emergency_phone_number:-ms-input-placeholder {
    color: #a9a9a9;
}



#emergency_phone_number::-webkit-input-placeholder {
    color: #a9a9a9;
}



#emergency_phone_number:-moz-placeholder {

    color: #a9a9a9;

}

#emergency_phone_number::-moz-placeholder {

    color: #a9a9a9;

}



.passenger-name-section textarea:-ms-input-placeholder {
    color: #a9a9a9;
}



.passenger-name-section textarea::-webkit-input-placeholder {
    color: #a9a9a9;
}



.passenger-name-section textarea:-moz-placeholder {

    color: #a9a9a9;

}

.passenger-name-section textarea::-moz-placeholder {

    color: #a9a9a9;

}

.passenger-name-section input:-ms-input-placeholder {
    color: #a9a9a9;
}



.passenger-name-section input::-webkit-input-placeholder {
    color: #a9a9a9;
}



.passenger-name-section input::-moz-placeholder {

    color: #a9a9a9;

    opacity: 1;

}

input:focus:-ms-input-placeholder {
    color: transparent !important;
}



input:focus::-webkit-input-placeholder {
    color: transparent !important;
}



input:focus:-moz-placeholder {

    color: transparent !important;

    opacity: 1;

}



input:-ms-input-placeholder {
    color: #a9a9a9;
}



input::-webkit-input-placeholder {
    color: #a9a9a9;
}



input:-moz-placeholder {

    color: #a9a9a9;

    opacity: 1;

}



.passenger-section input::-webkit-input-placeholder {
    color: #a9a9a9;
}



.passenger-section input:-moz-placeholder {

    color: #a9a9a9;

    opacity: 1;

}

.passenger-section input:-ms-input-placeholder {
    color: #a9a9a9 !important;
}



.passenger-section input[type=text],

.passenger-section input[type=password],

.passenger-section input[type=date],

.passenger-section nput[type=email],

.passenger-section select,

.passenger-section textarea {

    color: #000 !important;

    text-shadow: none;

    background: white !important;

}

.passenger-section input {

    border-radius: 0px !important;

    padding: 9px 20px;

    height: 50px;

    width: 100%;
    font-family: 'Open Sans', sans-serif !important;

    font-size: 14px;

    border: 1px solid transparent;

    -webkit-transition: all 300ms ease-in-out;

    -moz-transition: all 300ms ease-in-out;

    -ms-transition: all 300ms ease-in-out;

    -o-transition: all 300ms ease-in-out;

    transition: all 300ms ease-in-out;

    color: #fff !important;

    text-shadow: none;

    background: white !important
}

.passenger-section input:focus {

    outline: none;

    -webkit-transition: all 300ms ease-in-out;

    -moz-transition: all 300ms ease-in-out;

    -ms-transition: all 300ms ease-in-out;

    -o-transition: all 300ms ease-in-out;

    transition: all 300ms ease-in-out;

}





.default-form input[type=text]:focus,

.default-form input[type=password]:focus,

.default-form input[type=date]:focus,

.default-form input[type=email]:focus,

.default-form select:focus,

.default-form textarea:focus {

    outline: none;

    -webkit-transition: all 300ms ease-in-out;

    -moz-transition: all 300ms ease-in-out;

    -ms-transition: all 300ms ease-in-out;

    -o-transition: all 300ms ease-in-out;

    transition: all 300ms ease-in-out;

}



.default-form label {
    font-family: 'Open Sans', sans-serif !important;

    font-size: 15px;

    /*color: #1a1a1a;*/

    color: #fff;

    float: left;

    font-weight: bold;

    letter-spacing: normal !important;

    text-shadow: 1px 1px 3px #000 !important;
    position: relative;
    width: 100%;

}

.default-form label::after {
    background: rgba(0, 0, 0, 0) url("./images/flag1.png") no-repeat scroll right center;
    content: "";
    height: 20px;
    position: absolute;
    right: 0;
    width: 20px;
}

.tab-content label {

    text-shadow: none !important;

    font-weight: normal;

    letter-spacing: normal !important;

}

.default-form span i {


    position: absolute;

    padding: 5px;

    font-size: 14px;

    color: #fff;

}



.default-form select {

    -webkit-appearance: none;

    -moz-appearance: none;

    appearance: none;

    -webkit-border-radius: 0;

    -moz-border-radius: 0;

    -ms-border-radius: 0;

    -o-border-radius: 0;

    border-radius: 0;

}



.default-form .select-box select {
    display: none;
}



.default-form .select-clone {

    position: absolute;

    display: none;

    width: 100%;

    overflow-y: auto;

    text-align: left;

    z-index: 999;

}



.default-form .calendar i {

    right: 15px;

    top: 13px;

    cursor: pointer;

}



.default-form .select-clone.toggled {
    display: block;
}



.default-form .select-box i {

    right: 15px;

    cursor: pointer;

    z-index: 20;

}



.default-form .select-box .arrow-up {
    top: 8px;
}



.default-form .select-box .arrow-down {
    top: 19px;
}



.default-form .select-clone li {

    padding-left: 20px;

    font-size: 14px;

    cursor: pointer;

}



.default-form .value-holder {

    position: relative;

    width: 100%;

    z-index: 10;

}



.default-form .radio-input input[type="radio"] {
    display: none;
}



.default-form .radio-input label {
    cursor: pointer;
}



.default-form .radio-input label:before {

    position: relative;

    display: inline-block;

    top: 3px;

    margin-right: 10px;

    width: 14px;

    height: 14px;

    line-height: 0;

    font-size: 0;

    border-radius: 50%;

    border: 3px solid #f5f5f5;

    box-shadow: 0 0 0 1px #1e2e42;

    content: "";

}



.default-form .radio-input.active label:before {
    background-color: #1e2e42;
}



.default-form .checkbox-input input[type="checkbox"] {
    display: none;
}



.default-form .checkbox-input label {

    margin-bottom: 0;

    display: block;

    cursor: pointer;

    color: #000;

}



.default-form .checkbox-input {
    white-space: nowrap;
}



.default-form .checkbox-input label:before {

    position: relative;

    display: inline-block;

    top: 3px;

    margin-right: 10px;

    width: 17px;

    height: 17px;

    line-height: 30px;

    text-align: center;

    color: #1e2e42;

    border: 1px solid #1e2e42;

    content: "";

}



.default-form .checkbox-input.active label:before {

    top: 0;

    font: normal normal 14px/17px "fontawesome";

    -webkit-font-smoothing: antialiased;

    -moz-osx-font-smoothing: grayscale;

    content: "\f00c";

}



/* -------------------------------------------------------------------------

    DATE PICKER

------------------------------------------------------------------------- */

.ui-datepicker {

    padding: 10px;

    display: none;

    width: 260px;

    z-index: 30 !important;

    background: #454545
}



.ui-datepicker-header {

    position: relative;

    padding: 8px 0;

    text-align: center;

    color: #fff;

    font-size: 16px;

    background: rgba(30, 46, 66, 0.7);

}



.ui-datepicker-prev,

.ui-datepicker-next {

    position: absolute;

    top: 6px;

    left: 3px;

    padding: 10px;

    line-height: 14px;

    font-size: 14px;

    cursor: pointer;

    opacity: 1;

    border: 0;

    -webkit-transition: all 300ms ease-in-out;

    -moz-transition: all 300ms ease-in-out;

    -ms-transition: all 300ms ease-in-out;

    -o-transition: all 300ms ease-in-out;

    transition: all 300ms ease-in-out;

}



.ui-datepicker-prev:active {
    left: 1px;
}

.ui-datepicker-next:active {
    right: 1px;
}

.ui-datepicker-next {

    left: auto;

    right: 3px;

}



.ui-datepicker-prev span,

.ui-datepicker-next span {
    display: none;
}



.ui-datepicker-prev:before,

.ui-datepicker-next:before {

    display: inline-block;

    font-family: FontAwesome;

    font-style: normal;

    font-weight: normal;

    line-height: 1;

    color: #fff;

    -webkit-font-smoothing: antialiased;

    -moz-osx-font-smoothing: grayscale;

    content: "\f053";

}



.ui-datepicker-next:before {
    content: "\f054";
}



.ui-datepicker-calendar {

    margin: 0;

    display: table;

    width: 100%;

    border-collapse: separate;

    border-spacing: 1px 1px;

}



.ui-datepicker-calendar th {

    padding: 5px;

    font-size: 1.1em;

    text-align: center;

    color: #fff;

    background: transparent;

}



.ui-datepicker-calendar td {

    padding: 0 !important;

    text-align: center;

    color: #fff;

    background: rgba(30, 46, 66, 0.7);

    border: 0;

}



.ui-datepicker-calendar td:hover {
    background: #162232;
}



.ui-datepicker-calendar td a {

    display: block;

    padding: 6px 0;

    line-height: 18px;

    font-weight: bold;

    color: #fff;

    border: 0;

    text-align: center !important;

}



.ui-datepicker-calendar td span {

    color: #d0dae6;

    font-size: 18px;

}



.ui-datepicker-calendar .ui-datepicker-unselectable {
    padding: 6px 0;
}



/* -------------------------------------------------------------------------

    TABS

------------------------------------------------------------------------- */

.tab-title {

    float: left;

    cursor: pointer;

    -webkit-transition: all .3s ease-in-out;

    -moz-transition: all .3s ease-in-out;

    -ms-transition: all .3s ease-in-out;

    -o-transition: all .3s ease-in-out;

    transition: all .3s ease-in-out;

}



.tab-title:hover {

    -webkit-transition: all .3s ease-in-out;

    -moz-transition: all .3s ease-in-out;

    -ms-transition: all .3s ease-in-out;

    -o-transition: all .3s ease-in-out;

    transition: all .3s ease-in-out;

}



.tab-title>a {

    padding: 17px 0;

    display: block;

    font-size: 13px;

    line-height: 1.1em;

    font-weight: bold;

    text-align: center;

    text-transform: uppercase;

}



/*.tab-content {  display: none; }*/



.tabs-container,

.tab-content.active {
    display: block;
}


.form-row {
    margin-top: 10px;
}



.form-row:first-child {
    margin-top: 0;
}



.bg-grey {
    background: #f5f5f5;
}



/* -------------------------------------------------------------------------

    BACK TO TOP BUTTON

------------------------------------------------------------------------- */

#back-to-top {

    position: fixed;

    padding: 10px 14px;

    right: 30px;

    bottom: 30px;

    display: none;

    color: #fff;

    /*background: #1e2e42;*/

    background: #db591e;

}



#back-to-top:hover {
    /*background: #162232;*/
    background: #bf4c18;
}


----------------------------------------------------- */ .css-table {

    display: table;

    width: 100%;

    height: 100%;

}



/* -------------------------------------------------------------------------

   OVERLAY

------------------------------------------------------------------------- */

.overlay {

    position: relative;

    display: block;

    overflow: hidden;

    display: table-cell;

}



.overlay img {

    display: block;

    width: 100%;

    height: auto;

}



.overlay:hover .overlay-content {

    opacity: 1;

    visibility: visible;

    -webkit-transform: scale(1);

    -moz-transform: scale(1);

    -ms-transform: scale(1);

    -o-transform: scale(1);

    transform: scale(1);

}



.overlay:hover .overlay-shadow {

    visibility: visible;

    opacity: 1;

}



.overlay-shadow {

    position: absolute;

    top: 0;

    left: 0;

    bottom: 0;

    right: 0;

    opacity: 0;

    /*background:rgba(30, 46, 66, 0.8);*/

    background: rgba(219, 89, 30, .7);

    -webkit-transition: all .3s ease-in-out;

    -moz-transition: all .3s ease-in-out;

    -ms-transition: all .3s ease-in-out;

    -o-transition: all .3s ease-in-out;

    transition: all .3s ease-in-out;

    -webkit-transform: scale(1);

    -moz-transform: scale(1);

    -ms-transform: scale(1);

    -o-transform: scale(1);

    transform: scale(1);

}



.overlay-content {

    position: absolute;

    top: 50%;

    width: 100%;

    text-align: center;

    visibility: hidden;

    opacity: 0;

    -webkit-transform: scale(0.2);

    -moz-transform: scale(0.2);

    -ms-transform: scale(0.2);

    -o-transform: scale(0.2);

    transform: scale(0.2);

    -webkit-transition: all 0.3s ease 0s;

    -moz-transition: all 0.3s ease 0s;

    -ms-transition: all 0.3s ease 0s;

    -o-transition: all 0.3s ease 0s;

    transition: all 0.3s ease 0s;

}



.overlay-content .button {

    color: #fff;

    border-color: #fff;

}



.overlay-content .button:hover {

    color: #162232;

    background: #fff;

}



/* -------------------------------------------------------------------------

    PREAMBLE

------------------------------------------------------------------------- */

.preamble {

    position: relative;

    text-align: center;

}



.preamble img {
    margin: 20px 0;
}



.preamble h3 {
    margin: 0;
    font-size: 1.5em;
    font-family: 'Open Sans', sans-serif !important;
}



.header-preamble {

    position: relative;

    margin: 0 15px 50px 15px;

    height: 194px;

    background: #f5f5f5;

}



.header-preamble .logo {

    position: absolute;

    width: 270px;

    height: 100%;

    background: #1e2e42;

    text-align: center;

    vertical-align: middle;

}



.header-preamble .logo img {
    margin-top: 55px;
}



.header-preamble .content h3 {

    margin-top: 0;

    margin-bottom: 15px;

}



.header-preamble .content {

    padding: 0 50px 0 320px;

}



/* -------------------------------------------------------------------------

    ALERTS

------------------------------------------------------------------------- */

.alert-message {

    position: relative;

    display: none;

    border: 1px solid transparent;

}



.alert-message .close {

    position: absolute;

    top: 0;

    right: 2px;

    cursor: pointer;

}



/* -------------------------------------------------------------------------

   RADIAL PROGRESS BAR

------------------------------------------------------------------------- */

.radial-progress-bar {

    display: inline-block;

    margin-top: 20px;

    text-align: center;

}

.radial-progress-bar * {

    -webkit-box-sizing: border-box;

    -moz-box-sizing: border-box;

    -o-box-sizing: border-box;

    box-sizing: border-box;

}

.radial-progress-bar .loader {

    position: relative;

    display: inline-block;

    width: 140px;

    height: 140px;

    -webkit-user-select: none;

    -moz-user-select: none;

    -o-user-select: none;

    user-select: none;

}

.radial-progress-bar .loader-bg {

    width: 100%;

    height: 100%;

    border-radius: 50%;

    border: 10px solid transparent;

    box-sizing: border-box;

}



.radial-progress-bar .spiner-holder-one {

    position: absolute;

    top: 0;

    left: 0;

    overflow: hidden;

    width: 50%;

    height: 50%;

    background: transparent;

    box-sizing: border-box;

}



.radial-progress-bar .spiner-holder-two {

    position: absolute;

    top: 0;

    left: 0;

    overflow: hidden;

    width: 100%;

    height: 100%;

    background: transparent;

    box-sizing: border-box;

}



.radial-progress-bar .loader-spiner {

    width: 200%;

    height: 200%;

    border-radius: 50%;

    border: 10px solid transparent;

    box-sizing: border-box;

}



.radial-progress-bar .animate-0-25-a {

    -webkit-transform: rotate(90deg);

    -moz-transform: rotate(90deg);

    -o-transform: rotate(90deg);

    transform: rotate(90deg);

    -webkit-transform-origin: 100% 100%;

    -moz-transform-origin: 100% 100%;

    -o-transform-origin: 100% 100%;

    transform-origin: 100% 100%;

}



.radial-progress-bar .animate-0-25-b {

    -webkit-transform: rotate(-90deg);

    -moz-transform: rotate(-90deg);

    -o-transform: rotate(-90deg);

    transform: rotate(-90deg);

    -webkit-transform-origin: 100% 100%;

    -moz-transform-origin: 100% 100%;

    -o-transform-origin: 100% 100%;

    transform-origin: 100% 100%;

}



.radial-progress-bar .animate-25-50-a {

    -webkit-transform: rotate(180deg);

    -moz-transform: rotate(180deg);

    -o-transform: rotate(180deg);

    transform: rotate(180deg);

    -webkit-transform-origin: 100% 100%;

    -moz-transform-origin: 100% 100%;

    -o-transform-origin: 100% 100%;

    transform-origin: 100% 100%;

}



.radial-progress-bar .animate-25-50-b {

    -webkit-transform: rotate(-90deg);

    -moz-transform: rotate(-90deg);

    -o-transform: rotate(-90deg);

    transform: rotate(-90deg);

    -webkit-transform-origin: 100% 100%;

    -moz-transform-origin: 100% 100%;

    -o-transform-origin: 100% 100%;

    transform-origin: 100% 100%;

}



.radial-progress-bar .animate-50-75-a {

    -webkit-transform: rotate(270deg);

    -moz-transform: rotate(270deg);

    -o-transform: rotate(270deg);

    transform: rotate(270deg);

    -webkit-transform-origin: 100% 100%;

    -moz-transform-origin: 100% 100%;

    -o-transform-origin: 100% 100%;

    transform-origin: 100% 100%;

}



.radial-progress-bar .animate-50-75-b {

    -webkit-transform: rotate(-90deg);

    -moz-transform: rotate(-90deg);

    -o-transform: rotate(-90deg);

    transform: rotate(-90deg);

    -webkit-transform-origin: 100% 100%;

    -moz-transform-origin: 100% 100%;

    -o-transform-origin: 100% 100%;

    transform-origin: 100% 100%;

}



.radial-progress-bar .animate-75-100-a {

    -webkit-transform: rotate(0deg);

    -moz-transform: rotate(0deg);

    -o-transform: rotate(0deg);

    transform: rotate(0deg);

    -webkit-transform-origin: 100% 100%;

    -moz-transform-origin: 100% 100%;

    -o-transform-origin: 100% 100%;

    transform-origin: 100% 100%;

}



.radial-progress-bar .animate-75-100-b {

    -webkit-transform: rotate(-90deg);

    -moz-transform: rotate(-90deg);

    -o-transform: rotate(-90deg);

    transform: rotate(-90deg);

    -webkit-transform-origin: 100% 100%;

    -moz-transform-origin: 100% 100%;

    -o-transform-origin: 100% 100%;

    transform-origin: 100% 100%;

}



.radial-progress-bar .text {

    text-align: center;

    line-height: 120px;

    font-size: 30px;

}



.radial-progress-bar-label {
    font-size: 30px;
}



.radial-progress-bar .loader-bg {
    border-color: #e5e5e5;
}



.radial-progress-bar .loader-spiner {
    border-color: #423338;
}



.radial-progress-bar .text {

    font-family: 'crimson text', sans-serif;

    font-size: 30px;

    color: #1a1a1a;

}



/* -------------------------------------------------------------------------

   BUTTONS

------------------------------------------------------------------------- */

button {

    padding: 0;

    line-height: 30px;

    background: transparent;

    border-radius: 0;

    outline: none;

    border: none;

    -webkit-transition: all 300ms ease-in-out;

    -moz-transition: all 300ms ease-in-out;

    -ms-transition: all 300ms ease-in-out;

    -o-transition: all 300ms ease-in-out;

    transition: all 300ms ease-in-out;

}



button:hover {

    -webkit-transition: all 300ms ease-in-out;

    -moz-transition: all 300ms ease-in-out;

    -ms-transition: all 300ms ease-in-out;

    -o-transition: all 300ms ease-in-out;

    transition: all 300ms ease-in-out;

}



.btn {

    padding: 13px 14px;

    border-radius: 0;

    font-weight: bold;

    font-family: inherit;

    vertical-align: inherit;

    text-transform: uppercase;

    -webkit-transition: all .3s ease-in-out;

    -moz-transition: all .3s ease-in-out;

    -ms-transition: all .3s ease-in-out;

    -o-transition: all .3s ease-in-out;

    transition: all .3s ease-in-out;

}



.btn:hover {

    -webkit-transition: all .3s ease-in-out;

    -moz-transition: all .3s ease-in-out;

    -ms-transition: all .3s ease-in-out;

    -o-transition: all .3s ease-in-out;

    transition: all .3s ease-in-out;

}



.btn.dark {

    color: #1e2e42;

    border: 2px solid #1e2e42;

}



.btn.dark:hover {

    color: #fff;

    background: #1e2e42;

}

.btn.light,
.instant-form a span.ret {



    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e2e42+0,111b28+100 */

    background: #1e2e42;
    /* Old browsers */
    background: -moz-linear-gradient(top, #1e2e42 0%, #111b28 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #1e2e42 0%, #111b28 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #1e2e42 0%, #111b28 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1e2e42', endColorstr='#111b28', GradientType=0);
    /* IE6-9 */

    border: medium none !important;

    color: #fff;
    font-size: 1rem;
    font-weight: 400 !important;
    height: 40px;
    padding: 10px !important;
    transition: all 0.3s ease 0s;
    border-radius: 4px;
}

.btn.light:hover,
.instant-form a span.ret:hover {
    cursor: pointer;
    color: #fff;
    border: none !important;
    height: 40px;
    border-radius: 4px;
    transition: all 0.3s ease 0s;

}

.rgt-img-section {
    min-height: 455px;
}

.quote-img .rgt-sec h5 {
    font-size: 13px;
}

#way-point>.where-input {
    position: relative;
}

#way-point>.where-input>.result-drop-down {
    width: 100% !important;
}

#way-point>.where-input>span>i {
    color: #ffffff;
    position: absolute;
    top: calc(50% - 4px);
    right: 2%;
    background: red;
    border-radius: 100px;
    cursor: pointer;
}

#way-point>.where-input.has-error>span>i {
    top: calc(50% - 13px);
}

#loading,
#loading1,
#loading2 {
    width: 90px;
    height: 90px;
    position: absolute;
    top: calc(50% - 70px);
    left: calc(50% - 60px);
    background: url(https://www.jewels-airport-transfers.co.uk/themes/jewelsimages/loading.gif) no-repeat;
    background-size: 100%;
    display: none;
    z-index: 999;
}

fieldset {
    padding: 10px 15px !important;
    border: 1px solid #d9d9d9;
    min-width: auto !important;
    margin-bottom: 15px;
}

legend {
    text-align: left;
    display: inline-block;
    width: auto;
    padding: 0;
    margin-bottom: 5px;
    font-size: 16px;
    line-height: inherit;
    color: #ff6357;
    border: 0;
    border-bottom: 0px solid #e5e5e5;
    font-weight: 500;
}

.single-edit i {
    position: relative !important;
    font-size: 16px !important;
    cursor: pointer;
}

#obcarbox,
#obcarbox1 {
    padding: 2px 5px;
}

#obcarbox ul,
#obcarbox1 ul {
    padding: 0px;
    overflow: hidden;
}

#obcarbox ul li label,
#obcarbox1 ul li label {
    margin: 0px 5px;
    cursor: pointer;
}

#carSection {
    padding-left: 0px;
    padding-right: 0px;
}

#obcarbox ul li label input[type='radio'],
#obcarbox1 ul li label input[type='radio'] {
    margin-right: 2px;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
    appearance: field;
}

.class_airport {
    padding: 10px;
}

.head_class {
    padding: 0px;
}

.help-block {
    margin-top: -20px;
    margin-bottom: 20px;
    background: #b9b9b9;
    width: 30%;
    font-weight: bold;
}

.has-error {
    text-shadow: none !important;
    font-weight: bold;
}

/* -------------------------------------------------------------------------

    MARGINS SHORTCODES

------------------------------------------------------------------------- */

.mt100 {
    margin-top: 100px;
}



.mt90 {
    margin-top: 90px;
}



.mt80 {
    margin-top: 80px;
}



.mt70 {
    margin-top: 70px;
}



.mt60 {
    margin-top: 60px;
}



.mt50 {
    margin-top: 50px;
}



/* -------------------------------------------------------------------------

    LISTS

------------------------------------------------------------------------- */

.custom-list {

    padding: 0;

    margin: 0;

    list-style-type: none;

}



.custom-list>li {

    padding: 0;

    margin: 0;

    list-style-type: none;

}



.custom-list>li:first-child {
    margin-left: 0;
}



.custom-list>li:last-child {
    margin-right: 0;
}



/* -------------------------------------------------------------------------

    PAGINATIONS

------------------------------------------------------------------------- */

.owl-pagination {

    position: absolute;

    width: 100%;

}



.owl-buttons .owl-prev {
    left: 30px;
}



.owl-buttons .owl-next {
    right: 30px;
}



.owl-buttons .owl-next:before {
    content: "\f105";
}



.owl-buttons .owl-prev:before {
    content: "\f104";
}



.owl-buttons .owl-prev:before,

.owl-buttons .owl-next:before {

    font-family: FontAwesome;

    color: rgba(255, 255, 255, 0.5);

    font-size: 80px;

    -webkit-transition: all .3s ease-in-out;

    -moz-transition: all .3s ease-in-out;

    -ms-transition: all .3s ease-in-out;

    -o-transition: all .3s ease-in-out;

    transition: all .3s ease-in-out;

}



/* -----------------------------------------------------------------------------



    HEADER



----------------------------------------------------------------------------- */

#header {

    position: relative;

    color: #fff;

}



#header .header-logo {

    position: absolute;

    display: block;

    top: 0;

    width: 100%;

    height: 0;

    text-align: center;

    z-index: 5;

}



#header .css-table {

    position: absolute;

    top: 50px;

}



#header #banner {
    position: relative;
}



#header #banner .banner-bg {

    width: 100%;

}



#header #banner .banner-bg-item {

    width: 100%;

    background-position: center;

    overflow: hidden;

    -webkit-background-size: cover;

    -moz-background-size: cover;

    background-size: cover;

}

.collapse:not(.show) {
    display: none;
}

/* -------------------------------------------------------------------------

    HEADER TOGGLE

------------------------------------------------------------------------- */

#toggle {

    position: absolute;

    margin-bottom: 0;

    display: none;

    top: 0;

    z-index: 99999;

    width: 100%;

    cursor: pointer;

    color: #fff;

    font-family: 'FontAwesome';

    font-size: 20px;

    height: 40px;

    line-height: 40px;

    background: #162232;

    text-align: center;

    outline: none;

}



#toggle:after {
    content: '\f0c9';
}



#toggle.toggled:after {
    content: '\f077'
}



.enable-fixed-header #toggle {
    position: fixed;
}



/* -------------------------------------------------------------------------

   BANNER PAGINATION

------------------------------------------------------------------------- */

#header .owl-pagination {

    bottom: 60px;

    height: 19px;

    z-index: 1;

}



#header #banner:hover .owl-buttons {

    opacity: 1;

    -webkit-transition: all .3s ease-in-out;

    -moz-transition: all .3s ease-in-out;

    -ms-transition: all .3s ease-in-out;

    -o-transition: all .3s ease-in-out;

    transition: all .3s ease-in-out;

}



#header .owl-buttons .owl-prev:hover:before,

#header .owl-buttons .owl-next:hover:before {

    font-family: FontAwesome;

    color: #fff;

    font-size: 80px;

    -webkit-transition: all .3s ease-in-out;

    -moz-transition: all .3s ease-in-out;

    -ms-transition: all .3s ease-in-out;

    -o-transition: all .3s ease-in-out;

    transition: all .3s ease-in-out;

}



/* -------------------------------------------------------------------------

    HEADER TRIANGLE

------------------------------------------------------------------------- */

#header.triangle .header-logo:after {

    position: absolute;

    margin: 0 auto;

    width: 352px;

    top: 0;

    left: 0;

    right: 0;

    border-style: solid;

    /*border-width: 176px 176px 0 176px;*/

    border-width: 110px 130px 0 130px;

    border-color: #fff transparent transparent transparent;

    content: "";

    display: none !important;

}



#header.triangle .header-logo a>img {

    position: relative;

    /*margin-top: 36px;

  width: 153px;

  */

    width: 175px;

    z-index: 5;

    display: none !important;

}



#header.triangle .header-nav ul li {
    line-height: 70px;
}



#header.triangle .banner-search-inner {
    margin-top: 40px;
}



/* -------------------------------------------------------------------------

    HEADER CLASSIC

------------------------------------------------------------------------- */

#header.classic .header-logo {
    top: 74px;
}



#header.classic .header-nav ul li {
    line-height: 140px;
}



#header.classic .banner-search-inner {
    margin-top: 180px;
}



#header.classic.header-title {
    height: 310px;
}



#header.classic .header-title-inner {
    top: 180px;
}



/* -------------------------------------------------------------------------

    HEADER TITLE

------------------------------------------------------------------------- */



.header-title-inner {

    position: absolute;

    padding: 30px 0;

    width: 100%;

    background: url(../img/breadcrumb.jpg);

    display: none;

}



.header-title-inner h3 {

    margin: 0;

    color: #fff;

    font-size: 24px;

}



.breadcrumbs li {

    float: left;

    display: inline-block;

    padding: 2px 0;

}



.breadcrumbs li a {

    margin-left: 13px;

    font-weight: bold;

    color: #fff;

    outline: none;

}



.breadcrumbs li a:first-child {
    margin-left: 0;
}



.breadcrumbs li a:hover {
    color: #d0dae6;
}



.breadcrumbs li a:before {

    content: "/";

    color: #1e2e42;

    margin-right: 13px;

    margin-left: 13px;

}



.breadcrumbs li:first-child a:before {
    display: none;
}



/* -------------------------------------------------------------------------

    HEADER INNER

------------------------------------------------------------------------- */

#header .header-inner {

    position: absolute;

    top: 0;

    right: 0;

    bottom: 0;

    left: 0;

    height: 0;

    z-index: 1;

}



.enable-fixed-header #header .header-inner {
    position: fixed;
}



/* -------------------------------------------------------------------------

    HEADER TOOL-BAR

------------------------------------------------------------------------- */

#header .header-tool-bar {

    position: relative;

    font-size: 13px;

    color: #fff;

    font-weight: bold;

    background: -webkit-linear-gradient(#ec6c33, #dd5b20);

    background: -moz-linear-gradient(#ec6c33, #dd5b20);

    background: linear-gradient(#ec6c33, #dd5b20);

    background: -o-linear-gradient(#ec6c33, #dd5b20);

}



#header .header-tool-bar .container {

    position: relative;

    background: rgb(82, 117, 160) !important;

}



#header .header-tool-bar .container:before {

    position: absolute;

    margin-left: -55px;

    border-bottom: 41px solid transparent;

    /*border-right: 40px solid #162232;*/

    border-right: 0;

    outline: 0;

    width: 40px;

}



#header .header-tool-bar .container:after {

    position: absolute;

    top: 0;

    right: 0;

    margin-right: -40px;

    border-bottom: 41px solid transparent;

    /*border-left: 40px solid #162232;*/

    border-left: 0;

    outline: 0;

    width: 40px;

}



#header .header-tool-bar a {

    color: #fff;

    font-size: 14px;

    font-weight: 500;

    line-height: 24px;

    vertical-align: middle;

    cursor: pointer;

}



#header .header-tool-bar a:hover,

#header .header-tool-bar button:hover,

#header .header-tool-bar button.hover {
    color: #fff;
}



#header .header-tool-bar i {

    /* margin-left: 8px;

  margin-right:3px; */

    font-size: 12px;

    color: #fff;

}



#header .header-form {

    position: absolute;

    left: 0;

    display: none;

    z-index: 9999;

}



/* -------------------------------------------------------------------------

    HEADER LEFT

------------------------------------------------------------------------- */

#header .header-contact li {

    display: inline;

    font-weight: bold;

    letter-spacing: 1px;

    line-height: 40px;

    font-size: 1.1em !important;

    color: #fff;

}

.header-left li a {

    letter-spacing: 1px;

    font-weight: bold !important;

}

#header .header-contact li:before {

    padding-right: 5px;

    margin-right: 8px;

    border-right: 1px solid #2e3947;

    content: "";

}



#header .header-contact li:first-child:before {
    display: none;
}



/* -------------------------------------------------------------------------

    HEADER RIGHT

------------------------------------------------------------------------- */

#header .header-right {

    position: relative;

    float: left;



}



#header .header-right button {

    padding: 5px 0;

    line-height: 30px;

}



#header .header-social {

    position: relative;

    display: inline-block;

    line-height: 39px;

    vertical-align: middle;

}



#header .header-social li {

    display: inline;

    margin: 0 6px;

}



#header .header-social li a:hover>i {

    color: #ccc;

    -webkit-transition: all .3s ease-in-out;

    -moz-transition: all .3s ease-in-out;

    -ms-transition: all .3s ease-in-out;

    -o-transition: all .3s ease-in-out;

    transition: all .3s ease-in-out;

}



#header .header-social li a>i {

    font-size: 18px;

    -webkit-transition: all .3s ease-in-out;

    -moz-transition: all .3s ease-in-out;

    -ms-transition: all .3s ease-in-out;

    -o-transition: all .3s ease-in-out;

    transition: all .3s ease-in-out;

}



#header .header-social li:last-child,

#header .header-social i:last-child {
    margin-right: 0;
}



/* -------------------------------------------------------------------------

    HEADER LOGIN

------------------------------------------------------------------------- */

#header .header-login {

    padding: 0 6px 0 5px;

    margin: 0 5px 0 5px;

    display: inline;

    text-align: center;

    cursor: pointer;

}



#header .header-login .header-form {
    left: 133px;
}



#header .header-login form {

    padding: 20px;

    background: linear-gradient(#fefefe, #e7e7e7);

    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.34);

    border: 1px solid #999;

}



#header .header-login form .alert-message {

    position: relative;

    padding: 0;

    margin: 0;

    color: #ccc;

    display: none;

}



#header .header-login form input,

#header .header-login form button {

    width: 100%;

    max-width: 250px;

}



#header .header-login form input {

    /*background: rgba(204, 195, 195, 0.3);*/

    background: #fff;

    color: black;

    font-size: 14px;

    font-weight: 400;

}



#header .header-login form input:-ms-input-placeholder {
    color: #808080;
    font-weight: 400 !important;
}



#header .header-login form input::-webkit-input-placeholder {
    color: #808080;
    font-weight: 400 !important;
}



#header .header-login form input:-moz-placeholder {

    color: #808080;
    font-weight: 400 !important;

}



#header .header-login form input::-moz-placeholder {

    color: #808080;
    font-weight: 400 !important;

}



/*#header .header-login form input:focus { border: 1px solid rgba(255,255,255,0.5); }*/



#header .header-login form button {
    color: #fff;
}



#header .header-login form button:hover {

    color: #1e2e42;

    background: #fff;

}



#header .header-login .forgot-password {

    margin-bottom: 0;

    font-family: 'roboto slab', sans-serif !important;

}



/* -------------------------------------------------------------------------

    HEADER LANGUAGE

------------------------------------------------------------------------- */

#header .header-language {

    position: relative;

    display: inline;

}



#header .header-language ul>li {

    position: relative;

    text-align: center;

}



#header .header-language li>a {

    padding: 7px 11px;

    display: block;

    line-height: inherit;

    background: #454545;
    border-top: 1px solid transparent;

}



#header .header-language li:hover>a {
    background: #162232;
}



#header .header-language li.active {

    border-top: 1px solid #162232;

    background: #162232;

}



#header .header-language li.active a {
    color: #fff;
}



/* -------------------------------------------------------------------------

    HEADER NAVBAR NAV

------------------------------------------------------------------------- */

/*#header .header-nav { background: rgba(0, 0, 0, 0.34); }*/

.logoheader-second {

    background: -webkit-linear-gradient(#fbfbfb, #ededed);

    background: -moz-linear-gradient(#fbfbfb, #ededed);

    background: linear-gradient(#fbfbfb, #ededed);

    background: -o-linear-gradient(#fbfbfb, #ededed);

    box-shadow: 2px 2px 2px #ccc;

}

#header .header-nav {

    /*background: #f6f6f6; */



}

.invoice-addr {

    min-height: 135px;

}

#header .header-nav ul li {

    margin-right: 17px;

    z-index: 5;

}



#header .header-nav ul li:last-child {
    margin-right: 0;
}



.dropdown-menu ul li a {

    background: white !important;

    color: black !important;

    padding: 0px !important;

}

.navbar-right .dropdown-menu {

    left: 0 !important;

    right: auto !important;

}

.header-bg {

    padding: 0;

    display: inline-block;

    font-size: 14px;

    background: linear-gradient(#333, #000);

    background: -webkit-linear-gradient(#333, #000);

    background: -o-linear-gradient(#333, #000);

    background: -moz-linear-gradient(#333, #000);

    background: linear-gradient(#333, #000);

    padding: 8px 10px !important;

    border-radius: 3px;

    color: white;

    text-shadow: 1px 1px #000;

}

.dropdown-menu>li>a:hover,
.dropdown-menu>li>a:focus {

    background-color: #fff !important;

}

.navbar-right {

    padding-top: 1.2em;

}



#header .header-nav ul li a {}

#header .header-nav ul li a:hover {
    color: #db591e !important;
}



.main-logo a img {

    width: 180px !important;

    margin-top: 5px !important;

}





/* -------------------------------------------------------------------------

    HEADER NAVBAR NAV > SUB NAV

------------------------------------------------------------------------- */

#header .header-nav .has-submenu>.sub-menu {

    position: absolute;

    display: none;

    left: -30px;

    list-style: none;

    z-index: 100;

}



#header .header-nav .sub-menu .sub-menu {

    padding-left: 3px;

    top: 0;

    left: 100%;

    z-index: 999;

}



#header .header-nav .has-submenu li {

    position: relative;

    padding: 10px 20px;

    width: 230px;

    margin: 0;

    display: inline;

    float: right;

    line-height: 30px !important;

    background-color: rgba(255, 255, 255, 0.9);

}



#header .header-nav .has-submenu li:first-child {
    padding-top: 13px;
}



#header .header-nav .has-submenu li:last-child {
    padding-bottom: 13px;
}



#header .header-nav .has-submenu.hover>a {
    color: #db591e;
}



#header .header-nav .has-submenu li>a {

    width: 190px;

    padding: 0 10px;

    height: 30px;

    line-height: 29px;

    text-transform: none;

    color: #1a1a1a;

    text-shadow: none;

}




#header .header-nav .has-submenu li:hover>a {

    background: #e0e2e5;

    color: #1e2e42;

}



#header .header-nav .has-submenu li a:after {

    display: block;

    content: "";

    border-bottom: 1px solid #e0e3e5;

    width: 170px;

    margin: 10px auto 0 auto;

    background: transparent;

}



#header .header-nav .has-submenu li:last-child a:after {
    display: none;
}



#header .header-nav .has-submenu li.has-submenu:after {

    position: absolute;

    top: 10px;

    right: 15px;

    width: 19px;

    height: 15px;

    font-family: 'fontawesome';

    font-size: 14px;

    content: "\f0da";

    color: #414141;

}



#header .header-nav .has-submenu .submenu-toggle {

    display: none;

}



/* -------------------------------------------------------------------------

    BANNER SEARCH

------------------------------------------------------------------------- */

#hero-tabs input[type="submit"] {

    height: 50px;

}

.banner-search {
    width: 100%;
}



.banner-search .container {
    padding: 0;
}



.banner-search-inner {
    padding: 0 230px;
}



.banner-search .tab-title {

    background: linear-gradient(#333, #000);

    background: -webkit-linear-gradient(#333, #000);

    background: -o-linear-gradient(#333, #000);

    background: -moz-linear-gradient(#333, #000);

    background: linear-gradient(#333, #000);

    border-radius: 3px;

    color: white;

    text-shadow: 1px 1px #000;

    width: 100%;

    /*width: 200px;

  /*background: rgba(30,46,66,0.7);*/

    /*background: rgba(0, 0, 0, .7);

    border-top: 1px solid black;

    border-right: 1px solid black;

    border-left: 1px solid black;

	 border-top: 1px solid #999;

    border-left: 1px solid #999;

    border-right: 1px solid #999;

	background: linear-gradient(rgba(160, 157, 157, 0.43), rgba(16, 16, 16, 0.78));

    background: -webkit-linear-gradient(rgba(160, 157, 157, 0.43), rgba(16, 16, 16, 0.78));

    background: -o-linear-gradient(rgba(160, 157, 157, 0.43), rgba(16, 16, 16, 0.78));

    background: -moz-linear-gradient(rgba(160, 157, 157, 0.43), rgba(16, 16, 16, 0.78));

    background: linear-gradient(rgba(160, 157, 157, 0.43), rgba(16, 16, 16, 0.78));

	width:100%;*/

}



/*.banner-search .tab-title:hover { background: #fff; } */



/*.banner-search .tab-title.active {  

	background: linear-gradient(#fefefe, #d0cdcd);

    background: -webkit-linear-gradient(#fefefe, #d0cdcd);

    background: -o-linear-gradient(#fefefe, #d0cdcd);

    background: -moz-linear-gradient(#fefefe, #d0cdcd);

    background: linear-gradient(#fefefe, #d0cdcd);

 }*/



/*.banner-search .tab-title > a {color:white; text-shadow:1px 1px #000;text-decoration:none !important; }*/



/*.banner-search .tab-title:hover a,

.banner-search .tab-title.active a{ color:black; text-shadow:1px 1px #fff; }

.banner-search .tab-title:hover a,

{ color:black; text-shadow:1px 1px #fff; }*/



.banner-search .default-form {

    margin: 0 auto;

    text-align: center;

}



.banner-search .tab-content-list {

    padding: 20px 0 0px;

    /*padding: 30px 0;

  background:#454545;*/

    /*background: rgba(0, 0, 0, 0.7);*/

    border-top: 3px solid #fff;

    background: -webkit-linear-gradient(rgba(254, 254, 254, 0.66), rgba(231, 231, 231, 0.56));

    background: -o-linear-gradient(rgba(254, 254, 254, 0.66), rgba(231, 231, 231, 0.56));

    background: -moz-linear-gradient(rgba(254, 254, 254, 0.66), rgba(231, 231, 231, 0.56));

    background: linear-gradient(rgba(254, 254, 254, 0.66), rgba(231, 231, 231, 0.56));

    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.34);

    border: 1px solid #999;

}



.banner-search span {

    position: relative;

    display: inline-block;

    width: 100%;

}



.banner-search span i {
    color: #fff;
    display: none;
}



.banner-search select {}



.banner-search .submit-btn {

    padding: 0px;

    margin-left: 20px;

    width: 145px;

    border-left: 1px solid rgba(211, 211, 211, 0.73);

    /*

  float:right;

  right: 9em;

  */

}

.banner-search .full-input-btn {

    float: right;

    border-left: none;

    padding-bottom: 20px;

}



.banner-search .select-box i,

.banner-search .calendar i {

    top: 33px;

}



.banner-search .select-box .arrow-up {
    top: 28px;
}



.banner-search .select-box .arrow-down {
    top: 39px;
}



.banner-search .submit-btn>a {

    position: absolute;

    display: block;

    width: 118px;

    color: #fff;

    font-size: 12px;

    font-weight: normal;

    text-transform: uppercase;

}



.banner-search .select-clone {
    /*background: rgba(255,255,255,0.3);*/
    background: rgba(0, 0, 0, 0.7);
}



.banner-search .select-clone>li {
    color: #fff;
}



/* -------------------------------------------------------------------------

    BANNER SEARCH > FORM

------------------------------------------------------------------------- */

.banner-search input,

.banner-search select,

.banner-search textarea {

    color: black;

    font-size: 14px;

    text-shadow: none;

    background-color: #fff !important;

}



.banner-search input[type="radio"] {

    margin-right: .5em;

}

.chckbx-span {

    color: black;

    max-width: 88% !important;

}



input:focus::-webkit-input-placeholder {
    color: transparent !important;
}

input:focus:-moz-placeholder {
    color: transparent !important;
}

/* FF 4-18 */

input:focus::-moz-placeholder {
    color: transparent !important;
}

/* FF 19+ */

input:focus:-ms-input-placeholder {
    color: transparent !important;
}

/* IE 10+ */



textarea:focus::-webkit-input-placeholder {
    color: transparent !important;
}

textarea:focus:-moz-placeholder {
    color: transparent !important;
}

/* FF 4-18 */

textarea:focus::-moz-placeholder {
    color: transparent !important;
}

/* FF 19+ */

textarea:focus:-ms-input-placeholder {
    color: transparent !important;
}

/* IE 10+ */



.banner-search input:focus:-ms-input-placeholder:focus {
    color: transparent !important;
}



.banner-search input:focus::-webkit-input-placeholder:focus {
    color: transparent !important;
}



.banner-search input:focus:-moz-placeholder:focus {

    color: transparent !important;

    opacity: 1;

}



.banner-search input:focus::-moz-placeholder {

    color: transparent !important;

    opacity: 1;

}



.banner-search input:-ms-input-placeholder {
    color: #a9a9a9
}



.banner-search input::-webkit-input-placeholder {
    color: #a9a9a9
}



.banner-search input:-moz-placeholder {

    color: #a9a9a9;

    opacity: 1;

}



.banner-search input::-moz-placeholder {

    color: #a9a9a9;

    opacity: 1;

}



/*.banner-search input:focus,

.banner-search select:focus { border: 1px solid rgba(255,255,255,0.5); }*/



/* -------------------------------------------------------------------------

    BANNER SEARCH > YACHTS & LUXCARS

------------------------------------------------------------------------- */

.banner-search .where-input {

    /*padding: 20px 25px 20px 0;

  padding: 5px 25px 5px 0;*/

    padding: 0px 25px;

    max-width: 340px;

    max-width: 100%;

    /*border-right: 1px solid #3b4553;*/

}

.pay-img-section {

    padding: 0px 10px;

}

.addtional-btn {

    height: auto !important;

}

.business-account-form .where-input {

    max-width: 100% !important;

}

.business-account-form .select-clone {

    background: white;

    width: 91.1%;

    padding-top: 10px;

    padding-bottom: 10px;

    border: 1px solid lightgrey;

}

.business-account-form .select-clone li {

    color: black !important;

}



.banner-search .where-input1 {

    /*padding: 20px 25px 20px 0;*/

    padding: 10px 25px 10px 0;

    margin-right: 25px;

    max-width: 340px;

    max-width: 80%;

    /*border-right: 1px solid #3b4553;*/

}



.banner-search .hire-input {

    padding: 20px 0;

    max-width: 144px;

}



.banner-search .return-input {

    padding: 20px 0 20px 3px;

    max-width: 144px;

}



.banner-search .model.select-box {

    padding: 20px 0 20px 25px;

    margin-left: 20px;

    max-width: 141px;

    border-left: 1px solid #3b4553;

}



.banner-search .model.select-box .select-clone {
    max-width: 115px;
}



/* -------------------------------------------------------------------------

    BANNER SEARCH > PRIVJET & CARTRANS

------------------------------------------------------------------------- */

.banner-search .point-a {

    /*

  padding: 20px 0;

  max-width: 120px;

  */

    max-width: 75%;

    padding: 5px 0px 10px 0;

    margin-right: 45px;

}



.banner-search .point-b {

    padding: 5px 0 20px 3px;

    max-width: 123px;

}



.banner-search .point-b .select-clone {
    width: 120px;
}



.banner-search .departure-input {

    padding: 20px 0 20px 25px;

    margin-left: 20px;

    max-width: 151px;

    border-left: 1px solid #3b4553;

}



.banner-search .arrival-input {

    padding: 20px 0 20px 3px;

    max-width: 124px;

}



.banner-search .people {

    padding: 20px 0 20px 25px;

    margin-left: 20px;

    max-width: 131px;

    border-left: 1px solid #3b4553;

}



.banner-search .people .select-clone {
    width: 105px;
}



/* -----------------------------------------------------------------------------



    BOOKING



----------------------------------------------------------------------------- */

.booking .banner-search {
    margin: 50px 0;
}



.booking .default-form {

    padding: 30px;

    background-color: #1e2e42;

}



.booking .select-clone {
    background: #454545
}



.booking .heading {

    margin: 0 25px 0 0;

    padding: 16px 0 16px 0;

    width: 175px;

    vertical-align: bottom;

    /*font: normal bold 18px/30px 'roboto slab', sans-serif;*/

    text-transform: uppercase;

    text-align: left;

    color: #fff;

    border-right: 1px solid #3b4553;

}



/* -----------------------------------------------------------------------------



    ABOUT



----------------------------------------------------------------------------- */

.banner-about img {

    margin-bottom: 1.5em;

}

.banner-about {

    background: #FBF3EE;

    padding-bottom: 30px !important;

}

.banner-about p,
.banner-about h2 {

    color: black;

}

.about {
    padding: 85px 0 0 0;
    z-index: 1000;
}

.about-form {
    padding: 100px 0;
    z-index: 1000;
    /*background: url(../img/login-bg.jpg);background-size: cover;*/
}



.about .preamble {
    margin-bottom: 40px;
}



.feature,

.member {
    margin-top: 20px;
}



.feature h5 {
    margin: 25px 0 17px 0;
}



.feature .overlay-shadow {
    margin: 20px;
}



.feature .overlay-content {
    margin-top: -20px;
}



.feature .overlay-content .btn {

    /*padding: 8px 14px;*/

    margin-top: 0;

}



.feature .btn {
    margin-top: 10px;
}



/* -------------------------------------------------------------------------

    ABOUT > TEAM

------------------------------------------------------------------------- */

.member h5 {

    margin-top: 28px;

    margin-bottom: 0;

    line-height: 18px;

}



.member span {

    margin: 0;

    font: italic normal 18px/28px 'crimson text', sans-serif;

    color: rgba(26, 26, 26, 0.5);

}



.member p {
    margin-top: 10px;
}



.member-inner {
    position: relative;
}



.member-inner img {

    display: block;

    width: 100%;

    height: auto;

}



.member .member-social {

    position: absolute;

    bottom: 10px;

    left: 10px;

    right: 10px;

    background: rgba(30, 46, 66, 0.8);

}



.member .member-social li {

    padding: 13px 0;

    margin: 0 7px;

    display: inline-block;

}



.member .member-social li a>i {

    font-size: 18px;

    color: #fff;

    -webkit-transition: all .3s ease-in-out;

    -moz-transition: all .3s ease-in-out;

    -ms-transition: all .3s ease-in-out;

    -o-transition: all .3s ease-in-out;

    transition: all .3s ease-in-out;

}



.member .member-social li a:hover>i {



    color: #ccc;

    -webkit-transition: all .3s ease-in-out;

    -moz-transition: all .3s ease-in-out;

    -ms-transition: all .3s ease-in-out;

    -o-transition: all .3s ease-in-out;

    transition: all .3s ease-in-out;

}



/* -----------------------------------------------------------------------------



    ESSENTIALS



----------------------------------------------------------------------------- */

#essentials {
    padding: 100px 0 130px 0;
}



#essentials .preamble {
    margin-bottom: 10px;
}



#essentials .tabs-container {
    clear: both;
}



#essentials .tabs-container .tab-title-list:after {

    display: table;

    clear: both;

    content: "";

    line-height: 0;

}



#essentials .tab-title.active,

#essentials .tab-title:hover {
    background: #1e2e42;
}



#essentials .tab-title.active a,

#essentials .tab-title a:hover {
    color: #fff;
}



#essentials .tab-title {

    margin-right: 2px;

    background: #f5f5f5;

}



#essentials .tab-title a {

    padding-left: 24px;

    padding-right: 24px;

    color: #1e2e42;

}



#essentials .tab-content-list {

    position: relative;

    padding: 30px;

    border-top: 2px solid #1e2e42;

    background: #f5f5f5;

}



#essentials li cite {

    position: absolute;

    padding-left: 10px;

    left: 20px;

    bottom: 20px;

    /*font: normal bold 14px/12px 'roboto slab', sans-serif;*/

    color: #fff;

    text-transform: uppercase;

    border-left: 2px solid #1e2e42;

    z-index: 999;

    -webkit-transition: all .3s ease-in-out;

    -moz-transition: all .3s ease-in-out;

    -ms-transition: all .3s ease-in-out;

    -o-transition: all .3s ease-in-out;

    transition: all .3s ease-in-out;

}



#essentials .overlay-shadow {
    margin: 10px;
}



#essentials .overlay-content i {
    color: #fff;
}



/* -------------------------------------------------------------------------

    ESSENTIALS OUR FLEET SECTION

------------------------------------------------------------------------- */

#essentials .fleet-filters li {

    margin: 0 10px 10px 0;

    display: inline-block;

    float: left;

}



#essentials .fleet-filters li a {
    padding: 3px 14px;
}



#essentials .fleet-filters li a.active {

    color: #fff;

    background-color: #1E2E42;

}



#essentials .fleet-gallery {

    position: relative;

    overflow: hidden;

    margin-left: -2px;

}



#essentials .fleet-gallery li {

    position: relative;

    margin-left: 2px;

    margin-bottom: 2px;

    width: 268px;

    float: left;

}



#essentials .fleet-gallery .overlay-content a {

    padding-left: 16px;

    padding-right: 20px;

    display: inline-block;

    height: 40px;

    line-height: 40px;

    border-right: 2px solid rgba(255, 255, 255, .1);

}



#essentials .fleet-gallery .overlay-content a:last-child {
    border-right: none;
}



#essentials .fleet-gallery .overlay-content {
    margin-top: -20px;
}



#essentials .fleet-gallery li:hover cite {

    border-color: #fff;

    -webkit-transition: all .3s ease-in-out;

    -moz-transition: all .3s ease-in-out;

    -ms-transition: all .3s ease-in-out;

    -o-transition: all .3s ease-in-out;

    transition: all .3s ease-in-out;

}



/* -------------------------------------------------------------------------

    ESSENTIALS OUR DRIVERS SECTION

------------------------------------------------------------------------- */

#essentials .drivers-gallery {

    position: relative;

    overflow: hidden;

    margin-left: -2px;

}



#essentials .drivers-gallery .driver-profile {

    position: relative;

    margin-left: 2px;

    margin-bottom: 2px;

    width: 268px;

    float: left;

}



#essentials .drivers-gallery .overlay img {

    display: block;

    width: 100%;

    height: auto;

}



#essentials .drivers-gallery .overlay-content {
    top: 0;
}



#essentials .driver-properties {

    padding-left: 10px;

    margin: 10px 10px 0 10px;

    border-left: 2px solid #1e2e42;

}



#essentials .driver-properties li {

    margin: 0;

    display: block;

    text-align: left;

    /*font: normal bold 14px/16px 'roboto slab', sans-serif;*/

    color: #fff;

}



#essentials .drivers-gallery li:hover cite,

#essentials .drivers-gallery li:hover .driver-properties {

    border-color: #fff;

    -webkit-transition: all .3s ease-in-out;

    -moz-transition: all .3s ease-in-out;

    -ms-transition: all .3s ease-in-out;

    -o-transition: all .3s ease-in-out;

    transition: all .3s ease-in-out;

}



/* -----------------------------------------------------------------------------



    FLEETS



----------------------------------------------------------------------------- */



/* -------------------------------------------------------------------------

   FLEET FILTERS 

------------------------------------------------------------------------- */

.fleets {
    padding: 100px 0;
}



.fleets .fleets-filters-title {

    position: relative;

    padding: 10px 30px;

    margin: 0;

    /*font: normal bold 14px/30px 'roboto slab';*/

    text-transform: uppercase;

    color: #fff;

    /*background: #1e2e42;*/

    background: #db591e;

    cursor: pointer;

}



.fleets .fleets-filters-title.toggle-title:after {

    position: absolute;

    padding: 5px;

    display: block;

    top: 13px;

    right: 25px;

    font-size: 14px;

    color: #fff;

    font-family: FontAwesome;

    font-style: normal;

    font-weight: normal;

    line-height: 1;

    -webkit-font-smoothing: antialiased;

    -moz-osx-font-smoothing: grayscale;

    content: "\f077";

    cursor: pointer;

}



.fleets .toggle-container.closed .toggle-title:after {
    content: "\f078";
}



.fleets .toggle-content {

    position: relative;

    display: block;

}



.fleets .toggle-content,

.fleets .fleets-filters.horizontal {

    padding: 30px;

    display: block;

    /*background: #f5f5f5;*/

    background: #fff;

}



.fleets .fleets-filters {
    padding: 0;
}



.fleets .filter-title {

    position: relative;

    margin: 0;

    /* font: normal bold 16px/30px 'roboto slab';*/

    color: #1a1a1a;

    text-transform: uppercase;

    letter-spacing: -0.2px;

}



.fleets .fleets-search-basic {
    position: relative;
}



.fleets .fleets-search-basic .radio-input {

    display: block;

    width: 100%;

}



.fleets .fleets-search-basic label {
    margin-bottom: 0;
    color: #000;
}



.fleets input[type="text"],

.fleets select {

    color: #fff;

    /*background: rgba(30, 46, 66, 0.3);*/

    background: rgba(0, 0, 0, 0.7);

}



.fleets input:-ms-input-placeholder {
    color: #a9a9a9 !important;
}



.fleets input::-webkit-input-placeholder {
    color: #a9a9a9 !important;
}



.fleets input:-moz-placeholder {

    color: #a9a9a9 !important;

    opacity: 1;

}



.fleets input::-moz-placeholder {

    color: #a9a9a9 !important;

    opacity: 1;

}



.fleets .box-row {
    margin-bottom: 20px;
}



.fleets .fleets-search-basic .form-row {
    position: relative;
}



.fleets .fleets-search-type .form-row {
    margin-top: 2px;
}



.fleets .select-box .select-clone {
    background: #454545
}



.fleets .select-box .select-clone li {
    color: #fff;
}



.fleets .fleets-search-filter .slider-range {

    display: block;

    position: relative;

    margin: 10px 0 15px 0;

    height: 10px;

    line-height: 1px;

    background: #dfe1e3;

}



.fleets .fleets-search-filter .slider-range a {

    -webkit-transition: all 0ms;

    -moz-transition: all 0ms;

    -ms-transition: all 0ms;

    -o-transition: all 0ms;

    transition: all 0ms;

}



.fleets .fleets-search-filter .slider-range .ui-slider-range {

    display: block;

    position: absolute;

    top: 0;

    height: 10px;

    line-height: 1px;

    background: #7e8792;


}



.fleets .fleets-search-filter .slider-range .ui-slider-handle {

    display: block;

    position: absolute;

    width: 17px;

    height: 17px;

    top: -3px;

    border: 3px solid transparent;

    background: #1e2e42;

}



.fleets .fleets-search-filter .slider-range .ui-slider-handle:last-child {
    margin-left: -17px;
}



.fleets .fleets-search-filter .slider-range-container input {

    padding: 5px;

    height: 30px;

    text-align: center;

}



.fleets .fleets-search-filter .slider-range-container .range-from {

    float: left;

    width: 70px;

}



.fleets .fleets-search-filter .slider-range-container .range-to {

    float: right;

    width: 70px;

}



.fleets .fleets-search-filter .btn {
    width: 100%;
}



.fleets .fleets-filters.horizontal {
    margin-bottom: 30px;
}



.fleets-filters.horizontal form,

.fleets-filters.horizontal .fleets-search-basic,

.fleets-filters.horizontal .fleets-search-type,

.fleets-filters.horizontal .fleets-availability,

.fleets-filters.horizontal .fleets-capacity,

.fleets-filters.horizontal .fleets-search-filter,

.fleets-filters.horizontal .slider-range-container,

.fleets-filters.horizontal .filter-btn {

    position: relative;

    display: inline-block;

    vertical-align: top;

}



.fleets-filters.horizontal .fleets-search-type {

    margin-right: 55px;

    width: 136px;

}



.fleets-filters.horizontal .fleets-availability,

.fleets-filters.horizontal .fleets-capacity,

.fleets-filters.horizontal .slider-range-container {

    margin-right: 26px;

    width: 200px;

}



.fleets-filters.horizontal .fleets-capacity {
    margin-bottom: 10px;
}



.fleets-filters.horizontal .fleets-capacity .form-row {
    position: relative;
}



.fleets-filters.horizontal .fleets-additional-services {

    width: 440px;

    display: block;

}



.fleets-filters.horizontal .fleets-additional-services h5 {

    margin: 6px 0 0 0;

    line-height: 20px;

}



.fleets-filters.horizontal .fleets-additional-services li {

    margin-right: 30px;

    float: left;

    line-height: 19px;

}



.fleets-filters.horizontal .fleets-additional-services li:last-child {
    margin-right: 0;
}



.fleets-filters.horizontal .slider-range-container {
    width: 210px;
}



.fleets-filters.horizontal .slider-range-container .slider-range {
    margin-bottom: 9px !important;
}



.fleets-filters.horizontal .slider-range-container input {
    color: #fff;
}



.fleets-filters.horizontal .filter-btn {

    width: 180px;

    padding: 53px 0 53px 39px;

    text-align: center;

    border-left: 1px solid #dfe1e3;

}



/* -------------------------------------------------------------------------

    FLEET LISTING 

------------------------------------------------------------------------- */

.fleets .fleets-listing-header,

.fleets .fleets-listing-footer {

    position: relative;

    padding: 10px 30px 10px 20px;

    /*background: #f5f5f5;*/

    background: #fff;

}



.fleets .fleets-listing-header h5 {

    margin: 0;

    display: inline-block;

    line-height: 30px;

}



.fleets .fleets-listing-pagination {

    display: inline-block;

    float: right;

    text-align: right;

}



.fleets .fleets-listing-pagination li {
    display: inline;
}



.fleets .fleets-listing-pagination li.number {
    margin: 0 4px;
}



.fleets .fleets-listing-pagination li.prev {
    margin-right: 22px;
}



.fleets .fleets-listing-pagination li.next {
    margin-left: 25px;
}



.fleets .fleet-thumb .overlay-content {
    margin-top: -20px;
}



.fleets .fleet-thumb .overlay-shadow {
    margin: 20px;
}



/*.fleets .fleet-thumb .overlay-shadow .btn { padding: 8px 14px;}*/



.fleets .fleet-list {
    margin-bottom: 10px;
}



.fleets .fleet-list .fleet-vechicle {
    margin-top: 10px;
}



.fleets .fleet-list .fleet-thumb {

    float: left;

    width: 160px;

    height: 70px;

    overflow: hidden;

    display: table;

}



.fleets .fleet-list .fleet-vechicle-content {


    padding: 3px 30px 0 230px;

    /*background: #f5f5f5;*/

    background: rgba(231, 231, 231, 0.58);

    border-radius: 6px;

}



.fleets .fleet-list .fleet-vechicle-content:after {

    display: table;

    clear: both;

    content: "";

    line-height: 0;

}



.fleets .fleet-list .fleet-vechicle-header {

    position: relative;

    padding: 7px 0 7px 0;

    margin-bottom: 5px;

    border-bottom: 1px solid #dfe1e3;

}



.fleets .fleet-list .fleet-vechicle-header h5 {

    padding-right: 160px;

    display: inline-block;

    margin: 0;

    font-size: 1.2em;

}



.fleets .fleet-list .fleet-vechicle-header h5>a {

    color: #1a1a1a;

    letter-spacing: 0;

}



.fleets .fleet-grid .fleet-vechicle-header h5>a:hover {
    color: #1e2e42;
}



.fleets .fleet-list .fleet-vechicle-header span {

    position: absolute;

    top: 9px;

    right: 0;

    color: rgba(26, 26, 26, 0.5);

    line-height: 27px;

    color: black;

    font-weight: bold;

}



.fleets .fleet-list .fleet-vechicle-properties {

    padding-left: 0;

    margin-bottom: 0px;

}



.fleets .fleet-list .fleet-vechicle-properties li {
    font-size: 13px;
}



.fleets .fleet-list .fleet-vechicle-properties li strong {
    float: right;
}



.fleets .fleet-list .fleet-vechicle-properties:after {

    display: table;

    content: "";

}



.fleets .fleet-list .left-side {

    padding-right: 25px;

    width: 50%;

}



.fleets .fleet-list .right-side {

    padding-left: 25px;

    width: 50%;

}



.fleets .fleet-grid {
    margin-top: 30px;
}



.fleets .fleet-grid .fleet-vechicle-content {

    padding: 3px 20px 15px 20px;

    background: #f5f5f5;

}



.fleets .fleet-grid img {

    position: relative;

    display: block;

    width: 100%;

    height: auto;

}



.fleets .fleet-grid .fleet-vechicle-header {

    padding: 0;

    border-bottom: none;

}



.fleets .fleet-grid .fleet-vechicle-header h5>a {

    color: #1a1a1a;

    letter-spacing: 0;

}



.fleets .fleet-grid .fleet-vechicle-header h5>a:hover {
    color: #1e2e42;
}



.fleets .fleet-grid .fleet-vechicle-header h5 {

    padding: 13px 0;

    margin: 0;

    border-bottom: 1px solid #dfe1e3;

}



.fleets .fleet-grid .fleet-vechicle-header span {

    padding: 10px 0 3px 0;

    display: block;

    color: rgba(26, 26, 26, 0.5);

}



.fleets .fleet-grid img {

    position: relative;

    display: block;

    width: 100%;

    height: auto;

}



.fleets .fleet-grid .fleet-vechicle-properties li {

    line-height: 24px;

    font-size: 14px;

}

.banner-about p strong {

    font-weight: 900 !important;

}

.fleets .fleet-grid .fleet-vechicle-properties li strong {
    float: right;
}



/* -------------------------------------------------------------------------

    FLEET UNIT DETAILS

------------------------------------------------------------------------- */

.fleets .fleet-details .main-photo {
    margin-bottom: 20px;
}



.fleets .fleet-details .fleet-vechicle-header {

    position: relative;

    padding: 11px 0 7px 0;

    margin-bottom: 22px;

    border-bottom: 1px solid #dfe1e3;

}



.fleets .fleet-details .fleet-vechicle-header h5 {

    padding-right: 160px;

    display: inline-block;

    margin: 0;

}



.fleets .fleet-details .fleet-vechicle-header span {

    position: absolute;

    top: 9px;

    right: 0;

    color: rgba(26, 26, 26, 0.5);

    line-height: 27px;

}



.fleets .fleet-details .fleet-vechicle-content p {
    margin-bottom: 20px;
}



.fleets .fleet-details .fleet-vechicle-content p:last-child {
    margin-bottom: 0;
}



.fleets .fleet-details-sidebar {

    padding: 30px;

    margin-left: 20px;

    background: #f5f5f5;

}



.fleets .fleet-details-sidebar h5 {

    position: relative;

    padding-bottom: 11px;

    margin-top: 0;

    margin-bottom: 22px;

    border-bottom: 1px solid #dfe1e3;

}



.fleets .fleet-details-sidebar .fleet-vechicle-properties li {
    font-size: 16px;
}



.fleets .fleet-details-sidebar .fleet-vechicle-properties li strong {
    float: right;
}



/* -----------------------------------------------------------------------------



    DRIVERS



----------------------------------------------------------------------------- */

.drivers {
    padding: 100px 0;
}



.drivers .preamble {
    margin-bottom: 100px;
}



.drivers .driver-profile {
    margin-top: 30px;
}



.drivers .driver-profile:first-child {
    margin-top: 0;
}



.driver-profile .thumb {

    width: 170px;

    height: 194px;

    overflow: hidden;

    float: left;

}



.drivers .driver-profile-content {

    padding: 13px 30px 0 195px;

    background: #f5f5f5;

}



.drivers .driver-profile-content:after {

    display: table;

    clear: both;

    content: "";

    line-height: 0;

}



.drivers .driver-profile-header {

    position: relative;

    padding: 11px 0 7px 0;

    margin-bottom: 22px;

    border-bottom: 1px solid #dfe1e3;

}



.drivers .driver-profile-header h5 {

    padding-right: 70px;

    display: inline-block;

    margin: 0;

}



.drivers .driver-profile-header span {

    position: absolute;

    top: 9px;

    right: 0;

    color: rgba(26, 26, 26, 0.5);

    line-height: 27px;

}



.drivers .driver-profile-properties {

    padding-left: 0;

    margin-bottom: 20px;

}



.drivers .driver-profile-properties li {
    font-size: 16px;
}



.drivers .driver-profile-properties li strong {
    float: right;
}



.drivers .driver-profile .overlay-content {
    margin-top: -25px;
}



/* -------------------------------------------------------------------------

    MODAL

------------------------------------------------------------------------- */

.modal-dialog {

    padding: 50px;

    margin: 90px auto;

    width: 770px;


    background: none;

}



.modal-dialog .close {

    position: absolute;

    right: -35px;

    top: -35px;

    display: none;

}



.modal-dialog .close i {

    color: #B9B9B9;

    font-size: 18px;

}



.modal-body .img-caption {
    background: #f5f5f5;
}



.modal-body .img-caption img {

    width: 240px;

    height: 280px;

}



.modal-body .img-caption-inner {

    padding: 10px 0 15px 0;

    clear: both;

}



.modal-body .img-caption-inner h5 {

    margin: 0;

    line-height: 35px;

}

.modal-footer .btn {

    padding: 7px 14px !important;

}

.modal-body .img-caption-inner span {
    color: rgba(26, 26, 26, 0.5);
}



.modal-body .driver-profile-content {

    padding: 0 0 0 290px;

    background: #fff;

}



.modal-body .driver-profile-header {

    margin: 0;

    padding: 0;

    line-height: 20px;

}



.modal-body .driver-profile-header h5 {

    margin: 0 0 17px 0;

    line-height: 20px;

}



.modal-body .driver-profile-bio {

    padding: 20px 0 27px 0;

    margin-bottom: 20px;

    border-bottom: 1px solid #e5e5e5;

}



.modal-body .driver-profile-properties {
    margin-bottom: 0;
}



/* -----------------------------------------------------------------------------



    LOCATIONS



----------------------------------------------------------------------------- */

.locations {
    padding: 100px 0 30px 0;
}



.locations .location-agency {

    position: relative;

    margin-bottom: 55px;

}



.locations .location-agency:last-child {
    margin-bottom: 0;
}



.locations .location-agency-title {
    margin-bottom: 35px;
}



.locations .location-agency-subtitle {

    margin: 0;

    /*font: normal bold 14px/35px 'roboto slab';*/

    letter-spacing: -0.6px;

    text-transform: uppercase;

}



.locations .location-agency-contact {

    margin-bottom: 30px;

}



.locations .location-agency-thumbnail {

    margin-top: 78px;

}



.locations .button-overlay {

    position: absolute;

    margin-top: 14px;

    top: 50%;

    right: 0;

    left: 0;

    height: 100%;

    text-align: center;

    color: #fff;

    border-color: #fff;

}



.locations .button-overlay .btn {
    margin: 0 23px;
}







/* -----------------------------------------------------------------------------



    CUSTOMERS



----------------------------------------------------------------------------- */

.customers {
    padding: 20px 0 40px 0;
}



.customers .preamble {
    /*margin-bottom: 100px;*/
}



.customers .customer-testimonial {
    margin-top: 30px;
}



.customers .customer-testimonial:first-child {
    margin-top: 0;
}



.customers .customer-testimonial .logo {

    position: absolute;

    width: 170px;

    height: 100%;

    background: #1e2e42;

    text-align: center;

    vertical-align: middle;

}



.customers .customer-testimonial .logo img {
    margin-top: 75px;
}



.customers .customer-testimonial-content {

    /*padding: 13px 30px 0 195px;*/

    background: #f5f5f5;

}



.customers .customer-testimonial-content:after {

    display: table;

    clear: both;

    content: "";

    line-height: 0;

}



.customers .customer-testimonial-header {

    position: relative;

    padding: 11px 0 7px 0;

    margin-bottom: 22px;

    border-bottom: 1px solid #dfe1e3;

}



.customers .customer-testimonial-header h5 {

    padding-right: 140px;

    display: inline-block;

    margin: 0;

}



.customers .customer-testimonial-header span {

    position: absolute;

    top: 9px;

    right: 0;

    color: rgba(26, 26, 26, 0.5);

    line-height: 27px;

}



.customers .customer-testimonial-content blockquote {

    padding: 0;

    border: none;

    font-size: 14px;

    line-height: 19px;

}



/* -----------------------------------------------------------------------------



    NEWS



----------------------------------------------------------------------------- */

.news {
    padding: 50px 0 20px 0;
}



.news-posts .post {
    margin-bottom: 50px;
}



.news-posts .post-content p {
    margin-bottom: 20px;
}



.post .thumb img {
    width: 100%;
}



.post .post-header {

    position: relative;

    padding: 0 0 12px 0;

    line-height: 20px;

    border-bottom: 1px solid #dfe1e3;

}



.post .post-header h5 {

    padding-right: 120px;

    display: inline-block;

    margin: 0;

    line-height: 20px;

}



.post .post-header h5>a {

    color: #1a1a1a;

    letter-spacing: 0;

}



.post .post-header h5>a:hover {
    color: #1e2e42;
}



.post .post-header span {

    position: absolute;

    top: 0;

    right: 0;

    color: rgba(26, 26, 26, 0.5);

    line-height: 20px;

}



.post .post-meta {

    margin-bottom: 10px;

    line-height: 32px;

}



.post .post-meta span {
    margin-right: 15px;
}



.post .post-meta i {

    margin-right: 7px;

    color: #1e2e42;

}



.single-post .blog-post-img {
    margin-bottom: 50px;
}



.single-post .blog-post-img img {
    width: 100%;
}



.single-post .post-meta {
    margin-bottom: 30px;
}



.single-post p {

    margin-bottom: 30px;

    display: block;

}



.single-post .tags-list {
    margin: 40px 0 40px 0;
}



.single-post .tags-list li {

    display: inline-block;

    margin-right: 6px;

    margin-bottom: 10px;

}



.single-post .tags-list li:first-child {
    margin-right: 6px;
}



.single-post .tags-list li a {

    padding: 5px 8px;

    border: 1px solid #e5e5e5;

}



.single-post .post-share {

    padding: 10px 20px 10px 27px;

    margin-bottom: 30px;

    display: inline-block;

    width: 100%;

    background: #f5f5f5;

}



.single-post .post-share p {
    margin: 0;
}



.single-post .post-share .social li {

    margin: 0 7px;

    display: inline-block;

}



.single-post .post-share .social i {

    color: #a1a1a1;

    font-size: 18px;

    -webkit-transition: all .3s ease-in-out;

    -moz-transition: all .3s ease-in-out;

    -ms-transition: all .3s ease-in-out;

    -o-transition: all .3s ease-in-out;

    transition: all .3s ease-in-out;

}



.single-post .post-share .social i:hover {

    color: #1a1a1a;

    -webkit-transition: all .3s ease-in-out;

    -moz-transition: all .3s ease-in-out;

    -ms-transition: all .3s ease-in-out;

    -o-transition: all .3s ease-in-out;

    transition: all .3s ease-in-out;

}



.single-post .post-comments-title {

    padding-bottom: 13px;

    margin-top: 5px;

    margin-bottom: 30px;

    border-bottom: 1px solid #e5e5e5;

}



.single-post .comments {
    margin-bottom: 50px;
}



.single-post .comments li>ul {

    padding: 0;

    margin: 30px 0 0 30px;

}



.single-post .comment .avatar {

    position: absolute;

    width: 100px;

    height: 100px;

    top: 0;

    left: 0;

}



.single-post .comment {

    position: relative;

    padding-left: 120px;

    display: block;

    min-height: 100px;

}



.single-post .post-comment-meta,

.single-post .post-comment-meta span,

.single-post .post-comment-meta span a {

    margin-bottom: 3px;

    line-height: 1em;

}



.single-post li>ul .post-comment-meta span {
    margin-top: 5px;
}



.single-post .post-comment-meta span {

    display: inline-block;

    color: rgba(26, 26, 26, 0.5);

}



.single-post .post-comment-meta span:before {

    margin-left: 1px;

    margin-right: 5px;

    display: inline-block;

    content: "-";

}



.single-post .post-comment-meta span:first-child:before {
    display: none;
}



.single-post .post-comment-content p {
    line-height: 24px;
}



.single-post .post-addcomment-title {

    padding-bottom: 13px;

    margin-top: 5px;

    margin-bottom: 10px;

    border-bottom: 1px solid #e5e5e5;

}



.single-post .post-addcomment .form-row {

    margin-bottom: 0;

    margin-top: 20px;

}



.single-post .post-addcomment input,

.single-post .post-addcomment textarea {

    background: rgba(30, 46, 66, 0.1);

    color: #1e2e42;

}



.single-post .post-addcomment textarea {

    margin-bottom: 20px;

    display: inherit;

    width: 100%;

    min-height: 180px;

    resize: none;

    outline: none;

}



.single-post .post-addcomment input:focus,

.single-post .post-addcomment textarea:focus,

.single-post .post-addcomment .error {

    border-color: rgba(30, 46, 66, 0.3);

}



.single-post .post-addcomment input:-ms-input-placeholder,

.single-post .post-addcomment textarea:-ms-input-placeholder {
    color: #a9a9a9 !important;
}



.single-post .post-addcomment input::-webkit-input-placeholder,

.single-post .post-addcomment textarea::-webkit-input-placeholder {
    color: #a9a9a9 !important;
}



.single-post .post-addcomment input:-moz-placeholder,

.single-post .post-addcomment textarea:-moz-placeholder {

    color: #a9a9a9 !important;

    opacity: 1;

}



.single-post .post-addcomment button {

    position: relative;

    margin-bottom: 20px;

}



.single-post .post-addcomment .alert-message {

    display: none;

    margin-bottom: 0;

}



/* -------------------------------------------------------------------------

    PAGINATION

------------------------------------------------------------------------- */

.news-posts-pagination {

    position: relative;

    padding: 10px 25px;

    margin-bottom: 50px;

    text-align: center;

    background: #f5f5f5;

}



.news-posts-pagination li {
    display: inline;
}



.news-posts-pagination li.number {

    margin-right: 4px;

    margin-left: 4px;

}



.news-posts-pagination li.prev {
    float: left;
}



.news-posts-pagination li.next {
    float: right;
}



/* -------------------------------------------------------------------------

    SIDEBAR

------------------------------------------------------------------------- */

.news .sidebar {
    margin-left: 20px;
}



.widget .search-form {
    position: relative;
}



.widget .search-form input {

    background: rgba(30, 46, 66, 0.10);

    color: #1e2e42;

}



.widget .search-form input:-ms-input-placeholder {
    color: #a9a9a9 !important;
}



.widget .search-form input::-webkit-input-placeholder {
    color: #a9a9a9 !important;
}



.widget .search-form input:-moz-placeholder {

    color: #a9a9a9 !important;

    opacity: 1;

}



.widget .search-form input::-moz-placeholder {

    color: #a9a9a9 !important;

    opacity: 1;

}



.widget .search-form input:focus {
    border-color: rgba(30, 46, 66, 0.3);
}



.widget .search-form button {

    position: absolute;

    top: 0;

    right: 0;

    padding: 15px 20px;

    line-height: initial;

}



.widget .widget-title {

    padding: 26px 0;

    margin: 0;

}



.widget .list {

    padding: 0;

    border-top: 1px solid #e5e5e5;

}



.widget .list li {
    border-bottom: 1px solid #e5e5e5;
}



.widget .list li a:before {

    margin-right: 10px;

    font-family: FontAwesome;

    font-size: 14px;

    color: rgba(30, 46, 66, 0.5);

    content: "\f0da";

    -webkit-transition: all 300ms ease-in-out;

    -moz-transition: all 300ms ease-in-out;

    -ms-transition: all 300ms ease-in-out;

    -o-transition: all 300ms ease-in-out;

    transition: all 300ms ease-in-out;

}



.widget .list a {

    padding: 10px;

    display: block;

    font-size: 14px;

    font-weight: normal;

    color: rgba(30, 46, 66, 0.5);

}



.widget .list li a:hover:before,

.widget .list li a:hover {
    color: #1e2e42;
}



.widget #calendar {

    position: relative;

    width: 100%;

    /*font: normal normal 14px/40px 'roboto slab';*/

    color: rgba(26, 26, 26, 0.5);

}



.widget #calendar caption {

    color: #1a1a1a;

    border: 1px solid #e5e5e5;

    border-width: 1px 0;

}

.widget #calendar caption:before {

    position: absolute;

    left: 10px;

    font-family: FontAwesome;

    font-size: 14px;

    color: rgba(26, 26, 26, 0.5);

    content: "\f0d9";

}



.widget #calendar caption:after {

    position: absolute;

    right: 10px;

    font-family: FontAwesome;

    font-size: 14px;

    color: rgba(26, 26, 26, 0.5);

    content: "\f0da";

}



.widget #calendar th {

    padding: 0;

    width: 55px;

    font-size: 14px;

    color: #8c8c8c;

    background: #fff;

}



.widget #calendar td {
    padding: 0;
}



.widget #calendar thead tr {
    border-bottom: 1px solid #e5e5e5;
}



.widget #calendar thead tr th:first-child,

.widget #calendar tbody tr td:first-child {

    width: 57px;

    padding-left: 10px;

}



.widget #calendar thead tr th:last-child,

.widget #calendar tbody tr td:last-child {

    padding-right: 10px;

    width: 30px;

}



.widget #calendar tbody>tr {
    border-bottom: 1px solid #e5e5e5;
}



.widget #calendar tbody>tr>td.active {

    cursor: pointer;

    color: #1a1a1a;

}



.widget .tags-list li {

    display: inline-block;

    margin-right: 6px;

    margin-bottom: 10px;

}



.widget .tags-list li:first-child {
    margin-right: 6px;
}



.widget .tags-list li a {

    padding: 5px 8px;

    border: 1px solid #e5e5e5;

}



/* -----------------------------------------------------------------------------



    CONTACT



----------------------------------------------------------------------------- */

.contact-map {

    position: relative;

    background: #fff;

}



.contact-map .contact-form {

    position: absolute;

    padding: 20px 40px 20px 40px;

    text-align: center;

}



.contact-map .contact-form .divisor {

    margin: 0 auto;

    display: block;

}



.contact-map .contact-form-title {

    margin: 0 0 20px 0;

    display: block;

}



.contact-map .contact-form .form-row {

    margin-top: 20px;

}



.contact-map .contact-form input:focus,

.contact-map .contact-form textarea:focus,

.contact-map .contact-form .error {

    border-color: rgba(30, 46, 66, 0.3);

}



.contact-map .contact-form textarea {

    margin-bottom: 20px;

    display: inherit;

    width: 100%;

    min-height: 120px;

    resize: none;

    outline: none;

}





.contact-form .select-box {

    position: relative;

    display: inline-block;

    width: 100%;

}



.contact-form .alert-message {

    padding-top: 17px;

}



.contact-map.style-1 {
    height: 690px;
}



.contact-map.style-1 .contact-info {

    position: absolute;

    padding: 40px 50px 50px 50px;

    right: 15px;

    left: 15px;

    bottom: 100px;

    background: #454545
}



.contact-map.style-1 .contact-info:before {

    position: absolute;

    top: -17px;

    left: 50%;

    margin-left: -17px;

    width: 0;

    height: 0;

    border-style: solid;

    border-width: 0 17px 17px 17px;

    border-color: transparent transparent rgba(17, 26, 39, 0.7) transparent;

    content: "";

}



.contact-map.style-1 .contact-info-details li {
    color: #fff;
}



.contact-map.style-1 .contact-form {

    background: #fff;

    left: 0;

    bottom: 100px;

}



.contact-map.style-1 .contact-form input,

.contact-map.style-1 .contact-form textarea {

    color: #1e2e42;

    background: rgba(30, 46, 66, 0.11);

}



.contact-map.style-1 .contact-form input:-ms-input-placeholder,

.contact-map.style-1 .contact-form textarea:-ms-input-placeholder {
    color: #a9a9a9;
}



.contact-map.style-1 .contact-form input::-webkit-input-placeholder,

.contact-map.style-1 .contact-form textarea::-webkit-input-placeholder {
    color: #a9a9a9;
}



.contact-map.style-1 .contact-form input:-moz-placeholder,

.contact-map.style-1 .contact-form textarea:-moz-placeholder {

    color: #a9a9a9;

    opacity: 1;

}



.contact-map.style-2 .contact-form {

    bottom: -35px;

    left: 0;
    background: linear-gradient(#fefefe, #e7e7e7);

    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.34);

    border: 1px solid #999;



}



.contact-map.style-2 h5 {
    color: #000;
}



.contact-map.style-2 .contact-form input,

.contact-map.style-2 .contact-form textarea,

.contact-map.style-2 .contact-form select {

    /*color: #000;

  background: #fff;*/

}



.contact-map.style-2 .contact-form input:-ms-input-placeholder,

.contact-map.style-2 .contact-form textarea:-ms-input-placeholder {
    color: #a9a9a9 !important;
}



.contact-map.style-2 .contact-form input::-webkit-input-placeholder,

.contact-map.style-2 .contact-form textarea::-webkit-input-placeholder {
    color: #a9a9a9 !important;
}



.contact-map.style-2 .contact-form input:-moz-placeholder,

.contact-map.style-2 .contact-form textarea:-moz-placeholder {

    color: #a9a9a9 !important;

    opacity: 1;

}

.contact-form.style-2 input::-moz-placeholder,

.contact-form.style-2 textarea::-moz-placeholder {

    color: #a9a9a9 !important;

    opacity: 1;

}



.contact-map.style-2 .select-box .select-clone {
    background: #454545
}



.contact-map.style-2 .select-box .select-clone li {
    color: #fff;
}









/* -----------------------------------------------------------------------------



    TESTIMONIALS



----------------------------------------------------------------------------- */

.testimonials {

    position: relative;

    padding: 80px 0 100px 0;

    color: #FFF;

    background: #1e2e42 url(../img/testimonials.jpg) no-repeat center fixed;

    -webkit-background-size: cover;

    -moz-background-size: cover;

    background-size: cover;

}



.testimonials #video_testimonials {

    position: absolute;

    top: 0;

    height: 100%;

    width: 100%;

    z-index: 0;

}



.testimonials .video_gradient {

    position: absolute;

    top: 0;

    right: 0;

    bottom: 0;

    left: 0;

    background: #454545;
    z-index: 0;

}



.testimonials blockquote {

    padding: 0;

    margin: 20px 0 45px 0;

    /*font-family: 'roboto slab', sans-serif;*/

    font-size: 14px;

    line-height: 30px;

    text-align: center;

    border: none;

    z-index: 99;

}

.testimonials blockquote:after {

    margin: 25px auto 0 auto;

    display: block;

    font: normal 28px/28px 'FontAwesome';

    text-align: center;

    /*color: #354355;*/

    color: #DB591E;

    content: '\f10e';

    -webkit-backface-visibility: hidden;

}



.testimonials cite {

    margin-bottom: 25px;

    display: inline-block;

    text-transform: uppercase;

    font-weight: bold;

    font-size: 18px;

}



.testimonials cite>span {

    display: block;

    font-size: 14px;

    line-height: 14px;

}



.testimonials p.stars {

    margin-bottom: 20px;

    line-height: 25px;

}



.testimonials p.stars>i {

    margin: 0 2px;

    font-size: 18px;

    color: #fff;

}



/* -----------------------------------------------------------------------------



    SUPERTABS



----------------------------------------------------------------------------- */

.supertabs {
    padding: 100px 0;
}



.supertabs.no-top {
    padding-top: 0;
}



.supertabs .preamble {
    margin-bottom: 100px;
}

.supertabs1 .preamble {
    margin-bottom: 30px !important;
}



.tabs-navigation {
    padding-right: 0;
}



.tabs-content {
    padding-left: 0;
}



.tabs-navigation .tab-title-list li {

    padding-left: 50px;

    margin-left: 10px;

    height: 118px;

    background-color: #f5f5f5;

    border: 1px solid #e5e5e5;

    border-width: 1px 1px 0 1px;

}



.tabs-navigation .tab-title-list li:last-child {
    border-bottom: 1px solid #e5e5e5;
}



.tabs-navigation .tab-title-list li.active {

    margin-left: 0;

    background-color: #fff;

    border-left: 2px solid #1e2e42;

    border-bottom: 1px solid #e5e5e5;

}



.tabs-navigation .tab-title-list li:hover {
    cursor: pointer;
}



.tabs-navigation .tab-title-list li p {
    color: #b2b2b2;
}



.tabs-navigation .tab-title-list li h5 {

    padding-bottom: 5px;

    margin-bottom: 0;

    margin-top: 44px;

}



.tabs-content .tab-content-list li {

    -webkit-background-size: cover;

    -moz-background-size: cover;

    background-size: cover;

}



.tabs-navigation .tab-title-list li h5,

.tabs-navigation .tab-title-list li p,

.tabs-content .tab-content-list h5,

.tabs-content .tab-content-list p {

    font-family: 'roboto', sans-serif;

    text-transform: uppercase;

    font-weight: bold;

}



.tabs-navigation .tab-title-list li h5,

.tabs-content .tab-content-list h5 {

    font-size: 16px;

    color: #1e2e42;

}



.tabs-navigation .tab-title-list li p,

.tabs-content .tab-content-list li p {

    margin-bottom: 0;

    letter-spacing: -1px;

    line-height: 12px;

}



.tabs-content .tab-content-list li .heading {

    position: absolute;

    padding-left: 10px;

    top: 40px;

    left: 50px;

    border-left: 2px solid #1e2e42;

}



.tabs-content .tab-content-list li h5 {

    padding-bottom: 3px;

    margin: 0;

}



.tabs-content .tab-content-list li p {
    color: #808080;
}



.tabs-content .tab-content-list li cite {

    position: absolute;

    bottom: 35px;

    left: 50px;

    right: 50px;

    font-family: 'roboto', sans-serif;

}



/* -----------------------------------------------------------------------------



    PRICING



----------------------------------------------------------------------------- */

.pricing {

    padding: 80px 0 100px 0;

}



.package {

    margin-top: 20px;

    font-family: 'crimson text';

    text-align: center;

}



.package-inner {

    position: relative;

    height: 263px;

    background: url(../img/package-inner-bg.png) no-repeat;

    background-size: cover;

}



.package-value {
    padding-top: 45px;
}



.package-unit,

.package-cost {

    font-style: italic;

    font-weight: bold;

    color: #fff;

}



.package-unit {

    margin-right: -10px;

    font-size: 46px;

    line-height: 46px;

    vertical-align: top;

}



.package-cost {

    font-size: 100px;

    line-height: 100px;

    letter-spacing: -3px;

    vertical-align: bottom;

}



.package-per {

    display: block;


    color: #fff;


    line-height: 10px;

    font-size: 18px;

}



.package-label {

    position: absolute;

    bottom: 10px;

    left: 10px;

    right: 10px;

    background-color: #1e2e42;

}



.package-label h5 {

    padding: 16px 0;

    margin: 0;

    color: #fff;

}



.package-include h5 {

    margin: 0;

    line-height: 70px;

    -webkit-transition: all 0.3s ease 0s;

    -moz-transition: all 0.3s ease 0s;

    -ms-transition: all 0.3s ease 0s;

    -o-transition: all 0.3s ease 0s;

    transition: all 0.3s ease 0s;

}



.package:hover .package-include h5 {
    background: #f5f5f5;
}



.package-include ul {
    margin-bottom: 30px;
}



.package-include ul:before {

    margin-top: 6px;

    content: "";

    border-top: 1px solid #e5e5e5;

    display: block;

}



.package-include ul li {

    line-height: 50px;

    border-bottom: 1px solid #e5e5e5;

}



/* -----------------------------------------------------------------------------



    PARTNERS



----------------------------------------------------------------------------- */

.partners {

    padding: 50px 0;

    text-align: center;

    background-color: #f5f5f5;

}



.partners h5 {

    padding-bottom: 30px;

    margin: 0;

}



.partners h5:before {

    position: relative;

    bottom: 5px;

    margin-right: 20px;

    content: url(../img/divisor-left.png);

}



.partners h5:after {

    position: relative;

    bottom: 5px;

    margin-left: 20px;

    content: url(../img/divisor-right.png);

}



/* -----------------------------------------------------------------------------



    FOOTER



----------------------------------------------------------------------------- */




#footer .preamble img {

    margin: 0;

}



/* -------------------------------------------------------------------------

    FOOTER-CONTENT

------------------------------------------------------------------------- */

.footer-links a {

    padding: 5px !important;

}

#footer .footer-content {
    padding-bottom: 50px;
}



.footer-content p {

    margin: 1em 0;

}



#footer .widget h5 {

    padding-bottom: 0;

    margin: 0;

    color: #fff;

    font-size: 1.5em;

    margin-bottom: 1em;

}



#footer .widget p,

#footer .widget a {

    color: #c8cbd0;

    font-size: 14px;

}



#footer .widget-news ul {

    margin-top: 8px;

    padding: 0;


}



#footer .widget-news li {
    border-bottom: 1px solid #6B6B6B;
}



.london-air li {

    border-bottom: none !important;

    float: left;

}

#footer .widget-news .london-air li a:before {

    content: "";

}

.london-air li a {

    padding: 5px !important;

}



#footer .widget-news li a:before {

    margin-right: 10px;

    font-family: FontAwesome;

    font-size: 14px;

    color: #c8cbd0;

    content: "\f0da";

    -webkit-transition: all 300ms ease-in-out;

    -moz-transition: all 300ms ease-in-out;

    -ms-transition: all 300ms ease-in-out;

    -o-transition: all 300ms ease-in-out;

    transition: all 300ms ease-in-out;

}



#footer .widget-news a {

    padding: 10px;

    display: block;

    font-size: 14px;

    font-weight: normal;

    color: #ced0d3;

}



#footer .widget-news li a:hover:before,

#footer .widget-news li a:hover {
    color: #fff;
}



#footer .widget-newsletter input[type="text"] {

    width: 100%;

    max-width: 220px;

    background-color: rgba(255, 255, 255, .1);

    color: #fff;

}

.widget-newsletter input[type="submit"] {

    background-color: transparent;

    height: 50px;

}



#footer .widget-newsletter input[type="text"]:focus {
    border: 1px solid rgba(255, 255, 255, 0.5);
}



#footer .widget-newsletter input:-ms-input-placeholder {
    color: #a9a9a9;
}



#footer .widget-newsletter input::-webkit-input-placeholder {
    color: #a9a9a9;
}



#footer .widget-newsletter input:-moz-placeholder {

    color: #a9a9a9;

    opacity: 1;

}



#footer .widget-newsletter input::-moz-placeholder {

    color: #a9a9a9;

    opacity: 1;

}



#footer .widget-newsletter button {

    position: absolute;

    padding-left: 18px;

    padding-right: 18px;

    right: 15px;

    vertical-align: top;

    color: #fff;

    border-color: #fff;

}



#footer .widget-newsletter button:hover {

    color: #162232;

    background: #fff;

}



#footer .widget-social h5 {

    padding-bottom: 10px;

    float: left;

    line-height: 26px;

}



#footer .widget-social ul {
    float: right;
}



#footer .widget-social ul li {

    margin: 0 7px;

    display: inline-block;

}



#footer .widget-social ul li:last-child {
    margin-right: 0;
}



#footer .widget-social ul li a>i {

    font-size: 26px;

    color: #fff;

    -webkit-transition: all .3s ease-in-out;

    -moz-transition: all .3s ease-in-out;

    -ms-transition: all .3s ease-in-out;

    -o-transition: all .3s ease-in-out;

    transition: all .3s ease-in-out;

}



#footer .widget-social ul li a:hover>i {

    color: #ccc;

    -webkit-transition: all .3s ease-in-out;

    -moz-transition: all .3s ease-in-out;

    -ms-transition: all .3s ease-in-out;

    -o-transition: all .3s ease-in-out;

    transition: all .3s ease-in-out;

}



/* -------------------------------------------------------------------------

    FOOTER COPYRIGHTS

------------------------------------------------------------------------- */

#footer .footer-copyrights {

    padding: 20px 0;

    text-align: center;

    background: #3E3D3D;

}



#footer .footer-copyrights p {

    margin: 0;

    color: #c8cbd0;

    text-align: right;

}



#footer .footer-copyrights a {

    margin: 0;

    color: #fff;

}

.custom-list li a {

    color: #fff;

    cursor: default;

}



#footer .footer-copyrights a:hover {
    text-decoration: underline;
}



.port_Airport {
    background-image: url("../assets/images/icon-preset-airport.png");
    background-repeat: no-repeat;
    padding: 0px 0 0 30px;
}

.none {
    display: none !important
}

.ac_odd {
    background: #636363 !important;
    color: #fff;
}

.ac_even {
    /*background:#000;*/
    color: #fff;
    background: #444;
}



/******************************************************************/

/***********************************FAQ***********************************/





.cd-faq {

    width: 90%;

    max-width: 1024px;

    margin: 2em auto;

    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);

}

.cd-faq:after {

    content: "";

    display: table;

    clear: both;

}

@media only screen and (min-width: 768px) {

    .cd-faq {

        position: relative;

        margin: 4em auto;

        box-shadow: none;

    }

}



.cd-faq-categories a {

    position: relative;

    display: block;

    overflow: hidden;

    height: 50px;

    line-height: 50px;

    padding: 0 28px 0 16px;

    background-color: #4e5359;

    -webkit-font-smoothing: antialiased;

    -moz-osx-font-smoothing: grayscale;

    color: #ffffff;

    white-space: nowrap;

    border-bottom: 1px solid #555b61;

    text-overflow: ellipsis;

}

.cd-faq-categories a::before,
.cd-faq-categories a::after {

    /* plus icon on the right */

    position: absolute;

    top: 50%;

    right: 16px;

    display: inline-block;

    height: 1px;

    width: 10px;

    background-color: #7f868e;

}

.cd-faq-categories a::after {

    -webkit-transform: rotate(90deg);

    -moz-transform: rotate(90deg);

    -ms-transform: rotate(90deg);

    -o-transform: rotate(90deg);

    transform: rotate(90deg);

}

.cd-faq-categories li:last-child a {

    border-bottom: none;

}

@media only screen and (min-width: 768px) {

    .cd-faq-categories {

        width: 20%;

        float: left;

        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);

    }

    .cd-faq-categories a {

        font-size: 13px;

        font-size: 0.8125rem;

        font-weight: 600;

        padding-left: 24px;

        padding: 0 24px;

        -webkit-transition: background 0.2s, padding 0.2s;

        -moz-transition: background 0.2s, padding 0.2s;

        transition: background 0.2s, padding 0.2s;

    }

    .cd-faq-categories a::before,
    .cd-faq-categories a::after {

        display: none;

    }

    .no-touch .cd-faq-categories a:hover {

        background: #555b61;

    }

    .no-js .cd-faq-categories {

        width: 100%;

        margin-bottom: 2em;

    }

}

@media only screen and (min-width: 1024px) {

    .cd-faq-categories {

        position: absolute;

        top: 0;

        left: 0;

        width: 200px;

        z-index: 2;

    }

    .cd-faq-categories a::before {

        /* decorative rectangle on the left visible for the selected item */

        display: block;

        top: 0;

        right: auto;

        left: 0;

        height: 100%;

        width: 3px;

        background-color: #a9c056;

        opacity: 0;

        -webkit-transition: opacity 0.2s;

        -moz-transition: opacity 0.2s;

        transition: opacity 0.2s;

    }

    .cd-faq-categories .selected {

        background: #42464b !important;

    }

    .cd-faq-categories .selected::before {

        opacity: 1;

    }

    .cd-faq-categories.is-fixed {

        /* top and left value assigned in jQuery */

        position: fixed;

    }

    .no-js .cd-faq-categories {

        position: relative;

    }

}



.cd-faq-items {

    position: fixed;

    height: 100%;

    width: 90%;

    top: 0;

    right: 0;

    background: #ffffff;

    padding: 0 5% 1em;

    overflow: auto;

    -webkit-overflow-scrolling: touch;

    z-index: 0;

    -webkit-backface-visibility: hidden;

    backface-visibility: hidden;

    -webkit-transform: translateZ(0) translateX(100%);

    -moz-transform: translateZ(0) translateX(100%);

    -ms-transform: translateZ(0) translateX(100%);

    -o-transform: translateZ(0) translateX(100%);

    transform: translateZ(0) translateX(100%);

    -webkit-transition: -webkit-transform .3s;

    -moz-transition: -moz-transform .3s;

    transition: transform .3s;

}

.cd-faq-items.slide-in {

    -webkit-transform: translateZ(0) translateX(0%);

    -moz-transform: translateZ(0) translateX(0%);

    -ms-transform: translateZ(0) translateX(0%);

    -o-transform: translateZ(0) translateX(0%);

    transform: translateZ(0) translateX(0%);

}

.no-js .cd-faq-items {

    position: static;

    height: auto;

    width: 100%;

    -webkit-transform: translateX(0);

    -moz-transform: translateX(0);

    -ms-transform: translateX(0);

    -o-transform: translateX(0);

    transform: translateX(0);

}

@media only screen and (min-width: 768px) {

    .cd-faq-items {

        position: static;

        height: auto;

        width: 78%;

        float: right;

        overflow: visible;

        -webkit-transform: translateZ(0) translateX(0);

        -moz-transform: translateZ(0) translateX(0);

        -ms-transform: translateZ(0) translateX(0);

        -o-transform: translateZ(0) translateX(0);

        transform: translateZ(0) translateX(0);

        padding: 0;

        background: transparent;

    }

}

@media only screen and (min-width: 1024px) {

    .cd-faq-items {

        float: none;

        width: 100%;

    }

    .no-js .cd-faq-items {

        padding-left: 0;

    }

}



.cd-close-panel {

    position: fixed;

    top: 5px;

    right: -100%;

    display: block;

    height: 40px;

    width: 40px;

    overflow: hidden;

    text-indent: 100%;

    white-space: nowrap;

    z-index: 2;

    /* Force Hardware Acceleration in WebKit */

    -webkit-transform: translateZ(0);

    -moz-transform: translateZ(0);

    -ms-transform: translateZ(0);

    -o-transform: translateZ(0);

    transform: translateZ(0);

    -webkit-backface-visibility: hidden;

    backface-visibility: hidden;

    -webkit-transition: right 0.4s;

    -moz-transition: right 0.4s;

    transition: right 0.4s;

}

.cd-close-panel::before,
.cd-close-panel::after {

    /* close icon in CSS */

    position: absolute;

    top: 16px;

    left: 12px;

    display: inline-block;

    height: 3px;

    width: 18px;

    background: #6c7d8e;

}

.cd-close-panel::before {

    -webkit-transform: rotate(45deg);

    -moz-transform: rotate(45deg);

    -ms-transform: rotate(45deg);

    -o-transform: rotate(45deg);

    transform: rotate(45deg);

}

.cd-close-panel::after {

    -webkit-transform: rotate(-45deg);

    -moz-transform: rotate(-45deg);

    -ms-transform: rotate(-45deg);

    -o-transform: rotate(-45deg);

    transform: rotate(-45deg);

}

.cd-close-panel.move-left {

    right: 2%;

}

@media only screen and (min-width: 768px) {

    .cd-close-panel {
        display: none;
    }




}



.cd-faq-group {

    /* hide group not selected */

    display: none;

}

.cd-faq-group.selected {

    display: block;

}

.cd-faq-group .cd-faq-title {

    background: transparent;

    box-shadow: none;

    margin: 1em 0;

}

.no-touch .cd-faq-group .cd-faq-title:hover {

    box-shadow: none;

}

.cd-faq-group .cd-faq-title h2 {

    text-transform: uppercase;

    font-size: 12px;

    font-size: 0.75rem;

    font-weight: 700;

    color: #bbbbc7;

}

.no-js .cd-faq-group {

    display: block;

}

@media only screen and (min-width: 768px) {

    .cd-faq-group {

        /* all groups visible */

        display: block;

    }

    .cd-faq-group>li {

        /*background: #f3f3f5;*/

        background: #ccc;

        margin-bottom: 6px;

        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);

        -webkit-transition: box-shadow 0.2s;

        -moz-transition: box-shadow 0.2s;

        transition: box-shadow 0.2s;

    }

    .cd-faq-group>li a {

        color: black !important;

        font-size: 1.2em;

    }

    .cd-faq-group>li a:hover {

        color: #db591e;

    }

    .no-touch .cd-faq-group>li:hover {

        box-shadow: 0 1px 10px rgba(108, 125, 142, 0.3);

    }

    .cd-faq-group .cd-faq-title {

        margin: 2em 0 1em;

    }

    .cd-faq-group:first-child .cd-faq-title {

        margin-top: 0;

    }

}



.cd-faq-trigger {

    position: relative;

    display: block;

    margin: 1.6em 0 .4em;

    line-height: 1.2;

}

@media only screen and (min-width: 768px) {

    .cd-faq-trigger {

        font-size: 24px;

        font-size: 15px;

        font-weight: 300;

        margin: 0;

        padding: 24px 72px 24px 24px;

    }

    .cd-faq-trigger::before,
    .cd-faq-trigger::after {

        /* arrow icon on the right */

        position: absolute;

        right: 24px;

        top: 50%;

        height: 2px;

        width: 13px;

        /*background: #cfdca0;*/

        background: #fff;

        -webkit-backface-visibility: hidden;

        backface-visibility: hidden;

        -webkit-transition-property: -webkit-transform;

        -moz-transition-property: -moz-transform;

        transition-property: transform;

        -webkit-transition-duration: 0.2s;

        -moz-transition-duration: 0.2s;

        transition-duration: 0.2s;

    }

    .cd-faq-trigger::before {

        -webkit-transform: rotate(45deg);

        -moz-transform: rotate(45deg);

        -ms-transform: rotate(45deg);

        -o-transform: rotate(45deg);

        transform: rotate(45deg);

        right: 32px;

    }

    .cd-faq-trigger::after {

        -webkit-transform: rotate(-45deg);

        -moz-transform: rotate(-45deg);

        -ms-transform: rotate(-45deg);

        -o-transform: rotate(-45deg);

        transform: rotate(-45deg);

    }

    .content-visible .cd-faq-trigger::before {

        -webkit-transform: rotate(-45deg);

        -moz-transform: rotate(-45deg);

        -ms-transform: rotate(-45deg);

        -o-transform: rotate(-45deg);

        transform: rotate(-45deg);

    }

    .content-visible .cd-faq-trigger::after {

        -webkit-transform: rotate(45deg);

        -moz-transform: rotate(45deg);

        -ms-transform: rotate(45deg);

        -o-transform: rotate(45deg);

        transform: rotate(45deg);

    }

}




.cd-faq-content p {

    font-size: 14px;



    line-height: 1.4;

    color: #333;

}

@media only screen and (min-width: 768px) {

    .cd-faq-content {



        padding: 0 24px 30px;

    }

    .cd-faq-content p {

        line-height: 1.6;

    }

    .no-js .cd-faq-content {

        display: block;

    }

}

.clr {
    clear: both
}

/**************************************End*************************************/

/******************************Login*****************************/



.card-container.card {

    float: left;

    width: 51.8%;

    margin-right: 0;

    min-height: 455px;

    box-shadow: 0px 0px 5px #000000;

    /*overflow:hidden;*/

}

.terms-booking {

    min-height: 435px !important;

}

.chaffer-section {

    min-height: 193px;

}

.btn {

    font-weight: 700;

    height: 36px;

    -moz-user-select: none;

    -webkit-user-select: none;

    user-select: none;

    cursor: default;

}

.question-section h3 {

    /*margin-top: 0px !important;*/

}

/*

 * Card component

 */

.card {

    /*background-color: #F7F7F7;*/

    /* just in case there no content*/

    /* padding: 20px 25px 30px;*/

    /*

    -moz-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);

    -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);

    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);

	*/



    /* shadows and rounded borders */

    -moz-border-radius: 2px;

    -webkit-border-radius: 2px;

    border-radius: 10px;

    margin: 0 auto 25px;

    background: rgba(255, 255, 255, 0);



    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0);

    border: 1px solid #fff;

}

.card input,
.card select,
.card textarea {

    /*background: #fff;*/

    color: black;

}

.profile-img-card {

    width: 96px;

    height: 96px;

    margin: 0 auto 10px !important;

    display: block;

    -moz-border-radius: 50%;

    -webkit-border-radius: 50%;

    border-radius: 50%;

}



/*

 * Form styles

 */

.profile-name-card {

    font-size: 16px;

    font-weight: bold;

    text-align: center;

    margin: 10px 0 0;

    min-height: 1em;

}



.reauth-email {

    display: block;

    color: #404040;

    line-height: 2;

    margin-bottom: 10px;

    font-size: 14px;

    text-align: center;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;

    -moz-box-sizing: border-box;

    -webkit-box-sizing: border-box;

    box-sizing: border-box;

}



.form-signin #inputEmail,

.form-signin #inputPassword {

    direction: ltr;

    height: 44px;

    font-size: 16px;

}

.form-signin input[type=email],

.form-signin input[type=password],

.form-signin input[type=text],

.form-signin textarea,

.form-signin button {

    width: 100%;

    display: block;

    margin-bottom: 10px;

    z-index: 1;

    position: relative;

    -moz-box-sizing: border-box;

    -webkit-box-sizing: border-box;

    box-sizing: border-box;

    outline: 0;

    border: none;

}

.form-signin input[type="radio"] {

    margin-bottom: 10px;

    margin-right: .3em;

}

.form-signin select {

    margin-bottom: 1em;

}



.form-signin input::-webkit-input-placeholder {

    color: #a9a9a9 !important;

}



.form-signin input:-moz-placeholder {
    /* Firefox 18- */

    color: #a9a9a9 !important;

}



.form-signin input::-moz-placeholder {
    /* Firefox 19+ */

    color: #a9a9a9 !important;

}



.form-signin input:-ms-input-placeholder {

    color: #a9a9a9 !important;

}

.form-signin textarea::-webkit-input-placeholder {

    color: #a9a9a9 !important;

}



.form-signin textarea:-moz-placeholder {
    /* Firefox 18- */

    color: #a9a9a9 !important;

}



.form-signin textarea::-moz-placeholder {
    /* Firefox 19+ */

    color: #a9a9a9 !important;

}



.form-signin textarea:-ms-input-placeholder {

    color: #a9a9a9 !important;

}





.form-signin .form-control:focus {


    /*

	border-color: rgba(219, 89, 30, .5);

	outline: 0;

	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 4px rgb(219, 89, 30);

	box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 4px rgb(219, 89, 30);

	*/



    border: 1px solid rgba(255, 255, 255, 0.5);

    box-shadow: none;

}



.btn.btn-signin {

    /*background-color: #4d90fe; */

    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#39778e+0,51abcc+100 */

    background: #39778e;
    /* Old browsers */

    background: -moz-linear-gradient(top, #39778e 0%, #51abcc 100%);
    /* FF3.6-15 */

    background: -webkit-linear-gradient(top, #39778e 0%, #51abcc 100%);
    /* Chrome10-25,Safari5.1-6 */

    background: linear-gradient(to bottom, #39778e 0%, #51abcc 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#39778e', endColorstr='#51abcc', GradientType=0);
    /* IE6-9 */

    /* background-color: linear-gradient(rgb(104, 145, 162), rgb(12, 97, 33));*/

    padding: 0px;

    font-weight: 700;

    font-size: 14px;

    text-shadow: 0;

    height: 36px;

    -moz-border-radius: 0px;

    -webkit-border-radius: 0px;



    border: none;

    -o-transition: all 0.218s;

    -moz-transition: all 0.218s;

    -webkit-transition: all 0.218s;

    transition: all 0.218s;
    border-radius: 4px;

}



.btn.btn-signin:hover,

.btn.btn-signin:active,

.btn.btn-signin:focus {

    /*background-color: rgb(12, 97, 33);*/

    background-color: transparent;

}



.forgot-password {

    /*color: rgb(219, 89, 30);*/

    color: black;

    font-weight: bold;

    font-size: 1.1em !important;

    text-align: left !important;

    margin-top: 14%;

    display: block;

    position: relative;

}

.forgot-password:hover {

    color: rgb(219, 89, 30);



}

.forgot-pwd {

    text-align: left;

}



.forgot-password:hover,

.forgot-password:active,

.forgot-password:focus {

    /*text-decoration:underline;*/

}

/************************************************************************/

td,
th {

    padding: 5px 24px 6px 26px;

    text-align: left;

}

.add-way {

    text-align: right;

    right: 10em;

    position: inherit;

}

.add-way span {

    color: #fff;

    cursor: pointer;

}

#addedRows p span {

    width: 100%;

    margin-right: 0;

    margin-left: 1em;

}

#addedRows p a {

    color: #fff;

}



.lft-align {

    text-align: left !important;

}



label {

    font-weight: bold !important;

    color: black;

    /*text-shadow: 0px 0px 5px #fff !important;*/

    font-size: 13px;

    text-align: left !important;

    letter-spacing: normal !important;
    font-family: 'Open Sans', sans-serif !important;



}

.pay-card {

    text-align: center !important;

    font-weight: bold !important;

    font-size: 18px !important;

    margin-top: .7em;

}















/*--------Banner Form Section Start---------*/

.banner-form {

    background: url(../img/page-banner.jpg);

    height: 500px;

    padding: 2em;

    position: relative;
    display: none;

}

.form-div {

    /*border-radius:10px;*/

    background-color: rgba(0, 0, 0, .7);

    width: 40%;

    padding: 1em;

    border-top: 3px solid #fff;

}

.form-div input[type="text"],
.form-div input[type="password"],
.form-div input[type="date"],
.form-div select,
.form-div textarea {

    padding: 9px 20px;

    height: 50px;

    width: 100%;
    font-family: 'Open Sans', sans-serif !important;

    font-size: 14px;

    border: 1px solid transparent;

    -webkit-transition: all 300ms ease-in-out;

    -moz-transition: all 300ms ease-in-out;

    -ms-transition: all 300ms ease-in-out;

    -o-transition: all 300ms ease-in-out;

    transition: all 300ms ease-in-out;

    margin: 1em 0;

}

.form-div input,
.form-div select {

    color: #fff;

    font-size: 14px;

    text-shadow: none;

    background: rgba(255, 255, 255, 0.3);

}

.form-div input[type="submit"] {

    float: right;

}

/*--------Banner Form Section End---------*/





/*--------Show Section Start-------*/

.fleet-btn,
.fleet-btn1 {

    margin: 1em 0;

}

.fleet-btn {
    float: right;
}

.fleet-btn input[type="submit"] {

    float: right;

    background: linear-gradient(#da6513, #a62909);

    background: -webkit-linear-gradient(#da6513, #a62909);

    background: -o-linear-gradient(#da6513, #a62909);

    background: -moz-linear-gradient(#da6513, #a62909);

    background: linear-gradient(#da6513, #a62909);

    color: #fff;

    margin: 0;

    padding: .5em 1em;

    text-transform: uppercase;

    height: 50px;

    font-weight: 400;

    text-align: center;

    webkit-transition: all .3s ease-in-out;

    -moz-transition: all .3s ease-in-out;

    -ms-transition: all .3s ease-in-out;

    -o-transition: all .3s ease-in-out;

    transition: all .3s ease-in-out;

}

.fleet-btn input[type="submit"]:hover {

    cursor: pointer;

    background: -webkit-linear-gradient(#5f5f5f, #312a2a);

    background: -o-linear-gradient(#5f5f5f, #312a2a);

    background: -moz-linear-gradient(#5f5f5f, #312a2a);

    background: linear-gradient(#5f5f5f, #312a2a);

}

.fleet-btn button a {

    color: #fff !important;

}

.fleet-btn button a:hover {

    text-decoration: none;

    color: #db591e !important;

}

.fleet-btn button {

    /*border:2px solid #db591e !important;*/

    /*background: #db591e !important;*/

    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#39778e+0,51abcc+100 */

    background: #39778e;
    /* Old browsers */

    background: -moz-linear-gradient(top, #39778e 0%, #51abcc 100%);
    /* FF3.6-15 */

    background: -webkit-linear-gradient(top, #39778e 0%, #51abcc 100%);
    /* Chrome10-25,Safari5.1-6 */

    background: linear-gradient(to bottom, #39778e 0%, #51abcc 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#39778e', endColorstr='#51abcc', GradientType=0);
    /* IE6-9 */

    color: #fff !important;

    margin: 0 auto !important;

    padding: .5em 1em !important;

    text-transform: uppercase !important;

    /* height: 50px !important;

    font-weight: 600 !important;*/

    text-align: center !important;

    width: auto !important;

    float: right;

    border-radius: 0;

    webkit-transition: all .3s ease-in-out !important;

    -moz-transition: all .3s ease-in-out !important;

    -ms-transition: all .3s ease-in-out !important;

    -o-transition: all .3s ease-in-out !important;

    transition: all .3s ease-in-out !important;

    text-shadow: 0;

}

.fleet-btn button:hover {

    cursor: pointer;

    background: -webkit-linear-gradient(#5f5f5f, #312a2a);

    background: -o-linear-gradient(#5f5f5f, #312a2a);

    background: -moz-linear-gradient(#5f5f5f, #312a2a);

    background: linear-gradient(#5f5f5f, #312a2a);



}



.fleet-btn1 button {

    border: 2px solid #db591e !important;

    background: transparent !important;

    color: #db591e !important;



    margin: 0 auto !important;

    padding: .5em 1em !important;

    text-transform: uppercase !important;

    height: 50px !important;

    font-weight: 700 !important;

    text-align: center !important;

    width: auto !important;

    float: right;

    webkit-transition: all .3s ease-in-out !important;

    -moz-transition: all .3s ease-in-out !important;

    -ms-transition: all .3s ease-in-out !important;

    -o-transition: all .3s ease-in-out !important;

    transition: all .3s ease-in-out !important;

}

.fleet-btn1 button:hover {

    cursor: pointer;

    background: -webkit-linear-gradient(#5f5f5f, #312a2a);

    background: -o-linear-gradient(#5f5f5f, #312a2a);

    background: -moz-linear-gradient(#5f5f5f, #312a2a);

    background: linear-gradient(#5f5f5f, #312a2a);

}



.single-card-container {

    width: 50% !important;

    position: relative !important;

}

.single-card-container-fw {

    float: none !important;

    width: 100% !important;

    margin: 0 auto !important;


    position: relative !important;

}

/*--------Show Section End-------*/



.detail-sec {

    margin-bottom: 2em;

    padding: 2em;

}

.group label {
    font-weight: 400 !important;

    float: left;

    padding: 5px;
}

.ui-widget {
    font-family: 'Open Sans', sans-serif !important;

    font-size: 14px !important;

}

.act-buttons a {

    display: inline-block;

    padding: 6px 12px;

    margin-bottom: 0;

    font-size: 14px;

    font-weight: 400;

    line-height: 1.42857143;

    text-align: center;

    white-space: nowrap;

    vertical-align: middle;

    -ms-touch-action: manipulation;

    touch-action: manipulation;

    cursor: pointer;

    -webkit-user-select: none;

    -moz-user-select: none;

    -ms-user-select: none;

    user-select: none;

    background-image: none;

    border: 1px solid transparent;

    border-radius: 4px;

    color: #fff !important;

    margin-bottom: .5em;

}

.reg {

    text-align: left;

}

.detail-sec:nth-child(even) {

    background: #5F5F5F;

}



.height-3em {

    height: 3em;

}

.add-way-sec table td,
.add-way-sec table th {

    padding: 10px;

}

.add-way-sec table td a {

    float: right;

    color: #c0c0c0;

    position: relative;

    right: 3px;

}

.detail-sec table td,
.detail-sec table th {

    text-align: center;

    padding: 10px;

}

.calendar-detail input,
.calendar-payment input {

    padding: 9px 20px;

    height: 50px;

    width: 100%;

    border: 1px solid rgba(255, 255, 255, 0.5);

    box-shadow: none;

    -webkit-transition: all 300ms ease-in-out;

    -moz-transition: all 300ms ease-in-out;

    -ms-transition: all 300ms ease-in-out;

    -o-transition: all 300ms ease-in-out;

    transition: all 300ms ease-in-out;

    cursor: pointer;

    font-size: 16px;

    border-radius: 4px;

}

.calendar-detail i {

    top: 15px;

}

.calendar-detail i,
.calendar-payment i {

    right: 20px;

    position: absolute;

    padding: 5px;

    font-size: 14px;

    color: #fff;

}

.calendar-payment i {

    top: 65px;

}



.calendar-detail input:-ms-input-placeholder {
    color: #a9a9a9 !important;
}



.calendar-detail input::-webkit-input-placeholder {
    color: #a9a9a9 !important;
}



.calendar-detail input:-moz-placeholder {

    color: #a9a9a9 !important;

    opacity: 1;

}



.calendar-detail input::-moz-placeholder {

    color: #a9a9a9 !important;

    opacity: 1;

}



.no-padding {

    padding: 0 !important;

}

.show-fleet p {

    color: #999;

    font-style: italic;

}

.card.no-padding .fleet-btn {

    margin-bottom: 6em;

}







/*Dashboard Css Start*/

.left-section {
    /*border:1px solid #ccc;*/
}

.right-section {

    border: 1px solid #ccc;

    background: #fff;

    border-left: 0 !important;

    padding: 2em;

}

.dashboard .custom-list ul {

    margin-top: 8px;

    padding: 0;

}

.dashboard .custom-list li {

    border-bottom: 1px solid #354355;

}

/*

.dashboard .custom-list > li:first-child {

    margin-left: 0;

}

*/

.dashboard .custom-list>li:last-child {

    /*border-bottom:0px solid #354355;*/

}



.dashboard .custom-list>.active {

    background-color: #fff;

    border-left: 2px solid #1e2e42;

    margin-left: 0;

}



.dashboard .custom-list>li {

    margin-left: 10px;

    background-color: #f5f5f5;

    border: 1px solid #e5e5e5;

    padding: 2em 0;

    display: flex;

    justify-content: center;

    align-items: center;

}

.dashboard .custom-list li a {

    padding: 10px;

    display: block;

    font-size: 16px;

    color: #1e2e42;

    font-weight: bold;

    outline: none !important;

}

.dashboard .custom-list li a:hover {

    text-decoration: none;

}

.panel-heading p {
    font-family: 'Open Sans', sans-serif !important;

    font-weight: 500;

    font-size: 17px;

}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {

    border: 1px solid #878787 !important;


    background: #878787;

}

.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {

    outline: none;

}

/*Dashboard Css End*/







/*-------------Profile Css Start-----------*/

.profile-lft,
.profile-rgt {

    text-align: left;

}

.profile-lft .select_count1,
.profile-rgt .select_count1 {

    margin-bottom: .5em;

}

.algn-lft {

    text-align: left;

}

.algn-rgt {

    text-align: right;

}

/*-------------Profile Css Start-----------*/





/*------------- Quote Start -------------*/

.que-value {

    font-size: 14px;

    font-weight: bold;

}

.ans-value {

    font-size: 14px;

    color: #FF5000;

    color: white;

    text-shadow: 1px 1px 3px #000 !important;

    font-weight: bold;

}

.bg-color1 {

    background-color: rgb(68, 137, 199);

    padding: 5px 10px;

    margin-bottom: 10px !important;

}

.bg-color2 {

    background-color: #a3ccff;

    padding: 5px 10px;

    margin-bottom: 10px !important;

}

.bg-white {

    background-color: #fff;



}

.bg-white span {
    color: red !important;

    font-weight: 500 !important;

}

.car-info1 {

    background-color: rgba(218, 101, 19, 0.86) !important;

    padding: 5px 10px;

    margin-bottom: 10px !important;

}

.car-info2 {

    background-color: rgba(218, 101, 19, 0.86) !important;

    padding: 5px 10px;

    margin-bottom: 10px !important;

}

/*------------- Quote End -------------*/





/*------------- Confirm End -------------*/

.confirm-sec a {

    color: #fff;

    margin-left: .5em;

}

/*------------- Confirm End -------------*/





/*------------- Fixed Transfer Detail Section Start -------------*/

.ftd-section p {

    margin-bottom: 1em;

}

.read-more-section {

    margin: 1em 0;

}

.read-more-section a {

    /*

	float:right;

	color: #db591e;

	*/

    float: right;

    background: linear-gradient(#da6513, #a62909);

    background: -webkit-linear-gradient(#da6513, #a62909);

    background: -o-linear-gradient(#da6513, #a62909);

    background: -moz-linear-gradient(#da6513, #a62909);

    background: linear-gradient(#da6513, #a62909);

    color: #fff;

    margin: 0;

    padding: .8em 1em;

    text-transform: uppercase;

    height: 50px;

    font-weight: 400;

    text-align: center;

    webkit-transition: all .3s ease-in-out;

    -moz-transition: all .3s ease-in-out;

    -ms-transition: all .3s ease-in-out;

    -o-transition: all .3s ease-in-out;

    transition: all .3s ease-in-out;

    border-radius: 3px;

}

.read-more-section a:hover {



    cursor: pointer;

    background: -webkit-linear-gradient(#5f5f5f, #312a2a);

    background: -o-linear-gradient(#5f5f5f, #312a2a);

    background: -moz-linear-gradient(#5f5f5f, #312a2a);

    background: linear-gradient(#5f5f5f, #312a2a);

}

/*------------- Fixed Transfer Detail Section End -------------*/







/*--------------static page section start--------------*/

.static-section {

    padding: 100px 0;

}

.static-section h3 {

    font-size: 1.3em;

    font-weight: 900;

    line-height: 1;

    color: black !important;

}

.static-section h3:first-child {

    margin-top: 0 !important;

}

.static-section p {

    text-align: justify;

    margin-bottom: 10px;

    color: rgba(0, 0, 0, 0.5);

}

.static-section .fleet-btn {

    margin: 0;

}

.call-us {

    margin: 1em 0;

}

.call-us h3 {

    font-size: 1.3em;

    font-weight: 600;

    margin-top: 10px;

}

.call-us a {

    color: #eaeaea !important;

    font-size: 1.2em !important;

}

.cd-faq-group {

    /* all groups visible */

    display: block;

}

.cd-faq-group>li {

    /*background: rgba(231, 231, 231, 0.58);*/

    background: #f3f3f5e6;



    margin-bottom: 6px;

    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);

    -webkit-transition: box-shadow 0.2s;

    -moz-transition: box-shadow 0.2s;

    transition: box-shadow 0.2s;

}

.cd-faq-group>li a {

    color: #333;

    outline: none;
    font-weight: bold;

}

.cd-faq-group>li a:hover {

    cursor: default;

    color: black !important;

}

.no-touch .cd-faq-group>li:hover {

    box-shadow: 0 1px 10px rgba(108, 125, 142, 0.3);

}

.cd-faq-group .cd-faq-title {

    margin: 2em 0 1em;

}

.cd-faq-group:first-child .cd-faq-title {

    margin-top: 0;

}

.cd-faq-items {

    width: 100%;

    position: static;

    height: auto;

    float: right;

    overflow: visible;

    -webkit-transform: translateZ(0) translateX(0);

    -moz-transform: translateZ(0) translateX(0);

    -ms-transform: translateZ(0) translateX(0);

    -o-outline: none;

    outline: none;
    ransform: translateZ(0) translateX(0);

    transform: translateZ(0) translateX(0);

    padding: 0;

    background: transparent;

}

.cd-faq-group {

    display: block !important;

    margin-left: 0;

    padding-left: 0;

    margin-top: .5em;

}

.cd-faq-group>li {



    margin-bottom: 6px;

    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);

    -webkit-transition: box-shadow 0.2s;

    -moz-transition: box-shadow 0.2s;

    transition: box-shadow 0.2s;

    position: relative;



}

.cd-faq-trigger::before {

    -webkit-transform: rotate(45deg);

    -moz-transform: rotate(45deg);

    -ms-transform: rotate(45deg);

    -o-transform: rotate(45deg);

    transform: rotate(45deg);

    right: 32px;

}

.cd-faq-trigger {

    font-size: 24px;

    font-size: 15px;

    font-weight: 300;

    margin: 0;

    /*padding: 24px 72px 24px 24px;*/

    padding: 16px 72px 16px 24px;

}

.cd-faq-trigger::before,
.cd-faq-trigger::after {

    /* arrow icon on the right */

    position: absolute;

    right: 24px;

    top: 50%;

    height: 2px;

    width: 13px;

    /*background: #cfdca0;*/

    background: #fff;

    -webkit-backface-visibility: hidden;

    backface-visibility: hidden;

    -webkit-transition-property: -webkit-transform;

    -moz-transition-property: -moz-transform;

    transition-property: transform;

    -webkit-transition-duration: 0.2s;

    -moz-transition-duration: 0.2s;

    transition-duration: 0.2s;

}

.cd-faq-trigger::before {

    -webkit-transform: rotate(45deg);

    -moz-transform: rotate(45deg);

    -ms-transform: rotate(45deg);

    -o-transform: rotate(45deg);

    transform: rotate(45deg);

    right: 32px;

}

.cd-faq-trigger::after {

    -webkit-transform: rotate(-45deg);

    -moz-transform: rotate(-45deg);

    -ms-transform: rotate(-45deg);

    -o-transform: rotate(-45deg);

    transform: rotate(-45deg);

}

.content-visible .cd-faq-trigger::before {

    -webkit-transform: rotate(-45deg);

    -moz-transform: rotate(-45deg);

    -ms-transform: rotate(-45deg);

    -o-transform: rotate(-45deg);

    transform: rotate(-45deg);

}

.content-visible .cd-faq-trigger::after {

    -webkit-transform: rotate(45deg);

    -moz-transform: rotate(45deg);

    -ms-transform: rotate(45deg);

    -o-transform: rotate(45deg);

    transform: rotate(45deg);

}

.cd-faq-content {



    padding: 0 24px 16px;

}

.cd-faq-content p {

    line-height: 1.6;

    color: rgba(0, 0, 0, 0.5);

}

.no-js .cd-faq-content {

    display: block;

}

.review-box {

    padding: 1.5em;

    margin: 1em 0;

    border-radius: 10px;

}

.review-box:nth-child(odd) {

    background: #fff;

}

.review-box:nth-child(even) {

    background: #DBDBDB;

}

.review-text {

    font-style: italic;

    font-size: 16px;

    text-align: justify;

    padding-left: 1.7em;

}

.review-text:before {

    background: url(../img/colon.png);

    content: "";

    position: absolute;

    width: 37px;

    height: 29px;

    left: 20px;

}

.review-person,
.review-post {

    text-align: right;

    margin-bottom: .1em;

    margin-top: 0;

}


.review-rating {

    margin-top: .5em;

}

.review-rating img {

    float: right;

}

.review-person {

    text-transform: uppercase;

    font-size: 1.15em;

    font-weight: bold;

    font-style: italic;

}

.review-form textarea {

    min-height: 150px;

}

.radio-rating input[type="radio"] {

    float: left;

}

.rate-1 {

    float: left;

    width: 12%;

}

.rate-1 img {

    margin-top: .2em;

}

.header1-login {

    margin-left: 1.2em;

    margin-bottom: .5em;

}

.dash-item:nth-child(even) {

    background-color: rgba(211, 211, 211, 0.39);

    padding: 1em;

}

.fixed-trasfer-sec .fixed-rgt .card {

    width: 100% !important;

}

.fixed-trasfer-sec .fixed-rgt h4 {

    margin-top: 0;

}

.fixed-lft .fleet-vechicle-content {

    padding: 13px 30px 13px 30px !important;

}

.quote-section .fleet-vechicle-content {

    box-shadow: 2px 2px 2px #ccc;

    border-radius: 5px;

    border: 1px solid #ccc;

}

.quote-section .overlay {

    padding-left: 1em;

}

.confirm-sec h4 {

    margin-top: 0;

    margin-bottom: 0;

}

.confirm-sec .fleet-btn {

    float: left;

    margin-right: .5em;

}

/*--------------static page section end--------------*/

.right_review_input {
    float: left;
    width: 50%;
    padding: 10px
}

.left_review_label {
    float: left;
    width: 20%;
    color: #fff;
    padding: 10px
}

.help-block {

    display: block;

    margin-top: 0px;

    margin-bottom: 0px;

    text-align: left;

    color: #737373;

    background: none !important;

}





/*-------------- Design Changes Correction Section Start --------------*/

.tour-book-table table tbody tr .fleet-btn {

    margin: 0px !important;

}

.call-icon {

    margin-right: .3em;

}

.total-booking h4 {

    margin-bottom: 1em;

    margin-bottom: 1em;

    margin-bottom: 1em;

    background-color: rgba(0, 0, 0, 0.83);

    width: 100%;

    text-align: right !important;

    padding: 13px;

    color: white;

}

.total-booking h4 span {

    margin-left: 8px;

}

.dashboard-default .panel-body {

    min-height: 190px !important;

}

.dashboard-default .panel-footer .pagination li a {

    color: #db591e !important;

}

.dashboard-default .panel-heading p {

    margin-bottom: 0px !important;

}

.dashboard-default .panel-body ul li a {

    color: #db591e !important;

}

.latest-bookings .table>thead>tr>th {

    border-bottom: 1px solid rgba(128, 128, 128, 0.36) !important;

}

.demo1 {

    height: 145px !important;

}

.demo1,
.demo2 {

    padding-left: 20px !important;

}

.view-booking-tab {

    border: none !important;

}

.view-booking-tab #tabs-1 {

    border: 1px solid lightgrey;

}

.view-booking-tab .tab-heading {

    padding: 0px !important;

    border: none !important;

    background: white !important;

}

.ui-widget.ui-widget-content {

    border: none !important;

}

.ui-tabs .ui-tabs-panel {

    border: 1px solid lightgrey !important;

}

.ui-tabs .ui-tabs-nav {

    padding: 0px !important;

    background-color: white !important;

    border: none !important;

}

#page-rows-form {

    margin-top: 2.5em;

    margin-left: -1.3em !important;

}

.ui-state-active a,
.ui-state-active a:link {

    background-color: #db591e !important;

}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {

    color: #ffffff;

    border: #db591e !important;

    border-radius: 4px 4px 0px 0px !important;

}

.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {

    border-radius: 3px 3px 0px 0px !important;

}

.upcoming-job {

    background-color: rgba(211, 211, 211, 0.39) !important;

}

.location-section h4,
.report-section h4,
.dash-item h4 {

    font-weight: bold !important;

}

.tooltip {

    top: 9px !important;

}

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {

    display: none !important;

}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {

    background: none !important;

    border: none !important;

}

.add-point-section .form-control {

    background-color: rgb(119, 113, 113) !important;

    border: 1px solid rgb(119, 113, 113) !important;

}

.card-container .form-control {

    background-color: white !important;

    border: 1px solid lightgrey !important;

    border-radius: 0px;

}

.edit-icon {

    color: #ff6357 !important;

    font-size: 15px;

    float: right;

}

.edit-icon-span {

    margin-left: .3em !important;

}

.detail-sec h3 {

    color: white !important;

}

.margin-bottom-1em {

    margin-bottom: 1em !important;

}

.right_review_input input[type="text"],
.right_review_input input[type="password"],
.right_review_input input[type="date"],
.right_review_input select {

    padding: 9px 20px;

    border: none !important;

    border-radius: 0px !important;

    height: 50px;

}

.right_review_input textarea {

    border: none !important;

    border-radius: 0px !important;

}

.act-buttons .btn-primary,
.act-buttons .btn-danger,
.act-buttons .btn-info {

    width: 100% !important;

}

.cus-review-btn {

    margin-top: 2em;

}

/*#footer a{     text-decoration: underline;

    color: #fff;

    font-size: .9em !important;}*/



#footer p {

    font-size: 14px;

    font-weight: 400;

    padding-bottom: 0;

    text-align: left;

    text-shadow: none !important;
    color: #fff;

}



.fb_iframe_widget span {

    vertical-align: baseline !important;

    padding-left: 12px;

}

.image-section h3 {

    margin-top: 0px !important;

    text-align: center;

}

.image-section img {

    display: block !important;

    margin: 0 auto 0em !important;

}

.bg-color3 {

    background-color: rgba(218, 101, 19, 0.86) !important;

    padding: 5px 10px;

    margin-bottom: 10px !important;

}

.bg-color4 {

    background-color: #666666;

    color: white !important;

    padding: 5px 10px;

    margin-bottom: 10px !important;

    text-shadow: 1px 1px 3px #000 !important;

    font-weight: bold;



}

.isa_error {

    color: #ffffff !important;

    background-color: #db591e !important;

    width: 95% !important;

}

.isa_error a {

    color: #ffffff !important;

}

.customer-info-heading h5 {

    text-align: left;



    margin-top: 0px;

    margin-bottom: 20px;

}

.add-point-section input[type=text] {

    height: 50px;

    width: 50%;

    border-radius: 0px !important;

    float: left;

}

.driver-form input[type=text],
.driver-form input[type=email],
.driver-form input[type=password] {

    margin-bottom: 2em !important;

}

.pointer-btn {

    margin: 0em !important;

}

.pointer-btn button {

    float: left !important;

    margin-left: 3em !important;

}

.way-close-btn {

    margin-left: 1em;

    background-color: white;

    text-align: center !important;

    border-radius: 50%;

    padding: 0px 6px 1px 5px;

    color: grey !important;

    font-weight: bold;

}

.top-zero {

    margin-top: 0px !important;

}

.journey-detail {

    width: 45% !important;

    text-align: left;

}

.spl-req {

    color: white !important;

}

.spl-req h5,
.spl-req ul {

    text-align: left !important;

}

.spl-req h5 {

    font-weight: bold;

    margin-top: 0px !important;

}

.spl-req ul li p {

    margin-left: 2em;

}

.spl-req ul li:before {

    content: "";

    position: absolute !important;

    width: 8px !important;

    height: 8px !important;

    background-color: #db591e !important;

    border-radius: 50% !important;

    margin-right: 2em !important;

    margin-top: 6px;

}

.ui-datepicker-calendar td a:hover {

    color: white !important;

}

.fleet-btn a:hover {

    background: -webkit-linear-gradient(#5f5f5f, #312a2a);

    background: -o-linear-gradient(#5f5f5f, #312a2a);

    background: -moz-linear-gradient(#5f5f5f, #312a2a);

    background: linear-gradient(#5f5f5f, #312a2a);

}

.fleet-btn a {

    background: linear-gradient(#da6513, #a62909);

    background: -webkit-linear-gradient(#da6513, #a62909);

    background: -o-linear-gradient(#da6513, #a62909);

    background: -moz-linear-gradient(#da6513, #a62909);

    background: linear-gradient(#da6513, #a62909);

    color: #fff !important;

    margin: 0 auto !important;

    padding: .5em 1em !important;

    text-transform: uppercase !important;

    height: 50px !important;

    font-weight: 400 !important;

    text-align: center !important;

    width: auto !important;

    float: right;

    webkit-transition: all .3s ease-in-out !important;

    -moz-transition: all .3s ease-in-out !important;

    -ms-transition: all .3s ease-in-out !important;

    -o-transition: all .3s ease-in-out !important;

    transition: all .3s ease-in-out !important;

}

.passenger-section .section-one .select_count1,
.passenger-section .section-two .select_count1,
.passenger-section .section-two input {

    margin-bottom: 1em !important;

}

.passenger-name-section .section-one input,
.passenger-name-section .section-two input {

    margin-bottom: 1em !important;

}

.salute-section {

    margin-bottom: 1em !important;

}

.info-head img {

    margin: 20px 0 !important;

}

.info-head h3 {

    margin-top: 0px !important;

    margin-bottom: 0px !important;

}

.card2 {

    padding: 20px 25px 30px;

    margin: 0 auto 25px;

    border-radius: 10px;

    color: black !important;

    padding: 20px;

    background: linear-gradient(#d96414, #a62909);

    background: -webkit-linear-gradient(#d96414, #a62909);

    background: -o-linear-gradient(#d96414, #a62909);

    background: -moz-linear-gradient(#d96414, #a62909);

    background: linear-gradient(#d96414, #a62909);

}

.card2-head h5 {

    margin-top: 0px;

    margin-bottom: 20px !important;

    text-align: left !important;

    color: #fff;

}

.card2-head img {

    margin: 20px auto !important;

    display: block;

}

.sec-one img {

    margin-top: 0px !important;

}

.card2 table,
.card2 table tr,
.card2 table td,
.card2 table {

    border: none !important;

    color: white !important;

}

.card2 table tr:last-child {

    font-size: 20px;

}





.driver-content p {

    text-align: justify !important;

    color: rgba(0, 0, 0, 0.5);

}

.black1 a {

    padding: 3px 10px !important;

    border: 1px solid lightgrey !important;

    margin-left: .5em !important;

}

.black1 a:hover {

    color: black !important;

}

.black1 a:active {

    background: #db591e !important;

    color: white !important;

    margin-left: .5em !important;

}

.home-drop-down {

    z-index: 100000 !important;

    width: 97% !important;

}

/*.home-drop-down .show

{



    background: #444 !important;

	color:white !important;

}*/



.show span {

    color: black;

    margin-left: .5em;

}

.index-location-select {

    margin-top: -1.3em !important;

    width: 97% !important;

    z-index: 100000 !important;

}

.show img {

    margin: 4px 0px !important;

}



.usebginp {

    margin-left: 1em;

}

.header-left {

    padding: 0px !important;

}

/*-------------- Design Changes Correction Section End --------------*/



/*#result .show:hover , #result1 .show:hover

{

background-color:#bf4c18 !important;

color:#fff !important;

}*/

#result .show:nth-child(even),
#result1 .show:nth-child(even) {
    background-color: #eee;
}



#result .show:nth-child(odd),
#result1 .show:nth-child(odd) {
    background: #fbfbfb;
}



.result-drop-down1 {

    border-bottom: medium none;

    box-sizing: border-box;

    display: none;

    float: left;

    height: 284px;

    margin-top: 95px;

    overflow: auto;

    padding: 0 0 0 10px;

    position: absolute;

    width: 98%;

    z-index: 1;

}

.result-drop-down1 .show:nth-child(even) {
    background-color: #eee;
}



.result-drop-down1 .show:nth-child(odd) {
    background: #fbfbfb;
}



#gmap_canvas,
#gmap_canvas small {

    display: none !important;

}

.dashboard-default .panel-footer {

    padding: 2em 15px !important;

    display: none;

}

.forgot-password a {

    color: black !important;

    text-shadow: 1px 1px #fff !important;

}

.owl-carousel .owl-prev,
.owl-carousel .owl-next,
.owl-carousel .owl-controls {

    display: none !important;

}



#banner {

    height: 500px !important;

    margin-top: 4.5em;

}

.banner-bg-item {

    height: 500px !important;

    margin-top: 4.5em;

}

.instant-quote {

    padding: 0px;

}

.instant-heading h3 {

    font-size: 1.5em !important;

    background-color: black;

    color: white !important;

    padding: 15px;

    border-radius: 10px 10px 0px 0px;

}



.pay-img-section img {

    margin: 0px 0 20px;

}

.image-section h3 {

    font-size: 1.5em !important;

}

.rgt-img-section .inner-section img,
.rgt-img-section .terms-inner-section img {

    margin: 1em auto 1em !important;

    height: 320px;

}

.margin-zero {

    margin: 0px !important;

}

.image-section img {

    margin: 8em auto 4em !important;

}

.business-btn {

    margin-bottom: 6em !important;

}

.margin-bottom-zero {

    margin-bottom: 0px !important;

}

.credit-card {

    text-align: center !important;

    margin-bottom: 1em !important;

}

.contact-page-top {

    margin-top: 100px;

}

.contact-address h3 {

    margin-bottom: 30px;

    margin-top: 30px;

    text-align: left;

}

.contact-address p {

    margin-bottom: 0px !important;

    text-align: left;

    color: rgba(0, 0, 0, 0.5);

}

.margin-top-2em {

    margin: 20px 15px 10px !important
}

.contact-content {

    margin-bottom: 2em;

}

.contact-content h3 {

    text-align: left;

    margin-bottom: 30px;

    margin-top: 30px;

}

.chauffeur-content p {

    color: rgba(0, 0, 0, 0.5);

}

.contact-content p {

    line-height: 26px;

    text-align: justify;

    color: rgba(0, 0, 0, 0.5);

}

.card h3 {

    font-size: 1.5em !important;

    background-color: black;

    color: white;

    padding: 15px;

    border-radius: 10px 10px 0px 0px;

}

.contact-phone1 {

    width: 40% !important;

}

.contact-phone2 {

    width: 58% !important;

}

.padding {

    padding: 0px 20px;

}



.inbound-outbound {

    padding: 20px;

}

.confirm-padding,
.fixed-padding {

    padding: 20px 25px;

}

.card h3 {

    margin-top: 1px !important;

}

.feature {

    margin-bottom: 4em;

}

/*
.show:hover

{

cursor:pointer;

}
*/

.about p {

    text-align: justify !important;

}

.about-jewel h3 {

    margin: 20px 0px;

    text-align: left;

}

.contact-top {

    margin-top: 100px;

    margin-bottom: 100px;

}

/*#basics li:nth-child(odd)

{

color:red !important;

}*/



.row-margin {

    margin-bottom: 1.5em;

}

.default-form label {}

.emailAddBox {

    padding-bottom: .5em !important;

}

.pagination-section {

    display: none !important;

}

.terms-image-section img {

    margin: 5em auto 5em !important;

}

.header-fb-box {



    background-color: #4867aa !important;

    padding: 4px 10px;

    border-radius: 3px;

    color: white;

    text-shadow: 1px 1px #000;

}

.header-tweet-box {

    background-color: #1da1f2 !important;

    padding: 4px 7px;

    border-radius: 3px;

    color: white;

    text-shadow: 1px 1px #000;

}

.header-btn-box {

    background: -webkit-linear-gradient(#333, #000);

    background: -o-linear-gradient(#333, #000);

    background: -moz-linear-gradient(#333, #000);

    background: linear-gradient(#333, #000);

    padding: 4px 10px 4px 10px;

    border-radius: 3px;

    color: white;

    text-shadow: 1px 1px #000;

    width: 80px;

    display: inline-block;

    text-align: center;

}

.ul-right {

    float: right;

}

.reg-form1 {

    padding-left: 20px;

    padding-right: 20px;

    padding-bottom: 20px;

}

.reg-form {

    padding-left: 20px;

    padding-right: 20px;

}



.log-reg-btn {

    margin-top: 1.5em;

    float: right;

}

.login-register-form {

    border-radius: 10px;

    background: -webkit-linear-gradient(#fefefe, #e7e7e7);

    background: -o-linear-gradient(#fefefe, #e7e7e7);

    background: -moz-linear-gradient(#fefefe, #e7e7e7);

    background: linear-gradient(#fefefe, #e7e7e7);

    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.34);

    border: 1px solid #999;

    width: 100%;

}

.login-register-form h3,
.new-business-acnt-section h3 {

    font-size: 1.5em !important;

    background-color: black;

    color: white;

    padding: 15px;

    border-radius: 10px 10px 0px 0px;

}

.reg-inner-form {

    padding: 20px 10px 0px;

}

.reg-bottom-padding {

    margin-bottom: 1.5em;

}

.new-business-acnt-section textarea {

    height: 60px !important;

}

.login-register-form input[type=text],
.login-register-form input[type=password],
.login-register-form input [type=date],
.login-register-form input[type=email],
.login-register-form select {

    height: 44px !important;

}

.login-register-form textarea {

    height: 60px !important;

}

.reg-btn {

    margin: 0em 3em 1em 1em;

}

.reg-btn:focus .reg-btn:active {

    border: none !important;

}



.login-register-form .where-input {

    padding: 5px 0px 5px 0 !important;

}

.padding-right {

    padding-right: 0px !important;

}

.log-section {

    margin-top: 1em;

}

.log-section p {

    margin-bottom: 5px !important;

    text-align: left !important;

    font-weight: bold;



}

.content h2 {

    text-align: center;

    color: black;

    font-size: 1.5em;

    margin-bottom: 0px !important;

    margin-top: 0px !important;

}

.content p strong {

    color: black !important;

}

.content p {

    color: black;

    text-align: center;

    text-align: justify;

    font-size: 1.2em;

}

.form-margin {

    margin-top: 3em;

}

.content-container {

    position: relative;



}

.content-container div {

    display: none;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

}

.bootstrap-tagsinput span {

    width: auto;

}

.center-section {

    background-color: rgba(0, 0, 0, 0.19);

}

.review-btn-rgt {

    margin-right: 2em;

}

.business-acnt-padding {

    padding: 20px 0px;

}

.abt-banner-cnt {

    background: #fff;

    padding: 20px !important;

    box-shadow: 0px 0px 5px #000000;

}

.abt-banner-cnt h2 {

    font-size: 1.5em !important;

    color: black;

    font-family: roboto regular !important;

}

.abt-banner-cnt p {

    text-align: justify;

    margin-bottom: 1em;

    font-size: 1.1em !important;

}

.abt-banner-cnt .sec-one,
.abt-banner-cnt .sec-two {

    padding: 0 2em;

}

.abt-banner-cnt p strong {

    font-weight: bold;

    font-family: roboto regular !important;

    font-size: 1.1em !important;

}

.lft-inner-section {

    -moz-border-radius: 2px;

    -webkit-border-radius: 2px;

    border-radius: 10px;

    margin: 0 auto 25px;

    background: rgba(231, 231, 231, 0);

    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0);

    border: 1px solid #fff;

    box-shadow: 0px 0px 5px #000000;

}

.rgt-img-section {

    overflow: hidden !important;

    -moz-border-radius: 2px;

    -webkit-border-radius: 2px;

    border-radius: 10px;

    margin: 0 auto 25px;

    background: rgba(0, 0, 0, 0.8) !important;

    border: 1px solid #fff;

    /***** nx-usps_box *****/
    min-height: 404px;
    /***** End of nx-usps_box *****/

    box-shadow: 0px 0px 5px #000000;

}

.rgt-img-section h3,
.lft-inner-section h3 {

    margin-top: 1px !important;


    font-size: 1.5em !important;

    background-color: black;

    color: white;

    padding: 15px;

    border-radius: 10px 10px 0px 0px;

}

.rgt-img-section h3,
.lft-inner-section h3 {

    color: #fff !important;

    font-size: 1.5em !important;

    text-align: center;

}

.rgt-img-section .terms-inner-section {

    background: #fff;

    padding: 0.5em;

    margin: 3.5em 2em 0em;

    border: 1px solid lightgrey;

}


.terms-rgt-img-section h4 {

    margin-top: 20px !important;

    margin-bottom: 20px !important;

}

.rgt-img-section h4 {

    font-weight: bold;

    font-size: 1.4em !important;

    text-align: center;

    margin-top: 0px;

    text-shadow: 0px 0px 5px #000 !important;

    color: #fff;

}

.terms-cnt {

    padding: 16px 16px 6px;

    margin-bottom: 6px;

}

.terms-cnt:nth-child(odd) {

    background: #fff;

}

.terms-cnt:nth-child(even) {

    background: #f3f3f5;

}

.regiser-space {

    margin-bottom: 1em;

}

.cnt-txt-area {

    min-height: 61px;

    margin-bottom: 10px;

}

.index-head {

    font-size: 1.5em !important;

    color: black;

    color: #fff !important;

    padding: 10px;

    background: #000;

    border: 1px solid #fff;

}

.index-margin-bottom {

    margin-bottom: 30px !important;

}

.dropdown-menu>li>a {

    padding: 3px 20px 3px 45px;

}

.driver-content {

    background: rgba(231, 231, 231, 0.71);

    padding: 1.5em 2em;

}

.post-head {

    display: block;

    padding: 3px 20px;

    clear: both;

    font-weight: bold;

    line-height: 1.428571429 !important;

    font-size: 1.2em !important;

}

.chauffeur-content {

    background: rgba(231, 231, 231, 0.71);

    padding: 1.5em 2em;

}



.text-left {

    text-align: left !important;

    margin-bottom: 15px;

}

.phone-num-sec2 {

    width: 65% !important;

    float: right;

}

#result,
#result1 {

    border-bottom: none !important;

}

.bg-white {

    background: white;

}

.footer-img {

    display: block;

    margin: 0 auto !important;

}

.float-lft {

    float: left;

}

.float-rgt {

    float: right;

}

.lft-section {

    width: 75%;

    float: left;

}

.rgt-section {

    width: 25%;

}

.label-para {

    text-shadow: none !important;
    font-family: 'Open Sans', sans-serif !important;

    font-size: 17px !important;

    color: #fff;

    float: left;

    letter-spacing: normal !important;

    margin-bottom: 5px !important;

    font-weight: bold !important;

    text-align: left !important;

}

.margin-bottom {

    margin-bottom: .5em !important;

}

.width-100 {

    width: 100% !important;

}

.bg-white {

    background: white !important;

}

.quote-img .rgt-sec h5 {

    margin-top: 0px !important;

    text-align: left !important;

    border-bottom: 1px solid #ccc;

    padding-bottom: 3px;

    margin-bottom: 3px;

    font-size: medium;

    color: #fff;

    text-shadow: 1px 1px 3px #000 !important;

}

.quote-img .lft-sec img {

    margin: 0px !important;

    padding-top: .7em;

    background-color: rgba(255, 255, 255, 0.1);

    border-radius: 10px;

}

.quote-img {

    background: #424242;

    border: 1px solid #ccc;

    margin-bottom: 1em;

    padding: 5px 0px !important;

}

.margin-top-1em {

    margin-top: 1em !important;

}

/*----------------tool tip ----------------------*/



.tooltip {

    position: relative;

    display: inline-block;

    border-bottom: 1px dotted black;

    opacity: 1 !important;

    z-index: 1;

}



.tooltip .tooltiptext {

    visibility: hidden;

    width: auto !important;

    background-color: red !important;

    color: #fff;

    border-radius: 6px;

    padding: 10px;

    position: absolute;

    z-index: 1;

    bottom: 125%;

    left: 0%;

    right: 0%;

    opacity: 0;

    transition: opacity 1s;

}



.tooltip .tooltiptext::after {

    content: "";

    position: absolute;

    top: 100%;

    left: 50%;

    margin-left: -5px;

    border-width: 5px;

    border-style: solid;

    border-color: #e16e15 transparent transparent transparent;

}



.tooltip:hover .tooltiptext {

    visibility: visible;

    opacity: 1;

}

.margin-bottom-2em {

    margin-bottom: 2em !important;

}

.journery-detail {

    background-color: black;

    color: white !important;

    padding: 5px 10px;

    margin-bottom: 1em;

}

.journery-detail h6 {

    margin: 0px;

}

.journery-detail ul {

    padding-left: 20px !important;

    color: white !important;

}

.journery-detail ul li {

    color: white !important;

    list-style-type: disc;

}

.background-bg {

    background: #F9F9F9;

}

.background-bg1 {

    background: #F7F7F7;

}

.font-size {

    font-size: .8em;

}

.delete-icon {

    font-size: 1.2em;

    color: white !important;

}

.basket-info {

    text-shadow: none !important;
    font-family: 'Open Sans', sans-serif !important;

    font-size: 1.3em !important;

    color: #000;

    float: left;

    letter-spacing: normal !important;

    margin-bottom: 5px !important;

    font-weight: bold !important;

    text-align: left !important;

    margin-top: 0px;

}

.customer-section p {

    margin-bottom: 10px !important;

}

.dashboard-section p {

    margin-bottom: 10px !important;

}

.dashborad-detail {

    padding: 0 0 1.5em !important;

    border-bottom: 2px solid black;

}

.dashborad-detail2 {

    padding: 0 0 1.5em !important;

}

.margin-bottom-onehalf {

    margin-bottom: 1.5em !important;

}

.view-booking-section .journery-detail {

    border-radius: 5px !important;

}

.view-booking-section .journery-detail ul {

    padding-left: 0px !important;

}

.view-booking-section .journery-detail ul li {

    list-style-type: none !important;

}

.white-icon {

    color: white !important;

}

.print-icon {

    color: white !important;

    float: right;

}

.full-amnt {

    font-family: Arial;

    font-weight: bold;

}

.lft-white-bg {



    padding: 3px 10px 8px !important;

}

.border-radius h3 {

    border-radius: 0px !important;

}

.basket-section ul {

    padding-left: 20px;

}

.basket-section ul li {

    list-style-type: disc;

    color: #fff !important;

}

.basket-white-bg {

    background: #424242;

    border: 1px solid #ccc;

    padding: 3px 10px 3px !important;

}


.header1-login {
    margin-left: 0;
    margin-bottom: 0;
    display: inline;
}

.custom-list {
    margin-bottom: 2px;
}



.text-left.fared {
    background: #fff;
    margin-top: 20px;
}

.text-left.fared p {
    border-bottom: 1px solid #d9d9d9 !important;

    margin-bottom: 0 !important;

    padding: 7px 10px !important;

    background-color: #607D8B;

    color: #fff !important;

    text-shadow: none !important;

    font-size: 18px !important;

    letter-spacing: 1px !important;
}

.car-set-fares fieldset {
    background: #000 !important;
    border-radius: 8px;
}

.car-set-fares .text-left.fared p.bor-btm {
    border-bottom: 0 !important;
}

.car-set-fares .text-left.fared p.meetgret {
    font-size: 14px !important;

    padding-left: 40px !important;

    margin-top: -4px;
}

.car-set-fares .text-left.fared p.totalfar span {
    float: right;
    font-weight: bold;
    font-size: 30px;
    color: #fff;
    line-height: 26px;
}

.fares_d {
    border: 1px solid #d9d9d9;
    border-bottom: 0;
}

.text-left.fared span {
    color: #000;
    font-size: 18px;
    margin-bottom: 10px;
    display: block;
}









/*10.05*/

.container-custom {
    width: 76% !important;
}

.dashb-colr {
    padding: 17px !important;

    background-color: #e7672d !important;
}



/*3005*/

.instant-form-bg {

    padding: 1px !important;

    min-height: 398px;

    color: #fff;

    background: rgba(0, 0, 0, 0.8) !important;


    border-radius: 8px;

}



/*.rgt-img-section{background:rgba(0,0,0,0.8) !important;}*/



.rgt-img-section .inner-section {

    padding: 10px 20px;

    /*background: rgba(0,0,0,0.8) !important;*/

}



.rgt-img-section h4 {

    /*background:rgba(0,0,0,0.8) !important;*/



    padding-bottom: 10px;

    margin-bottom: 0;

    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;

}



.quote-img-custom {
    border: 0;
}

.quote-map {

    width: 100% !important;

    height: 200px;

    margin-bottom: 10px;

}

.quote-map-custom {
    height: 200px;
}

.quote-img .rgt-sec h5 {
    font-size: 14px;
}

.default-form label {
    font-size: 14px;
}

.quote-img {
    background: rgba(66, 66, 66, 1);
}

.lft-white-bg-custom {
    padding: 0 !important;
}



.default-form input[type=text],
.default-form input[type=number],
.default-form input[type=password],
.default-form input[type=date],
.default-form input[type=email],
.default-form select {
    padding: 0px 7px 0 !important;

    height: 30px !important;
}

.default-form select {
    -webkit-appearance: 0 !important;

    -moz-appearance: 0 !important;

    appearance: 0 !important;
}

fieldset {
    position: relative;
    border: 0;
    background: rgba(0, 0, 0, 0.8) !important;

    /*opacity: .8 !important;*/
}



.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline {
    text-shadow: none !important;
    color: #db591e;
    margin-top: 10px !important;
    text-align: left !important;
    width: 200px;
}



.tooltip .tooltiptext {
    background: #fff !important;
    color: #000;
}

.tooltip .tooltiptext::after {
    border-color: #000000 transparent transparent transparent;
}



.default-form input[type=text],
.default-form input[type=number],
.default-form input[type=password],
.default-form input[type=date],
.default-form input[type=email],
.default-form select {
    color: #000;
}



.car-set legend {
    margin-bottom: 0;
}

.car-set {
    position: relative;
}

.car-set p span img {
    position: absolute;
    top: 0;
    right: 0;
}



.basket-section ul li {
    margin-bottom: 5px;
}

.basket-section {
    background: rgba(0, 0, 0, 0.8) !important;
    padding-top: 14px;
}

.basketicons a {
    margin-left: 4px;
}

.basketicons a i {
    font-size: 20px;
}





/*0206*/

.new-business-acnt-section {

    border-radius: 10px;

    background: rgba(0, 0, 0, 0.8) !important;

    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.34);

    border: 1px solid #fff;

    overflow: hidden;

    width: 100%;

}

.even-row {

    background: none;

    padding: 0;

}

.banner-search-custom .where-input {
    padding: 0;
}

.form-signin #inputEmail,
.form-signin #inputPassword {
    height: 30px;
}

.card {
    background: rgba(0, 0, 0, 0.8) !important;
}

.phone-num-sec1 {

    width: 35% !important;

    left: 0 !important;

    position: absolute;

    top: 25px;

}



fieldset {
    background: none !important;
    padding: 20px 20px !important;
}

.margbotm {
    margin-bottom: 24px !important;
}

.margbotm15 {
    margin-bottom: 24px !important;
}

.margmin {
    margin-bottom: -10px !important;
}



/*0606*/

#way-point>.where-input>span>i {
    margin-top: -8px !important;
}

#result {

    width: 92% !important;
    z-index: 1 !important;

}

.result-drop-down {

    width: 40% !important;

    margin-top: -28px !important;

    z-index: 100000 !important;

}

.class_airport {
    padding: 0 10px 10px;
}



.header-nav-bg {
    background: rgba(63, 102, 150, 0.9) !important;
}

.navbar-right {
    float: left !important;
    padding-left: 405px !important;
}

.header-bg1 {
    border-radius: 3px !important;
}



.login-hdr {
    color: #fff;

    font-size: 16px !important;

    font-weight: 500;

    margin-top: 10px;

    cursor: pointer;

    background: rgba(31, 77, 134, 0.9) !important;
    border-radius: 28px !important;

    padding: 5px 30px !important;
    float: right !important;
    border: 1px solid #fff;
}

/*.hdr-menuactive{    border: 1px solid #fff;    border-radius: 28px !important;}



.hdr-menuactive:hover{border-radius: 3px !important; background: #da6513;}*/
.mo_log {
    position: inherit;
    top: 0px;
    right: 0;
}




@media (min-width: 768px) {

    .width-90 {

        width: 90% !important;

        float: none !important;

    }

}



@media (min-width: 1280px) {

    .default-form label {

        font-size: 13px !important;

    }

}





@media(min-width: 768px) and (max-width:1800px) {

    #header .header-tool-bar .container {
        width: 98%;
    }

}





.msg {

    color: red;

}

.succmsg {

    color: green;

}

.newbusiness {

    border-radius: 10px;

    background: rgba(0, 0, 0, 0.8) !important;

    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.34);

    border: 1px solid #999;

    width: 100%;

    padding: 20px;

}

.newbusiness h2 {

    margin-bottom: 15px !important;

}

.newbusiness h2,
.newbusiness p {

    color: #fff;

}

.chkbuss .where-input {
    color: #fff;
    text-align: left !important;
}

.whtcls {

    color: #fff;

}

.driver-form.pass span.submit-btn {

    display: inline !important;

}

.error-template {
    padding: 40px 15px;
    text-align: center;
}

.error-actions {
    margin-top: 15px;
    margin-bottom: 15px;
}

.error-actions .btn {
    margin-right: 10px;
}









.head-bg .line2 li:nth-child(2) span {

    color: #5bc7e9;

    font-size: 20px;
    font-weight: 600;

}

.head-bg .line2 li span {

    color: #fff;

    font-size: 20px;
    font-weight: 600;
    float: left;

}



.container .card {
    /*  background: #222c33 none repeat scroll 0 0 !important;*/
    border: medium none;
    background: rgba(34, 44, 51, 0.7) !important;
    box-shadow: inherit;
    padding: 25px 14px;
}

#preamble .pasenger_detail_two .card {

    background: rgba(34, 44, 51, 0) !important;
    width: 100%;
}

#preamble .container .card .head_class h3 {

    background-color: inherit;

    font-size: 18px !important;

    font-weight: 600;

    padding-left: 10px;

    text-align: left;
    text-transform: uppercase;

    padding-top: 0;
    font-family: inherit !important;

}



.container .rgt-img-section {

    background: rgba(34, 44, 51, 0.7) !important;

    border: medium none;

    box-shadow: inherit;

    box-sizing: border-box;

    float: right;

    padding: 20px 14px;

    width: 46%;

}



#preamble .container .rgt-img-section h3 {

    background-color: inherit;

    font-size: 18px !important;

    font-weight: 600;

    padding-left: 10px;

    text-align: left;

    padding-top: 0;
    background: none;
    text-transform: uppercase;
    font-family: inherit !important;

}

#preamble .container .rgt-img-section img {
    margin: 5px 0px 5px 5px !important;
}



.car_img {

    height: 49px;

    width: 112px;
    margin-right: 15px;

    display: table-cell;

    vertical-align: middle;

}

.car_cont>p {

    color: #fff;

    font-size: 16px;

    margin: 0;

}

.car_cont span {
    color: #5BC7E9;
}

.car_cont {

    width: 80%;

    display: table-cell;

    vertical-align: middle;

}

.car_main>li {

    float: left;

    width: 100%;

    display: table;


}

.car_main>li:nth-child(3n) {
    border-bottom: 1px solid #37434b;
}

.car_main>li:last-child {
    border: none;
}


.pull-right {

    float: right;

}


.customers ol.breadcrumb {
    background-color: rgba(255, 247, 247, 0);
}

.breadcrumb {
    margin-bottom: 0;
}

.breadcrumb li a {
    color: #e46329;

    font-size: 18px;
}

.breadcrumb li {
    color: #e46329;

    font-size: 18px;
}

.breadcrumb>.active {
    color: #000000;

    font-weight: bold;

    font-size: 18px;
}

select option {

    color: #000;

}

a,
a:focus {

    outline: none;

}

.rights,
.address {

    font-size: 12px;

}

.abt-banner-cnt p {

    color: #000;

}

.abs i {

    color: #cf5811;

}

.modal-dialog {

    margin: 276px auto;
}

#quoteModal .modal-dialog {
    margin: 26px auto;
    max-width: 770px;
}

.table_nr tr,
.table_nr tr {
    padding: .75rem;
    vertical-align: top;
    border-bottom: 1px solid #dee2e6 !important;
    border-top: none !important;
}

.table_nr tr:last-child,
.table_nr tr:last-child {
    padding: .75rem;
    vertical-align: top;
    border-bottom: none !important;
    border-top: none !important;
}

.table td,
.table th {
    padding: .75rem;
    vertical-align: top;
    border-top: none;
}

.new_mail em {
    color: #ff0000;
}

.contact_us .form-group>label em {
    color: #ff0000;
}

.result-drop-down2 {

    border-bottom: medium none;

    position: absolute;

    top: 55px;

    width: 100%;

    z-index: 1;

}

.forgot-password {

    color: #fff;

}

.txt_left {

    text-align: left;

}

.box2 h5 {



    color: #ed6927;

    font-size: 14px;

    margin: 9px 0 0;

}

.quote-img {

    padding: 0 10px !important;

}

.quote-img-custom {

    background: rgba(255, 255, 255, 0.1) !important;

    border-radius: 5px;

}

.abt-banner-cnt p strong {

    color: #000;

}

.main-icons {

    font-size: 20px;

}

.quote-img .rgt-sec h5 {

    padding-top: 10px;

}

.box-chg {

    width: 840px;

    z-index: 900;



}

.basketicons {

    display: block;

    float: right;

    margin: 0 5px 5px;

    width: 100%;

}



.profile {
    margin-top: 10px;
}



.profile li a,
.login-details li a {

    color: #000;
    font-weight: 600;

    padding: 5px 0;



}

textarea {
    color: #000 !important;
}



.result-drop-down2 .show:nth-child(2n) {

    background: #eee !important;

}

.profile li a {

    font-size: 19px;

}

.profile li .ul-wrap li {

    padding: 2px 0;

}

.profile li .ul-wrap a {

    font-size: 14px !important;



}



.post-head {

    padding: 0;

    color: #999 !important;

}



.dash_box {

    margin-top: 20px;



}

.dash_height {

    max-height: 300px;

    overflow: scroll;

}

ul {

    margin: 0;

    padding: 0;

    list-style: none;

}



p.sedan {

    color: #fff;

    margin: 0;

    line-height: 15px;

}

.question-section {

    text-align: left;

}

.cd-faq-content strong {

    color: #000;

}

.cd-faq-content p {

    color: #000;

}

.cd-faq-items .parent {

    background: #fff;
    border-radius: 2px;

}

.cd-faq-trigger {

    padding: 24px 72px 0 24px;

}

.terms-cnt {

    text-align: left;

}

.profile>li {

    display: inline-block;

    padding: 0 5px;

    /*font-family: roboto;*/

    margin-top: 5px;

}



.profile li:last-child {

    padding-right: 0;

}



/*	.head-bg{

		background-color:rgba(255, 255, 255, 0.64);

		min-height: 180px;

		border-bottom: 1px solid #dae5cf;

	}*/

.head-bg .text {

    color: #fff !important;

    font-size: 18px !important;

    font-weight: 700 !important;

    margin-bottom: 13px;

    margin-top: 10px;

    text-transform: uppercase;

}



.header-phn li a {

    text-decoration: none;

}



.logo {

    margin: 0;

}



.login-details li {

    display: inline-block;

    font-family: roboto;

}


.profile.pull-right .ul-wrap {

    background: #fff none repeat scroll 0 0;

    border-radius: 0 0 10px 10px;

    position: absolute;

    z-index: 2;

    top: 25px;

    width: 208px;

    height: 600px;

    overflow-y: scroll;
    padding: 0 0;

    display: none;

}

.profile.pull-right .ul-wrap ul {


    padding: 5px 0;

    display: inline-block;

    width: 100%;

}

.profile.pull-right .ul-wrap a {

    color: #000;
    padding: 2px 0;
    border-bottom:
        #eee 1px solid;

}

.profile.pull-right li ul li {

    display: inline-block;

    width: 100%;

    padding: 0px 10px;

}

.profile.pull-right li ul li a {

    width: 100%;

}

.profile.pull-right li ul li:hover {

    background: #eee;

    transition: all 0.2s ease-in-out;

}

.profile>li:hover .ul-wrap {

    display: block;

}

.ul-wrap:hover {

    display: block;



}

footer {
    text-align: center;
    margin-top: 50px;
    padding: 20px 0;

    display: inline-block;

    width: 100%;

}



.menu li {

    display: inline-block;

    font-family: roboto;

    margin: 0 15px;

}



.menu li a:hover {

    text-decoration: none;

    color: #fff;

}

.rgt-img-section {

    display: inline-block !important;

}



.title {

    text-align: center;

    margin: 0;

}



.text {

    color: #fff;

    font-size: 1.3em;

    font-weight: bold;

    margin-bottom: 0px;

    text-align: right;

}



.color {

    color: white;

}



.row footer1 {

    text-align: center;

}



.row footer2 {

    text-align: center;

}

.profile .caret {

    left: 2px;

    position: relative;

    top: -1px;

}



.social-icons i {

    border: 2px solid #5bc7e9;

    border-radius: 50%;

    color: #5bc7e9;

    height: 40px;

    margin: 0 5px;

    padding: 5px 0;

    width: 40px;

}



.copyright {

    margin-left: 44%;

}



.address {

    color: #fff;

}



.social-icons {

    margin-bottom: 10px;

}



.rights {

    color: #ccc;

}



.column2 {

    margin: 5px 0;

    margin-top: 10px;

}



.header-phn {

    margin: 0;

    padding: 0;

}



.header-phn li {

    display: inherit;
    float: left;
    line-height: 1;

    font-size: 22px;

    /*	font-family: roboto;*/

}



.header-phn span {

    color: #000;
    font-weight: bold;

    font-size: 23px;

}



.header-phn>span:first-child {

    margin: 0 5px 0 0;

}



.header-phn li:first-child span {

    margin: 0 7px 0 0;

}

.menu a {

    color: #ed6927;

    font-size: 15px;

}



.header-phn span span {

    margin: 0 7px;

    color: #000;

    font-size: 21px;

}



.column2 .row {

    margin: 5px 0;

}



.login-details {

    margin: 0;

    padding: 0;

}



.login-details span {

    color: #fff;

    font-size: 18px;

    font-weight: 600;

    margin-right: 3px;

    text-transform: uppercase;

}



.login-details>li:nth-child(2) {

    /*margin: 0 13px 0 10px;*/

}



.login-details a {

    text-decoration: none;

    font-size: 13px;

}



.login-details a:hover {

    color: #ed6927;

}



.profile li a:hover {

    color: #cf5811;

    transition: color 0.1s ease-in;

    text-decoration: none;

    font-weight: 600;

}

.profile li a.active {
    color: #cf5811;
    font-weight: 600;
}



.column2 .row .col-lg-12 {

    padding-right: 0;

}



.box2 .col-lg-9 {

    padding-left: 0;

}



.box2 .box21:first-child {

    margin-top: 0;

}



.box2 .box21:last-child {

    margin-bottom: 0;

}







.text_area .col-lg-12 {

    padding: 0;

}



.partner {

    margin: 15px 0;

}



.text_content {

    background: #fff none repeat scroll 0 0;

    display: block;

    float: left;

    width: 100%;

}



.input_wrapper {

    background: #384248;

    display: block;

    float: left;

    padding: 10px;

    border-radius: 0 0 5px 5px;

    width: 100%;

    margin-bottom: 10px;

}

.input_wrapper p {

    color: #fff !important;

    text-align: left;

}

.where-input {

    display: block;

    float: left;

    width: 100%;

    position: relative;

}

.main_input input[type="text"] {

    margin-bottom: 0.5em !important;

}

/*.search_keyword{

    margin-bottom: 0.5em !important;

}*/
.where-input>span {
    left: 134px;
    position: absolute;
    top: 15px;
    z-index: 99;

}

#way-point .main_input p {
    display: none;
}

/*.logo_col{

	margin-left: -15px;

    padding: 0;

}*/

/*.logo img{

		width: 100%;

}*/

.instant-form-bg fieldset {

    opacity: 1;

}

.payment_detail {

    background: #000 none repeat scroll 0 0;

    display: block;

    float: left;

    width: 100%;

    margin-bottom: 14px;

    padding: 10px 5px;

    border: 1px solid #fff;

    border-radius: 6px;

}

.payment_detail>div {

    margin: 15px 0;

}

.font_new {

    color: #fff !important;

    font-size: 20px !important;

}

.font_new_left {

    color: #fff !important;

    font-size: 20px !important;

    float: left;

}

.lft-inner-section {

    min-height: 455px;

    background: rgba(0, 0, 0, 0.8) none repeat scroll 0 0;

}

.basket_empty {

    font-size: 20px;

    color: #fff;

}

.pull-btn {

    padding-left: 100px;

}

.pull-btn>.submit-btn {

    padding: 0 10px;

}

.basket-white-bg {

    background: #4a4a4a;

    padding: 15px;

    display: inline-block;

    border-radius: 6px;

}

.basket-white-bg ul {

    list-style: none !important;

    display: inline-block !important;

}



.basket-section {

    padding: 0px;

    padding: 5px 10px;

}

.basket-section {

    background: none !important;

}

.basket-section ul li {

    padding-bottom: 3px;

}

.basket-section ul li b {

    margin: 0 5px;



}

.head_text {

    text-align: left;

    display: block;

    float: left;

    width: 100%;

    color: #fff;

    padding: 10px 0;

    font-size: 17px;

    margin: 0 0 0 20px;

}

.preamble p {

    /*color: #fff !important;*/

}

.custom-list {

    display: block;

    float: left;

    width: 100%;

    background: #297cb5;
    color: #fff;

    text-align: left;

    padding: 10px 0;

}

.custom-list li {

    /*padding: 0 22px;*/

    display: inline-block !important;

    width: auto !important;

    background: none !important;

    border: none !important;

}

.dashboard .custom-list>li a {

    cursor: pointer;

    padding: 7px 15px;

    color: #fff;

}

.dashboard .custom-list>li.active a {

    color: #fff !important;

    background: #4c4c4c;

}

.col-md-12.right-section>a {

    background: #101010 none repeat scroll 0 0;

    color: #fff;

    font-weight: bold;

    padding: 10px 15px;

    position: absolute;

    right: 31px;

    top: 24px;

    z-index: 1;

    transition: all 0.3s ease-in-out 0.5s;

}

.bdt td,
.bdt th span {

    color: #000 !important;

}

.panel-body a {

    color: #999 !important;

}

.modal-body p,
.modal-body p b {

    color: #000;

}

.table tbody td {

    font-weight: normal;

}

.cd-faq-items {

    background: #fff;

}

.modal-content i {

    color: #000;

}

.header-phn span span.glyphicon-earphone {

    transform: rotate(250deg);

    -ms-transform: rotate(250deg);
    /* IE 9 */

    -webkit-transform: rotate(250deg);
    /* Chrome, Safari, Opera */

    margin-left: -3px;

}

.custom-list .comment {
    padding-left: 0;
}

.single-post .post-addcomment input,
.single-post .post-addcomment textarea {
    border: 1px solid #aaa;

    padding: 3px 5px 0;
    background: rgb(245, 245, 245);
}

.btn.dark {
    height: auto;
}

.post .post-header {
    padding: 0;
}

ul.cate-list li a {
    color: #000;
}

ul.cate-list li a:hover,
ul.cate-list li a.active {
    color: #cf5811;
    font-weight: 600;
}

.widget .search-form button {
    padding: 6px 20px;
}

.custom-list.social li a {
    font-size: 20px;
    cursor: pointer;
}



/*23082017*/

.help-block {
    margin-top: 0 !important;
}

.custom-list.fleet-list {
    background: none;
}

.driver-form span.submit-btn {
    margin-bottom: 10px;

    display: block;
}

.help-block.form-error.help-block-cust {
    left: 0 !important;

    top: 56px !important;
    width: auto !important;
}

span.vouch {
    color: #fff;
}

.login-details sup {
    top: -10px;

    left: -5px;

    color: red;

    /* border: 1px solid #26639f;*/

    border-radius: 10px;

    padding: 2px;
}

.news .sidebar {
    background: #fff;

    padding: 20px;

    padding-bottom: 60px;
    border-radius: 10px;
}

.news .post-content {
    background: #fff;
    padding-top: 20px;
    border-radius: 10px;
}

.widget .search-form input {
    background: rgb(245, 245, 245);
}



/*24082017*/

.dashboard .custom-list {
    background: #000;
}

.dashboard .col-md-12.right-section>a {
    color: #000;
    font-size: 16px;
    background: none;
}

.dashboard .col-md-12.right-section>a:hover {
    color: #cf5811;
}

.login-page .log-section p {
    color: #fff;
}



.login-page .card-login {
    width: 47.8% !important;
}

.no-padding .col-xs-12:first-child .help-inline {

    bottom: -10px;

}

.no-padding .col-xs-12:first-child {

    padding-bottom: 10px;

}

.help-inline {

    font-size: 12px !important;
    color: red !important;
    /*position: absolute;*/
    font-weight: normal !important;
}

.no-padding .col-xs-12:nth-child(2) label.help-inline {

    bottom: -11px;

}

.forgotpass .help-inline {

    bottom: inherit !important;

    color: red;

    position: absolute;

    width: 100%;

}

.g-recaptcha {

    float: left;

    margin-top: 10px !important;

    width: 100%;

}

.login_page .help-inline {

    bottom: inherit !important;

    color: red;

    position: absolute;

    width: 100%;

}

.login_page button.btn {

    margin-top: 10px;

}

.adresss {

    float: left;

    width: 100%;

}

.adresss>ul {

    list-style: outside none none;

    margin: 0;

    padding: 0;

}

.adresss li {

    float: left;
    width: 48%;
    margin: 0 9px;

}

.adresss h4 {

    color: #fff;
    text-align: left;

}

.adresss p {

    color: #fff;

}



.arrowtop {
    background: url("./images/aro1.png") right center no-repeat;
}



.faq .card {

    background: rgba(34, 44, 51, 0.7) none repeat scroll 0 0 !important;

    border: medium none;

    box-shadow: inherit;

    padding: 25px 14px;

    width: 51.8%;

}

.faq .card .head_class h3 {

    background-color: inherit;

    font-size: 18px !important;


    padding-left: 10px;

    text-align: left;
    padding-top: 0px;
    text-transform: uppercase;
    font-weight: 600;

}

.faq .rgt-img-section {

    background: rgba(34, 44, 51, 0.7) none repeat scroll 0 0 !important;

    border: medium none;

    border-radius: 8px;

    box-shadow: inherit;

    flex: 1 1 56%;

    float: right;

    max-width: 46% !important;

    padding: 25px 14px;

}

.faq .rgt-img-section h3 {

    background-color: inherit;

    color: #fff;

    font-size: 18px !important;

    margin: 10px 0;

    padding-left: 10px;

    text-align: left;
    padding-top: 0px;
    text-transform: uppercase;
    background: none;
    font-weight: 600;
    margin-bottom: 0px;

}



.term_page .card {

    background: rgba(34, 44, 51, 0.7) none repeat scroll 0 0 !important;

    border: medium none;

    box-shadow: inherit;

    padding: 25px 14px;

    width: 51.8%;

}

.term_page .card .head_class h3 {
    background-color: inherit;
    font-size: 18px !important;
    padding-left: 10px;
    text-align: left;
    padding-top: 0px;
    text-transform: uppercase;
    font-family: inherit !important;
    font-weight: 600;
}





.term_page .rgt-img-section {

    background: rgba(34, 44, 51, 0.7) none repeat scroll 0 0 !important;

    border: medium none;

    border-radius: 8px;

    box-shadow: inherit;

    flex: 1 1 56%;

    float: right;

    max-width: 46% !important;

    /***** nx-usps_box *****/
    padding: 15px 14px;
    /***** End of nx-usps_box *****/

}

.term_page .rgt-img-section h3 {

    background-color: inherit;

    color: #fff;

    font-size: 18px !important;

    margin: 0;

    padding-left: 10px;

    text-align: left;
    padding-top: 0px;
    background: none;
    text-transform: uppercase;
    font-weight: 600;

}

.term_page .car_img {
    background: none;
}

.faq .car_img {
    background: none;
}



/*media queries*/



@media(max-width: 1199px) {

    .custom-list {
        float: none !important;
    }

    .ui-tabs {
        margin-top: 50px;
    }

    .no-padding .col-xs-12:first-child .help-inline {

        bottom: 41px;

    }

    .pasenger_detail_two .custom-list {
        float: left !important;
    }

}



@media only screen and (max-width: 768px) {

    .single-edit {
        margin-top: 26px !important;
    }

    select {
        background: #d0d0d0;
    }

    .col-xs-12 {
        text-align: left !important;
        padding: 5px !important;

        box-sizing: border-box;
    }

    .driver-form h4 {
        margin-left: 15px;
    }



    /*.logo img{width:30%;}*/

    .login-page .card-login {
        width: 99% !important;
    }

    .logo>img {

        width: 150px;

    }

    .logo_col {
        padding-bottom: 0;
    }

    .logo {

        text-align: center;
        width: 10%;
        margin: 0 auto;

    }

    .logo_col.pull-left {
        float: none !important;
    }

    .header-phn {

        float: none;

        text-align: center;

        width: 100%;

    }

    .text {

        text-align: center;

        width: 100%;

    }

    .profile {

        text-align: center;

        width: 100%;

    }

    .abs {

        /*position: absolute;

		right: 0;

		top: -86px;*/

        text-align: center;

    }

    .login-details {
        float: none !important;
    }

    .box1 {

        margin-bottom: 10px;

    }

    .bgi {

        padding: 25px 0;

    }

    .box21 {

        width: 100%;

        display: inline-block;

    }

    .para {

        padding: 25px 30px;

    }

    .menu li {

        margin: 0 15px 10px;

    }



    .column2 .row {

        margin: 5px;

    }

    .card-container.card {
        width: 100% !important;
    }

    .mt-10 {
        margin-top: 10px;
    }

    .btn.light {
        margin-top: 5px;
    }



}



@media only screen and (min-width: 769px) and (max-width: 992px) {

    .logo img {
        width: 30%;
    }

    .logo>img {

        width: 150px;

    }

    .logo {

        text-align: center;
        width: 33%;
        margin: 0 auto;

    }

    /*.page-content{overflow-x: scroll;}*/

    .header-phn {

        float: none;

        text-align: center;

        width: 100%;

    }

    .text {

        text-align: center;

        width: 100%;

    }

    .profile {

        text-align: center;

        width: 100%;

    }

    .abs {

        /*position: absolute;

		right: 0;

		top: -86px;*/

        text-align: center;

    }

    .login-details {
        float: none !important;
    }

    .box1 {

        margin-bottom: 10px;

    }

    .bgi {

        padding: 25px 0;

    }

    .box21 {

        width: 100%;

        display: inline-block;

    }

    .para {

        padding: 25px 30px;

    }

    .menu li {

        margin: 0 15px 10px;

    }

    .card-container.card {
        width: 100% !important;
    }

}



@media (min-width: 993px) and (max-width: 1280px) {

    .logo img {

        width: 80%;
        margin-top: 16px;

    }

}



@media only screen and (min-width: 993px) and (max-width: 1200px) {

    .logo>img {

        width: 150px;

    }



    .box1 {

        margin-bottom: 10px;

    }

    .box21 {

        display: block;

        float: left;

        margin: 2px 0;

        padding: 0;

        width: 100%;

    }

}



@media only screen and (max-width: 585px) {

    .logo {
        width: 10%;
    }

    .login-details {

        margin: 0 10px !important;

    }



    .text {

        font-size: 13px;

    }



    .header-phn {

        font-size: 14px;

    }

    .profile {

        font-size: 12px;

    }



    .line2 {

        font-size: 12px;

    }



    .col-xs-12 {

        text-align: center;

        width: 100%;

    }



    .sm-car {

        display: none;

    }

    .box2 h5 {

        color: #ed6927;

        font-size: 13px;

        margin: 0;

    }

    p.sedan {

        margin: 0px;

    }





    .header-phn span {



        font-size: 20px;

    }



    .box21 .col-lg-10 {

        padding-left: 0;

    }

    .box2 .col-lg-10.col-md-10.col-xs-10 {

        width: 100%;

    }

    .box21 .col-lg-10 {

        padding: 12px 38px 5px;

    }



}







@media only screen and (min-width: 414px) and (max-width: 736px) {

    .numcls {
        margin-top: 24px;
    }

    .phone-num-sec2.numcls.numclsdsk {
        margin-top: 5px !important;
    }

    .emrg {
        margin-top: 0 !important;
    }

    .numph {
        top: 21px !important;
    }

    .search_keyword1.numcls {
        margin-top: 0;
    }

    .submit-btn input {
        margin-bottom: 20px;
    }

    .form-group textarea {
        width: 100% !important;
    }

    .basket-white-bg {
        text-align: left !important;
    }

    .row {
        margin-left: 0;
        margin-right: 0;
    }

    .passgr {
        padding: 0 !important;
    }

    .passgr .col-xs-12 {
        padding: 3px !important;
    }

    .driver-form input[type=text],
    .driver-form input[type=email],
    .driver-form input[type=password] {
        margin-bottom: 10px !important;
    }

    .single-edit {
        margin-top: 26px !important;
    }

    .single-edit.edtin {
        margin-top: 36px !important;
    }





}



@media only screen and (min-width: 414px) and (max-width: 736px) {

    .phone-num-sec2.numcls.numclsdsk {
        margin-top: 0px !important;
    }

    .row {
        margin-left: 0;
        margin-right: 0;
    }

    .single-edit {
        margin-top: 26px !important;
    }

    .single-edit.edtin {
        margin-top: 36px !important;
    }

}



@media only screen and (min-width: 375px) and (max-width: 812px) {

    .numph {
        top: 21px !important;
    }

    .mobn {
        top: 25px !important;
    }

    .emrgc {
        top: 25px !important;
    }

    .submit-btn input {
        margin-bottom: 20px;
    }

    .row {
        margin-left: 0;
        margin-right: 0;
    }

    .single-edit {
        margin-top: 0px !important;
    }

    .single-edit.edtin {
        margin-top: 36px !important;
    }

    .outbond_two .single-edit {
        margin-top: 0px !important;
    }
}



.numclsdsk {
    margin-top: 1px !important;
}



.navbar-header {

    display: none;

}







.nav_new li a {

    color: #fff;

    font-size: 17px;

    font-weight: 600;

    padding-right: 14px;

    text-transform: uppercase;
    display: block;

}



.partner {
    display: none;
}

.footer1 .menu a {

    color: #fff;

    font-size: 14px;

    font-weight: 400;
    font-family: 'Open Sans', sans-serif !important;

}



.login-details li a {

    color: #fff;

    font-size: 18px;

    font-weight: 700;

    padding: 5px;

    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif !important;

}

.login-details li {

    color: #fff;

    font-size: 19px;

}

.login-details span {

    color: #5bc7e9;

    display: inline-block;

    padding-left: 10px;

}

.footer1 {
    background: rgba(34, 44, 51, 0.7) none repeat scroll 0 0;
    border-radius: 4px 4px 0 0;
    display: inherit;
    flex-wrap: inherit;
    float: left;
    margin: 0;
    padding: 10px 0 0 10px;
    width: 100%;
}

.social-icons {

    float: right;

    margin-bottom: 10px;

}

.footer2 {
    background: rgba(34, 44, 51, 0.7) none repeat scroll 0 0;
    border-radius: 0 0 4px 4px;
    display: inline;
    flex-wrap: inherit;
    float: left;
    margin: 0;
    padding: 0 10px 10px;
    width: 100%;
}

.footer1 .menu {

    float: left;

}

.container {

    max-width: 1242px !important;

}

.social-icons>p {

    color: #fff;

    float: left;

    font-size: 14px;

    margin-right: 10px;

}

/*-----------------------style2 css-----------------------*/







.login_main {

    background: rgba(34, 44, 51, 0.7) none repeat scroll 0 0;

    box-sizing: border-box;

    display: inherit;

    flex-wrap: inherit;

    float: left;

    padding: 0 15px;

    width: 100%;
    margin: 0;
    border-radius: 4px;

}



.login_main h3 {

    background-color: none;

    color: #fff;

    font-size: 25px !important;

    font-weight: 600;

    padding-left: 0;

    text-align: center;
    padding-bottom: 10px;
    margin-top: 15px;

}



.login_main label {

    color: #fff;

    font-size: 14px;

    font-weight: 400 !important;

    text-shadow: inherit !important;

}



.login_main .forgot-password {
    margin-top: 5%;
    padding-bottom: 15px;
}

.login_main .btn {

    -moz-user-select: none;

    cursor: default;

    font-weight: 700;



    line-height: 1;

    padding: 0 15px;

}

.login_main .forgot-pass span {

    display: block;

    padding-bottom: 23px;

}

.login_main .forgot-pass>p {

    padding-top: 11px;

}





.forgot-password a {

    color: #fff !important;

    text-shadow: inherit !important;

}



.login_main .fleet-btn {

    float: left;

}



.login_main select {

    background-clip: padding-box;

    background-color: #fff;

    border: 1px solid #ced4da;

    border-radius: 0.25rem;

    color: #495057;

    display: block;

    font-size: 1rem;

    height: calc(2.25rem + 2px);

    line-height: 1.5;

    padding: 0.375rem 0.75rem;

    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;

    width: 100%;

}

.login_main .btn.light {

    float: left !important;


    margin-bottom: 15px !important;

}



.errorbox {

    text-align: center;

}

.errorbox>h2 {

    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;

    border-radius: 50%;

    color: #fff;

    font-size: 90px;

    font-weight: bold;

    height: auto;

    margin: 0 auto;

    padding: 0;

    text-align: center;

    width: auto;

}



.errortxt {

    background: none;

    color: #fff;

    font-size: 24px;

    margin: 20px 0;

    padding: 20px;

    text-align: center;

}

.errortxt p {

    color: #666666;

    font-size: 14px;

}

.errorlnk {

    text-align: center;

}

.errorlnk>a {

    background: #5bc7e9 none repeat scroll 0 0;

    color: #ffffff;

    display: inline-block;

    font-size: 18px;

    padding: 15px 35px;

}

.errorlnk>a:hover {
    background: #000;
}

.error404 .container_nav {

    padding-top: 50px;

    position: inherit;

}

.pageerror {

    float: left;

    min-height: 600px;

    padding-top: 10%;

    width: 100%;
    background: #222c33 none repeat scroll 0 0;

}



.errortxt>h2 {

    font-size: 30px;

}



.login_main .btn-primary {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e2e42+0,111b28+100 */

    background: #1e2e42;
    /* Old browsers */

    background: -moz-linear-gradient(top, #1e2e42 0%, #111b28 100%);
    /* FF3.6-15 */

    background: -webkit-linear-gradient(top, #1e2e42 0%, #111b28 100%);
    /* Chrome10-25,Safari5.1-6 */

    background: linear-gradient(to bottom, #1e2e42 0%, #111b28 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1e2e42', endColorstr='#111b28', GradientType=0);
    /* IE6-9 */
    border: none;
    border-radius: 4px;
}

.forgot-pass a {
    color: #5bc7e9;
}

.login_main .no-padding a {
    color: #5bc7e9;
}

.login_main .no-padding>div {

    padding-left: 0;

}

.img_text {

    float: left;

}

.img_col {

    float: left;

    padding: 10px;

}

.login_main .forgot-pass {

    float: left;

    width: 100%;

}

.tab-content .help-block {
    word-break: break-all;
}

.messages .alert h4 {

    margin: 0;

    padding: 10px;

    text-align: justify;



    padding: 8px 7px;



    background-repeat: repeat;

    background-position: center;

    background-size: 50px;

    border-radius: 10px;

    font-size: 12px !important;

}





.airport_main {

    background: rgba(34, 44, 51, 0.7);

    border-radius: 6px;

    float: left;

    margin: 0;

    padding-bottom: 18px;

    width: 100%;

}

.airport_main h2 {

    color: #fff !important;

    font-size: 21px;

    padding-bottom: 15px;

}

.airpot p {

    background: #fff none repeat scroll 0 0;

    padding: 20px;
    color: #333 !important;
    text-align: left;

}

.airport_main .content {
    max-height: 500px;
    overflow-y: auto;
    color: #333 !important;
    text-align: left;
}

.airport_main .book_online {

    background: #fff none repeat scroll 0 0;

    margin-bottom: 0;
    padding: 10px 10px 0;

    text-align: left;

}

.book_online span {

    font-weight: bold;

}

#basics {

    padding: 10px;

}

#basics li {

    padding: 11px;

}

#basics .cd-faq-content {

    padding-left: 0;

}

.cd-faq-items .paging-ul li {

    border: 1px solid #000;

    float: left;

    padding: 3px 15px;
    margin-right: 5px;

}

.cd-faq-items .paging-ul {

    float: left;

    margin-bottom: 15px;

    margin-left: 11px;

}

.login_main h3 {

    border: medium none;
    background: none;

}

.sticky_padding .messages .alert-danger {
    float: left;
    margin: 0 auto 10px;
    padding: 0;
    width: 23%;
    position: absolute;
    left: 12px;
    top: inherit;
    z-index: 999;
    bottom: -22px;
}

.messages .alert-danger {
    float: left;
    margin: 0 auto 10px;
    padding: 0;
    width: 23%;
    position: absolute;
    left: 12px;
    top: inherit;
    z-index: 999;
    bottom: -22px;
}

.alert-danger .close {

    padding-right: 10px;

    padding-top: 4px;

}

.login_main .help-inline {

    bottom: -26px;

    position: absolute;

    width: 100%;
    color: red;

}

.forgot-password a {

    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e2e42+0,111b28+100 */

    background: #1e2e42;
    /* Old browsers */

    background: -moz-linear-gradient(top, #1e2e42 0%, #111b28 100%);
    /* FF3.6-15 */

    background: -webkit-linear-gradient(top, #1e2e42 0%, #111b28 100%);
    /* Chrome10-25,Safari5.1-6 */

    background: linear-gradient(to bottom, #1e2e42 0%, #111b28 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1e2e42', endColorstr='#111b28', GradientType=0);
    /* IE6-9 */

    padding: 10px;
    border-radius: 4px;

}

.forgot-pass span a {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e2e42+0,111b28+100 */

    background: #1e2e42;
    /* Old browsers */

    background: -moz-linear-gradient(top, #1e2e42 0%, #111b28 100%);
    /* FF3.6-15 */

    background: -webkit-linear-gradient(top, #1e2e42 0%, #111b28 100%);
    /* Chrome10-25,Safari5.1-6 */

    background: linear-gradient(to bottom, #1e2e42 0%, #111b28 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1e2e42', endColorstr='#111b28', GradientType=0);
    /* IE6-9 */

    padding: 10px;
    border-radius: 4px;
}

.form-group .field_required:after {

    color: #d00;

    position: absolute;

    margin-left: 2px;

    font-family: 'FontAwesome';

    font-weight: normal;

    font-size: 10px;

    content: "\f069";

}

.field_required_1:after {

    color: #d00;

    position: absolute;

    margin-left: 2px;

    font-family: 'FontAwesome';

    font-weight: normal;

    font-size: 10px;

    content: "\f069";

}

.alert-danger {

    color: #fff;

    background-color: #B93B26;

    border-color: none;

}

.messages .alert {

    background-image: url(./images/alert-bg.svg);

}



.contact_us .card {

    background: rgba(34, 44, 51, 0.7) none repeat scroll 0 0 !important;

    border: medium none;

    box-shadow: inherit;

    padding: 25px 14px;
    width: 100%;

}



.contact_us .img_text {

    background: rgba(34, 44, 51, 0.7) none repeat scroll 0 0 !important;

    border: medium none;

    border-radius: 8px;

    box-shadow: inherit;

    flex: 1 1 56%;

    float: right;

    max-width: 57% !important;

    padding: 25px;

}

.contact_us .card .head_class h3 {

    background-color: inherit;

    font-size: 18px !important;

    padding-left: 10px;

    text-align: left;
    padding-top: 0px;
    text-transform: uppercase;
    font-weight: 600;

}

.contact_us .img_text h3 {

    background-color: inherit;

    font-size: 18px !important;

    font-weight: 600;

    padding-left: 10px;

    text-align: left;
    color: #fff;
    margin: 10px 0;

}

.img_text label {

    color: #fff;

    font-size: 14px;

    text-shadow: inherit !important;

}

.dashboard #sidebar-wrapper {

    margin-left: 0;

    position: inherit;

}

.dashboard #page-content-wrapper {

    background: rgba(34, 44, 51, 0.7) none repeat scroll 0 0;

    float: right;

    min-height: 470px;

    width: 78%;
    border-radius: 4px;

}

.dashboard #wrapper {

    padding-left: 0;

}

.dashboard #sidebar-wrapper {

    float: left;

    width: 250px;
    background: rgba(34, 44, 51, 0.7) none repeat scroll 0 0;
    border-radius: 4px;

}

.dashboard .nav-tabs a.active {
    background: #fff !important;
}

.dashboard .nav-tabs a.show {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
}

.dashboard .sidebar-nav {

    float: left;

    list-style: outside none none;

    margin: 0;

    padding: 0;

    position: inherit;

    top: 0;

    width: 250px;

}

.dashboard nav a {

    color: #fff;

}

.dashboard .sidebar-nav li a {

    color: #fff;

    display: block;

    text-decoration: none;

}

.dashboard #page-content-wrapper h1 {

    color: #fff;

    font-size: 21px;

    margin-top: 0;

}

.dashboard #page-content-wrapper p {

    color: #fff;

}

.dashboard #page-content-wrapper td p {

    color: #000 !important;

}

.dashboard #page-content-wrapper a.btn {

    background: #5bc7e9;

    color: #fff;

    line-height: 1;

    padding: 10px;

}

.dashboard form.validate .dash_box {

    margin: 0;

}

.dashboard form.validate .dash_box label {

    color: #fff;

    font-size: 14px;

    text-shadow: inherit !important;

}

.dashboard .regis_formbox form.validate label {

    color: #fff;

    font-size: 14px;

    text-shadow: inherit !important;
    display: block;
    margin: 10px 0;

}

.regis_cont_l .create_acc_cont button {

    line-height: 1;

    margin-top: 15px;

    padding: 10px 15px;

    width: auto;

}



#wrapper {

    padding-left: 0;

    -webkit-transition: all 0.5s ease;

    -moz-transition: all 0.5s ease;

    -o-transition: all 0.5s ease;

    transition: all 0.5s ease;

}



#wrapper.toggled {

    padding-left: 250px;

}



#sidebar-wrapper {

    z-index: 1000;

    position: fixed;

    left: 250px;

    width: 0;

    height: 100%;

    margin-left: -250px;

    overflow-y: auto;

    background: #000;

    -webkit-transition: all 0.5s ease;

    -moz-transition: all 0.5s ease;

    -o-transition: all 0.5s ease;

    transition: all 0.5s ease;

}



#wrapper.toggled #sidebar-wrapper {

    width: 250px;

}



#page-content-wrapper {

    width: 100%;

    position: absolute;

    padding: 15px;

}



#wrapper.toggled #page-content-wrapper {

    position: absolute;

    margin-right: -250px;

}



/* Sidebar Styles */



.sidebar-nav {

    position: absolute;

    top: 0;

    width: 250px;

    margin: 0;

    padding: 0;

    list-style: none;

}



.sidebar-nav li {

    text-indent: 20px;

    line-height: 40px;

}



.sidebar-nav li a {

    display: block;

    text-decoration: none;

    color: #999999;

}



.sidebar-nav li a:hover {

    text-decoration: none;

    color: #fff;

    background: rgba(255, 255, 255, 0.2);

}



.sidebar-nav li a:active,

.sidebar-nav li a:focus {

    text-decoration: none;

}



.sidebar-nav>.sidebar-brand {

    height: 65px;

    font-size: 18px;

    line-height: 60px;

}



.sidebar-nav>.sidebar-brand a {

    color: #999999;

}



.sidebar-nav>.sidebar-brand a:hover {

    color: #fff;

    background: none;

}



.faq ul#basics li {

    color: #000 !important;

    font-weight: bold;

}

.faq ul#basics li p {

    font-weight: normal;

}



.messages .alert {
    background-position: center center;

    background-repeat: repeat;

    background-size: 25px auto;

    border-radius: 5px;

}



.messages {

    margin: 0 auto;

    max-width: 1238px;
    position: relative;

}

.dashboard #page-content-wrapper .row .col-lg-6 {

    flex: 0 0 50%;

    float: left;

    max-width: 50%;

}

.select_count1 label {

    float: left;

    width: 100%;

}

.login_main .btn-primary:hover,
.forgot-password a:hover,
.forgot-pass span a:hover {
    background: rgba(0, 0, 0, 0) linear-gradient(#5f5f5f, #312a2a) repeat scroll 0 0;
}

.select_count1 .intl-tel-input {

    width: 100%;

}

.dashboard .dashbord_cont .regis_formbox form.validate label.help-inline {

    color: red;

    padding-top: 5px;

    position: relative;

    left: 0px;

    text-shadow: inherit;

}

.nav_new h2 {
    display: none;
}

.nav_new ul.profile {
    display: block;
}

/*.logo {

  height: 117px;

}

.logo a {

  display: block;

}

.logo a img {

  width: 84%;

}

.menu_main {

  margin-bottom: 18px;

}*/

.login-details li:last-child a {

    padding-right: 0;

}

.logo .logo_inr {
    display: none;
}

.instant-quote .driver-btn {

    position: inherit;

}

.nav_new ul.profile li:last-child a {

    padding-right: 0;

}

.login-details li:last-child span {

    margin-right: 0;

}

.emptycart {

    min-height: 400px;

}

.emptycart p {

    color: #fff;

}

.airport_main .airpot {

    background: #fff none repeat scroll 0 0;
    padding: 10px;
    border-radius: 4px;
    margin: 16px;

}

.airpot_inner .airpot {
    margin: 0px;
}

.airport_main .airpot p {
    color: #333;
    background: #fff none repeat scroll 0 0;
    margin: 0;
    padding: 10px 0;
    text-align: left;
    font-size: 16.8px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    letter-spacing: normal !important;
    font-family: 'Open Sans', sans-serif !important;
}

.airport_main .airpot h3 {
    color: #333;
    background: #fff none repeat scroll 0 0;
    margin: 0;
    padding: 10px 0;
    text-align: left;
    font-size: 16.8px !important;
    font-weight: bold !important;
    line-height: 1.5 !important;
    letter-spacing: normal !important;
    font-family: 'Open Sans', sans-serif !important;
}

.airport_main .airpot h4 {
    color: #333;
    background: #fff none repeat scroll 0 0;
    margin: 0;
    padding: 10px 0;
    text-align: left;
    font-size: 16.8px !important;
    font-weight: bold !important;
    line-height: 1.5 !important;
    letter-spacing: normal !important;
    font-family: 'Open Sans', sans-serif !important;
}

.airport_main .airpot h5 {
    color: #333;
    background: #fff none repeat scroll 0 0;
    margin: 0;
    padding: 10px 0;
    text-align: left;
    font-size: 16.8px !important;
    font-weight: bold !important;
    line-height: 1.5 !important;
    letter-spacing: normal !important;
    font-family: 'Open Sans', sans-serif !important;
}

.book_one .book_online h3 {
    text-align: left;
    font-size: 16.8px !important;
    font-weight: bold !important;
    line-height: 1.5 !important;
    letter-spacing: normal !important;
    font-family: 'Open Sans', sans-serif !important;
}

.book_one .book_online h4 {
    text-align: left;
    font-size: 16.8px !important;
    font-weight: bold !important;
    line-height: 1.5 !important;
    letter-spacing: normal !important;
    font-family: 'Open Sans', sans-serif !important;
}

.book_one .book_online h5 {
    text-align: left;
    font-size: 16.8px !important;
    font-weight: bold !important;
    line-height: 1.5 !important;
    letter-spacing: normal !important;
    font-family: 'Open Sans', sans-serif !important;
}

.book_two .book_online h3 {
    text-align: left;
    font-size: 16.8px !important;
    font-weight: bold !important;
    line-height: 1.5 !important;
    letter-spacing: normal !important;
    font-family: 'Open Sans', sans-serif !important;
}

.book_three .book_online h3 {
    text-align: left;
    font-size: 16.8px !important;
    font-weight: bold !important;
    line-height: 1.5 !important;
    letter-spacing: normal !important;
    font-family: 'Open Sans', sans-serif !important;
}

.book_two .book_online h4 {
    text-align: left;
    font-size: 16.8px !important;
    font-weight: bold !important;
    line-height: 1.5 !important;
    letter-spacing: normal !important;
    font-family: 'Open Sans', sans-serif !important;
}

.book_three .book_online h4 {
    text-align: left;
    font-size: 16.8px !important;
    font-weight: bold !important;
    line-height: 1.5 !important;
    letter-spacing: normal !important;
    font-family: 'Open Sans', sans-serif !important;
}

.book_two .book_online h5 {
    text-align: left;
    font-size: 16.8px !important;
    font-weight: bold !important;
    line-height: 1.5 !important;
    letter-spacing: normal !important;
    font-family: 'Open Sans', sans-serif !important;
}

.book_three .book_online h5 {
    text-align: left;
    font-size: 16.8px !important;
    font-weight: bold !important;
    line-height: 1.5 !important;
    letter-spacing: normal !important;
    font-family: 'Open Sans', sans-serif !important;
}

.iti-sdc-3 {
    width: 100%;
}

.airport_main {
    margin: 25px 0 0 0;
}

.airport_main ol {

    padding: 0 15px;

}

.login_main .cd-faq-content {

    padding-bottom: 0 !important;

}



.car_img>img {

    margin: 0 !important;

}



@media(min-width:768px) {

    #wrapper {

        padding-left: 250px;

    }



    #wrapper.toggled {

        padding-left: 0;

    }



    #sidebar-wrapper {

        width: 250px;

    }



    #wrapper.toggled #sidebar-wrapper {

        width: 0;

    }



    #page-content-wrapper {

        padding: 20px;

        position: relative;

    }



    #wrapper.toggled #page-content-wrapper {

        position: relative;

        margin-right: 0;

    }

}

.car_persons,
.car_luggage,
.car_handbags,
.car_info {

    color: #fff !important;

    padding-left: 10px;

}


.tooltip.fade.show {
    background: none !important;
    top: 0px !important;
    border: none !important;
}

.tooltip {
    border: none !important;
}

.contact_us .card {
    margin-right: 9px;
    /* max-height: 430px !important;*/
    width: 51%;
}

.contact_us .rgt-img-section {
    background: rgba(34, 44, 51, 0.7) none repeat scroll 0 0 !important;
    border: medium none;
    box-shadow: inherit;
    box-sizing: border-box;
    float: right;
    padding: 25px;
    width: 44%;
}

.contact_us .form-group>label {
    color: #fff;
    font-size: 13px;
    text-shadow: inherit !important;
}

.contact_us .rgt-img-section h3 {
    background-color: inherit;
    font-size: 18px !important;
    padding-left: 0px;
    text-align: left;
    padding-top: 0px;
    background: none;
    text-transform: uppercase;
    font-weight: 600;
}

.margin-bottom-1em img {
    float: left;
    margin: 4px 0px 20px 0;
}

#add-way {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    box-shadow: inherit;
    color: #b1b8bb;
    font-size: 15px;
    height: auto;
    padding-top: 0 !important;
}

.submit-btn {
    display: block;
    width: auto;
}

.submit-btn input {
    width: 100%;
}

.sticky_padding {
    padding-top: 15px;
}

.contact_us .new_mail>label {
    float: left;
    margin-right: 17px;
    width: 16%;
}

.contact_us .new_mail {
    float: left;
    margin-bottom: 10px;
    margin-right: 2%;
    width: 47%;
}

.contact_us .new_mail>input {
    float: left;
    width: 100%;
}

.contact_us .new_mail:nth-child(2) {
    float: right;
    margin-right: 0;
}

.default-form label {
    color: #5bc7e9;
    font-size: 18px !important;
    font-weight: 400 !important;
    text-shadow: inherit !important;
}

#preamble .default-form .where-input {
    background: #384248 none repeat scroll 0 0;
    border-radius: 3px;
    margin-bottom: 20px;
    padding: 10px;
}

#preamble .default-form .where-input .main_input {
    padding: 0;
}

#preamble .default-form .where-input .main_input input {
    border-radius: 3px;
    height: 42px !important;
    padding-right: 42px !important;
}

#txtSource {}

.faq .default-form .where-input {
    background: #384248 none repeat scroll 0 0;
    border-radius: 3px;
    margin-bottom: 20px;
    padding: 10px;
}

.faq .default-form .where-input .main_input {
    padding: 0;
}

.faq .default-form .where-input .main_input input,
.term_page .default-form .where-input .main_input input {
    border-radius: 3px;
    height: 42px !important;
}

.main_input input[type="text"] {
    height: 42px !important;
}


.term_page .default-form .where-input {
    background: #384248 none repeat scroll 0 0;
    border-radius: 3px;
    margin-bottom: 20px;
    padding: 10px;
}

.term_page .default-form .where-input .main_input {
    padding: 0;
}

.term_page .default-form .where-input .main_input input {
    border-radius: 3px;
}

/*#txtSource {
  background: #fff url("./images/tick.png") no-repeat scroll 98% center;
}*/

.tikinner {
    background: #fff url("./images/tick.png") no-repeat scroll 98% center;
}

.crosinner {
    background: #fff url("./images/closetr.png") no-repeat scroll 98% center;
}

/*#txtDestination{background: #fff url("./images/closetr.png") no-repeat scroll 98% center;}*/
.booking_info {
    clear: left;
    color: #5bc7e9;
    font-style: italic;
    text-align: left;
}

.booking_info {
    padding-top: 70px;
}

.booking_info p {
    line-height: 18px;
    margin-bottom: 6px;
    color: #fff;
}

.cart_one {
    background: rgba(34, 44, 51, 0.7) none repeat scroll 0 0 !important;
    box-sizing: border-box;
    display: inherit;
    flex-wrap: inherit;
    float: left;
    margin: 0;
    padding: 0 15px;
    width: 100%;
}

.cart_one .emptycart {
    padding: 25px 0;
}

.default-form label[style="clear: both;"]:after {
    content: '';
    background: rgba(0, 0, 0, 0) url("./images/flag2.png") no-repeat scroll right center;
    height: 20px;
    position: absolute;
    right: 0;
    width: 20px;
}

#dway_1 label:after {
    content: '';
    background: rgba(0, 0, 0, 0) url("./images/flag3.png") no-repeat scroll right center;
    height: 20px;
    position: absolute;
    right: 0;
    width: 20px;
}

#dway_1 label {
    position: relative;
}

.suggestions li {
    background: #111b28 none repeat scroll 0 0;
    border-radius: 2px;
    cursor: pointer;
    float: left;
    margin-bottom: 5px;
    padding: 5px 15px;
    text-align: left;
    width: 100%;
}

.suggestions li span {
    color: #fff;
    float: left;
    width: auto;
}

.suggestions span i {
    color: #fff;
    float: right;
    font-size: 14px;
    padding: 0 7px 0 0;
    position: inherit;
}

.fa-map-marker:before {
    content: "\f041" !important;
}

.suggestions {
    background: #222c33;
    left: 0;
    padding: 10px;
    position: absolute;
    top: 82px;
    z-index: 999;
}

ul.suggestions .empty {
    background: #c62424 none repeat scroll 0 0;
    color: #fff;
    font-size: 12px;
}

.spinner {
    background-position: 99% center;
    background-repeat: no-repeat;
    background-size: 14px auto;
}

.spinner {
    background-image: url("./images/spinner.gif") !important;
    border-bottom: 2px solid #1c81c3 !important;
}

.outbond_one .lft-inner-section {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: medium none;
    box-shadow: inherit;
    min-height: 455px;
}

.outbond_one h3 {
    background-color: inherit;
    font-size: 18px !important;
    font-weight: 600;
    padding-left: 10px;
    padding-top: 0;
    text-align: left;
    text-transform: capitalize;
}

.outbond_one .quote-img {
    background: #384248 none repeat scroll 0 0 !important;
}

.outbond_one .quote-img .lft-sec {
    float: left;
    max-width: 32%;
    padding: 0;
}

.outbond_one .quote-img .rgt-sec {
    float: right;
    max-width: 42%;
    padding: 0;
}

.outbond_one .quote-img .lft-sec img {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    /*padding-top: 20px;*/
}

.outbond_one .quote-img h5 {
    border: medium none;
    color: #5ac4e5;
    float: left;
    font-size: 16px;
    font-weight: 600;
    margin: 5px 0;
    text-decoration: none;
    text-shadow: inherit !important;
    width: 100%;
    border-bottom: 1px solid #999999;
    padding-bottom: 7px;
}

.quote-img p {
    float: left;
    padding: 0 0 6px !important;
}

.outbond_one h2 {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    padding: 12px 12px 0;
    text-align: left;
}

.outbond_one .quote-img .rgt-sec .padding-left {
    padding-right: 13px !important;
    padding-top: 10px;
}

.outbond_one .quote-img .rgt-sec .col-lg-6 {
    max-width: 100%;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    width: 100% !important;
}

.outbond_one .quote-img .rgt-sec .col-lg-6 input {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: 1px solid #fff;
    color: #fff;
    margin-right: 12px !important;
}

.outbond_one .quote-img .rgt-sec .col-lg-6 label.radio-inline {
    color: #fff;
    font-size: 17px;
    font-weight: bold !important;
    text-shadow: inherit !important;
}

.outbond_one {
    width: 100% !important;
}

.outbond_two {
    width: 59.6% !important;
}

.outbond_two #location {
    margin: 0;
}

.outbond_two .bg-color4 {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    padding: 0;
}

.outbond_two .bg-color4 span {
    color: #59bfe0;
    font-size: 16px;
}

.outbond_two .custom-list {
    background: #384248 none repeat scroll 0 0;
    border-radius: 5px;
    padding: 20px !important;
}

.outbond_two .bg-color1 {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#318446+0,275b38+100 */
    background: #318446;
    /* Old browsers */
    background: -moz-linear-gradient(top, #318446 0%, #275b38 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #318446 0%, #275b38 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #318446 0%, #275b38 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#318446', endColorstr='#275b38', GradientType=0);
    /* IE6-9 */
    border-radius: 3px;
    height: auto;
    line-height: 25px;
    padding: 4px 11px;
}

.outbond_two .bg-color3 {
    border-radius: 3px;
    height: auto;
    line-height: 25px;
    padding: 4px 11px;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#9d4548+0,683033+100 */
    background: #9d4548;
    /* Old browsers */
    background: -moz-linear-gradient(top, #9d4548 0%, #683033 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #9d4548 0%, #683033 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #9d4548 0%, #683033 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#9d4548', endColorstr='#683033', GradientType=0);
    /* IE6-9 */
}

.form_new {
    background: rgba(34, 44, 51, 0.7) none repeat scroll 0 0;
    border-radius: 4px;
    color: #59bfe0;
    float: left;
    font-size: 15px;
    font-weight: 600;
    margin-top: 0;
    padding: 20px 31px 31px;
    text-align: left;
    width: 100%;
    margin-bottom: 30px;
}

.form_new input.email {
    border: medium none;
    border-radius: 4px;
    float: left;
    margin-top: 6px;
    width: 100%;
}

#booknow {
    height: 100% !important;
    padding: 6px !important;
}

.form_new button {
    background: rgba(0, 0, 0, 0) linear-gradient(to bottom, #1e2e42 0%, #111b28 100%) repeat scroll 0 0;
    border: medium none !important;
    border-radius: 4px;
    color: #fff;
    float: left;
    font-size: 1rem;
    font-weight: 400 !important;
    margin: 10px 0;
    padding: 10px !important;
    transition: all 0.3s ease 0s;
    width: 100%;
}

.form_latest {
    float: left;
    width: 39%;
}

.form_email {
    background: #384248 none repeat scroll 0 0;
    border-radius: 4px;
    float: left;
    padding: 10px;
    width: 100%;
}

.outbond_two .pull-right a .fa-pencil::before {
    content: "\f040" !important;
    color: #fff;
}

#dvMap {
    display: none;
}

.map_text {
    background: rgba(0, 0, 0, 0) linear-gradient(to bottom, #1e2e42 0%, #111b28 100%) repeat scroll 0 0;
    border-radius: 4px;
    cursor: pointer;
    padding: 10px;
    text-align: center;
    width: 16%;
    float: left;
}

.pasenger_detail_one .lft-inner-section h3 {
    background-color: inherit;
    font-size: 18px !important;
    font-weight: 600;
    padding-left: 0px;
    padding-top: 0;
    text-align: left;
    text-transform: capitalize;
}

.pasenger_detail_one .lft-inner-section {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: medium none;
    box-shadow: none;
    padding-bottom: 25px !important;
    padding-left: 25px !important;
    padding-right: 25px !important;
    padding-top: 0;
}

.pasenger_detail_one {
    padding-bottom: 0 !important;
    width: 39% !important;
    padding-top: 10px;
}

.pasenger_detail_one {
    width: 39% !important;
}

.pasenger_detail_two {
    width: 59.6% !important;
}

.pasenger_detail_one .form-row label {
    color: #fff;
    font-size: 15px;
    font-weight: 500 !important;
    text-shadow: unset !important;
}

.pasenger_detail_one .form-row {
    text-align: left;
}

.estimate>span {
    color: #fff;
}

.estimate {
    background: #3c464c none repeat scroll 0 0;
    color: #82898d;
    font-size: 16px;
    font-weight: bold;
    padding: 14px;
}

.pasenger_detail_two>.custom-list {
    background: #384248 none repeat scroll 0 0;
    border-radius: 5px;
    padding: 20px !important;
}

.pasenger_detail_two .bg-color4 span {
    color: #59bfe0;
    font-size: 16px;
}

.pasenger_detail_two .bg-color1 {
    background: rgba(0, 0, 0, 0) linear-gradient(to bottom, #318446 0%, #275b38 100%) repeat scroll 0 0;
    border-radius: 3px;
    height: auto;
    line-height: 25px;
    padding: 5px 11px;
}

.pasenger_detail_two .bg-color3 {
    background: rgba(0, 0, 0, 0) linear-gradient(to bottom, #9d4548 0%, #683033 100%) repeat scroll 0 0;
    border-radius: 3px;
    height: auto;
    line-height: 25px;
    padding: 5px 11px;
}

.pasenger_detail_two .alert_orang {
    background: rgba(218, 101, 19, 0.86) !important;
}

.pasenger_detail_one .form-row {
    color: #fff;
}

.pasenger_detail_two .bg-color4 {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    padding: 0;
}

.pasenger_detail_two #location {
    margin: 0;
}

.pasenger_detail_two .btn {
    background: rgba(0, 0, 0, 0) linear-gradient(to bottom, #1e2e42 0%, #111b28 100%) repeat scroll 0 0;
    border: medium none !important;
    border-radius: 4px;
    color: #fff;
    font-size: 1rem;
    font-weight: 400 !important;
    /* height: 40px;*/
    padding: 10px !important;
    transition: all 0.3s ease 0s;
    text-transform: capitalize;
    line-height: 1.1em;
}

.pasenger_detail_two h3 {
    background-color: inherit;
    font-size: 18px !important;
    font-weight: 600;
    padding-left: 10px;
    padding-top: 0;
    text-align: left;
}

.outbond_one p {
    color: #fff;
    font-size: 12px;
    margin-bottom: 0;
    padding: 0 12px;
    text-align: left;
}

.outbond_one .instant-form {
    padding: 10px !important;
}

#emailquoteformelem {
    display: none;
}

.car_img>img {
    margin: 0 !important;
    width: 74%;
}

#way-point .where-input label::after {
    background: rgba(0, 0, 0, 0) url("./images/flag3.png") no-repeat scroll right center;
    content: "";
    height: 20px;
    position: absolute;
    right: 0;
    width: 20px;
}

.cart_one .emptycart {
    min-height: 100%;
}

.main-body-container {
    display: inline-block;
    width: 100%;
    min-height: 620px;
}

.car_cont .car_model {
    display: inline-block;
    width: 100%;
}

.car_cont .car_hyphen {
    display: none
}

.car_cont .car_persons {
    padding-left: 0
}

.car_main>li {
    padding: 8px 0;
}

#way-point>.where-input>span>i {
    color: #ffffff;
    position: absolute;
    top: calc(50% - 4px);
    right: 2%;
    background: red;
    border-radius: 100px;
    cursor: pointer;
}

#way-point .where-input .main_input>p {
    visibility: hidden
}

#way-point>.where-input>span>i {
    top: 7px !important;
}

.suggestions li .icon {
    width: 4%;
    padding-top: 2px;
}

.suggestions li .address {
    width: 90%;
}

.outbond_two .pull-right .fa-pencil {
    font-size: 27px;
}


.book_online {
    background: rgba(34, 44, 51, 0.7) none repeat scroll 0 0;
    border-radius: 6px;
    float: left;
    margin-top: 10px;
    padding: 16px;
    width: 100%;
}

.book_online .airpot {
    background: #fff none repeat scroll 0 0;
    padding: 20px;
    text-align: left;
    border-radius: 4px;
}

.book_online .airpot p {
    padding: 0px;
}

.quote-map {
    margin-top: 10px;
}

#preamble .validate .pasenger_detail_one {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0 !important;
    padding: 0 !important;
}

.pasenger_detail_one .form_new {
    background: rgba(34, 44, 51, 0.7) none repeat scroll 0 0 !important;
}

.pasenger_detail_one .lft-inner-section {
    background: rgba(34, 44, 51, 0.7) none repeat scroll 0 0 !important;

    float: left;
    margin: 0 0;
    width: 100%;
    margin-bottom: 20px;
}

.pasenger_detail_one .lft-inner-section h3 {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    padding-bottom: 10px;
    padding-top: 15px;
}

.estimate strong {
    color: #fff;
    padding: 0 3px;
}

.bg-color22 {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ce7c0d+0,91580d+100 */
    background: #ce7c0d;
    /* Old browsers */
    background: -moz-linear-gradient(top, #ce7c0d 0%, #91580d 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #ce7c0d 0%, #91580d 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #ce7c0d 0%, #91580d 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ce7c0d', endColorstr='#91580d', GradientType=0);
    /* IE6-9 */
    border-radius: 3px;
    height: auto;
    line-height: 25px;
    padding: 4px 11px;
}


.estimate .fa-pencil::before {
    color: #fff;
    content: "" !important;
    font-size: 14px;
    display: block;
    margin: 5px 10px;
}

#otb_edit_vehicle:hover .fa-pencil::before {
    color: #59bfe0;

}

.estimate .fa {
    float: right;
}

.login_main .cd-faq-items {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
}

.login_main .cd-faq-items ul#basics li {
    font-weight: bold;
    padding: 25px 19px 0px;
}

.login_main .cd-faq-items ul#basics li p {
    font-weight: normal;
    padding-top: 3px;
}

.pasenger_detail_two h3 {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0 !important;
}

.login_main ul.paging-ul li {
    background: #fff none repeat scroll 0 0;
}

.map_row {
    float: left;
    margin: 0;
    width: 100%;
    margin-bottom: 0px;
}

/*.map_row #dvMap {
  display: block;
}*/
.contact_us label.help-inline {
    color: red;
    padding-top: 2px;
    width: 100%;
}

.sugest_one .empty {
    background: #c62424 none repeat scroll 0 0;
    color: #fff;
    left: 0;
    position: inherit;
    top: 0;
}

.sugest_one {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    position: inherit;
    z-index: 9999;
}

.class_airport .has-error span.form-error {
    font-size: 14px;
    font-weight: normal;
    margin: 0 !important;
}

#add-way input {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    color: #aaaeb0;
    height: auto !important;
    padding-top: 2px !important;
    box-shadow: none;
}

.outbond_two h3 {
    text-transform: capitalize !important;
}

.pasenger_detail_two span.single-edit a {
    color: #fff;
    font-size: 14px;
}

.pasenger_detail_two .btn:nth-child(n) {
    background: #3e474d none repeat scroll 0 0;
    float: left;
}

.pasenger_detail_two .btn:nth-child(2n) {
    float: right;
    background: rgba(0, 0, 0, 0) linear-gradient(to bottom, #1e2e42 0%, #111b28 100%) repeat scroll 0 0;
}

.estimate strong:first-child {
    padding-right: 50px;
}

.out_bond h2 {
    font-size: 1rem;
    margin: 0;
    color: #fff;
}

.out_bond {
    margin-top: 10px;
}

.out_bond .close {
    color: #fff;
    display: block;
    float: inherit;
    opacity: inherit;
    text-shadow: inherit;
}

#dvMap1 {
    display: none;
}

.out_bond .close:hover {
    color: #fff !important;
    font-weight: normal;
    opacity: inherit !important;
}

.adresss p a {
    color: #fff;
}

.map_row .col-lg-12 {
    padding-left: 0;
}

.outbontdetail .form-row a {
    color: #fff;
    float: right;
}

.hd_text {
    display: none;
}

.outbontdetail .form-row .fa-info-circle {
    color: #fff;
    cursor: pointer;
    float: right;
    padding-top: 5px;
    opacity: inherit;
}

.outbontdetail .form-row .fa-info-circle:hover {
    color: #fff;
    opacity: inherit;
}

.separate-dial-code ul.country-list span {
    color: #000;
}

.separate-dial-code .selected-dial-code {
    color: #000;
}

.contact_us .where-input {
    background: #384248 none repeat scroll 0 0;
    border-radius: 3px;
    margin-bottom: 20px;
    padding: 10px;
}

.contact_us .input_wrapper {
    padding: 0px;
}

.contact_us .main_input input {
    border-radius: 3px;
}

.outbond_one .lft-inner-section .instant-form {
    padding: 0 !important;
}

.outbond_one .lft-inner-section h3 {
    padding-left: 0;
}

.outbond_one .lft-inner-section p {
    padding-left: 0;
}

.outbond_one .lft-inner-section h2 {
    padding-left: 0;
}

#add-way input:hover {
    font-weight: 600 !important;
    text-shadow: inherit !important;
}


.outbontdetail #inbound_flight_arriving_from {
    background: url("./images/origin.png") 2% center no-repeat;
    padding-left: 35px;
}

.outbontdetail #inbound_flight_arriving_from:focus {
    background-image: none;
    padding-left: 6px;
}

.outbontdetail #outbound_flight_arriving_from {
    background: url("./images/origin.png") 2% center no-repeat;
    padding-left: 35px;
}

.outbontdetail #outbound_flight_arriving_from:focus {
    background-image: none;
    padding-left: 6px;
}



.outbontdetail #inbound_flight_num {
    background: url("./images/flight.png") 3% center no-repeat;
    padding-left: 35px;
}

.outbontdetail #inbound_flight_num:focus {
    background-image: none;
    padding-left: 6px;
}

.outbontdetail #outbound_flight_num {
    background: url("./images/flight.png") 3% center no-repeat;
    padding-left: 35px;
}

.outbontdetail #outbound_flight_num:focus {
    background-image: none;
    padding-left: 6px;
}

.flight_class {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0 !important;
    padding-left: 10px !important;
}


.my-tool-tip {
    width: 14px;
    cursor: pointer;
}

.my-tool-tip:hover+.car_info.tooltiptext {
    background: #fff none repeat scroll 0 0;
    border-radius: 4px;
    color: #000 !important;
    display: block;
    font-size: 13px;
    right: 0px;
    opacity: 1 !important;
    padding: 5px;
    position: absolute;
    top: 14px;
    visibility: visible !important;
    z-index: 99;
}

.car_info.tooltiptext {
    cursor: pointer;
    display: none;
}

#preamble .container .rgt-img-section {
    overflow: inherit !important;
}

.outbond_two .estimate {
    margin-bottom: 10px !important;
}

.origin_class {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0 !important;
    padding-left: 10px !important;
}

.special_ins {
    border-radius: 4px;
    float: left;
    width: 100%;
}

.special_ins p {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    margin-bottom: 8px;
}

.special_ins textarea {
    border: medium none;
    border-radius: 4px;
    padding: 10px;
    width: 100%;
}

.fare_box {
    background: #3a6e8d none repeat scroll 0 0;
    border-radius: 4px;
    float: left;
    margin-bottom: 13px;
    padding: 20px;
    width: 100%;
}

.fare_box ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}

.fare_box ul li {
    float: left;
    padding: 0 20px;
    text-align: left;
    width: 100%;
}

.fare_box p {
    color: #fff;
    float: left;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.fare_box span {
    color: #fff;
    float: right;
    font-size: 16px;
    font-weight: 600;
}

.fare_box ul li:last-child {
    background: #3c464c none repeat scroll 0 0;
    padding: 6px 20px;
}

.outbontdetail .bootstrap-select button.dropdown-toggle {
    background: #fff none repeat scroll 0 0;
    color: #6c757d;
    font-weight: 400;
    height: 30px;
    padding: 5px;
    text-transform: capitalize;
    width: 94%;
    border: none;
}

.outbontdetail .bootstrap-select .inner li a span {
    font-size: 14px !important;
    font-weight: 400;
    color: #6c757d;
}

.outbontdetail .bootstrap-select button.dropdown-toggle::focus {
    outline: inherit !important;
    box-shadow: inherit !important;
    opacity: inherit !important;
}

.outbontdetail select {
    color: #000;
}

.outbontdetail select:focus,
.outbontdetail select:hover,
.outbontdetail select:active {
    color: #000;
}

.outbontdetail label.help-inline {
    bottom: -25px;
    color: red;
    position: absolute;
}

.pasenger_detail_one .show .selected .check-mark {
    display: inherit !important;
    float: right;
    margin-bottom: 0 !important;
    margin-left: 0 !important;
    margin-right: 18px;
    margin-top: 0 !important;
    position: inherit !important;
    right: inherit !important;
    top: inherit !important;
}

.pasenger_detail_one .outbontdetail {
    min-height: auto;
}

.copy_outbound_content {
    position: absolute;
    right: 19px;
    top: 13px;
}

.copy_outbound_content span {
    color: #fff;
}

#passenger_detail_back {
    margin-right: 10px;
}

.pasenger_detail_one p.hd_text strong {
    color: red;
    text-transform: uppercase;
}

.in_bond h2 {
    font-size: 15px;
    margin: 0;
    color: #fff;
}

.in_bond {
    margin-top: 10px;
}

.in_bond .close {
    color: #fff;
    display: block;
    float: inherit;
    opacity: inherit;
    text-shadow: inherit;
}

.in_bond .close:hover {
    color: #fff !important;
    font-weight: normal;
    opacity: inherit !important;
}

.otb_mg p {
    font-size: 14px;
    padding-left: 20px;
}

.otb_mg span {
    /*font-size: 14px;*/
}

.inb_mg span {
    /*font-size: 14px;*/
}

.inb_mg p {
    font-size: 14px;
    padding-left: 20px;
}

#outbound_flight_num {
    text-transform: capitalize;
}

#outbound_flight_arriving_from {
    text-transform: capitalize;
}

#add_another_journey_btn {
    background: rgba(0, 0, 0, 0) linear-gradient(to bottom, #1e2e42 0%, #111b28 100%) repeat scroll 0 0;
    border: medium none !important;
    border-radius: 4px;
    color: #fff;
    font-size: 1rem;
    font-weight: 400 !important;
    /*height: 40px;*/
    padding: 10px !important;
    transition: all 0.3s ease 0s;
    float: left;
    margin: 10px 0;
    text-transform: capitalize;
    line-height: 1.1em;
}

#inbound_flight_num {
    text-transform: capitalize;
}

#inbound_flight_arriving_from {
    text-transform: capitalize;
}

.customerdetails .bg-color1 {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#318446+0,275b38+100 */
    background: #318446;
    /* Old browsers */
    background: -moz-linear-gradient(top, #318446 0%, #275b38 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #318446 0%, #275b38 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #318446 0%, #275b38 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#318446', endColorstr='#275b38', GradientType=0);
    /* IE6-9 */
    border-radius: 3px;
    height: auto;
    line-height: 25px;
    padding: 4px 11px;
}

.customerdetails .bg-color3 {
    border-radius: 3px;
    height: auto;
    line-height: 25px;
    padding: 4px 11px;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#9d4548+0,683033+100 */
    background: #9d4548;
    /* Old browsers */
    background: -moz-linear-gradient(top, #9d4548 0%, #683033 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #9d4548 0%, #683033 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #9d4548 0%, #683033 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#9d4548', endColorstr='#683033', GradientType=0);
    /* IE6-9 */
}

.customerdetails .edt a {
    color:
        #fff;
}

.customerdetails .rgt-img-section .btn {

    font-size: 15px;
    margin: 0;
    color:

        #fff;

}

.customerdetails .rgt-img-section .btn {

    background: rgba(0, 0, 0, 0) linear-gradient(to bottom, #1e2e42 0%,
            #111b28 100%) repeat scroll 0 0;
    border-radius: 4px;
    cursor: pointer;
    padding: 5px 12px;
    text-align: center;
    /*width: 16%;*/
    width: auto;
    font-weight: 500;
    text-transform: capitalize;
    border-bottom: none;
    line-height: 1.1em;
    font-size: 1rem;
}

.customerdetails .instant-quote {

    width: 51%;
    float: left;

}

.customerdetails .rgt-img-section {
    width: 47.6% !important;
}

.customerdetails #location {
    margin: 0;
}

.customerdetails .map_text {
    background: rgba(0, 0, 0, 0) linear-gradient(to bottom, #1e2e42 0%, #111b28 100%) repeat scroll 0 0;
    border-radius: 4px;
    cursor: pointer;
    padding: 10px;
    text-align: center;
    width: 20%;
    float: left;
}

.customerdetails .rgt-img-section h2 {
    font-size: 15px;
    margin: 0;

    background-color: none;
    color: white !important;
    padding: 0px 0 7px 0;
    margin-bottom: 0 !important;
    text-shadow: none;
    font-weight: 800;
}

.customerdetails .rgt-img-section .bg-color4 {
    display: none;
}

.basket_main {
    float: left;
    width: 100%;
    margin: 5px 0;
    border-radius: 6px;
}

.basket_main ul {
    list-style: none;
    margin: 0 0;
    padding: 10px;
    padding-top: 20px;
    background: #384248 none repeat scroll 0 0;
    float: left;
    width: 100%;
    padding-top: 0;
    border-radius: 5px;
    margin-top: 10px;
}

.basket_main ul li {
    list-style: none;
    margin: 0;
    padding: 0;
    float: left;
    width: 100% !important;
    margin-bottom: 5px;
    border-bottom: 1px solid #425059 !important;
    padding-bottom: 0px;
}

.basket_main ul li p {
    margin: 0;
    font-weight: bold;
    float: left;
}

.customerdetails .rgt-img-section .add_customer a:nth-child(2n) {
    background: rgba(0, 0, 0, 0) linear-gradient(to bottom, #1e2e42 0%, #111b28 100%) repeat scroll 0 0;
    border-radius: 4px;
    cursor: pointer;
    padding: 10px;
    text-align: center;
    width: 20%;
    color: #fff;
    float: right;
}

.customerdetails .rgt-img-section .add_customer a {
    background: none;
    border-radius: 4px;
    cursor: pointer;
    padding: 10px;
    text-align: center;
    width: auto;
    color: #fff;
    float: left;
    margin-right: 0;
}

.customerdetails .rgt-img-section .add_customer a i {
    color: #fff;
}

.add_customer p {
    float: left;
    margin: 10px 0;
    width: 100%;
}

.delet_btn {

    background: none !important;
    float: right !important;
    width: auto !important;

}

.customerdetails .bg-color4 {
    background-color: inherit !important;
    color: white !important;
    padding: 5px 0;
    margin-bottom: 10px !important;
    text-shadow: 0 !important;
    font-weight: bold;
}

.basket_main ul li:last-child {
    border: none !important;
}

.contact_us .rgt-img-section .new_mail {
    position: relative;

}

.contact_us .rgt-img-section .new_mail span {
    position: absolute;
    bottom: -17px;
    font-size: 12px;
}

.contact_us .rgt-img-section .text_area {
    position: relative;

}

.contact_us .rgt-img-section .text_area span {
    position: absolute;
    bottom: -17px;
    font-size: 12px;
}

.customerdetails .instant-quote .text-left {
    background:
        #384248 none repeat scroll 0 0;
    border-radius: 5px;
    padding: 20px !important;
}

#cancel_return {
    background:
        rgba(0, 0, 0, 0) linear-gradient(to bottom, #1e2e42 0%,
            #111b28 100%) repeat scroll 0 0;
    border-radius: 4px;
    cursor: pointer;
    padding: 7px;
    text-align: center;
    width: 20%;
    font-weight: 500;
    text-transform: capitalize;
    display: inline-block;
    margin-top: 13px;
    float: right;
}

.book_one {
    background: rgba(34, 44, 51, 0.7);
    border-radius: 6px;
    float: left;
    margin: 0;
    padding: 16px;
    width: 100%;
    margin-bottom: 10px;
}

.book_two {
    background: rgba(34, 44, 51, 0.7);
    border-radius: 6px;
    float: left;
    margin: 0;
    padding: 16px;
    width: 100%;
    margin-bottom: 10px;
}

.book_three {
    background: rgba(34, 44, 51, 0.7);
    border-radius: 6px;
    float: left;
    margin: 0;
    padding: 16px;
    width: 100%;
    margin-bottom: 10px;
}

.airpot_inner .airpot_one {
    background:
        rgba(34, 44, 51, 0.7);
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 10px;
}

.airpot_inner .col-md-12 {
    padding: 0;
}

.airpot_inner h2 {
    margin: 0px;
}

.airpot_inner {
    background: none;
    padding-bottom: 0;
}

#inbound_name {
    text-transform: capitalize;
}

#outbound_name {
    text-transform: capitalize;
}

#continue_booking {
    background: rgba(0, 0, 0, 0) linear-gradient(to bottom, #1e2e42 0%, #111b28 100%) repeat scroll 0 0;
    border: medium none !important;
    border-radius: 4px;
    color: #fff;
    font-size: 1rem;
    font-weight: 400 !important;
    /* height: 40px;*/
    padding: 10px !important;
    transition: all 0.3s ease 0s;
    float: right;
    margin: 10px 0;
    text-transform: capitalize;
    line-height: 1.1em;
}


.pasenger_detail .login_main .cd-faq-items ul#basics li {
    font-weight: bold;
    padding: 5px 16px;
    /*	background: rgba(34, 44, 51, 0.7) none repeat scroll 0 0;*/
    float: left;
    width: 100%;
    border-radius: 6px;
}

.li_inner {
    float: left;
    width: 100%;
    background: #fff;
    padding: 10px;
    border-radius: 6px;
}

.pasenger_detail .login_main {
    /*background: none;*/
}

.pasenger_detail .login_main h3 {
    padding: 16px;
    /*background: rgba(34, 44, 51, 0.7) none repeat scroll 0 0;*/
    float: left;
    width: 100%;
    border-radius: 6px;
}

.pasenger_detail .login_main #basics {
    padding: 0;
}

.out_bond_one .airpot {
    padding: 16px;
    background: rgba(34, 44, 51, 0.7) none repeat scroll 0 0;
    float: left;
    width: 100%;
    border-radius: 6px;
    margin: 0px;
}

.out_bond_one .airpot .inbound_airpot_one {
    background: #fff;
    padding: 16px;
    float: left;
    width: 100%;
    border-radius: 6px;
}

.out_bond_one {
    background: none;
    padding: 0;
}

.col-md-12 {
    padding: 0;
}

.out_bond_one .book_online {
    padding: 16px;
    background: rgba(34, 44, 51, 0.7) none repeat scroll 0 0;
    float: left;
    width: 100%;
    border-radius: 6px;
}

.out_bond_one .book_online .inbound_airpot_two {
    background: #fff;
    padding: 16px;
    float: left;
    width: 100%;
    border-radius: 6px;
}

.out_bond_one .book_online {
    padding: 16px;
    background: rgba(34, 44, 51, 0.7) none repeat scroll 0 0;
    float: left;
    width: 100%;
    border-radius: 6px;
}

.out_bond_one .book_online .inbound_airpot_three {
    background: #fff;
    padding: 16px;
    float: left;
    width: 100%;
    border-radius: 6px;
}

.basket_one {
    float: left;
    width: 100%;
    padding: 10px 0;
    padding-bottom: 0px;
}

.basket-processed li:first-child {
    float: left;
    padding: 0;
}

.basket-processed li a {
    background:
        rgba(0, 0, 0, 0) linear-gradient(to bottom, #1e2e42 0%,
            #111b28 100%) repeat scroll 0 0;
    border-radius: 4px;
    cursor: pointer;
    padding: 10px;
    text-align: center;
    width: auto;
    display: inline-block;
    font-size: 1rem;
    line-height: 1.1em;
    color: #fff;
}

.basket-processed ul {
    padding-top: 25px;
}

.basket-processed li:last-child {
    float: right;
    padding: 0;
}

.basket-processed p {
    float: left;
    width: 100%;
    padding-top: 15px;
    font-size: 12px;
    font-style: italic;
}

.basket-processed {
    float: left;
    width: 100%;
    padding-top: 10px;
    border: 1px solid #979797;
    ;
    border-radius: 5px;
    padding: 15px;
    margin-top: 10px;
}

.basket_main ul:first-child {
    margin-top: 0px;
}

.fa-info-circle {

    font-size: 18px !important;

}

.outbontdetail #outbound_service_num {
    background: url("./images/train1.png") 2% center no-repeat;
    padding-left: 35px;
}

.outbontdetail #inbound_service_num {
    background: url("./images/train1.png") 2% center no-repeat;
    padding-left: 35px;
}

.outbontdetail #outbound_train_arriving_from {
    background: url("./images/train2.png") 2% center no-repeat;
    padding-left: 24px;
}

.outbontdetail #inbound_train_arriving_from {
    background: url("./images/train2.png") 2% center no-repeat;
    padding-left: 24px;
}

.outbontdetail #inbound_ferry_name {
    background: url("./images/ship1.png") 2% center no-repeat;
    padding-left: 35px;
}

.outbontdetail #outbound_ferry_name {
    background: url("./images/ship1.png") 2% center no-repeat;
    padding-left: 35px;
}

.outbontdetail #inbound_ferry_arriving_from {
    background: url("./images/ship2.png") 2% center no-repeat;
    padding-left: 24px;
}

.outbontdetail #outbound_ferry_arriving_from {
    background: url("./images/ship2.png") 2% center no-repeat;
    padding-left: 24px;
}

.outbontdetail #outbound_service_num:focus,
.outbontdetail #outbound_train_arriving_from:focus,
.outbontdetail #inbound_ferry_name:focus,
.outbontdetail #inbound_ferry_arriving_from:focus {
    background-image: none;
    padding-left: 6px;
}

.max-persons #upgrade_info {
    color: #fff;
}

.max-persons #vehicle_radio {
    color: #fff;
}

.max-persons #vehicle_radio input {
    padding: 0 5px;
    margin: 0 5px;

}

.max-persons {
    text-align: left;
    float: left;
    width: 98%;
}

.max-persons #upgrade_info {
    color: #fff;
    font-weight: bold;
}

.max-persons #vehicle_radio {
    color: #fff;
    margin-top: 10px;
    font-weight: bold;
}

.max-persons #vehicle_radio input:first-child {
    margin-left: 0;
}

.max-persons #upgrade_info {
    color: #fff;
    font-weight: bold;
    background: #384248;
    float: left;
    padding: 5px 10px;
    margin-bottom: 0px;
}




.in_max-persons #in_upgrade_info {
    color: #fff;
}

.in_max-persons #in_vehicle_radio {
    color: #fff;
}

.in_max-persons #in_vehicle_radio input {
    padding: 0 5px;
    margin: 0 5px;
}

.in_max-persons {
    text-align: left;
    float: left;
    width: 98%;
}

.in_max-persons #in_upgrade_info {
    color: #fff;
    font-weight: bold;
}

.in_max-persons #in_vehicle_radio {
    color: #fff;
    margin-top: 10px;
    font-weight: bold;
}

.in_max-persons #in_vehicle_radio input:first-child {
    margin-left: 0;
}

.in_max-persons #in_upgrade_info {
    color: #fff;
    font-weight: bold;
    background: #384248;
    float: left;
    padding: 5px 10px;
    margin-bottom: 0px;
}






.pasenger_detail_one .form-row {
    color: #fff;
    float: left;
    width: 100%;
}

.max-persons #vehicle_radio {
    color: #fff;
    font-weight: bold;
    background: #823a3d;
    float: left;
    padding: 5px 10px;
    margin-bottom: 0px;
}

.in_max-persons #in_vehicle_radio {
    color: #fff;
    font-weight: bold;
    background: #823a3d;
    float: left;
    padding: 5px 10px;
    margin-bottom: 0px;
}

.instant-form #carform .help-inline {
    position: absolute;
    color: red;
    text-shadow: none !important;
    top: 31px;
    font-size: 11px !important;
}

.pasenger_detail_two #cancel_return {
    margin-bottom: 10px;
}

.outbond_two #dvMap {
    margin-top: 10px;
    float: left;
    width: 100%;
}

#book_return {
    margin-top: 10px;
    margin-bottom: 10px;
}

.pasenger_detail_two .out_bond {
    margin-bottom: 10px;

}

#emailquoteformelem .help-inline {
    color: red;
    text-shadow: none !important;

}

.basket_title {
    margin: 0;
    padding: 0 !important;
}

.basket_one .basket_title li:first-child {
    width: 12% !important;
}

.basket_one .basket_title li input {
    width: 100%;
}

.basket_one .basket_title li {
    float: left !important;
    width: 35% !important;
    margin-right: 7px;
    border: none !important;
}

.basket_one .basket_title li:last-child {
    margin-left: 12px;
    margin-right: 0px;
}

.basket_title p {
    font-weight: normal !important;
    font-size: 13px;
    padding-bottom: 9px;
}

.basket_title label {
    font-weight: normal !important;
    color: #fff;
    text-shadow: none !important;
    font-size: 13px;
}

.basket_title_one {
    float: left !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.basket_title input {
    height: 30px;
}

.basket_title select {
    height: 30px;
    margin: 0;
    padding: 0;
    margin-top: 2px;
}

.basket_title_one {
    magin: 0px;
    padding: 0px;
}

.basket_main .basket_title_one li {
    float: left !important;
    width: 48% !important;
    margin: 0;
    padding: 0;
    margin-bottom: 6px;
    border: none !important;
    margin-right: 18px;
}

.basket_main .basket_title_one li label {
    margin-bottom: 0.5rem;
}

label.help-inline {
    margin-bottom: 0rem
}

.basket_main .basket_title_one li:nth-child(2n) {
    margin-right: 0px;
}

.basket_main .basket_title_one li label {
    font-size: 13px;
    text-shadow: none !important;
    color: #fff;
    font-weight: normal !important;
}

.basket_main .basket_title_one li.add-one {
    width: 100% !important;
    float: left !important;
}

.basket_main .basket_title_one li.add-one input {
    width: 100%;
    height: 30px;
}

.basket_main .basket_title_one li label {
    font-size: 13px;
    text-shadow: none !important;
    color: #fff;
    font-weight: normal !important;
}

.basket_main .basket_title_one li input {
    width: 100%;
    float: left;
}

.mb-class span {
    position: absolute;
    left: 0;
    top: 29px;
    background: #ccc;
    height: 24px;
    font-size: 13px;
    color: #000;
    padding: 0 37px 0 17px;
}

.city-country {
    margin-right: 0 !important;
}

.city-one {
    margin-right: 18px !important;
}

.basket_main p>label {
    font-size: 13px;
    text-shadow: none !important;
    color: #fff;
    font-weight: normal !important;
}


.basket_main .validate .basket_one>span {

    width: 100%;
    float: left;

}

.basket_main .validate .basket_one>span input {

    width: 100%;
    height: 30px;
    margin: 5px 0;

}

.basket_main .validate .basket_one>span .btn {
    width: auto;
    padding: 0 15px;
}

.basket_main .basket_one span input.btn {
    width: auto !important;
    padding: 0 15px;
    margin-right: 10px;
}

.impinfo h3 {
    color: red !important;
}

.inb_luggage_info {
    background-color: #bb5711;
    padding: 5px 10px;
    margin-bottom: 10px !important;
}

.otb_luggage_info {
    background-color: #bb5711;
    padding: 5px 10px;
    margin-bottom: 10px !important;
    width: 100%;
}

.tab_basket button {
    list-style: none;
    background: #384248 none repeat scroll 0 0;
    display: block;
    border-radius: 5px;
    border: 1px solid #979797;
    line-height: 24px;
    padding: 10px;
    margin-bottom: 0px;
    font-weight: 600;
    color: #fff;
    text-align: left;
    background: #384248 url(./images/plus.png) 96.5% 30% no-repeat;
    cursor: pointer;
}

.open button {
    background: #384248 url(./images/minus.png) 96.5% 30% no-repeat
}

#data_cont {
    background: #384248;
    overflow: hidden;
}

.pencil_icon {
    background: none !important;
    float: right !important;
    width: auto !important;
    margin: 0 !important;
}

.delet_btn {
    background: none !important;
    float: left !important;
    width: auto !important;
    margin: 0 !important;
}

.add_customer .fa-pencil::before {
    content: "\f040" !important;
}

.basket_main ul:first-child {
    margin-top: 0px;
    padding-top: 25px;
}

.basket-processed li:first-child {
    float: left;
    padding: 0;
    width: auto !important;
}

.basket_main ul li:last-child {
    border: none !important;
    width: auto !important;
}

.customerdetails .rgt-img-section .add_customer .book-return {
    background: none !important;
    border-radius: 4px;
    cursor: pointer;
    padding: 10px;
    text-align: center;
    width: auto;
    color: #fff;
    float: left !important;
    margin-right: 0;
    margin-left: 0;
}

.basket_login {
    width: 51.5% !important;
    float: left;
    display: inherit;
}

.basket_inside {
    float: left;
    width: 100%;
}

.basket_login .rgt-img-section {
    float: right !important;
    margin: 0;
    width: 46% !important;
}

.sticky_padding #preamble .container .basket_login .rgt-img-section {
    float: right !important;
    margin: 0;
    width: 47.6% !important;
    background: rgba(34, 44, 51, 0.7) !important;
    padding: 20px;
}

/*.basket_login .basket_main ul {
	padding: 0 !important;
}*/
.basket_login h2 {
    margin: 0;
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 10px;
}

.basket_inside .bg-color4 {
    display: none;
}

.basket_login .add_customer a {
    cursor: pointer;
}

.basket_login .add_customer a:first-child {
    float: left;
    color: #fff;
    padding-right: 17px;
    display: inline-block;
    cursor: pointer;
}

.basket_login .add_customer a:nth-child(2n) {
    float: left;
    color: #fff;
    padding-right: 129px;
    cursor: pointer;
}

.basket_login .add_customer .meetblocktwo a:nth-child(2n) {
    float: left;
    color: #fff;
    padding-right: 0px;
    cursor: pointer;
}

.basket_main #only-one>section button {
    width: 100% !important;
}

.basket_inside>.custom-list {
    float: left;
    width: 100%;
    background: rgba(34, 44, 51, 0.7) !important;
}

.sticky_padding #preamble .basket_login {
    background: none !important;
}

#data_cont {
    padding: 0 15px;
}

.tab_basket ul {
    padding: 0 !important;
}

#preamble.customerdetails .container .card {
    background: none !important;
}

.recent-one {
    float: left;
    width: 100%;
    background: #384248 none repeat scroll 0 0;
    padding: 20px;
}

.recent-journey {
    background: rgba(34, 44, 51, 0.7) !important;
}

.recent_two {
    float: left;
    width: 100%;
    background: #384248 none repeat scroll 0 0;
    padding: 20px;
}

.recent-journey-two {
    background: rgba(34, 44, 51, 0.7) !important;
}

#preamble.customerdetails .instant-quote {
    padding: 0;
}

.book-return {
    color: #fff !important;
}

.delet_btn.deletejourney {

    color: #fff !important;
}

.recent-one .bg-color4>span {
    padding-bottom: 15px;
    display: block;
}

.login-basket .tab_basket .add_customer a {
    color: #5bc7e9;
}

.login-basket .book-return {

    color: #fff !important;
}

.login-basket .delet_btn.deletejourney {
    color: #fff !important;
}

.login-basket .pencil_icon {
    color: #fff !important;
    padding-right: 0 !important;
}

.instant-quote .custom-list:first-child .bg-color4 span:first-child {
    display: block;
    padding: 5px 0;
    color: red;
}

.meetgreetblock {
    float: left;
    width: 76%;
}

.customerdetails .rgt-img-section .add_customer a:nth-child(2n) {
    background: rgba(0, 0, 0, 0) linear-gradient(to bottom, #1e2e42 0%, #111b28 100%) repeat scroll 0 0;
    border-radius: 4px;
    cursor: pointer;
    padding: 10px;
    text-align: center;
    width: auto;
    color: #fff;
    float: right;
    margin-right: 0;
    margin-left: 0;
}

.meetblocktwo {
    float: right;
    width: 15%;
}

.login-basket .container .rgt-img-section {
    width: 47.6% !important;
    float: left !important;
}

.login-basket .container .basket_login {
    float: right;
}

.outbond_one .instant-form #carform .help-inline {
    position: absolute;
    color: red;
    text-shadow: none !important;
    top: -2px;
    font-size: 11px !important;
}

.customerdetails .container .rgt-img-section {
    float: left;
}

.basket-processed input {
    height: 30px;
    margin-bottom: 15px;
}

.basket-processed .btn {
    height: auto;
    padding: 7px 10px !important;
    margin-left: 6px !important;
}

.basket-processed input[type="checkbox"] {
    margin-top: 4px;
    height: auto;
}

#errMsg {
    position: absolute;
    top: -28px;
    font-size: 12px;
    color: red;
    width: 200px;
    left: -17px;
}

#mobileno {
    position: absolute;
    left: 0;
    top: 28px;
    border: none;
    background: #f2f2f2;
    width: 46px;
    height: 33px;
    border-radius: 5px 0px 0px 5px;
}

.basket_title_one .country-list {
    width: 320px;
}

.basket_title_one .country-list span {
    position: inherit;
    margin: 0;
    padding: 0;
    background: none;
    top: 0;
}

.basket_title_one .country-list li {
    width: 100% !important;
    float: left !important;
    margin-bottom: 0;
}

.basket_title_one .country-list li {
    width: 100% !important;
    float: left !important;
}

.login-basket .validate ul.basket_title li:last-child {
    width: 47% !important;
}

.basket_one .help-inline {
    color: red !important;
    /*position: absolute;*/
    left: 0;
    top: -10px;
    font-size: 12px !important;
    display: block;
}

.basket_one .basket_title li:first-child label {
    display: none !important;
}

.mb-class .help-inline {
    top: -15px;
}

#popupfoot .close {
    float: left;
    color: #fff !important;
    text-shadow: none !important;
    font-size: 14px !important;
    font-weight: normal;
    opacity: inherit;
    line-height: 23px;
    padding-right: 10px;
    padding-left: 0 !important;
}

#popupfoot .agree {
    float: none;
    display: inline-block;
    padding-left: 10px;
    color: #fff !important;
}

.basket-processed span {
    float: right;
    line-height: 30px;
    width: 100%;
    text-align: right;
    font-size: 17px;
}

.basket-processed div span {
    float: left;
    width: auto;
    text-align: left;
    font-size: 15px;
    padding-right: 10px;
    padding-top: 4px;
}

.basket-processed div {
    margin-top: 14px;
    /*float: left;*/
    width: 100%;
}

.basket-processed li:nth-child(2n) {
    float: left;
    width: auto !important;
    padding-left: 5px;
}

.term_link {
    color: #5bc7e9;
}

.term_link:hover {
    color: #5bc7e9;
}



.less_hour .modal-dialog .close {
    position: absolute;
    right: 15px;
    top: 3px;
    display: block;
}

.less_hour .modal-dialog {
    margin: 15% auto 0% auto;
}

.less_hour .modal-dialog {
    padding: 50px;
    width: 650px;
    background: none;
    max-width: 750px;
}

.less_hour .modal-footer {
    padding: 5px 1rem;
}

.warning p {
    color: #ff0000;
    margin: 0px;
}

.warning_btn {
    background: rgba(0, 0, 0, 0) linear-gradient(to bottom, #1e2e42 0%, #111b28 100%) repeat scroll 0 0;
    color: #fff;
    border-radius: 5px;
}

.dataTables_length label,
.dataTables_filter label {
    color: #fff;
}

#voucher_err,
#termcheckerr,
#pin_err {
    font-size: 12px;
    color: #ff0000;
    margin: -4px 0px 0 0px;
    line-height: 15px;
    text-align: left;
    float: none;
    display: block;
}

.error_n {
    position: relative;
    float: left;
}

.link_btn_n {
    color: #5bc7e9 !important;
    font-size: 14px;
    font-weight: normal;
    display: block;
    text-align: left;
}

.dataTables_length label,
.dataTables_filter label {
    font-weight: normal !important;
}

.login_main .btn {
    font-size: 1rem;
    font-weight: normal;
    text-transform: capitalize;
}

.color_blue {
    color: #5bc7e9 !important;
}

.regis_cont_l {
    margin: 10px 0 0 0px;
    float: left;
}

.intl-tel-input.allow-dropdown.separate-dial-code .selected-flag {
    background-color: rgba(0, 0, 0, 0.05);
    display: table-caption !important;
    padding: 6px 0 5px 5px !important;
}

.select_count1 {
    margin: 10px 0 0 0;
}

.field_required:after {
    color: #d00;
    position: absolute;
    margin-left: 2px;
    font-family: 'FontAwesome';
    font-weight: normal;
    font-size: 10px;
    content: "\f069";
}

.align_f {
    float: left;
    margin: 5px 10px 6px 0px;
}

/*.basket_one i{font-size: 18px;font-weight: 100; color: #333; margin: 0 10px 0 0px; min-width: 35px;text-align: center;background: #fff; padding: 7px 6px; border-radius: 4px;}*/
.basket_one i {
    font-size: 20px;
    font-weight: 100;
    color: #fff;
    margin: 0 10px 0 0px;
    min-width: 35px;
    text-align: center;
    /* background: #fff; */
    padding: 7px 6px;
    border-radius: 4px;
}

.it_space {
    width: 90px;
}

.contact_us .help-inline {
    position: inherit;
}

.align_n_i {
    display: inline-block;
    margin: 0px 0 0 0;
    line-height: 18px;
    padding: 0 0 0 30px;
}

.pickup::before {
    background: rgba(0, 0, 0, 0) url(./images/flag1.png) no-repeat scroll right center;
    content: "";
    height: 20px;
    position: absolute;
    right: 0;
    width: 20px;
}

.drop_off::before {
    content: '';
    background: rgba(0, 0, 0, 0) url(./images/flag2.png) no-repeat scroll right center;
    height: 20px;
    position: absolute;
    right: 0;
    width: 20px;
}


.pickup,
.drop_off,
.waypoint {
    width: 20px;
    position: relative;
    margin: 0 0 0 -28px;
}

a.cancel-booking {
    color: #ff0000;
    margin: 2px 7px;
    display: inline-block;
    font-size: 18px;
}

a.amend-booking {
    color: #000;
    margin: 2px 7px;
    display: inline-block;
    font-size: 18px;
}

.waypoint::before {
    background: rgba(0, 0, 0, 0) url(./images/flag3.png) no-repeat scroll right center;
    content: "";
    height: 20px;
    position: absolute;
    right: 0;
    width: 20px;
}

.success_p {
    padding: 20px;
    color: #fff;
}

.detail_in {
    width: 100%;
    display: block;
}

.detail_in h3 {
    text-align: left;
}

.detail_in ul {
    width: 100%;
    display: block;
}

.detail_in ul li {
    width: 100%;
    display: block;
    border-top: solid thin #ccc;
    padding: 5px;
    border-left: solid thin #ccc;
    border-right: solid thin #ccc;
}

.detail_in ul li .hedding_text_n {
    display: inline-block;
    width: 50%;
    border-right: solid thin #ccc;
    padding: 0 0 0 20px;
}

.detail_in ul li .info_text_n {
    display: inline-block;
    text-align: left;
    width: 48%;
    padding: 0 0 0 20px;
}

.detail_in ul li:last-child {
    border-bottom: solid thin #ccc;
}

.cta_link {
    float: right;
    margin: -30px 0 0 0;
    color: #fff;
}

.success_n {
    color: #097E00 !important;
}

.fail_n {
    color: #CB0000 !important;
}

.line_space_n {
    display: block;
    margin: 10px 0px;
}

.front_n_p .pickup,
.front_n_p .drop_off,
.front_n_p .waypoint {
    margin: 4px 10px 0 0px;
    float: left;
}

.front_n_p p {
    display: inline-block;
    margin: 0 0 0 15px;
    width: 84%;
}

.icon_cal_n {
    display: inline-block;
    font-size: 20px;
    margin: 0 10px 0 0;
}

#amendBookingModal h4.modal-title {
    margin-top: 0px;
    font-size: 18px !important;
    font-weight: bold;
}

#amendBookingModal .modal-body {
    padding: 0rem 1rem;
}

#amendBookingModal .table td,
#amendBookingModal .table th {
    padding: 5px .75rem;
    font-size: 13px;
}

.add-way .new_st {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0 !important;
    color: #aaaeb0 !important;
    height: auto !important;
    padding-top: 2px !important;
    box-shadow: none;
    text-transform: uppercase !important;
    padding: 5px 10px !important;
}

#cancelBookingModal h4.modal-title {
    margin-top: 0px;
    font-size: 18px !important;
    font-weight: bold;
}

#cancelBookingModal .modal-body {
    padding: 0rem 1rem;
}

#cancelBookingModal .table td,
#cancelBookingModal .table th {
    padding: 5px .75rem;
    font-size: 13px;
}

.add-way .new_st {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0 !important;
    color: #aaaeb0 !important;
    height: auto !important;
    padding-top: 2px !important;
    box-shadow: none;
    text-transform: uppercase !important;
    padding: 5px 10px !important;
}



.pick_n {}

.pick_n span {
    font-weight: bold;
    margin: 0 15px 0 0px;
    float: left;
}

.pick_n p {
    color: #333 !important;
    width: 80%;
    display: inline-block;
}

.fa-people-arrows:before {
    content: "\e068";
}



table.ne_de_n thead th,
table.ne_de_n thead td {
    background: #5bc7e9;
}

table.ne_de_n thead .sorting_asc {
    width: 100px;
}

.ne_de_n tbody tr:nth-of-type(odd) {
    background-color: #eaeaea;
    color: #000;
    font-size: 13px;
}

.ne_de_n tbody tr:nth-of-type(even) {
    background-color: #fff;
    color: #000;
    font-size: 13px;
}

.n_btn_icon {
    font-size: 14px;
    text-align: center;
    width: 100%;
}

.n_btn_icon_a {
    font-size: 12px;
    line-height: 16px;
    text-align: center;
}

.gm-style-mtc label {
    margin: 5px 0 0 0;
}

.gm-style-mtc div:first-child {
    width: 114px
}



/*
@media only screen and (max-width: 760px), (min-device-width: 768px) and (max-device-width: 1024px)  {
		
table, thead, tbody, th, td, tr {display: block;}


thead tr {
position: absolute;
top: -9999px;
left: -9999px;
}
tr {margin: 0 0 1rem 0;}
tr:nth-child(odd) {background: #fff;}
td {border: none;border-bottom: 1px solid #eee;position: relative;padding-left: 50%;}
td:before {	position: absolute;top: 0;	left: 6px;			width: 45%;	padding-right: 10px;white-space: nowrap;}


td:nth-of-type(1):before { content: "REF. #"; }
td:nth-of-type(2):before { content: "Journey Date"; }
td:nth-of-type(3):before { content: "Journey Type"; }
td:nth-of-type(4):before { content: "Trip"; }

	
.short_box th, .short_box td{width: 100%; text-align: right;}
.short_box th:nth-child(2), .short_box td:nth-child(2) {width: 100%; text-align: right;}
.short_box th:nth-child(4), .short_box td:nth-child(4){width:100%;}
.short_box th:nth-child(5), .short_box td:nth-child(5){width:100%;}
.short_box table tr.solid-line:last-child {border-bottom:none;}
.short_box td:before{ color: #C0902C;}	


}

*/
.estimate_n {
    width: 90%;
    display: inline-block;
}

#removevoucher {
    background: rgba(0, 0, 0, 0) linear-gradient(to bottom, #1e2e42 0%, #111b28 100%) repeat scroll 0 0;
    border-radius: 4px;
    cursor: pointer;
    padding: 10px !important;
    text-align: center;
    width: auto;
    display: inline-block;
    font-size: 1rem;
    line-height: 1.1em;
    margin-left: 0px !important;
}

.bg-color-success {
    background-color: rgb(37 125 26);
    padding: 5px 10px;
    margin-bottom: 10px !important;
}

#editconfirmloc {
    background: rgba(0, 0, 0, 0) linear-gradient(to bottom, #1e2e42 0%, #111b28 100%) repeat scroll 0 0;
    border: medium none !important;
    border-radius: 4px;
    color: #fff;
    font-size: 1rem;
    font-weight: 400 !important;
    /* height: 40px; */
    padding: 10px !important;
    transition: all 0.3s ease 0s;
    float: right;
    margin: 10px 0;
    text-transform: capitalize;
    line-height: 1.1em;
    width: auto;
}

.front_n_p b {
    float: left;
}

.alert-success h4 {
    text-shadow: none !important;
    color: #155724;
}

.drop-aro {
    display: none;
}

.top_edit_q {
    float: right;
    width: 12% !important;
}

.top_edit_q .fa-pencil::before {
    content: "\f040" !important;
}

.side_nav_active {
    background: rgb(91 199 233);
}

.intl-tel-input {
    width: 100%;
}

.print-booking {
    color: #000;
    margin: 2px 3px;
    display: inline-block;
    font-size: 18px;
}

.icon {
    margin: 0 10px 0 0px;
    width: 16px;
    color: #666 !important;
}

.icon_way {
    margin: 0 10px 0 0px;
    width: 16px;
    color: #ffea00 !important;
}

.icon_pick {
    margin: 0 10px 0 0px;
    width: 16px;
    color: #269f32 !important;
}

.icon_drop {
    margin: 0 10px 0 0px;
    width: 16px;
    color: #f94d4d !important;
}

.airpot h2 {
    color: #333 !important;
}

.new_b_link {
    text-align: right;
    position: absolute;
    right: 15px;
    top: 0px;
}

.new_b_link a {
    background: #1e2e42;
    background: -moz-linear-gradient(top, #1e2e42 0%, #111b28 100%);
    background: -webkit-linear-gradient(top, #1e2e42 0%, #111b28 100%);
    background: linear-gradient(to bottom, #1e2e42 0%, #111b28 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1e2e42', endColorstr='#111b28', GradientType=0);
    border: medium none !important;
    color: #fff;
    font-size: 1rem;
    font-weight: 400 !important;
    height: 40px;
    padding: 10px !important;
    transition: all 0.3s ease 0s;
    border-radius: 4px;
}

.quo {
    right: 15px;
    top: 10px;
    position: inherit;
    margin: 0 0 20px 0;
}

#quotes-list_filter {
    margin: 0 161px 0 0;
}

.dataTables_filter {
    margin: 0 0px 0 0 !important;
}

.quo_pro {
    text-align: right;
    float: right;
    width: auto;
    position: inherit;
    margin: 0px 0px 20px 0px;
}

.book_b_btn {
    background: rgba(0, 0, 0, 0) linear-gradient(to bottom, #1e2e42 0%, #111b28 100%) repeat scroll 0 0 !important;
    border: medium none !important;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 400 !important;
    /* height: 40px; */
    padding: 10px !important;
    transition: all 0.3s ease 0s;
    text-transform: capitalize;
    line-height: 1.1em;
    color: #fff !important;
}

.book_b_btn a {
    color: #fff !important;
}

.g-recaptcha div {
    width: 100% !important;
}

.cap_rt {
    color: red;
    display: block;
    float: left;
    width: 90%;
    margin: 0px 10px 10px 0px;
}

.basket_main .basket_title_one .f_li {
    width: 100% !important;
}

.space_t12 {
    margin: 30px 0px 10px 0px;
}


.other_feture {
    margin: 20px 0 0 0;
}

.other_feture span {
    margin: 0px 0 0 20px;
    color: #fff;
}

.other_feture .oth {
    background: #1e2e42;
    background: -moz-linear-gradient(top, #1e2e42 0%, #111b28 100%);
    background: -webkit-linear-gradient(top, #1e2e42 0%, #111b28 100%);
    background: linear-gradient(to bottom, #1e2e42 0%, #111b28 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1e2e42', endColorstr='#111b28', GradientType=0);
    border: medium none !important;
    color: #fff;
    font-size: 1rem;
    font-weight: 400 !important;
    height: 40px;
    padding: 10px !important;
    transition: all 0.3s ease 0s;
    border-radius: 4px;
}

.other_feture p {
    margin: 0 0 0 0;
}

.panel-title>a:before {
    float: right !important;
    font-family: FontAwesome;
    content: "\f068";
    padding-right: 5px;
}

.panel-title>a.collapsed:before {
    float: right !important;
    content: "\f067";
}

.panel-title>a:hover,
.panel-title>a:active,
.panel-title>a:focus {
    text-decoration: none;
}

.pan_t_n .panel-title {
    display: inline-block;
    width: 20%;
    margin: 20px 0 0 0;
}

.pan_t_n .panel-title a {
    color: #fff;
    font-size: 14px;
}

.pan_t_n .c_l tr:first-child {
    background: #5bc7e9;
    color: #fff;
    font-weight: bold;
}

.pan_t_n .c_l {
    color: #fff;
}

#transaction-bookings-list tr td:nth-child(5) {
    word-break: break-all !important;
    width: 210px;
}

.pan_t_n .c_l tr td:nth-child(4) {
    word-break: break-all;
}

.pan_t_n .panel-title>a:before {
    margin-top: 5px;
}

.nav_new {
    display: block !important;
}

.compl {
    color: #ff0a0a;
    font-weight: bold;
}

.customerdetails .map_text {
    margin-bottom: 10px;
}

.pasenger_detail_two .map_text {
    margin-bottom: 10px;
}

.basket_one_1 {
    float: left;
    width: 100%;
    padding: 10px 0;
    padding-bottom: 0px;
}

.basket_one_1 i {
    position: absolute;
    left: 24px;
    font-size: 11px;
    top: -7px;
}

.remove_gap {
    padding-right: 15px;
    padding-left: 15px;
}

.add_fl {
    display: flex;
}

.chang_po_1 {
    float: none;
    order: 1;
}

.chang_po {
    float: none;
    order: 2;
}

.b_rt {
    background: var(--primary-color) !important;
    transition: all 0.3s ease;
    border-radius: 4px;
    cursor: pointer;
    padding: 7px 10px;
    text-align: center;
    width: auto;
    float: right !important;
}

.b_rt:hover {
    background: var(--touch-color) !important;
    transform: translateY(-2px);
}

.inbound_airpot_three p,
.inbound_airpot_two p {
    color: #000;
}

.airpot h2 {
    color: #fff !important;
}

.inbound_airpot_two p,
.inbound_airpot_one p,
.inbound_airpot_three p {
    color: #000;
}

.out_bond_one .airpot h2 {
    color: #fff !important;
}

.customerdetails .rgt-img-section .add_customer .addbookreturn {
    background: rgba(0, 0, 0, 0) linear-gradient(to bottom, #1e2e42 0%, #111b28 100%) repeat scroll 0 0 !important;
    color: #fff;
}




.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    color: white !important;
    border: 1px solid #5bc7e9 !important;
    background-color: #5bc7e9 !important;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5bc7e9), color-stop(100%, #5bc7e9)) !important;
    background: -webkit-linear-gradient(top, #5bc7e9 0%, #5bc7e9 100%) !important;
    background: -moz-linear-gradient(top, #585858 0%, #111 100%) !important;
    background: -ms-linear-gradient(top, #585858 0%, #111 100%) !important;
    background: -o-linear-gradient(top, #585858 0%, #111 100%) !important;
    background: linear-gradient(to bottom, #5bc7e9 0%, #5bc7e9 100%) !important;
}

.dataTables_paginate .active {
    color: white !important;
    border: 1px solid #5bc7e9 !important;
    background-color: #5bc7e9 !important;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5bc7e9), color-stop(100%, #5bc7e9)) !important;
    background: -webkit-linear-gradient(top, #5bc7e9 0%, #5bc7e9 100%) !important;
    background: -moz-linear-gradient(top, #585858 0%, #111 100%) !important;
    background: -ms-linear-gradient(top, #585858 0%, #111 100%) !important;
    background: -o-linear-gradient(top, #585858 0%, #111 100%) !important;
    background: linear-gradient(to bottom, #5bc7e9 0%, #5bc7e9 100%) !important;
}

.mob_sc .form-inline {
    display: block;
}

.scheduled_mob_sc .form-inline {
    display: block;
}

div.dataTables_wrapper div.dataTables_length select {
    margin: 0 10px;
}

.pagination a {
    color: #fff !important;
}

table.dataTable.dtr-inline.collapsed>tbody>tr>th.child,
table.dataTable.dtr-inline.collapsed>tbody>tr>td.dataTables_empty {
    cursor: default !important;
    background: #fff !important;
}

#quotes-list table.dataTable>tbody>tr.child:hover {
    background: #fff !important;
}

.logo_card_icon {
    width: 275px !important;
    display: inline-block;
    margin: 0 0 10px -10px;
    background: #fff;
    padding: 5px !important;
}

#preamble .container .logo_card_icon img {
    width: 265px;
    margin: 0px !important;
}

.high_am {
    border: 1px solid #f94d4d;
}

#otb_edit_vehicle {
    display: block;
}

.new_era {
    text-align: right;
    color: #59bfe0;
    position: absolute;
    right: 30px;
}

.dt_row {
    display: block !important;
}

.alert {
    position: relative;
    padding: 2px !important;
}

.ntd td:first-child {
    width: 150px;
    color: #fff;
}

.ntd td:nth-child(2) {
    width: 150px;
    color: #fff;
}

.com_t_btn {
    background: var(--primary-color);
    transition: all 0.3s ease;
    border: medium none !important;
    color: #fff;
    font-size: 1rem;
    font-weight: 400 !important;
    height: 40px;
    padding: 10px !important;
    border-radius: 4px;
}

.com_t_btn:hover {
    background: var(--touch-color) !important;
    transform: translateY(-2px);
}



.preamble .airpot h3 {
    text-align: left;
    font-weight: normal;
}

@media screen and (max-width:767px) {
    #preamble .container .logo_card_icon img {
        width: 100%;
        margin: 0px !important;
    }

    #booking-journey-data .table tbody td {
        font-weight: normal;
        width: 100% !important;
        display: block;
    }

    .show span {
        color: black;
        margin-left: 0em;
    }

    table.dataTable>tbody>tr.child span.dtr-title {
        display: inline-block;
        min-width: 100% !important;
    }

    .table tbody td {
        font-weight: normal;
        word-break: break-word;
        font-size: 11px;
    }

    #quotes-list table.dataTable>tbody>tr.child:hover {
        background: white !important;
    }

    .pan_t_n .c_l tr td:nth-child(4) {
        word-break: inherit;
    }

    .book_one {
        padding: 16px 10px;
    }

    .detail_in ul li .info_text_n {
        word-break: break-word;
    }

    #bookingJourneyModal .table tbody td,
    #amendBookingModal .table tbody td,
    #cancelBookingModal .table tbody td {
        display: block;
        width: 100%;
    }

    .logo_card_icon {
        width: 100% !important;
        display: inline-block;
        margin: 0 0 10px 0px;
    }

    .customerdetails .rgt-img-section .add_customer .book-return {
        /*float: right!important;*/
    }

    .basket-processed ul li {
        margin: 5px 0px;
        float: left !important;
    }

    .basket-processed .mob_tnce {
        float: none !important;
        /*margin: 0 auto;*/
        width: 100% !important;
        display: inherit !important;
    }

    .quo_pro {
        margin: 10px 0px 20px 0px;
        right: 0px;
    }

    .mob_fl_mar {
        padding-right: 7px;
        padding-left: 7px;
    }

    .zero_flud_mar {
        padding-right: 0px;
        padding-left: 0px;
    }

    .faq .card .head_class h3 {
        padding-left: 0px;
    }

    .sticky_padding .container .card {
        padding: 10px;
    }

    .term_page .card .head_class h3 {
        padding-left: 0px;
    }

    table.table-bordered.dataTable tbody th,
    table.table-bordered.dataTable tbody td {
        word-break: break-word;
    }

    /***** nx-foot-logo ****/
    .testfooter .col-md-2.image {
        text-align: center;
    }

    .testfooter .col-md-2.image img {
        /***** nx-lpcha ****/
        width: 35%;
        /***** End of nx-lpcha ****/
        margin-left: -85px;
    }

    /***** End of nx-foot-logo ****/
    /***** nx-lpcha ****/
    .testfooter .col-md-2.image.foot-img3 img {
        width: 30%;
    }

    /***** End of nx-lpcha ****/
}

/***** nx-usps_box *****/
.usps_text {
    font-style: oblique;
    /*padding: 10px;*/
    font-size: larger;
    margin-left: 10px;
    display: table-cell;
    color: #5BC7E9;
    vertical-align: middle;
    font-weight: bold;
}

.container .usps.image-section.rgt-img-section {
    min-block-size: auto;
    padding: 0px 10px;
}

.usps .car_img {
    text-align: center;
    width: 100px;
}

.usps .car_img i {
    font-size: 25px;
}

.usps ul {
    margin-block-start: 0;
}

.usps .text-left {
    margin-bottom: 0;
}

.image-section.rgt-img-section {
    min-height: 412px;
}

/***** End of nx-usps_box *****/

/***** nx-foot-logo ****/
.foot-out {
    display: flex;
    align-items: center;
}

/***** End of nx-foot-logo ****/

/***** nx-lpcha ****/
.col-md-2.image.foot-img3 {
    text-align: center;
}

.col-md-2.image.foot-img3 img {
    width: 85%;
    margin-top: 30px;
}

/***** End of nx-lpcha ****/

/***** nx-blog-corrections *****/
@media (max-width: 350px) {
    #top-bar .container .row .col-lg-6.right .whatsapp {
        display: block;
    }
}

@media (min-width: 350px) {
    .logo-size {
        margin-top: 30px;
    }
}

/***** End of nx-blog-corrections *****/

/***** nx-minor *****/
.minor_passanger {
    margin-top: 20px;
}

.otb_mw p {
    font-size: 14px;
    padding-left: 20px;
}

.inb_mw p {
    font-size: 14px;
    padding-left: 20px;
}

.outbontdetail .minor_passanger .form-row a {
    float: left;
}

/***** End of nx-minor *****/

.review-widget {
    height: 200px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.review-widget .book_online {
    width: auto;
    background: none;
}

.review-widget .airpot {
    background: none;
    width: 20%;
}

/** FAQ styling */
.faq_7 * {
    font-family: Nunito, sans-serif;
}

.faq_7 .text-blk {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    line-height: 25px;
}

.faq_7 .faq {
    display: block;
    flex-direction: column;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #aaaaaa;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 25px;
    margin-left: 0px;
}

.faq_7 .faq-question-container {
    display: flex;
    justify-content: space-between;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 20px;
    margin-left: 0px;
}

.faq_7 .faq-question-container:hover {
    cursor: pointer;
}

.faq_7 .text-blk.faq-questions {
    color: #525252;
    font-size: 20px;
}

.faq_7 .text-blk.faq-answer {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 20px;
    color: #9c9c9c;
    font-size: 18px;
    line-height: 26px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 20px;
    margin-left: 0px;
}

.faq_7 .answer-box {
    max-height: 0px;
    overflow-x: hidden;
    overflow-y: hidden;
    transition-duration: 0.5s;
    transition-timing-function: ease;
    transition-delay: 0s;
    transition-property: max-height;
}

.faq_7 .faq.active .openimg {
    transform: rotate(180deg);
}

.faq_7 .openimg {
    transition-duration: 0.3s;
    transition-timing-function: ease-in;
    transition-delay: 0s;
    transition-property: transform;
}

.faq_7 .faq.active .answer-box {
    max-height: 550px;
}

@media (max-width: 1024px) {
    .faq_7 .text-blk.faq-answer {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .faq_7 .faq-dropdown-bg {
        padding-top: 50px;
        padding-right: 60px;
        padding-bottom: 50px;
        padding-left: 60px;
    }

    .faq_7 .text-blk.faq-questions {
        font-size: 18px;
    }

    .faq_7 .text-blk.faq-answer {
        font-size: 16px;
    }

}

@media (max-width: 500px) {
    .faq_7 .text-blk.faq-answer {
        padding-top: 0px;
        padding-right: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
        line-height: 22px;
        font-size: 16px;
    }

    .faq_7 .text-blk.faq-questions {
        font-size: 18px;
    }

}