
/*-------- SLIDER --------*/
 
 #slider
	{
	position: relative;
/*	margin-top: 40px;*/
	overflow: hidden;	

	-webkit-user-select: none;
  	-moz-user-select: none;
  	-ms-user-select: none;
  	-o-user-select: none;
  	user-select: none; 
	}

 #slider img
	{
	width: 100%;
	margin-bottom: 35px;
	visibility: hidden;
	vertical-align: top;
	z-index: -1;
	}

 #slider .slide
	{
	position: absolute;
	top:0; left:0; right:0; bottom:0;

	-webkit-transform: translate(0,-1000px);
	-moz-transform: translate(0,-1000px);
	-o-transform: translate(0,-1000px);
	transform: translate(0,-1000px);
	}

 #slider .slide-image
	{
	display: block;
	background-position: center top;
	background-repeat: no-repeat;
	background-size: 100% auto;
	}

 #slider .slide-1
	{
	-webkit-transform: translate(0,0);
	-moz-transform: translate(0,0);
	-o-transform: translate(0,0);
	transform: translate(0,0);
	}

 #slider .slide .title
	{
	position: absolute;
	right: 50px;
	bottom: 90px;
	padding: 10px 25px;
	background-color: RGBA(0,0,0, 0.7);
	font-size: 28px;
	font-weight: 300;
	color: #ffffff;
	cursor: pointer;
	}

 #slider .slide .show
	{
	position: absolute;
	right: 50px;
	bottom: 50px;
	padding: 8px 25px;
	background-color: #B00F0C;
	font-size: 16px;
	font-weight: bold;
	color: #ffffff;
	text-transform: uppercase;
	cursor: pointer;
	}
 #slider .slide .show:hover
	{
	background: RGB(0,180,255);
	background: #00bfff;
	}

 #slider .slide-btn
	{
	position: absolute;
	top: 50%;
	margin-top: -35px;
	width: 37px;
	height: 70px;
	background-color: RGBA(0,0,0, 0.15);
	background-position: center center;
	background-repeat: no-repeat;
	cursor: pointer;
	z-index: 10;

	-webkit-transition: background-color 0.5s linear;
	-moz-transition: background-color 0.5s linear;
	-o-transition: background-color 0.5s linear;
	transition: background-color 0.5s linear;
	}

 #slider .slide-btn.prev
	{
	left: 0px;
	border-radius: 0 8px 8px 0;
	background-image: url('images/slide-back.png?v1');
	}

 #slider .slide-btn.next
	{
	right: 0px;
	border-radius: 8px 0 0 8px;
	background-image: url('images/slide-next.png?v1');
	}

 #slider .slide-btn:hover
	{
	background-color: RGBA(0,0,0, 0.3);
	}

 #slider .slide-btn.prev:active
	{
	-webkit-transform: translate(-2px,2px);
	-moz-transform: translate(-2px,2px);
	-o-transform: translate(-2px,2px);
	transform: translate(-2px,2px);
	}
 #slider .slide-btn.next:active
	{
	-webkit-transform: translate(2px,2px);
	-moz-transform: translate(2px,2px);
	-o-transform: translate(2px,2px);
	transform: translate(2px,2px);
	}

 #slide-switch
	{
	position: absolute;
	bottom: 45px; left:0; right:0;
	text-align: center;
	z-index: 10;
	}

 #slide-switch span
	{
	margin: 0 4px;
	display: inline-block;
	width: 13px;
	height: 13px;
	background-color: #cccccc;
	*border: 2px solid #ffffff;
	border-radius: 50%;
	cursor: pointer;
	-webkit-transition: background 0.5s linear;
	-moz-transition: background 0.5s linear;
	-o-transition: background 0.5s linear;
	transition: background 0.5s linear;
	}

 #slide-switch span:hover
	{
	background-color: #B00F0C;
	}
 #slide-switch span.active
	{
	background-color: #B00F0C;
	}


/*------ SLIDER MOBILE ------*/

@media (max-width: 1600px) 
 {

 	#slider
 	{
	margin-top: 0px;
 	}

 }


@media (max-width: 670px) 
 {
 #slider
	{
	margin-bottom: 10px;
	}

 #slider img
	{
	margin-bottom: 0px;
	}

 #slide-switch
	{
	*bottom: -30px;
	bottom: 0px;
	}

 #slider .slide .title
	{
	left: 25px;
	bottom: 30px;
	padding: 7px 15px;
	font-size: 20px;
	}

 #slider .slide .show
	{
	display: none;
	}

 #slider .slide-btn
	{
	margin-top: -25px;
	width: 22px;
	height: 50px;
	background-size: 20px auto;
	}
 #slider .slide-btn.prev
	{
	border-radius: 0 4px 4px 0;
	}
 #slider .slide-btn.next
	{
	border-radius: 4px 0 0 4px;
	}
 }


@media (max-width: 370px) 
 {
 #slider .slide .title
	{
	left: 25px;
	bottom: 25px;
	padding: 5px 15px;
	font-size: 16px;
	}
 }
