/**
 * Name: bxslider.css
 *	
 *	T.O.C
 *
 *	=Basics
 *	=Slider theme
 *	=Loader
 *	=Pager
 *	=Directional Controls (Next / Prev)
 *	=Auto Controls (Start / Stop)
 *	=Pager with auto controls hibrid layout	
 *	=Image Captions
 *
 */

 
 /* ==========================================================================
   =Basics
   ========================================================================== */

	.bx-wrapper {
		position: relative;
		padding: 0;
		margin: 0 auto 50px auto;
	}
	
	.bx-wrapper ul { list-style: none; }
	
	.bx-wrapper li > img {
		display: block;
		max-width: 100%;
	}

/* ==========================================================================
   =Slider theme
   ========================================================================== */

	.bx-wrapper .bx-viewport {
		/*fix other elements on the page moving (on Chrome)*/
		-webkit-transform: translatez(0);
		    -moz-transform: translatez(0);
		   -ms-transform: translatez(0);
			-o-transform: translatez(0);
			   transform: translatez(0);
	}
	
	.bx-wrapper .bx-pager,
	.bx-wrapper .bx-controls-auto {
		position: absolute;
		bottom: 30px;
		width: 100%;
	}

/* ==========================================================================
   =Loader
   ========================================================================== */

	.bx-wrapper .bx-loading {
		position: absolute;
		z-index: 10000;
		top: 0;
		left: 0;
		width: 100%;
		min-height: 50px;
		height: 100%;
		background: #fff url(images/bx_loader.gif) no-repeat center center;
	}

/* ==========================================================================
   =Pager
   ========================================================================== */

	.bx-wrapper .bx-pager {
		padding-top: 20px;
		color: #d9b772;
		text-align: center;
	}
	
	.bx-wrapper .bx-pager .bx-pager-item,
	.bx-wrapper .bx-controls-auto .bx-controls-auto-item { display: inline-block; }
	
	.bx-wrapper .bx-pager.bx-default-pager a {
		display: block;
		width: 10px;
		height: 10px;
		border-radius: 5px;
		outline: 0;
		margin: 0 5px;
		background: #550000;
		text-indent: -9999px;	
	}
	
	.bx-wrapper .bx-pager.bx-default-pager a:hover,
	.bx-wrapper .bx-pager.bx-default-pager a.active { background: #d9b772; }

/* ==========================================================================
   =Directional Controls (Next / Prev)
   ========================================================================== */

	.bx-wrapper .bx-prev {
		left: -100px;
		background: url(../../images/left.png) no-repeat center center;
	}
	
	.bx-wrapper .bx-next {
		right: -100px;
		background: url(../../images/right.png) no-repeat center center;
	}
	
	/**
	 * 1. changing the z-index from the original 9999 to 
	 */
	
	.bx-wrapper .bx-controls-direction a {
		position: absolute;
		z-index: 1000; /* 1 */
		top: 50%;
		width: 45px;
		height: 45px;
		border: 2px solid #d9b772;
		border-radius: 50%;
		outline: 0;
		margin-top: 20px;
		background-color: #d9b772;
		text-indent: -9999px;
	}
	.bx-wrapper .bx-controls-direction a:hover { background-color: #550000; }
	
	.bx-wrapper .bx-controls-direction a.disabled { display: none; }

/* ==========================================================================
   =Auto Controls (Start / Stop)
   ========================================================================== */

	.bx-wrapper .bx-controls-auto { text-align: center; }
	
	.bx-wrapper .bx-controls-auto .bx-start {
		display: block;
		width: 10px;
		height: 11px;
		outline: 0;
		margin: 0 3px;
		background: url(images/controls.png) -86px -11px no-repeat;
		text-indent: -9999px;
	}
	
	.bx-wrapper .bx-controls-auto .bx-start:hover,
	.bx-wrapper .bx-controls-auto .bx-start.active { background-position: -86px 0; }
	
	.bx-wrapper .bx-controls-auto .bx-stop {
		display: block;
		width: 9px;
		height: 11px;
		outline: 0;
		margin: 0 3px;
		background: url(images/controls.png) -86px -44px no-repeat;
		text-indent: -9999px;
	}
	
	.bx-wrapper .bx-controls-auto .bx-stop:hover,
	.bx-wrapper .bx-controls-auto .bx-stop.active { background-position: -86px -33px; }

/* ==========================================================================
   =Pager with auto controls hibrid layout
   ========================================================================== */

	.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
		width: 80%;
		text-align: left;	
	}
	
	.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
		right: 0;
		width: 35px;
	}

/* ==========================================================================
   =Image Captions
   ========================================================================== */

	.bx-wrapper .bx-caption {
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		background: rgba(80, 80, 80, 0.75);
	}
	
	.bx-wrapper .bx-caption span {
		display: block;
		padding: 10px;
		color: #fff;
	}

	
	.menu-items-slider {
		position: relative;		
		border-top: 2px solid #d9b772;
		border-bottom: 2px solid #d9b772;
		margin: 50px 0 20px 0;
	}
	
	.menu-items-slider .bx-wrapper { margin-bottom: 0; }
	
	.menu-items-slider li {
		padding: 180px 0;
		background: no-repeat center center;
	}
	
	.menu-items-slider li img { margin-top: 45px; }
	
	.menu-items-slider .menu-items-description {
		padding: 25px;
		margin-bottom: 0;
		background-color: #550000;
		color: #fff;
	}
	
	.menu-items-slider .menu-items-description p:last-child { margin-bottom: 0; }
	
	.menu-items-slider .menu-items-description h3 {
		padding-bottom: 15px;
		border-bottom: 1px solid #d9b772;
		margin: 0 -25px 20px 0;
		color: #fff;
		text-transform: uppercase;
	}
	
	.daily-offers {
		position: absolute;
		top: 50%;
		left: -100px;
		display: none;
		padding: 30px 40px;
		background-color: #d9b772;
		color: #fff;
		font: 36px/36px "Amaranth", sans-serif;
		font-weight: 700;
		text-transform: uppercase;
		-webkit-transform: translateY(-50%) rotate(-90deg);
			-ms-transform: translateY(-50%) rotate(-90deg);
				transform: translateY(-50%) rotate(-90deg);
	}
	
	.testimonial-slider .bx-wrapper .bx-pager,
	.testimonial-slider .bx-wrapper .bx-controls-auto { bottom: -20px; }
	
	.testimonial-slider .bx-wrapper .bx-controls-direction a { display: none; }
	
	@media (min-width: 1200px) {
		
		.daily-offers { display: block; }
		
		.testimonial-slider .bx-wrapper .bx-pager,
		.testimonial-slider .bx-wrapper .bx-controls-auto { display: none; }
		
		.testimonial-slider .bx-wrapper .bx-controls-direction a { display: block; }
		
	}
	
	@media (max-width: 767px) {
		
		.menu-items-slider li {
			min-height: 600px;
			padding: 40px 0 90px 0;
		}
		
	}