/*
Theme Name: skygen_parcer
Description: skygen_parcer
Author: SKaryuk - kit-service - korjeek@gmail.com tg/wa +79899500527
Version: 1.0
*/

html {
    /* margin-top: 0 !important; */
}

#page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

#content {
    flex: 1;
}

.site-container {
    max-width: 1900px !important;
	width: 100%;
}

.site-header {
	/* position: fixed; */
    right: 0;
    left: 0;
    z-index: 150;
    box-shadow: 0px 4px 7px rgba(0, 0, 0, 0.15);
}

.header-container {
	display: flex;
	padding: 10px;
}

.header-logo {
	width: 80px;
}

.menu {
	display: flex;
}

#primary-menu ul {
    display: flex;
    gap: 20px;
    list-style-type: none;
	padding: 10px;
}

#primary-menu ul li a {
	color: #00BF7C;
    font-size: 16px;
    font-weight: 600;
	transition: all 0.4s ease 0s;
}

#primary-menu ul li a:hover {
    color: #8B8B8B;
}

.site-footer {
    background-color: #0e7550;
    color: #fff;
    padding-bottom: 30px;
	padding-top: 40px;
}

.site-footer .footer-navigation ul {
	flex-direction: column;
	list-style-type: none;
	font-size: 16px;
	padding-left: 5px;
    padding-right: 5px;
}

.site-footer .footer-navigation ul li {
	background-color: #0e7550;
    color: #fff;
    padding-bottom: 5px;
}

.site-footer .footer-navigation ul li a {
	color: #fff;
    transition: all 0.4s ease 0s;
    text-decoration: none;
}

.site-footer .footer-navigation ul li a:hover {
	color: #ff3e3e;
}

.tabs {
    display: flex;
    border-bottom: 2px solid #ccc;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tab {
	padding: 10px 20px;
    cursor: pointer;
    border: 1px solid #ccc;
    border-bottom: none;
    background: #f9f9f9;
    flex: 0 0 25%;
    border-radius: 5px;
}

@media (max-width: 600px) {
	.tab {
		flex: 0 0 50%;
	}
	
	th {
		display: none;
	}
	
	.tab-content{
		padding: 0px !important;
	}
	
	tr {
		border-bottom: 2px solid black;
	}
}

.tab.active {
	background: white;
	font-weight: bold;
	border-top: 2px solid #007BFF;
	border-left: 2px solid #007BFF;
	border-right: 2px solid #007BFF;
}

.tab-content {
	display: none;
	border: 2px solid #ccc;
	padding: 20px;
	background: #fff;
}

.tab-content.active {
	display: block;
}

.closed{
	height: 1.5em;
    overflow: hidden;
    margin-bottom: 1em;
}

.expand{
	color: blue;
    cursor: pointer;
    text-decoration: underline;
    margin-left: 1em;
}