.mob-rotate{
	display: none;
	width: 100vw;
	height: 100vh;
	background-color: rgba(255, 255, 255, 0.99);
	position: fixed;
	top: 0;
	left: 0;
	transition: .4s;
	justify-content: center;
	align-items: center;
	z-index: 99999;
}
.mob-rotate.hide{
	display: none !important;
}
.mob-rotate.show{
	display: flex !important;
}
.mob-rotate img{
	width: 100px;
	height: 100px;
	transition: .4s;
	transform: rotate(-90deg);
	animation: 4s rotate infinite;
	backface-visibility: hidden;
}
@media screen and (max-width: 1100px) and (orientation: portrait){
	body::after {
    content: 'Поверните телефон в горизонтальное положение';
		text-wrap: balance;
    z-index: 999999;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /*background: rgba(0,0,0,0.8);*/
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
		backdrop-filter: blur(20px);
    background-image: url('/img/rotate-screen.png');
    background-size: 10%;
    background-repeat: no-repeat;
    background-position: 50% 40%;
		font-size: xx-large;
		text-shadow: 0 0 10px white,0 0 10px white,0 0 10px white;
		line-height: 2rem;
  }
	body{
		/*opacity: 0 !important;*/
		/*rotate: 90deg;*/
		/*width: 100vh !important;*/
		/*height: 100vw !important;*/
		/*transform-origin: right top;*/
		/*overflow-x: hidden;*/
		/*position: absolute;*/
		/*top: 100%;*/
		/*right: 0;*/
	}
	
	body.show{
		/*opacity: 1 !important;*/
	}
	.mob-rotate{
		/*display: block;*/
	}
}
@media screen and (max-width: 1100px){
	.index-help__left,
	.index-help__right{
		display:none;
	}
}

@keyframes rotate {
	0%{
		transform: rotate(-90deg);
	}
	50%{
		transform: rotate(0deg);
	}
	100%{
		transform: rotate(-90deg);
	}
}


