@charset "UTF-8";

div[data-fade_params]{
	position: relative;
	
}

div.fade_inner{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	
}
div.fade_inner>div{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 80;
	
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-color: rgba(0,0,0,.1);
	
	display: none;
}
div.fade_inner>div:nth-child(1){
	display: block;
	z-index: 82;
}
div.fade_inner>div:nth-child(2){
	display: block;
	z-index: 81;
}

div.fade_pos{
	position: absolute;
	min-width: 100%;
	left: 0;
	top: 100%;
	/*bottom: 0;*/
	font-size: 0;
	line-height: 0;
	letter-spacing: 0;
	text-align: center;
	white-space: nowrap;
	pointer-events: none;
	z-index: 83;
}
div.fade_pos_base{
	display: inline-block;
	box-sizing: border-box;
	height: 1rem;
	padding:  1rem;
	margin-top: .3rem;
	/*background-color:rgba(255,255,255,.5);*/
	/*background: #ff0000;*/
	border-radius: 1.5rem;
	pointer-events: auto;
}
div.fade_pos_base>div{
	display: inline-block;
	box-sizing: border-box;
	width: 1rem;
	height: 1rem;
	margin: 0 .5rem;
	padding: 0;
	background-color: #ffffff;
	background-color: rgba(0,0,0,.2);
	border-radius:			50%;
	-moz-border-radius:		50%;
	-webkit-border-radius:	50%;
	cursor: pointer;
	transition: all .2s;
}
.display_device div.fade_pos_base>div:hover{
	background-color: rgba(0,0,0,.4);
}
div.fade_pos_base>div.fade_current{
	background-color: rgba(0,0,0,.7) !important;
}


