<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.tuner {
    position: fixed;
    z-index: 1000;
    top: 170px;
    left: 0;
    border: 2px solid #ffc107;
    border-left: 0;
    width: 158px;
    box-sizing: border-box;
    transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    background: #F2F2F2;
    -o-transition: transform 0.3s;
    -ms-transition: transform 0.3s;
    -moz-transition: transform 0.3s;
    -webkit-transition: transform 0.3s;
    text-align: center;
    display: none
    }
.tuner p {
    color: #475359;
    font-size: 14px;
    line-height: 22px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}
.tuner i {
    position: absolute;
    top: -2px;
    left: 100%;
    width: 44px;
    height: 44px;
    background: #ffc107;
    font-size: 25px;
    line-height: 44px;
    text-align: center;
    color: #fff;
    cursor: pointer;
    -webkit-border-top-right-radius: 5px;
    -moz-border-top-right-radius: 5px;
    border-top-right-radius: 5px;   
    -webkit-border-bottom-right-radius: 5px;
    -moz-border-bottom-right-radius: 5px;
    border-bottom-right-radius: 5px;        
}
.tuner label {
    font-size: 12px;
    line-height: 44px;
    text-transform: uppercase;
    color: #fff;
}
.tuner .colors,
.tuner .patterns {
    color: #fff;
    font-size: 12px;
}

.tuner .colors li {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 30px;
    padding: 0 !important;
    margin: 5px;
    cursor: pointer;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px; 
}
.tuner .colors li span{
    position: relative;
    display: block;
    width: 25px;
    height: 25px;
    margin: 1px;
    border: 3px solid transparent;
    cursor: pointer;
}

.tuner .patterns li span{
    color: #fff;
    text-align: center;
}

.tuner .colors .active span {
    border-color: #213540;
    box-shadow: 0 0 0 1px #fff; 
}
.tuner .colors .active span:after,
.tuner .colors .active span:before {
    content: '';
    position: absolute;
    top: 5px;
    left: 12px;
    width: 1px;
    height: 15px;
    background: #fff;
}
.tuner .colors .active span:before,
.tuner .patterns .active span:before {
    top: 12px;
    left: 5px;
    width: 15px;
    height: 1px;
}
.tuner .color-blue {
    background: #008fd5;
}
.tuner .color-green {
    background: #00b85d;
}
.tuner .color-pink {
    background: #e5669c;
}
.tuner .color-cyan {
    background: #00aba5;
}
.tuner .color-orange {
    background: #f5961d;
}
.tuner .color-purple {
    background: #8560a8;
}
.tuner .layouts li {
    margin-top: 10px;
    background: #000;
    font-size: 12px;
    line-height: 24px;
    text-align: center;
    color: #fff;
    cursor: pointer;
}
.tuner .layouts li:first-child {
    margin-top: 0;
}
.tuner .layouts .active {
    background: #fff;
    color: #213540;
    cursor: default;
}
.tuner-visible {
    transform: translateX(0);
    -ms-transform: translateX(0);
    -moz-transform: translateX(0);
    -webkit-transform: translateX(0);
}
.tuner .color-picker{
    cursor: pointer;
    display: inline-block;
    box-sizing: border-box;
    width: 85%;
    height: 33px;
    margin-bottom: 0 !important;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.tuner .color-picker:hover {
    border: 1px solid #e6e6e6;
}
.tuner .layout-style, 
.tuner .colors {
    padding: 10px 0 10px 0;
}
.tuner .colors{
    padding-bottom: 0;
}
.tuner .patterns:after{
    content: "";
    display: table;
    clear: both;
}
.tuner .page-style {
    width: 60px;
    height: 40px;
    border: 1px solid #b0b0b0;
    box-sizing: border-box;
    display: inline-block;
    margin: 5px 5px;
    z-index: 1;
    position: relative;
    background-color: #ffffff;
    cursor: pointer;
    font-size: 12px;
    font-family: "Merriweather";
    font-weight: 300;
    text-align: center;
    line-height: 40px;
}
.tuner .page-style.wide{
    background-color: #ffffff;
}
.tuner .page-style.boxed{
    background-color: #e6e6e6;
}
.tuner .page-style.boxed:before{
    content: "";
    position: absolute;
    z-index: -1;
    width: 40px;
    box-sizing: border-box;
    border-left: 1px solid #b0b0b0;
    border-right: 1px solid #b0b0b0;
    background-color: #ffffff;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}
.tuner .page-style.active,
.tuner .page-style.active.boxed:before{
    border-color: #ffc107;
    color: #ffc107;
}
body.boxed {
    max-width: 1250px;
    margin: 0 auto;
    -webkit-box-shadow: 0px 0px 8px 1px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 8px 1px rgba(0,0,0,0.2);
    box-shadow: 0px 0px 8px 1px rgba(0,0,0,0.2);
}
body.boxed .sticky-menu.scrolling {
    left: auto !important;
}



/********************3-10-16*************************************/
.info-detail-1 {
    background-color: rgba(0, 0, 0, 0.5);
    bottom: 110px;
    left: 5px;
    padding: 9px 0;
    position: absolute;
    width: calc(100% - 13px);
}
@media only screen and (max-width:1199px){
    .info-detail-1{top: 145px;display: none}
}

.info-detail-1 h3{color:#e75316; font: 800 25px/30px 'Open Sans';padding: 0px 20px;margin-bottom: 2px; margin-top:0px;}
.info-1{margin-top: 24px;}
.no-padding{padding:0px !important;}

.detail-info1{color:#fff;
padding: 0px 20px;
font: 800 15px/20px 'Open Sans';margin-bottom: 0px;}

.detail_info-list{padding: 0px 20px 0;
margin: 0;
display: table;
width: 100%;line-height: 23px !important;}
.detail_info-list li{padding: 0;
font: 11px/14px 'Open Sans';
color: #FFF;
margin: 0 6px 0 0;
display: inline-block;}
.padding_2{padding: 0px 2px;}
.detail-top1{margin-top:40px;}

.ornge_1{background: #de5520;min-height: 495px;padding: 38px 6px;position: relative;z-index: 10;width: 288px}
@media only screen and (max-width:991px){
    .ornge_1{display: none}  
}


.detail-rm{background: #b13f13;
margin: 0 auto;
display: table;
padding: 8px 19px;
color: #fff;
text-transform: uppercase;
border: 2px solid #d08c71;
font-size: 17px;
font-weight: 600;
font-family: 'Open Sans', sans-serif;
border-radius: 3px;}

.cldr{margin-top:50px;margin-top: 50px;
padding: 1px 10px;}
.chk-1{font-size: 14px;
font-weight: 400;
color: #fff;
text-transform: uppercase;font-family: 'Open Sans', sans-serif;}

.fld_1{margin-bottom:20px;}
.no_select{width: 100%;

border: 0px;
padding: 6px;
background:url(../img/arw_1.png) #fff;
background-repeat: no-repeat;
background-position: 90%;
}

.detl_srch{display: table;
margin: 0 auto;
padding: 13px 25px;
font-weight: bold;
font-size: 17px;
background: #01a496;
border: 0px;
color: #fff;
font-family: 'Open Sans', sans-serif;
text-transform: uppercase;
box-shadow: 2px 1px #079286;}

.detl_srch i{font-size:26px;}
.serch{margin-top:30px;}

.menu_pic{position: absolute;
top: 0px;
z-index: 99;
padding: 0px 20px;}

@media only screen and (max-width:523px){
    .menu_pic{display: none}
}

.pic-1 li{float: left;
color: #fff;
padding: 15px 10px;
font-size: 14px;
font-weight: 600;}

@media only screen and (max-width:767px){
    .pic-1 li{padding: 15px 5px;}  
}

.pic-1 li a{padding:6px;}
.pic-1 li a.active{border:1px solid #fff;}

/********************4-10-16 deals-2*************************************/

.search_ornge{background: #e98c68;
padding: 18px 0px 17px;}

.search_deal2{width: 100%;
background: url(../img/search_deal2.png) #fff;
background-repeat: no-repeat;
border: 0px;
padding: 9px 27px;
background-position: 2%;
min-height:48px
}

.search_deal_1{width: 100%;
border: 0px;
padding: 8.5px;
min-height:48px;
border-left: 1px solid #E98C68;}

.button-search_deal2{background: #00a293;
font-family: 'Open Sans', sans-serif;
color: #fff;
border: 0px;
min-height: 48px;
font-size: 16px;
font-weight: 600;
width: 100%;}
.button-search_deal2 i{font-size: 22px;
margin-right: 6px;}

.deal_brd li{display: inline-block;
color: #00a293 !important;
font: 14px/18px 'Open Sans';
margin-right: 5px !important;}

.deal_brd li a::after {
    content: "\f0da" !important;
    font: normal normal normal 14px/1 FontAwesome;
    padding-left: 15px;}
    
    
.deal_cata{color: #242424;
font-family: 'Open Sans', sans-serif;
font-size: 15px;
font-weight: 800;
margin-top: 13px;
border-bottom: 1.5px solid #dcdcdc;
padding: 5px 1px;
}
.deal_sidebar{background: #f5f5f5 !important;
padding: 0px 17px !important;}  

.deal2_title{color:#00a293 !important; 
font-size:14px !important; font-weight:600 !important;}

.deal_lbl1{color: #282828 ;
font: 13px/16px 'Open Sans'!important ;
text-transform: capitalize !important;}


.accordion-toggle:after {
     font-family: 'FontAwesome';
   content: "\f0d7";
float: right;
color: #E3480D;
font-size: 16px;
line-height: 16px;
}
.accordion-opened .accordion-toggle:after {  
 font-family: 'FontAwesome';  
    content: "\f054";    
}

.arw_2-deal{float:right; color:#818181;line-height: 12px;}
.border_0{border:0px !important;}

.dl_search1{background: #00a293 !important;
border: 0px !important;
height: 34px !important;
color: #fff;
border-radius: 6px 0px 0px 5px !important;}

.grn-btndeal{background: #00a293 !important; border:0px !important;min-height: 34px !important;border-radius: 0px 5px 5px 0px !important; font-size:20px !important;font-size: 18px !important;
padding: 0 10px;}
.loc_1{font-size:14px !important; color:#282828 !important;margin-top:20px;}

.vw-more{color:#e35413;
font: 11px/15px 'Open Sans'!important ;padding: 5px 4px;}

.vw-more i{color:#000;margin-right: 2px;}
.deal-filter{float:right;margin-right: 13px;}
.deal-filter li{color: #585858;
float: left;
padding: 1px 11px;
border: 1px solid #585858;
border-radius: 3px;
margin-left: 8px;
font-size: 11px;}
.deal-filter li :hover{color:#00a293;}
.deal-filter li:first-child{background:#00a293; color:#fff; border:1px solid #00a293;}

.tag-deal{position: absolute;
width: 100%;
top: 7px;}
.fav-deal{color: #fff;
font-size: 18px;
font-weight: 800;}
.fav-deal i{color: #fff;
font-size: 18px;
font-weight: 800;
margin-top: 16px;
margin-left: 3px;}
.tag_deal_img{position: absolute;
right: 46px;
top: 1px;width: 35px;}
.deal2_img{width:100%;}
.tag_deal-txt{position: absolute;
right: 44px;
top: 5px;
z-index: 99;
width: 25%;
color: #00a293;
line-height: 15px;
font-size: 14px;
font-weight: 600;
text-align: center;}
.full-box{margin-top: 8px;border: 1px solid #e98c68;border-radius: 5px;margin-bottom: 10px;position: relative}
.wht_scdl{background:#fff !important}
.list_deal_gray{background: #f5f5f5;
min-height: 67px;
padding: 5px 0px;}
.deal_list_2{float: right;}
.deal_list_2 li{float: left;
padding: 0px 11px;
font-size: 11px;
color: #666666;
font-family: 'Open Sans', sans-serif;}
.deal_list_2 li i{font-size:14px;}
.deal-list-title{color:#242424; font: 14px/19px 'Open Sans' ;margin-top: 5px;}
.ornge1{background: #e35413;
padding: 8px 0px;}

.deal_info_0 {
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    line-height: 21px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 3px;
}
.rs-deal2{    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 23px;
    font-weight: bolder;text-align: right;
    
}
.deal-rv {color:#fff; font-size:12px;}
.star_deal{margin-right: 5px;margin-top: -4px;}

.pad_5{padding: 0px 10px;}

.new_btn {
    text-align: center;
    margin-top: 41px;
    margin-bottom: 50px;
}
.collection {
    padding: 7px 20px;}
    
    .dl_search1::-webkit-input-placeholder  {
   color: white;
}

.dl_search1:-moz-placeholder { /* Firefox 18- */
   color: white;  
}

.dl_search1::-moz-placeholder {  /* Firefox 19+ */
   color: white;  
}

.dl_search1:-ms-input-placeholder {  
   color: white;  
}

/********************responsive deal_2******************/
@media only screen and (min-width:320px) and (max-width:480px)  {
    .tag_deal_img {
    position: absolute;
    right: 46px;
    top: -7px;
    width: 35px;}
    
    
    
    }

@media only screen and (min-width:480px) and (max-width:640px)  {
    
    .tag_deal_img {
    position: absolute;
    right: 46px;
    top: -7px}
    .tag_deal-txt {position: absolute;right: 38px;}
    
    
    }

@media only screen and (min-width:767px) and (max-width:980px)  {
.button-search_deal2 {
    background: #00a293;
    font-family: 'Open Sans', sans-serif;
    color: #fff;
    border: 0px;
    min-height: 48px;
        font-size: 13px;
}
.tag_deal_img {
    position: absolute;
    right: 36px;}
 
 .deal-list-title {
    color: #242424;
    font: 12px/19px 'Open Sans'; }
    .list_deal_gray {
    background: #f5f5f5;
    min-height: 100px;} 
    .rs-deal2 {
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 19px;} 
    .search_ornge {
    background: #e98c68;
    padding: 18px 0px 17px;
    margin-top: 54px;
}

/*hoteldetail*/
.pic-1 li {
    float: left;
    color: #fff;
    padding: 15px 5px;}
    
    .info-detail-1 {
    position: absolute;
    top: 185px;}
    
    .info-detail-1 h3 {
    color: #e75316;
    font: 800 14px/19px 'Open Sans';
    padding: 0px 20px;
    margin-bottom: 2px;}
    .detail-info1 {
    color: #fff;
    padding: 0px 20px;
    font: 800 14px/20px 'Open Sans';
    margin-bottom: 0px;}

.detl_srch {
    display: table;
    margin: 0 auto;
    padding: 13px 11px;
    font-weight: bold;
    font-size: 14px;

}
}

@media only screen and (max-width:767px){
    .info-detail-1 {display: none}
}


/*Hotel Filter Section*/
.hotelFilter{    background: #fff;    padding: 5px;    position: fixed;    width: 30%;    z-index: 1111;	border-bottom:1px solid #ddd;}
#hotelSec .carousel-control  { width:  4%; }
#hotelSec .carousel-control.left, #hotelSec .carousel-control.right {background-image:none;}
#hotelSec .carousel-control.right{right: -19px;}
#hotelSec .switchery{height: 13px; width:35px}
#hotelSec .switchery &gt; small{height: 15px; width: 15px; top: -1px;}

.typehead-container .dropdown-menu{
    width: 100%;
    border-radius: 0;
    padding: 0px;
}

.typehead-container .dropdown-menu li {
    color: #333;
    padding: 8px 12px 8px 10px;
    width: 100%;
    display: inline-block;
    border-top: 1px solid #e7e7e7;
    float: left;
    cursor: pointer;
}
.typehead-container .dropdown-menu li.active{
    background-color: #e7e7e7;
}

.typehead-left {
    float: left;
    width: 72%;
}
.typehead-right {
    float: right;
    font-size: 13px;
    max-width: 28%;
    position: relative;
    text-align: right;
    line-height: 1.2;
}

.th_cityname {
    font-size: 14px;
    position: relative;
    padding: 0 0 4px 0;
    margin: 0;
    line-height: 14px;
}

.th_airportname {
    font-size: 12px;
    color: #666;
    margin: 0;
    line-height: 12px;
}

.search-tours-form input[type="text"].travellerInput {
    width: 100%;
    color: #555;
    padding-left: 30px;
    background-image: url(/images/icons/icon-avatar-new.png);
    background-repeat: no-repeat;
    background-position: 3px;
}
p.error-text{
    color:#fff;
    font-family: sans-serif;
    font-size: 18px;
}

body &gt; section.sec-md{
    min-height: calc(100vh - 228px);
}

.loader-container{
    width: 100vw;
}


.view-container.loading{
    display: none;
}



/** Loader CSS **/
.loading-spiner &gt; img {
    display: block;
    margin: 17% auto;
    max-width: 220px;
}
.loading-spiner-holder {
    background: rgba(0, 0, 0, 0.57) none repeat scroll 0 0;
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 99999999;
}

.form-control.forn-group.childAge {
    float: left;
    height: 40px;
    margin-left: 10px;
    padding: 0;
    text-align: center;
    width: 40px;
}

.noOfChild{
    display: table;
    margin: 0px 10px;

}

.noOfChild .input-number{
    height: 35px;
    line-height: 11px;
    padding-top: 1px;
}

.hotel-label {
    display: block;
    width: 100%;
}
.button-delete::before {
    background: #00a496 none repeat scroll 0 0;
    content: "\f00d";
    height: 100%;
    line-height: 38px;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 100%;
    z-index: -1;
    font-family: 'FontAwesome';
}
.button-delete {
    color: #ffffff;
    cursor: pointer;
    float: right;
    height: 38px;
    position: absolute;
    right: 0px;
    top: 0;
    width: 38px;
    z-index: 1;
}
.room-label {
    background: #fff none repeat scroll 0 0;
    margin-top: 10px;
    padding-left: 15px;
    padding-top: 7px;
    width: 100%;
    padding-bottom: 8px;
    border-bottom: 1px solid #c7c7c7;
    position: relative;
}
.room-label h5 {
    margin:0px;
}

.add-room{
    border:none;
    background-color: #38A18B;
    box-shadow:none;
    color: #fff;
    cursor: pointer;
    line-height: 52px;
    text-align: center;
    text-transform: uppercase;
    margin-top: 10px;
    padding: 0px 20px;
}

/*Global*/
.font20{font-size:20px;}
.theme-color{color:#56ABB1;}
.gray{color:#5B5D60!important;}
.black{color:#000;}


.m-t-10{margin-top: 10px;}
.m-b-10{margin-bottom: 10px;}
.p-t-10{padding-top: 10px;}
.p-b-10{padding-bottom:10px;}

.m-t-20{margin-top: 20px;}
.m-b-20{margin-bottom: 20px;}
.p-t-20{padding-top: 20px;}
.p-b-20{padding-bottom: 20px;}

.m-t-30{margin-top: 30px;}
.m-b-30{margin-bottom: 30px;}
.p-t-30{padding-top: 30px;}
.p-b-30{padding-bottom: 30px;}

.m-t-40{margin-top: 40px;}
.m-b-40{margin-bottom: 40px;}
.p-t-40{padding-top: 40px;}
.p-b-40{padding-bottom:40px;}

.m-t-60{margin-top:60px;}
.m-b-60{margin-bottom:60px;}
.p-t-60{padding-top:60px;}
.p-b-60{padding-bottom:60px;}

.m-t-80{margin-top:80px;}
.m-b-80{margin-bottom:80px;}
.p-t-80{padding-top:80px;}
.p-b-80{padding-bottom:80px;}
/* end */

.travelEco{position: absolute;
    background: #fff;
    border: 1px solid #eaeaea;
    width: auto;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    box-shadow: 0 3px 3px 0 #ccc;
    z-index: 9;
    left: 50%;
    top: 100%;
    margin-left: -175px;
}

.commClose{    position: absolute;
    top: -8px;
    right: -13px;
    width: 20px;
    height: 20px;
    text-shadow: none;
    opacity: 1;
    border-radius: 100%;
    background: #333333!important;
    color: #fff;
    font-weight: 300;
    z-index: 999;
    font-size:12px;}
.commClose:hover{
    background: #333333!important;
    color: #fff;
}

.roomRow{padding:10px;}
.roomRow label{line-height: 20px;font-weight: normal;color: #333;}
.roomRow label span{    color: #8F8F8F;
    font-weight: lighter;}
.roomRow label .small{color: #959699; font-size:10px;}
.roomRow select{margin-bottom:20px; margin-top:10px; height: 36px!important; border: 1px solid #e6e6e6!important;}

.travelEco:after, .travelEco:before{
    bottom: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;

}

.travelEco:before{    border-color: rgba(234,234,234,0);
    border-bottom-color: #eaeaea;
    border-width: 11px;
    margin-left: -11px;}


/* Hotel Rooms Popup Dropdown */

.hotelRoom{position: absolute;
    background: #fff;
    border: 1px solid #eaeaea;
    width: auto;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    box-shadow: 0 3px 3px 0 #ccc;
    z-index: 9;
    left: 50%;
    top: 100%;
    margin-left: -175px;
    width: 350px;}

.hotelRoom .commClose{    position: absolute;
    top: 51px;
    right: 11px;
    width: 20px;
    height: 20px;
    text-shadow: none;
    opacity: 1;
    border-radius: 100%;
    background: #333333!important;
    color: #fff;
    font-weight: 300;
    z-index: 999;
    font-size:12px;}
.hotelRoom .commClose:hover{
    background: #333333!important;
    color: #fff;
}

.hotelRoom .roomRow{padding:10px;}
.hotelRoom .roomRow label{line-height: 20px;}
.hotelRoom .roomRow label span{    color: #8F8F8F;
    font-weight: lighter;}
.hotelRoom .roomRow label .small{color: #959699; font-size:10px;}
.hotelRoom .roomRow select{margin-bottom:20px; margin-top:10px; height: 36px!important; border: 1px solid #e6e6e6!important;}

.hotelRoom:after, .hotelRoom:before{
    bottom: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;

}
.updateHead{border:1px solid #eee;}

.hotelRoom:before{    border-color: rgba(234,234,234,0);
    border-bottom-color: #eaeaea;
    border-width: 11px;
    margin-left: -11px;}



/* Review Details Css*/

.reviewDetails{background:#f8f9fa; border:1px solid #f4f4f5; padding:20px;}
.reviewDetails hr{border:1px solid #ddd; margin-bottom:2px;}
.flt1{background:#eee; padding:10px;}
.flt1 h4{margin:0px;}

.flightDetailsSec{background:#fff; border:1px solid #e5590a; padding:20px;}
.flightDetailsSecpopup .modal-header{border-bottom:0px;}

.inoutWay .single-booking-list{border-radius:0px!important;}

/* Flight */

.updateFlight .search-tours-wrap{background:#56ABB1; height:auto;}


/* Flight Billing Sec */

.flightBilling legend{ border-color:#c2c2c2;}
.flightBilling legend span{padding:10px;}
.flightBillingFare{}
legend{margin-bottom: 10px}


.js-qty-input{
    text-align: center;
    width: 25px;
    font-weight: 600;
}

/*.loader {
    border: 16px solid #f3f3f3; !* Light grey *!
    border-top: 16px solid #3498db; !* Blue *!
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: loaderSpin 2s linear infinite;
    margin: 0 auto;
    position: relative;
    top: calc(50vh - 230px);
}*/
.loader-text {
    font-size: 29px;
    margin-bottom: 40px;
}
.loader {
    position: relative;
    width: 50%;
    left: 50%;
    transform: translate(-50% ,-150%);
    top: 50vh;
    text-align: center;
}
.loader img{
    width: 100px;
    height: 100px;
}

@-webkit-keyframes loaderSpin {
    0% {
        -webkit-transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}
@media (min-width: 1200px){
    .container.bus-listing,
    .container.hotel-listing,
    .container.flight-listing{
        width: 1200px !important;
    }
}


@media only screen and (min-width: 992px) and (max-width: 1200px){

}

@media only screen and (min-width: 992px) {
    .no-padding-min-ne{
        padding: 0px;
    }
    .col-md-1-5{
        width: 12.5%;
    }
}

@media only screen and (max-width: 992px){

    .flightBilling{
        margin-top: 20px;
    }
    .hotel-listing .single-hotelbooking-list .hotel-info{
        min-height: 141px;
    }
}

@media only screen and (min-width: 768px) {
    .no-padding-min-ss{
        padding: 0px;
    }
    .container.bus-listing,
    .container.hotel-listing,
    .container.flight-listing{
        width: 98%;
    }
}
@media only screen and (max-width: 768px) {
    .single-hotelbooking-list .media .media-body &gt; div{
        min-height: 131px;
    }
    .xs-text-center{
        text-align: center;
    }
    .hotel-listing .single-hotelbooking-list .hotel-info{
        border-right: 1px solid #e6e6e6 !important;
    }

    .xs-text-right{
        text-align: right;
    }
}
@media only screen and (max-width: 580px) {
    .single-hotelbooking-list .media .media-left{
        display: none;
    }

}
@media only screen and (max-width: 520px) {
    .hidden-vxs{display: none !important;}
    .visible-vxs{display: block !important;}

    .col-vxs-1, .col-vxs-2, .col-vxs-3, .col-vxs-4, .col-vxs-5, .col-vxs-6, .col-vxs-7, .col-vxs-8, .col-vxs-9, .col-vxs-10, .col-vxs-11, .col-vxs-12 {
        float: left;
    }
    .col-vxs-12 {
        width: 100%;
    }
    .col-vxs-11 {
        width: 91.66666667%;
    }
    .col-vxs-10 {
        width: 83.33333333%;
    }
    .col-vxs-9 {
        width: 75%;
    }
    .col-vxs-8 {
        width: 66.66666667%;
    }
    .col-vxs-7 {
        width: 58.33333333%;
    }
    .col-vxs-6 {
        width: 50%;
    }
    .col-vxs-5 {
        width: 41.66666667%;
    }
    .col-vxs-4 {
        width: 33.33333333%;
    }
    .col-vxs-3 {
        width: 25%;
    }
    .col-vxs-2 {
        width: 16.66666667%;
    }
    .col-vxs-1 {
        width: 8.33333333%;
    }
    .col-vxs-pull-12 {
        right: 100%;
    }
    .col-vxs-pull-11 {
        right: 91.66666667%;
    }
    .col-vxs-pull-10 {
        right: 83.33333333%;
    }
    .col-vxs-pull-9 {
        right: 75%;
    }
    .col-vxs-pull-8 {
        right: 66.66666667%;
    }
    .col-vxs-pull-7 {
        right: 58.33333333%;
    }
    .col-vxs-pull-6 {
        right: 50%;
    }
    .col-vxs-pull-5 {
        right: 41.66666667%;
    }
    .col-vxs-pull-4 {
        right: 33.33333333%;
    }
    .col-vxs-pull-3 {
        right: 25%;
    }
    .col-vxs-pull-2 {
        right: 16.66666667%;
    }
    .col-vxs-pull-1 {
        right: 8.33333333%;
    }
    .col-vxs-pull-0 {
        right: auto;
    }
    .col-vxs-push-12 {
        left: 100%;
    }
    .col-vxs-push-11 {
        left: 91.66666667%;
    }
    .col-vxs-push-10 {
        left: 83.33333333%;
    }
    .col-vxs-push-9 {
        left: 75%;
    }
    .col-vxs-push-8 {
        left: 66.66666667%;
    }
    .col-vxs-push-7 {
        left: 58.33333333%;
    }
    .col-vxs-push-6 {
        left: 50%;
    }
    .col-vxs-push-5 {
        left: 41.66666667%;
    }
    .col-vxs-push-4 {
        left: 33.33333333%;
    }
    .col-vxs-push-3 {
        left: 25%;
    }
    .col-vxs-push-2 {
        left: 16.66666667%;
    }
    .col-vxs-push-1 {
        left: 8.33333333%;
    }
    .col-vxs-push-0 {
        left: auto;
    }
    .col-vxs-offset-12 {
        margin-left: 100%;
    }
    .col-vxs-offset-11 {
        margin-left: 91.66666667%;
    }
    .col-vxs-offset-10 {
        margin-left: 83.33333333%;
    }
    .col-vxs-offset-9 {
        margin-left: 75%;
    }
    .col-vxs-offset-8 {
        margin-left: 66.66666667%;
    }
    .col-vxs-offset-7 {
        margin-left: 58.33333333%;
    }
    .col-vxs-offset-6 {
        margin-left: 50%;
    }
    .col-vxs-offset-5 {
        margin-left: 41.66666667%;
    }
    .col-vxs-offset-4 {
        margin-left: 33.33333333%;
    }
    .col-vxs-offset-3 {
        margin-left: 25%;
    }
    .col-vxs-offset-2 {
        margin-left: 16.66666667%;
    }
    .col-vxs-offset-1 {
        margin-left: 8.33333333%;
    }
    .col-vxs-offset-0 {
        margin-left: 0;
    }

    .single-hotelbooking-list .media .media-body &gt; div{
        min-height: auto;
        border: none !important;
    }
    .single-hotelbooking-list .media .media-left{
        text-align: center;
    }
    .single-hotelbooking-list .media .media-left img{
        display: contents;
    }

    .single-hotelbooking-list.fix-combination .room-in-combo{
        min-height: 131px !important;
        border-right: 1px solid #e6e6e6;
    }

    .hotel-listing .single-hotelbooking-list .hotel-info{
        border-right: none !important;
    }

    .hotel-listing .single-hotelbooking-list .hotel-info{
        border-right: none !important;
        border-top: 1px solid #e6e6e6;
        border-bottom: 1px solid #e6e6e6;
    }
    .hotel-listing .single-hotelbooking-list .media .media-left{
        padding: 15px;
    }

    .bus-listing .single-booking-list .col-vxs-3{
        padding: 0;
    }
    .bus-listing .single-booking-list{
        padding: 20px 5px;
    }
}

@media only screen and (max-width: 400px){
    .flight-listing .single-booking-list{
        padding: 20px 5px;
    }
}

@media only screen and (max-width: 380px){
    .flight-billing-block.right .flight-billing-list .col-vxs-4{
        padding: 0px !important;
    }
    .flight-billing-block.right .flight-billing-list .col-vxs-4 .media .media-left{ display: none; }
    .flight-billing-block.right .flight-billing-list .col-vxs-4 .media .media-body{ text-align: center; }
}

@media only screen and (max-width: 480px){
    .flight-billing-block .form-group &gt; div{
        padding: 2px;
    }
    .flight-billing-block .form-group &gt; label{
        padding: 2px;
    }
}
.short-route:last-child{
    border-bottom: none;
}

.landscape-view{
    display: none;
}

body.autocomplete-focus .landscape-view{
    display: none  !important;
}

@media screen and (max-width: 768px) and (orientation: landscape ) {
    body{
        overflow: hidden;
        height: 100%;
        width: 100%;
    }

    .landscape-view {
        display: block;
        height: 100%;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background: #fff;
        z-index: 999999;
        font-size: 20px;
        text-align: center;
        padding: 65px 15px;
        box-sizing: border-box;
    }
    body.autocomplete-focus .landscape-view{
        display: none  !important;
    }
}
.white-box{
    min-height: 400px;
}</pre></body></html>