

/* casual*/

.top_bar { 
	margin: 0 auto;
	background-color:#ccc;
	height:5px;
	width:100%;
	min-width:960px;
}

.language_bar {z-index:9999;position:relative;}
.language_bar a{text-decoration: none;padding: 1px 5px 7px 0;height: 22px; font-size:11px; color: #c4c4c4;float:right;background: #ccc;}
.language_bar a:hover{color: #14cccc;}
.language_bar span{background: #ccc; color: #777777;float: right;font-size:11px;height: 22px;padding: 1px 5px 7px 0;}
.topbar_left {float:right;width: 15px; height: 22px;background: url("../img/topbar_left.png") no-repeat scroll 0 0 transparent;}
.topbar_right {float:right;width: 15px;height: 22px;background: url("../img/topbar_right.png") no-repeat scroll 0 0 transparent;}


.logo_img {
    display: block;
    margin: 10px auto 15px auto;
	max-width: 100%;
}

.logo_layer {
    position: absolute;
    left: 20px;
    top: -40px;
    background: #fff;
	background-color: rgba(255, 255, 255,1);
	opacity: 1;
    z-index: 100;
    width: 140px;
    max-width: 100%;
	-webkit-box-shadow: 0px 0px 4px rgba(5, 5, 5, 0.7);
    -moz-box-shadow: 0px 0px 4px rgba(5, 5, 5, 0.7);
    box-shadow: 0px 0px 4px rgba(5, 5, 5, 0.7);
	opacity: 1;
}

#logo {
    height: 135px;
    position: absolute;
    z-index: 9999;
    top: -20px;
    left: 10px;
    background: #fff;
    width: 115px;
    -webkit-box-shadow: 0px 0px 4px rgba(5, 5, 5, 0.7);
    -moz-box-shadow: 0px 0px 4px rgba(5, 5, 5, 0.7);
    box-shadow: 0px 0px 4px rgba(5, 5, 5, 0.7);
}

.navbar {
	margin-top: 40px;	
  	margin-bottom: 10px;
  	background-color: #ECF0F1;
}

.navbar-nav {
    letter-spacing: 0px;
}


@media screen and (min-width:768px) {
    .navbar { border-radius: 5px; }

    .navbar-header { /*display: none;*/ }
	
	.navbar { min-height: 0;  }

    .nav>li>a {
        padding: 5px 10px;
		margin-right: 10px;
		margin-left: 10px;
	}

    .navbar-nav>li>a { line-height: normal;  }

    .navbar-nav {
        display: table;
        float: right;
        margin: 0 auto;
        table-layout: fixed;
        font-size: 1.1em;
    }
	
	.nav-pills {
        display: table;
        float: right;
        margin: 0 auto;
		-webkit-margin-start: 10px;
        table-layout: fixed;
        font-size: 1.1em;
		padding: 4px 0px;
    }
	
	 .nav-pills>li>a {
        line-height: normal;
		color: #777;
		/*background-color: #95AAE7;*/
    }
	
	.nav-pills>li.active>a, .nav-pills>li.active>a:focus, {
		color: #f7f7f7;
		/*background-color: #95AAE7;*/
    }
	
	.nav-pills>li.active>a:hover {
		background-color: #0D44E2;
	}
	
	#map_canvas {
	width: 60%;
	height: 250px;
	margin-left: auto;
	margin-right: auto;
	margin-top:20px;
	display: block;
	}
}

@media screen and (min-width:1200px) {
    .box:after {
        content: '';
        display: table;
        clear: both;
    }
}


.carousel-inner {
  display: block;
  max-height: 400px;
  min-height: 200px;
  margin-bottom: 10px;
  margin-right: 0px;
  overflow: hidden;
  position: relative;
  width: 100%;
  padding-left: 0px;

}

.carousel-inner > .item,
.carousel-inner > .item.active{
	/*width: auto;*/
	/*height: 400px;*/
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
	overflow: hidden;
}

.carousel-inner > .item.active img,
.carousel-inner > .item img{
	width: 100%;
	max-height: 400px;
	min-height: 250px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
}


/*
inspired from http://codepen.io/Rowno/pen/Afykb 
*/
.carousel-fade .carousel-inner .item {
  opacity: 0;
  transition-property: opacity;
  -webkit-transition: opacity 3s ease-in-out;
       -o-transition: opacity 3s ease-in-out;
          transition: opacity 3s ease-in-out;
  -webkit-transform: translate3d(0, 0, 0) !important;
          transform: translate3d(0, 0, 0) !important;
}

.carousel-fade .carousel-inner .active {
   opacity: 1;
   -webkit-transition: opacity 2s ease-in;
       -o-transition: opacity 2s ease-in;
          transition: opacity 2s ease-in;
  -webkit-transform: translate3d(0, 0, 0) !important;
          transform: translate3d(0, 0, 0) !important;
}

.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  opacity: 0;
  z-index: 1;
  filter: alpha(opacity=0);
}

.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}

.carousel-fade .carousel-control {
    z-index: 12;
  	opacity: .5;
	filter: alpha(opacity=50);
	text-shadow: 0 1px 2px rgba(0,0,0,0.6);
	border-radius: 9px;  
}

/*
WHAT IS NEW IN 3.3: "Added transforms to improve carousel performance in modern browsers."
now override the 3.3 new styles for modern browsers & apply opacity
*/
@media all and (transform-3d), (-webkit-transform-3d) {
    .carousel-fade .carousel-inner > .item.next,
    .carousel-fade .carousel-inner > .item.active.right {
      opacity: 0;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
    .carousel-fade .carousel-inner > .item.prev,
    .carousel-fade .carousel-inner > .item.active.left {
      opacity: 0;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
    .carousel-fade .carousel-inner > .item.next.left,
    .carousel-fade .carousel-inner > .item.prev.right,
    .carousel-fade .carousel-inner > .item.active {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
}



/* G */
html {
	height:100%;
	overflow:auto; 
}

header {
	margin-bottom: 25px;
}
.background {
	/*background-image: url(../img/bg.jpg); 
	background-color: #e1e1e1;*/
}
a:link, a:active, a:visited {
	color: #305F9B;
	text-decoration: none;
}
a:hover {
	color: #CC6600;
}

body {
    /*padding-top: 60px; /* Required padding for .navbar-fixed-top. Remove if using .navbar-static-top. Change if height of navigation changes. */
  padding-top: 0px;
  padding-bottom: 20px;
  /*background: url(../img/pattern-stone.png); 
  background-image: url(../img/bg.jpg); 
  background-repeat: repeat; */
  background-color: #f7f7f7;
}

footer {
    margin: 50px 0;
    /*background: #fff;
    background: rgba(255,255,255,0.9); */
}

footer p {
    margin: 0;
    padding: 10px 0;
}


/* ----------------------------------------------------------- */

/* ID's */
#block-title {
	width: 900px;
	height: auto;
	position: relative;
	margin: 0 auto;
	padding-top: 10px;/*border: dashed; */
}
#flags-section {
	width: 840px;
	height: 20px;
	position:relative;
	margin: 0px auto;/*border: dashed; */
}
#main-content {
	width: 900px;
	height: 600px;
	position: relative;
	margin: 0 auto;/*border: dashed; */
}
footer {
	width: 840px;
	height: 12px;
	position:relative;
	margin: 0px auto;
	/*border: dashed;*/ 
}
/* ----------------------------------------------------------- */

#flags {
	/*float: right;*/
}
#flags img {
	opacity: 0.5;
	-moz-opacity: 0.5;
	width: 24px;
	height: 18px;
	border: 0;
}
#flags img:hover {
	opacity: 1 !important;
	-moz-opacity: 1 !important;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	transition: all 0.2s ease;
}
section#buttons-section {
	width: 140px;
	float: left;
	text-shadow: 0 1px 0 #FFF;
	padding-bottom: 0px;
	/*border: dashed; */
	margin-bottom: 10px;
	margin-left: 2px;
	margin-right: 10px;
}

#socialmedia-buttons img {
	opacity: 0.7;
	-moz-opacity: 0.7;
	width: auto;
	height: 18px;
	border: 0;
}
#socialmedia-buttons img:hover {
	opacity: 1 !important;
	-moz-opacity: 1 !important;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	transition: all 0.2s ease;
}

.ei-social_facebook_square:before {
    font-family: ElegantIcons;
	content: '\e0c1';
	font-size: large;
	color:#3e73be;
	opacity: 0.7;
	-moz-opacity: 0.7;
}
.ei-social_facebook_square:hover {
    color:#124673;
}

/* ----------------------------------------------------------- */

/* Content */

.roundCorners {
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
}

section#content-text {
	float: center;
	padding-bottom: 40px;
	padding-left: 0 auto;/*border: dashed; */
}
section#content-img {
	width: 240px;
	float: right;
	padding: 0 0 0 40;
	border: dashed;
}
.img-right-column {
	width: 229px;
	text-align:center;
}
.center {
	margin-left: auto;
	margin-right: auto;
	text-align:center;
}
.center_block {
	margin-top: 0px;
	margin-left: auto;
	margin-right: auto;
	width: inherit;
	text-align: center;
}
#directions_map {
	float: left;
}
#directions_settings {
	margin-top: 100px;
	float: right;
}
.directions_panel_container {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}
section#portfolio {
	/*width: 760px;*/
	padding-bottom: 40px;
}
#portfolio figure a.link-thumbs {
	width: 60px;
	height: 60px;
	display: block;
	float: left;
	margin-left: 12px;
	margin-bottom:15px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-khtml-border-radius: 8px;
	border-radius: 8px;
	/*-webkit-box-shadow: 2px 2px 2px #999; 
-box-box-shadow: 2px 2px 2px #999; 
-khtml-box-shadow: 2px 2px 2px #999; 
box-shadow: 2px 2px 2px #999; */

box-shadow: 2px 2px 2px #ddd;
	-moz-box-shadow: 2px 2px 2px #ddd;
	-webkit-box-shadow: 2px 2px 2px #ddd;
	border: 1px solid #e2dfdf;
	opacity: .8;
	-webkit-transition: opacity 0.4s ease-out;
	-webkit-transition: -webkit-transform 0.4s ease-out;
}
figure {
	display: block;
	-webkit-margin-before: 1em;
	-webkit-margin-after: 1em;
	-webkit-margin-start: 20px;
	-webkit-margin-end: 20px;
}
#portfolio figure a.link-thumbs:hover {
	opacity: 1;
	-webkit-transform:scale(1.05);
}
#portfolio figure a.link-thumbs:nth-child(2n) {
margin-right: 0;
}
#portfolio video {
	background: #C9CEC8;
	padding: 10px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-khtml-border-radius: 8px;
	border-radius: 8px;
	-webkit-box-shadow: 1px 1px 2px #999;
	-box-box-shadow: 1px 1px 2px #999;
	-khtml-box-shadow: 1px 1px 2px #999;
	box-shadow: 1px 1px 2px #999;
	clear: both;
}
.main_letters {
	/*font-family: 'Cambria';
	font-family: 'Source Sans Pro', 'sans-serif';*/
	font-family: 'Cabin', 'sans-serif';
	font-size: 12px;
}

.main_letters_greek {
	/*font-family: 'Cambria';
	font-family: 'Source Sans Pro', 'sans-serif';*/
	font-family: 'Open Sans', 'sans-serif';
	font-size: 13px;
}

.letters_small {
	font-family: 'Cabin', 'sans-serif';
	font-size: 13px;
}
.red_letters {
	font-family: Arial, Helvetica, sans-serif, Garamond;
	font-size: 12px;
	color: #FF0000;
}
.bold_letters {
	font-size: 12px;
	/*font-family: Arial, Helvetica, sans-serif, Garamond;*/
	font-family: 'Cabin', 'sans-serif';
	font-weight: bold;
}
.orange_field {
	font-family: Arial, Helvetica, sans-serif, Garamond;
	font-size: 12px;
	color: #000000;
	background-color: #FCE2A7;
	border: 1px solid #000000;
}
.red_orange_field {
	font-family: Arial, Helvetica, sans-serif, Garamond;
	font-size: 12px;
	color: #000000;
	background-color: #FCE2A7;
	border: 1px solid #000000;
}
.white_field {
	font-family: Arial, Helvetica, sans-serif, Garamond;
	font-size: 12px;
	color: #666666;
	border: 1px solid #000000;
}
.background_pale {
	background-color: #eff3f7;
}
.background_brown {
	background-color: #F8F2DE;
}
.white_sm {
	font-family: Tahoma;
	font-size: 10px;
	font-style: normal;
	line-height: 10px;
	font-weight: normal;
	color: #FFFFFF
}
.tbtn {
	background-color: #95AAE7;
	-webkit-transition: background 0.4s ease-out;
	border-bottom: solid 1px #0D44E2;
	border: solid 0px #0D44E2;
	width: 100px;
	height: 36px;
	margin-left: auto;
	margin-right: auto;
	margin-top:20px;
	white-space:normal;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	behavior: url(PIE.htc);
	color: white;
	text-shadow: 0 1px rgba(0, 0, 0, 0.1);
	text-decoration:none;
	font-family: arial;
	font-size: 0.8em;
	font-weight: 700;
	cursor:pointer;
}
.tbtn:hover {
	background: #62719C;
}
.tbtn:active {
/*	position: relative;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#7F99E5), to(#7F99E5)); /* Saf4+, Chrome 
  	background-image: -webkit-linear-gradient(top, #7F99E5, #7F99E5); /* Chrome 10+, Saf5.1+, iOS 5+ 
  	background-image:    -moz-linear-gradient(top, #7F99E5, #7F99E5); /* FF3.6 
  	background-image:     -ms-linear-gradient(top, #7F99E5, #7F99E5); /* IE10 
	background-image:      -o-linear-gradient(top, #7F99E5, #7F99E5); /* Opera 11.10+ 
	background-image:         linear-gradient(to bottom, #7F99E5, #7F99E5);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#7F99E5', endColorstr='#7F99E5'); /* IE<10 */
}
.tbtn_small {
	background: #B5A679;
	font-size: 11px;
	font-weight: bold;
	color: #FFF;
	padding: 6px 10px;
	border: none;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
	-khtml-border-radius:4px;
	border-radius:4px;
	-webkit-transition: background 0.4s ease-out;
	cursor: pointer;
}
.tbtn_small:hover {
	background: #8C815F;
}
/* Form */
input.button {
	background: #7F99E5;
	width: 140px;
	height: 40px;
	font-size: 15px;
	color: #fff;
	border: 1px #fff solid;
	opacity: 0.8;
	margin-left: auto;
	margin-right: auto;
	display: block;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	behavior: url(PIE.htc);
	/* -- CSS3 Shadow - create a shadow around each input element -- */ 
		-webkit-box-shadow: 0px 0px 0px #aaa;
	-moz-box-shadow: 0px 0px 0px #aaa;
	box-shadow: 0px 0px 0px #aaa;
	/* -- CSS3 Transition - define what the transition will be applied to (i.e. the background) -- */		
		-webkit-transition: background 0.3s linear;
}
input.button:hover {
	opacity: 1;
	background: #7F99E5;
	cursor:  pointer;
}
input.text {
	padding: 4px;
	margin: 2px 0 2px 0;
	background: rgb(250,250,250);
	width: 120px;
	font-size: 12px;
	color: #555;
	border: 1px #ddd solid;
	/* -- CSS3 Shadow - create a shadow around each input element -- */ 
		-webkit-box-shadow: 0px 0px 2px #aaa;
	-moz-box-shadow: 0px 0px 2px #aaa;
	box-shadow: 0px 0px 2px #aaa;
	/* -- CSS3 Transition - define what the transition will be applied to (i.e. the background) -- */		
		-webkit-transition: background 0.3s linear;
}
input.text:hover, textarea:hover {
	background: #fff;
}
select {
	padding: 2px;
	margin: 2px 15px 2px 0;
	background: rgb(250,250,250);
	width: 40px;
	font-size: 12px;
	color: #555;
	border: 1px #ddd solid;
	/* -- CSS3 Shadow - create a shadow around each input element -- */ 
		-webkit-box-shadow: 0px 0px 2px #aaa;
	-moz-box-shadow: 0px 0px 2px #aaa;
	box-shadow: 0px 0px 2px #aaa;
	/* -- CSS3 Transition - define what the transition will be applied to (i.e. the background) -- */		
		-webkit-transition: background 0.3s linear;
}
select.text_select {
	width: auto;
}
/* ----------------------------------------------------------- */
.container_directions {
	height: 100px;
	width: 220px;
	background: #fff;
	margin: 10px auto;
	text-align:center;
}
#map_canvas {
	width: 100%;
	height: 400px;
	margin-left: auto;
	margin-right: auto;
	margin-top:20px;
	margin-bottom:10px;
	display: block;
}
.roundedCorners {
	height: 60px;
	width: 60px;
	padding: 0;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
}
.orange {
	color: #fef4e9;
	border: solid 1px #da7c0c;
	background: #f78d1d;
	background: -webkit-gradient(linear, left top, left bottom, from(#faa51a), to(#f47a20));
	background: -moz-linear-gradient(top, #faa51a, #f47a20);
 filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#faa51a', endColorstr='#f47a20');
}
.orange:hover {
	background: #f47c20;
	background: -webkit-gradient(linear, left top, left bottom, from(#f88e11), to(#f06015));
	background: -moz-linear-gradient(top, #f88e11, #f06015);
 filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#f88e11', endColorstr='#f06015');
}
.orange:active {
	color: #fcd3a5;
	background: -webkit-gradient(linear, left top, left bottom, from(#f47a20), to(#faa51a));
	background: -moz-linear-gradient(top, #f47a20, #faa51a);
 filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#f47a20', endColorstr='#faa51a');
}
.image {
	background-color: #FAFAFA;
	box-shadow: 2px 2px 2px #ddd;
	-moz-box-shadow: 2px 2px 2px #ddd;
	-webkit-box-shadow: 2px 2px 2px #ddd;
	border: 1px solid #e2dfdf;
}
.rates-table {
	margin-top:15px;
}
.rates-table th {
	color:#fff;
	font-size:13px;
	height:40px;
	font-weight:normal;
	border-bottom: 2px solid #dbdbdb;
	background:#62719C;
	margin-bottom:10px;
	padding: 5px 5px;
}
.rates-table #header {
	color:#000;
	height:40px;
	font-weight:normal;
	border-bottom: 2px solid #dbdbdb;
	background:#FDFdFd; /*#62719C;*/
	margin-bottom:10px;
}
.rates-table tr.rates_header {
	margin-bottom:10px;
}
.rates-table td {
	font-size:13px;
	text-align:center;
	padding:4px 0 4px 0;
	color:#45556c;
	font-weight:normal;
	border-bottom: 1px solid #dbdbdb;
	padding:8px 0px 6px 0px;
}
.rates-notes {
	margin-top:15px;
}
.rates-notes p {
	font-size:13px!important;
	font-style:italic;
	color:#666;
	line-height:16px!important;
}
.table-amenities {
	margin-top:15px;
}
.table-amenities th {
	color:#000;
	font-size:14px;
	height:12px;
	font-weight:normal;
	border-bottom: 2px solid #dbdbdb;
	/*background:#CCCCCC; */
	margin-bottom:10px;
	padding: 1px 1px;
}
#left10 {
	margin-left: 10px;
}
#left20 {
	margin-left: 20px;
}
#left40 {
	margin-left: 40px;
}
footer p {
	width: 400px;
	margin: 0 auto;
	font-size: 14px;
	text-shadow: 0 1px 0 #FFF;
	text-align: center;
}
<!--
Cosmores
-->
#div_children_cosmores {
 border-style:solid;
 border-width:1px;
 border-color:#1f1f1f;
 background-color:#efefef;
}
div.div_children_content_cosmores {
	padding:5px;
}
/** style for children popup h3 tag() **/
div.div_children_content_cosmores h3 {
	width:100%;
	text-align:center;
	padding:0px;
	margin:0px;
	padding-top:2px;
	padding-bottom:2px;
	font-weight:normal;
}
/** style for children popup label fields **/

div.div_children_content_cosmores label.label_child_cosmores {
}
/** style for children popup input fields **/

div.div_children_content_cosmores input {
}
div.div_children_content_cosmores div.div_children_buttons_cosmores {
	text-align:center;
	width:100%;
}
div.div_children_content_cosmores div.div_children_buttons_cosmores a {
	padding-left:5px;
	padding-right:5px;
}
img {
	/*width:100px;*/
	margin-right: 2px;
}
#frmSearchCosmoresBooking input {
	width:80px;
	margin-right: 15px;
}
/** style for jquery ui datepicker **/
#ui-datepicker-div {
	font-size:11pt;
}
#ui-datepicker-div span.ui-datepicker-month {
	color:#fff;
}
#ui-datepicker-div span.ui-datepicker-year {
	color:#eee;
}

.jumbotron {
  padding-top: 0px;
  padding-bottom: 30px;
  padding-left: 0px;
  padding-right: 0px;
  color: inherit;
  background-color: #eee;
  webkit-box-shadow: 0px 0px 4px rgba(50, 50, 50, 0.3);
  -moz-box-shadow: 0px 0px 4px rgba(50, 50, 50, 0.3);
  box-shadow: 0px 0px 4px rgba(50, 50, 50, 0.3);
  /*box-shadow: 0 1px 2px 0 rgba(107,107,107,.2); */
  z-index: 101;
}

.jumbotron p{
  font-size: 15px;
}

.jumbotron p_text{
  font-family: 'Cabin', 'sans-serif';
  font-size: 13px;
  text-align:justify;
}

.jumbotron p_text_greek{
  font-family: 'Open Sans', 'sans-serif';
  font-size: 13px;
  text-align:justify;
}

div.text_greek{
  font-family: 'Open Sans', 'sans-serif';
  font-size: 13px;
}

h1.greek, h2.greek, h3.greek, h4.greek, h5.greek{
	font-family: 'Open Sans', 'sans-serif';
}


section#main_left {
	width: 64%;
	float: left;
	padding-bottom: 40px;
	padding-left: 0 auto;
	border: dashed; 
}

section#main_right {
	width: 35%;
	float: right;
	padding-bottom: 40px;
	padding-left: 0 auto;
	border: dashed; 
}


/******** Cosmores ****************************************************/
#div_children_cosmores {
	border-style:solid;
	border-width:1px;
	border-color:#1f1f1f;
	background-color:#efefef;
}
div.div_children_content_cosmores {
	padding:5px;
}
/** style for children popup h3 tag() **/
div.div_children_content_cosmores h3 {
	width:100%;
	text-align:center;
	padding:0px;
	margin:0px;
	padding-top:2px;
	padding-bottom:2px;
	font-weight:normal;
}
/** style for children popup label fields **/

div.div_children_content_cosmores label.label_child_cosmores {
}
/** style for children popup input fields **/

div.div_children_content_cosmores input {
}
div.div_children_content_cosmores div.div_children_buttons_cosmores {
	text-align:center;
	width:100%;
}
div.div_children_content_cosmores div.div_children_buttons_cosmores a {
	padding-left:5px;
	padding-right:5px;
}
#frmSearchCosmoresBooking label {
	/*width:60px;*/
	margin-right: 10px;
}
#frmSearchCosmoresBooking input {
	width:80px;
}
/** style for jquery ui datepicker **/
#ui-datepicker-div {
	font-size:11pt;
}
#ui-datepicker-div span.ui-datepicker-month {
	color:#fff;
}
#ui-datepicker-div span.ui-datepicker-year {
	color:#eee;
}


/* Carousel for room*/
#carousel-room {
	margin: 20px auto;
	width: 400px;
	height: auto;
}
#carousel-room .carousel-indicators {
	margin: 10px 0 0;
	overflow: auto;
	position: static;
	text-align: left;
	/*white-space: nowrap;*/
	width: 100%;
}
#carousel-room .carousel-indicators li {
	background-color: transparent;
	-webkit-border-radius: 0;
	border-radius: 0;
	display: inline-block;
	height: auto;
	margin: 0 !important;
	width: auto;
}
#carousel-room .carousel-indicators li img {
	display: block;
	width:80px;
	height: 60px;
}
#carousel-room .carousel-outer {
	/*position: relative;*/
	width: 100%;
}

.carousel-inner-room {
  display: block;
  max-height: 400px;
  margin-bottom: 10px;
  margin-right: 0px;
  overflow: hidden;
  position: relative;
  width: 100%;
  padding-left: 0px;
}

.carousel-inner-room > .item,
.carousel-inner-room > .item.active{
	height: 400px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
	overflow: hidden;
}

.carousel-inner-room > .item.active img,
.carousel-inner-room > .item img{
	width: 100%;
	min-height: 400px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
}

.list-inline {
  text-align: center;
}
.list-inline > li {
  margin: 2px 2px;
  padding: 0;
}
.list-inline > li:hover {
  cursor: pointer;
}
.list-inline .selected img {
  opacity: 1;
  border-radius: 4px;
}
.list-inline img {
  opacity: 0.5;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}
.list-inline img:hover {
  opacity: 1;
}

.item > img {
  max-width: 100%;
  height: auto;
  display: block;
}

.img_sm_carousel {
  	width: 60px; 
    margin-right: 0px;
}

.carousel-inner > .my_item,
.carousel-inner > .my_item.active{
	width:auto;
	height: 300px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
	overflow: hidden;
}

.my_carousel-inner > .my_item.active img,
.my_carousel-inner > .my_item img{
	width: 100%;
	min-height: auto;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
}


.tbtn_call {
  background-color: #f5f5f5;
  background-image: linear-gradient(to bottom,#ffffff,#e6e6e6);
  background-repeat: repeat-x;
  border: 1px solid #cccccc;
  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  border-color: rgba(0, 0, 0, 0.1) 
                rgba(0, 0, 0, 0.1) 
                rgba(0, 0, 0, 0.25);
  border-bottom-color: #b3b3b3;
  border-radius: 4px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 
                    0 1px 2px rgba(0, 0, 0, 0.05);
  color: #333;
  display: block;
  font-size: 125%;
  font-style: normal;
  line-height: 20px;
  margin: 20px 0 0;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
}


button.btn.add::before {
  font-family: fontAwesome;
  content: "\f067\00a0";
}
button.btn.call_mobile::before {
  font-family: fontAwesome;
  content: "\f10b\00a0";
  font-size: 32px;
}



