.header >*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

.body{
	position: relative;
	height: 100%;
}

.body::after{
	content: "";
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 100;
	opacity:1;
	transition: 0.65s ease;
	background-color: #5c5c5c91;
}

.container{
	max-width: 1500px;
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
}
.header{
	padding: 20px 0;
	background: #f1f9de;
	-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
	-moz-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}
.header__container{
	position: relative;
	display: flex;
	gap: 15px;
	align-items: center;
	justify-content: space-between;
}
.menu-visible,
.menu-hover,
.menu-visible li,
.menu-hover li{
	list-style: none;
}

.menu__item-hover{
	min-width: 250px;
	border-bottom: 1px solid #8a9a6f6b;
	transition: 0.65s ease;
}



.menu-hover,
.menu__link-hover,
.menu__item-visible,
.secret__open{
	transition: 0.65s ease;
}
.menu__link-visible,
.menu__link-hover:hover{
	color: #383838;
}
.menu__link-hover,
.menu__link-visible{
	text-decoration: none;
}
.header__container-mobile ul, li{
	list-style: none;
}
.header__container-mobile ul li a{
	color: white;
	text-decoration: none;
}

.menu-hover{
	left: 0;
	bottom: 0;
	color: white;
	flex-direction: column;
	padding: 15px;
	border-radius: 5px;
	background: #f1f9de;
	box-shadow: 0 0 5px #383838;
	gap: 5px;
}
.menu__link-hover{
	padding: 5px;
	display: inline-block;
	color: #324a29;
}

.green{
	color: #5b7c18;
}
.menu-visible{
	display: flex;
	padding-left: 0;
}

.menu__item-visible{
	position: relative;
	padding: 15px;
	z-index: 10;
	transition: none !important;
}

.menu__link-visible{
	height: 100%;
	width: 100%;
	display: inline-block;
}

.menu__item-visible::after{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 35px;
	display: none;
	transform: translate(0px, 50%);
}

.menu__item-visible:hover{
	background: #5b7c18;
}

.menu__item-visible:hover .menu__link-visible{
	color: white;
}

.menu__item-visible:hover .menu-hover{
	display: flex;
	transform: translate(0px, 100%);
	bottom: -10%;
}

.menu__item-visible:hover::after{
	display: inline-block;
}

.menu-hover{
	position: absolute;
	display: none;
}
.logo img{
	max-width: 90px;
}
.menu-visible{
	display: flex;
}
.header__item{
	display: flex;
	flex-direction: column;
	gap: 5px;
	text-align: right;
}
.header__item a{
	font-size: 18px;
	width: auto;
	margin-left: auto;
}

/* ? burger */
.burger{
	cursor: pointer;
	position: relative;
	display: none;
	width: 25px;
	height: 17px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.burger span,
.burger span::after,
.burger span::before{
	display: inline-block;
	width: 25px;
	height: 1px;
	background-color: #383838;
}

.burger span::before,
.burger span::after{
	content: "";
	position: absolute;
}
.burger span::before{
	top: 0;
}
.burger span::after{
	bottom: 0;
}

.click-me{

	position: relative;
	z-index: 100;
	height: 100%;
	width: 100%;
}

/* ? sidebar bottom menu */
.item__block{
	display: flex;
	gap: 20px;
	align-items: center;
	justify-content: space-between;
}
.header__container-mobile{
	height: auto;
	min-height: 100vh;
	padding: 15px;
	display: inline-block;
	width: auto;
	background: #1b2d1c;
	z-index: 150;
	flex-direction: column;
}
.header__container-mobile{
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	visibility: hidden;
	transition: .75s ease;
	transform: translate(-500px, 0);
}
.header__container-mobile ul{
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.mobile-active{
	display: flex;
	gap: 40px;
	opacity: 1;
	visibility: visible;
	transform: translate(0, 0);
}
.first__secret{
	padding-right: 25px;
	margin: 0;
    padding-left: 0;
}
.secret{
	display: none !important;
	margin: 10px 0;
}
.secret__open{
	max-width: 225px;
	min-width: 175px;
	width: 100%;
	position: relative;
	display: flex;
	align-items: center;
}
.click{
	position: absolute;
	right: 0;
	color: white;
	font-size: 22px;
	cursor: pointer;
}


.secret-active{
	padding-left: 15px;
	display: flex !important;
	gap: 20px !important;
    margin-bottom: 25px;
}

.secret-active li{
	min-width: 250px;
	line-height: 24px;
}

.active-item{
	flex-direction: column;
    align-items: flex-start;
}

.active-item .click{
	transform: rotate(45deg);
}

.active-item a{
	padding-bottom: 2px;
	border-bottom: 1px solid white;
}




@media(max-width: 1120px) {
	.menu__item-visible{
		padding: 5px;
	}
	.menu-visible{
		flex-wrap: wrap;
	}
}
@media(max-width: 746px) {
	.menu-visible{
		display: none;
	}
	.burger{
		display: inline-flex;
	}
	.header__container{
		justify-content: flex-start;
	}
	.header__item{
		margin-left: auto;
	}
}
@media(max-width: 410px){
	.header__item span:last-child{
		display: none;
	}
}
@media(max-width: 380px) {
	.logo img{
		max-width: 70px;
	}
	.header__container{
		gap: 10px;
	}
	.header__item a{
		font-size: 16px;
	}
}

.mobile-close__burger{
	cursor: pointer;
	position: relative;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 25px;
	height: 25px;
}

.mobile-close__burger span{
	display: inline-block;
	position: absolute;
	width: 25px;
	height: 1px;
	background-color: #f1f9de;
	transform: rotate(45deg);
}

.mobile-close__burger span::after{
	content: "";
	position: absolute;
	width: 25px;
	display: inline-block;
	height: 1px;
	background-color: #f1f9de;
	transform: rotate(90deg);
}


section{
	height: 100%;
}

.fix{
	top: 0;
	padding: 0;
	z-index: 1000;
}

.menu__item-hover{
	transition: 0.35s ease;
}

.menu__item-hover:hover .menu__link-hover{
	color: green;
}

.menu__item-hover:hover{
	color: green;
	border-bottom: 1px solid black;
}

.rozliv{
    margin-top: 40px;
}

.table{
    max-width: 750px;
    font-weight: 700;
}

.table .tbody tr td:first-child{
    text-align: left;
}

.table .tbody:first-child tr td:nth-child(even){
    background-color: #c5ed76;
}

.table .tbody:first-child tr td:nth-child(odd){
    background-color: #dcdcdc;
}

.table .tbody:not(:first-child) tr td{
    background-color: rgb(51, 74, 10, 0.6);
    color: white;
}

.tbody-first tr td{
    text-align: center;
    font-size: 17px;
}

.tbody tr td:first-child{
    max-width: 150px;
}

.tbody tr td{
    padding: 5px;
    box-shadow: 0 0 5px black;
}

.tbody tr td:not(:first-child) {
    text-align: center;
}

@media(max-width: 452px) {
    .table{
        font-size: 14px !important;
        font-weight: 400;
    }
    .tbody tr td{
        padding: 2px;
    }
    *>.tbody tr td{
        padding: 2px !important;
        font-size: 14px !important;
        font-weight: 400 !important;
    }
}
