html, body{
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}
body{
	font-family: system,-apple-system,BlinkMacSystemFont,'Segoe UI','Segoe WP',Roboto,Ubuntu,Oxygen,Cantarell,'Fira Sans','Helvetica Neue',Helvetica,'Lucida Grande','Droid Sans',Tahoma,'Microsoft Sans Serif',sans-serif;
	background: #eee;
}
.block{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
}
.content{
	text-align: center;
	max-width: 98vw;
	width: 450px;
}
.content .perspective{
	-webkit-perspective: 190;
}
.content .perspective img{
	height: 260px;
	-webkit-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
	transform: rotateY(45deg);
	-webkit-transition: 1.2s;
    -ms-transition: 1.2s;
    transition: 1.2s;
}
.content .perspective img.active{
	transform: rotateY(0deg);
}
.content .inform{
	background: #fff;
	padding: 15px;
	border-radius: 8px;
	border: 1px solid #ccc;
	box-shadow: 0px 0px 50px 0px rgba(34, 60, 80, 0.3);
}
.content .perspective img:hover{
	transform: rotateY(-45deg);
}
.content label{
	display: block;
	font-weight: bold;
	margin-bottom: 10px;
}
.content textarea{
	display: block;
	width: 447px;
	max-width: 98%;
	height: 70px;
	margin-bottom: 10px;
	resize: none;
	border: 1px solid #eee;
}
.content button{
    padding: 20px 15px;
    display: block;
    width: 100%;
    color: #fff;
    background: #a10101;
    border: 1px solid #7f0a0a;
    border-radius: 6px;
}
.question{
	display: inline-block;
	margin-left: 10px;
	padding: 3px 11px;
	background: #0099ff;
	color: #fff;
	border-radius: 100%;
	font-style: normal;
	font-weight: 600;
	font-size: 18px;
	cursor: pointer;
}
.question-flex{
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 10000000;
	display: flex;
	padding: 20px;
	background: rgba(0,0,0,0.8);
}
.question-flex .question-cell{
	margin: auto;
	position: relative;
	background: #fff;
	width: 320px;
	height: 160px;
	overflow: hidden;
}
.question-flex .question-cell video{
	position: absolute;
	top: -28px;
}
#sort_numbers{display: inline-block; max-width: 270px; -moz-user-select: none; -khtml-user-select: none; user-select: none;}
#sort_numbers div{display: inline-block; border: 1px solid #ccc; padding: 5px; margin: 0 2px; cursor: default; width: 64px; text-align: center; font-size: 26px; cursor: e-resize;}
#sort_numbers div.from{opacity: 0.5;}
#sort_numbers div.to{border-color: #0099ff;}
.loader{position: fixed; top: 0; left: 0; bottom: 0; right: 0; z-index: 1000000; display: flex; background: rgba(0,0,0,0.7); color: #fff;}
.loader > div{margin: auto;}
.ui-sortable-helper{color: #fff; background: #0099ff;}
.ui-sortable-placeholder{max-height: 0;}

/*wave*/
.wave{
    padding: 120px 0;
    overflow: hidden;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}
.wave:after{
	content: '';
	position: absolute;
	top: 0; right: 0; bottom: 0; left: 0;
	z-index: 10;
	background-image: url('/image/rp-logo-w.svg');
    background-position: 50% 67%;
    background-repeat: no-repeat;
    background-size: 10vw;
}
@media (max-width: 767px) {
	.wave:after{
		background-size: 56vw;
	}
}
.delayed-fade{
	display: none;
}
.wavebar-2 {
	position:absolute;
	z-index: 2;
	bottom:0;
	display:inline-block;
	height:10%;
	transition-timing-function:ease-in-out;
	animation-name:tide;
	animation-duration:4s;
	animation-iteration-count:infinite;
	animation-direction:alternate;
	background: #000;
	opacity: .04;
 	color: #fff;
	pointer-events: none;
}
@-webkit-keyframes tide {
	0% {height:2%;}
	10% {height:13%;}
	50% {height:65%;}
	10% {height:13%;}
	0% {height: 2%;}
}

.pandared{
	position: fixed;
	bottom: 3%;
	left: 0;
	width: 100vw;
	text-align: center;
}
.pandared > a{
	color: #333;
	text-decoration: none;
}
.pandared > a > span{
    margin-left: 2px;
    padding: 3px 3px;
    background: #f00;
    color: #fff;
    font-weight: 600;
    display: inline-block;
    border-radius: 5px;
}
