/* Alapok */



html, body {
	font-family: 'Open Sans', sans-serif !important;
	font-size: 16px !important;
	color: #666666 !important;
	height:100%;
	margin:0;
	padding:0;
}


body.noscroll {
	overflow: hidden;
}









.my-leftside {
	width: 150px;
	max-width: 150px;
	margin: 0;
	padding: 0;
}
.my-centerside {
	margin: 0;
	padding: 0;
}
.my-rightside {
	margin: 0;
	padding: 0;
	display: block;
}






.my-footer [data-rule='box1'] {
	color: #bbbbbb;
	background-color: #545E64;
	font-size: 0.8em;
}
.my-footer [data-rule='box1'] a {
	color: #bbbbbb;
	font-size: 1em;
}
.my-footer [data-rule='box1'] i {
	font-size: 1.3em;
}
.my-footer [data-rule='box2'] {
	color: white;
	background-color: #6caf42;
	font-size: 0.7em;
}
.my-footer [data-rule='box2'] i {
	font-size: 1em;
}






.my-sidebar {
    width: 250px;
    position: fixed;
    top: 0;
    left: -260px;
    height: 100vh;
    z-index: 999;
    background-color: white;
    transition: all 0.3s;
    overflow-y: auto;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
	font-size: 1.2em;
}
.my-sidebar a {
	font-size: 1.2em;
}


.my-sidebar.active {
    left: 0;
	width: 75%;
}


.my-sidebar-close {
    padding: 5px;
	color: yellow;
	/*background-color: #ffffff;*/
    cursor: pointer;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}


.my-sidebar-close:hover {
    background-color: red;
    color: #ffffff;
}


.my-sidebar-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    display: none;
}


.my-sidebar-header {
	padding: 5px 0px 0px 5px;
	border-bottom: #dddddd solid 1px;
}


.my-sidebar-header img {
    height: 40px;
}

.my-sidebar-menu {
}

.my-sidebar-menu a {
}

.my-sidebar-menu a:hover{
}





.my-navbar-navbtn {
	position: fixed;
	top: 0;
	right: 0;
	opacity: 1;
	z-index: 1000;
	padding: 10px 8px 5px 10px;
	color: yellow;
	background-color: black;
}
.my-navbar-navbtn:hover {
	cursor: pointer;
	color: red;
}









img.my-logo {
	height: 37px;
}




.my-header-menu {
}

.my-header-menu a {
	color: yellow;
}

.my-header-menu a:hover{
	color: red;
}




.my-header-img {
	width: 100%;
	height: 30%;
	background-size: cover;
}










/* sm */
@media screen and (min-width: 576px) {
	.my-sidebar.active {
		left: 0;
		width: 50%;
	}

	.my-header-img {
		height: 30%;
	}

} /* sm */





/* md */
@media screen and (min-width: 768px) {
	.my-sidebar.active {
		left: 0;
		width: 40%;
	}
	
	img.my-logo {
		height: 55px;
	}

	.my-header-img {
		height: 40%;
	}

} /* md */





/* lg */
@media screen and (min-width: 992px) {
	/*.my-rightside {
		display: auto;
		width: 150px;
		max-width: 150px;
		margin: 0;
		padding: 0;
	}*/

	img.my-logo {
		height: 74px;
	}
	
	.my-header-img {
		height: 50%;
	}
	
} /* lg */





/* xl */
@media screen and (min-width: 1200px) {
} /* xl */









/* Elmentjük a media query eredményét, hogy a JS ki tudja olvasni */
#my-media:before {
	content: "xs";
}
@media screen and (min-width: 576px) {
	#my-media:before {
		content: "sm";
	}
}
@media screen and (min-width: 768px) {
	#my-media:before {
		content: "md";
	}
}
@media screen and (min-width: 992px) {
	#my-media:before {
		content: "lg";
	}
}
@media screen and (min-width: 1200px) {
	#my-media:before {
		content: "xl";
	}
}


