#rotating_banner
{
	position: relative;
	width: 100%;
	min-height: 450px;
	background-color: #000;
}
.banner_item
{
	position: absolute;
	display:flex;
	align-items:center;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center top;
	background-size: cover;
	background-repeat: no-repeat;
	opacity: 0;
	transition: opacity 1s;
}
.banner_text
{
	box-sizing:content-box;
	display:flex;
	width: 33%;
	margin-left:30px;
	opacity: 0;
	transition: margin-left 0.3s, opacity 0.3s;
	transition-delay: 1.3s;
	font-family: bebas_neueregular;
	font-size: 40px;
	font-weight: normal;
	line-height: 1.1em;
	color:#fff;
	filter:drop-shadow(0 0 4px #000);
}
.banner_text.opacity_1
{
	margin-left:50px;
}
#leftButton
{
	position: absolute;
	left: 25px;
	top: 50%;
	width:40px;
	height:40px;
	background:#000 url("/_images/arrow-left.png") no-repeat center center;
	border-radius:20px;
	cursor:pointer;
	z-index:600;
	transition:all .3s
}
#rightButton
{
	position: absolute;
	right: 25px;
	top: 50%;
	width:40px;
	height:40px;
	background:#000 url("/_images/arrow-right.png") no-repeat center center;
	border-radius:20px;
	cursor:pointer;
	z-index:600;
	transition:all .3s
}
#progress_buttons_container
{
	position: absolute;
	left: 0;
	bottom: 15px;
	display:flex;
	align-items:center;
	justify-content:center;
	width:100%;
	height:15px;
	transition:all .3s
}
.progress_button
{
	display:inline-block;
	box-sizing:border-box;
	width:15px;
	height:15px;
	margin:0 5px;
	font-size:0;
	opacity:0.3;
	background-color:#fff;
	transition:all .2s;
	z-index:10000
}
.progress_button:hover
{
	opacity:0.6
}
.progress_button_black
{
	opacity:0.3;
}
.progress_button_white
{
	opacity:0.9;
}
#progress_bar
{
	position:absolute;
	left:0;
	bottom:0;
	width:100%;
	height:5px;
	text-align:left
}
#progress_bar_inner
{
	width:0;
	height:5px;
	background-color:#c20000
}
