#search {
float:right;
}

#search input[type="text"] {
    background: url(../img/search-green.png) no-repeat 170px 8px #ffffff;
    border: 1px solid #d1d1d1;
    /*font-family: 'OpenSans-Light'; */
	font-size:14px;
    color: #000000;
    width: 210px;
    padding: 10px 15px 10px 15px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 0px;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15) inset;
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15) inset;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15) inset;
    -webkit-transition: all 0.7s ease 0s;
    -moz-transition: all 0.7s ease 0s;
    -o-transition: all 0.7s ease 0s;
    transition: all 0.7s ease 0s;
	
	input:focus {outline: 0;}
    }

#search input[type="text"]:focus {
    width: 210px;
	outline: none;
    }



/* Owl Slider */
.owl-book {
	width:80%;
	display: inline-block;
	margin:0 auto;
}

.owl-book .item {
	box-shadow:0px 0px 1px rgba(0,0,0,.2);
}

.owl-book .item .overlay {
	position: absolute;
	left:0;
	top:0;
	width:100%;
	height: 100%;
	opacity: 0;
	transition: all 0.3s ease;
}
.owl-book  .item:hover .overlay {
	opacity: 1;
}
.owl-book .item img {
	width:100%;
	margin:15% auto;
	transition: all 0.3s ease;
	border-radius:4px;
}
.owl-book .item:hover img {
}
.owl-book .item .overlay > a {
	position: absolute;
	display: inline-block;
	left:calc(50% - 25px);
	top:calc(50% - 25px);
	font-size:24px;
	line-height: 50px;
	width:50px;
	height: 50px;
	text-align: center;
	background: white;
	border-radius:50%;
	box-shadow:0px 1px 3px rgba(0,0,0,.3);
	color:#484d53;
}

.owl-book .item .overlay > a:hover {
	color:white;
	background: #7cc576;
}

.owl-reviews .item {
	padding:0 25px;
}

.owl-reviews .owl-controls {
	position: absolute;
	width:100%;
	top:calc(50% - 30px);
}

.owl-reviews .owl-controls .owl-prev,
.owl-reviews .owl-controls .owl-next {
	position: absolute;
	font-size:36px;
	color:#bbb;
	transition: all 0.3s ease;
}
.owl-reviews .owl-controls .owl-prev:hover,
.owl-reviews .owl-controls .owl-next:hover {
	color:#484d53;
}
.owl-reviews .owl-controls .owl-prev {
	left:-40px;
}
.owl-reviews .owl-controls .owl-next {
	right:-40px;
}

@media(max-width:768px) {
	.owl-reviews .owl-controls {
		position: relative;
		text-align: center;
		top:-30px;
	}

	.owl-reviews .owl-controls .owl-prev,
	.owl-reviews .owl-controls .owl-next {
		position: relative;
		display: inline-block;
		font-size:36px;
	}
	.owl-reviews .owl-controls .owl-prev {
	}
	.owl-reviews .owl-controls .owl-next {
	}
}

/* Review Styles */

.review {
	background: #fff;
/*	padding:20px; */
	border-radius:2px;
/*	box-shadow:0 3px 5px rgba(0,0,0,.05); */
	margin:30px 0;
/*	border:1px solid #f1f1f1; */
}

.review img.reviewer-pic {
	margin:0 auto;
	margin-top:10px;
	width:auto;
}

.review .reviewer-name {
	margin-top:15px;
	margin-bottom:0px;
}

.review .reviewer-city {
	margin:0;
	margin-bottom:20px;
}

.review .rating {
	margin:0;
	margin-top:-40px;
}

.rating {
	display: inline-block;
	margin:25px 15px;
}

.rating span.rate {
	display: inline-block;
	height:15px;
	width:15px;
	border:5px solid #cccccc;
	border-radius:50%;
	margin:1px;
}

.rating span.rate.active {
	border-color:#ffc107;
}

.rate-amount {
	display: inline-block;
	font-family: 'MyriadPro-Regular', sans-serif;
	font-size:18px;
	color:#bbbbbb;
	position: relative;
	top:-3px;
}

.rate-amount span {
	font-family: 'MyriadPro-Regular', sans-serif;
}
@media(max-width:960px){
	.review{position: relative;}
	.review a{display: block;}
}

/* Form Controls */

.form-control {
  display: block;
  width: 100%;
  padding: 15px 20px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #000;
  background-color: #fff;
  background-image: none;
  border: 1px solid #dddddd;
  border-radius: 3px;
  margin:15px 0 0;
  transition: all 0.3s ease;
}
.form-control:focus {
  border-color: #7cc576;
  outline: 0;
}
.form-control::-moz-placeholder {
  color: #bbb;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #bbb;
}
.form-control::-webkit-input-placeholder {
  color: #bbb;
}

.contact-button {
	margin:15px 0;
}

button:focus {
	outline:0;
}

/* Sample Form */
#sample-form {
	padding:20px 0;
	display:none;
}

#sample-form .sign-up-button {
	padding:10px 25px;
	margin:15px 0;
	width:100%;
}

/* Notification Box */

.notification-box {
	width:30%;
	padding:10px;
	background: #7cc576;
	box-shadow:0 3px 5px rgba(0,0,0,.15);
	border-radius:3px;
	text-align: center;
	color:white;
	position: fixed;
	left:35%;
	bottom:-40px;
	z-index:4000;
	opacity: 0;
	transition: all 0.5s ease;
}

.notification-box.active {
	opacity: 1;
	bottom:40px;
}

.notification-box > .content {
	color:#bbb;
	border:0;
	padding:0;
	text-align: center;
}
.form-incomplete {
	border:1px solid #bb5555;
}

/* Content Wrapper */

#wrapper {
	transition: all 0.3s ease;
	width:100%;
	top:0;
	left:0;
    display:inline-block;
    overflow:hidden;
}

#wrapper.behind {
	position: relative;
	transform: scale(0.8) translateY(-5%);
}

/* Mobile Navigation */

.mobile-nav {
	position: fixed;
	left:0;
	top:100%;
	width:100%;
	height: 100%;
	z-index:9500;
	color:#222;
	transition: all 0.3s ease;
	background: rgba(255,255,255,.95);
	display:table;
	opacity: 0;
        
} .mobile-nav.active{top:0;opacity:1;}
@media(min-width:768px){
	.mobile-nav{display:none;}
}

.mobile-nav > ul {
	display:table-cell;
	vertical-align: middle;
	list-style: none;
	width:100%;
	padding:0;
	text-align: center;
        overflow-y:hidden;
}

.mobile-nav > ul > li > a {
	margin:10px 0;
	font-size:16px;
}

.mobile-nav a {
	color:#888;
}

.mobile-nav a.close-btn {
	position: absolute;
	bottom:30px;
	left:calc(50% - 10px);
	color:#666;
	font-size:24px;
}