@charset "utf-8";
/* Глобальные настройки */
* {
	margin: 0;
	padding: 0;
	outline: none;
	text-decoration: none;
}

html {
	width: 100%;
	height: 100%; /* Высота страницы */
}
body {
	position: relative;
	width: 100%;
	height: 100%;
	background-image: url("/img/CIKT.jpg"); background-repeat: no-repeat; background-size: cover;/* Путь к фоновому изображению */
	background-color: #e0e0e0; /* Цвет фона */
	color: #303030;
	font-family: "Times New Roman", sans-serif;
	font-size: 14px;
	line-height: 135%;
	float: left;
	padding:0;
    margin:0;
    overflow:hidden;
}

a {
	color: #c93838;
	text-decoration: none;
}

a:hover {
	color: #c7a740;
	text-decoration: none;
}

a, a:hover {
	color: #c34f25;
}

img {
	max-width: 100%;
	height: auto;
	width; auto\9;

}

hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid $ccc;
	margin: 1em 0;
	padding: 0;
}

.clear {
	clear: both;
}

/*Настройки стилей для шапки*/

header {
	float: left;
	background-color: #f0f0f0;	
	width: 98%;
	padding: 1%;
	border-bottom: 2px solid silver;
}
header #titleHead {
	width: 100%;
	float: left;
	text-align: center;
	color: #474747;
	font-size: 2.5em;
	font-family: "Times New Roman", sans-serif;
}

header #titleHead span {
	color: #ff0000;
}

body #tw {
	margin-top:1%;
	margin-left:1%;
	float:left;
	border-bottom:0;
}

/*Конец стилей для шапки*/

#wrapper {
	display: flex;
	flex-direction: column;
	height: 100%;
}

#content {
	flex: 1 0 auto;
}

footer {
	position: fixed;
	bottom: 0;
	float: left;
	background-color: #f0f0f0;	
	width: 98%;
	padding: 1%;
	border-top: 2px solid silver;
	font-family: "Times New Roman", sans-serif;
}

#site_name {
	margin-left: 2%;
	color: #474747;
	font-size: 1em;
	float: left;
}

#site_name>span {
	color: #ff0000;
}

#all_rights {
	margin-right: 2%;
	color: #474747;
	font-size: 1em;
	float: right;
}

#main {
	font-size: 1.5em;
	margin-top: 1%;
	margin-left: 1%;
	margin-right: 2%;
	margin-bottom: 5%;
	float: left;
	width: 66%;
}

#aside {
	font-size: 1.5em;
	width: 20%;
	margin-top: 1%;
	margin-right: 1%;
	float: right;
	text-align: left;
	line-height: 160%;
}

.heading {
	font-weight: lighter;
	float: left;
	font-family: "Arial", sans-serif;
	text-align: center;
}

.heading:first-letter {
	color: #ff0000;
}

.block {
	margin-top: 2%;
	background-color: #ffffff;
	padding: 1%;
	border-radius: 5px;
	border: 1px solid silver;
	text-align: left;
	float: left;
	color: #000000;
}

#main>.block {
	width:40%;
}

#messages>.block {
	margin-left: 1%;
	width:auto;
	float:left;
}

#infoTitle:hover {
	cursor: pointer;
	transition: 2s;
}

.info {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
}

.info>#tw {
	max-width: 133px;
}

#handsblock {
	position: fixed;
	width: 50%;
	left: 8%;
	right: 0;
	bottom: 0;
	margin: 0 auto;
	margin-bottom: 0;
}

.hands1 {
	width: 20%;
	float: left;
	animation-name: spin1;
	animation-duration: 5s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

.hands2 {
	width: 20%;
	float: left;
	animation-name: spin2;
	animation-duration: 4s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

.hands3 {
	width: 20%;
	float: left;
	animation-name: spin3;
	animation-duration: 7s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

.hands4 {
	width: 20%;
	float: left;
	animation-name: spin4;
	animation-duration: 6s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

@keyframes spin1 {
	
	0% {
		transform: translateX(5px) translateY(15px) rotate(3deg);
	}
	
	50% {
		transform: translateX(-5px) translateY(-15px) rotate(-3deg);  
	}
	
	100% {
		transform: translateX(5px) translateY(15px) rotate(3deg);  
	}
	
}

@keyframes spin2 {
	
	0% {
		transform: translateX(-5px) translateY(-15px) rotate(-6deg);
	}
	
	50% {
		transform: translateX(5px) translateY(15px) rotate(6deg);  
	}
	
	100% {
		transform: translateX(-5px) translateY(-15px) rotate(-6deg);  
	}
	
}

@keyframes spin3 {
	
	0% {
		transform: translateX(8px) translateY(12px) rotate(4deg);
	}
	
	50% {
		transform: translateX(-5px) translateY(-12px) rotate(-4deg);  
	}
	
	100% {
		transform: translateX(8px) translateY(12px) rotate(4deg);  
	}
	
}

@keyframes spin4 {
	
	0% {
		transform: translateX(-4px) translateY(-11px) rotate(2deg);
	}
	
	50% {
		transform: translateX(9px) translateY(11px) rotate(-2deg);  
	}
	
	100% {
		transform: translateX(-4px) translateY(-11px) rotate(2deg);  
	}
	
}

.zombies {
	opacity: 100;
}

@media only screen and (max-width: 750px) {
	header #titleHead {font-size: 1.5em;}
	h3 {font-size: 1em; font-weight:bold;}
	#main {width:100%;}
	#main>.block {width:90%;}
	#aside {width:100%;}
	body {background-image:none;}
}

.slider {
	margin-top: 10%;
	margin-left: 25%;
	margin-right: 25%;
	position: relative;
	overflow: hidden;
	width: 50%;
}

.slider_wrapper {
	width: 100%;
	display: flex;
	transition: transform 2s ease;
}

.slide {
	
    flex: 0 0 100%;
    max-width: 100%;
}

.slider_control {
      position: absolute;
      top: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      color: #000;
      text-align: center;
      height: 50px;
      transform: translateY(-50%);
    }

.slider_control_left {
      left: 0;
}

.slider_control_right {
      right: 0;
}

.slider_control::before {
      content: '';
      display: inline-block;
      width: 40px;
      height: 40px;
	  color: #000;
      background: transparent no-repeat center center;
      background-size: 100% 100%;
	  background: rgba(0, 0, 0, .5);
}

.slider_control_left::before {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

.slider_control_right::before {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}

.slider_icon {
	display: flex;
	align-content: center;
	justify-content: center;
}

.slider_icon_element {
	content: '';
	text-align: center;
    width: 30px;
    height: 30px;
	border-radius: 50%;
	background: #2d2d2d80;
	opacity: 40%;
}

.slider_icon_element:hover {
	cursor: pointer;
}

.slider_icon_element:nth-child(1) {
	opacity: 80%;
}

.slider_icon_element + .slider_icon_element {
	margin-left: 10px;
}

canvas {
    padding:0;
    margin:0;
}
div.btnbg {
    position:fixed;
    left:0;
    top:0;
}

sakura1 {
	z-index: -1111;
}