﻿@charset "utf-8";
/* CSS Document */

@font-face {
  font-family: 'OpenSans_Regular';
  src: url(../fonts/OpenSans-Regular.TTF);
}

*{margin:0px; padding:0px; -ms-box-sizing:border-box; -webkit-box-sizing:border-box; -moz-box-sizing:border-box; -o-box-sizing:border-box; box-sizing:border-box; height:auto;}
body{font-family:'Roboto', sans-serif; font-size:14px; background:#EFEFEF; color:#000; padding:0px;}
.main_con{width:100%; display:inline-block; float:left;}
.container{width:100%; /*max-width:1299px;*/max-width:95%; margin:0 auto;}
.clr{clear:both;}

.pos_r{position:relative;}
.pos_a{position:absolute;}
.pos_s{position:static;}
.footer{position:static;} 
.acc1fullwidth {
    overflow: unset !important;
}
.panel-info > .panel-heading .fa-bars {
    display: inline-block;
    float: right;
    background: #fff;
    color: #35b8e0;
    font-size: 18px;
    text-align: center;
    padding: 3px 5px;
    border-radius: 5px;
    margin: 3px 5px 0px 0px;
    cursor: pointer;
    display: none;
}

textarea{resize:none;}

.hotel{display:inline-block; width:100%;}
.hotel h4{padding:5px 5px; background:#ccc; border-radius:5px; position:relative;}
.hotel #hotel_existing_record{display:none;}

.form_control{display:inline-block; width:100%; display:inline-block;}
.form_control .row [class*="col-"]{margin-bottom:10px;}
.form_control label{width:100%;}
.form_control label span{display:inline-block;}
.form_control label .compulsary{display:inline-block; position:relative;}
.form_control label .compulsary:after{position:absolute; content:'*'; right:-12px; top:-3px; color:#f00;}
.form_control .latitude input,
.form_control .latitude select{width:100%; background-color: #FFFFFF; border: 1px solid #E3E3E3; border-radius: 4px; color: #565656;
padding: 7px 12px; height: 38px; max-width: 100%; -webkit-box-shadow: none; box-shadow: none; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -o-transition: all 300ms linear; -ms-transition: all 300ms linear; transition: all 300ms linear;}
.form_control .latitude input[type=checkbox]{
height: 18px;
}
#hotel_add_update span{font-size:10px;}
#hotel_add_update .add_row{display:inline-block; width:100%;}
#season_existing_record{display:none;}
#rate_existing_record{display:none;}
#rate_existing_record input[type="text"]{min-width:80px;}
#rate_existing_record input[type="text"].large{min-width:230px;}
#rate_existing_record input[type="date"]{min-width:150px;}
#rate_existing_record .btn-toolbar{display:none;}
#suplement_existing_record input[type="text"]{min-width:50px;}
.breadcrumb {
	/*centering*/
	display: inline-block;
	overflow: hidden;
	border-radius: 5px;
	/*Lets add the numbers for each link using CSS counters. flag is the name of the counter. to be defined using counter-reset in the parent element of the links*/
	counter-reset: flag; 
}

.breadcrumb a {
	text-decoration: none;
	outline: none;
	display: block;
	float: left;
	font-size: 12px;
	line-height: 36px;
	color: white;
	/*need more margin on the left of links to accomodate the numbers*/
	padding: 0 10px 0 60px;
	background: #666;
	background: linear-gradient(#666, #333);
	position: relative;
}
/*since the first link does not have a triangle before it we can reduce the left padding to make it look consistent with other links*/
.breadcrumb a:first-child {
	padding-left: 46px;
	border-radius: 5px 0 0 5px; /*to match with the parent's radius*/
}
.breadcrumb a:first-child:before {
	left: 14px;
}
.breadcrumb a:last-child {
	border-radius: 0 5px 5px 0; /*this was to prevent glitches on hover*/
	padding-right: 20px;
}

/*hover/active styles*/
.breadcrumb a.active, .breadcrumb a:hover{
	background: #333;
	background: linear-gradient(#333, #000);
}
.breadcrumb a.active:after, .breadcrumb a:hover:after {
	background: #333;
	background: linear-gradient(135deg, #333, #000);
}

/*adding the arrows for the breadcrumbs using rotated pseudo elements*/
.breadcrumb a:after {
	content: '';
	position: absolute;
	top: 0; 
	right: -18px; /*half of square's length*/
	/*same dimension as the line-height of .breadcrumb a */
	width: 36px; 
	height: 36px;
	/*as you see the rotated square takes a larger height. which makes it tough to position it properly. So we are going to scale it down so that the diagonals become equal to the line-height of the link. We scale it to 70.7% because if square's: 
	length = 1; diagonal = (1^2 + 1^2)^0.5 = 1.414 (pythagoras theorem)
	if diagonal required = 1; length = 1/1.414 = 0.707*/
	transform: scale(0.707) rotate(45deg);
	/*we need to prevent the arrows from getting buried under the next link*/
	z-index: 1;
	/*background same as links but the gradient will be rotated to compensate with the transform applied*/
	background: #666;
	background: linear-gradient(135deg, #666, #333);
	/*stylish arrow design using box shadow*/
	box-shadow: 
		2px -2px 0 2px rgba(0, 0, 0, 0.4), 
		3px -3px 0 2px rgba(255, 255, 255, 0.1);
	/*
		5px - for rounded arrows and 
		50px - to prevent hover glitches on the border created using shadows*/
	border-radius: 0 5px 0 50px;
}
/*we dont need an arrow after the last link*/
.breadcrumb a:last-child:after {
	content: none;
}
/*we will use the :before element to show numbers*/
.breadcrumb a:before {
	content: counter(flag);
	counter-increment: flag;
	/*some styles now*/
	border-radius: 100%;
	width: 20px;
	height: 20px;
	line-height: 20px;
	margin: 8px 0;
	position: absolute;
	top: 0;
	left: 30px;
	background: #444;
	background: linear-gradient(#444, #222);
	font-weight: bold;
}


.flat a, .flat a:after {
	background: white;
	color: #505458;
	transition: all 0.5s;
}
.flat a:before {
	background: white;
	box-shadow: 0 0 0 1px #ccc;
	text-align:center;
	color:#ccc;
}
.flat a:hover, .flat a.active, 
.flat a:hover:after, .flat a.active:after{
	background: #35b8e0;
	color:#fff;
}

.hotel h4 [class*="fa-caret-"]{display:inline-block; float:right; margin-right:10px;}

#distance_master_table .btn-toolbar{display:none;}
#distance_master_table input[type="text"]{width:100%;}
#hotel_facility label{width:100%;}
#factsheet_record{display:none;}
#suplement_existing_record{display:none;}
#allocation_existing_record{display:none;}
#allocation_add_update .radio{margin-top:0px; margin-bottom:0px;}
#allocation_add_update .row [class*="col-"]{margin-bottom:0px;}
#staylimit_add_update .days .row [class*="col-"]{margin-bottom:0px;}
#staylimit_existing_record{display:none;}

#upadte_rate_block .radio{margin-top:0px; margin-bottom:0px;}
#upadte_rate_block .row [class*="col-"]{margin-bottom:0px;}

#earlybird_add_update .radio{margin-top:0px; margin-bottom:0px;}
#earlybird_add_update{}
#earlybird_add_update{}

/*

.input-group{width:100%;}
.input-group-addon
{
    padding: 11px 12px;
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
    z-index: 999;	
}
.input-group .form-control, .input-group-addon, .input-group-btn{display:inline;}
input[type="date"].form-control{padding:7px 0px 7px 41px;}
.form-control{padding:7px 10px 7px 41px;}

*/


/*--------------------------------------------------Media Query-----------------------------------------*/

@media only screen and (min-width: 1199px) {
#topnav .navigation-menu > li > a{padding-top:10px; padding-bottom:10px; padding-right:17px; padding-left:17px;}
}

@media only screen and (max-width: 1198px) {
#topnav .navigation-menu > li > a{padding-top:10px; padding-bottom:10px; padding-right:6px; padding-left:6px;}
}

@media only screen and (max-width: 991px) {
.panel-info > .panel-heading .fa-bars{display:block;}
.panel-title{display:inline-block;}
.nav.nav-pills.pull-right{width:100%;}
.panel-info > .panel-heading{display:inline-block; width:100%;}
.nav-pills>li{width:100%; background:#35b8e0; margin-bottom:1px; margin-top:1px;}
.panel-tabs .nav-pills li a{border-radius:4px; -webkit-transition:.5s; -moz-transition:.5s; -ms-transition:.5s; padding:5px;}
.panel-tabs .nav-pills li a:hover,
.panel-tabs .nav-pills li a:active,
.panel-tabs .nav-pills li a:focus{background:#ffffff !important; color:#435966 !important; -webkit-transition:.5s; -moz-transition:.5s; -ms-transition:.5s;}
}

@media only screen and (max-width: 767px) {
.footer{position:static;}


}
@media only screen and (max-width: 643px) {


}
@media only screen and (max-width: 600px) {



}

@media only screen and (max-width: 571px) {


}
@media only screen and (max-width: 480px) {



}
@media only screen and (max-width: 400px) {


}
@media only screen and (max-width: 385px) {

}
