body{
	    background-image: linear-gradient(to top, #fff 0%, #fff 100%);
	background-attachment: fixed;
    height: 100%;
}
header .col-sm-2{
	width: 14.666667%;
}

.header-title{
	font-weight:bold; font-size: 15px;     color: #fefefe;
}
.container-fluid.container-custom, .container.container-custom{
	    padding: 20px 15px;
		min-height:480px;
}
.container.content {
    border: 1px solid #d9d9d9;
    padding: 15px;
}
.container.home,  .container.container-custom{
	background: #fff;
    border: 1px solid #ccc;
    border-top: none;
    padding: 15px;
}

.container.home{
	background: #fff;
    border: none;
    border-top: none;
    padding: 0px;
}

.sidebar{
	padding-left: 80px;
}
.overlay {
    background: #bababa;
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.6;
    z-index: 9999;
}
.image-loading{
  position: absolute;
  left: 50%;
  top: 50%;
}

.homebanner{
    background-repeat: no-repeat !important;
    background-size: cover !important;
	background: #fff800;
}
.homesearch{
	min-height: 350px;
	background: rgba(214, 219, 222, 0.85);
	padding:15px;
}
.home-tagline{
    top: 15%;
    left: 0%;
    padding: 15px;
    /* background: #f5e14c; */
    color: #f5e14c;
	font-family: Lora;
	font-style: italic; 
	margin-top: 65px;
}
footer.navbar {
	border-radius: 0px; 
}
.icon-background4 {
    color: #a6c1ee;
}

.icon-background6 {
    color: #3f3f95;
}


/* breadcrumb select */
.breadcrumb-web {
	/*centering*/
	display: inline-block;
	box-shadow: 0 0 50px 1px rgba(0, 0, 0, 0.15);
	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-web a {
	text-decoration: none;
	outline: none;
	display: block;
	float: left;
	font-size: 20px;
    line-height: 37px;
	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-web a:first-child {
	padding-left: 46px;
	border-radius: 5px 0 0 5px; /*to match with the parent's radius*/
}
.breadcrumb-web a:first-child:before {
	left: 14px;
}
.breadcrumb-web a:last-child {
	border-radius: 0 5px 5px 0; /*this was to prevent glitches on hover*/
	padding-righ
}

/*hover/active styles*/
.breadcrumb-web a.active, .breadcrumb-web a:hover{
	background: #333;
	background: linear-gradient(#333, #000);
}
.breadcrumb-web a.active:after, .breadcrumb-web a:hover:after {
	background: #333;
	background: linear-gradient(135deg, #333, #000);
}

/*adding the arrows for the breadcrumbs using rotated pseudo elements*/
.breadcrumb-web a:after {
	content: '';
	position: absolute;
	top: 0; 
	right: -18px; /*half of square's length*/
	/*same dimension as the line-height of .breadcrumb-web 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-web a:last-child:after {
	content: none;
}
/*we will use the :before element to show numbers*/
.breadcrumb-web a:before {
	content: counter(flag);
	counter-increment: flag;
	/*some styles now*/
	border-radius: 100%;
	width: 25px;
    height: 25px;
    line-height: 24px;
    margin: 6px 0;
	position: absolute;
	top: 0;
	left: 30px;
	background: #444;
	background: linear-gradient(#444, #222);
	font-weight: bold;
	text-align: center;
}


.flat a, .flat a:after {
	background: white;
	color: black;
	transition: all 0.5s;
}
.flat a:before {
	background: white;
	box-shadow: 0 0 0 1px #ccc;
}
.flat a:hover, .flat a.active, 
.flat a:hover:after, .flat a.active:after{
	background: #949599;
	
}
.flat a:hover, .flat a.active{
	color:white;
}
.flat a:hover:before, .flat a.active:before{
	color:black;
	
}

/* end breadcrumb web */

.search-sidebar{
	padding:15px;
	background: aliceblue;
}
.homesearch .form-control, .homesearch .input-group-addon{
	border:0px;
	line-height: initial;
}
.homesearch .input-group{
	margin-bottom:14px;
}

.tooltip-inner {
    max-width: 300px !important;
}


.img-responsive{
	max-width: 100%;
	height:auto;
}

.borderless{
	border:none !important;
}

.td-caricons{
	width: 35px !important;
    padding: 0px !important;
}


/* THEME CUSTOME */
.navbar.bg-success {
    font-size: 16px;
    background-color: transparent !important;
    border-radius: 0px;
	padding-bottom: 0px;
}
.navbar ul li.nav-item.active{
    border-bottom: 2px solid #fefefe;	

}

.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
    color: rgb(255, 255, 255);
}

.navbar ul li.nav-item.active a.nav-link{
		color: #fefefe ;
}

.navbar-light .navbar-nav .nav-link {
    color: #ffeb4a ;
	margin-top: 0px;
}

.btn-default {
    color: #ffeb4a !important;	
	background-color: #000 !important;
    border-color: #000;
}

.btn-booking {
    color: #000 !important;	
	background-color: #ffeb4a !important;
    border-color: #ffe633;
}

.btn-primary.btn-custom{
	background-color: #0a54a1 !important;
    border-color: #093a6d !important;
}
footer{
        color: #ffeb4a !important;
}

footer a {
        color:#fff !important;
}

.bg-inverse {
	background: black  !important;
}

.btn-mybooking{
	margin-top: 25px;
}

.page-item.active .page-link, .page-item.active .page-link:focus, .page-item.active .page-link:hover {
    z-index: 2;
    color: #000;
    cursor: default;
	background-color: #ffeb4a;
    border-color: #dddddd;
}

#gallery .card {
    border: none;
}


.nav-item .nav-link{    margin-top: 20px; }

.btn-danger-soldout {
    color: white;
    background-color: #ddd;
    border-color: #b16f6d;
}


.breadcrumb-web{
	margin-left: 15%;
}

@media screen and (max-width: 600px) {
  
  table.search-result-table {
    width:100% !important;
  }
  
  table.search-result-table tr.search-table-tr{
    border-bottom: 3px solid #ddd;
    margin-bottom: .625em;
  }
  
  table.search-result-table td.search-table-td{
    border-bottom: 1px solid #ddd;
    display: block;
    font-size: .8em;
    text-align: right;
	width:100% !important
  }
  
   table.search-result-table th.search-table-td{
    border-bottom: 1px solid #ddd;
    display: block;
    font-size: .8em;
    text-align: right;
	width:100% !important
  }
  
  
  table.search-result-table  td.search-table-tr:last-child {
    border-bottom: 0;
  }
  .search-padding{padding:0px;}
  
  
	  
	.breadcrumb-web{
		margin-left: 0%;
	}
}




 
 
@media screen and (max-width: 480px) {
	.container{padding:0px; }
	.container-fluid{padding:0px; }
	.content{padding:0px; }
	.row { margin:5px;}
	.mobile-no-padding{padding:0px !important; }
	header .col-sm-2 {
		padding-top:45px;
		width: 100%;
	}
	
	.header-title{
		padding-left:15px; margin-top: 8px;  font-size: 16px;
	}
	header.navbar{
		padding:0px;
	}
	nav.navbar{
		background-color: #000;
		padding:0px;
	}
	.homesearch{
		padding:10px;
		margin: 0px; 
	}
	.container.home{
		padding:5px;
	}

    .homebanner{
		min-height: 0px;
		background-repeat: no-repeat !important;
		background-size: cover !important;
		background: #ffeb4a !important;
	}
	.home .banner{
		padding:0px;
	}
	.home-tagline{
		padding-top: 45px;
		text-align: center;
		font-size: 22px;
	}
	
	.home-image{
		padding: 5px 10px !important;
	}
	
	.btn-mybooking{margin-top: 0px;}
	
	.home-search-top{ padding-top:5px !important;}
}







.form-signin {
  max-width: 330px;
  padding: 15px;
  /*margin: 0 auto;*/
}
.form-signin .form-signin-heading,
.form-signin .checkbox {
  margin-bottom: 10px;
}
.form-signin .checkbox {
  font-weight: normal;
}
.form-signin .form-control {
  position: relative;
  height: auto;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px;
  font-size: 16px;
}
.form-signin .form-control:focus {
  z-index: 2;
}
.form-signin input[type="email"] {
  margin-bottom: -1px;
}
.form-signin input[type="password"] {
  margin-bottom: 10px;
}


#updateForm label.error {
		margin-left: 5px;
		width: auto;
		display: inline;
		color:red;
		font-weight:100;
}
#addPosition label.error {
		margin-left: 5px;
		width: auto;
		display: inline;
		color:red;
		font-weight:100;
}


/*
.new-row{
	margin-top:5px;
	margin-bottom:5px;
}
.row {
	margin-right: 0px !important;
	margin-left: 0px !important;
}
*/
