*{
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	touch-action: manipulation; /* масштабирование при двойном тапе не происходит */
}
body{
	position:relative;
	margin: 0;
	padding: 0;
	overflow-x:hidden;
	outline:none;
	user-select: none;
	left:0vw;
	animation: unset;
}
@keyframes body-left{
	0%{
		left:0vw;	
	}
	100%{
		left:-9vw;
	}
}
@keyframes body-right{
	0%{
		left:-9vw;
	}
	100%{
		left:0vw;
	}
}
@keyframes body-admin-left{
	0%{
		left:9vw;	
	}
	100%{
		left:0vw;
	}
}
@keyframes body-admin-right{
	0%{
		left:0vw;
	}
	100%{
		left:9vw;
	}
}
body::-webkit-scrollbar{
	background-color: #fff;
	border-left: 1px solid #eee;
	width:10px;
}
body::-webkit-scrollbar-thumb {
    background-color: #008ffc;
}
.id-notify-background{
	position:absolute;
	top:0;
	left:0;
	width:100vw;
	height:100vh;
	background: rgba(0,0,0,0.8);
	padding:10vh 26vw 2vw 26vw;
	z-index:400;
}
.id-notify{
	position:relative;
	display:flex;
	width:48vw;
	font-size: 1.5vw;
	font-family:"Nunito";
	padding:.8vw;
	padding-right:2vw;
	border-radius:1.1vw;
	z-index:300;
	color:#fff;
	background:#ff2020;
	text-align:justify;
	margin-bottom:2vw;
}
.id-notify-num{
	font-size:3.05vw; 
	font-weight:bold;	
	padding: 0vw 2vw 0vw 2vw;
}
.id-notify-close{
	background:#fff;
	font-size:1.5vw;
	padding:.5vw;
	border-radius:.5vw;
	font-family:"Nunito";
	cursor:pointer;
	transition: .05s linear;
	width:10vw;
	text-align:center;
	margin-left:39.8vw;
}
.id-notify-close:hover{
	background:#ccc;	
}
.header{
	position: fixed;
	display:flex;
	height:5vw;
	width:100vw;
	font-family:"Nunito";
	padding:.5vw .5vw 0vw 3vw;
	border-bottom: 1px solid #ddd;
	z-index:100;
	background: #fff;
	
	
}
.icon{
	padding-bottom:.5vw;
}
.icon-text{
	font-size:1vw;
	margin-left:.5vw;
	margin-top:1vw;
	white-space: nowrap;
}
.header-account{
	display:flex;
	position:absolute;
	right:9.5vw;
	background:#ccc;
	height:3.5vw;
	padding:.5vw .5vw .5vw 1vw;
	border-radius:1vw;
	transition: .1s linear;
	cursor:pointer;
}
.header-account:hover{
	background:#bbb;	
}
.header-account-img{
	border-radius:1000vw;
	width: 3.5vw;
	height: 3.5vw;
	background-size: cover;
    background-position: center;
}
.header-account-text{
	margin-left:1vw;	
	padding-right:1.5vw;
	width:100%;
}
.header-account-name{
	margin-top:.1vw;
	font-size:1.4vw;
	font-weight:bold;
	color:black;
	width:100%;
	text-align:center;
}
.header-account-link{
	margin-top:-.3vw;
	color:#666;
	font-size:1.05vw;
	display:flex;
	width:100%;
	justify-content:center;
}
.account-link-icon{
	margin-top:.1vw;	
	margin-left:.2vw;
}
.header-open{display:none;}
.header-desktop-open{
	display:block;
	position: absolute;
	right:6vw;
	font-size:2.1vw;
	color: #444;
	margin-top:.8vw;
	transition: .1s linear;
	cursor:pointer;
}
.header-nav{
	position:absolute;
	padding:4vh 1vw 1vw 1vw;
	top:0vw;
	right:-25vw;
	height:calc(96vh - 1vw);
	overflow:auto;
	margin-right:4.25vw;
	width:20vw;
	background:#036bfc;
	text-align:center;
}
.header-nav::-webkit-scrollbar{
	background-color: #036bfc;
	border:none;
	width:12px;
}
.header-nav::-webkit-scrollbar-thumb {
    background-color: #fff;
	border-radius:1000vw;
	border:3px solid #036bfc;
}
.header-nav-mobile{display: none;}
.header-nav-button{
	border-radius:.5vw;
	background: transparent;
	font-size:1.3vw;
	font-family: "Nunito";
	font-weight: bold;
	color:#fff;
	padding:1.5vw 1.2vw 1.8vw 1.2vw;
	transition:.15s linear;
	cursor:pointer;
}
.admin-nav-button{
	font-size:1.4vw;
	font-family: "Nunito";
	font-weight: bold;
	color:#fff;
	background:#000;
	border-radius:1vw;
	padding:1.7vw 1.5vw 1.7vw 1.5vw;
	transition:.15s linear;
	cursor:pointer;
	margin-bottom:1vw;
	border:none;
	width:100%;
}
.admin-nav-button:hover{
	background:#252525;	
}
.admin-button-icon{
	margin-left:.5vw;	
}
@keyframes header-desk-left{
	0%{
		right:-25vw;	
	}
	100%{
		right: calc(0vw - 12px);	
	}
}
@keyframes header-desk-right{
	0%{
		right: calc(0vw - 12px);	
	}
	100%{
		right: -25vw;	
	}
}
.header-nav-button:hover{
	background:#fff;
	color: #008ffc;
}

.tournaments{
	position: fixed;
	max-height: 60vh;
	overflow: auto;
	background: #ddd;
	padding:.5vw;
	font-family: "Nunito";
	width:23vw;
	margin:2vw 0 1vw 3.75vw;
	border-radius: 1.5vw;
	display: block;
	align-items: flex-start;
}
.tournaments-list::-webkit-scrollbar{
	width: 5px;
    background: #fff;
    border-radius: .5vw;
}
.tournaments-list::-webkit-scrollbar-thumb{
	width: 5px;
    background: #2a83ff;
    border-radius: .5vw;
}
.tournaments-list{
	max-height: calc(60vh - 3.5vw);
    overflow: auto;
    margin-bottom: .5vw;
}
.tournaments-title{
	font-size:1.2vw;
	font-weight: bold;
	text-align: center;
	margin:.5vw 0 .5vw 0;
}
.tournaments-post{
	font-size:.9vw;
	padding:.5vw;
	margin:.5vw .5vw 0 .5vw;
	background: #007afc;
	color:#fff;
	border-radius:.5vw;
	transition: .1s linear;
}
.tournaments-post:hover{
	background: #026cde;
}
a{
	text-decoration: none;
}
.section{
	display: flex;
	padding-top:5vw;
}

.newsline{
	position: relative;
	background: #fff;
	width:33vw;
	padding: .5vw;
	margin-left:31vw;
	font-family: "Nunito";
}
.newsline-post{
	font-size:0.9vw;
	padding:1vw;
	margin:.5vw;
	background: #3c6ef0;
	color: #fff;
	border-radius:.5vw;
}
.newsline-title{
	font-size:2vw;
	font-weight: bold;
	margin:1vw 0vw 1vw 1vw;
}
.sender{
	position: relative;
	display: block;
	font-size:0.7vw;
	padding-bottom: .5vw;
	color:#ddd;
}
.places{
	position: relative;
	padding-top:2vw;
	margin-left: 8.1vw;
}
.places-content{
	background: #ddd;
	width:20vw;
	font-size:1.1vw;
	font-family: "Nunito";
	font-weight: bold;
	padding:.5vw;
	margin-bottom:1.5vw;
	border-radius: 1.5vw;
}
.places-title{
	font-weight: bold;
	font-size:1.2vw;
	margin-left: 1vw;
	color: #007afc;
	margin-bottom:.5vw;
}
.participants{
	margin-left: 1.5vw;
	color:#fff;
	width: 17vw;
}
.element{
	background: #007afc;
	border-radius: .5vw;
	text-align: center;
	padding:.2vw;
	margin-bottom:.5vw;
}
.element:nth-child(1){
	background: #f0c800;
}
.element:nth-child(2){
	background: #949292;
}
.element:nth-child(3){
	background: #e97706;
}
.mobile-un{
	display: flex;
}
.mobile-places-btn{
	display: none;
}

.login-un{
	position: absolute;
	display:flex;
	height:5vw;
	width:100vw;
	font-family:"Nunito";
	padding:2vw .5vw 0vw 3vw;
	background: #fff;
}
.login-title{
	position:relative;
	z-index:101;
	font-family: "Nunito";
	font-size:9vh;
	font-weight:bold;
	text-align:center;
	padding-top:20vh;
}
.reg-title{
	position:relative;
	padding-top:5vh;	
	margin-bottom:5vh;
}
.login-text{
	margin-left:1.5vw;
}
.input-block{
	position:relative;
	font-family: "Nunito";
}
.login-table{
	margin-left:37.5vw;
	width:25vw;
}
.reg-table{
	width:35vw;	
}
.input_text{
	font-size:2vw;
	font-weight:500;
	margin-right:1.5vw;
}
.input{
	font-size: 3.8vh;
	font-family:"Nunito";
	padding:1.1vh 0vw .31vh 0vw;	
	border: none;
	border-bottom: 4px solid #007afc;
	outline:none;
	user-select:none;
	margin-top:1.1vh;
	width:100%;
}
.hide_psw{
	position:absolute;
	font-size:2vw;
	margin-top:1.2vw;
	margin-left:26vw;
	cursor:pointer;
	color: #013F80;
	z-index:110;
}
.hide_psw:hover{
	color: #0260C4;
}
.forget-label{
	font-size:1.25vw;
	color:#444;
	cursor:pointer;
	transition:.05s linear;
}
.forget-label:hover{
	color:#036bfc;	
}
.submit{
	margin-top:6.1vh;
	font-size:5.7vh;
	font-family:"Nunito";
	padding:.41vh 4vw .41vh 4vw;
	border-radius:.8vw;
	text-align:center;
	color: #fff;
	background: #0067FC;
	border:none;
	position: relative;
	left: 50%;
	transform: translate(-50%, 0);
	cursor:pointer;
	transition: .1s linear;
}
.submit:hover{
	background:	#025CDE;
}
.reg-submit{
	margin-top:3.8vh;
	margin-bottom:4vh;
}
.form-change{
	position:absolute;
	top:1.5vw;
	right:8vw;
	display:flex;
	background:black;
	padding:.7vw;
	border-radius:1vw;
	z-index:102;
}
.form-change-block{
	color: #fff;	
	font-size:1.4vw;
	padding:.5vw;
	border-radius:.5vw;
	text-align:center;
	cursor:pointer;
}
#toReg{
	margin-left:1vw;
}
#toLogin{
	color: black;
	background:#fff;
	width:4vw;
}
.reg-table td{
	position:relative;
	padding-left:.5vw;
	padding-right:.5vw;
}
.select-input{
	cursor:pointer;
	color: #757575;
}
.custom-select {
  	cursor: pointer;
}
.custom-select .options {
  	display: none;
  	position: absolute;
}
.custom-select.open .options {
	margin-top:.5vw;
  	display: block;
	z-index:110;
	background:#fff;
	padding:.5vw;
	border:1px solid black;
	width:15.55vw;
	border-radius:.5vw;
}
.option{
	border-radius:.3vw;
	padding:0vw .5vw 0vw .5vw;
}
.option:hover{
	background:#0067fc;
	color:#fff;
}
label.option:hover{
	background:#fff;
	color:#000;
}
.select-value{
	color:#757575;	
}
.custom-select2 {
  	cursor: pointer;
}
.custom-select2 .options2 {
  	display: none;
  	position: absolute;
	max-height:15vw;
	overflow-y:scroll;
	scrollbar-width:none;
}
.custom-select2.open .options2 {
	margin-top:.5vw;
  	display: block;
	z-index:110;
	background:#fff;
	padding:.5vw;
	border:1px solid black;
	width:40vw;
	border-radius:.5vw;
}
.select-value2{
	display:block;
	width:43vw;
	color:#757575;	
	overflow:hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.custom-select3 {
  	cursor: pointer;
}
.custom-select3 .options3 {
  	display: none;
  	position: absolute;
	max-height:15vw;
	overflow-y:scroll;
	scrollbar-width:none;
}
.custom-select3.open .options3 {
	margin-top:-19vw;
  	display: block;
	z-index:110;
	background:#fff;
	padding:.5vw;
	border:1px solid black;
	width:40vw;
	border-radius:.5vw;
}
.select-value3{
	display:block;
	width:15vw;
	color:#757575;	
	overflow:hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.country_chk{
	display:block;	
}
.custom-select4 {
  	cursor: pointer;
}
.custom-select4 .options4 {
  	display: none;
  	position: absolute;
	max-height:15vw;
	overflow-y:scroll;
	scrollbar-width:none;
}
.custom-select4.open .options4 {
	bottom:3vw;
  	display: block;
	z-index:110;
	background:#fff;
	padding:.5vw;
	border:1px solid black;
	width:22.2vw;
	border-radius:.5vw;
}
.select-value4{
	display:block;
	width:15vw;
	color:#757575;	
	overflow:hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.club-text-helper{
	display:block;
	width:15vw;
	color:#757575;	
	overflow:hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.option-disabled{
	color: #757575;
}
.option-disabled:hover{
	background: #fff;
	color:#757575;
}
.spinner {
	margin-top:.75vw;
	margin-left:.75vw;
  	width: 1.5vw;
  	height: 1.5vw;
  	border: 5px solid #fff;
  	border-top-color: #3A8AFE;
  	border-radius: 50%;
  	animation: spin 1s linear infinite;
}
.reg-spinner-new{
	margin-top: 2vh;
    margin-left: 1.5vh;
    width: 2.75vh;
    height: 2.75vh;
    border: .5vh solid #fff;
    border-top-color: #3A8AFE;
    border-radius: 50%;
    animation: spin 1s linear infinite;	
}
.email-spinner{
	margin-top:.85vw;
	margin-left:1vw;
  	width: 1.75vw;
  	height: 1.75vw;
  	border: .4vw solid #fff;
  	border-top-color: #3A8AFE;
  	border-radius: 50%;
  	animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.checkbox.style-c {
	margin-top:.8vw;
  	display: inline-block;
  	position: relative;
  	padding-left: 2vw;
  	cursor: pointer;
  	-webkit-user-select: none;
  	-moz-user-select: none;
  	-ms-user-select: none;
  	user-select: none;
}
.checkbox.style-c input {
  	position: absolute;
	left:.2vw;
	top:1.5vw;
  	opacity: 0;
  	cursor: pointer;
  	height: 1vw;
  	width: 1vw;
}
.checkbox.style-c input:checked ~ .checkbox__checkmark {
  	background-color: #7000FE;
}
.checkbox.style-c input:checked ~ .checkbox__checkmark:after {
  	opacity: 1;
}
.checkbox.style-c:hover input ~ .checkbox__checkmark {
  	background-color: #eee;
}
.checkbox.style-c:hover input:checked ~ .checkbox__checkmark {
  	background-color: #7000FE;
}
.checkbox.style-c .checkbox__checkmark {
  	position: absolute;
  	top: .5vw;
  	left:0vw;
  	height: 1.4vw;
  	width: 1.4vw;
  	background-color: #fff;
	border:.25vw solid #7000FE;
  	transition: background-color 0.25s ease;
  	border-radius: .3vw;
}
.checkbox.style-c .checkbox__checkmark:after {
  	content: "";
  	position: absolute;
  	left: .45vw;
  	top: .14vw;
  	width: .35vw;
  	height: .77vw;
  	border: solid #fff;
  	border-width: 0 .15vw .15vw 0;
  	transform: rotate(45deg);
  	opacity: 0;
  	transition: opacity 0.25s ease;
}
.checkbox__body{
	font-size:1.3vw;
	font-weight:500;
	color: black;
	margin-top: .6vw;
	margin-left:.7vw;
	font-family: "Montserrat";
}
.reg-img-container{
	position: relative;
	margin-left:3vw;
	margin-top:1vw;
	width:14vw;
	height:14vw;
}
.edit-img-container{
	margin-left:0vw;	
}
.reg-img-input{
	position:absolute;
	left: -100vw;
	opacity:0;
}
.reg-img-disinput{
	position:absolute;
	left: -100vw;
	opacity:0;
}
.edit-img-input{
	position:absolute;
	left: -100vw;
	opacity:0;
}
.edit-img-disinput{
	position:absolute;
	left: -100vw;
	opacity:0;
}
.label{
	position:relative;
	font-family: "Montserrat";
	font-weight:600;
	font-size:1.1vw;
	background: #fff;
	border: .5vw solid #0067fc;
	color: #0067fc;
	width:14vw;
	height:2.2vw;
	padding:10.5vw 0vw 1.3vw 0vw;
	text-align: center;
	border-radius: 100vw;
	cursor: pointer;
	transition: .1s linear;
}
.user-label{
	border-radius: 100vw;
	background-size:cover;
	background-position:center;
	font-family:"Nunito";
	border: none;
	color:#036bfc;
	font-size:1.2vw;
	padding:10.5vw 0vw 1.3vw 0vw;
	filter:brightness(50%);
}
.mobile-unflex{
	display:flex;
}
.mobile-unflex-inlBlock{
	display:flex;	
}
.mobile-flex-inlBlock{
	display:contents;	
}
.mobile-unflex-newsAdmin{
	display:flex; 
	align-items: flex-start;
}
.select-icon{
	position:absolute; 
	right:1vw; 
	margin-top:-1.8vw; 
	font-size:1.3vw;	
}
.select-info{
	position:absolute; 
	color: green; 
	font-weight:500;	
	font-size:1.2vw;
}
.image-info{
	position:relative;
	margin-top:1vw;
	margin-left:2vw;
}
.mobile-info{display:none;}
.image-info-span{
	color:#036bfc;	
}
.img-icon-part1{
	position:absolute; 
	top:2.5vw; 
	font-size:6vw; 
	left: 3.5vw;	
}
.img-icon-part2{
	position:absolute; 
	top:7.05vw; 
	font-size:1.85vw; 
	left: 9.4vw;	
}
.main-img-part1, .main-img-part2{
	opacity:0.7;
	cursor: pointer;
}
.img-icon-text{
	position:absolute;
	top:10vw;
	left:3vw;
	font-family: "Nunito";
	font-weight:600;
	font-size:1.1vw;
	color: #fff;
	text-align: center;
	cursor: pointer;
	opacity:0.7;
}
.user-window-values{
	display:flex;	
}
.user-window{
	position:absolute;
	top:0;
	left:0;
	width:100vw;
	height:100vh;
	background: rgba(0,0,0,0.7);
	z-index:1000;
	padding:3vw 7vw 3vw 7vw;
}
.user-window-container{
	background:#fff;
	border-radius:1.5vw;
	width: 80vw;
	height:calc(100vh - 9vw);
	padding:1.5vw 3vw 1.5vw 3vw;
	overflow-y:auto;
	overflow-x:hidden;
}
.user-window-container::-webkit-scrollbar{
	display:none;
}
.user-window-title{
	font-size:3.5vw;
	font-weight:600;
	font-family:"Nunito";
	margin-bottom:2vw;
	max-width: 67vw;
}
.user-window-close{
	position:absolute;
	width:2.5vw;
	height:2.65vw;
	padding:.35vw .5vw .5vw .5vw;
	text-align:center;
	right:24vw;
	top:5vw;
	font-size:2.5vw;
	z-index:1001;
	cursor:pointer;
	border-radius:100vw;
	transition:.1s linear;
}
.user-window-close:hover{
	background:rgba(0,0,0,0.2);	
}
.user-window-img{
	width:10vw;
	height:10vw;
}
.user-values-text{
	margin-left:2vw;
}
.user-value{
	font-size:1.7vw;
	font-family:"Nunito";
}
.user-value-name{
	font-size:2.5vw;	
	font-weight:600;
	padding-bottom:.75vw;
}
.user-edit{
	position:relative;
	top:-.3vw;
	color:#fff;
	background:#036bfc;
	padding:.4vw .8vw .4vw .8vw;
	border-radius:.7vw;
	font-family:"Nunito";
	font-size:1.3vw;
	font-weight:500;
	margin-left:1.5vw;
	cursor:pointer;
	transition:.05s linear;
}
.user-edit:hover{
	background:#0154c7;	
}
.user-edit-icon{
	margin-left:.4vw;
	font-size:1.1vw;
}
.user-window-table{
	margin-left:2vw;
	width:47vw;
}
.user-change-btn{
	position:relative;
	margin-left:2vw;
	margin-top:1.5vw;
	background:#0067fc;
	color:#fff;
	font-family:"Nunito";
	font-size:1.5vw;
	padding:.5vw 1.5vw .5vw 1.5vw;
	text-align:center;
	cursor:pointer;
	border-radius:.75vw;
	border:none;
}
.user-change-btn:hover{
	background:#0154c7;	
}
.logout-btn{
	position:relative;
	margin-left:2vw;
	margin-top:1.5vw;
	background:#ff2c2c;
	color:#fff;
	font-family:"Nunito";
	font-size:1.85vw;
	width:12vw;
	padding:.5vw 0vw .5vw .5vw;
	text-align:center;
	cursor:pointer;
	border-radius:.75vw;
	border:none;
}
.logout-btn:hover{
	background:#da2828;
}
.change-btn-icon{
	margin-left:.25vw;
	font-size:1.4vw;
}
.logout-btn-icon{
	margin-left:.25vw;
	font-size:1.65vw;
}
.edit-cancel-btn{
	position:absolute;
	margin-left:calc(80vw - 9.5vw - 1.5vw);
	bottom:calc(6vw + 2.2vw + 1vw + 1.5vw);
	background:#bbb;
	color:#000;
	font-size:1.6vw;
	font-family:"Nunito";
	padding:.5vw 1vw .5vw 1vw;
	border-radius:.65vw;
	width:9.5vw;
	cursor:pointer;
	text-align:center;
	transition: .05s linear;
	display:none;
}
.edit-cancel-btn:hover{
	background:#9f9f9f;
}
.edit-apply-btn{
	position:absolute;
	right:37vw;
	bottom:calc(6vw + 2.2vw + 1vw + 1.5vw);
	background:#0067fc;
	color:#fff;
	font-size:1.6vw;
	font-family:"Nunito";
	padding:.5vw 1vw .5vw 1vw;
	border-radius:.65vw;
	cursor:pointer;
	text-align:center;
	transition: .05s linear;
	display:none;
	border:none;
}
.edit-apply-btn:hover{
	background:#0154c7;
}
.email-error{
	display:none;
	color:red;
	font-size:2.5vh;
}
.email-confirm{
	display:none;
	position:absolute;
	top:0;
	left:0;
	width:calc(100vw + 10px);
	height:100vh;
	background:rgba(0, 0, 0, 0.5);
	z-index:1000;
}
.email-confirm-container{
	margin: 20vh 15vw 20vh 15vw;
	width:calc(70vw - 7vh);
	background:#fff;
	border-radius:1.5vw;
	font-family:"Nunito";
	padding:3.5vh;
	text-align:center;
}
.email-confirm-title{
	font-weight:600;
	font-size:6vh;
	text-align:left;
}
.email-confirm-text{
	margin-top:2vh;
	font-size:3vh;
	text-align:left;
}
.email-confirm-input{
	font-size:7vh;
	font-family:"Nunito";
	width:31vh;
	text-align:center;
	outline:none;
	user-select:none;
	border-radius:1vw;
	border: none;
	background:#ccc;
	margin-top:4vh;
	padding:0vh 2vh 0vh 2vh;
}
.email-confirm-input::-webkit-outer-spin-button,
.email-confirm-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.mail-submit{
	font-size:3vw;
	width:22vw;
	text-align:center;
	padding:1vh 5vh 1vh 5vh;
	transition:none;
}
.email-confirm-more{
	position:absolute;
	right:calc(15vw + 6.625vh);
	margin-top:calc(-1vh - 3vw);
	cursor:pointer;
	font-size:1.25vw;
}
.email-confirm-more:hover{
	color:#333;	
}
.mobileEmail-confirm-more{display:none;}
.forget-background{
	display:none;
	position:absolute;
	top:0;
	left:0;
	width:calc(100vw + 10px);
	height:100vh;
	background:rgba(0, 0, 0, 0.5);
	z-index:1000;
}
.forget-container{
	display:block;
	margin: 20vh 15vw 20vh 15vw;
	width:calc(70vw - 7vh);
	background:#fff;
	border-radius:1.5vw;
	font-family:"Nunito";
	padding:3.5vh;
	text-align:center;
}
.forget-title{
	font-weight:600;
	font-size:6vh;
	text-align:left;
}
.forget-close{
	position:absolute;
	width:5.7vh;
	height:5.55vh;
	padding:.95vh .4vh 0vh .4vh;
	text-align:center;
	right:calc(15vw + 5vh);
	top:23.5vh;
	font-size:4.5vh;
	z-index:1001;
	cursor:pointer;
	border-radius:100vw;
	transition:.1s linear;
}
.main-close{
	padding: .475vh .4vh .475vh .4vh;	
}
.forget-close:hover{
	background:rgba(0,0,0,0.2);	
}
.forget-text{
	margin-top:2vh;
	font-size:3.5vh;
	text-align:left;
	word-break:break-word;
}
.forget-email-input{
	font-size:5vh;
	font-family:"Nunito";
	width:calc(40vw - 7vh);
	text-align:left;
	outline:none;
	user-select:none;
	border-radius:1vw;
	border: none;
	background:#ccc;
	margin-top:4vh;
	padding:1vh 2vh 1vh 2vh;
}
.forget-code-input{
	display:none;
	font-size:7vh;
	font-family:"Nunito";
	width:32vh;
	text-align:center;
	outline:none;
	user-select:none;
	border-radius:1vw;
	border: none;
	background:#ccc;
	margin-top:4vh;
	padding:0vh 2vh 0vh 2vh;
}
.forget-psw-input{
	display:none;
	font-size:5vh;
	font-family:"Nunito";
	width:calc(40vw - 7vh);
	text-align:left;
	outline:none;
	user-select:none;
	border-radius:1vw;
	border: none;
	background:#ccc;
	margin-top:4vh;
	padding:1vh 2vh 1vh 2vh;
}
.forget-code-input::-webkit-outer-spin-button,
.forget-code-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.forget-email-error{
	opacity:0;
	color:red;
	font-size:2.5vh;
	font-family:"Nunito";
}
.forget-email-submit{
	margin-top:3vh;
	font-size:5vh;
	width:31vh;
	text-align:center;
	padding:1vh 4vh 1vh 4vh;
	transition:none;
}
.forget-spinner {
	margin-top:1.2vh;
	margin-left:1vw;
  	width: 3vh;
  	height: 3vh;
  	border: .75vh solid #fff;
  	border-top-color: #3A8AFE;
  	border-radius: 50%;
  	animation: spin 1s linear infinite;
}
.login-spinner{
	margin-top:1.7vh;
	margin-left:1vw;
  	width: 3vh;
  	height: 3vh;
  	border: .75vh solid #fff;
  	border-top-color: #3A8AFE;
  	border-radius: 50%;
  	animation: spin 1s linear infinite;
}
.reg-spinner{
	margin-top:1.7vh;
	margin-left:1vw;
  	width: 3vh;
  	height: 3vh;
  	border: .75vh solid #fff;
  	border-top-color: #3A8AFE;
  	border-radius: 50%;
  	animation: spin 1s linear infinite;
}
.edit-spinner{
	margin-top:.2vw;
	margin-left:.85vw;
  	width: 1.15vw;
  	height: 1.15vw;
  	border: .35vw solid #fff;
  	border-top-color: #3A8AFE;
  	border-radius: 50%;
  	animation: spin 1s linear infinite;
}
.forget-confirm-more{
	position:absolute;
	right:calc(15vw + 6.625vh);
	margin-top:calc(-1vh - 3vw);
	cursor:pointer;
	font-size:1.25vw;
}
.forget-confirm-more:hover{
	color:#333;	
}
.mobile-display-block{
	display:none;	
}

.home-btn{
	position: absolute;
	right:2.5vw;
	top:2vw;
	font-size:1.5vw;
	color:#067bfc;
}
.home-btn:hover{
	color: #006ce0;
}
.admin-nav{
	position:fixed;
	background:#0167ff;
	width:20vw;
	height:100vh;
}
.admin-nav-title{
	display:flex;
	justify-content:space-around;
	align-items:center;
	color:#fff;
	font-family:"Nunito";
	padding:1vw 2.75vw;
	border-bottom: .4vw solid #1e8af9;
}
.admin-title-icon{
	font-size:4vw;	
}
.admin-title-text{
	font-size:1.5vw;
	font-weight:bold;
	margin-left:2vw;
}
.admin-nav-table{
	border-collapse: collapse;
	width:100%;
	color:#fff;
	font-family:"Nunito";
	font-size:1.5vw;
}
.admin-nav-item{
	padding:2vw;
}
.admin-nav-item:hover{
	background:#0882ff;
	cursor:pointer;
}
.admin-nav-icon{
	text-align:center;
	padding: 1.3vw 0vw;
}
.admin-nav-selected{
	background:#0882ff;
	font-weight:bold;
}
.admin-nav-selected:hover{
	cursor:default;	
}
.admin-section{
	margin-left: 20vw;
	width:80vw;
}
.admin-news-title{
	font-family:"Nunito";
	padding-top:2vw;
	padding-left:4vw;
	padding-bottom:1vw;
	font-size:2.5vw;
	font-weight:bold;
}
.admin-pubnews-title{
	font-family:"Nunito";
	padding-top:1vw;
	padding-left:4vw;
	padding-bottom: 2vw;
	font-size:2vw;
	font-weight:bold;
}
.admin-news-item{
	font-family: "Nunito";
    font-size: 1vw;
    background: #0475e9;
    color: #fff;
    width: 30vw;
    margin-left: 4vw;
    margin-bottom: 1vw;
    border-radius: 1.5vw;
    padding: 1.5vw;	
}
.main-news-item{
    margin-left: 0vw;
}
.admin-news-date{
	font-size:.85vw;
	margin-bottom:.5vw;
}
.admin-news-text{
	white-space: pre-wrap;
	user-select:text;	
	overflow-wrap: break-word;
}
.admin-tournaments-input{
	resize: none;
    border: none;
    background: #ccc;
    margin-left: 4vw;
    width: calc(100% - 4vw);
    font-family: "Nunito";
    font-size: 1.3vw;
    font-weight: bold;
    border-radius: .75vw;
    padding: .75vw;
    color: #333;
    height: 3.5vw;
    overflow: hidden;
    outline: none;
    user-select: none;	
	margin-top:3vw;
	transition: .1s linear;
}
.admin-tournaments-input:disabled{
	color: #777;	
}
.admin-tournaments-coords:disabled{
	color: black;	
}
.admin-tournaments-placeholder{
	font-family: 'Nunito';
    font-size: 1.3vw;
    font-weight: bold;
    color: #666;
    position: absolute;
    margin-top: -2.65vw;
    margin-left: 4.75vw;
	cursor:text;
}	
.admin-venue-placeholder{
	top: 17.4vw;
	font-size: 1.3vw;
}
.admin-address-placeholder{
	top: 21.9vw;
	font-size: 1.3vw;
	z-index:1;
}
.tournaments-halfinput{
	font-size: 1.3vw;
	margin-top: 1vw;
}
.tournaments-halfinput-second{
	margin-left: 1vw;
	margin-top: 1vw;
}
.admin-news-input{
	resize: none;
    border: none;
    background: #ccc;
    margin-left: 4vw;
    width: 43vw;
    font-family: "Nunito";
    font-size: 1.1vw;
    font-weight: bold;
    border-radius: .75vw;
    padding: .75vw;
    color: #333;
    height: 5vw;
    overflow: hidden;
    outline: none;
    user-select: none;	
	margin-top:3vw;
}
.admin-news-placeholder{
	font-family: 'Nunito';
    font-size: 1.1vw;
    font-weight: bold;
    color: #666;
    position: absolute;
    margin-top: -4vw;
    margin-left: 4.75vw;
	cursor:text;
}	
.admin-news-inputDISABLE{
	resize: none;
    border: none;
    background: #ccc;
    margin-left: 4vw;
    width: 43vw;
    font-family: "Nunito";
    font-size: 1.1vw;
    font-weight: bold;
    border-radius: .75vw;
    padding: .75vw;
    color: #333;
    height: 5vw;
    overflow: hidden;
    outline: none;
    user-select: none;	
	margin-top:3vw;
}
.admin-news-placeholderDISABLE{
	font-family: 'Nunito';
    font-size: 1.1vw;
    font-weight: bold;
    color: #666;
    position: absolute;
    margin-top: -4vw;
    margin-left: 4.75vw;
	cursor:text;
}	
.admin-news-submit{
	font-size: 1.1vw;
    font-family: "Nunito";
    background: #036bfc;
    color: #fff;
    margin-left: 4vw;
    margin-top: .75vw;
    width: 7vw;
    text-align: center;
    border-radius: .75vw;
    padding: .25vw;
	cursor:pointer;
}
.news-edit-cancel{
	background: #ff3a3a;
    font-size: 1.1vw;
    padding: .25vw;
    border-radius: .75vw;
    width: 6vw;
    text-align: center;
    margin-left: auto;
	order:3;
	cursor:pointer;
}
.news-edit-cancel:hover{
	background: #d93333;
}
.admin-news-submitDISABLE{
	font-size: 1.1vw;
    font-family: "Nunito";
    background: #036bfc;
    color: #fff;
    margin-left: 4vw;
    margin-top: .75vw;
    width: 7vw;
    text-align: center;
    border-radius: .75vw;
    padding: .25vw;
	cursor:pointer;
}
.admin-newssub-disable{
	cursor:default;	
	background:#65a4fd;
}
.admin-newssub-disable:hover{
	background:#65a4fd;
}
.admin-news-spinner{
	margin-top: .2vw;
    margin-left: .45vw;
    width: .75vw;
    height: .75vw;
    border: .2vw solid #fff;
    border-top-color: #65a4fd;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
#admin-news-success{
	font-size: 1.2vw;
    margin-top: .2vw;
    margin-left: .5vw;	
}
.admin-newsitem-header{
	display:flex;	
}
.admin-news-edit{
	position: absolute;
	right: 45.5vw;
	font-size:1.1vw;
	cursor:pointer;
}
.admin-news-edit:hover{
	color: #ccc;	
}
.admin-news-delete{
	position: absolute;
	right: 44vw;
	font-size:1.1vw;
	color:#ef3300;
	cursor:pointer;
}
.admin-news-delete:hover{
	color:#cf0000;	
}
.news-delete-background{
	display:none;
	z-index: 1000;
    position: fixed;
    background: rgba(0, 0, 0, 0.65);
    width: 100vw;
    height: 100vh;
    top: 0vw;
    left: 0vw;	
}
.news-delete-body{
	position: relative;
    font-size: 1.6vw;
    font-family: "Nunito";
    width: 35vw;
    margin-left: 31vw;
    margin-top: 35vh;
    background: #fff;
    opacity: 1;
    border-radius: 1.5vw;
    padding: 1.5vw;
}
.news-delete-text{
	font-weight: bold;	
}
.news-delete-buttons{
	margin-top: 1.5vw;
	display:flex;	
}
.news-delete-cancel{
	font-size: 1.5vw;
    background: #bbb;
    padding: .25vw 2vw;
    border-radius: .75vw;
    margin-left: 14.8vw;	
	cursor:pointer;
	color:black;
}
.news-delete-cancel:hover{
	background: #999;	
}
.news-delete-apply{
	font-size: 1.5vw;
    background: #fd2b14;
    color: #fff;
    margin-left: 1vw;
    padding: .25vw 0vw;
    border-radius: .75vw;	
	cursor:pointer;
	width: 20vw;
	text-align:center;
}
.news-delete-apply:hover{
	background:#cb2412;	
}
.admin-newsdel-spinner{
	margin-top: .3vw;
    margin-left: .45vw;
    width: 1vw;
    height: 1vw;
    border: .25vw solid #fff;
    border-top-color: #f76859;
    border-radius: 50%;
    animation: spin 1s linear infinite;	
}
.admin-news-item a {
    color: #00e5ff;
}
.admin-news-item a:hover {
    color: #00c7dd;
}
.admin-news-help{
	background: #ffca00;
    color: #333;
    font-family: "Nunito";
    border-radius: 1.5vw;
    padding: 1.5vw;
    margin: 3vw 2vw 1vw 1vw;
    font-size: .95vw;	
}
.news-help-text{
	font-weight:bold;	
}
.news-help-copytext{
	margin: .5vw .5vw .5vw 0;
    font-family: monospace;
    background: #333;
    color: #fff;
    font-size: .8vw;
    padding: .25vw .75vw;
    border-radius: 0.25vw;	
	user-select:text;
}
.news-help-copytext::selection {
    background: #036bfc;
}
.news-help-copyicon{
	color: #fff;
    background: #036bfc;
    height: .85vw;
    width: .85vw;
    font-size: .85vw;
    padding: .3vw;
    margin-top: .5vw;
    border-radius: .4vw;
    cursor: pointer;
	display:flex;
	justify-content:space-between;
}
.news-help-copyicon:hover{
	background: #0359d1;	
}
.news-help-copyicon > span{
	display:none;
	opacity: 0;
	margin-left: .3vw;
	margin-top: -.1vw;
}
.news-help-ex{
	color: #0035ff;
    font-weight: bold;	
}
.news-help-extext{
	margin: .5vw .5vw .5vw 0;
    font-family: monospace;
    background: #333;
    color: #fff;
    font-size: .8vw;
    padding: .25vw .75vw;
    border-radius: 0.25vw;	
}
.news-help-exarrow{
	margin-top: .65vw;
    color: #0035ff;
    font-size: 1.1vw;	
}
.news-help-exlink{
	margin-top: .2vw;
    color: #00e5ff;
    background: #0475e9;
    font-size: 1.1vw;
    height: 1.1vw;
    padding: .25vw .5vw .5vw .5vw;
    border-radius: .5vw;
    margin-left: .5vw;
}
.news-help-exlink:hover{
	color: #00c7dd;	
}
.news-img-label{
	font-size: 1.1vw;
    font-family: "Nunito";
    background: #ccc;
    color: #444;
    margin-left: .5vw;
    margin-top: .75vw;
    width: 10vw;
    border-radius: .75vw;
    padding: .25vw .75vw;
    cursor: pointer;
    display: flex;
    justify-content: space-around;	
}
.news-img-labelDISABLE{
	font-size: 1.1vw;
    font-family: "Nunito";
    background: #ccc;
    color: #444;
    margin-left: .5vw;
    margin-top: .75vw;
    width: 10vw;
    border-radius: .75vw;
    padding: .25vw .75vw;
    cursor: pointer;
    display: flex;
    justify-content: space-around;	
}
.news-img-label:hover{
	background: #bbb;	
}
.news-img-icon{
	margin-top: .15vw;	
}
.news-textarea-images{
	background-size: cover;
    background-position: center;
    width: 5vw;
    height: 5vw;
    border-radius: 0.75vw;	
	margin: .25vw;
	cursor:pointer;
	transition: .1s linear;
}
.news-textarea-imagesDISABLE{
	background-size: cover;
    background-position: center;
    width: 5vw;
    height: 5vw;
    border-radius: 0.75vw;	
	margin: .25vw;
	cursor:pointer;
	transition: .1s linear;
}
.news-textarea-imgBlock{
	display: flex;
    margin-left: 4vw;
    background: #ccc;
    padding: 0vw .5vw .5vw .5vw;
    border-bottom-left-radius: .75vw;
    border-bottom-right-radius: .75vw;
    width: 42vw;
    flex-wrap: wrap;
	display:none;
}
.news-textarea-imgBlockDISABLE{
	display: flex;
    margin-left: 4vw;
    background: #ccc;
    padding: 0vw .5vw .5vw .5vw;
    border-bottom-left-radius: .75vw;
    border-bottom-right-radius: .75vw;
    width: 42vw;
    flex-wrap: wrap;
	display:none;
}
.news-textarea-imagedeleter{
	z-index:1000;
	width: .8vw;
    height: .8vw;
    background: #999;
    color: black;
    border-radius: 100%;
    margin-left: -.875vw;
    margin-top: -.325vw;
    font-size: 1.1vw;
    padding: .13vw .215vw .37vw .285vw;
	cursor:pointer;
}
.news-textarea-imagedeleterDISABLE{
	z-index:1000;
	width: .8vw;
    height: .8vw;
    background: #999;
    color: black;
    border-radius: 100%;
    margin-left: -.875vw;
    margin-top: -.325vw;
    font-size: 1.1vw;
    padding: .13vw .215vw .37vw .285vw;
	cursor:pointer;
}
.news-fullImage-background{
	display:none;
	z-index: 1000;
    position: fixed;
    background: rgba(0, 0, 0, 0.8);
    width: 100vw;
    height: 100vh;
    top: 0vw;
    left: 0vw;
}
.aews-fullImage-background{
	display:none;
	z-index: 1000;
    position: fixed;
    background: rgba(0, 0, 0, 0.8);
    width: 100vw;
    height: 100vh;
    top: 0vw;
    left: 0vw;
}
.bews-fullImage-background{
	display:none;
	z-index: 1000;
    position: fixed;
    background: rgba(0, 0, 0, 0.8);
    width: 100vw;
    height: 100vh;
    top: 0vw;
    left: 0vw;
}
.cews-fullImage-background{
	display:none;
	z-index: 1000;
    position: fixed;
    background: rgba(0, 0, 0, 0.8);
    width: 100vw;
    height: 100vh;
    top: 0vw;
    left: 0vw;
}
.news-fullImage-image{
	position: relative;
	max-width: 80vw;
    max-height: 80vh;
    border-radius: .75vw;	
}
.news-fullImage-close{
	position: absolute;
    top: 10vh;
    right: 7vw;
    font-size: 2.25vw;
    color: #fff;	
	cursor:pointer;
}
.news-fullImage-close:hover{
	color: #ccc;	
}
.news-images{
	/*background-size: cover;
    background-position: center;
   	width: 7.9vw;*/
    height: 7vw;
    border-radius: 0.5vw;	
	margin: .15vw;
	cursor:pointer;
	transition: .1s linear;	
    align-self: center;
    object-fit: contain;
    background: #4ba4ff;
	display:none;
}
.news-images-placeholder{
	height: 7vw;
    border-radius: 0.5vw;	
	margin: .15vw;
	cursor:pointer;
	/*transition: .1s linear;*/
    align-self: center;
    object-fit: contain;
    background: #4ba4ff;
	background-repeat: no-repeat;
    background-size: cover;
	/*display:none;*/
}
.news-images-placeholder:hover{
	filter: brightness(0.7);	
}
.news-images:hover{
	filter: brightness(0.7);	
}
.newsImgBlock{
	display: flex;
    margin-left: 4vw;
    background: #0475e9;
    padding: 0vw 1vw 1vw 1vw;
    border-bottom-left-radius: 1.5vw;
    border-bottom-right-radius: 1.5vw;
    width: 31vw;
    flex-wrap: wrap;
	margin-bottom: 1vw;
	justify-content: center;
}
.newsImgBlockMain{
	display: flex;
    background: #0475e9;
    padding: 0vw 1vw 1vw 1vw;
    border-bottom-left-radius: 1.5vw;
    border-bottom-right-radius: 1.5vw;
    width: 31vw;
    flex-wrap: wrap;
	margin-bottom: 1vw;
	justify-content: space-between;
}
.news-image-spinner{
	display:none;
	width: 5vw;
    height: 5vw;
    border: .15vw solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: absolute;	
}
.news-lazyload-spinner{
	display: block;
    width: 3vw;
    height: 3vw;
    border: .25vw solid #036bfc;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: absolute;
}
.news-lazyload-preloader{
	margin: 3vw 14.75vw 1vw 14.75vw;
    width: 3.5vw;
    height: 3.5vw;
}
.admin-lazyload-preloader{
	margin: 3vw 18.8vw 1vw 18.8vw;
}
.blurPreview{
    position: absolute;
	top:0;
	left:0;
    z-index: 1;
    backdrop-filter: blur(5px);
    border-radius: .5vw;
	display: none;
}
.open-mobile-newshelp{
	display:none;	
}
.admin-header{
	display:none;	
}
.header-admin-mobile{
	display:none;	
}
.show-full-text{
	color: #ccc;
    background: rgba(255, 255, 255, 0.2);
    padding: .1vw .5vw;
    border-radius: .5vw;
    white-space: nowrap;
    cursor: pointer;
	transition: .05s linear;
	width: 10vw;
    text-align: center;
    margin-top: .25vw;
}
.show-full-text:hover{
	color: #fff;
}
.admin-tournaments-article{
	width: 100vw;
	display:none;	
}
.admin-accounts-article{
	display:none;	
}
.admin-tables-article{
	display:none;	
}
.admin-accounts-table{
	font-family:"Nunito";	
	border-collapse: collapse;
	margin-left: 3vw;
	width: calc(100% - 6vw);
	font-size: 1.2vw;
	margin-top: 2vw;
}
.accounts-table-row{
	border-top: .2vw solid #76acf7;
	cursor:pointer;
	transition: .1s linear;
}
.accounts-table-row:hover{
	background: #deecff;	
}
.accounts-table-row:first-child{
	border-top: none;
}
.accounts-table-row td{
	padding: .75vw 1vw .75vw 1vw;	
	max-width: 8vw;
}
.accounts-table-row td:nth-child(1){
	padding: .75vw .5vw .75vw .5vw;	
}
.accounts-table-edit{
	color: #036bfc;
	font-weight:bold;
	padding: .25vw .75vw;
    border-radius: .5vw;
	transition: .1s linear;
	width: 5.6vw;
}
.accounts-table-edit:hover{
	background: #036bfc;
    color: #fff;
}
.accounts-table-delete{
	color: #cb2412;
	font-weight:bold;
	padding: .25vw .75vw;
    border-radius: .5vw;
	transition: .1s linear;
	width: 4.75vw;
}
.accounts-table-delete:hover{
	background: #cb2412;
    color: #fff;
}
.accounts-table-title{
	border-bottom: .2vw solid black;
	cursor:default;
}
.accounts-table-title:hover{
	background: transparent;	
}
.accounts-table-item{
	user-select:text;	
}
.accounts-table-country{
	overflow: hidden;
  	text-overflow: ellipsis;
  	white-space: nowrap;	
}
.accounts-table-title td{
	text-align:center;
	padding: .75vw 1vw .75vw 1vw;	
	cursor:pointer;	
	transition: .1s linear;
	white-space: nowrap;
}
.accounts-table-title td:nth-child(1){
	text-align:center;
	padding: .75vw .5vw .75vw .5vw;	
	cursor:pointer;	
}
.accounts-table-title td:hover{
	background: #deecff;	
}
.accounts-table-title td:hover .accounts-table-icon{
	color: #deecff;	
}
.accounts-table-icon{
	margin-left: .25vw;
	transition: .1s linear;
	display: none !important;
}
#id{min-width: 3.01vw;}
#last{min-width: 7.81vw;}
#first{min-width: 6.95vw;}
#born{min-width: 11.46vw;}
#sex{min-width: 5.87vw;}
#country{min-width: 9.31vw;}
.accounts-table-spinback{
	display:none;
	opacity: 0;
	width: calc(100vw - 20vw);
    height: 100vh;
    position: fixed;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.5);	
	transition: .1s linear;
}
.accounts-table-spinner{
	width: 7vw;
    height: 7vw;
    margin-left: calc(50% - 3.5vw);
    margin-top: calc(50vh - 3.5vw);
    border: .4vw solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: absolute;	
}
.account-delete-background{
	display:none;
	z-index: 1000;
    position: fixed;
    background: rgba(0, 0, 0, 0.65);
    width: 100vw;
    height: 100vh;
    top: 0vw;
    left: 0vw;	
}
.account-delete-body{
	position: relative;
    font-size: 1.6vw;
    font-family: "Nunito";
    width: 35vw;
    margin-left: 31vw;
    margin-top: 35vh;
    background: #fff;
    opacity: 1;
    border-radius: 1.5vw;
    padding: 1.5vw;
}
.account-delete-text{
	font-weight: bold;	
}
.account-delete-buttons{
	margin-top: 1.5vw;
	display:flex;	
}
.account-delete-cancel{
	font-size: 1.5vw;
    background: #bbb;
    padding: .25vw 2vw;
    border-radius: .75vw;
    margin-left: 14.8vw;	
	cursor:pointer;
	color:black;
}
.account-delete-cancel:hover{
	background: #999;	
}
.account-delete-apply{
	font-size: 1.5vw;
    background: #fd2b14;
    color: #fff;
    margin-left: 1vw;
    padding: .25vw 0vw;
    border-radius: .75vw;	
	cursor:pointer;
	width: 20vw;
	text-align:center;
}
.account-delete-apply:hover{
	background:#cb2412;	
}
.admin-accountdel-spinner{
	margin-top: .3vw;
    margin-left: .45vw;
    width: 1vw;
    height: 1vw;
    border: .25vw solid #fff;
    border-top-color: #f76859;
    border-radius: 50%;
    animation: spin 1s linear infinite;	
}
.accounts-image-preloader{
	margin: 3vw calc(50% - 2.25vw) 1vw calc(50% - 2.25vw);
	width: 4.5vw;
    height: 4.5vw;
}
.accounts-image-spinner{
	width: 4vw;
    height: 4vw;
}
.accounts-more-table{
	font-size: 1.4vw;
	width: calc(100% - 1vw);
	margin-left: 1vw;
}
.accounts-more-table td{
	width: calc(100% / 3);	
}
.accounts-more-table td div span{
	user-select: text;
	word-break: break-word;
	margin-left: 1vw;
}
.accounts-more-block b{
	color: #4090ff;	
	white-space: nowrap;
}
.accounts-more-table td div{
	display:flex;
	align-items: center;
}
.accounts-more-title{
	margin-left: 1vw;
    font-weight: bold;
    font-size: 1.4vw;
    margin-bottom: .4vw;
    color: #888;
}
.accounts-more-row{
	transition: .2s linear;	
}
.form-toMain{
	position: absolute;
    top: 8.5vw;
    left: 3vw;
    text-decoration: none;
    color: #036bfc;
    font-weight: bold;
    font-size: 1.7vw;	
	cursor:pointer;
	z-index:1000;
}
.form-toMain:hover{
	color: #035cd7;	
}
.brackets-error{
	font-family: "Nunito";
    color: red;
    margin-left: 4vw;
    width: 43vw;
    font-size: 1vw;
    display: none;	
}
.xss-error{
	font-family: "Nunito";
    color: red;
    margin-left: 4vw;
    width: 43vw;
    font-size: 1vw;
    display: none;	
}
.admin-tournaments-inputs{
	width: calc(100% - 45vw);	
}
.ymaps-2-1-79-inner-panes{
	border-radius: 1vw;	
}
.ymaps-2-1-79-islets_map-lang-ru{
	border-radius: 1vw;	
}
#map{
	width: 20vw;
    height: 19.5vw;
    margin-left: 1vw;
    margin-top: 3vw;
}
.admin-tournaments-coords{
	margin-left: 1vw;	
	width: calc(100% - 1vw);
	z-index:1;
	position:relative;
}
.admin-datetime-placeholder{
	top: 27.4vw;
}
.admin-coords-placeholder{
	top: 27.4vw;
	left: 36vw;
	z-index:1;
	cursor: default;
}
.admin-tournaments-datetime{
	width: 15vw;	
}
.admin-tournaments-submit{
	border: none;
    cursor: pointer;
    background: #036bfc;
    color: #fff;
    font-family: "Nunito";
    font-size: 1.2vw;
    height: 3.5vw;
    border-radius: .75vw;
    float: right;
    text-align: center;
    width: 20vw;
	margin-top: 1vw;
	transition: .1s linear;
	display:flex;
	justify-content:center;
	align-items:center;
	outline:none;
}
.admin-tournaments-submit:hover{
	background: #0359d1;
}
.admin-address-underpanel{
	background: #036bfc;
    width: 50vw;
    height: 0.2vw;
    position: absolute;
    margin-left: 4vw;
    margin-top: -1vw;
    border-bottom-left-radius: .75vw;
    border-bottom-right-radius: .75vw;
    color: #fff;
    font-family: "Nunito";
    font-size: .8vw;
    padding: 1.1vw .5vw;	
}
.admin-tournaments-unflex{
	margin-top:1vw;	
}
.admin-tournaments-address{
	z-index:1;
	position:relative;
}
.admin-coords-block{
	width: 100%;	
}
.admin-coords-underpanel{
	background: #036bfc;
    width: 34vw;
    height: 0.2vw;
    position: absolute;
    margin-left: 1vw;
    margin-top: -1vw;
    border-bottom-left-radius: .75vw;
    border-bottom-right-radius: .75vw;
    color: #fff;
    font-family: "Nunito";
    font-size: .8vw;
    padding: 1.1vw .5vw;	
}
.admin-tournaments-tags{
	width: calc(100% - 4vw);
	margin-left:4vw;
	margin-top:2vw;
	height:calc(3.5vw + 4px);
	padding-top: .25vw;
	display: flex;
	flex-wrap: wrap;
}
.admin-tournaments-tag{
	border: 2px solid;
	color: #5800ff;
	font-weight:bold;
	height: 1.375vw;
	font-family: "Nunito";
	padding: 0 .5vw;
	margin: .25vw .5vw 0vw 0vw;
	font-size: 0.8vw;
	border-radius: .4vw;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: .1s linear;
}
.admin-tournaments-tag:hover{
	background: #ece2ff;	
}
.admin-tourtag-active{
	background: #5800ff;
	color: #fff;
	border: 2px solid #5800ff;
	height: 1.375vw;
	font-family: "Nunito";
	padding: 0 .5vw;
	margin: .25vw .5vw 0vw 0vw;
	font-size: 0.8vw;
	border-radius: .4vw;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: .1s linear;
}	
.admin-tourtag-active:hover{
	background: #4800d1;	
}
.admin-tourtags-title{
	position: absolute;
    margin-top: -1.75vw;
    font-family: "Nunito";
    font-size: 1.3vw;
}
a{
	text-decoration: none;
	color: #fff;
}
.planned{
	position: relative;
	width:30vw;
	height:auto;
	font-family: "Nunito";
	font-size:1vw;
	margin-left: 27vw;
}
.planned-title{
	font-family: "Nunito";
	font-size:2vw;
	font-weight: bold;
	margin-bottom: 1.5vw;
}
.planned-post{
	font-family: "Nunito";
    font-size: 1vw;
    cursor: pointer;
    background-color: #007afc;
    color: #fff;
    padding: 1.5vw;
    border-radius: 1.5vw;
    margin-bottom: 1vw;
    transition: .1s linear;
    width: 30vw;
    margin-left: 4vw;
}
.map{transition: .1s linear; z-index: 2; top: 10vh; left: 15vw; width: 70vw; height: 80vh;}
.map-btn{
	position: relative;
    font-size: 1.1vw;
    background-color: #fff;
    color: #007afc;
    font-weight: bold;
    padding: .15vw 1.5vw .15vw 1.5vw;
    text-align: center;
    border-radius: .5vw;
    transition: .1s linear;
    border: none;
    font-family: "Nunito";
    width: 5vw;
	cursor:default;
	margin-top: .75vw;
}
.map-btn:hover{
	background: #eee;
}
.map-btn input:checked ~ .map{
	display: block;
	opacity: 1;
	position: absolute;
	width:40vw;
	height:20vw;
	z-index: 101;
	padding-bottom:3vw;
	border-radius: .5vw;
	outline: none;
}
.map-btn input{
	display: none;
}
.planned-post:hover{
	background-color: #026cde;
}

.past{
	position: relative;
	width:30vw;
	height:auto;
	font-family: "Nunito";
	font-size:1vw;
	margin-left: 6vw;
}
.past-title{
	font-family: "Nunito";
	font-size:2vw;
	font-weight: bold;
	margin-bottom: 1.5vw;
}
.past-post{
	font-family: "Nunito";
    font-size: 1vw;
    background-color: #3c6ef0;
    color: #fff;
    padding: 1.5vw;
    border-radius: 1.5vw;
    margin-bottom: 1vw;
    transition: .1s linear;
    width: 30vw;
    margin-left: 4vw;
}
/*.past-post:hover{
	background: #1e57eb;
}*/
.past-btn{
	color: #3c6ef0;
	cursor: pointer;
}
.map-btn-mobile{
	display: none;
}
.map-background{
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 1;
	opacity: 0.7;
	background: black;
	display:none;
	position:fixed;
}
.map-close{
	position: fixed;
    z-index: 3;
    color: #fff;
    right: 11.5vw;
    top: 11vh;
    font-size: 3vw;
	display:none;
	cursor:pointer
}
.map-close:hover{
	color: #ddd;	
}
.admin-tourn-edit{
	right: 45.5vw;
	font-size:1.1vw;
	cursor:pointer;
	color: #fff;
}
.admin-tourn-edit:hover{
	color: #ccc;	
}
.admin-tourn-delete{
	right: 44vw;
	font-size:1.1vw;
	color:#ef3300;
	cursor:pointer;
}
.admin-tourn-delete:hover{
	color:#cf0000;	
}
.admin-tourn-controls{
	background: #007afc;
    display: flex;
    position: absolute;
    left: 58vw;
    width: 2.5vw;
    justify-content: space-between;
    padding: .5vw;
    border-radius: .5vw;
}
.onlyDelCont{
	justify-content: center;
}
.past-tourn-controls{
	background: #3c6ef0;	
}
.tournaments-delete-background{
	display:none;
	z-index: 1000;
    position: fixed;
    background: rgba(0, 0, 0, 0.65);
    width: 100vw;
    height: 100vh;
    top: 0vw;
    left: 0vw;	
}
.tournaments-delete-body{
	position: relative;
    font-size: 1.6vw;
    font-family: "Nunito";
    width: 35vw;
    margin-left: 31vw;
    margin-top: 35vh;
    background: #fff;
    opacity: 1;
    border-radius: 1.5vw;
    padding: 1.5vw;
}
.tournaments-delete-text{
	font-weight: bold;	
}
.tournaments-delete-buttons{
	margin-top: 1.5vw;
	display:flex;	
}
.tournaments-delete-cancel{
	font-size: 1.5vw;
    background: #bbb;
    padding: .25vw 2vw;
    border-radius: .75vw;
    margin-left: 14.8vw;	
	cursor:pointer;
	color:black;
}
.tournaments-delete-cancel:hover{
	background: #999;	
}
.tournaments-delete-apply{
	font-size: 1.5vw;
    background: #fd2b14;
    color: #fff;
    margin-left: 1vw;
    padding: .25vw 0vw;
    border-radius: .75vw;	
	cursor:pointer;
	width: 20vw;
	text-align:center;
}
.tournaments-delete-apply:hover{
	background:#cb2412;	
}
.admin-tournamentsdel-spinner{
	margin-top: .3vw;
    margin-left: .45vw;
    width: 1vw;
    height: 1vw;
    border: .25vw solid #fff;
    border-top-color: #f76859;
    border-radius: 50%;
    animation: spin 1s linear infinite;	
}
.edit-background{
	top: 40vw;
	background: #fff;
    width: 100vw;
    height: 100vw;
    opacity: 0.3;
    position: absolute;
    z-index: 1;
	display: none;
}
.edit-cancel-button{
    font-family: "Nunito";
    background: #003e7b;
    color: #dedede;
    position: absolute;
    margin-left: 4vw;
    font-size: 1vw;
    padding: .25vw .5vw;
    border-radius: .5vw;
	display:none;
}
.edit-cancel-button div{
	font-size: 1.37vw;
    margin-left: .75vw;
    color: #ccc;
	cursor:pointer;
}
.edit-cancel-button div:hover{
	color: #fff;
}
.admin-tour-taglist{
	display: flex;
    margin-top: .75vw;
	flex-wrap: wrap;
}
.admin-tour-tag{
	margin-right: .5vw;
    font-weight: bold;
    color: #00f1ff;	
}
.result-btn{
	font-size: 1.1vw;
    color: #007afc;
    background: #fff;
    font-weight: bold;
    text-align: center;
    border-radius: .5vw;
    padding: .15vw .75vw;
    margin-top: .75vw;
    margin-left: .5vw;	
	cursor:default;
	transition:.1s linear;
}
.result-btn:hover{
	background: #eee;
}
.tournaments-table-spinback{
	display:none;
	width: calc(100vw - 20vw);
    height: 100vh;
    position: fixed;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);	
	transition: .1s linear;
	justify-content: center;
}
.tournaments-table-spinner{
	width: 7vw;
    height: 7vw;
    margin-top: calc(50vh - 3.5vw);
    border: .4vw solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: absolute;	
}
.tours-member-table{
	border-collapse: collapse;
	width: 100%;
}
.toursmem-table-block{
	font-family: "Nunito";
    background: #fff;
    margin-top: 10vh;
    height: calc(100% - 20vh - 6vw);
    border-radius: 2.5vw;
    padding: 2vw;
    width: 60vw;
}
.tours-member-row{
    border-top: .2vw solid #76acf7;
    padding: .5vw 0vw;
    font-size: 1.2vw;	
	height: 3vw;
}
.tours-member-title{
	border-top: none;
	border-bottom: .2vw solid black;
	text-align: center;
}
.tours-member-item{
	padding: 0 1vw;	
}
.toursmem-table-title{
	font-size: 1.5vw;
    font-weight: bold;
    padding-bottom: .5vw;
}
.toursmem-table-wrapper{
	max-height: calc(100% - 2.5vw);
	overflow-x: hidden;
    overflow-y: auto;
}
.toursmem-table-wrapper::-webkit-scrollbar{
	width: 5px;
    background: #fff;
    border-radius: .5vw;
}
.toursmem-table-wrapper::-webkit-scrollbar-thumb{
	width: 5px;
    background: #2a83ff;
    border-radius: .5vw;
}
.toursmem-table-wrapper::-webkit-scrollbar-track{
	margin-left: .5vw;
}
.tournaments-table-close{
	position: absolute;
    display: flex;
    right: 10vw;
    font-size: 2vw;
    width: 2.5vw;
    height: 2.5vw;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    transition: .1s linear;
    cursor: pointer;	
}
.tournaments-table-close:hover{
	background: #bbb;	
}
.tours-lazy-preloader{
	margin: 2vw calc(16.5vw - 2.25vw) 2.5vw calc(16.5vw - 2.25vw + 4vw);
	width: 4.5vw;
    height: 4.5vw;
}
.tours-lazy-spinner{
	display: block;
    width: 4vw;
    height: 4vw;
    border: .25vw solid #036bfc;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: absolute;
}
.admin-tourtags-warning{
	font-size: 1.1vw;
	display:none;
	color: red;
    font-family: "Nunito";
    margin-left: 4vw;
    font-weight: bold;	
}
.tournaments-list-empty{
	text-align: center;
    background: #007cff;
    border-radius: .75vw;
    color: #fff;
    padding: .75vw;
    margin: 1vw .5vw 0 .5vw;
}
.tournaments-empty-text{
	font-size: 1.3vw;
    font-weight: bold;
    margin-top: .5vw;
    width: 100%;
    margin-left: 0;
}
.tournaments-empty-icon{
	margin-top: .25vw;
    font-size: 2vw;
}
.transition-preloader{
	margin: calc(50vh - 5.5vw) 44.5vw;
    width: 11vw;
    height: 11vw;
}
.transition-spinner{
	display: block;
    width: 10vw;
    height: 10vw;
    border: .5vw solid #036bfc;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: absolute;
}
.clubtext_td,.town-text-row{
	display:none;	
	text-overflow: ellipsis;
}
#born_input{
	text-overflow: ellipsis;
}
.club-spinner{
	margin-top: 1vw;
    margin-left: calc(50% - 2vw);
    margin-bottom: 1vw;
    width: 4vw;
    height: 4vw;
    border: .45vw solid #fff;
    border-top-color: #999;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.elo-block{
    padding-left: 4vw;
    padding-top: 1vw;
    padding-bottom: 2vw;	
}
.elo-block-title{
	font-family: "Nunito";
    font-size: 1.75vw;
    font-weight: bold;
    color: #4291ff;	
}
.elo-block-subtitle{
	font-family: 'Nunito';
    font-size: 0.9vw;
    color: grey;
}
.elo-toursblock{
	width: 57vw;
	margin-top: 2vw;
    display: flex;
    flex-wrap: wrap;
}
.elo-tour {
    margin: 0vw 1vw 1vw 0vw !important;
}
.elo-planned-post{
	font-family: "Nunito";
    font-size: 0.8vw;
    cursor: pointer;
    background-color: #007afc;
    color: #fff;
    padding: 1.25vw;
    border-radius: 1.25vw;
    margin-bottom: 1vw;
    transition: .1s linear;
    width: 25vw;
    margin-left: 4vw;
}
.elo-planned-post:hover{
	background-color: #026cde;
}
.elo-past-post{
	font-family: "Nunito";
    font-size: 0.8vw;
	cursor: pointer;
    background-color: #3c6ef0;
    color: #fff;
    padding: 1.25vw;
    border-radius: 1.25vw;
    margin-bottom: 1vw;
    transition: .1s linear;
    width: 25vw;
    margin-left: 4vw;
}
.elo-past-post:hover{
	background: #1e57eb;
}
.elo-tour-taglist{
	display: flex;
    margin-top: .25vw;
	flex-wrap: wrap;
}
.elo-tour-tag{
	margin-right: .5vw;
    font-weight: bold;
    color: #00f1ff;	
}
.elo-lazy-preloader{
	margin: 1vw calc(28vw - 2.25vw) 1.5vw calc(28vw - 2.25vw);
}
.results-writer{
	background: #fff;
    position: fixed;
    left: 20vw;
    top: 0;
    width: 80vw;
    height: 100vh;	
	display:none;
}
.reswriter-cancel{
	width: 1.3vw;
    height: 1.3vw;
    padding: .6vw;
    font-size: 1.3vw;
	cursor:pointer;
	transition: .1s linear;
}
.reswriter-cancel:hover{
	background: #ddd;	
}
.reswriter-title{
	font-family: 'Nunito';
    font-weight: bold;
    text-align: center;
    font-size: 1.75vw;
    padding: 1.25vw 0 1.25vw 0;
    border-bottom: .3vw solid #1e8af9;
	color: #036bfc;
}
.reswriter-main{
	display:flex;	
    height: calc(100vh - 9vw);
}
.reswriter-main-block{
	width: 60vw;
    height: calc(100vh - 11.5vw - 1px);
    margin-top: calc(2.5vw + 1px);
	overflow-y: auto;
}
.reswriter-main-block::-webkit-scrollbar{
	width: 10px;
    border-radius: .5vw;
    border-left: 1px solid #eee;
}
.reswriter-main-block::-webkit-scrollbar-thumb{
	width: 5px;
    background: grey;
    border-radius: .5vw;
}
.reswriter-players{
	width: 20vw;
    height: calc(100vh - 9vw);
	background: #dedede;
}
.reswriter-players-title{
	font-family: 'Nunito';
    font-weight: bold;
    font-size: 1.7vw;
    text-align: center;
    color: #333;
    border-bottom: .3vw solid #999;
    padding: 1vw;
    background: #eee;
}
.reswriter-players-list{
	overflow-y: auto;
    height: calc(100vh - 5vw - 8.7vw);	
	overflow-x: hidden;
}
.reswriter-players-list::-webkit-scrollbar{
	width: 5px;
    background: #fff;
    border-radius: .5vw;
}
.reswriter-players-list::-webkit-scrollbar-thumb{
	width: 5px;
    background: #2a83ff;
    border-radius: .5vw;
}
.reswriter-plist-item {
    font-family: "Nunito";
    font-size: 1.25vw;
    font-weight: bold;
    color: #333;
    padding: 1vw;
    background: #c3dcff;
	cursor:pointer;
	transition: .1s linear;
	margin: .5vw;
	border-radius:1vw;
	width: calc(100% - 2vw - 1vw);
	pointer-events: none;
}
.reswriter-plist-item:hover{
	background: #a5c7f5;	
}
.reswriter-plist-item:has(> .reswriter-pldelete:hover) {
	background: #c3dcff;
}
.reswriter-plid {
    color: #036bfc;
    font-weight: bold;
	font-size: .9vw;
}
.reswriter-plname {
    padding-left: .25vw;
    display: inline-block;
    width: 8.8vw;
    font-size: 1.05vw;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
	vertical-align: sub;
}
.reswriter-pldelete{
	background: #64a5ff;
    color: #fff;
    font-size: 1.1vw;
    display: inline-block;
    height: 1.1vw;
    width: 1.1vw;
    text-align: center;
    padding: .2vw;
    border-radius: 100%;
    cursor: pointer;
	transition: .05s linear;
	float:right;
	pointer-events: all;
}
.reswriter-pldelete:hover{
	background: #418bf1;	
}
.reswriter-check {
    width: 1.25vw;
    height: 1.25vw;
    display: inline-block;
    border-radius: 80%;
    border: .2vw solid #3700ff;
    margin-bottom: -.45vw;
    margin-right: .35vw;
}
.reswriter-plid-text {
    color: #666;
    font-size: .9vw;
    padding-right: .15vw;
}
.reswriter-plist-spinner{
    width: 5.5vw;
    height: 5.5vw;
    margin-top: calc((100vh - 13.7vw) / 2 - 3.15vw);
    border: .4vw solid #036bfc;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: calc(50% - 3.15vw);
}
.reswriter-plist-addpl{
    font-family: 'Nunito';
    text-align: center;
    margin: .75vw 3.5vw;
    padding: 0.5vw;
    border-radius: 1vw;
    font-size: 1.05vw;
	cursor:pointer;
	transition: .1s linear;
}
.reswriter-plist-addpl:hover{
	background: #bcbcbc;
}
.reswriter-plist-addplicon{
    color: #036bfc;
    font-size: 1.3vw;
    display: inline-block;
    vertical-align: middle;
}
.reswriter-bottom-block{
	height: 4vw;
    background: #eee;
    padding: .75vw 3vw;
}
.reswriter-apply-btn{
    font-family: "Nunito";
    background: #036bfc;
    color: #fff;
    width: 7vw;
    padding: .5vw;
    border-radius: .75vw;
    font-size: .95vw;
    float: right;
    cursor: pointer;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
.reswriter-apply-btn:hover{
	background: #0159d3;
}
.addplayer-container{
	display: none;
    z-index: 1000;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    top: 0vw;
    left: 0vw;
}
.addplayer-block{
	width: 50vw;
    margin-left: 25vw;
    margin-top: calc(50vh - 9.25vw);
    height: 15vw;
    background: #eee;
    border-radius: 1.75vw;
	padding: 1.75vw;
}
.addplayer-title{
	color: #000;
    font-family: "Nunito";
    font-size: 1.35vw;
    font-weight: bold;
    margin-bottom: 1vw;	
}
.addplayer-eloadd, .addplayer-accadd{
	cursor: pointer;
    font-family: "Nunito";
    background: #ccc;
    border-radius: 1vw;
    padding: .75vw 1vw;
	margin-bottom: .75vw;
	transition: .1s linear;
}
.addplayer-eloadd:hover{
	background: #bbb;
}
.addplayer-accadd:hover{
	background: #bbb;
}
.addplayer-eloadd-main, .addplayer-accadd-main{
	color: #2680ff;
    font-weight: bold;
    font-size: 1.15vw;
}
.addplayer-eloadd-more, .addplayer-accadd-more{
	color: #555;
	font-size: 1vw;
}
.addplayer-cancel{
	font-family: "Nunito";
    background: #bfbfbf;
    font-size: 1.05vw;
    width: 7vw;
    text-align: center;
    padding: .3vw .25vw;
    border-radius: .75vw;
    float: right;
    margin-top: .5vw;
    cursor: pointer;
	transition: .05s linear
}
.addplayer-cancel:hover{
	background: #aaa;	
}
.reswriter-padd-spinner{
	width: 5.5vw;
    height: 5.5vw;
    margin-top: calc((50vh - 3.15vw));
    border: .4vw solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: calc(50vw - 3.15vw);	
}
.addplayer-table-table{
    padding: .5vw;
    width: 100%;
	border-collapse: collapse;
	font-size: .95vw;
}
.addplayer-table-title{
	font-size: 1.3vw;
    font-weight: bold;
    margin-bottom: 1.5vw;
}
.addplayer-table-block{
	background: #dedede;
    font-family: "Nunito";
    width: 60vw;
    height: 80vh;
    margin-left: calc(50vw - 30.875vw);
    margin-top: calc(10vh - 0.875vw);
    border-radius: 1.75vw;
    padding: 1.75vw;	
}
.addplayer-table-wrapper{
	height: calc(80vh - 6.65vw);
    overflow-y: auto;
	background: #fff;
    border-radius: .5vw;
	scroll-behavior: smooth;
}
.addplayer-table-wrapper::-webkit-scrollbar {
    background: #efefef;
    border-bottom-right-radius: .5vw;
    border-top-right-radius: .5vw;
    width: .5vw;
}
.addplayer-table-wrapper::-webkit-scrollbar-thumb {
    background-color: grey;
    border-radius: 1vw;
    margin: 1vw 0;
}
.addplayer-buttons{
	display: flex;
    justify-content: space-between;
    margin-top: 1vw;	
}	
.addplayer-elo-newbtn{
	background: #fff;
    border-radius: .75vw;
    padding: .5vw 1vw;
    font-size: 1vw;
    cursor: pointer;
    transition: .05s linear;
}
.addplayer-elo-newbtn:hover{
	background: #eee;	
}
.addplayer-elo-submit{
	font-size: 1vw;
    color: #fff;
    background: #68a7ff;
    padding: .5vw 1vw;
    border-radius: .75vw;
}
.addplayer-table-table tr {
    height: 2.75vw;
	cursor:pointer;
	transition: .05s linear;
}
.addplayer-table-upper{
	border-bottom: .2vw solid #68a7ff;
	cursor: default !important;
	background: #fff;
	transition: none;
}
.addplayer-table-upper:hover{
	background: #fff !important;
}
.addplayer-table-table tr:hover{
	background: #deecff;	
}
.addplayer-elo-back{
	font-size: 1vw;
    background: #fff;
    padding: .5vw 1.5vw;
    border-radius: .75vw;
    margin-right: .75vw;
    cursor: pointer;
    transition: .05s linear;
}
.addplayer-elo-back:hover{
	background: #eee;
}
.addplayer-elo-warning{
	display:none;
	color: red;
    font-size: .9vw;
	font-weight: bold;
    position: absolute;
    width: 60vw;
    text-align: center;
    margin-top: .5vw;
}
.addplayer-elo-submitloader{
	margin-left: .2vw;
    border-top-color: #68a7ff;
    height: .8vw;
    width: .8vw;
    display: inline-block;
    vertical-align: sub;
	border: .2vw solid #fff;
  	border-top-color: #68a7ff;
  	border-radius: 50%;
  	animation: spin 1s linear infinite;
}
.addplayer-addnewElo-block{
	background: #dedede;
    width: 60vw;
    height: 60vh;
    border-radius: 1.5vw;
    padding: 1.5vw;
    font-family: "Nunito";
    margin-left: 19.25vw;
    margin-top: calc(50vh - 30vh - 0.75vw);
}
.addnewElo-title{
	font-size: 1.3vw;
    font-weight: bold;
    margin-bottom: 1.5vw;
}
.addplayer-addnewElo-block form{
	background: #fff;
    border-radius: .75vw;
    width: 100%;
    height: calc(60vh - 7vw);
    margin-bottom: 1.5vw;
	text-align: center;
    justify-items: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.addplayer-addnewElo-block form input {
    border: none;
    border-bottom: 3px solid #036bfc;
    font-size: 1.2vw;
    outline: none;
    font-family: "Nunito";
    margin: .5vw;
    width: 10.5vw;
    padding-left: 0.5vw;
    margin-top: 1vw;
}
.addplayer-addnewElo-block form input::-webkit-outer-spin-button, .addplayer-addnewElo-block form input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.addnewElo-back{
	font-size: 1vw;
    background: #fff;
    padding: .5vw 1.5vw;
    border-radius: .75vw;
    margin-right: .75vw;
    cursor: pointer;
    transition: .05s linear;
}
.addnewElo-back:hover{
	background: #eee;
}
.addnewElo-submit{
	font-size: 1vw;
    color: #fff;
    background: #036bfc;
    padding: .5vw 1vw;
    border-radius: .75vw;
    cursor: pointer;
}
.addnewElo-submit:hover{
	background: #0052c3;
}
.reswriter-newElo-country{
	border-bottom: 3px solid #036bfc;
    display: inline-block;
    margin: .5vw;
    cursor: pointer;
    color: grey;
    padding: 0vw .5vw;
    width: 16vw;
    font-size: 1.2vw;
    padding-top: .5vw;
    text-align: left;
}
.reswriter-newElo-countryIcon{
	float: right;
    margin-top: 0.4vw;
    font-size: 1vw;
	color: grey;
}
.elo-country-options{
	display:none;
	position: absolute;
    background: #fff;
    padding: 0 .25vw .25vw .25vw;
    border-radius: .75vw;
	border-top-right-radius: .3vw;
    border-bottom-right-radius: .3vw;
    border: 1px solid #bbb;
    height: 30vh;
    overflow-y: auto;
    margin-top: 3.25vw;
	z-index: 1;
}
.elo-country-options label{
	display: block;
    text-align: left;
    margin-top: .3vw;
    padding: .25vw;
    border-radius: .5vw;
    cursor: pointer;
	transition: .05s linear;
}
.elo-country-options label:hover{
	color: #fff;
	background: #036bfc;
}
.elo-country-options::-webkit-scrollbar {
    width: .5vw;
    border-radius: .75vw;
	background: #dedede;
}
.elo-country-options::-webkit-scrollbar-thumb {
    background: #008ffc;
    border-radius: .75vw;
    margin: .5vw 0;
}
.newEloClub-greentext{
	position: absolute;
    font-family: "Nunito";
    color: green;
    font-size: .75vw;
    margin: -.3vw 0 0 .5vw;
}
.newElo-warning{
    position: absolute;
    width: 28vw;
    font-size: 1vw;
    font-weight: bold;
    bottom: calc(20vh + 4vw);
    color: red;
    display: none;
}
.newEloPlayer-info{
	position: absolute;
    display: flex;
    width: 40vw;
    text-align: left;
    margin: -5vw 0 0 -6vw;
    font-size: .9vw;
    top: calc(20vh + 10.5vw);
    color: #666;
}
.newEloPlayer-info-icon{
	font-size: 2vw;
    color: #036bfc;
    align-content: center;
    margin-right: 1.5vw;
}
.elo-block-titleUn{
	display:flex;
}
.full-eloEdit-btn{
	display: flex;
    font-family: 'Nunito';
    background: grey;
    color: #fff;
    margin: .5vw .5vw .5vw 3vw;
    align-items: anchor-center;
    font-size: .85vw;
    width: 11.9vw;
    padding: 0vw .5vw 0 .65vw;
    border-radius: .7vw;
    cursor: pointer;
    transition: .05s linear;
    line-height: 1vw;
}
.full-eloEdit-btn:hover{
	background: #666;	
}
.full-eloEdit-btn i{
	font-size: 1.15vw;
    margin-right: .5vw;
}
.elo-edit-block{
	background: #dedede;
    width: 60vw;
    height: 80vh;
    margin-left: calc(50vw - 30.875vw);
    margin-top: calc(10vh - 0.875vw);
    border-radius: 1.75vw;
    padding: 1.75vw;
	font-family: 'Nunito';
}
.fullEloEdit-submit{
	display: flex;
    align-items: center;
    font-size: 1vw;
    color: #fff;
    background: #036bfc;
    padding: .5vw 1vw;
    border-radius: .75vw;
    float: right;
    margin-top: 1vw;
    transition: .05s linear;
    cursor: pointer;
    width: 6vw;
    justify-content: center;
}
.fullEloEdit-submit:hover{
	background: #0052c3;
}
.fullEloEdit-title{
	font-size: 1.3vw;
    font-weight: bold;
    color: #555;
    margin-bottom: 1.5vw;
}
.fullEloEdit-close{
	font-size: 1.3vw;
    align-content: center;
    width: 2vw;
    height: 2vw;
    text-align: center;
    border-radius: 100%;
    cursor: pointer;
	transition: .05s linear;
}
.fullEloEdit-close:hover{
	background: #bbb;
}
.fullEloEdit-table tr {
    height: 2.75vw;
	cursor:default;
	transition: .05s linear;
}
.fullEloEdit-table td{
	cursor:text;
	border: .15vw solid #d7e8ff;
	max-width: 100%;
	min-width: min-content;
}
.fullEloEdit-table tr:hover{
	background: #fff;	
}
.fullEloEdit-table .addplayer-table-upper td{
	cursor: default;
	border:none;
}
.fullEloEdit-pos{
	color: grey;
	cursor:default !important;
}
.fullEloEdit-table td input{
	text-align: inherit;
    border: none;
    font-family: "Nunito";
    font-size: .95vw;
    width: calc(100% - 1.2vw);
    height: 2vw;
	outline: none;
}
.eloFullEdit-submitloader{
	margin-left: .35vw;
    height: .8vw;
    width: .8vw;
    display: inline-block;
    vertical-align: sub;
    border: .2vw solid #fff;
    border-top-color: #68a7ff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
.eloEdit-successIcon{
	margin-left: .35vw;
    font-size: 1.2vw;
}
.fullEloEdit-del{
	width: 2vw;
    text-align: center;
    color: red;
    cursor: pointer;
    font-size: 1.1vw;
    background: #d7e8ff;
	cursor:pointer !important;
	border-bottom: .15vw solid #bedaff !important;
}
.fullEloEdit-del:hover{
	color: #c70000;	
}
.eloSureBack{
	display:none;
	position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
	z-index: 1000;
}
.eloSureBlock{
	background: #fff;
    width: 32.5vw;
    margin-left: 32.5vw;
    height: 7.5vw;
    border-radius: 1.25vw;
    margin-top: calc(50vh - 5vw);
    padding: 1.25vw;
    font-family: "Nunito";
    font-weight: bold;
    font-size: 1.2vw;
}
.eloSure-cancel{
	background: #ccc;
    padding: .3vw 1vw;
    border-radius: .75vw;
    font-size: 1vw;
    font-weight: normal;
    cursor: pointer;
    margin-right: .5vw;
    margin-top: 4vw;
	transition: .05s linear;
}
.eloSure-cancel:hover{
	background: #bbb;	
}
.eloSure-submit{
	background: red;
    padding: .3vw 1vw;
    border-radius: .75vw;
    font-size: 1vw;
    font-weight: normal;
    cursor: pointer;
    color: #fff;
    margin-top: 4vw;
	transition: .05s linear;
	display: flex;
    justify-content: center;
    align-items: center;
}
.eloSure-submit:hover{
	background: #dd0101;	
}
.eloSure-spinner{
	width: .8vw;
    height: .8vw;
    border: .2vw solid #fff;
    border-top-color: #f76859;
	margin-left: .45vw;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
.fullEloEdit-refresh{
	font-size: 1.2vw;
    color: #036bfc;
    width: 2vw;
    height: 2vw;
    align-content: center;
    cursor: pointer;
    text-align: center;
}
.fullEloEdit-refresh:hover{
	color: #0056cd;
}
.fullEloEdit-new{
	background: #fff;
    font-size: 1vw;
    border-radius: .75vw;
    padding: .5vw 1vw;
    width: 10vw;
    text-align: center;
    margin-top: 1vw;
    cursor: pointer;	
}
.fullEloEdit-new:hover{
	background: #eee;
}
.reswriter-uppanel{
	display: flex;
    position: absolute;
    width: 60vw;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    align-items: center;	
}
.reswriter-addTour{
	font-size: .9vw;
    font-family: 'Nunito';
    align-content: center;
    background: #eee;
    padding: 0 .75vw;
    margin-right: .5vw;
    height: 2vw;
    border-radius: .75vw;
    cursor: pointer;
    transition: .05s linear;
	pointer-events: none;
}
.reswriter-addTour:hover{
	background: #ddd;
}
.reswriter-mainBlock-empty{
	display: flex;
    width: 35vw;
    justify-content: center;
    margin-left: 12.5vw;
    font-size: 1.5vw;
    font-family: 'Nunito';
    align-items: center;
    color: #666;
    font-weight: bold;
    margin-top: calc(45vh - 7.75vw);	
}
.rwtour-upper{
	display: flex;
    background: #00cd00;
    color: #fff;
    font-family: 'Nunito';
    height: 2.4vw;
    align-items: center;
    font-weight: bold;
    font-size: 1vw;	
}
.reswr-addgame{
	color: black;
    background: #fff;
    font-size: 0.85vw;
    padding: .15vw .5vw;
    border-radius: 0.5vw;
    cursor: pointer;
    font-weight: normal;
    transition: .05s linear;
    margin-left: calc(1.25vw - 10px);
}
.reswr-addgame:hover{
	background: #eee;	
}
.rwtour-upper-title{
	width: 30vw;
    margin-left: 13vw;
    text-align: center;
}
.rwtour-upper-title input{
	width: inherit;
    background: inherit;
    font: inherit;
    text-align: inherit;
    color: inherit;
    border: none;
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: .5vw;
}
.rwtour-delete{
	width: 1.5vw;
    color: #fff;
    background: red;
    height: 1.5vw;
    text-align: center;
    align-content: center;
    margin-left: .5vw;
    border-radius: .25vw;
    font-size: .95vw;
    cursor: pointer;
	transition: .05s linear;
}
.rwtour-delete:hover{
	background: #d90000;
}
.reswrGame-block{
	display: flex;
    font-family: 'Nunito';
    height: 2.5vw;
    align-content: center;
    flex-wrap: wrap;
    font-size: 1vw;
    border-bottom: .15vw solid #ddd;
	align-items: center;
	flex-wrap: nowrap;
}
.reswrGame-pointsBlock{
	display: flex;
    width: 7vw;
    justify-content: space-between;
    font-size: 1.15vw;
	margin-left: 4vw;
}
.reswrGame-points-input{
	width: 2.5vw;
    height: 1.5vw;
    font-size: 1.15vw;
    font-family: 'Nunito';
    text-align: center;
    border-radius: .25vw;
    border: none;
    background: #cce2ff;
    outline: none;
}
.reswrGame-points-input::-webkit-outer-spin-button,
.reswrGame-points-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.reswrGame-del{
	color: red;
    font-size: 1.25vw;
    align-content: center;
    margin-left: 1vw;
    width: 1.5vw;
    text-align: center;
	cursor:pointer;
	transition: .05s linear;
}
.reswrGame-del:hover{
	color: #cf0000;
}
.reswrWarn-block{
	display: flex;
    font-family: "Nunito";
    background: #ffd400;
    position: absolute;
    height: 1vw;
    border-radius: .75vw;
    padding: .75vw;
    align-items: anchor-center;
    font-weight: bold;
    color: #7f7440;
    font-size: .8vw;
    width: 25vw;
    line-height: .85vw;
}
.reswrWarn-icon{
	font-size: 1.3vw;
    margin-right: .5vw;
}
.rwtour-upper-color{
	background: #fff;
    color: #fc7803;
    font-size: .85vw;
    height: 1.45vw;
    width: 1.45vw;
    text-align: center;
    align-content: center;
    border-radius: .35vw;
    margin-left: 3.75vw;
    cursor: pointer;	
	transition: .05s linear;
}
.rwtour-upper-color:hover{
	background: #eee;	
}
.rwtour-upper-color input{
	opacity: 0;
    width: 1.45vw;
    height: 1.45vw;
    margin-top: -1.15vw;
    cursor: pointer;
}
.rwtour-upper-color i{
	margin-top: .3vw;	
}
/*------------------------------------------------------*/
.reswrGame-otB-block{
	display: flex;
    margin-left: calc(1vw - 10px);
}
.reswrGame-otB{
	background: #fff;
    border: .2vw solid #87b9ff;
    height: 1.75vw;
    width: 1.75vw;
    font-size: 1.25vw;
    text-align: center;
    align-content: center;
    margin-top: calc(.325vw - 6px);
    border-radius: .5vw;
    color: #4291ff;
    cursor: pointer;
	transition: .05s linear;
	display:flex;
}
.reswrGame-otB:hover{
	background: #efefef;
}
.reswrGame-otB-right{
	margin-left: .5vw;
}
.reswrGame-otB .fa-stopwatch{
	margin-left: .35vw;
	margin-top: .25vw;
}
.reswrGame-otB .fa-chalkboard{
	margin-left: .2vw;
	margin-top: .25vw;
}
.reswrGame-otB .fa-circle-plus{
	background: #fff;
	font-size: .9vw;
	margin-top: 1.1vw;
	margin-left: -.3vw;
	border-radius: 100%;
	height: .8vw;
	width: .8vw;
}
.reswrGame-otB-right .fa-circle-plus{
	margin-left: -.45vw;
}
.admin-news-pubtime{
	margin-left: 4vw;
    background: #ccc;
    border: none;
    padding: .75vw;
    border-radius: .75vw;
    margin-top: .5vw;
    font-family: "Nunito";
    font-weight: bold;
    font-size: 1.1vw;
    width: 14vw;
    outline: none;
    height: 3vw;
}
.news-pubtime-info{
	font-family: "Nunito";
    font-size: .8vw;
    color: #01ab01;
    border-top: .15vw solid #01ab01;
    margin-top: .5vw;
    margin-left: .5vw;
    padding: .4vw .2vw;
    width: 9vw;
    line-height: .75vw;	
}
.reswriter-Ranking{
	font-family: 'Nunito';
    border: .2vw solid #036bfc;
    padding: .05vw 1vw;
    margin-right: .5vw;
    border-radius: .75vw;
    font-size: .95vw;
    align-content: center;
    cursor: pointer;
    background: #fff;
    color: #036bfc;
    font-weight: bold;	
	transition: .05s linear;
	pointer-events:none;
}
.reswriter-Ranking:hover{
	filter: brightness(0.95);	
}
.reswriter-Ranking.fa-ranking-star{
	margin-right:.25vw;	
}
.reswriter-rank-block{
	width: 60vw;
    height: calc(100vh - 11.5vw - 1px);
    margin-top: calc(2.5vw + 1px);
    overflow-y: auto;
	overflow-x: hidden;
	display:none;
}
.reswriter-rank-title{
	font-family: 'Nunito';
    text-align: center;
    font-size: .7vw;
    margin-top: .5vw;
    font-weight: bold;
    color: black;
    padding-bottom: .5vw;
    border-bottom: 2px solid black;
    margin-left: 1.25vw;
    width: 57.5vw;
    display: flex;
    align-items: center;
    line-height: .7vw;
}
.reswriter-rank-title #place{margin-left: 1vw;}
.reswriter-rank-title #player{margin-left: .75vw;}
.reswriter-rank-title #score{margin-left: 12.3vw;}
.reswriter-rank-title #tScore{width: 3vw;font-size: .7vw;margin-left: 12.9vw;}
.reswriter-rank-title #buh{margin-left: 0;}
.reswriter-rank-title #berg{margin-left: .75vw;}
.reswriter-rank-title #kp{margin-left: 1.85vw;}
.reswriter-rank-title #zsh{margin-left: 1.6vw;}
.reswriter-rank-title #psh{margin-left: .4vw;}
.reswriter-rank-title #range{margin-left: .2vw;}
.reswriter-rank-title #win{margin-left: 1.3vw;}
.reswriter-rank-title #draw{margin-left: 1.7vw;}
.reswriter-rank-title #loss{margin-left: 1.7vw;}

.reswriter-rank-item{
	width: 55vw;
    padding: .5vw;
    display: flex;
    background: #005faf;
    margin-left: 2vw;
    font-size: 1vw;
    font-family: 'Nunito';
    height: 1.75vw;
    margin-top: .75vw;
    border-radius: .5vw;
    color: #fff;
    align-items: center;
}
.reswriter-rank-item #place{
	width: 1.75vw;
    height: 1.75vw;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    color: #036bfc;
    font-weight: bold;
    border-radius: .35vw;
	font-size: 1.15vw;
}
.reswriter-rank-item #player{
	margin-left: .75vw;
    font-size: 1.2vw;
    font-weight: bold;
    width: 14vw;
	white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.reswriter-rank-item input{
	height: 1.75vw;
    border: none;
    margin-left: .25vw;
    width: 2vw;
    border-radius: .35vw;
    outline: none;
    font-size: 1vw;
    font-family: 'Nunito';
    font-weight: bold;
    text-align: center;
	background: #cce2ff;
}
.reswriter-rank-item #score{margin-left: .15vw; color: #036bfc;}
.reswriter-rank-item #tScore{margin-left: 1.1vw; width: 2.75vw; color: #036bfc;}
.reswriter-rank-item #buh{width: 2.5vw; color: #555;}
.reswriter-rank-item #berg{width: 4vw; color: #555;}
.reswriter-rank-item #kp{width: 2.75vw; color: #ff8100;}
.reswriter-rank-item #zsh{width: 3.25vw; color: #00bd00;}
.reswriter-rank-item #psh{width: 3.25vw; color: #ff5200;}
.reswriter-rank-item #range{width: 3.4vw; color: #555;}
.reswriter-rank-item #win{color: #00bd00;}
.reswriter-rank-item #loss{color: #ff5200;}
.reswrRank-item-btns{
	width: 1.75vw;
    height: 1.75vw;
    color: #666;
    background: #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: .35vw;
    cursor: pointer;
    margin-left: 1.25vw;
    font-size: 1.2vw;	
	transition: .05s linear;
}
.reswrRank-item-disableBtn{
	color: #999;	
	cursor:default;
	background: #ddd;
}
.reswrRank-item-disableBtn:hover{
	background: #ddd !important;
}
.reswrRank-item-arrDown{
	margin-left:.25vw;
}
.reswrRank-item-del{
	color:#fff;
	margin-left:.5vw;
	background: #ff5722;
}
.reswrRank-item-btns:hover{
	background: #eee;	
}
.reswrRank-item-del:hover{
	background: #c9451b !important;	
}
.reswriter-rank-item input::-webkit-outer-spin-button, .reswriter-rank-item input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


.reswriter-rank-emptier{
	font-family: 'Nunito';
    font-size: 1.5vw;
    font-weight: bold;
    color: grey;
    height: 4vw;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: calc((100vh - 11.5vw - 1px) / 2 - 4vw);	
}
.reswriter-rank-emptier .fa-arrow-pointer{
	color: #5fa2ff;
    font-size: 3vw;
    margin-right: 1.25vw;	
}
.reswriter-rank-spinner{
	width: 5.5vw;
    height: 5.5vw;
    margin-top: calc((100vh - 15.7vw) / 2 - 3.15vw);
    border: .4vw solid #036bfc;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: calc(50% - 3.15vw);	
}
.news-images-empty{
	height: 7vw;	
}
@media(orientation:portrait){
	.id-notify-background{
		width:80vw;
		height:84vh;
		padding:20vh 10vw 0vh 10vw;
	}
	.id-notify{
		width:calc(100vw - 20vw - 5vw - 1.6vh);
		font-size: 2vh;
		font-family:"Nunito";
		padding:1.6vh;
		padding-right:5vw;
		border-radius:2vh;
		margin-bottom:4vh;
		text-align:left;
	}
	.id-notify-num{
		font-size:5vh; 
		padding: 0vw 4.5vw 0vw calc(4.5vw - 1.6vh);
	}
	.id-notify-close{
		font-size:2.5vh;
		padding:0.5vh;
		border-radius:1.5vh;
		width:16vh;
		margin-left:calc(100vw - 20vw - 17vh);
	}
	.header{
		height:8vh;
	}
	.icon{
		height:5vh;
		padding:1.5vh 0 1.5vh 0;
	}
	.icon-text{
		font-size:1.2vh;
		margin-left:.8vh;
		margin-top:2.3vh;
		white-space: nowrap;
	}
	.header-account{display:none;}
	.header-account-mobile{
		margin-top:0vh;
		right:calc(8vw + 5.5vh);
		height:5.75vh;
		padding:.75vh 1.25vh 1.75vh 1.25vh;
		border-radius:2vh;
		background:#fff;
		margin: 5vw;
	}
	.header-account-img{
		width: 5.75vh;
		height: 5.75vh;
	}
	.header-account-text{
		margin-left:1vh;	
		padding-right:1.5vw;
		font-family:"Nunito";
	}
	.header-account-name{
		margin-top:.6vh;
		font-size:2.4vh;
		white-space:nowrap;
		text-overflow:ellipsis;
		overflow:hidden;
	}
	.header-account-link{
		margin-top:-.3vw;
		font-size:1.4vh;
	}
	.account-link-icon{
		margin-top:.1vw;	
		margin-left:.2vw;
	}
	
	.header-open{
		position: absolute;
		right:8vw;
		font-size:4vh;
		display:block;
		color: #444;
		margin-top:1.2vh;
		transition: .1s linear;
	}
	.admin-header-open{
		position: absolute;
		left:4vw;
		font-size:4vh;
		display:block;
		color: #067bfc;
		margin-top:1.9vh;
		transition: .1s linear;
		width: 3.5vh;
	}
	.header-desktop-open{display:none;}
	.header-nav{display:none;}
		.header-nav-mobile{
		position: fixed;
		text-align: center;
		display: block;
		justify-content: unset;
		white-space: block;
		flex-wrap: wrap;
		flex-flow:column nowrap;
		background: #eee;
		top:0vw;
		left:100vw;
		height:100vh;
		margin-left:0vh;
		padding-left:0vh;
		padding-bottom: 4vh;
		padding-top:1vh;
		margin-bottom:2vh;
		width:70vw;
		overflow: hidden;
		z-index: 105;
		border-bottom: .1vh solid #bbb; 
		animation: unset;
	}
	@keyframes header-left{
		0%{
			left:100vw;	
		}
		100%{
			left: 30vw;	
		}
	}
	@keyframes header-right{
		0%{
			left:30vw;	
		}
		100%{
			left: 100vw;	
		}
	}
	@keyframes header-admin-left{
		0%{
			left:0vw;	
		}
		100%{
			left: -70vw;	
		}
	}
	@keyframes header-admin-right{
		0%{
			left:-70vw;	
		}
		100%{
			left: 0vw;	
		}
	}
	.header-nav::-webkit-scrollbar{
		display: none;
	}
	.header-nav-button{
		width:55vw;
		background: transparent;
		font-size:2.5vh;
		font-family: "Nunito";
		font-weight: normal;
		color:#fff;
		background: #007afc;
		padding:1vh;
		margin-top:2vh;
		border-radius: 1.5vh;
		border:none;
	}
	.header-nav-button:hover{
		color: #fff;
		border:none;
		background:#007afc;
	}
	.admin-nav-button{
		font-size:2.2vh;
		border-radius:2vh;
		padding:2.3vh 1.5vh 2.3vh 1.5vh;
		width:55vw;
	}
	.section{
		padding-top: 10vh;
		display: block;
	}
	.tournaments{
		position: relative;
		overflow:hidden;
		height:auto;
		max-height: 66vh;
		padding:1vh;
		width:calc(90vw - 2vh);
		margin:2vh 5vw 1vh 5vw;
		border-radius: 3vh;
		display: block;
		align-items: flex-start;
	}
	.tournaments-list{
		overflow: auto;
    	max-height: 59vh;
   	 	margin-bottom: 1.5vh;
	}
	.tournaments-list::-webkit-scrollbar{
		width: 0px;
	}
	.tournaments-list::-webkit-scrollbar-thumb{
		width: 0px;
	}
	.tournaments-title{
		font-size:2.5vh;
		font-weight: bold;
		text-align: center;
		margin:1vh 0 1.25vh 0;
	}
	.tournaments-post{
		font-size:1.7vh;
		padding:1.5vh;
		margin:1.5vh 1.5vh 0 1.5vh;
		border-radius:1.5vh;
		transition: .1s linear;
	}
	.newsline{
		background: #fff;
		width: calc(91vw - 1vh);
		padding: .5vh 0;
		margin-left: 5vw;
	}
	.newsline-post{
		font-size:.9em;
		padding:1.5vh;
		margin:1vh;
		border-radius:2vh;
	}
	.newsline-title{
		font-size:3.5vh;
		margin:1vh 0vh 1vh 1.5vh;
	}
	.sender{
		font-size:.8em;
		padding-bottom: 1vh;
	}
	.places{
		display: none;
	}
	.mobile-places-btn{
		display: block;
		width:83.5vw;
		margin:3vh 0 4vh 8.25vw;
		border:none;
		background: #b20300;
		height:7vh;
		color:#fff;
		border-radius: 2vh;
		font-family: "Nunito";
		font-size:3vh;
	}
	.login-un{
		position:unset;
		height:5vh;
		padding:2vh .5vh 0vh 5vw;
		width:calc(100vw - 5vw - .5vh);
	}
	.login-title{
		font-size:5vh;
		margin-top:20vh;
		padding-top:0vw;
	}
	.reg-title{
		margin-top:8vh;	
		padding-top:0vw;
	}
	.login-text{
		margin-top:.75vh;
		margin-left:3vw;
	}
	.login-table{
		margin-left:15vw;
		width:70vw;
	}
	.reg-table{
		margin-left:7.5vw;
		width:85vw;
	}
	.mobile-unflex{
		display:block;	
	}
	.input{
		font-size: 2.8vh;
		padding:.5vh 0vh .15vh 0vw;	
		border-bottom: .5vh solid #007afc;
		margin-top:1.5vh;
	}
	.hide_psw{
		font-size:2.9vh;
		margin-top:2.5vh;
		margin-left:71vw;
	}
	.submit{
		margin-top:5vh;
		font-size:3.5vh;
		padding:.2vh 4vh .2vh 4vh;
		border-radius:1.6vh;
	}
	.reg-submit{
		position:relative;
		font-size:3.05vh;	
		margin-top:4vh;
		margin-bottom:3vh;
	}
	.form-change{
		top:2vh;
		right:9vw;
		padding:.7vh;
		border-radius:1vh;
	}
	.form-change-block{
		font-size:1.45vh;
		padding:.5vh .25vh .5vh .25vh;
		border-radius:.5vh;
	}
	#toReg{
		margin-left:.5vh;
	}
	#toLogin{
		width:4.5vh;
	}
	.reg-table td{
		padding-left:.5vh;
		padding-right:.5vh;
	}
	.reg-table .input{
		font-size:2.05vh;	
	}
	.custom-select.open .options {
		margin-top:1vh;
		padding:1vw;
		border:.1vh solid black;
		width:38vw;
		border-radius:1vh;
	}
	.option{
		border-radius:.6vh;
		padding:0vw 1vh 0vw 1vh;
	}
	.custom-select2 .options2 {
		max-height:70vh;
	}
	.custom-select2.open .options2 {
		margin-top:-30vh;
		padding:1vw;
		border:.1vh solid black;
		width:80.2vw;
		border-radius:1vh;
	}
	.select-value2{
		width:76vw;
	}
	.custom-select3 .options3 {
		max-height:70vh;
	}
	.custom-select3.open .options3 {
		margin-top:-35.75vh;
		padding:1vw;
		border:.1vh solid black;
		width:80.2vw;
		border-radius:1vh;
	}
	.select-value3{
		width:36.5vw;
	}
	.select-icon{
		right:1vh; 
		margin-top:-2.1vh; 
		font-size:1.6vh;	
	}
	.custom-select4 .options4 {
		max-height:50vh;
	}
	.custom-select4.open .options4 {
		bottom:3vh;
		padding:1vw;
		border:.1vh solid black;
		width:38vw;
		border-radius:1vh;
	}
	.select-value4{
		width:36.5vw;
	}
	.club-text-helper{
		width:36.5vw;
	}
	.spinner {
		margin-top:.75vh;
		margin-left:.75vh;
  		width: 1.5vh;
  		height: 1.5vh;
  		border: .5vh solid #fff;
  		border-top-color: #3A8AFE;
  		border-radius: 50%;
  		animation: spin 1s linear infinite;
	}
	.login-spinner {
		margin-top:1.1vh;
		margin-left:1.1vh;
  		width: 2vh;
  		height: 2vh;
  		border: .4vh solid #fff;
  		border-top-color: #3A8AFE;
  		border-radius: 50%;
  		animation: spin 1s linear infinite;
	}
	.reg-spinner{
		margin-top:.75vh;
		margin-left:.75vh;
  		width: 1.75vh;
  		height: 1.75vh;
  		border: .5vh solid #fff;
  		border-top-color: #3A8AFE;
  		border-radius: 50%;
  		animation: spin 1s linear infinite;
	}
	.select-info{
		font-size:1.65vh;
	}
	.image-info{
		width:90vw;
		text-align:center;
		margin-top:4.5vh;
		margin-left:0vw;
		padding:0vw 5vw 0vw 5vw;
	}	
	.mobile-info{display:block;}
	.desktop-info{display:none;}
	.image-info-span{
		font-size:2vh;	
	}
	.checkbox.style-c {
		margin-top:2.4vh;
  		padding-left: 2vh;
	}
	.checkbox.style-c input {
		left:.2vh;
		top:1.5vh;
  		height: 1vh;
  		width: 1vh;
	}
	.checkbox.style-c .checkbox__checkmark {
  		top: .5vh;
  		left:0vh;
  		height: 2.2vh;
  		width: 2.2vh;
		border:.35vh solid #7000FE;
  		border-radius: .6vh;
	}
	.checkbox.style-c .checkbox__checkmark:after {
  		left: .7vh;
  		top: .2vh;
  		width: .55vh;
  		height: 1.2vh;
  		border-width: 0 .25vh .25vh 0;
	}
	.checkbox__body{
		margin-top: .8vh;
		margin-left:2.5vh;
		font-size:1.7vh;
	}
	.reg-img-container{
		position:relative;
		left: calc(50vw - 8.75vh - 6vw);
		margin-top:2.5vh;
		width:17.5vh;
		height:17.5vh;
	}
	.label{
		position:relative;
		font-size:1.65vh;
		border: .63vh solid #0067fc;
		width:20vh;
		height:3.13vh;
		padding:14.75vh 0vh 2.08vh 0vh;
		border-radius: 100vh;
	}
	.label:hover{
		box-shadow: .0vh 0vh 0vh #999;	
	}
	.img-icon-part1{
		top:0vh;
		margin-top:3.13vh; 
		font-size:10vh; 
		left: 4.17vh;	
	}
	.img-icon-part2{
		margin-top:10.78vh; 
		top:0vh;
		font-size:3.09vh; 
		left: 13.83vh;	
	}
	.forget-label{
		font-size:1.8vh;
	}
	.email-error{
		font-size:1.65vh;	
	}
	.email-confirm{
		width:calc(100vw + 11px);
		height:100vh;
	}
	.email-confirm-container{
		margin: 10vh 10vw 20vh 10vw;
		width:calc(80vw - 6vh);
		border-radius:3vh;
		padding:3vh;
	}
	.email-confirm-title{
		font-size:3.5vh;
	}
	.email-confirm-text{
		margin-top:2vh;
		font-size:2.5vh;
		word-break: break-word;
	}
	.email-confirm-input{
		font-size:6vh;
		width:27vh;
		border-radius:1.5vh;
		margin-top:4vh;
		padding:0vh 2vh 0vh 2vh;
	}
	.mail-submit{
		margin-top:3vh;
		font-size:7.5vw;
		width:calc(80vw - 9vh);
		padding:1vh 1.5vh 1vh 1.5vh;
		border-radius:3vw;
	}
	.email-confirm-more{display:none;}
	.mobileEmail-confirm-more{
		display:block;
		position:relative;
		right:0;
		margin-top:1.5vh;
		text-align:center;
		font-size:2.2vh;
	}
	.email-spinner{
		margin-top:1.75vw;
		margin-left:3.5vw;
  		width: 5.5vw;
  		height: 5.5vw;
  		border: 1vw solid #fff;
  		border-top-color: #3A8AFE;
  		border-radius: 50%;
  		animation: spin 1s linear infinite;
	}
	.forget-background{
		width:100vw;
	}
	.forget-container{
		margin: 10vh 10vw 10vh 10vw;
		width:calc(80vw - 6vh);
		border-radius:3vh;
		padding:3vh;
	}
	.forget-title{
		font-size:7vw;
		width:55vw;
	}
	.forget-close{
		width:8.2vw;
		height:8vw;
		padding:1.38vw .6vw 0vw .6vw;
		right:calc(10vw + 3vh);
		top:13vh;
		font-size:6.5vw;
	}
	.main-close{
		width:8.2vw;
		height:8vw;
		padding:.69vw .6vw .69vw .6vw;
		right:calc(10vw + 3vh);
		top:13vh;
		font-size:6.5vw;	
	}
	.forget-text{
		margin-top:2vh;
		font-size:2.5vh;
	}
	.forget-email-input{
		font-size:2.5vh;
		width:calc(80vw - 6vh);
		border-radius:1.5vh;
		margin-top:2vh;
		padding:1vh 2vh 1vh 2vh;
	}
	.forget-code-input{
		font-size:10vw;
		width:50vw;
		border-radius:1.5vh;
		margin-top:4vh;
		padding:0vh 2vh 0vh 2vh;
	}
	.forget-psw-input{
		font-size:2.5vh;
		width:calc(80vw - 10vh);
		border-radius:1.5vh;
		margin-top:2vh;
		padding:1vh 2vh 1vh 2vh;
	}
	.forget-email-error{
		font-size:1.75vh;
	}
	.forget-email-submit{
		margin-top:1.5vh;
		font-size:3vh;
		width:calc(80vw - 6vh);
		padding:1vh 0vh 1vh 0vh;
		border-radius:1.5vh;
	}
	.forget-spinner {
		margin-top:.65vh;
		margin-left:3vw;
  		width: 2vh;
  		height: 2vh;
  		border: .4vh solid #fff;
  		border-top-color: #3A8AFE;
  		border-radius: 50%;
  		animation: spin 1s linear infinite;
	}
	.user-window{
		width:calc(100vw - 20vw);
		height:calc(100vh - 17vh);
		padding:10vh 10vw 7vh 10vw;
	}
	.user-window-container{
		border-radius:3vh;
		width: calc(80vw - 6vh);
		height:calc(100vh - 9vh - 7vh - 14vh);
		padding:3.5vh 3vh 3.5vh 3vh;
	}
	.user-window-title{
		font-size:5.5vw;
		margin-bottom:2vh;
	}
	.user-window-close{
		width:8.2vw;
		height:8vw;
		padding:1.38vw .6vw 0vw .6vw;
		right:calc(10vw + 3vh);
		top:13vh;
		font-size:6.5vw;
	}
	.user-window-img{
		width:25vw;
		height:25vw;
		margin-left: calc(40vw - 12.5vw - 3vh);
	}
	.user-window-values{
		display:block;	
	}
	.user-values-text{
		margin-left:0vw;
		margin-top:2vh;
	}
	.user-value{
		font-size:2vh;
		font-family:"Nunito";
		width: calc(80vw - 6vh);
	}
	.user-value-name{
		margin-top:2.5vh;
		font-size:3vh;	
		padding-bottom:.75vh;
	}
	.user-edit{
		position:relative;
		top:0vw;
		color:#036bfc;
		background:transparent;
		padding:.4vh .8vh .4vh .8vh;
		border-radius:.7vw;
		font-size:1.3vw;
		margin-left:0vh;
	}
	.user-edit:hover{
		background:transparent;	
	}
	.user-edit-icon{
		margin-left:0vw;
		font-size:2.5vh;
	}
	.user-change-btn{
		margin-left:0vw;
		margin-top:1.5vh;
		font-size:2.25vh;
		padding:.5vh 1.5vh .5vh 1.5vh;
		border-radius:1.1vh;
	}
	.logout-btn{
		margin-left:0vw;
		margin-top:1.5vh;
		font-size:2.25vh;
		width:15vh;
		padding:.5vh 1.5vh .5vh 1.5vh;
		border-radius:1.1vh;
	}
	.change-btn-icon{
		margin-left:.25vh;
		font-size:1.8vh;
	}
	.logout-btn-icon{
		margin-left:.25vh;
		font-size:1.9vh;
	}
	.edit-cancel-btn{
		margin-left:calc(80vw - 17.25vh);
		bottom:16vh;
		font-size:2.25vh;
		padding:.5vh 2vh .5vh 2vh;
		border-radius:1vh;
		width:unset;
	}
	.edit-apply-btn{
		right:calc(10vw + 15.25vh);
		bottom:16vh;
		font-size:2.25vh;
		padding:.5vh 2vh .5vh 2vh;
		border-radius:1vh;
	}
	.mobile-display-none{
		display:none;	
	}
	.mobile-display-block{
		display:block;	
	}
	.edit-spinner{
		margin-top:.45vh;
		margin-left:2vw;
  		width: 1.5vh;
  		height: 1.5vh;
  		border: .4vh solid #fff;
  		border-top-color: #3A8AFE;
  		border-radius: 50%;
  		animation: spin 1s linear infinite;
	}
	.user-label{
		position:relative;
		font-size:2.8875vw;
		border: none;
		width:35vw;
		height:5.4775vw;
		padding:25.8125vw 0vw 3.64vw 0vw;
		border-radius: 100vh;
	}
	.edit-img-container{
		position:relative;
		left: 0vw;
		margin-top:2.5vh;
		width:35vw;
		height:35vw;
		margin-left: calc(40vw - 17.5vw - 3vh);
	}
	.main-img-part1{
		top:0vh;
		margin-top:5.4775vw; 
		font-size:17.5vw; 
		left: 7.2975vw;	
	}
	.main-img-part2{
		margin-top:18.865vw; 
		top:0vh;
		font-size:5.4075vw; 
		left: 24.2025vw;	
	}
	.img-icon-text{
		position:absolute;
		top:25.2vw;
		left:7vw;
		font-size:2.8vw;
	}
	.user-window-table{
		margin-left:0vw;
		width:0vw;
	}
	.user-window-table td{
		padding-left:0vw;
	}
	.user-window-table .usereditinp{
		width: calc(40vw - 3.6vh);
	}
	.user-window-table .usereditinp_long{
		width: calc(80vw - 6.6vh);
	}
	.custom-select.open .usereditoptions{
		width: calc(40vw - 3.6vh - 2vw);	
	}
	.custom-select4.open .usereditoptions{
		width: calc(40vw - 3.6vh - 2vw);	
	}
	.custom-select2.open .usereditoptions_long{
		width: calc(80vw - 6.6vh - 2vw);
		margin-top: -18vh;
		max-height:60vh;
	}
	.custom-select3.open .usereditoptions_long{
		width: calc(80vw - 6.6vh - 2vw);
		margin-top: -24vh;
		max-height:60vh;
	}
	.usereditinp_long .select-value2{
		width: calc(80vw - 6.6vh - 2.1vh);
	}
	.usereditinp .select-value3, .select-value4, .club-text-helper{
		width: calc(40vw - 3.6vh - 2.1vh);	
	}
	.admin-news-item{
		font-size: 3.5vw;
        padding: 6.48vw 6.48vw 3vh 6.48vw;
        margin: 2.16vw;
        border-radius: 6.48vw;
        width: calc(90vw - 17.28vw);
	}
	.main-news-item{
		width: calc(90vw - 17.28vw);
	}
	.admin-news-date{
		font-size:2.8vw;
		margin-bottom:1vh;	
	}
	.newsImgBlockMain{
		margin-top: -.1vh;
    	background: #0475e9;
    	padding: 0vw 4.32vw 4.32vw 4.32vw;
		margin-left:2.16vw;
    	border-bottom-left-radius: 6.48vw;
    	border-bottom-right-radius: 6.48vw;
    	width: calc(90vw - 12.96vw);
		margin-bottom: 2vh;
	}
	.newsImgBlock{
		margin-top: -.1vh;
    	background: #0475e9;
    	padding: 0vw 4.32vw 4.32vw 4.32vw;
		margin-left:2.16vw;
    	border-bottom-left-radius: 6.48vw;
    	border-bottom-right-radius: 6.48vw;
    	width: calc(90vw - 12.96vw);
		margin-bottom: 2vh;
	}
	.news-images{
		height: 9vh;
    	border-radius: 2.16vw;	
		margin: .4vw;
	}
	.news-images:hover{
		filter: unset;	
	}
	.news-images-placeholder{
		height: 9vh;
    	border-radius: 2.16vw;	
		margin: .4vw;
	}
	.news-images-placeholder:hover{
		filter: unset;	
	}
	.blurPreview{
    	border-radius: 1vh;
	}
	.news-image-spinner{
    	display:none;
		width: 5vw;
    	height: 5vw;
   		border: .3vw solid #fff;
    	border-top-color: transparent;
    	border-radius: 50%;
    	animation: spin 1s linear infinite;
    	position: absolute;	
	}
	.news-lazyload-spinner{
		display: block;
    	width: 6vh;
    	height: 6vh;
    	border: .4vh solid #036bfc;
    	border-top-color: transparent;
    	border-radius: 50%;
    	animation: spin 1s linear infinite;
    	position: absolute;
	}
	.news-lazyload-preloader{
		margin: 4vh calc(50% - 3.4vh) 2vh calc(50% - 3.4vh);
    	width: 6.8vh;
    	height: 6.8vh;
	}	
	.news-fullImage-close{
    	font-size: 4.5vh;
	}
	.admin-section{
		margin-left:5vw;
		width: 90vw;
	}
	.admin-nav{
		display:none;	
	}
	.admin-news-title{
		padding-top:11.5vh;
		padding-left:2.16vw;
		padding-bottom:4vh;
		font-size:3.2vh;
	}
	.admin-tour-title{
		padding-bottom:2vh;	
	}
	.admin-pubnews-title{
		padding-top:4vh;
		padding-left:4vw;
		padding-bottom: 2vh;
		font-size:2.7vh;
	}
	.admin-news-input{
    	margin-left: 2.16vw;
    	width: calc(100% - 4.32vw);
    	font-size: 3.75vw;
    	border-radius: 3vw;
    	padding: 3vw;
    	height: 17.2vw;
		margin-top:0vw;
	}
	.admin-news-placeholder{
    	font-size: 3.75vw;
    	margin-top: -14.2vw;
    	margin-left: calc(2.16vw + 3vw);
	}	
	.admin-news-inputDISABLE{
    	margin-left: 2.16vw;
    	width: calc(100% - 4.32vw);
    	font-size: 3.75vw;
    	border-radius: 3vw;
    	padding: 3vw;
    	height: 17.2vw;
		margin-top:0vw;
	}
	.admin-news-placeholderDISABLE{
    	font-size: 3.75vw;
    	margin-top: -14.2vw;
    	margin-left: calc(2.16vw + 3vw);
	}	
	.admin-news-submit{
		font-size: 1.9vh;
    	margin-left: 2.16vw;
    	margin-top: 1.5vh;
    	width: 12vh;
    	border-radius: 1.5vh;
    	padding: .5vh;
	}
	.admin-news-submitDISABLE{
		font-size: 1.9vh;
    	margin-left: 2.16vw;
    	margin-top: 1.5vh;
    	width: 12vh;
    	border-radius: 1.5vh;
    	padding: .5vh;
	}
	.news-img-label{
		font-size: 1.9vh;
    	margin-left: 1vh;
    	margin-top: 1.5vh;
    	width: 17vh;
    	border-radius: 1.5vh;
    	padding: .5vh 1.5vh;
	}
	.news-img-labelDISABLE{
		font-size: 1.9vh;
    	margin-left: 1vh;
    	margin-top: 1.5vh;
    	width: 17vh;
    	border-radius: 1.5vh;
    	padding: .5vh 1.5vh;
	}
	.news-img-icon{
		margin-top: .3vh;	
	}
	.news-textarea-imgBlock{
    	margin-left: 2.16vw;
		margin-top: -.1vw;
    	padding: 0vw 1.5vw 1.5vw 1.5vw;
    	border-bottom-left-radius: 4.1vw;
    	border-bottom-right-radius: 4.1vw;
    	width: calc(100% - 4.32vw - 3vw);
	}
	.news-textarea-imgBlockDISABLE{
		margin-left: 2.16vw;
		margin-top: -.1vw;
    	padding: 0vw 1.5vw 1.5vw 1.5vw;
    	border-bottom-left-radius: 4.1vw;
    	border-bottom-right-radius: 4.1vw;
    	width: calc(100% - 4.32vw - 3vw);
	}
	.news-textarea-images{
    	width: 13.2vw;
    	height: 13.2vw;
    	border-radius: 2vw;	
		margin: .3vw;
		margin-top: 1vw;
	}
	.news-textarea-imagesDISABLE{
		width: 13.2vw;
    	height: 13.2vw;
    	border-radius: 2vw;	
		margin: .3vw;
		margin-top: 1vw;
	}
	.news-textarea-imagedeleter{
		width: 2.8vw;
    	height: 3.35vw;
    	margin-left: -2.9vw;
    	margin-top: -.9vw;
    	font-size: 3.2vw;
   		padding: .35vw 0vw 0vw .9vw;
	}
	.news-textarea-imagedeleterDISABLE{
		width: 2.8vw;
    	height: 3.35vw;
    	margin-left: -2.9vw;
    	margin-top: -.9vw;
    	font-size: 3.2vw;
   		padding: .35vw 0vw 0vw .9vw;
	}
	.admin-news-spinner{
		margin-top: .3vh;
    	margin-left: 0vh;
    	width: 1.5vh;
    	height: 1.5vh;
    	border-width: .3vh;
	}
	#admin-news-success{
		font-size: 2vh;
    	margin-top: .35vh;
    	margin-left: .6vh;	
	}
	.admin-news-help{
		display:none;
    	border-radius: 2vh;
    	padding: 2vh;
    	margin: 3vh 2.16vw 0 2.16vw;
    	font-size: 1.6vh;
    	width: calc(100% - 4.32vw - 4vh);	
	}
	.news-help-copytext, .news-help-extext{
		margin: 1vh .5vh 1vh 0;
    	font-size: 1.2vh;
    	padding: .5vh 1vh;
    	border-radius: 0.5vh;
	}
	.news-help-copyicon{
    	height: 1.6vh;
    	width: 1.6vh;
    	font-size: 1.4vh;
    	padding: .5vh .4vh .4vh .5vh;
    	margin-top: 1vh;
    	border-radius: .5vh;
	}
	.mobile-unflex-inlBlock{
		/*display:inline-block;*/
		flex-wrap:wrap;
	}
	.mobile-flex-inlBlock{
		display:flex;	
	}
	.news-help-exarrow{
		margin-top: 1.1vh;
    	font-size: 1.9vh;
		margin-right: .5vh;
	}
	.news-help-exlink{
		margin-top: .6vh;
    	font-size: 1.6vh;
    	height: 2vh;
    	padding: .35vh .5vh .5vh .5vh;
    	border-radius: .75vh;
    	margin-left: .5vw;	
	}
	.open-mobile-newshelp{
		display:block;
		background: #ffca00;
    	color: #333;
    	font-family: "Nunito";
    	font-size: 1.9vh;
    	margin-left: 2.16vw;
    	margin-top: 1.5vh;
    	border-radius: 1.5vh;
    	padding: .5vh 1.5vh;	
	}	
	.news-underInput-displayBlock{
		flex-wrap: wrap;
	}
	.news-underInput-displayBlockDISABLE{
		flex-wrap: wrap;
	}
	.home-btn{
		display:none;
	}
	.admin-header{
		display:block;	
	}
	.header-home-btn{
		display:block;
    	right: 8vw;
    	top: 2.5vh;
    	font-size: 3.25vh;	
	}
	.header-admin-mobile{
		display:block;
		position: fixed;
		left:-70vw;
    	background: #0167ff;
    	width: 70vw;
    	height: calc(100vh + 9.5vh);
    	z-index: 1001;	
	}
	.admin-nav-title{
		padding: 4vw 12vw;
		border-bottom: 1.2vw solid #1e8af9;
	}
	.admin-title-icon{
		font-size:12vw;
	}
	.admin-title-text{
		font-size: 5vw;
   		margin-left: 5vw;	
	}
	.admin-nav-table{
		font-size:5vw;
	}
	.admin-nav-icon{
		padding: 4vw 0vw;
	}
	.admin-news-edit{
		font-size:4vw;
		right:18vw;
	}
	.admin-news-delete{
		font-size:4vw;
		right:13vw;
	}
	
	.news-delete-body{
    	font-size: 2.2vh;
        width: 85vw;
        margin-left: calc(7.5vw - 2vh);
        margin-top: 35vh;
        border-radius: 2vh;
        padding: 2vh;
	}
	.news-delete-buttons{
		margin-top: 2.5vh;	
		justify-content: flex-end;
	}
	.news-delete-cancel{
		font-size: 2vh;
        padding: .5vh 3vh;
        border-radius: 1.5vh;
        margin-left: 0vw;
	}
	.news-delete-apply{
		font-size: 2vh;
        margin-left: 1vw;
        padding: .5vh 1vh;
        border-radius: 1.5vh;
		width: 13vh;
	}
	.admin-newsdel-spinner{
		margin-top: .5vh;
        margin-left: .5vh;
        width: 1.5vh;
        height: 1.5vh;
        border: .25vh solid #fff;
        border-top-color: transparent;
	}
	.news-edit-cancel{
    	font-size: 1.9vh;
    	padding: .5vh 1.5vh;
    	border-radius: 1.5vh;
    	width: 9vh;
    	margin-left: 0vw;
		margin-bottom:1vh;
    	order: 3;
	}
	.show-full-text{
		display: inline-block;
		padding: .4vw 2vw;
    	border-radius: 1.5vw;	
		width: 35vw;
    	margin-top: .5vh;
	}
	.show-full-text:hover{
		color: #ccc;	
	}
	.account-delete-body{
    	font-size: 2.2vh;
        width: 85vw;
        margin-left: calc(7.5vw - 2vh);
        margin-top: 35vh;
        border-radius: 2vh;
        padding: 2vh;
	}
	.account-delete-buttons{
		margin-top: 2.5vh;	
		justify-content: flex-end;
	}
	.account-delete-cancel{
		font-size: 2vh;
        padding: .5vh 3vh;
        border-radius: 1.5vh;
        margin-left: 0vw;
	}
	.account-delete-apply{
		font-size: 2vh;
        margin-left: 1vw;
        padding: .5vh 1vh;
        border-radius: 1.5vh;
		width: 13vh;
	}
	.admin-accountdel-spinner{
		margin-top: .5vh;
        margin-left: .5vh;
        width: 1.5vh;
        height: 1.5vh;
        border: .25vh solid #fff;
        border-top-color: transparent;
	}
	.admin-accounts-table{
		font-size:4.2vw;	
		width: calc(100% - 8vw);
	}
	.accounts-table-row td{
		padding: 2.75vw 1vw 2.75vw 1vw;	
		max-width: unset;
	}
	.accounts-table-country{
		display:none;
	}
	.accounts-table-title{
		border-bottom: .5vw solid black;
		cursor:default;
	}
	.accounts-table-row{
		border-top: .5vw solid #76acf7;
	}
	#country{display:none;}
	td:has(.accounts-table-country){
		display:none;	
	}
	.accounts-table-edit:hover{
		color: #036bfc;
		background: transparent;
	}
	.accounts-table-delete:hover{
		color: #cb2412;
		background: transparent;
	}
	.accounts-table-row:hover{
		background: #fff;	
	}
	.accounts-table-spinback{
		left:0;
		width: 100vw;
	}
	.accounts-table-spinner{
		width: 14vw;
   		height: 14vw;
    	margin-left: calc(50% - 7vw);
    	margin-top: calc(50vh - 7vw);
    	border-width: .8vw;
	}
	#id{min-width: 13vw; max-width: 13vw;}
	#last{min-width: 17.75vw; max-width: 17.75vw;}
	#first{display: none;}
	#born{min-width: unset;}
	#sex{min-width: 10vw;}
	.accounts-table-row td:nth-child(3){
		display:none;	
	}
	.accounts-table-row td:nth-child(2){
		min-width: 17.75vw; 
		max-width: 17.75vw;	
	}
	.accounts-table-row td:nth-child(1){
		min-width: 13vw; 
		max-width: 13vw;	
	}
	.form-toMain{
		position: absolute;
    	top: 9.5vh;
    	left: 5.5vw;
    	text-decoration: none;
    	color: #036bfc;
    	font-weight: bold;
    	font-size: 2.5vh;	
		cursor:pointer;
		z-index:1000;
	}
	.accounts-more-title{
    	font-size: 2vh;
	}
	.accounts-more-table{
		font-size: 2vh;
	}
	.brackets-error{
		margin-left: 2.16vw;
    	width: calc(100% - 4.32vw);
    	font-size: 1.5vh;	
	}
	.xss-error{
		margin-left: 2.16vw;
    	width: calc(100% - 4.32vw);
    	font-size: 1.5vh;	
	}
	.planned{
		width:80vw;
		font-size:1.5vh;
		margin-left: 10vw;
	}
	.planned-title{
		font-size:3vh;
		margin-bottom: 2vh;
	}
	.planned-post{
		cursor: pointer;
        background-color: #007afc;
        color: #fff;
        padding: 1.7vh;
        border-radius: 2vh;
        margin-bottom: 1.5vh;
        font-size: 1.5vh;
        width: calc(90vw - 4.32vw - 3.4vh - 6vh - 2.16vw);
        margin-left: 2.16vw;
	}
	.planned-post:hover{
		background-color: #007afc;
	}
	.map-btn-mobile{
		display: block;
		position: relative;
		font-size: 1.8vh;
		background-color: #fff;
		color:#007afc;
		font-weight: bold;
		padding:.5vh 1.5vh .5vh 1.5vh;
		width:20vw;
		text-align: center;
		border-radius: 1vh;
		transition: .1s linear;
		border: none;
		font-family: "Nunito";
	}
	.mobile-add-menu{
		display: block;
		text-align: center;
		display: flex;
		justify-content: space-between;
		padding: 0vw 10vw 5vh 10vw;
	}
	.menu-btn{
		border:none;
		font-family: "Nunito";
		font-size:2vh;
		background-color: #fff;
		color:#007afc;
		font-weight: bold;
		cursor: pointer;
	}
	.filter-check{
		display: none;
	}
	.filter-btn-text{
		padding: .5vh;
		border-radius: .8vh;
		transition: .1s linear;
		width:2.7vh;
		height:auto;
	}
	.menu-btn-text{
		width: auto;
	}
	.menu-default{
		background-color: #007afc;
		color:#fff;
	}
	.filter-btn input:checked ~ .filter-btn-text{
		background-color: #007afc;
		color:#fff;
	}
	.past{
		display: none;
		width:80vw;
		height:auto;
		font-size:1.5vh;
		margin-left: 10vw;
	}
	.past-title{
		font-size:3vh;
		margin-bottom: 2vh;
	}
	.past-post{
		background: #3c6ef0;
        color: #fff;
        padding: 1.7vh;
        border-radius: 2vh;
        margin-bottom: 1.5vh;
        font-size: 1.5vh;
        width: calc(90vw - 4.32vw - 3.4vh - 6vh - 2.16vw);
        margin-left: 2.16vw;
	}
	/*.past-post:hover{
		background: #3c6ef0;
	}*/
	.past-btn{
		width:20vh;
		color: #3c6ef0;
	}
	.admin-tournaments-article {
    	width: 90vw;
	}
	.admin-tournaments-inputs {
    	width: calc(100vw - 10vw);
	}
	.admin-tournaments-input{
   		margin-left: 2.16vw;
    	width: calc(100% - 4.32vw);
    	font-size: 1.65vh !important;
    	border-radius: 1vh;
    	padding: 1vh;
    	height: 4vh;
		margin-top:1.5vh !important;
	}
	.ymaps-2-1-79-inner-panes{
		border-radius: 1vh;	
	}
	.ymaps-2-1-79-islets_map-lang-ru{
		border-radius: 1vh;	
	}
	#map{
		width: calc(90vw - 4.32vw);
    	height: calc(90vw - 4.32vw);
    	margin-left: 2.16vw;
    	margin-top: 3.5vh;
		margin-bottom: 2vh;
	}
	.admin-tournaments-placeholder{
		top: unset;
    	font-size: 1.65vh;
    	margin-top: -3.1vh;
    	margin-left: calc(2.16vw + 1vh);
	}
	.admin-coords-placeholder{
        margin-left: calc(2.16vw - 31vw + 1vh);
	}
	.edit-cancel-button{
    	margin-left: 2.16vw;
    	font-size: 1.5vh;
    	padding: .4vh 1vh;
    	border-radius: .75vh;
	}
	.edit-cancel-button div{
  		font-size: 2.11vh;
    	margin-left: .75vh;
    	color: #fff;
	}
	.admin-address-underpanel{
    	width: calc(100vw - 10vw - 2vw - 4.322vw);
    	height: 1vh;
    	margin-left: 2.16vw;
    	margin-top: -.7vh;
    	border-bottom-left-radius: 1vh;
    	border-bottom-right-radius: 1vh;
    	font-size: 1vh;
    	padding: .8vh 1vw .5vh;
	}
	.admin-coords-underpanel{
		width: calc(100vw - 10vw - 2vw - 4.322vw);
    	height: 1vh;
    	margin-left: 2.16vw;
    	margin-top: -.7vh;
    	border-bottom-left-radius: 1vh;
    	border-bottom-right-radius: 1vh;
    	font-size: 1vh;
    	padding: .8vh 1vw .5vh;
	}
	.admin-tournaments-tags {
    	width: calc(100vw - 10vw - 4.32vw);
        margin-left: 2.16vw;
        margin-top: 3.75vh;
        height: calc(1vh + .4vh + 3.3vh + 8px);
	}
	.admin-tourtags-title {
    	margin-top: -1.95vh;
    	font-size: 1.5vh;
	}
	.admin-tournaments-tag {
    	height: 1.65vh;
    	padding: .1vh .5vh;
    	margin: .25vh .5vh 0vw 0vw;
    	font-size: 1.2vh;
    	border-radius: .6vh;
		border: .3vh solid;
	}
	.admin-tournaments-submit {
    	font-size: 2vh;
        height: 5vh;
        border-radius: 1.25vh;
        float: unset;
        width: 35vw;
        margin-top: 2.2vh;
        margin-left: calc((100vw - 75vw) / 2 - 5vw);
        width: calc(75vw);
	}
	.admin-tournaments-submit:hover{
		background: #036bfc;	
	}
	.admin-tourtag-active {
    	border: .3vh solid #5800ff;
    	height: 1.65vh;
    	padding: .1vh .5vh;
    	margin: .25vh .5vh 0vw 0vw;
    	font-size: 1.2vh;
    	border-radius: .6vh;
	}
	.admin-tourtag-active:hover{
		background: #5800ff;
	}
	.admin-tournaments-tag:hover{
		background: #fff;	
	}
	.map-btn{
    	font-size: 1.6vh;
        padding: .15vw 1vh .15vw 1vh;
        border-radius: .75vh;
        width: 8vh;
        margin-top: .5vh;
	}
	.admin-tourn-controls {
    	left: unset;
    	right: 7.16vw;
    	width: 4vh;
    	padding: 1vh;
    	border-radius: .75vh;
	}
	.admin-tourn-edit{
		font-size: 1.75vh;	
	}
	.admin-tourn-delete{
		font-size: 1.75vh;	
	}
	.tournaments-delete-body{
    	font-size: 2.2vh;
        width: 85vw;
        margin-left: calc(7.5vw - 2vh);
        margin-top: 35vh;
        border-radius: 2vh;
        padding: 2vh;
	}
	.tournaments-delete-buttons{
		margin-top: 2.5vh;	
		justify-content: flex-end;
	}
	.tournaments-delete-cancel{
		font-size: 2vh;
        padding: .5vh 3vh;
        border-radius: 1.5vh;
        margin-left: 0vw;
	}
	.tournaments-delete-apply{
		font-size: 2vh;
        margin-left: 1vw;
        padding: .5vh 1vh;
        border-radius: 1.5vh;
		width: 13vh;
	}
	.tournaments-newsdel-spinner{
		margin-top: .5vh;
        margin-left: .5vh;
        width: 1.5vh;
        height: 1.5vh;
        border: .25vh solid #fff;
        border-top-color: transparent;
	}
	.edit-background{
		left:0vw;
	}
	.result-btn{
		font-size: 1.6vh;
    	border-radius: .75vh;
    	padding: .15vw 1vh;
    	margin-top: .5vh;
    	margin-left: .5vh;	
	}
	.result-btn:hover{
		background: #fff;	
	}
	.tournaments-table-spinback{
		left:0;
		width: 100vw;
	}
	.tournaments-table-spinner{
		width: 14vw;
   		height: 14vw;
    	margin-top: calc(50vh - 7vw);
    	border-width: .8vw;
	}
	.toursmem-table-block {
    	height: calc(100% - 20vh - 7vh);
    	border-radius: 3.5vh;
    	padding: 3.5vh;
    	width: calc(90vw - 7vh);
	}
	.tournaments-table-close {
    	font-size: 3vh;
    	width: 3.5vh;
    	height: 3.5vh;
	}
	.toursmem-table-title {
    	font-size: 2.5vh;
    	padding-bottom: 1.5vh;
	}
	.tours-member-row {
    	border-top: 0.3vh solid #76acf7;
    	padding: .5vw 0vw;
    	font-size: 1.75vh;
    	height: 5vh;
	}
	.tours-member-title {
		border-top: none;
    	border-bottom: .3vh solid black;
	}
	.toursmem-table-wrapper{
		max-height: calc(100% - 5vh);	
		overflow-x: auto;
	}
	.toursmem-table-wrapper::-webkit-scrollbar {
    	width: 0px;
	}
	.tours-member-item{
		padding: 0 1vh;	
	}
	.tours-lazy-preloader{
		margin: 4vh calc(50% - 3.4vh - 3vh - 1.08vw) 2vh calc(50% - 3.4vh - 3vh - 1.08vw);
        width: 6.8vh;
        height: 6.8vh;
	}
	.tours-lazy-spinner{
		display: block;
    	width: 6vh;
    	height: 6vh;
    	border: .4vh solid #036bfc;
    	border-top-color: transparent;
    	border-radius: 50%;
    	animation: spin 1s linear infinite;
    	position: absolute;
	}
	.admin-tourtags-warning {
		font-size: 1.2vh;
    	margin-left: 2.16vw;
	}
	.tournaments-list-empty{
    	border-radius: 1.5vh;
    	padding: 1.5vh;
    	margin: 1.5vh 1.5vh 0 1.5vh;
	}
	.tournaments-empty-text{
		font-size: 2.3vh;
    	margin-top: .75vh;
    	width: 100%;
    	margin-left: 0;
	}
	.tournaments-empty-icon{
		margin-top: .5vh;
    	font-size: 4vh;
	}
	.transition-preloader{
		margin: calc(50vh - 5.6vh) calc(50vw - 5.6vh);
    	width: 11.2vh;
    	height: 11.2vh;
	}
	.transition-spinner{
		display: block;
    	width: 10vh;
    	height: 10vh;
    	border: .6vh solid #036bfc;
    	border-top-color: transparent;
    	border-radius: 50%;
    	animation: spin 1s linear infinite;
    	position: absolute;
	}
	.club-spinner{
		margin-top: 1vh;
    	margin-left: calc(50% - 2vh);
    	margin-bottom: 1vh;
    	width: 4vh;
    	height: 4vh;
    	border: .35vh solid #fff;
    	border-top-color: #999;
    	border-radius: 50%;
    	animation: spin 1s linear infinite;	
	}
	.admin-news-pubtime{
		margin-left: 2.16vw;
    	padding: 3vw;
    	border-radius: 3vw;
    	margin-top: 1vh;
    	font-size: 3.75vw;
    	width: 46vw;
    	height: 10vw;
	}
	.news-pubtime-info{
    	font-size: 2.5vw;
    	border-top: .25vh solid #01ab01;
    	margin-top: 1vh;
    	margin-left: 1vw;
    	padding: 1.25vw .4vw;
    	width: 34vw;
    	line-height: 3vw;
	}
	.news-images-empty{
		height: 21vw;	
	}
}