#control-nav {
	visibility: hidden;
	position: absolute;
	left: -9999px;
	opacity: 0
}
.control-nav {
	position: relative;
	width: 30px;
	height: 35px;
	display: block;
	z-index: 999999;
	float: left;
	margin-right: 2.8rem;
	transition: all .2s ease-in-out;
	cursor: pointer
}
.abrir {
	border-top: 2px solid #fff;
	margin-top: 16px;
	-webkit-transition: all 1000ms ease;
	-moz-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
	transition: all 1000ms ease
}
.abrir:before {
	height: 2px;
	background: #fff;
	margin-top: -10px;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
    -o-transition: all 500ms ease;
	transition: all 500ms ease
}
.abrir:after {
	height: 2px;
	background: #fff;
	margin-top: 14px;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
    -o-transition: all 500ms ease;
	transition: all 500ms ease
}
.abrir, .abrir:before, .abrir:after {
	content: "";
	display: block;
}
.overlay-close {
	position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .4);
    opacity: 0;
    width: 100%;
    z-index: -9;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    -moz-transition: translate(-100%, 0);
    visibility: hidden
}
.sidebar {
	position: fixed;
    top: 0;
    bottom: 0;
    z-index: 0;
    left: 0;
    width: 50%;
    opacity: 0;
    overflow-x: auto;
    text-align: center;
    display: table;
    height: 100%;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    -webkit-align-items: center;
	align-items: center;
	-webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    -webkit-transform: translate(-100%, 0);
    -moz-transition: translate(-100%, 0);
    transform: translate(-100%, 0)
}
.sidebar .container {
	width: 100%
}
.sidebar ul {
	display: table-cell;
	vertical-align: middle;
	text-align: left
}
.sidebar ul li a {
	display: block;
	padding: 1.4rem 0;
	font-size: 1.4rem;
	color: #fff;
	text-decoration: none
}
.sidebar ul li a:hover {
	color: #07beb5;
}
.sidebar ul li button {
	font-size: 1.4rem;
	padding: 1rem !important;
    box-shadow: none
}
.sidebar ul li .btn-primary {
	margin-bottom: 2rem
}
.sidebar ul li .btn-outline {
	margin: .8rem 0;
	display: inline-block
}
.sidebar ul hr {
	margin: .8rem 0;
	border-top: 1px solid rgba(255,255,255, 0);
    border-bottom: 0px;
    border-right: 0;
    border-left: 0
}

/* FUNÇÃO CHECKED ABRIR NAV */
#control-nav:checked ~ .sidebar {
	z-index: 99999;
    opacity: 1;
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	transform: translate(0, 0);
    background: rgba(0, 0, 0, .9)
}
#control-nav:checked ~ .overlay-close {
	opacity: 1;
    z-index: 9;
    visibility: inherit
}
#control-nav:checked ~ .control-nav .abrir {
	border-top: 0
}
#control-nav:checked ~ .control-nav .abrir:before {
	margin-top: 10px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease
}
#control-nav:checked ~ .control-nav .abrir:after {
	margin-top: -2px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease
}
@media screen and (max-width:1024px) {

}
@media only screen and (max-width:768px) {
	nav {
		display: none
	}
	.sidebar {
		padding-top: 80px;
		-webkit-align-items: normal;
    	align-items: normal;
	}
}
@media only screen and (max-width:480px) {
	.control-nav {
		width: 24px;
		margin-right: 2rem
	}
	.abrir {
    	margin-top: 18px
	}
	.sidebar {
		padding-left: 5%;
		width: 80%;
		justify-content: inherit;
		-webkit-align-items: normal;
    	align-items: normal;
		padding-top: 80px
	}
}