/* ------------------------------- FONTS ------------------------------- */
/*
*  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
*/
/*
@font-face {
  font-family: 'FontAwesome';
  src: url('../fontAwesome/fontawesome-webfont.eot?v=4.7.0');
  src: url('../fontAwesome/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), url('../fontAwesome/fontawesome-webfont.woff2?v=4.7.0') format('woff2'), url('../fontawesome-webfont.woff?v=4.7.0') format('woff'), url('../fontAwesome/fontawesome-webfont.ttf?v=4.7.0') format('truetype'), url('../fontAwesome/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
*/

@font-face {
	font-family: 'Khand';
	src: url('./fonts/Khand/Khand-Light.ttf');
	font-weight: 300;
}

@font-face {
	font-family: 'Khand';
	src: url('./fonts/Khand/Khand-Regular.ttf');
	font-weight: 400;
}

@font-face {
	font-family: 'Khand';
	src: url('./fonts/Khand/Khand-SemiBold.ttf');
	font-weight: 600;
}

@font-face {
	font-family: 'Khand';
	src: url('./fonts/Khand/Khand-Bold.ttf');
	font-weight: 700;
}

@font-face {
	font-family: 'LexendExa';
	src: url('./fonts/Lexend_Exa/static/LexendExa-Regular.ttf');
	font-weight: 400;
}

@font-face {
	font-family: 'LexendExa';
	src: url('./fonts/Lexend_Exa/static/LexendExa-SemiBold.ttf');
	font-weight: 600;
}

@font-face {
	font-family: 'LexendExa';
	src: url('./fonts/Lexend_Exa/static/LexendExa-Bold.ttf');
	font-weight: 700;
}

@font-face {
	font-family: 'LexendExa';
	src: url('./fonts/Lexend_Exa/static/LexendExa-ExtraBold.ttf');
	font-weight: 800;
}

/* ------------------------------- BASIC ------------------------------- */

/* ------------------------------- !!!end of BASIC ------------------------------- */
	*, *:before, *:after {
	  box-sizing: border-box;
	}

	img {
		max-width: 100%;
	}

	.center {
		text-align: center;
	}

	.flex-radek {
		display: flex;
		align-items: center;
		gap: 20px;
	}
/* ------------------------------- !!!end of FONTS ------------------------------- */

/* ------------------------------- MAIN LAYOUT GRID ------------------------------- */
body {
	margin: 0;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-areas:
    	"header"
    	"banner"
    	"flash"
    	"main-container"
    	"footer";
}

header {
	grid-area: header;
	display: grid;
	grid-template-columns: 1fr 5fr;
	grid-template-areas:
    	"logo nav";
    align-items: center;
}

.main-container {
	margin: 0 auto;
	width: 100%;
	overflow: hidden;
	grid-area: main-container;
	display: grid;
	grid-template-columns: minmax(0 ,1fr);
	grid-template-areas:
    	"main";
}

body.sub-page .main-container {
	margin-bottom: 60px;
}

.flash-msg {
	grid-area: flash;
}

.banner {
	grid-area: banner;
}

main {
	grid-area: main;
}

footer {
	grid-area: footer;
}

header img {
	grid-area: logo;
}

nav {
	grid-area: nav;
}
/* ------------------------------- !!!end of MAIN LAYOUT GRID ------------------------------- */

/* ------------------------------- COLORS ------------------------------- */

html {
	scroll-behavior: smooth;
	/*background-color: #eee;*/
}

header {
	background-color: #fff;
	border-radius: 100px;
	height: 70px;
}

.main-container {
	/*background-color: #fff;*/
}

footer {
	/*background-color: gold;*/
}

/* ------------------------------- !!!end of COLORS ------------------------------- */

/* ------------------------------- FONTS ------------------------------- */
body {
    font-family: LexendExa;
}

h1,
h2 {
	font-family: "Khand";
	font-weight: 700;
	color: #000;
	font-size: 48px;
}

p {
    font-size: 16px;
    line-height: 28px;
	font-weight: 600;
}
/* ------------------------------- !!!end of FONTS ------------------------------- */

/* ------------------------------- RESET ------------------------------- */
/*a:link,
a:visited,
a:hover,
a:active {
	color: #000;
	text-decoration: none;
}*/
a {
	color: #000;
/*	text-decoration: none;*/
}

body.start-page a {
	text-decoration: none;
}
/* ------------------------------- !!!end of RESET ------------------------------- */

/* ------------------------------- HEADER ------------------------------- */
.header-container {
	position: absolute;
	top: 20px;
	left: 0;
	width: 100%;
	z-index: 9999;
}

header {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 10px;
}

header .logo {
    width: 220px;
	position: relative;
	top: 2px;
	left: 4px;
}
/* ------------------------------- !!!end of HEADER ------------------------------- */

/* ------------------------------- FLASH ------------------------------- */
.flash-msg {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
    margin-bottom: 5px;
}

.flash-msg.flash-success {
	color: #155724;
	background-color: #d4edda;
}

.flash-msg.flash-info {
	color: #004085;
	background-color: #cce5ff;
}

.flash-msg.flash-danger {
	color: #721c24;
	background-color: #f8d7da;
}
/* ------------------------------- !!!end of FLASH ------------------------------- */


/* ------------------------------- NAV ------------------------------- */
nav {
	font-family: "Khand";
	font-weight: 600;
	position: relative;
}

nav ul {
	list-style: none;
	padding: 0;
    float: right;
	margin: 0;
}

nav ul li {
	float: left;
    margin: 0 6px;
	position: relative;
}

nav ul li:not(.extra-li) {
	line-height: 35px;
}

nav ul li .btn {
	margin: 0;
	min-width: 177px;
}

nav ul li:not(.extra-li)::before {
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	background-color: #ADD115;
	border-radius: 50%;
	position: absolute;
	top: calc(50% - 7px);
	left: 0;
	margin-left: -9px;
}

nav ul li:first-child::before {
	display: none;
}

nav ul li a:not(.btn) {
    text-decoration: none;
    display: inline-block;
	color: #2A33C0 !important;
    font-weight: 600;
    font-size: 16px;
	text-transform: uppercase;
	padding: 5px 15px;
}

nav ul li a:not(.btn):hover {
    text-decoration: underline;
}

/* nav subcat */
nav ul li ul {
	display: none;
	position: absolute;
	background-color: #fff;
}
/*  */
nav ul li ul li {
	float: none;
}

nav ul li:hover ul,
nav ul li ul:hover {
	display: block;
}

.lang_selector {
	position: absolute;
	right: 20px;
	bottom: -55px;
}

nav ul.lang_selector li a {
	color: #fff !important;
	text-decoration: none !important;
	list-style: none;
	background-color: #CCC !important;
	border-radius: 10px;
	padding: 5px !important;
	display: inline-block;
	width: 35px;
	height: 35px;
	text-align: center;
	line-height: 30px;
}

.lang_selector a.active {
	background-color: #ADD115 !important;
}
/* ------------------------------- !!!end of NAV ------------------------------- */


/* ------------------------------- BANNER ------------------------------- */
.banner {
    padding-bottom: 5px;
	position: relative;
	overflow: hidden;
	/*min-height: 240px;*/
}

.banner.page-banner {
	height: 120px;
}
body.start-page .banner {
	min-height: 900px;
}

.banner h1 {
	font-family: Khand;
	font-size: 100px;
	font-weight: 400;
	line-height: 100px;
	color: #fff;
	margin: 0;
}

.banner h1 b {
	font-weight: 600;
}

.banner p {
	max-width: 678px;
	font-size: 16px;
	font-weight: 600;
	line-height: 30px;
	color: #fff;
}

.banner .btn {
	margin-top: 60px;
}

.banner img {
    width: 100%;
	clip-path: ellipse(100% 65% at 34% 35%);
	height: 100%;
	object-fit: cover;
}

.banner-textPlace {
	position: absolute;
	top: 140px;
	width: 100%;
}

body.start-page .banner-textPlace {
	top: 30%;
}

.banner-textPlace-innner {
	width: 1200px;
	max-width: 100%;
	margin: 0 auto;
}

.banner-textPlace .beforeH1 {
	font-family: Khand;
	color: #4DD470;
	font-size: 35px;
	font-weight: 400;
}

.banner .textova-paska {
	position: absolute;
	bottom: 90px;
	width: 130%;
	left: -10%;
	background-color: #EE7641;
	transform: rotate(-3deg);
}

.banner .textova-paska .text-scroll {
	display: flex;
	width: 100%;
	white-space: nowrap;
	overflow: visible;
	padding: 10px;
}

.banner .textova-paska .text-scroll div {
	position: relative;
	color: #2A33C0;
	padding-right: 45px;
	font-family: Khand;
	font-size: 25px;
	font-weight: 600;
}

.banner .textova-paska .text-scroll div:after {
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	background-color: #4DD470;
	border-radius: 50%;
	position: absolute;
	top: 13px;
	left: -26px;
}

/* ------------------------------- !!!end of BANNER ------------------------------- */

/* ------------------------------- BOX ------------------------------- */
.box-container {
	display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 10px;
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
}

.box-container .box1 {
	grid-column: span 1;
}

.box-container .box2 {
	grid-column: span 2;
}

.box-container .box3 {
	grid-column: span 3;
}

.box-container .box4 {
	grid-column: span 4;
}

.box-container .box5 {
	grid-column: span 5;
}

.box-container .box6 {
	grid-column: span 6;
}

.box-container .box7 {
	grid-column: span 7;
}

.box-container .box8 {
	grid-column: span 8;
}

.box-container .box9 {
	grid-column: span 9;
}

.box-container .box10 {
	grid-column: span 10;
}

.box-container .box11 {
	grid-column: span 11;
}

.box-container .box12 {
	grid-column: span 12;
}

.box-container.full-width{
	max-width: 100%;
}

@media (max-width: 1000px) {
	.box-container .box1l {
		grid-column: span 1;
	}

	.box-container .box2l {
		grid-column: span 2;
	}

	.box-container .box3l {
		grid-column: span 3;
	}

	.box-container .box4l {
		grid-column: span 4;
	}

	.box-container .box5l {
		grid-column: span 5;
	}

	.box-container .box6l {
		grid-column: span 6;
	}

	.box-container .box7l {
		grid-column: span 7;
	}

	.box-container .box8l {
		grid-column: span 8;
	}

	.box-container .box9l {
		grid-column: span 9;
	}

	.box-container .box10l {
		grid-column: span 10;
	}

	.box-container .box11l {
		grid-column: span 11;
	}

	.box-container .box12l {
		grid-column: span 12;
	}
}

@media (max-width: 800px) {
	.box-container .box1m {
		grid-column: span 1;
	}

	.box-container .box2m {
		grid-column: span 2;
	}

	.box-container .box3m {
		grid-column: span 3;
	}

	.box-container .box4m {
		grid-column: span 4;
	}

	.box-container .box5m {
		grid-column: span 5;
	}

	.box-container .box6m {
		grid-column: span 6;
	}

	.box-container .box7m {
		grid-column: span 7;
	}

	.box-container .box8m {
		grid-column: span 8;
	}

	.box-container .box9m {
		grid-column: span 9;
	}

	.box-container .box10m {
		grid-column: span 10;
	}

	.box-container .box11m {
		grid-column: span 11;
	}

	.box-container .box12m {
		grid-column: span 12;
	}
}

@media (max-width: 640px) {
	.box-container .box1s {
		grid-column: span 1;
	}

	.box-container .box2s {
		grid-column: span 2;
	}

	.box-container .box3s {
		grid-column: span 3;
	}

	.box-container .box4s {
		grid-column: span 4;
	}

	.box-container .box5s {
		grid-column: span 5;
	}

	.box-container .box6s{
		grid-column: span 6;
	}

	.box-container .box7s {
		grid-column: span 7;
	}

	.box-container .box8s {
		grid-column: span 8;
	}

	.box-container .box9s {
		grid-column: span 9;
	}

	.box-container .box10s {
		grid-column: span 10;
	}

	.box-container .box11s {
		grid-column: span 11;
	}

	.box-container .box12s {
		grid-column: span 12;
	}
}

@media (max-width: 380px) {
	.box-container .box1xs {
		grid-column: span 1;
	}

	.box-container .box2xs {
		grid-column: span 2;
	}

	.box-container .box3xs {
		grid-column: span 3;
	}

	.box-container .box4xs {
		grid-column: span 4;
	}

	.box-container .box5xs {
		grid-column: span 5;
	}

	.box-container .box6xs{
		grid-column: span 6;
	}

	.box-container .box7xs {
		grid-column: span 7;
	}

	.box-container .box8xs {
		grid-column: span 8;
	}

	.box-container .box9xs {
		grid-column: span 9;
	}

	.box-container .box10xs {
		grid-column: span 10;
	}

	.box-container .box11xs {
		grid-column: span 11;
	}

	.box-container .box12xs {
		grid-column: span 12;
	}
}
/* ------------------------------- !!!end of BOX ------------------------------- */

/* ------------------------------- BTN ------------------------------- */
.btn {
	font-family: 'Khand';
    cursor: pointer;
	border-radius: 100px;
	border: 2px solid #4DD470;
    color: #fff;
	background-color: #4DD470;
	min-width: 255px;
	text-align: center;
    padding: 8px 26px;
    display: inline-block;
    font-weight: 600;
	max-height: 45px;
	font-size: 16px;
	text-transform: uppercase;
	text-decoration: none;
}

.btn:hover {
	background-color: #fff;
	border: 2px solid #fff;
	color: #2A33C0 !important;
}

.btn.btn-green {
	border: 2px solid #ADD115;
	background-color: #ADD115;
}

.btn.btn-green:hover {
	border: 2px solid #2A33C0;
	background-color: #2A33C0;
	color: #fff !important;
}

.btn.btn-red {
	border: 2px solid #EE7641;
	background-color: #EE7641;
}

.btn.btn-red:hover {
	border: 2px solid #fff;
	background-color: #fff;
	color: #2A33C0 !important;
}

.btn.btn-gray {
	border: 2px solid #969696;
	background-color: #969696;
}

.btn.btn-gray:hover {
	background-color: #fff;
	color: #000 !important;
}

.btn.btn-pink {
	border: 2px solid transparent;
	background-color: transparent;
	color: #2A33C0;
}

.btn.btn-pink.active {
	border: 2px solid #fceae3;
	background-color: #fceae3;
}

.btn.btn-pink:hover {
	text-decoration: underline;
}

.btn.btn-user {
	border: 2px solid #EE7641;
	background-color: transparent;
	min-width: 66px;
}

.btn-blue-hover:hover {
	background-color: #2A33C0 !important;
	border: 2px solid #2A33C0 !important;
	color: #fff !important;
}

header .btn.btn-user span {
	display: none;
}
.btn.btn-user:hover {
	background-color: #EE7641;
}

.btn.btn-user:hover img {
	filter: brightness(0) saturate(100%) invert(100%);
}

.btn.btn-hover-blue:hover {
	border: 2px solid #2A33C0;
	background-color: #2A33C0;
	color: #fff !important;
}

.btn.btn-hover-white:hover {
	border: 2px solid #fff;
	background-color: #fff;
	color: #2A33C0 !important;
}

.btn.btn-typ-clenstvi-basic {
	background-color: #00cc00;
	border-color: #00cc00;
}

.btn.btn-typ-clenstvi-multisport {
	background-color: #3642ae;
	border-color: #3642ae;
}

.btn.btn-typ-clenstvi-silver {
	background-color: #949494;
	border-color: #949494;
}

.btn.btn-typ-clenstvi-gold {
	background-color: #af9c5b;
	border-color: #af9c5b;
}

.btn.btn-small {
	min-width: auto;
	padding: 2px 10px;
	font-size: 15px;
}

/* ------------------------------- !!!end of BTN ------------------------------- */

/* ------------------------------- FORMS ------------------------------- */
input[type='checkbox'] {
	display: inline-block;
}

label {
	padding-top: 15px;
	font-weight: bold;
	font-size: 15px;
}

button {
	border: none;
	font-size: 16px;
	margin-top: 10px;
	border-radius: 100px;
}

form {
	margin: 0 auto;
	width: 100%;
}

input[type='text'],
form input[type='email'],
form input[type='tel'],
form input[type='password'],
form textarea {
	border: 2px solid #4DD470;
	border-radius: 24px;
	display: block;
	margin: 3px 0 10px 0;
	padding: 10px;
	width: 100%;
}

form input[type='number'] {
	border: 2px solid #4DD470;
	border-radius: 24px;
	display: block;
	margin: 3px 0 10px 0;
	padding: 10px;
	width: auto;
}

form textarea {
	min-height: 200px;
}

form select {
	border: 2px solid #4DD470;
	border-radius: 24px;
	display: block;
	margin: 3px 0 10px 0;
	padding: 10px;
	width: 100%;
}

form select.select-small {
	width: 250px;
}

form.readonly input {
	cursor: not-allowed;
}

/* ------------------------------- !!!end of FORMS ------------------------------- */

/* ------------------------------- HP-SECTIONS ------------------------------- */

section.hp-box-1 {
	margin-top: 60px;
}

section.hp-box-1 .left-box {
	text-align: center;
	align-content: center;
	position: relative;
}

section.hp-box-1 .left-box:before {
	content: "";
	position: absolute;
	left: -35%;
	top: 7%;
	z-index: -1;
	display: block;
	width: 580px;
	height: 580px;
	background-image: url("../../img/grafika/hod1.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center left;
}

section.hp-box-1 .left-box h2 {
	font-size: 65px;
	font-weight: 600;
	line-height: 68px;
	color: #2A33C0;
	text-align: center;
	max-width: 440px;
	margin-left: auto;
	margin-right: auto;
}

section.hp-box-1 .imgBox1 {
	margin-bottom: 20px;
}

section.hp-box-1 .imgBox1,
section.hp-box-1 .imgBox2 {
	display: block;
	padding: 42px;
	border-radius: 45px;
	color: #fff;
}

section.hp-box-1 .imgBox1 h2,
section.hp-box-1 .imgBox2 h2 {
	color: #fff;
	font-size: 45px;
	font-weight: 600;
	line-height: 45px;
	margin-top: 0;
}

section.hp-box-1 .imgBox1 p,
section.hp-box-1 .imgBox2 p {
	max-width: 275px;
	margin-bottom: 60px;
}

section.hp-box-1 .imgBox1 {
	background-image: url("../../img/hp/co-je-padel.jpg");
	background-size: cover;
	background-position: center;
}

section.hp-box-1 .imgBox2 {
	background-image: url("../../img/hp/zahraj-si.jpg");
	background-size: cover;
	background-position: center;
}
/* ----------------- */
section.hp-box-2 {
	border: 2px solid #EE7641;
	border-radius: 48px;
	margin-top: 50px;
	padding: 60px;
}

section.hp-box-2 h2 {
	color: #2A33C0;
	text-align: center;
	margin-top: 0;
	font-size: 65px;
	font-weight: 600;
	margin-bottom: 20px;
}

section.hp-box-2 p {
	color: #2A33C0;
}

section.hp-box-2 .btn {
	margin-bottom: 15px;
}

section.hp-box-2 img {
	border-radius: 48px;
	float: right;
}

/* taby */
.tabs input[type="radio"] {
	display: none;
}

.tabs label {
	padding: 10px;
	cursor: pointer;
	background-color: #f1f1f1;
	margin: 0;
	text-align: center;
	font-weight: bold;
}

.tabs input:checked + label {
	background-color: #ddd;
}

.tab-content {
	display: none;
	padding: 20px;
}

#tab1:checked ~ .tab-content#content1,
#tab2:checked ~ .tab-content#content2,
#tab3:checked ~ .tab-content#content3,
#tab4:checked ~ .tab-content#content4 {
	display: grid;
}

.tabs label.btn {
	width: auto;
	max-width: unset;
	min-width: unset;
	padding: 8px 60px;
}

.tabs .tab-content .btn {
	margin-top: 100px;
}

/* ----------------- */
section.hp-box-3 {
	margin-top: 50px;
}

section.hp-box-3 .beforeH2 {
	color: #fff;
	font-family: Khand;
	font-size: 22px;
	font-weight: 600;
}

section.hp-box-3 h2 {
	color: #2A33C0;
	font-size: 65px;
	font-weight: 600;
	line-height: 65px;
	margin: 5px 0 0 0;
}

section.hp-box-3 p {
	color: #fff;
}

section.hp-box-3 .btn {
	margin-top: 40px;
}

section.hp-box-3 img {
	border-radius: 0 48px 48px 0;
}

section.hp-box-3 .box-right {
	max-width: 640px;
	position: relative;
	left: -40px;
	align-content: end;
}

section.hp-box-3 .box-left {
	width: calc(100% + 40px);
	position: relative;
}

section.hp-box-3 .box-left:before {
	content: "";
	position: absolute;
	left: 160px;
	top: -200px;
	z-index: 0;
	display: block;
	width: 370px;
	height: 370px;
	background-image: url("../../img/grafika/hod2.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center left;
}

section.hp-box-3 .green-box {
	background-color: #4DD470;
	border-radius: 48px;
	padding: 60px;
	margin-bottom: 60px;
}

/* ----------------- */
section.hp-box-4 {
	margin-top: 50px;
	position: relative;
	overflow: hidden;
}

section.hp-box-4 .beforeH2 {
	color: #fff;
	font-family: Khand;
	font-size: 22px;
	font-weight: 600;
}

section.hp-box-4 h2 {
	color: #EE7641;
	font-size: 65px;
	font-weight: 600;
	line-height: 65px;
	margin: 5px 0 0 0;
}

section.hp-box-4 p {
	color: #fff;
}

section.hp-box-4 .btn {
	margin-top: 40px;
}

section.hp-box-4 img {
	border-radius: 48px 0 0 48px;
}

section.hp-box-4 .box-left {
	max-width: 640px;
	position: relative;
	right: -40px;
	justify-self: right;
}

section.hp-box-4 .box-right {
	width: calc(100% + 40px);
}

section.hp-box-4 .blue-box {
	background-color: #2A33C0;
	border-radius: 48px;
	padding: 60px;
	margin-top: 150px;
}

section.hp-box-4 .textova-paska {
	position: absolute;
	top: 60px;
	width: 130%;
	left: -10%;
}

section.hp-box-4 .textova-paska .text-scroll {
	display: flex;
	width: 100%;
	white-space: nowrap;
	overflow: visible;
	padding: 10px;
}

section.hp-box-4 .textova-paska .text-scroll div {
	position: relative;
	color: #2A33C0;
	padding-right: 45px;
	font-family: Khand;
	font-size: 25px;
	font-weight: 600;
}

section.hp-box-4 .textova-paska .text-scroll div:after {
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	background-color: #4DD470;
	border-radius: 50%;
	position: absolute;
	top: 13px;
	left: -26px;
}

/* ----------------- */
section.hp-box-5 {
	margin-top: 50px;
	position: relative;
}

section.hp-box-5:before {
	content: "";
	position: absolute;
	left: 579px;
	top: -360px;
	z-index: 1;
	display: block;
	width: 700px;
	height: 700px;
	background-image: url("../../img/grafika/hod3.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center left;
}

section.hp-box-5 h2 {
	text-align: center;
	color: #2A33C0;
	font-size: 65px;
	line-height: 68px;
	font-weight: 600;
	position: relative;
	z-index: 2;
	margin-bottom: 85px;
}

section.hp-box-5 .multisportky {
	border: 2px solid #EE7641;
	border-radius: 48px;
	padding: 50px;
	position: relative;
}

section.hp-box-5 .multisportky h2 {
	color: #4DD470;
	font-size: 45px;
	font-weight: 600;
	line-height: 47px;
	margin-top: 0;
}

section.hp-box-5 .multisportky p {
	color: #2A33C0;
	text-align: center;
}

section.hp-box-5 .multisportky .btn-wrap-absolute {
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 50px;
	text-align: center;
}

section.hp-box-5 .nauc-se-hrat {
	background-image: url("../../img/hp/nauc-se-hrat.jpg");
	background-size: cover;
	background-position: center;
	border-radius: 48px;
	padding: 50px;
	position: relative;
}

section.hp-box-5 .nauc-se-hrat h2 {
	color: #fff;
	text-align: left;
	font-size: 45px;
	font-weight: 600;
	line-height: 47px;
	margin-top: 0;
}

section.hp-box-5 .nauc-se-hrat p {
	color: #fff;
	max-width: 490px;
}

section.hp-box-5 .nauc-se-hrat .btn {
	position: absolute;
	left: 50px;
	bottom: 50px;
}

/* ----------------- */
section.hp-box-6 {
	margin-top: 50px;
	padding-top: 50px;
	background-color: #2933BF;
}

section.hp-box-6 h2 {
	color: #fff;
	width: auto;
	float: left;
	margin-top: 0;
	font-size: 65px;
	font-weight: 600;
	line-height: 68px;
}

section.hp-box-6 .beforeH2 {
	font-family: Khand;
	color: #4CD471;
	font-size: 22px;
	font-weight: 600;
}

section.hp-box-6 .btn {
	float: right;
	margin-top: 10px;
}

section.hp-box-6 .btn span {
	position: relative;
	bottom: 7px;
	padding-left: 6px;
}

section.hp-box-6 .btn svg path {
	fill: #fff;
}

section.hp-box-6 .btn:hover svg path {
	fill: #2A33C0;
}

/* ----------------- */
section.hp-box-7 {
	margin-top: 50px;
}

section.hp-box-7 h2 {
	color: #2A33C0;
	margin-top: 0;
	font-size: 65px;
	font-weight: 600;
	line-height: 68px;
}

section.hp-box-7 .beforeH2 {
	font-family: Khand;
	color: #4CD471;
	font-size: 22px;
	font-weight: 600;
}

section.hp-box-7 p {
	color: #2A33C0;
	max-width: 490px;
}

/* ------------------------------- !!!end of HP-SECTIONS ------------------------------- */

/* ------------------------------- HP-INFOBOXY ------------------------------- */
section.hp-infoboxy .box-container {
    gap: 40px;
}

@media (max-width: 800px) {
    section.hp-infoboxy .box-container {
        gap: 10px;
    }

    footer .box-right {
        display: none;
    }

    body.start-page footer::before {
        display: none !important;
    }
}

section.hp-infoboxy .infobox-img {
    height: 600px;
    position: relative;
    border-radius: 50px;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
}

section.hp-infoboxy .infobox-img picture {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}

section.hp-infoboxy .infobox-img picture img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

section.hp-infoboxy .infobox-img {
    display: block;
    padding: 42px;
    border-radius: 45px;
    color: #fff;
}

section.hp-infoboxy .infobox-img h2 {
    color: #fff;
    font-size: 45px;
    font-weight: 600;
    line-height: 45px;
    margin-top: 0;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

section.hp-infoboxy .infobox-img p {
    max-width: 275px;
    margin-bottom: 60px;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
    position: relative;
}

section.hp-infoboxy .infobox-img p::before {
    content: "";
    position: absolute;
    inset: -50px; /* přesah, aby rozmazání nebylo useklé */
    background: rgba(0, 0, 0, 0.8);
    filter: blur(30px); /* rozmazání okrajů */
    border-radius: 15px; /* tvar zaoblení */
    z-index: -1;
}

section.hp-infoboxy .infobox-img .center {
    margin: 0 auto;
    display: block;
    position: absolute;
    bottom: 42px;
    width: calc(100% - 84px);
}

section.hp-infoboxy .infobox-img .btn i {
    padding-right: 5px;
}
/* ------------------------------- !!!end of HP-INFOBOXY ------------------------------- */

/* ------------------------------- !!!end of ROZBALOVACI BOXY ------------------------------- */
/* Styl pro celkový akordeon */
.accordion {
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
}

.accordion input[type='checkbox']{
	display: none;
}

/* Styl pro jednotlivé boxy */
.box {
	border: 2px solid #4DD470;
	border-radius: 24px;
	margin-bottom: 10px;
}

.accordion-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 20px;
	cursor: pointer;
	background-color: transparent !important;
	font-family: Khand;
	font-size: 25px;
	font-weight: 600;
	color: #EE7641;
}

/* Skrývání textového obsahu při skrytí */
.accordion-content {
	display: block;
	max-height: 0; /* Skrytí obsahu, když je sbalený */
	height: auto;
	padding: 0 20px;
	transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
	overflow: hidden;
}

.accordion-content p {
	margin-top: 0;
}

.accordion-toggle:checked + .accordion-header + .accordion-content {
	display: block;
	padding: 10px 20px;
	max-height: 500px; /* Výška se nastaví automaticky, když je rozbaleno */
}

.plus:before {
	content: "+";
	display: block;
	height: 38px;
	font-size: 80px;
	font-weight: lighter;
	line-height: 38px;
	position: relative;
	top: 4px;
	color: #2A33C0;
}

.accordion-toggle:checked + .accordion-header .plus:before {
	content: "–";
}

/* ------------------------------- !!!end of ROZBALOVACI BOXY ------------------------------- */

/* ------------------------------- PODSTRANKY ------------------------------- */
.classic_page {
	padding-right: 15px;
	padding-left: 15px;
}

h1.page_title {
	text-align: center;
	text-transform: uppercase;
	font-size: 100px;
	font-weight: 600;
	margin-top: 40px;
	margin-bottom: 10px;
}

.classic_page h1 {
	margin-bottom: 10px;
}

.classic_page h2 {
	margin-top: 10px;
	margin-bottom: 10px;
}

.gap20 {
	gap: 20px;
}

.gap30 {
	gap: 30px;
}

.membership-page h2 {
	margin-bottom: 0;
}

.multisport-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background: rgba(0,0,0,0.6);
}

.multisport-popup-box {
    background: #fff;
    width: 90vw;
    margin: 100px auto;
    padding: 20px;
    border-radius: 5px;
}

.multisport-popup-box p {
    font-weight: normal;
}

.multisport-popup-box .btn {
    margin-bottom: 15px;
}

.mapa-kontakt {
    text-align: center;
}

.mapa-kontakt iframe {
    max-width: 100%;
}
/* ------------------------------- !!!end of PODSTRANKY ------------------------------- */

/* ------------------------------- AKCE/LEKCE ------------------------------- */
.blog-list .blog-box {
	position: relative;
	margin-bottom: 25px;
}

.blog-list .blog-box picture {
	display: block;
	overflow: hidden;
	border-radius: 10px;
	background-color: #ccc;
	aspect-ratio: 1/1;
	margin-top: 0;
}

.blog-list .blog-box picture img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.blog-info-overlay {
	position: absolute;
	top: 15px;
	left: 15px;
}

.blog-list .blog-box h3 {
	margin: 0;
	font-family: "Khand";
	color: #fff;
	background-color: #2A33C0;
	padding: 5px 10px;
	width: fit-content;
}

.blog-list .blog-box .datetime-box {
	font-family: "Khand";
	color: #fff;
	background-color: #ADD115;
	padding: 5px 10px;
	text-align: center;
	width: fit-content;
}

.blog-box .treneri-list {
	font-family: "Khand";
	color: #fff;
	background-color: #EE7641;
	padding: 5px 10px;
	text-align: center;
	width: fit-content;
	font-weight: 600;
}

.blog-list .blog-box .datetime-box .datetime{
	font-size: 18px;
	line-height: normal;
	font-weight: 600;
}

.blog-list .blog-box .datetime-box .time{
	line-height: normal;
	font-weight: 600;
}

.blog-list .blog-box .lekce-btn-wrap {
	display: flex;
	justify-content: space-between;
	position: absolute;
	bottom: 15px;
	width: 100%;
	justify-content: center;
}

.blog-list .blog-box .btn:not(.blog-detail) {
	width: 255px;
	min-width: auto !important;
}

.btn.plno,
.btn.plno:hover {
	background-color: #721c24;
	border-color: #721c24;
	color: #fff !important;
}

.blog-list .blog-box .btn.blog-detail {
	height: 45px;
	min-width: 45px;
	padding: 8px 30px;
	color: #EE7641;
	border: 2px solid #EE7641;
	border-radius: 50px;
	background-color: #ffffffcc;
	text-decoration: none;
}

.blog-list .blog-box .btn.blog-detail:hover {
	color: #fff !important;
	background-color: #EE7641;
}

.blog-list .blog-box .box-info {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px;
}

.blog-list .blog-box .box-info .price {
	font-size: 18px;
}

.blog-list .blog-box .box-info .obsazenost {
	font-size: 13px;
}

section.lekce-prihlaseni h1 {
	margin-bottom: 0;
}

section.lekce-prihlaseni h2 {
	margin-top: 0;
	font-size: 38px;
}

/*detail lekce*/
.blog-detail picture {
	aspect-ratio: 1/1;
	margin-top: 35px;
	border-radius: 10px;
	overflow: hidden;
	display: block;
}

.blog-detail picture img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.termin-box {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border: 2px solid #4DD470;
	border-radius: 100px;
	padding: 10px 10px 10px 20px;
}

.termin-box div {
	justify-self: start;
}

.termin-box .termin-box-datum {
	min-width: 255px;
}

.termin-box .termin-box-obsazenost {
	min-width: 175px;
}

.termin-box .termin-box-cena {
	min-width: 135px;
}

.termin-box a {
	justify-self: end;
}

/* ------------------------------- !!!end of AKCE/LEKCE ------------------------------- */

/* ------------------------------- TRENERI ------------------------------- */
.treneri-list .treneri-box {
	position: relative;
	margin-bottom: 25px;
}

.treneri-list .treneri-box picture {
	display: block;
	overflow: hidden;
	border-radius: 10px;
	aspect-ratio: 1/1;
	background-color: #ccc;
}

.treneri-list .treneri-box picture img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.treneri-list .treneri-box .trener-float-box {
	position: absolute;
	bottom: 100px;
	left: 15px;
	font-family: "Khand";
	color: #fff;
	font-size: 25px;
	font-weight: 600;
	background-color: #ADD115;
	padding: 5px 10px;
	text-align: center;
	width: fit-content;
}

.treneri-list .treneri-box .trener-float-box2 {
	position: absolute;
	bottom: 15px;
	left: 15px;
	font-family: "Khand";
	color: #fff;
	font-size: 17px;
}

.treneri-list .treneri-box .trener-float-box2 div {
	background-color: #2A33C0;
	padding: 5px 10px;
	margin-top: 5px;
}

/* trener detail */
.btn.btn-trener {
	width: auto;
	min-width: auto;
}

.btn.btn-trener:hover {
	background-color: #2A33C0 !important;
	border: 2px solid #2A33C0 !important;
	color: #fff !important;
}


/* ------------------------------- !!!end of TRENERI ------------------------------- */

/* ------------------------------- REZERVACE ------------------------------- */
section.rezervace {
	margin-bottom: 100px;
}

.rezervacni-tabulka-wrap {
	width: 100%;
	overflow: scroll;
	margin-bottom: 30px;
}

table.rezervacni-tabulka {
	width: 100%;
	border-collapse: collapse;
}

table.rezervacni-tabulka th {
	border: 1px solid #ddd;
	padding: 12px;
	text-align: center;
}

table.rezervacni-tabulka td {
	border: 1px solid #ddd;
	position: relative;
}

table.rezervacni-tabulka th {
	background-color: #f4f4f4;
	color: #333;
	font-weight: bold;
}

table.rezervacni-tabulka th.cena-v-case {
	font-size: 12px;
	text-align: center;
	font-weight: 300 !important;
	padding: 5px;
	writing-mode: vertical-lr;
	-webkit-writing-mode: vertical-lr;
}

table.rezervacni-tabulka th.th-kurt {
	font-weight: 300;
}

table.rezervacni-tabulka caption {
	caption-side: top;
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 10px;
}

table.rezervacni-tabulka .checkboxLabel {
	display: block;
	width: 100%;
	height: 36px;
	padding: 12px;
}

table.rezervacni-tabulka input {
	position: absolute;
	top: 0;
	display: none;
}

table.rezervacni-tabulka input:checked + .checkboxLabel {
	background-color: #ADD115;
}

table.rezervacni-tabulka input[disabled] + .checkboxLabel {
	background-color: #E9E9EC;
}

table.rezervacni-tabulka input[data-disabled='disabled'] + .checkboxLabel {
	background-color: #4C4C67;
}

table.rezervacni-tabulka input.mojeRezervace + .checkboxLabel {
	background-color: #de0a26;
}

table.rezervacni-tabulka .td-nazev-kurtu {
	text-align: center;
}

label.reservation-date {
	float: left;
	margin-bottom: 15px;
	font-size: 16px;
	font-weight: normal;
}

.selected-reservations.top-box {
	float: right;
	display: none; /* zobrazuje pak JS */
}

.legenda {
	margin-bottom: 20px;
}

.legenda div {
	display: inline-block;
}

.legenda .legenda-green:before,
.legenda .legenda-blue:before,
.legenda .legenda-red:before {
	content: "";
	display: block;
	float: left;
	width: 20px;
	height: 20px;
	border-radius: 3px;
	margin-right: 5px;
	margin-left: 10px;
	background-color: #ADD115;
}

.legenda .legenda-blue:before{
	background-color: #4C4C67;
}

.legenda .legenda-red:before{
	background-color: #de0a26;
}

section.potvrzeni,
section.platba {
	display: none;
}

.historie-table {
	width: 100%;
	border-collapse: collapse;
	overflow: hidden;
}

.historie-table tr.budouci-termin {
	background-color: #ADEBB3;
}

.historie-table tr.mujTermin:hover {
	background-color: #aaa;
}

.historie-table tr.deleted {
	/*background-color: #ccc;*/
	color: #444;
}

.historie-table tr.jizProbehlo {
	/*background-color: #90D5FF;*/
	color: #444;
}

.historie-table th,
.historie-table td {
	padding: 12px;
	text-align: left;
	border-bottom: 1px solid #ddd;
}

.historie-table th {
	background-color: #f4f4f4;
	font-weight: bold;
}

.historie-table tbody tr:last-child td {
	border-bottom: none;
}

.historie-table td.action-column,
.historie-table td.action-column button {
	font-family: Khand;
	font-weight: 600;
	font-size: 16px;
	text-align: right;
	color: #000;
}

.historie-table .th-termin {
	width: 35%;
}

.historie-table .th-kurt {
	width: 10%;
}

.historie-table .th-cena {
	width: 19%;
}

.historie-table .th-posleve {
	width: 19%;
}

.historie-table .th-action {
	width: 17%;
}

#reservation-output-text {
	margin-top: 5px;
	margin-bottom: 20px;
	font-weight: bold;
}

.vypis-rezervaci {
	margin-bottom: 30px;
}

.puvodni-rezervace th:nth-child(1) { width: 30%; }
.puvodni-rezervace th:nth-child(2) { width: 30%; }
.puvodni-rezervace th:nth-child(3) { width: 10%; }
.puvodni-rezervace th:nth-child(4) { width: 22%; }
.puvodni-rezervace th:nth-child(5) { width: 8%; }

.vypis-rezervaci th:nth-child(1) { width: 30%; }
.vypis-rezervaci th:nth-child(2) { width: 30%; }
.vypis-rezervaci th:nth-child(3) { width: 10%; }
.vypis-rezervaci th:nth-child(4) { width: 22%; }
.vypis-rezervaci th:nth-child(5) { width: 8%; }


.cena-celkem {
	margin-bottom: 30px;
}

.cena-celkem h2 {
	margin-bottom: -10px;
}

.cena-se-slevou-info {
	display: none;
}

/* spoluhrac select2 */
#spoluhrac {
	float: none;
}

.select2 {
	display: block !important;
	width: 800px !important;
	max-width: 100% !important;
}

.select2-selection__clear {
	display: none !important;
}

ul.select2-selection__rendered {
	display: block !important;
}

li.select2-selection__choice {
	display: flex !important;
	float: none !important;
	height: 40px !important;
	display: none !important;
}

li.select2-selection__choice img {
	margin-left: 5px;
}

li.select2-selection__choice span {
	display: flex !important;
	align-items: center !important;
}

.select2-results__option span {
	display: flex;
	align-items: center;
}

.img-spoluhrac {
	margin-right: 5px;
	width: 30px;
}

ul li:first-of-type .select2-selection__choice__remove {
	display: none !important;
}

.select2-pobidka {
	position: relative;
	top: -23px;
	left: 8px;
	pointer-events: none;
}

.select2-pobidka + p {
	margin-top: 0;
}

.selected-players {
	max-width: 800px;
	margin: 0 !important;
}

.player-card {
	text-align: center;
	padding: 10px;
	border-radius: 10px;
	position: relative;
}

.selected-players .player-card {
	border: 2px solid #4DD470;
	border-radius: 24px;
}

.player-card .uroven-label {
	color: #fff;
	border-radius: 10px;
	display: inline-block;
	padding: 3px 5px;
}

.player-card .uroven-BASIC {
	background-color: #00cc00;
}

.player-card .uroven-SILVER {
	background-color: #949494;
}

.player-card .uroven-GOLD {
	background-color: #af9c5b;
}

.player-card img {
	width: 80px;
	height: 80px;
	border-radius: 50px;
	object-fit: cover;
}

.player-card .player-remove {
	position: absolute;
	top: 15px;
	right: 15px;
}

#selected-players .player-card::before {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 10px;
	display: block;
	color: #4CD471;
}

#selected-players .player-card:nth-child(1)::before {
	content: "Hráč 1";
}
#selected-players .player-card:nth-child(2)::before {
	content: "Hráč 2";
}
#selected-players .player-card:nth-child(3)::before {
	content: "Hráč 3";
}
#selected-players .player-card:nth-child(4)::before {
	content: "Hráč 4";
}
/*--- KREDIT ---*/
.kredit-zbyva {
	margin-bottom: 0;
}

.kredit-zbyva-note {
	position: relative;
	top: -10px;
}

h2.kredit-zbyva {
	margin-bottom: 0;
	font-size: 28px;
}

.vyuzijiKredit h2 {
	margin-top: 0;
}

h2.zmena-rezervace {
	margin: 0;
}

h2.zmena-rezervace + .btn {
	margin-bottom: 30px;
}
/* ------------------------------- !!!end of REZERVACE ------------------------------- */

/* ------------------------------- MUJ UCET ------------------------------- */
section.muj-ucet h1 {
	margin-bottom: 0;
}

section.muj-ucet h2 {
	font-size: 35px;
	margin-top: 10px;
	margin-bottom: 10px;
}

.registrace-uzivatel {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.registrace-typ-clenstvi {
	display: flex;
	align-items: center;
	gap: 20px;
}

.vas-kredit {
	margin-left: auto;
}

.registrace-uzivatel-menu .btn {
	min-width: unset;
}

form .level {
	margin-bottom: 15px;
}

.level .level-box {
	display: grid;
	grid-template-columns: 1fr 4fr 4fr;
	grid-template-areas:
    	"radio nazev stars"
    	"popis popis popis";
	align-items: center;
	padding: 15px;
}

.level .level-box:nth-child(even) {
	background-color: #f0f0f0;
}

.level .level-box:hover {
	background-color: #ddd;
}

.level .level-box input {
	grid-area: radio;
	margin-right: 10px;
}

.level .level-box h3 {
	grid-area: nazev;
}

.level .level-box .stars {
	grid-area: stars;
}

.level .level-box .level-popis {
	grid-area: popis;
	font-size: 14px;
	font-weight: 300;
}

.zmena-terminu {
	background-color: transparent;
	cursor: pointer;
}

.gdpr-souhlas {
	text-align: justify;
	font-size: 12px;
	line-height: 15px;
	font-weight: 500;
}

.password-wrapper {
	position: relative;
}

.password-wrapper input {
	padding-right: 40px;
}

.password-wrapper #toggle-password {
	position: absolute;
	top: 10px;
	right: 15px;
	cursor: pointer;
	font-size: 18px;
}

.rezervace-muj-ucet {
	display: none;
}

/* zápasy */
.moje-zapasy-box {
	border: 2px solid #EE7641;
	border-radius: 30px;
	margin-bottom: 40px;
	padding: 15px;
	position: relative;
}

.moje-zapasy-box .img-cover {
	width: 75px;
	height: 75px;
	border-radius: 50%;
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

.zapas-datum {
	position: absolute;
	top: -17px;
	right: 30px;
	background-color: #EE7641;
	border-radius: 20px;
	color: #fff;
	padding: 5px 10px;
}

.hrac-box {
	position: relative;
	padding: 10px 0;
}

.hrac-box .btn-move {
	position: absolute;
	top: -10px;
}

.hrac-box .btn-move button {
	font-size: 13px;
	background-color: transparent;
	cursor: pointer;
	margin: 0;
	padding: 0;
}

.hrac-box .btn-move button:hover {
	text-decoration: underline;
}

.hrac-img {
	justify-self: center;
	align-content: center;
}

.hrac-level {
	padding: 3px 7px;
	border-radius: 20px;
	color: #fff;
	background-color: #4DD470;
	text-align: center;
	font-size: 12px;
	display: inline-block;
}

.hrac-box .btn {
	min-width: unset;
	padding: 3px 7px;
	border-radius: 20px;
	font-family: LexendExa;
	font-size: 12px;
	text-transform: none;
	display: block;
}

.hrac-text > div {
	padding-bottom: 4px;
}

.score-hraci .box4 {
	justify-self: center;
	align-self: center;
	text-align: center;
	margin-top: 10px;
	margin-bottom: 30px;
	position: relative;
}

.score-form.score-hraci .box4 {
	width: auto;
	height: auto;
}

.score-hraci .box4 .vysledek-setu {
	justify-self: center;
	align-self: center;
	margin: 0 auto;
	border-radius: 20px;
	width: 30px;
	height: 30px;
	line-height: 30px;
}

.score-hraci .box4 .vitez {
	background-color: #4DD470;
	color: #fff;
}

.score-hraci .winnerFlag {
	position: absolute;
	right: -50px;
	bottom: 0px;
	font-size: 25px;
}

.score-hraci .setText {
	padding-bottom: 7px;
}

.score-hraci input[type="number"] {
	width: 60px;
}
.score-form .btn {
	float: right;
}

.score-btn-absolute {
	position: absolute;
	bottom: 10px;
	right: 10px;
}
/* ------------------------------- !!!end of MUJ UCET ------------------------------- */

/* ------------------------------- Tooltip ------------------------------- */
.tooltip {
	position: relative;
	display: inline-block;
	cursor: pointer;
}

.tooltip .tooltip-text {
	visibility: hidden;
	width: auto;
	background-color: black;
	color: #fff;
	text-align: center;
	font-size: 13px;
	padding: 5px;
	border-radius: 5px;
	z-index: 9;
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	opacity: 0;
	transition: opacity 0.3s;
}

.tooltip:hover .tooltip-text {
	visibility: visible;
	opacity: 1;
}
/* ------------------------------- !!!end of Tooltip ------------------------------- */

/* ------------------------------- FOOTER ------------------------------- */
footer {
	color: #fff;
	margin-top: 15px !important;
	position: relative;
}

body.start-page footer:before {
	content: "";
	position: absolute;
	left: -20px;
	top: -140px;
	z-index: -1;
	display: block;
	width: 700px;
	height: 700px;
	background-image: url("../../img/grafika/hod1.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center left;
}

footer > .box-container.full-width {
	overflow: hidden;
}

footer img.footerImg {
	border-radius: 48px 0 0 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

footer .box-left {
	max-width: 730px;
	position: relative;
	align-content: end;
	justify-self: right;
	margin: 0;
}

footer .box-right {
	width: calc(100% + 40px);
}

footer .blue-box {
	background-color: #2A33C0;
	border-radius: 48px;
	padding: 60px;
	margin-top: 120px;
	margin-bottom: 30px;
	width: calc(100% + 90px);
}

footer .blue-box-left {
	margin-right: 40px;
}

footer .blue-box-right {
	margin-left: 40px;
}

footer .blue-box-left .btn {
	max-width: 100%;
	min-width: unset;
	width: 100%;
}

footer .blue-box img {
	margin-bottom: 30px;
}

footer .btn {
	margin-top: 20px;
}

footer .btn.btn-user span {
	position: relative;
	bottom: 6px;
	padding-left: 5px;
}

footer .btn-user svg {
	fill: #EE7641;
}

footer .btn-user:hover svg {
	fill: #2A33C0;
}

footer .footer-contact {
	font-family: Khand;
	font-size: 35px;
	font-weight: 600;
	line-height: 53.52px;
	color: #fff;
	text-decoration: underline;
}

footer .adresa {
	display: block;
	margin-top: 60px;
	text-decoration: underline;
	font-family: Khand;
	font-size: 20px;
	font-weight: 600;
	line-height: 24px;
	color: #fff;
}

footer .social-icons {
	margin-top: 40px;
}

footer .social-icons a {
	display: flex;
	align-items: center;
	color: #fff;
	margin-top: 10px;
	font-family: Khand;
	font-size: 20px;
	font-weight: 600;
	text-decoration: underline;
}

footer .social-icons .soc-ig:before {
	content: "";
	display: inline-block;
	width: 28px;
	height: 28px;
	background-image: url("../../img/grafika/ig.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	margin-right: 10px;
}

footer .social-icons .soc-fb:before {
	content: "";
	display: inline-block;
	width: 28px;
	height: 28px;
	background-image: url("../../img/grafika/fb.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	margin-right: 10px;
}

footer .footer-contact:hover,
footer .adresa:hover,
footer .social-icons a:hover {
	color: #EE7641;
}

footer .footer-bottom {
	margin-right: 40px;
	margin-left: 40px;
	text-align: center;
}

footer .footer-bottom-special {
	width: 615px;
	max-width: calc(100% - 40px);
	margin-left: auto;
	margin-right: auto;
}

footer .footer-bottom > img {
	margin-bottom: 20px;
}

footer .footer-bottom,
footer .footer-bottom a {
	font-family: Khand;
	font-size: 16px;
	font-weight: 600;
	color: #2A33C0;

}

footer .footer_menu {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

footer .footer_menu a {
	position: relative;
	text-transform: uppercase;
}

footer .footer_menu a:hover {
	text-decoration: underline;
}

.footer_menu .dot {
	display: inline-block;
	width: 8px;
	height: 8px;
	background-color: #4DD470;
	border-radius: 50%;
	margin-bottom: 1px;
}
.footer_menu .dot:last-child {
	display: none;
}

footer .copy {
	margin-top: 25px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 25px;
}

footer .copy div {
	display: inline-block;
}

footer .copy a {
	text-decoration: underline;
}

footer .copy a:hover {
	color: #EE7641;
}

/* ------------------------------- !!!end of FOOTER ------------------------------- */

/* ------------------------------- MODAL ------------------------------- */
.modal {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.6);
	z-index: 9999;
}

.modal-content {
	background: #fff;
	max-width: 500px;
	margin: 10% auto;
	padding: 20px;
	border-radius: 10px;
}

.modal-content .close {
	cursor: pointer;
	float: right;
	font-size: 30px;
	line-height: 21px;
	padding: 7px;
	margin: -7px;
}

.modal.show {
	display: block;
}
/* ------------------------------- !!!end of MODAL ------------------------------- */

/* respo menu - hc-offcanvas */
nav#hc-nav-1 *,
nav#hc-nav-1 *:before,
nav#hc-nav-1 *:after {
	box-sizing: content-box;
}

.hc-nav-trigger span,
.hc-nav-trigger span::before,
.hc-nav-trigger span::after {
	background: #2A33C0 !important;
	border-radius: 10px;
}

.hc-offcanvas-nav .nav-container {
	width: calc(100% - 40px) !important;
}

.hc-offcanvas-nav .nav-container,
.hc-offcanvas-nav .nav-wrapper,
.hc-offcanvas-nav ul {
	background: #fff;
	border-radius: 20px;
}

.hc-offcanvas-nav .nav-close-button span::before,
.hc-offcanvas-nav .nav-close-button span::after {
	border-top: 2px solid #000;
	border-left: 2px solid #000;
}

.hc-offcanvas-nav .nav-close-button:hover span::before,
.hc-offcanvas-nav .nav-close-button:hover span::after {
	border-top: 2px solid #fff;
	border-left: 2px solid #fff;
}

.hc-offcanvas-nav .nav-content {
	padding-top: 50px;
}

.hc-offcanvas-nav .nav-content > .nav-close {
	display: none;
}

.hc-offcanvas-nav .nav-content > .nav-close:first-child {
	min-height: 50px;
}

.hc-offcanvas-nav ul {
	width: 100%;
}

.hc-offcanvas-nav:not(.touch-device) li:not(.nav-item-custom) a:not([disabled]):hover {
	background: transparent;
}

.hc-offcanvas-nav.hc-nav-1 .nav-container {custom
	width: calc(100% - 40px) !important;
	left: 20px;
	top: 40px;
}

.hc-nav-trigger {
	right: 30px !important;
	margin: 0px 10px;
	padding: 10px;
	width: 33px;
}

.hc-nav-trigger span {
	left: 0;
	width: 33px;
}

.hc-offcanvas-nav .nav-item-link {
	font-size: 25px !important;
	border-radius: 100px !important;
}

.hc-offcanvas-nav .nav-item-link.btn {
	margin-top: 20px;
}

.hc-offcanvas-nav ul:last-child .nav-item:last-child {
	border-bottom: none !important;
}

.hc-offcanvas-nav ul {
	display: block;
}

.hc-offcanvas-nav ul li {
	float: none;
}

nav.hc-offcanvas-nav ul li:not(.extra-li)::before {
	display: none;
}

nav.hc-offcanvas-nav ul li a {
	text-align: center;
	font-family: Khand;
	font-size: 25px;
	font-weight: 600;
}

.hc-offcanvas-nav a.nav-next::before {
	top: 12px !important;
}

.hc-offcanvas-nav .nav-item-link {
  padding: 3px 12px;
}

.nav-close {
	background-image: url("../../img/logo.png");
	background-size: calc(100% - 50px);
	background-repeat: no-repeat;
	background-position: left center;
}

.hc-offcanvas-nav .nav-wrapper-0 > .nav-content > ul:not(:last-child) {
	margin-bottom: 0 !important;
}

.hc-offcanvas-nav.nav-levels-expand li.level-open > .nav-wrapper::before,
.hc-offcanvas-nav.nav-levels-none li .nav-wrapper::before {
	display: none !important;
}

.hc-offcanvas-nav.nav-levels-expand .nav-wrapper .nav-wrapper,
.hc-offcanvas-nav.nav-levels-none .nav-wrapper .nav-wrapper {
	margin-left: 0 !important;
}

nav.hc-offcanvas-nav ul li {
	margin: 0 0 0 6px;
}

/* ------------------------------- !!!end of NAV ------------------------------- */

/* ------------------------------- RESPO ------------------------------- */
.onMobileTableCell640 {
	display: none;
}
.onDesktopTableCell640 {
	display: table-cell;
}

.onMobileBlock640 {
	display: none;
}

.onMobileInline640 {
	display: none;
}
.onDesktopInline640 {
	display: inline;
}

.onDesktopBlock640 {
	display: block;
}

@media (max-width: 1920px) {

}

@media (max-width: 1220px) {
	.header-container,
	section.banner .banner-textPlace {
		padding-right: 20px;
		padding-left: 20px;
	}

	.tabs .btn.btn-pink {
		min-width: unset;
	}

	section:not(.full-width) {
		padding-right: 20px;
		padding-left: 20px;
	}

	section.banner {
		padding-right: 0;
		padding-left: 0;
	}

	section.hp-box-2 {
		width: calc(100% - 40px);
	}

	section.hp-box-6 .box-container {
		padding-right: 20px;
		padding-left: 20px;
	}

	footer .box-left {
		padding-left: 20px;
	}
}

@media (max-width: 1000px) {
	section.hp-box-3 .box-left::before {
		left: -130px;
		top: -150px;
	}

	footer::before {
		left: -50px;
	}

	.termin-box {
		display: block;
		padding: 10px 10px 10px 10px;
		border-radius: 50px;
		text-align: center;
	}

	.termin-box div {
		margin-bottom: 15px;
	}
}

@media (max-width: 800px) {
	h1, h2 {
		font-weight: 600;
		font-size: 45px;
		line-height: 45px;
	}

	.hc-offcanvas-nav ul.lang_selector {
		position: static;
		display: flex;
		justify-content: center;
		margin-top: 20px;
	}

	.hc-offcanvas-nav .lang_selector a {
		border-radius: 10px !important;
		line-height: 35px;
	}

	.nav-item-wrapper .btn.btn-user span {
		display: inline;
		color: #2A33C0 !important;
	}

	.nav-item-wrapper .btn.btn-user img {
		padding-right: 5px;
		position: relative;
		top: 4px;
	}

	body.start-page .banner img {
		max-height: 590px;
		object-position: bottom;
		clip-path: ellipse(200% 65% at 34% 35%);
	}

	.banner .textova-paska {
		bottom: 50px;
	}

	body.start-page .banner-textPlace {
		top: 110px;
	}

	.banner-textPlace-innner {
		text-align: center;
	}

	.banner p {
		margin: 0 auto;
		max-width: 500px;
		line-height: 20px;
		text-shadow: 1px 1px 5px #000;
	}

	.banner h1 {
		font-size: 50px;
		line-height: 50px;
		margin-top: 0;
	}

	.banner .btn {
		margin-top: 30px;
	}
	
	.banner-textPlace .beforeH1 {
		font-size: 25px;
	}

	section.hp-box-1 {
		margin-top: 140px;
	}

	section.hp-box-1 .left-box {
		margin-bottom: 50px;
	}

	section.hp-box-1 .left-box h2 {
		font-size: 45px;
		line-height: 45px;
	}

	section.hp-box-2 {
		text-align: center;
	}

	section.hp-box-2 h2 {
		margin-bottom: 0;
		font-size: 45px;
		line-height: 45px;
	}

	section.hp-box-2 img {
		float: none;
		aspect-ratio: 1.5;
		object-fit: cover;
		width: 100%;
	}

	.tab-content {
		padding: 0;
	}

	section.hp-box-2 .tab-content > div {
		order: 2;
	}

	section.hp-box-2 .tab-content > div + div {
		order: 1;
	}

	section.hp-box-2 .btn {
		margin-top: 10px;
	}

	section.hp-box-3 {
		margin-bottom: -250px;
	}

	section.hp-box-3 h2 {
		font-size: 45px;
		line-height: 45px;
	}

	section.hp-box-3 .box-left {
		width: calc(100% - 20px);
	}

	section.hp-box-3 .box-right {
		left: unset;
		top: -150px;
		margin: 0 auto;
	}

	section.hp-box-3 .green-box {
		text-align: center;
		width: calc(100% - 40px);
		margin: 0 auto;
	}

	section.hp-box-4 h2 {
		font-size: 45px;
		line-height: 45px;
	}

	section.hp-box-4 .box-right {
		order: 1;
		width: calc(100% - 20px);
		justify-self: end;
		margin-top: 170px;
	}

	section.hp-box-4 .box-left {
		order: 2;
		right: unset;
		top: -150px;
		justify-self: center;
	}

	section.hp-box-4 .blue-box {
		margin-top: 0;
		text-align: center;
		width: calc(100% - 40px);
		margin: 0 auto;
	}

	section.hp-box-5 {
		margin-top: -130px;
		text-align: center;
	}

	section.hp-box-5 .btn {
		display: block;
		max-width: 300px;
		margin-right: auto;
		margin-left: auto;
	}

	section.hp-box-5 .nauc-se-hrat .btn {
		position: static;
		margin-top: 50px;
	}

	section.hp-box-6 h2 {
		font-size: 45px;
		line-height: 45px;
	}

	section.hp-box-7 {
		text-align: center;
	}

	section.hp-box-7 h2 {
		font-size: 45px;
		line-height: 45px;
	}

	section.hp-box-7 p {
		margin-right: auto;
		margin-left: auto;
	}

	section.muj-ucet form img {
		display: block;
		margin: 5px auto 12px auto;
	}

	footer {
		text-align: center;
		overflow-x: hidden;
	}

	footer .box-right {
		order: 1;
		width: calc(100% - 20px);
		justify-self: end;
	}

	footer .box-left {
		order: 2;
		width: 100%;
		max-width: 100%;
		top: -100px;
		padding-left: 0;
	}

	footer .blue-box {
		width: calc(100% - 40px);
		padding: 40px;
	}

	footer .blue-box-right {
		margin-left: 0;
	}

	footer .blue-box-left {
		margin-bottom: 40px;
		margin-right: 0;
	}

	footer .footer-bottom {
		margin-right: 20px;
		margin-left: 20px;
	}

	footer .social-icons a {
		justify-content: center;
	}

	.tabs label.btn {
		flex: 0 0 auto;
		padding: 8px 20px;
	}

	h1.page_title {
		font-size: 45px;
		line-height: 45px;
	}

	.registrace-typ-clenstvi {
		display: block;
	}

	/* --- zapasy --- */
	.hrac-text {
		display: none;
		position: fixed;
		background-color: #fff;
		z-index: 9999;
		padding: 15px;
		width: 100%;
		left: 0;
		top: 0;
		height: 100%;
		align-content: center;
		text-align: center;
	}

	.hrac-box.active .hrac-text,
	.hrac-box.active .hrac-text .img-cover {
		display: block !important;
		margin: 0 auto;
	}

	.hrac-img {
		justify-self: auto;
		cursor: pointer;
	}

	.hrac-box .close-btn {
		display: block !important;
	}

	.hrac-text > div {
		margin-top: 7px;
		margin-bottom: 7px;
	}

	.hrac {
		position: relative;
	}

	.hrac-box .btn-move {
		position: relative;
		width: 100%;
		top: -160px;
	}

	.hrac-box .btn-move button {
		font-family: 'Khand';
		cursor: pointer;
		border-radius: 100px;
		border: 2px solid #4DD470;
		color: #fff;
		background-color: #4DD470;
		min-width: 255px;
		text-align: center;
		padding: 8px 26px;
		display: inline-block;
		font-weight: 600;
		max-height: 45px;
		font-size: 16px;
		text-transform: uppercase;
		text-decoration: none;
	}

	.hrac-box .btn {
		padding: 8px 26px;
		font-size: 16px;
	}

	.close-btn {
		position: absolute;
		top: 8px;
		right: 8px;
		width: 24px;
		height: 24px;
		background: #000;
		border-radius: 50%;
		cursor: pointer;
	}

	/* křížek */
	.close-btn::before,
	.close-btn::after {
		content: '';
		position: absolute;
		top: 50%;
		left: 50%;
		width: 12px;
		height: 2px;
		background: #fff;
	}

	.close-btn::before {
		transform: translate(-50%, -50%) rotate(45deg);
	}

	.close-btn::after {
		transform: translate(-50%, -50%) rotate(-45deg);
	}
	/* --- --- */
}

@media (max-width: 640px) {
	.onMobileTableCell640 {
		display: table-cell;
	}
	.onDesktopTableCell640 {
		display: none;
	}

	.onMobileInline640 {
		display: inline;
	}
	.onDesktopInline640 {
		display: none;
	}

	.onDesktopBlock640 {
		display: none;
	}

	.onMobileBlock640 {
		display: block;
	}

	.historie-table {
		font-size: 12px;
	}

	.historie-table th,
	.historie-table td {
		padding: 5px;
	}

	body.start-page .banner {
		min-height: calc(100vh + 90px);
	}

	section.hp-box-1 {
		margin-top: 30px;
	}
	
	section.hp-box-3 .green-box {
		padding: 40px;
	}

	section.hp-box-4 .blue-box {
		padding: 40px;
	}

	section.hp-box-5 h2 {
		max-width: 290px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 30px;
		font-size: 45px;
		line-height: 45px;
	}

	section.hp-box-5 .multisportky {
		padding: 40px;
	}

	section.hp-box-5 .nauc-se-hrat h2 {
		text-align: center;
	}

	section.hp-box-5 .nauc-se-hrat .btn {
		position: static;
	}

	section.hp-box-6 {
		text-align: center;
	}

	section.hp-box-6 h2 {
		float: none;
		margin-bottom: 0;
	}

	section.hp-box-6 .btn {
		float: none;
		margin-bottom: 20px;
	}

	footer .footer_menu {
		flex-wrap: wrap;
		justify-content: center;
	}

	footer .footer_menu a {
		padding-right: 10px;
		padding-left: 10px;
	}

	footer .copy {
		display: block;
	}

	footer .copy div {
		display: block;
		width: 100%;
	}

	footer .copy div.footer-link-gdpr,
	footer .copy div.footer-link-cookies {
		display: inline-block;
		margin: 20px;
		width: auto;
	}

	footer .footer-bottom-special {
		width: calc(100% - 40px);
		max-width: calc(100% - 40px);
	}

	.gap30 {
		gap: 10px;
	}

	form .level {
		gap: 10px;
		justify-content: center;

	}

	form .level label {
		min-width: 0;
		padding: 15px 6px;
	}

	.registrace-uzivatel {
		display: block;
	}

	.legenda div.legenda-title {
		display: block;
		margin-bottom: 10px;
	}

	.legenda div {
		display: block;
		margin-bottom: 6px;
	}

	/* --- rezervace --- */
	section.rezervace {
		margin-bottom: 0;
	}

	section.rezervace .btn {
		display: block;
		width: 100%;
		margin-top: 8px;
		margin-bottom: 8px;
	}

	section.rezervace .btn.objednat-a-zaplatit {
		margin-top: 22px;
	}

	li.select2-selection__choice span {
	 	font-size: 12px;
	 	white-space: normal;
	}

	section.vyber-termin,
	section.potvrzeni {
		padding-left: 0;
		padding-right: 0;
	}

	/* --- muj ucet --- */
	section.muj-ucet {
		padding-right: 10px;
		padding-left: 10px;
	}
	section.muj-ucet .btn {
		display: block;
		width: 100%;
		margin-top: 8px;
		margin-bottom: 8px;
	}

	section.muj-ucet .registrace-typ-clenstvi .btn {
		min-width: 0;
		width: auto;
		float: right;
	}

	.historie-table td.action-column,
	.historie-table td.action-column button {
		font-size: 14px;
		line-height: 16px;
	}

	.player-card {
		display: grid;
		grid-template-columns: 80px 1fr;
		gap: 15px;
		align-items: center;
		padding: 10px;
		border-radius: 10px;
		text-align: left;
	}

	.player-card .player-name h4 {
		margin: 0;
		display: inline;
		font-size: 14px;
	}

	#selected-players .player-card::before {
		display: none;
	}

	.player-card .player-remove {
		top: auto;
		bottom: 15px;
	}

	.player-card .uroven-label {
		display: inline-block;
		margin-top: 5px;
	}

	.moje-zapasy-box {
		border-radius: 20px;
		margin-bottom: 30px;
	}

	.rezervace-muj-ucet {
		display: block;
	}
}

@media (max-width: 470px) {
	body.start-page .banner img {
		content: url('../../img/hp/padel_bg_202603b.jpg');
		max-height: 590px;
		object-position: bottom;
		clip-path: ellipse(200% 65% at 34% 35%);
	}
}

@media (max-width: 380px) {
	section.hp-box-1 .left-box::before {
		left: -105%;
		top: -3%;
	}

	section.hp-box-1 {
		text-align: center;
	}
}
/* ------------------------------- !!!end of RESPO ------------------------------- */
