*{
	padding: 0;
	margin: 0;
}
.body{

	background: #3E3B37;
	overflow: hidden;
}
.side{
	
	color:#fff;
	height: 100vh;
	position: absolute;
	z-index: 1000;
	top: 40px;
	display: none;
	right: 20px
}
.side .side-content{
	overflow: hidden;
}
.side .side-content a{
	float: left;
	width: 100%;
	padding: 10px;
	text-decoration: none;
	color: #fff;
	font-weight: 600
}
.side .side-content a:hover{
	background: #17202A
}
.nav-bar{
	background: #F4F4F5;
	font-weight: 600;
	overflow: hidden;
}
.nav-bar .menu{
	display: block;
}
.main{
	overflow-y: scroll;
	height: 100vh
}
.pagination {
    display: inline-block;
    margin-top: 20px;
}

.pagination a {
    color: black;
    float: left;
    padding: 8px 16px;
    text-decoration: none;
    transition: background-color .3s;
}

.pagination a.active {
    background-color: blue;
    color: white;
}

.pagination a:hover:not(.active) {
    background-color: red;
    color: white;
}
.form button{
	background: #FF8904;
	padding: 10px;
	border-radius: 2px;
	border:none;
	color:#fff;
	font-weight: 600;
	width: 30%
}
.side .menu{
		display: none;
}
.button{
	background: #FF8904;
	padding: 5px;
	border-radius: 2px;
	border:none;
	color:#fff;
	font-weight: 600;
	width: 100%
}
.modals{
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 1000;
	background: rgba(0,0,0,.5);
	top: 0;
	left: 0
}
@media (min-width:100px) and (max-width:990px) {
	.side{
		position: fixed!important;
		z-index: 2000;
		width: 100%;
		max-width: 250px;
		height: 100%;
		display: none;
	}
	.nav-bar .menu{
		display: block;
	}
	.side .menu{
		display: block;
	}
}
