/* ROTATING IMAGE BOX */

#rotating-image-box {
	display: block;
	position: relative;
	width: 100%;
	height: 720px;
}

.image-box {
	display: none;
	position: relative;
	float: left;
	width: 50%;
	height: 180px;
}

.image-box div {
	display: inline-block;
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center;
	background-size: cover;
}

#box0 {
	margin-right: 50%;
}

#box3 {
	margin-left: 50%;
}


@media all and (max-width: 767px) {

	#rotating-image-box {
		height: 540px;
	}

	#box4 {
		display: none !important;
	}

	.image-box {
		width: 49.8%;
	}

}

@media all and (max-width: 550px) {

	#rotating-image-box {
		height: 420px;
	}

	.image-box {
		height: 140px;
	}

}

@media all and (max-width: 400px) {

	#rotating-image-box {
		height: 330px;
	}

	.image-box {
		height: 110px;
	}

}

/* HEADER CUSTOM SEARCH */

.custom-search .search-container {
	position: absolute;
	top: 3px;
	right: 40px;
	transition: visibility 0ms, opacity 300ms linear;
	opacity: 0;
	visibility: hidden;
}

.custom-search form {
	width: 300px;
	height: 35px;
	float: left;
}

.custom-search form .search-btn {
	visibility: hidden;
}

.custom-search .search-input {
	position: absolute;
	top: 0;
	right: 0;
	width: 300px;
	min-height: 35px;
	margin: 0;
	padding: 3px 12px;
	background-color: #efefef;
	border-radius: 0;
}

 .search-open .search-container {
	opacity: 1;
	visibility: visible;
}

.search-open #search-go-btn {
	background-color: #8d679e;
	color: #eee8f0;
}

#search-go-btn,
#search-close-btn {
	position: absolute;
	width: 40px;
	height: 35px;
	padding: 4px 9px;
	line-height: 25px;
	text-align: center;
	cursor: pointer;
}

#search-go-btn {
	top: 3px;
	right: 0;
	background-color: #8d679e;
	color: #eee8f0;
	font-size: 16px;
}

#search-close-btn {
	right: 300px;
	background-color: #8d679e;
	color: #eee8f0;
}

@media all and (max-width: 550px) {

	.custom-search form {
		width: 188px;
	}

	.custom-search .search-input {
		width: 188px;
	}

	#search-close-btn {
		right: 188px;
	}

}