/******************************
 *
 *  RoyalSlider Default Skin
 *
 *    1. Arrows
 *    2. Bullets
 *    3. Thumbnails
 *    4. Tabs
 *    5. Fullscreen button
 *    6. Play/close video button
 *    7. Preloader
 *
 *  Sprite: 'rs-default.png'
 *  Feel free to edit anything
 *  If you don't some part - just delete it
 *
 ******************************/

/* Background */
.rsDefault .rsOverflow, .rsDefault .rsSlide, .rsDefault .rsVideoFrameHolder, .rsDefault .rsThumbs {
	background: #ededed;
}

.rsDefault .rsArrowIcn:before, .rsDefault .rsThumbsArrowIcn:before, .rsDefault .rsFullscreenIcn:before, .rsDefault .rsPlayBtnIcon:before, .rsDefault .rsCloseVideoIcn:before, .rsDefault .rsPreloader:before {
	font-style: normal;
	font-weight: normal;
	text-decoration: inherit;
	display: table-cell;
	vertical-align: middle;
}

.rsDefault .rsArrowIcn, .rsDefault .rsThumbsArrowIcn, .rsDefault .rsFullscreenIcn, .rsDefault .rsPlayBtnIcon, .rsDefault .rsCloseVideoIcn, .rsDefault .rsPreloader {
	font-family: sx-icon;
}


/***************
 *
 *  1. Arrows
 *
 ****************/

.rsDefault .rsArrow {
	height: 100%;
	position: absolute;
	display: block;
	cursor: pointer;
	z-index: 21;
	width: 80px; /* .rsDefault .rsArrowIcn width + Abstand vom Rand*/
}

.rsDefault.rsVer .rsArrow {
	width: 100%;
	height: 80px;
}

.rsDefault.rsVer .rsArrowLeft {
	top: 0;
	left: 0;
}

.rsDefault.rsVer .rsArrowRight {
	bottom: 0;
	left: 0;
}

.rsDefault.rsHor .rsArrowLeft {
	left: 0;
	top: 0;
}

.rsDefault.rsHor .rsArrowRight {
	right: 0;
	top: 0;
}

.rsDefault .rsArrowIcn {
	position: absolute;
	cursor: pointer;
	text-align: center;
	display: table;
	top: 50%;
	left: 50%;
	border-radius: 5px;
	width: 60px;
	height: 60px;
	margin-top: -30px;	/*0.5 * height*/
	margin-left: -30px;
	background-color: rgba(0,0,0,0.6);
	color: rgba(255,255,255,1);
	font-size: 42px;
}

.rsDefault .rsArrowIcn:hover {
	background-color: rgba(0,0,0,0.9);
	color: rgba(254,254,254,1);
}

.rsDefault.rsHor .rsArrowLeft .rsArrowIcn:before {
	content: "\e8a6";
}

.rsDefault.rsHor .rsArrowRight .rsArrowIcn:before {
	content: "\e8a7";
}

.rsDefault.rsVer .rsArrowLeft .rsArrowIcn:before {
	content: "\e8a9";
}

.rsDefault.rsVer .rsArrowRight .rsArrowIcn:before {
	content: "\e8a8";
}

.rsDefault .rsArrowDisabled .rsArrowIcn {
	*display: none;
	background-color: rgba(0,0,0,0.3);
	opacity: .3;
}

/***************
 *
 *  2. Bullets
 *
 ****************/

.rsDefault .rsBullets {
	position: absolute;
	z-index: 35;
	left: 0;
	bottom: 0;
	width: 100%;
	margin: 0 auto;
	text-align: center;
	line-height: 1;
	overflow: hidden;
	height: 30px;
	background-color: rgba(0,0,0,0.6);
}

.rsDefault .rsBullet {
	display: inline-block;
	*display: inline;
	*zoom: 1;
	border-radius: 50%;
	cursor: pointer;
	margin: 9px 5px;
	width: 12px;
	height: 12px;
	background-color: rgba(255,255,255,0.6);
}

.rsDefault .rsBullet.rsNavSelected, .rsDefault .rsBullet:hover {
	background-color: rgba(254,254,254,1);
}

/***************
 *
 *  3. Thumbnails
 *
 ****************/

.rsDefault .rsThumbsHor {
	width: 100%;
}

.rsDefault .rsThumbsVer {
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	width: 150px;
}

.rsDefault .rsThumbsContainer {
	position: relative;
}

.rsDefault.rsWithThumbsHor .rsThumbsContainer {
	height: 100%;
}

.rsDefault.rsWithThumbsVer .rsThumbsContainer {
	width: 100%;
}

.rsDefault .rsThumb {
	overflow: hidden;
}

.rsDefault .rsThumbsHor .rsThumb {
	width: 200px;
}

.rsDefault .rsThumbsVer .rsThumb {
	width: 100%;;
}

.rsDefault .rsThumb img {
	width: 100%;
	filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 10+, Firefox on Android */
	filter: gray; /* IE6-9 */
	-webkit-filter: grayscale(100%); /* Chrome 19+, Safari 6+, Safari 6+ iOS */
}

.rsDefault .rsThumb.rsNavSelected img, .rsDefault .rsThumb:hover img {
	filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale");
	-webkit-filter: grayscale(0%);
}

.rsDefault .rsTmb {
	display: block;
}

/* Thumbnails arrow icons */
.rsDefault .rsThumbsArrow {
	height: 100%;
	position: absolute;
	display: block;
	cursor: pointer;
	z-index: 21;
	width: 50px;
	background-color: rgba(0,0,0,1);
	color: rgba(255,255,255,1);
}

.rsDefault .rsThumbsArrow:hover {
	background-color: rgba(0,0,0,0.9);
	color: rgba(254,254,254,1);
}

.rsDefault.rsWithThumbsVer .rsThumbsArrow {
	width: 100%;
	height: 30px;
}

.rsDefault.rsWithThumbsVer .rsThumbsArrowLeft {
	top: 0;
	left: 0;
}

.rsDefault.rsWithThumbsVer .rsThumbsArrowRight {
	bottom: 0;
	left: 0;
}

.rsDefault.rsWithThumbsHor .rsThumbsArrowLeft {
	left: 0;
	top: 0;
}

.rsDefault.rsWithThumbsHor .rsThumbsArrowRight {
	right: 0;
	top: 0;
}

.rsDefault .rsThumbsArrowIcn {
	height: 100%;
	width: 100%;
	cursor: pointer;
	text-align: center;
	display: table;
	font-size: 20px;
}

.rsDefault.rsWithThumbsHor .rsThumbsArrowLeft .rsThumbsArrowIcn:before {
	content: "\e8a6";
}

.rsDefault.rsWithThumbsHor .rsThumbsArrowRight .rsThumbsArrowIcn:before {
	content: "\e8a7";
}

.rsDefault.rsWithThumbsVer .rsThumbsArrowLeft .rsThumbsArrowIcn:before {
	content: "\e8a8";
}

.rsDefault.rsWithThumbsVer .rsThumbsArrowRight .rsThumbsArrowIcn:before {
	content: "\e8a9";
}

.rsDefault .rsThumbsArrowDisabled .rsArrowIcn {
	*display: none;
	background-color: rgba(0,0,0,0.3);
	opacity: .3;
}

/***************
 *
 *  4. Tabs noch nicht angepasst
 *
 ****************/

.rsDefault .rsTabs {
	width: 100%;
	height: auto;
	margin: 0 auto;
	text-align: center;
	overflow: hidden;
	padding-top: 12px;
	position: relative;
}

.rsDefault .rsTab {
	display: inline-block;
	cursor: pointer;
	text-align: center;
	height: auto;
	width: auto;
	color: #333;
	padding: 5px 13px 6px;
	min-width: 72px;
	border: 1px solid #D9D9DD;
	border-right: 1px solid #f5f5f5;
	text-decoration: none;
	background-color: #FFF;
	background-image: -webkit-linear-gradient(top, #fefefe, #f4f4f4);
	background-image: -moz-linear-gradient(top, #fefefe, #f4f4f4);
	background-image: linear-gradient(to bottom, #fefefe, #f4f4f4);
	-webkit-box-shadow: inset 1px 0 0 #fff;
	box-shadow: inset 1px 0 0 #fff;
	*display: inline;
	*zoom: 1;
}

.rsDefault .rsTab:first-child {
	-webkit-border-top-left-radius: 4px;
	border-top-left-radius: 4px;
	-webkit-border-bottom-left-radius: 4px;
	border-bottom-left-radius: 4px;
}

.rsDefault .rsTab:last-child {
	-webkit-border-top-right-radius: 4px;
	border-top-right-radius: 4px;
	-webkit-border-bottom-right-radius: 4px;
	border-bottom-right-radius: 4px;
	border-right: 1px solid #cfcfcf;
}

.rsDefault .rsTab:active {
	border: 1px solid #D9D9DD;
	background-color: #f4f4f4;
	-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2) inset;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2) inset;
}

.rsDefault .rsTab.rsNavSelected {
	color: white;
	border: 1px solid #999;
	text-shadow: 1px 1px #838383;
	-webkit-box-shadow: 0 1px 9px rgba(102, 102, 102, 0.65) inset;
	box-shadow: 0 1px 9px rgba(102, 102, 102, 0.65) inset;
	background: #ACACAC;
	background-image: -webkit-linear-gradient(top, #ACACAC, #BBB);
	background-image: -moz-llinear-gradient(top, #ACACAC, #BBB);
	background-image: linear-gradient(to bottom, #ACACAC, #BBB);
}

/***************
 *
 *  5. Fullscreen button
 *
 ****************/

.rsDefault .rsFullscreenBtn {
	z-index: 22;
	display: block;
	position: absolute;
	cursor: pointer;
	right: 10px;
	top: 10px;
	width: 36px;
	height: 36px;
}

.rsDefault .rsFullscreenIcn {
	display: block;
	height: 100%;
	width: 100%;
	cursor: pointer;
	text-align: center;
	display: table;
	border-radius: 5px;
	background-color: rgba(0,0,0,0.6);
	color: rgba(255,255,255,1);
	font-size: 16px;
}

.rsDefault .rsFullscreenIcn:before {
	content: "\e8e3";
}

.rsDefault.rsFullscreen .rsFullscreenIcn:before {
	content: "\e8de";
}

.rsDefault .rsFullscreenIcn:hover {
	background-color: rgba(0,0,0,0.9);
	color: rgba(254,254,254,1);
}

.rsFullscreen {
  width: 100%;
  height: 100%;
  background: #EEE;
  min-height: 250px;
  position: relative;
}

.rsFullscreen img {
  max-height: 100%;
  max-width: 100%;
  height: auto !important;
  width: auto !important;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-sizing: border-box;
  margin: auto !important;
}

/***************
 *
 *  6. Play/close video button
 *
 ****************/

.rsDefault .rsPlayBtn {
	cursor: pointer;
}

.rsDefault .rsPlayBtnIcon {
	top: 50%;
	left: 50%;
	position: absolute;
	cursor: pointer;
	display: table;
	text-align: center;
	border-radius: 50%;
	
	width: 80px;
	height: 80px;
	margin-top: -40px;	/*0.5 * height*/
	margin-left: -40px;
	font-size: 80px;
	background-color: rgba(0,0,0,0.6);
	-webkit-tap-highlight-color: rgba(0,0,0,0.9);
	color: rgba(255,255,255,1);
}

.rsDefault .rsPlayBtnIcon:before {
	content: "\e80c";
}

.rsDefault .rsPlayBtnIcon:hover .rsPlayBtnIcon {
	background-color: rgba(0,0,0,0.9);
	color: rgba(254,254,254,1);
}

.rsDefault .rsBtnCenterer {
	position: absolute;
	left: 50%;
	top: 50%;
}

.rsDefault .rsCloseVideoBtn {
	z-index: 500;
	position: absolute;
	cursor: pointer;
	-webkit-backface-visibility: hidden;
	/*-webkit-transform: translateZ(0);*/
	left: 10px;
	top: 10px;
	width: 36px;
	height: 36px;
}

.rsDefault .rsCloseVideoIcn {
	display: block;
	height: 100%;
	width: 100%;
	cursor: pointer;
	text-align: center;
	display: table;
	border-radius: 5px;
	background-color: rgba(0,0,0,0.6);
	color: rgba(255,255,255,1);
	font-size: 16px;
}

.rsDefault .rsCloseVideoIcn:before {
	content: "\e865";
}

.rsDefault .rsCloseVideoIcn:hover {
	background-color: rgba(0,0,0,0.9);
	color: rgba(254,254,254,1);
}

/***************
 *
 *  7. Preloader
 *
 ****************/

.rsDefault .rsPreloader {
	left: 50%;
	top: 50%;
	text-align: center;
	-moz-animation: spin 2s infinite linear;
	-o-animation: spin 2s infinite linear;
	-webkit-animation: spin 2s infinite linear;
	animation: spin 2s infinite linear;
	display: table;
	width: 100px;
	height: 100px;
	margin-left: -50px;
	margin-top: -50px;
	color: rgba(255,255,255,1);
	font-size: 30px;
}

.rsDefault .rsPreloader:before {
	vertical-align: middle;
	display: table-cell;
	content: '\e896';
}

