* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
@font-face {
    font-family: 'Kanit';
    src: url('/modules/winlite/images/kanit.ttf');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'bigmug-line';
    src: url('/modules/winlite/images/bigmug-line.ttf');
    font-weight: normal;
    font-style: normal;
}
body {
    background-color: #edeff4;
	font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #151515;
	cursor: url('/modules/winlite/cursors/cursor.svg') 4 1, pointer;
}
h1,
h2,
h3 {
    font-weight: normal;
	font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333;
    margin-bottom: 25px;
	text-rendering: optimizeLegibility;
}
h1 {
    font-size: 26px;
	text-transform: uppercase;
	border-left: 4px solid;
    border-color: #35ad79;
	padding-left: 10px;
	text-shadow: 1px 1px 2px rgb(0 0 0 / 20%);
}
h1 p { 
	color: #9b9b9b;
	font-size: 14px;
}
h2 {
    font-size: 26px;
}
h3 {
    font-size: 22px;
	text-transform: uppercase;
}
p,
pre,
ul,
ol,
table {
    margin-bottom: 5px;
}
p {
    padding: 1px;
}
ul,
ol {
    margin-left: 25px;
}
a {
    color: #41516c;
    text-decoration: none;
	transition: color 0.2s linear 0s;
}
a:hover {
    color: #565656;
	cursor: url('/modules/winlite/cursors/cursor_hand.svg') 4 1, pointer;
}
hr {
	margin: 20px 0;
	padding: 0;
	height: 0;
	border: none;
	border-top: 2px dashed #e1e1e1;	
}
input[type="text"],
input[type="password"],
textarea,
select {
	box-sizing: border-box;
    font: 14px Arial, sans-serif;
    padding: 10px;
	max-width: 600px;
    border: 1px solid #e0e8f3;
    border-radius: 3px;
	background-color: #fcfcfc;
	color: #757575;
}
input[type="text"],
input[type="password"],
select {
    width: 300px;
}
textarea {
    width: 100%;
	min-width: 80%;
	min-height: 100px;
    height: 200px;
}
input[type="text"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
    outline: none;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}
input[type="submit"],
.button,
button {
	border: 1px solid #35ad79;
    background-color: #35ad79;
    font: 14px Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
	font-weight: 500;
    letter-spacing: 0.025em;
    padding: 10px 20px;
	border-radius: 3px;
	-webkit-transition: background-color 0.2s linear 0s;
    -moz-transition: background-color 0.2s linear 0s;
    -o-transition: background-color 0.2s linear 0s;
    transition: background-color 0.2s linear 0s;
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
    text-shadow: 1px 1px 2px rgb(0 0 0 / 20%);
}
input[type="submit"]:hover,
.button:hover,
button:hover {
    background-color: #333;
	border: 1px solid #333;
    text-decoration: none;
    color: #fff;
	cursor: url('/modules/winlite/cursors/cursor_hand.svg') 4 1, pointer;
}
form[name="addmail"] {
    box-sizing: border-box;
}
form[name="addmail"] input {
    width: 100%;
}
input[type=checkbox]:focus{
    outline: 1px solid rgba(0, 0, 0, 0.2);
}
input[type=checkbox]{
    background-color: #ddd;
    border-radius: 2px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 17px;
    height: 17px;
    cursor: pointer;
    position: relative;
    top: 2px;
}
input[type=checkbox]:checked{
    background-color: #35ad79;
    background: #35ad79 url("data:image/gif;base64,R0lGODlhCwAKAIABAP////3cnSH5BAEKAAEALAAAAAALAAoAAAIUjH+AC73WHIsw0UCjglraO20PNhYAOw==") no-repeat;
	background-size: 50% 50%;
    background-position: center center;
}

[data-hint] {
	position: relative;
	font-style: italic;
	font-weight: 600;
	color: #f38c7f;
	cursor: hint;
}
[data-hint]::after {
    opacity: 0;
    color: #fff;
    background-color: #151515;
    border-radius: 3px;
    padding: 10px;
    content: attr(data-hint);
    font-size: 13px;
    font-weight: 400;
	font-style: normal;
    line-height: 1.2;
    position: absolute;
	text-align: center;
	top: auto;
    bottom: -5px;
	left: 0;
    transform: translate(0, 100%);
    pointer-events: none;
    transition: opacity 0.2s;
	width: max-content;
	z-index: 900;
}
[data-hint]:hover::after {
    opacity: 1;
}
[contenteditable]:focus {
    outline: 2px solid #edeff4;
}
details > summary {
	cursor: url('/modules/winlite/cursors/cursor_hand.svg') 4 1, pointer;
	padding: 10px;
	background-color: #f0f0f0;
	border-left: 3px solid;
	border-color: #35ad79;
	list-style: none;
}
details > summary::before {
    position: relative;
    display: inline-block;
	font-family: 'bigmug-line';
    text-transform: none;
	font-size: 12px;
	content: "\E002";
	margin-right: 5px;
	color: #35ad79;
}
details[open] summary ~ * {
	padding: 10px;
	background-color: #f0f0f0;
	border-left: 3px solid;
	border-color: #35ad79;
	animation: slide .3s ease-in-out;
}
details[open] summary::before {
	content: "\E031";
}
@keyframes slide {
	0%    {opacity: 0; transform:  translate(0, -10px); }
	100%  {opacity: 1; transform:  translate(0, 0);}
}
.p_link_back{
	margin-top: 15px;
}
.marker {
    background: #ffcc33;
}
.container {
    width: 1260px;
    margin: 0px auto;
}
.bgheader {
    position: fixed;
    width: 100%;
	background-color: #2c2d31;
    z-index: 100;
	box-shadow: 2px 3px 4.7px 0.3px rgb(0 0 0 / 24%);
}
header {
    overflow: hidden;
    line-height: 80px;
	font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	font-size: 14px;
    font-weight: 600;
    letter-spacing: .075em;
}
header .logo {
    float: left;
	position: relative;
    height: 80px;
    box-sizing: border-box;
	margin-left: 20px;
}
header .logo img {
    margin: 0;
    padding: 0;
}
header .logo::before {
  	left: -20px;
	transform: skew(-30deg);
 	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: -1;
	width: 290px;
	background: #35363c;
	transform-origin: 0 0;
}
header h1 {
    float: left;
    font: normal 32px "Roboto Condensed", sans-serif;
    line-height: 1px;
    margin: 0;
    padding: 0 20px;
}
header h1 a,
header h1 a:hover {
    text-transform: uppercase;
    text-decoration: none;
    color: #333;
}
header nav {
	text-align: center;
}
header nav span a {
    text-transform: uppercase;
    font-size: 15px;
    color: #fff;
    padding: 10px 20px 10px 20px;
	margin-left: 5px;
    -webkit-transition: color 0.2s linear 0s;
    -moz-transition: color 0.2s linear 0s;
    -o-transition: color 0.2s linear 0s;
    transition: color 0.2s linear 0s;
}
header nav span:first-child a {

}
header nav span a.active,
header nav span a.active:hover {
    text-decoration: f3f9fb;
    color: #35ad79;
}
header nav span a:hover {
    text-decoration: none;
    color: #35ad79;
}
header .user_menu {
    float: right;
	display: block;
	background-color: #35363c;
	border-radius: 10px;
	max-width: 220px;
	color: #fff;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	padding-left: 15px;
	line-height: 40px;
	margin-top: 20px;
}
header .user_menu a {
	text-decoration: none;
    text-transform: uppercase;
    color: #fff;
	transition: color 0.2s linear 0s;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    line-height: 0;
    padding: 10px 15px 10px 5px;
}
header .user_menu::before {
    position: realtive;
    display: inline-block;
	font-family: 'bigmug-line';
    font-size: inherit;
	content: "\e065";
	color: #f1e557;
    text-transform: none;
}
header .user_menu a:hover {
	color: #f1e557;
}
header .hbr_menu {
    display: none;
    float: right;
    font-size: 32px;
    margin-right: 20px;
}
header .hbr_menu a,
header .hbr_menu a:hover {
    text-decoration: none;
}
.bgcontent {
    padding-top: 80px;
	box-shadow: 0 5px 12px rgb(126 142 177 / 20%);
}
.slider {
	position: relative;
	box-sizing: border-box;
}
.slide_viewer {
	height: 400px;
	overflow: hidden;
	position: relative;
}
.slide_group {
	height: 100%;
	position: relative;
	width: 100%;
}
.slide {
	display: none;
	position: absolute;
	height: 100%;
	width: 100%;
}
.slide:first-child {
	display: block;
}
.slide .content{
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	width: 100%;
	padding-left: 75px;
	padding-right: 75px;
	background-color: #fff;
}
.slide .content h1 {
    font-family: "Open Sans", sans-serif;
    font-weight: 300;
    font-size: 38px;
    line-height: 1.3;
	border-left: 0;
	padding: 0;
	margin: 0;
	text-shadow: none;
}
.slide .content img{
	width: 400px;
}
.slider-button-prev{
	left: 0;
	position: absolute;
    top: 50%;
    height: 50px;
    width: 66px;
    overflow: hidden;
    transform: translate3d(0, -50%, 0);
    color: #333;
    font-size: 27px;
    line-height: 1;
	display: block;
	text-align: center;
    cursor: pointer;
    transition: .2s ease-in;
    will-change: transform;
    z-index: 10;
}
.slider-button-prev::before{
	margin-left: -3px;
	position: absolute;
    top: 50%;
    left: 50%;
	font-family: 'bigmug-line';
	content: '\e05b';
	font-size: 12px;
	font-weight: 600;
    transform: translate3d(-50%, -50%, 0);
}
.slider-button-prev::after{
	transform-origin: 100% 100%;
    transform: skew(10deg);
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: #edeff4;
	opacity: 0.65;
    pointer-events: none;
    transition: .33s;
    outline: 1px solid transparent;	
}
.slider-button-next{
	right: 0;
	position: absolute;
    top: 50%;
    height: 50px;
    width: 66px;
    overflow: hidden;
    transform: translate3d(0, -50%, 0);
    color: #333;
    font-size: 27px;
    line-height: 1;
	display: block;
	text-align: center;
    cursor: pointer;
    transition: .2s ease-in;
    will-change: transform;
    z-index: 10;
}
.slider-button-next::before{
    margin-right: -3px;
	position: absolute;
    top: 50%;
    left: 50%;
	font-family: 'bigmug-line';
	content: '\e097';
	font-size: 12px;
	font-weight: 600;
    transform: translate3d(-50%, -50%, 0);
}
.slider-button-next::after{
    transform-origin: 100% 100%;
    transform: skew(-10deg);
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: #edeff4;
	opacity: 0.65;
    pointer-events: none;
    transition: .33s;
    outline: 1px solid transparent;	
}
.slider-button-prev:hover,
.slider-button-next:hover {
	color: #fff;
}
.slider-button-prev:hover:after,
.slider-button-next:hover:after {
	background-color: #35ad79;
}
.grid {
    display: flex;
    display: -webkit-flex;
    overflow: hidden;
    background-color: #fafafa;
    border-bottom: 1px solid #ddd;
    padding: 20px;
}
.grid section {
    flex-basis: 25%;
    -webkit-flex-basis: 25%;
    background-color: #fefefe;
    border-radius: 2px;
    box-shadow: 0 1px 4px #bbb;
    padding: 20px;
}
.grid section img {
    width: 100% !important;
    height: auto !important;
    background-color: #eaeaea;
}
.grid section h1,
.grid section h2,
.grid section h3 {
    border-left: 3px solid #ccc;
    font: 18px "Roboto Condensed", sans-serif;
    font-size: 18px;
    word-wrap: break-word;
    margin-bottom: 10px;
    padding-left: 8px;
}
.grid section p {
    margin-bottom: 10px;
}
#avatar {
    max-width: 300px;
	border-radius: 100%;
}
.content {
    display: flex;
    display: -webkit-flex;
    overflow: hidden;
    background-color: #fcfcfc;
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
}
.content main {
    width: calc(100% - 220px);
    min-height: 100vh;
    box-sizing: border-box;
    padding: 40px 40px;
}
.content main article .name {
    line-height: normal;
}
.content main article .news {
    border-radius: 1px;
    margin: 0 0 0 0;
    padding: 0;
    overflow: hidden;
}
.content main article .news h2 {
    width: 100%;
    padding: 0;
    margin-bottom: 10px;
	margin-top: 10px;
    font-size: 24px;
}
.content main article .news h2 a {
    color: ##151515;
    padding: 0;
}
.content main article .news h2 a:hover {
    color: ##151515;
}
.content main article .news p {
    margin-bottom: 10px;
    padding: 0;
}

.content main article .news img {
	display: block; 
	width: 100%;
	opacity: 1;
	margin-bottom: 15px;
	transition: .5s ease-in-out;
	border-radius: 3px;
}
.content main article .news img:hover{
	opacity: .9;
}
.news-preview {
    background: #35ad79;
	display: inline-block;
    padding: 5px 8px;
    font-family: "Roboto Condensed", sans-serif;
	font-weight: 600;
    font-size: 12px;
	line-height: 12px;
    text-align: center;
    text-transform: uppercase;
	letter-spacing: .5px;
    color: #fff;
    border-radius: 3px;
	margin-bottom: 10px;
}
.news-preview-hide{
	display: none;
}
.content main article .news-preview p {
    margin: 0;
    padding: 0;
}
.red{
	background: #fd6565;
}
.yellow{
	color: #151515;
    background: #fcef57;
}
.blue{
	background: #4b88dc;
}
.darkblue{
	background: #444c80;
}
.content main article p img {
	margin-right: 5px;
	border-radius: 3px;
}
.content main article blockquote {
    position: relative;
	margin: 20px;
	padding: 10px;
    border-left: 5px solid;
    border-color: #ccc;
	background: #fcfcfc;
}
.content main article p .no-float:hover {
	transform: scale(1.03);
	transition: .3s ease;
	cursor: url('/modules/winlite/cursors/cursor_hand.svg') 4 1, pointer;
}
.content main article .navigation {
    clear: both;
    overflow: auto;
}
.content main article .navigation .navigation_header {
    display: block;
}
.content main article .navigation .space {
    display: none;
}
.content main article .navigation .this,
.content main article .navigation .link {
    border: 1px solid #111;
    background-color: #111;
    font: 14px Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    padding: 10px 20px;
    font-size: 15px;
    margin-left: 2px;
    padding: 1px 6px;
}
.content main article .navigation .this {
    border: 1px solid #aaa;
    background-color: #aaa;
    font-weight: bold;
}
.content main article .date {
    color: #666;
    font-style: italic;
    font-size: 13px;
}
.content main article pre {
    overflow: auto;
    background-color: #f5f5f5;
    font-size: 14px;
    font-family: Menlo,"Roboto Mono","Courier New",Courier,monospace,"Inter",sans-serif;
    line-height: 1.4;
	border-radius: 6px;
    color: #111;
    padding: 10px 10px;
}
.content main article table {
    width: 100%;
    background-color: #f2f2f2;
    border-spacing: 0;
}
.content main article table th {
    background-color: #444;
    font: bold 16px Arial, sans-serif;
    color: #eee;
    text-align: left;
    line-height: 1;
    padding: 10px;
}
.content main article table td {
    vertical-align: top;
    border-bottom: 1px solid #e8e8e8;
    text-align: left;
    padding: 2px 12px;
}
.content main article table td a {
    text-decoration: none;
}
.content main article #download {
	margin-bottom: 30px;
	margin-top: 30px;
}
.content main article #download #section {
	padding-left: 15px;
    border-left: 5px solid #edeff4;
	padding: 20px;
	margin-bottom: 20px;
	margin-top: 20px;
}
.content main article #download a {
	display: inline-block;
	text-align: center;
    border-radius: 3px;
	padding-left: 10px;
	padding-right: 10px;
	line-height: 1.8;
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;	
	width: 200px;
	color: #fff;
	transition: .3s ease-in-out;
	margin-right: 8px;
	margin-bottom: 10px;
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
    text-shadow: 1px 1px 2px rgb(0 0 0 / 20%);
}
.content main article #download a:last-child {
	margin-right: 0px;
}
.content main article #download a:hover{	
    color: #151515;
	background-color: transparent;
    border-color: transparent;
}
.content main article #download a:before {
    display: inline-block;
	font-family: 'bigmug-line';
    font-size: inherit;
	content: "\e031";
    text-transform: none;
	margin-right: 6px;
}
.link1-btn{
	border: 2px solid;
	background: #4b88dc;
	border-color: #4b88dc;
}
.link2-btn{
	border: 2px solid;
	background: #78b86d;
	border-color: #78b86d;
}
.link3-btn{
	border: 2px solid;
	background: #4f5257;
	border-color: #4f5257;
}
.content main article #commentsHeader {
	margin-top: 40px;
	margin-bottom: 30px;
}
.content main article #commentsHeader h3 {
	display: inline;
	margin-right: 5px;
}
.content main article #commentsHeader p {
	float: right;
	font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	background: #425c7f;
    border-radius: 3px;
	padding-left: 16px;
	padding-right: 16px;
	text-transform: uppercase;
    text-shadow: 1px 1px 2px rgb(0 0 0 / 20%);
	box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
}
.content main article #commentsHeader a {
    color: #fff;
	transition: .3s ease-in-out;
}
.content main article #commentsHeader a:hover {
	opacity: .9;
}
.content main article #moduleNewsComments h3 {
	border-left: 4px solid;
    border-color: #35ad79;
	padding-left: 10px;	
}

.content main article #moduleNewsComments #errorAuth {
    background-color: #edeff4;
    border-radius: 5px;
    text-align: center;
    padding: 15px 20px;
	margin-bottom: 25px;
	margin-top: 40px;
}
.content main article #moduleNewsComments #commentForm {
	margin-bottom: 40px;
}
.content main article #moduleNewsComments #commentForm p {

}
.content main article #moduleNewsComments #comments {
    margin-top: 10px;
}
.content main article #moduleNewsComments #comments p {
	margin: 0;
}
.content main article #moduleNewsComments #comments .comment {
    position: relative;
    box-sizing: border-box;
    padding: 0 20px 0 70px;
	width: 100%;
	word-wrap: break-word;
}
.content main article #moduleNewsComments #comments .comment p a {
	color: #425c7f;
}
.content main article #moduleNewsComments #comments blockquote {
    border-color: #e0e0e0;
}

.content main article #moduleNewsComments #comments .comment p a:hover {
	color: #151515;
}
.content main article #moduleNewsComments #comments .comment .avatar {
    position: absolute;
    left: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background-color: #fcfcfc;
    padding: 2px;
}
.content main article #moduleNewsComments #comments .comment .avatar img {
    width: 100%;
    height: 100%;
	border-radius: 100%;
}
.content main article #moduleNewsComments #comments .comment .commentHead {
	margin-bottom: 8px;
}
.content main article #moduleNewsComments #comments .comment .author,
.content main article #moduleNewsComments #comments .comment .gost,
.content main article #moduleNewsComments #comments .comment .time {
    white-space: nowrap;
    margin-right: 5px;
}
.content main article #moduleNewsComments #comments .comment .author {
    font-size: 16px;
	font-weight: 600;
}
.content main article #moduleNewsComments #comments .comment .gost {
    color: #e53935;
}
.content main article #moduleNewsComments #comments .comment .time {
    font-size: 14px;
    color: #888;
}
.content main article #moduleNewsComments #comments .comment .re {
	color: #151515;
	margin-right: 10px;
	display: inline-block;
}
.content main article #moduleNewsComments #comments .comment .qu {
	color: #151515;
	margin-right: 10px;
	display: inline-block;
}
.content main article #moduleNewsComments #comments .comment .ed {
	color: #151515;
	margin-right: 10px;
	display: inline-block;
}
.content main article #moduleNewsComments #comments .comment .re::before {
    position: relative;
    display: inline-block;
	font-family: 'bigmug-line';
	font-size: 12px;
    text-transform: none;
	content: "\E08E";
	margin-right: 5px;
	color: #35ad79;
}
.content main article #moduleNewsComments #comments .comment .qu::before {
    position: relative;
    display: inline-block;
	font-family: 'bigmug-line';
	font-size: 12px;
    text-transform: none;
	content: "\E06B";
	margin-right: 5px;
	color: #35ad79;
}
.content main article #moduleNewsComments #comments .comment .ed::before {
    position: relative;
    display: inline-block;
	font-family: 'bigmug-line';
	font-size: 12px;
    text-transform: none;
	content: "\E07B";
	margin-right: 5px;
	color: #35ad79;
}
.content .sidebar {
    box-sizing: border-box;
    padding: 10px;
}
.content .sidebar aside {
	margin-bottom: 20px;
	width: 200px;
}
.content .sidebar aside .aside_content #premium a {
	display: block;
	position: relative;
    overflow-x: hidden;	
}
.content .sidebar aside #premium a:hover:after {
	content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 45px;
    transform: skewX(-45deg);
    animation: img-premium-animation;
    left: -150%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.4));
    animation: img-premium-animation .7s linear;
}
@keyframes img-premium-animation {
    0% {
        left: -150%;
    }
    100% {
        left: 150%;
    }
}
.content .sidebar aside h2 {
    padding: 10px 20px;
    margin-bottom: 0;
}
.content .sidebar .link {
    background: #f5f5f5 url(/modules/winlite/images/link.svg) 20px 50% no-repeat;
    border: 1px solid #e5e5e5;
    margin-bottom: -1px;
}
.content .sidebar .link:hover {
    background-color: #fdfdfd;
    text-decoration: none;
}
.content .sidebar .link a {
    display: block;
    font-size: 15px;
    padding: 10px 0px 10px 50px;
    color: #111;
}
.content .sidebar .link a:hover {
    text-decoration: none;
}
.content .sidebar p {
    background-color: #fdfdfd;
    border: 1px solid #eee;
    padding: 15px 20px;
    margin-bottom: 20px;
	background-color: red;
}
footer {
	margin-top: 40px;
	background-color: #2c2d31;
}
footer .main{
	background-color: #35363c;
	display: flex;
	flex-direction: row;
	padding: 20px;
}
footer .main .left{
	flex: 0 0 30%;
    max-width: 40%;
	padding-left: 20px;
}
footer .main .right{
	font-size: 13px;
	color: #707279;
	flex: 0 0 70%;
    max-width: 60%;
}
footer .main h5{
	color: #fff;
	font-weight: 400;
    letter-spacing: 0.045em;
	font-size: 18px;
    line-height: 1.35;
	text-transform: uppercase;
}
footer .main h6{
	color: #707279;
	font-size: 14px;
    line-height: 1.35;
	text-transform: uppercase;
}
footer .main .line{
	margin-bottom: 20px;
}
footer .main .line::after {
    content: '';
    display: inline-block;
    width: 44px;
    height: 3px;
    background: #707279;;
}
footer .main .unit-c{
	display: inline-block;
	padding: 5px;
	margin-right: 20px;
}
footer .main .unit-c::before {
    position: realtive;
    display: inline-block;
	font-family: 'bigmug-line';
    font-size: inherit;
	content: "\e0B8";
	color: #35ad79;
	font-size: 36px;
    text-transform: none;
	text-align: center;
	width: 46px;
}
footer .main .unit-p{
	display: inline-block;
	padding: 5px;
	cursor: url('/modules/winlite/cursors/cursor_hand.svg') 4 1, pointer;
}
footer .main .unit-p::before {
    position: realtive;
    display: inline-block;
	font-family: 'bigmug-line';
    font-size: inherit;
	content: "\e0BC";
	color: #35ad79;
	font-size: 36px;
    text-transform: none;
	text-align: center;
	width: 46px;
}
footer .main .unit-owner{
	display: inline-block;
	margin-left: 8px;
}
footer .main .count{
	color: #fff;
	font-size: 13px;
}
footer .logo{
	display: block;
	font-family: "Roboto Condensed", sans-serif;
    text-transform: uppercase;
    text-decoration: none;
	text-align: center;
    color: #707279;
	padding: 10px;
}
.footer_title {
    z-index: 8888;
	right: 20px;
	bottom: -80px;
	position: fixed;
	color: #fff;
	font-family: "Roboto Condensed", sans-serif;
    text-transform: uppercase;
    text-decoration: none;
	background-color: #35ad79;
	transition: all .45s ease-in-out;
	cursor: url('/modules/winlite/cursors/cursor_hand.svg') 4 1, pointer;
	padding-left: 10px;
	padding-right: 10px;
	line-height: 2;
	border-radius: 3px;
}
.footer_title:hover {
    background-color: #000;
}
#captcha{
	border-radius: 3px;
	margin-left: 5px;
}
#info p{
	display: inline-block;
	margin-bottom: 15px;
	margin-top: 10px;
}
#info #info-icon{
	font-family: 'bigmug-line';
    font-size: inherit;
	font-size: 28px;
	line-height: 50px;
	color: #35ad79;
    text-transform: none;
	border-bottom: 1px solid #707279;
	margin-bottom: 30px;
	animation: color 15s infinite linear;
}
@keyframes color {
  0%   {color: #33cccc;}
  20%  {color: #33cc36;}
  40%  {color: #b8cc33;}
  60%  {color: #fcca00;}
  80%  {color: #33cc36;}
  100% {color: #33cccc;}
}
#info a{
	text-decoration: none;
	border-radius: 3px;
    color: #fff;
    background: #35ad79;	
	padding: 10px 20px;
	transition: all 0.3s ease-in-out;
	box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
    text-shadow: 1px 1px 2px rgb(0 0 0 / 20%);
}
#info a:hover{
	background: #000;
}
.preloader {
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	z-index: 1010;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 20px;
	transition: .3s all ease;
}
.preloader.loaded {
	opacity: 0;
	visibility: hidden;
}
.preloader .preloader-body {
	text-align: center;
}
.preloader-body {
	position: relative;
	width: 40px;
	height: 40px;
}
.preloader-item {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: transparent;
	border-top: 1px solid rgba(0, 0, 0, 0.2);
	border-right: 1px solid rgba(0, 0, 0, 0.2);
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
	border-left: 1px solid #35ad79;
	transform: translateZ(0);
	border-radius: 50%;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
	animation-duration: .8s;
	animation-name: preloader-loading;
}
.snowflake {
	color: #b7d6e7;
	font-size: 1em;
}
@-webkit-keyframes snowflakes-fall{
	0%{top:-10%}100%{top:100%}}@-webkit-keyframes snowflakes-shake{
	0%{-webkit-transform:translateX(0px);transform:translateX(0px)}
	50%{-webkit-transform:translateX(80px);transform:translateX(5px)}
	100%{-webkit-transform:translateX(0px);transform:translateX(0px)}
}
@keyframes snowflakes-fall{
	0%{top:-10%}100%{top:100%}}@keyframes snowflakes-shake{
	0%{transform:translateX(0px)}
	50%{transform:translateX(10px)}
	100%{transform:translateX(0px)}
}
.snowflake{
	position:fixed;
	top:-10%;
	z-index: 2024;
	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none;
	-webkit-animation-name:snowflakes-fall,snowflakes-shake;
	-webkit-animation-duration:30s,5s;
	-webkit-animation-timing-function:linear,ease-in-out;
	-webkit-animation-iteration-count:infinite,infinite;
	-webkit-animation-play-state:running,running;
	animation-name:snowflakes-fall,snowflakes-shake;
	animation-duration:30s,5s;
	animation-timing-function:linear,ease-in-out;
	animation-iteration-count:infinite,infinite;
	animation-play-state:running,running;
}
.snowflake:nth-of-type(0){
	left:1%;
	-webkit-animation-delay:0s,0s;
	animation-delay:0s,0s;
}
.snowflake:nth-of-type(1){
	left:10%;
	-webkit-animation-delay:1s,1s;
	animation-delay:1s,1s;
}
.snowflake:nth-of-type(2){
	left:20%;
	-webkit-animation-delay:6s,.5s;
	animation-delay:6s,.5s;
}
.snowflake:nth-of-type(3){
	left:30%;
	-webkit-animation-delay:4s,2s;
	animation-delay:4s,2s;
}
.snowflake:nth-of-type(4){
	left:40%;
	-webkit-animation-delay:2s,2s;
	animation-delay:2s,2s;
}
.snowflake:nth-of-type(5){
	left:50%;
	-webkit-animation-delay:8s,3s;
	animation-delay:8s,3s;
}
.snowflake:nth-of-type(6){
	left:60%;
	-webkit-animation-delay:6s,2s;
	animation-delay:6s,2s;
}
.snowflake:nth-of-type(7){
	left:70%;
	-webkit-animation-delay:2.5s,1s;
	animation-delay:2.5s,1s;
}
.snowflake:nth-of-type(8){
	left:80%;
	-webkit-animation-delay:1s,0s;
	animation-delay:1s,0s;
}
.snowflake:nth-of-type(9){
	left:90%;
	-webkit-animation-delay:3s,1.5s;
	animation-delay:3s,1.5s;
}
@keyframes preloader-loading {
	0% {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(1turn);
	}
}
.modal {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
	background-color: rgba(0, 0, 0, .5);
    animation: modal-ani .25s ease-in-out;
	z-index: 101;
}
@keyframes modal-ani {
    from {background-color: rgba(0, 0, 0, 0);}
    to {background-color: rgba(0, 0, 0, .5);}
}
.modal img {
    object-fit: cover;
	border-radius: 3px;
	cursor: url('/modules/winlite/cursors/cursor_hand.svg') 4 1, pointer;
	box-shadow: 0 10px 15px rgb(0 0 0 / 30%);
	opacity: 0;
	animation: modal-ani-image .45s forwards;
}
@keyframes modal-ani-image {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
@media screen and (max-width: 1280px) {
    body {
		overflow-x: hidden;
    }
    .container {
        width: 1000px;
    }
	textarea {
        min-width: 100%;
    }
}
@media screen and (max-width: 1040px) {
    p,
    ul,
    ol {
        margin-bottom: 5px;
    }
    .container {
        width: 100%;
    }
    main {
        padding: 0 20px;
    }
    .bgheader {
        position: absolute;
    }
	.slide .content{
		padding-top: 50px;
	}
    header nav {
        float: none;
        width: 100%;
        height: 0;
        overflow: hidden;
        background-color: #000;
        line-height: normal;
        margin: 0;
        padding: 0;
        z-index: 100;
        -webkit-transition: all 0.3s ease-out 0s;
        -moz-transition: all 0.3s ease-out 0s;
        -o-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s;
    }
    header nav span {
        display: block;
		text-align: left;
    }
    header nav span a,
    header nav span a.active,
    header nav span a:hover,
    header nav span a.active:hover {
        display: block;
        border: 0;
        background-color: #111;
        color: #eee;
        padding: 20px 30px;
        margin-bottom: 1px;
    }
    header nav span a:hover {
        background-color: #35ad79;
    }
    header nav span:first-child a {
        border: 0;
    }
    header .user_menu {
        float: left;
        padding: 20px 30px;
		margin: 10px;
		line-height: 0;
    }

    header .search,
    header .hbr_menu {
        display: inline;
        margin-right: 20px;
    }
    .bgcontent {
        border: 0;
        margin: 0;
    }
	.slide .content h1 {
		font-size: 32px;
	}	
	.slide .content img{
		width: 300px;
	}
    .grid {
        flex-direction: column;
        -webkit-flex-direction: column;
    }
    .content {
        flex-direction: column;
        -webkit-flex-direction: column;
    }
    .content main {
        width: 100%;
    }
	.content main article .news h2 {
		margin-bottom: 5px;
		margin-top: 5px;
    }
    .content .sidebar {
        display: none;
    }
    .contact {
        flex-direction: column;
        -webkit-flex-direction: column;
    }
	.modal img {
		width: 90%;
	}
}
@media screen and (max-width: 768px) {
    input[type="text"],
    input[type="password"],
    select {
        width: 100%;
    }
    textarea {
        width: 100%;
    }
    header .search {
        display: none;
    }
    #avatar {
        max-width: 100%;
    }
	.slider-button-prev, .slider-button-next{
		height: 40px;
		width: 46px;
	} 
    .content main {
        padding: 30px 20px;
    }
	.content main article .news img {
	
	}
    .content main article .news h2 {
        position: relative;
    }
    .content main article .news h2 a,
    .content main article .news h2 a:hover {
        color: #000;
        padding: 10px 0;
    }
	footer .main{
		display: block;
	}
	footer .main .left{
		max-width: 100%;
		margin-bottom: 20px;
		padding-left: 0;
	}
	footer .main .right{
		max-width: 100%;
		margin-top: 10px;
	}
	footer .main .left .unit-c{
		max-width: 100%;
	}
	footer .main .left .unit-p{
		max-width: 100%;
	}
}