*{
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	touch-action: manipulation; /* масштабирование при двойном тапе не происходит */
}
html{
	scroll-behavior: smooth;	
}
body{
	position:relative;
	margin: 0;
	padding: 0;
	overflow-x:hidden;
	outline:none;
	user-select: none;
	left:0vw;
	animation: unset;
	scroll-behavior: smooth;
}
@keyframes body-left{
	0%{
		left:0vw;	
	}
	100%{
		left:-9vw;
	}
}
@keyframes body-right{
	0%{
		left:-9vw;
	}
	100%{
		left:0vw;
	}
}
body::-webkit-scrollbar{
	background-color: #fff;
	border-left: 1px solid #eee;
	width:10px;
}
body::-webkit-scrollbar-thumb {
    background-color: #008ffc;
}
.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;
	border-radius:1vw;
	transition: .1s linear;
}
.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;
}
.header-account-name{
	margin-top:.1vw;
	font-size:1.4vw;
	color:black;
}
.header-account-link{
	margin-top:-.3vw;
	color:#666;
	font-size:1.05vw;
	display:flex;
}
.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;
}
.section{
	padding-top:9vw;
	display: flex;
}
.filters{
	padding-left:1vw;
	position: fixed;
	font-family: "Nunito";
	margin-left:5vw;
	width:19vw;
	background: #ddd;
	font-size:1.5vw;
	white-space: nowrap;
	border-radius: 2vw;
}
.filters-item{
	padding-left: 1.5vw;
	display: list-item;
	list-style-type: none;
	cursor: pointer;
	margin-bottom:.5vw;
}
.filters-title{
	padding:1vw 1vw 0 1vw;
	font-size:2.5vw;
	font-weight: bold;
	padding-bottom:.5vw;
}
.main-filter{
	font-weight: bold;
	border-bottom: 1px solid #aaa;
	margin-bottom:.5vw;
	padding-bottom:.5vw;
	width:calc(100% - 4vw);
}
.filters-check{
	height:1vw;
	width: 1vw;
	border:none;
	border-radius:100%;
}
.filters-bottom-margine{
	padding-bottom:1vw;
}
.map-btn-mobile{
	display: none;
}

.checkbox.style-c {
  display: inline-block;
  position: relative;
  padding-left: 3vw;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkbox.style-c input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox.style-c input:checked ~ .checkbox__checkmark {
  background-color: #007afc;
}
.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: #007afc;
}
.checkbox.style-c .checkbox__checkmark {
  position: absolute;
  top: .5vw;
  left:1.6vw;
  height: 1vw;
  width: 1vw;
  background-color: #fff;
  transition: background-color 0.25s ease;
  border-radius: .2vw;
}
.checkbox.style-c .checkbox__checkmark:after {
  content: "";
  position: absolute;
  left: .35vw;
  top: .1vw;
  width: .25vw;
  height: .55vw;
  border: solid #fff;
  border-width: 0 .15vw .15vw 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.25s ease;
}
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-size:2vw;
	font-weight: bold;
	margin-bottom: 1.5vw;
}
.planned-post{
	background-color: #007afc;
	color:#fff;
	padding:1vw 1vw 1vw 1vw;
	border-radius: 1.5vw;
	margin-bottom:1vw;
	transition: .1s linear;
}
.map{display: none; opacity: 0; transition: .1s linear;}
.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:pointer;
	margin-top: .75vw;
}
.map-btn:hover{
	background: #eee;
}
.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;
}

.past{
	position: relative;
	width:30vw;
	height:auto;
	font-family: "Nunito";
	font-size:1vw;
	margin-left: 6vw;
}
.past-title{
	font-size:2vw;
	font-weight: bold;
	margin-bottom: 1.5vw;
}
.past-post{
	cursor: unset;
	background: #3c6ef0;
}
.past-post:hover{
	background: #3c6ef0;
}
.past-btn{
	color: #3c6ef0;
	cursor: pointer;
}
.filters-apply{
	position: relative;
	text-align: center;
	background:#007afc;
	border: none;
	color: #fff;
	text-align: center;
	font-size:2vw;
	font-family: "Nunito";
	border-radius: .8vw;
	margin-top: 1vw;
	width:16vw;
	padding:.2vw;
	margin-left: 1vw;
	transition: .1s linear;
	cursor:pointer;
}
.filters-apply:hover{
	background: #026cde;
}
.mobile-add-menu{
	display: none;
}
.selected_tour_id{
	display: none;	
}
.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;
	cursor:pointer;
	transition:.1s linear;
	margin-left: .5vw;
}
.result-btn:hover{
	background: #eee;
}
.admin-tour-taglist{
	display: flex;
    margin-top: .75vw;
	flex-wrap: wrap;
}
.admin-tour-tag{
	margin-right: .5vw;
    font-weight: bold;
    color: #00f1ff;	
}
.map-background{
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 101;
	opacity: 0.7;
	background: black;
	display:none;
	position:fixed;
}
.map-close{
	position: fixed;
    z-index: 103;
    color: #fff;
    right: 11.5vw;
    top: 11vh;
    font-size: 3vw;
	display:none;
	cursor:pointer
}
.map-close:hover{
	color: #ddd;	
}
.map{transition: .1s linear; z-index: 102; top: 10vh; left: 15vw; width: 70vw; height: 80vh;}
.events-sure-background{
	display:none;
	z-index: 1000;
    position: fixed;
    background: rgba(0, 0, 0, 0.65);
    width: 100vw;
    height: 100vh;
    top: 0vw;
    left: 0vw;	
}
.events-sure-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;
}
.events-sure-text{
	font-weight: bold;	
}
.events-sure-buttons{
	margin-top: 1.5vw;
	display:flex;	
}
.events-sure-cancel{
	font-size: 1.5vw;
    background: #bbb;
    padding: .25vw 2vw;
    border-radius: .75vw;
    margin-left: 13vw;	
	cursor:pointer;
	color:black;
}
.events-sure-cancel:hover{
	background: #999;	
}
.events-sure-apply{
	font-size: 1.5vw;
    background: #036bfc;
    color: #fff;
    margin-left: 1vw;
    padding: .25vw 0vw;
    border-radius: .75vw;	
	cursor:pointer;
	width: 20vw;
	text-align:center;
}
.events-sure-apply:hover{
	background:#045dd9;	
}
.events-regsure-spinner{
	margin-top: .3vw;
    margin-left: .45vw;
    width: 1vw;
    height: 1vw;
    border: .25vw solid #fff;
    border-top-color: #3381ef;
    border-radius: 50%;
    animation: spin 1s linear infinite;	
}
.result-btn-done{
	color: #fff;
	background: #24b414;
}
.result-btn-done:hover{
	color: #fff;
	background: #24b414;
	cursor:default;
}
.accounts-table-spinback{
	display:none;
	opacity: 0;
	width: 100vw;
    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;	
}
.tournaments-list-empty{
	text-align: center;
    background: #007cff;
    border-radius: 1.5vw;
    color: #fff;
    padding: .75vw;
    margin: 1vw 0 0 0;
}
.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;
}
.clubtext_td,.town-text-row{
	display:none;	
	text-overflow: ellipsis;
}
#born_input{
	text-overflow: ellipsis;
}
.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;
}
.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;
}
@media(orientation:portrait){
	.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: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{
		text-align:left;
		margin-top:.6vh;
		font-size:2vh;
		white-space:nowrap;
		text-overflow:ellipsis;
		overflow:hidden;
		width:40vw;
	}
	.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;
	}
	.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;	
		}
	}
	.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;
	}
	.filters{
		display: none;
		margin-top: -1vh;
		z-index: 101;
		margin-left:7.5vw;
		width:85vw;
		font-size:2.7vh;
		border-radius: 3vh;
		animation: filter .5s ease;
	}
	@keyframes filter {
		0%{
			margin-left:-100vw;
		}
		100%{
			margin-left: 7.5vw;
		}
	}
	@keyframes filter-back {
		0%{
			margin-left: 7.5vw;
		}
		100%{
			margin-left: -100vw;
		}
	}
	.filters-item{
		padding-left: 2.2vh;
		margin-bottom:1vh;
	}
	.filters-title{
		padding:1.5vh 1.5vh 0 1.5vh;
		font-size:4vh;
		font-weight: bold;
		padding-bottom:1vh;
	}
	.main-filter{
		font-weight: bold;
		border-bottom: 1px solid #aaa;
		margin-bottom:1vh;
		padding-bottom:1vh;
		width:calc(85vw - 6vh);
	}
	.filters-check{
		height:1.5vh;
		width: 1.5vh;
	}
	.filters-bottom-margine{
		padding-bottom:1.5vh;
	}
	.checkbox.style-c {
  		padding-left: 6vh;
		margin-left: 3.5vw;
	}
	.checkbox.style-c .checkbox__checkmark {
  		top: .7vh;
  		left:2.4vh;
  		height: 1.8vh;
  		width: 1.8vh;
  		border-radius: .3vh;
	}
	.checkbox.style-c .checkbox__checkmark:after {
  		left: .22em;
  		top: .09em;
  		width: .5vh;
  		height: 1vh;
  		border-width: 0 .22vh .22vh 0;
	}
	.filters-apply{
		font-size:3vh;
		border-radius: 1.2vh;
		margin-top: 1.5vh;
		width:calc(85vw - 4.4vh);
		padding:.3vh;
		margin-left: 4vw;
	}

	.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;
	}
	.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;
	}
	.past-btn{
		width:20vh;
		color: #3c6ef0;
	}
	.result-btn{
		font-size: 1.6vh;
    	border-radius: .75vh;
    	padding: .15vw 1vh;
    	margin-top: .5vh;
		margin-left: .5vh;	
	}
	.result-btn:hover{
		background: #fff;	
	}	
	.result-btn-done:hover{
		color: #fff;
		background: #24b414;
		cursor:default;
	}
	.map-btn{
    	font-size: 1.6vh;
        padding: .15vw 1vh .15vw 1vh;
        border-radius: .75vh;
        width: 8vh;
        margin-top: .5vh;
	}
	.events-sure-body{
    	font-size: 2.2vh;
        width: 85vw;
        margin-left: calc(7.5vw - 2vh);
        margin-top: 35vh;
        border-radius: 2vh;
        padding: 2vh;
	}
	.events-sure-buttons{
		margin-top: 2.5vh;	
		justify-content: flex-end;
	}
	.events-sure-cancel{
		font-size: 2vh;
        padding: .5vh 3vh;
        border-radius: 1.5vh;
        margin-left: 0vw;
	}
	.events-sure-cancel:hover{
		background: #bbb;
	}
	.events-sure-apply{
		font-size: 2vh;
        margin-left: 1vw;
        padding: .5vh 1vh;
        border-radius: 1.5vh;
		width: 13vh;
	}
	.events-sure-apply:hover{
		background: #036bfc;
	}
	.events-regsure-spinner{
		margin-top: .5vh;
        margin-left: .5vh;
        width: 1.5vh;
        height: 1.5vh;
        border: .25vh solid #fff;
        border-top-color: transparent;
	}
	.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;
	}
	.tournaments-list-empty{
    	border-radius: 3vh;
    	padding: 1.5vh;
    	margin: 1.5vh 0 0 0;
	}
	.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;
	}
}