/*Location Drop Home Search*/
.select2-container {
    margin: 0;
    position: relative;
    display: inline-block;
    /* inline-block for ie7 */
    zoom: 1;
    *display: inline;
    vertical-align: middle;
}

.select2-container,
.select2-drop,
.select2-search,
.select2-search input {
    /*
    Force border-box so that % widths fit the parent
    container without overlap because of margin/padding.

    More Info : http://www.quirksmode.org/css/box.html
  */
    -webkit-box-sizing: border-box; /* webkit */
    -moz-box-sizing: border-box; /* firefox */
    box-sizing: border-box; /* css3 */
}

    .select2-container .select2-choice {
        display: block;
        height: 26px;
        padding: 0 0 0 8px;
        overflow: hidden;
        position: relative;
        border: 1px solid #aaa;
        white-space: nowrap;
        line-height: 26px;
        color: #444;
        text-decoration: none;
        border-radius: 4px;
        background-clip: padding-box;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        background-color: #fff;
        background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.5, #fff));
        background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 50%);
        background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 50%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#eeeeee', GradientType = 0);
        background-image: linear-gradient(top, #fff 0%, #eee 50%);
    }

    .select2-container.select2-drop-above .select2-choice {
        border-bottom-color: #aaa;
        border-radius: 0 0 4px 4px;
        background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.9, #fff));
        background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 90%);
        background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 90%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
        background-image: linear-gradient(top, #eee 0%, #fff 90%);
    }

    .select2-container.select2-allowclear .select2-choice .select2-chosen {
        margin-right: 42px;
    }

    .select2-container .select2-choice > .select2-chosen {
        margin-right: 26px;
        display: block;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .select2-container .select2-choice abbr {
        display: none;
        width: 12px;
        height: 12px;
        position: absolute;
        right: 24px;
        top: 8px;
        font-size: 1px;
        text-decoration: none;
        border: 0;
        background: url('select2.png') right top no-repeat;
        cursor: pointer;
        outline: 0;
    }

    .select2-container.select2-allowclear .select2-choice abbr {
        display: inline-block;
    }

    .select2-container .select2-choice abbr:hover {
        background-position: right -11px;
        cursor: pointer;
    }

.select2-drop-mask {
    border: 0;
    margin: 0;
    padding: 0;
    position: fixed;
    left: 0;
    top: 0;
    min-height: 100%;
    min-width: 100%;
    height: auto;
    width: auto;
    opacity: 0;
    z-index: 9998;
    /* styles required for IE to work */
    background-color: #fff;
    filter: alpha(opacity=0);
}

.select2-drop {
    width: 100%;
    margin-top: -1px;
    position: absolute;
    z-index: 9999;
    top: 100%;
    background: #fff;
    color: #000;
    border: 1px solid #aaa;
    border-top: 0;
    border-radius: 0 0 4px 4px;
    -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
    box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
}

.select2-drop-auto-width {
    border-top: 1px solid #aaa;
    width: auto;
}

    .select2-drop-auto-width .select2-search {
        padding-top: 4px;
    }

.select2-drop.select2-drop-above {
    margin-top: 1px;
    border-top: 1px solid #aaa;
    border-bottom: 0;
    border-radius: 4px 4px 0 0;
    -webkit-box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
    box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
}

.select2-drop-active {
    border: 1px solid #cccccc;
    border-top: none;
}

.select2-drop.select2-drop-above.select2-drop-active {
    border-top: 1px solid #cccccc;
}

.select2-container .select2-choice .select2-arrow {
    display: inline-block;
    width: 18px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    border-left: 1px solid #aaa;
    background-clip: padding-box;
    background: #ccc;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ccc), color-stop(0.6, #eee));
    background-image: -webkit-linear-gradient(center bottom, #ccc 0%, #eee 60%);
    background-image: -moz-linear-gradient(center bottom, #ccc 0%, #eee 60%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#eeeeee', endColorstr = '#cccccc', GradientType = 0);
    background-image: linear-gradient(top, #ccc 0%, #eee 60%);
}

    .select2-container .select2-choice .select2-arrow b {
        display: block;
        width: 100%;
        height: 100%;
        background: url('select2.png') no-repeat 0 1px;
    }

.select2-search {
    display: inline-block;
    width: 100%;
    min-height: 26px;
    margin: 0;
    padding-left: 4px;
    padding-right: 4px;
    position: relative;
    z-index: 10000;
    white-space: nowrap;
}

    .select2-search input {
        width: 100%;
        height: auto !important;
        min-height: 26px;
        padding: 4px 20px 4px 5px;
        margin: 0;
        outline: 0;
        font-family: sans-serif;
        font-size: 1em;
        border: 1px solid #aaa;
        border-radius: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
        background: #fff url('select2.png') no-repeat 100% -22px;
        background: url('select2.png') no-repeat 100% -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
        background: url('select2.png') no-repeat 100% -22px, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
        background: url('select2.png') no-repeat 100% -22px, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
        background: url('select2.png') no-repeat 100% -22px, linear-gradient(top, #fff 85%, #eee 99%);
    }

.select2-drop.select2-drop-above .select2-search input {
    margin-top: 4px;
}

.select2-search input.select2-active {
    background: #fff url('select2-spinner.gif') no-repeat 100%;
    background: url('select2-spinner.gif') no-repeat 100%, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
    background: url('select2-spinner.gif') no-repeat 100%, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url('select2-spinner.gif') no-repeat 100%, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url('select2-spinner.gif') no-repeat 100%, linear-gradient(top, #fff 85%, #eee 99%);
}

.select2-container-active .select2-choice,
.select2-container-active .select2-choices {
    border: 1px solid #5897fb;
    outline: none;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
    box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}

.select2-dropdown-open .select2-choice {
    border-bottom-color: transparent;
    -webkit-box-shadow: 0 1px 0 #fff inset;
    box-shadow: 0 1px 0 #fff inset;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background-color: #eee;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #fff), color-stop(0.5, #eee));
    background-image: -webkit-linear-gradient(center bottom, #fff 0%, #eee 50%);
    background-image: -moz-linear-gradient(center bottom, #fff 0%, #eee 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
    background-image: linear-gradient(top, #fff 0%, #eee 50%);
}

.select2-dropdown-open.select2-drop-above .select2-choice,
.select2-dropdown-open.select2-drop-above .select2-choices {
    border: 1px solid #5897fb;
    border-top-color: transparent;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(0.5, #eee));
    background-image: -webkit-linear-gradient(center top, #fff 0%, #eee 50%);
    background-image: -moz-linear-gradient(center top, #fff 0%, #eee 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
    background-image: linear-gradient(bottom, #fff 0%, #eee 50%);
}

.select2-dropdown-open .select2-choice .select2-arrow {
    background: transparent;
    border-left: none;
    filter: none;
}

    .select2-dropdown-open .select2-choice .select2-arrow b {
        background-position: -18px 1px;
    }

/* results */
.select2-results {
    max-height: 200px;
    padding: 0 0 0 4px;
    margin: 4px 4px 4px 0;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

    .select2-results ul.select2-result-sub {
        margin: 0;
        padding-left: 0;
    }

        .select2-results ul.select2-result-sub > li .select2-result-label {
            padding-left: 20px;
        }

.select2-result-label:hover {
    background-color: #eee;
}

.select2-results ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
    padding-left: 40px;
}

.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
    padding-left: 60px;
}

.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
    padding-left: 80px;
}

.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
    padding-left: 100px;
}

.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
    padding-left: 110px;
}

.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
    padding-left: 120px;
}

.select2-results li {
    list-style: none;
    display: list-item;
    background-image: none !important;
    padding: 0 !important;
}

    .select2-results li.select2-result-with-children > .select2-result-label {
        font-weight: bold;
    }

.select2-results .select2-result-label {
    padding: 3px 7px 4px;
    margin: 0;
    cursor: pointer;
    min-height: 1em;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.select2-results .select2-highlighted {
    background: #3875d7;
    color: #fff;
}

.select2-results li em {
    background: #feffde;
    font-style: normal;
}

.select2-results .select2-highlighted em {
    background: transparent;
}

.select2-results .select2-highlighted ul {
    background: #fff;
    color: #000;
}


.select2-results .select2-no-results,
.select2-results .select2-searching,
.select2-results .select2-selection-limit {
    background: #f4f4f4;
    display: list-item;
}

/*
disabled look for disabled choices in the results dropdown
*/
.select2-results .select2-disabled.select2-highlighted {
    color: #666;
    background: #f4f4f4;
    display: list-item;
    cursor: default;
}

.select2-results .select2-disabled {
    background: #f4f4f4;
    display: list-item;
    cursor: default;
}

.select2-results .select2-selected {
    display: none;
}

.select2-more-results.select2-active {
    background: #f4f4f4 url('select2-spinner.gif') no-repeat 100%;
}

.select2-more-results {
    background: #f4f4f4;
    display: list-item;
}

/* disabled styles */

.select2-container.select2-container-disabled .select2-choice {
    background-color: #f4f4f4;
    background-image: none;
    border: 1px solid #ddd;
    cursor: default;
}

    .select2-container.select2-container-disabled .select2-choice .select2-arrow {
        background-color: #f4f4f4;
        background-image: none;
        border-left: 0;
    }

    .select2-container.select2-container-disabled .select2-choice abbr {
        display: none;
    }


/* multiselect */

.select2-container-multi .select2-choices {
    height: auto !important;
    height: 1%;
    margin: 0;
    padding: 0;
    position: relative;
    border: 1px solid #aaa;
    cursor: text;
    overflow: hidden;
    background-color: #fff;
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eee), color-stop(15%, #fff));
    background-image: -webkit-linear-gradient(top, #eee 1%, #fff 15%);
    background-image: -moz-linear-gradient(top, #eee 1%, #fff 15%);
    background-image: linear-gradient(top, #eee 1%, #fff 15%);
}

.select2-locked {
    padding: 3px 5px 3px 5px !important;
}

.select2-container-multi .select2-choices {
    min-height: 26px;
}

.select2-container-multi.select2-container-active .select2-choices {
    border: 1px solid #5897fb;
    outline: none;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
    box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}

.select2-container-multi .select2-choices li {
    float: left;
    list-style: none;
}

.select2-container-multi .select2-choices .select2-search-field {
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

    .select2-container-multi .select2-choices .select2-search-field input {
        padding: 5px;
        margin: 1px 0;
        font-family: sans-serif;
        font-size: 100%;
        color: #666;
        outline: 0;
        border: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
        background: transparent !important;
    }

        .select2-container-multi .select2-choices .select2-search-field input.select2-active {
            background: #fff url('select2-spinner.gif') no-repeat 100% !important;
        }

.select2-default {
    color: #999 !important;
}

.select2-container-multi .select2-choices .select2-search-choice {
    padding: 3px 5px 3px 18px;
    margin: 3px 0 3px 5px;
    position: relative;
    line-height: 13px;
    color: #333;
    cursor: default;
    border: 1px solid #aaaaaa;
    border-radius: 3px;
    -webkit-box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
    background-clip: padding-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #e4e4e4;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#f4f4f4', GradientType=0);
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eee));
    background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-image: linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
}

    .select2-container-multi .select2-choices .select2-search-choice .select2-chosen {
        cursor: default;
    }

.select2-container-multi .select2-choices .select2-search-choice-focus {
    background: #d4d4d4;
}

.select2-search-choice-close {
    display: block;
    width: 12px;
    height: 13px;
    position: absolute;
    right: 3px;
    top: 4px;
    font-size: 1px;
    outline: none;
    background: url('select2.png') right top no-repeat;
}

.select2-container-multi .select2-search-choice-close {
    left: 3px;
}

.select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover {
    background-position: right -11px;
}

.select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close {
    background-position: right -11px;
}

/* disabled styles */
.select2-container-multi.select2-container-disabled .select2-choices {
    background-color: #f4f4f4;
    background-image: none;
    border: 1px solid #ddd;
    cursor: default;
}

    .select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice {
        padding: 3px 5px 3px 5px;
        border: 1px solid #ddd;
        background-image: none;
        background-color: #f4f4f4;
    }

        .select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close {
            display: none;
            background: none;
        }
/* end multiselect */


.select2-result-selectable .select2-match,
.select2-result-unselectable .select2-match {
    text-decoration: underline;
}

.select2-offscreen, .select2-offscreen:focus {
    clip: rect(0 0 0 0) !important;
    width: 1px !important;
    height: 1px !important;
    border: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    outline: 0 !important;
    left: 0px !important;
    top: 0px !important;
}

.select2-display-none {
    display: none;
}

.select2-measure-scrollbar {
    position: absolute;
    top: -10000px;
    left: -10000px;
    width: 100px;
    height: 100px;
    overflow: scroll;
}
/* Retina-ize icons */

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
    .select2-search input, .select2-search-choice-close, .select2-container .select2-choice abbr, .select2-container .select2-choice .select2-arrow b {
        background-image: url('select2x2.png') !important;
        background-repeat: no-repeat !important;
        background-size: 60px 40px !important;
    }

    .select2-search input {
        background-position: 100% -21px !important;
    }
}


.businnerdiv {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
}

.businnertable {
    border: 1px solid #8AA7B6;
    font: 14px/20px Arial, Helvetica, sans-serif;
    padding: 5px;
    margin: 0 auto;
}

.seat_panel {
    min-height: 150px;
    border: solid 1px #E0E0E0;
}

.busseattd {
    padding: 1px;
}

.seattitle {
    padding: 3px;
    background-color: #999999 !important;
	text-align:center;
}

.seattitlefont {
    color: #ffffff;
    font-weight: bold;
}

.seatsampleimg {
    vertical-align: -8px;
}

.seat_panel1 td {
    padding: 1px;
    font-size: 12px;
    line-height: 1.5;
}

td.hasNSeat, td.hasSeat {
    width: 50px !important;
}

.sseat {
    /*border: 1px solid #111;*/
    float: left;
    width: 34px;
    height: 34px;
    border-radius: 16%;
    margin: 2px 2px;
    padding: 7px 0 0 0;
    text-align: center;
}

.seat_available, .seat_availableV {
    cursor: pointer;
    color: #ffffff;
    font-weight: bold;
    background: url('https://operatorapi.busonlineticket.com/web/css/images/blue.png') no-repeat !important;
    background-size: contain,cover !important;
    background-color: none !important;
    border: none;
    color: Black;
    font-weight: 1000;
    text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
}

.seat_selected, .seat_selectedV {
    background: url('https://operatorapi.busonlineticket.com/web/css/images/green.png') no-repeat !important;
    background-size: contain,cover !important;
    background-color: none !important;
    color: Black !important;
    border: none;
    font-weight: 1000;
    text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
}

.subheader {
    background: #337ab7;
    color: white;
}

@media (min-width:1000px) {
    /*.seat_available:hover {
        background: url('../images/seat_selected1.png') no-repeat;
        background: #03CA42 !important;
        cursor: pointer;
        color: #ffffff;
        font-weight: bold;
    }*/
}

.seat_taken, .seat_takenV {
    /*background: url('../images/seat_unavailable1.png') no-repeat;*/
    background-color: #D5D5D5 !important;
    cursor: default;
    background: url('https://operatorapi.busonlineticket.com/web/css/images/grey.png') no-repeat !important;
    background-size: contain,cover !important;
    background-color: none !important;
    border: none;
    color: black;
    font-weight: 1000;
    text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
}

.seat_qty {
    color: #01bd01;
}

.seat_value {
    color: #01bd01;
}

.seat_amt {
    color: #01bd01;
}

.seat_panel1 td {
    padding: 1px;
    font-size: 12px;
    line-height: 1.5;
}

.enterdetailsbold {
    font-weight: bold;
}

#divLoading {
    position: fixed !important;
    display: none;
    top: 45%;
    left: 50%;
    z-index: 1000000 !important;
}

.ui-dialog .ui-dialog-titlebar-close span {
    margin: -8px !important;
}

/*************** Mobile Select Coach Page ********************/
.mbusqty {
    display: none;
}

.align-right {
    text-align: right;
}

.align-left {
    text-align: left;
}

.align-center {
    text-align: center;
}

.bold {
    font-weight: bold;
}

.busCurrency {
    display: none;
    color: Black;
}

.mbusprice {
    color: Black;
}

.mbuspriceS {
    color: #B22222;
}

.mbuspickup {
    font-size: 12px;
}

.mbusdropoff {
    font-size: 12px;
}

.mbustype {
    color: #0000FF;
}

.vertical-seats-bus tbody tr td {
    border-top: none !important;
}

/*vertical Payment Option*/


.vtab {
    float: left;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}

    /* Style the buttons inside the tab */
    .vtab span {
        display: block;
        background-color: inherit;
        color: black;
        padding: 14px 10px;
        width: 100%;
        border: none;
        outline: none;
        text-align: left;
        cursor: pointer;
        transition: 0.3s;
        font-size: 14px;
    }

        /* Change background color of buttons on hover */
        .vtab span:hover {
            background-color: #ddd;
        }

        /* Create an active/current "tab button" class */
        .vtab span.active {
            background-color: #ccc;
        }

        .vtab span i {
            margin-right: 5px;
        }
/* Style the tab content */
.vtabcontent {
    /*float: left;
    padding: 0px 12px;*/
    /*border: 1px solid #ccc;*/
	border: none !important;
    /*border-left: none;*/
    display: none;
}

.btn-pay-method {
    padding: 15px;
    margin: 15px 0;
    box-shadow: 1px 1px 3px 1px #f0f0f0;
    border: 1px solid #337ab7;
    border-radius: 5px;
    font-weight: 600;
    background: #fff;
    color: #337ab7;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#payment_method_mb .modal-header .close {
    color: white;
    opacity: 1;
    text-shadow: none;
}

#payment_method_mb .panel-body {
    padding: 10px 0 !important;
}

@media only screen and (max-width: 768px) { /*style.css*/
	
	/*Reduce the space between the title and table*/
    .panel {
        margin-top: -15px;
        margin-bottom: 15px !important;
    }

        .panel.panel-primary {
            margin: 5px;
        }
    span#lblPriceT {
        float: right;
    }

    /*span.enterdetailssideprice {
    float: right;
}*/

    /*Remove the line below the title*/
    /*#footer h4:after{
	height:0px;
}*/


    /*align the header information*/
    /*.navbar-nav {
    float: none;
}*/

    /* td.enterdetailstd9 { */
    /* width: 110px; */
    /* } */

    td.enterdetailstd9 {
        white-space: normal !important;
    }
	
	#pay_method .enterdetailspayicon {
        margin-left: 5px;
        /*margin-top: -5px; */
        height: auto;
        max-width: 100px; /*85px; */
    }
	
	input#btnDiscountCodeApply {
    display: block;
    margin-top: 10px;
}
    .text-right.col-lg-12.col-md-12.col-sm-12.col-xs-12 {
        text-align: center;
    }

    #contactInfo {
        float: none !important;
    }
a#lnkSelectSeat {
    float: right;
}
}

@media (max-width: 992px){
input#txtDiscountCode {
    width: 100% !important;
}
span#lblRoute,#lblRouteReturn {
    display: block;
}
.col-md-4.col-sm-4.col-xs-4.align-right i {
    display: inline-flex;
    float: right;
}
.tab_title{
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif !important;
text-decoration:none;
font-size:8px;
}
.page-title h1 {
    font-size: 16pt !important;
    font-weight: 700;
}
    /*background: url(fare-header-background.png) no-repeat bottom left;*/
    background: rgba(255,255,255,1);
    background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 50%, rgba(246,246,246,1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(50%, rgba(246,246,246,1)), color-stop(100%, rgba(246,246,246,1)));
    background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 50%, rgba(246,246,246,1) 100%);
    background: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 50%, rgba(246,246,246,1) 100%);
    background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 50%, rgba(246,246,246,1) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 50%, rgba(246,246,246,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f6f6f6', GradientType=0 );
    text-align: center;
    padding-top: 3px;
    cursor: pointer;
border-radius:6px;
}
#divmdepart h2, #divmreturn h2 {
    font-size: 15px;
    margin: 6px;
    color: #0000FF;
}
div#divTopDepart, #divTopReturn {
    text-align: center;
    margin: 10px;
    font-size: 15px;
}
    .link-de, .content-de {
        padding: 10px;
        cursor: pointer;
        font-size: 14px;
    }

    .link-de {
        color: #000000;
        font-weight: 600;
        /* border-top: 0.5px solid #e2e2e2; */
    }

        .link-de:hover {
            text-decoration: none;
        }
        /* .content-de {
        background: #f0f0f0;
    } */
        .link-de[aria-expanded="true"] .fa-angle-down,
        .link-de .fa-angle-up {
            display: none;
        }
        /* Jaja 29_01 */
        /* .link-de[aria-expanded="true"] .fa-angle-up, */
        .link-de .fa-angle-down {
            display: block;
        }

    .link-de-initial,
    .link-de-end {
        display: none;
    }

    .arrow-toggle {
        position: absolute;
        float: right;
        color: #b1b1b1;
        font-size: larger;
        right: 10px;
    }
	
	.textwidget img {
        margin-bottom: 4%;
    }

    /*Set the margin top to separate the payment row*/
    div#text-5 {
        margin-top: 0%;
    }
	div#pay_method a {
    color: #337AB6;
}
#divPayments .btn-pay-method {
    margin: 15px;
}
.align-center {
    margin-top: 10px;
}
}

#h5Insurance,.paymentTitle {
    padding: 10px !important;
    width: 100%;
    float: left;
    background: #337ab7;
    color: #fff;
}

.org_rate {
    position: relative;
    font-size: small;
    color: gray;
}

    .org_rate:before {
        position: absolute;
        content: "";
        left: 0;
        top: 50%;
        right: 0;
        border-top: 1px solid;
        border-color: inherit;
        -webkit-transform: rotate(-5deg);
        -moz-transform: rotate(-5deg);
        -ms-transform: rotate(-5deg);
        -o-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }
	
.navbar-collapse { /*not sure which one*/
    padding-right: 0px !important;
}

.nav { /*booking.css*/
    margin-right: -8px;
	padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

/*thicker the line*/ /*not sure which one*/
#footer h4:before, #footer h4:after {
    height: 2px !important;
}

/*Set the margin top to separate the payment row*/
div#text-5 { /*not sure which one*/
    margin-top: 20%;
}

/*align the width of iframe*/ /*not sure which one*/
.row {
    margin: 0 !important;
    width: 100%;
float:left;
}


/*bold the link in the footer*/ /*not sure which one*/
p.pull-right a {
    color: white !important;
}

.copyright p:nth-child(2) a { /*not sure which one*/
    color: white;
    font-weight: bolder !important;
}
/*Remove the border-bottom for navigation bar and search trip*/
.search-slider { /*style.css*/
    border-bottom: none;
}

#nav { /*style.css*/
    border-bottom: none;
}

/*align the button of one way and return*/
.CompactTravel { /*style.css*/
    margin-left: 3%;
    width: 80px;
}

.form-inline .form-group .CompactTravel {
    margin-left: 0 !important;
}

.searchForm {
    padding: 15px !important;
	border-radius: 3rem !important;
}

@media only screen and (min-width: 992px) { 
	.searchForm {
		padding: 24px !important;
	}
}

/*Remove the line below the title*/
#footer h4:after { /*style.css*/
    height: 0px;
}

/*Reduce the size of header*/
.row h1 { /*booking.css*/
    font-size: 20px !important;
}

/*Adjust the font size of "Select Seat"*/
span.seattitlefont { /*not sure which one*/
    font-size: 15pt;
    text-align: center;
}

/*set the fpnt-size of booking info*/
.hidden-xs { /*not sure which one*/
    font-size: 12pt;
	  text-align: center;
}

/*Remove the border-bottom for navigation tab*/
.nav-tabs { /*booking.css*/
    border: none !important;
}

/*Reduce the space between the title and table*/
div#page-1552 { /*not sure which one*/
    margin-top: -4%;
}


a#lnkSelectSeat:hover { /*not sure which one*/
    background: #e60000;
    border-color: transparent;
    color: white;
}

a#lnkSelectSeat:focus { /*not sure which one*/
    background: #e60000;
    border-color: transparent;
    color: white;
}



/*Remove the line wtihin the table*/
.table > tbody > tr > td, .table > tbody > tr > th, .table > tfoot > tr > td, .table > tfoot > tr > th, .table > thead > tr > td, .table > thead > tr > th {
    border: none;
}



/*.page-title h3, .post-title h3{
	margin-left:2%;
}*/

/*align the button to center*/
.enterdetailsproceed {
    text-align: center;
}

.page-title, .post-title {
    border-bottom: none !important;
    box-shadow: none;
}
/*Price alignment*/
span.enterdetailssideprice {
    float: right;
}


/*Float right for the prices*/
span.enterdetailsright {
    float: right;
}

td.enterdetailstd9 {
    white-space: nowrap;
}
#DivPaymentSection .table {
    margin-bottom: -30px !important;
}

/*Mobile Home Page*/

@media (max-width: 480px) {

    #divmdepart table:first-child, #divmreturn table:first-child {
        border: none !important;
    }

    table.table {
        border: none !important;
    }

    .bus-vertical-container.col-lg-4.col-md-4.col-sm-12.col-xs-12 {
        padding: 0;
    }

    /*#divmdepart .mbustr1 td, #divmreturn .mbustr1 td {
    border: none;
	border-top: 1px solid lightgrey;
}*/

    /*adjust the margin of footer*/
    /*.copyright .pull-right a {
    padding: 65px;
}*/


    /*adjust the space between the row in search bar*/
    .row.bus-search {
        padding-top: -2px !important;
        margin-top: 2px;
    }

    .CompactTravel {
        margin-bottom: 10px;
    }
}@

/*Mobile-Booking Page*/

/*Set the margin top to separate the payment row*/
/*div#text-5 {
    margin-top: -1%;
}*/


/*Reduce the space between the subtitle and table content*/
div#divSelectCoach {
    margin-top: -3%;
}

/*Remove the border of selected tab*/
.ulmTopTab > li.active, .ulmTopTab > li:hover {
    border-color: transparent !important;
	font-weight: bold;
	background-color: #fff;
}
/*align the seat info*/
@media (max-width: 768px) and (min-height: 1024px) {
    .align-center {
        margin-left: 28%;
    }
}

/*align the navigation bar*/
@media (min-width: 768px) {
	#contactInfo {
        float: right !important;
    }
    /*.navbar-nav {
    float:none !important;
}*/

}

@media (max-width: 1024px) and (min-height: 1365px) {
    .align-center {
        margin-left: 28%;
    }
}

/*Mobile Payment*/

/*Set the background color for the footer*/
/*#footer {
	background: #F4F4F4;
    border: none !important;
    margin-top: -5%;
}*/

/*#nav {
	border: none;
}*/

@media only screen and (max-width: 1024px) {
    #divmdepart .mbustr1 td, #divmreturn .mbustr1 td {
        border-top: 1px solid lightgrey !important;
        border-bottom: none !important;
    }

    .col-xs-12 {
        padding: 0;
    }
}

#page-33 h2 {
    font-size: 20px;
}



.nav-tabs > li > a {
    margin-right: 0px !important;
	line-height: 1.42857143;
    border: 1px solid transparent;
    border-radius: 4px 4px 0 0;
}

.div-trip-lists .table tbody .bustr1 {
    border-top: 1px solid lightgrey;
}

.ulmTopTab > li.active a {
    color: white !important;
    white-space: unset;
	border: none !important;
}

#divmdepart, #divmreturn {
    border: 1px solid lightgrey;
    border-top: none !important;
    background:white;
}

.bus-vertical-container.col-lg-4.col-md-4.col-sm-12.col-xs-12 > div > div {
    padding: 0 !important;
}

ul.nav.nav-tabs.col-md-12.col-sm-12.ulmTopTab {
    width: 100%;
    padding: 0;
}

#divPayments > .row > .panel-primary > .panel-body > .paxbox > tbody > #divLogin > td > .table {
    float: left;
    margin-left: -10px;
    background: none;
}


.paxbox tbody #divLogin1 #btnLogin {
    cursor: pointer;
}

.divHalfWidth {
    margin-left: 80px;
}

.col-xs-12 > .seatproceed {
    margin-bottom: 15px;
}

@media (min-width: 992px) {
    .col-md-3 {
        width: 25% !important;
    }


table.seat_panel1 {
    margin-top: 15px;
}
.col-md-5.text-center {
    border: 1px solid lightgrey;
    padding: 20px 0px 20px 28px;
    margin-top: 15px;
}
.div-trip-lists {
    border: 1px solid lightgrey;
    padding: 0px !important;
}

#btnMemberLoginBooking{
margin-top:10px;
}
.col-md-12.div-trip-lists th:nth-child(5) {
    text-align: center;
}
div#paymentMethod .panel-body {
    padding: 0px 0px 15px 0px;
}

#divmPromoContent .spnPromoPriceCurr {
    display: inline;
    margin-right: 4px;
}

#divmPromoContent .spnPromoTitle {
    font-size: 16px;
    font-weight: bold;
}
div#mybooking-step1>h1 {
    margin-left: 10px;
    font-size: 24px;
}
div#divChangeBookingStep1{
padding: 0px 5px 0px 20px;
}
input#txtNewDepartDate{
background: white;
}
div#divChangeBookingTrip {
    padding: 0px 0px 20px 0px;
}
input#txtNewDate {
    background: white;
}
div#divMember {
    padding-top: 15px;
}
i.fa.fa-bus {
    padding-right: 5px;
}

.table>thead>tr>th {
    border-bottom: 1px solid lightgrey !important;
}
.div-trip-lists .table {
    margin: 0px !important;
}
li#litabDepart, litabReturn {
    margin-bottom: -15px !important;
}
.businnerdiv {
    padding: 0px 15px;
}
.vtab span.active {
   color: #0561b8 !important;
    background: #fff !important;
    border-left: 4px solid;
    border-right: none;
}
.vtab span{
border-top: 0.5px solid #ddd;
    border-right: 0.5px solid #ddd;
    background: #eaeef7 !important;
    color: #0561b8 !important;
    cursor: pointer;
    align-items: center;
    border-radius: 0px !important;
    width: 100%;
    font-size: 14px;
    word-break: break-word;
    outline: none !important;
}
.vtab.col-md-3 {
    padding: 0px !important;
}
}

input#rb1:checked,#rb2:checked {
    border: 4px solid lightgrey;
    padding: 3px;
    border-radius: 20px !important;
    background: #000;
    margin: 0px;
}
input#rb1:not(:checked),#rb2:not(:checked)  {
    border: 4px solid lightgrey;
    padding: 3px;
    border-radius: 20px !important;
    margin: 0px;
}

input[type=radio], [type="radio"]:not(:checked) {
    -webkit-appearance: none;
    background: url(https://resource.busonlineticket.com/image/icon/grey-tick.png);
    background-size: contain;
    background-repeat: no-repeat;
    padding: 9px;
    margin-top: 0px;
    vertical-align: middle;
    outline: none !important;
	border:none;
}
input[type=radio]:checked {
    -webkit-appearance: none;
    background: url(https://resource.busonlineticket.com/image/icon/green-tick.png);
    background-size: contain;
    background-repeat: no-repeat;
    padding: 9px;
    margin-top: 0px;
    vertical-align: middle;
    border:none;
}
.align-items-center {
    display: inline-flex;
    align-items: center;
}
.panel-heading.col-md-3 i {
    color: #00599f;
}
.btn {
    padding: 6px 12px;
    margin-left: 15px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    border-radius: 3px;
    min-width: 82px;
    margin:10px;
}

input#btnRenew {
    display: block;
    margin-top: 10px;
}
.row.form-group {
    padding: 5px;
}
#txtrenewName, #txtrenewPhone, #txtrenewExpiry{
display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
}
#infoBus .modal-content {
    width: unset !important;
}
.table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th{
border:none !important;
}
ul.nav.nav-tabs.col-md-12.ulTopTab {
    padding: 0px;
}

.nav-tabs>li>a {
    border: none !important;
}
.panel-body:last-child {
    padding: 0px;
}

.white-bg {
    padding: 10px 20px 20px 20px !important;
}
#content {
    display:flow-root;
    padding: 10px;
    background: white;
}
span#lblQty {
    display: none;
}
.panel-group .panel-heading+.panel-collapse>.list-group, .panel-group .panel-heading+.panel-collapse>.panel-body {
    border: noen;
    border: none;
}
span#btnApply {
    margin: 0px;
}
td.paymentTD {
    vertical-align: middle !important;
}
.searchForm .form-group:nth-child(6){
display:none;
}

/* @media (min-width: 568px) { */
	/* .imgSlider #myGallery { */
		/* height: 315px; */
		/* width: 560px!important; */
		/* overflow: hidden; */
		/* background: transparent; */
	/* } */

	/* .imgSlider #myGallery .carousel-inner>.item>a>img, .carousel-inner>.item>img { */
        /* width: 600px!important; */
        /* height: 315px!important; */
    /* } */

/* } */

/* @media (max-width: 568px) { */
	/* .imgSlider #myGallery { */
		/* height: 160px; */
		/* width: 270px!important; */
		/* overflow: hidden; */
		/* background: transparent; */
	/* } */
	/* .imgSlider #myGallery .carousel-inner>.item>a>img, .carousel-inner>.item>img { */
        /* width: 270px!important; */
        /* height: 160px!important; */
    /* } */
/* } */


.btn-file{
    background: linear-gradient(top, #f9f9f9, #e3e3e3);
    border: 1px solid #999;
    border-radius: 3px;
    padding: 7px 11px;
    outline: none;
    white-space: nowrap;
    -webkit-user-select: none;
    cursor: pointer;
    text-shadow: 1px 1px #fff;
    font-weight: 700;
    font-size: 10pt;
}


.connector-line {
    border-left: 1.5px solid #5A5151;
    height: 100%;
    position: absolute;
    top: 16px;
    left: -10px;
}