@charset "utf-8";
/* CSS Document */

.sidebar {
	/*position: static;*/
    position: sticky;
    top: 60px;
	/*height: 100%;*/
	width: 210px;
	/*background-color: #222d32;*/
	padding-bottom: 36px;
}
.openbtn {
	display: none;
}
.sidebar .closebtn {
	display: none;
}

@media screen and (max-width: 1024px) {

.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(114, 137, 115, 0.5);
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 50px;
    z-index: 100000;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: column;
    box-shadow: 0px 6px 16px 0px rgba(0,0,0,0.24);
}
/*.sidebar a {
	padding: 8px 8px 8px 32px;
	text-decoration: none;
	font-size: 25px;
	color: #818181;
	display: block;
	transition: 0.3s;
}
.sidebar a:hover {
	color: #f1f1f1;
}*/
.sidebar .closebtn {
	/*display: block;
	position: absolute;
	top: 0;
	right: 10px;
	color: #000;
	font-size: 30px;
	padding: 0px;*/
    display: flex;
    position: absolute;
    top: 7px;
    right: 10px;
    color: #000;
    font-size: 17px;
    padding: 0px;
    width: 36px;
    height: 36px;
    background-color: #eee;
    justify-content: center;
    align-items: center;
    -webkit-border-radius: 18px;
    -moz-border-radius: 18px;
    border-radius: 18px;
}
.openbtn {
	display: block;
	/*width: 150px;*/
    position: sticky;
    top: 59px;
    width: 100%;
	height: 45px;
	font-size: 1.6rem;
    font-weight: 500;
	cursor: pointer;
	background-color: #c97b63;
	color: white;
	/*padding: 10px 15px;*/
	border: none;
    margin-bottom: 20px;
    z-index:99997;
}
.openbtn:hover {
	background-color: #444;
}
.openbtn svg{
    margin-right: 5px;
}
#main {
	transition: margin-left .5s;
	padding: 0px;
}
}
@media screen and (max-width: 820px) {



}