html{
	font-size: 13px;
	background-color: #FAFAFA;
}
body{
	font-family: 'Roboto', sans-serif;
	color: #333;
}
.container{
	width: 100%;
	display: block;
	padding: 0;
}
.wide{
	width: 1200px;
	height: auto;
	margin: 0 auto;
	max-width: 100%;
}
.btn{
    cursor: pointer;
}
.btn-primary{
	display: inline-block;
    background-color: rgba(50,31,219,0.9);
    color: #fff;
    padding: 10px;
    text-decoration: none;
    border-radius: 5px;
    outline: none;
    border: 0;
}
.btn-primary i{
	margin-right: 5px;
}
.btn-primary:hover {
    background-color: #321FDB;
}
.btn-info{
	display: inline-block;
    background-color: rgba(51, 153, 255, 0.9);
    color: #fff;
    padding: 10px;
    text-decoration: none;
    border-radius: 5px;
    outline: none;
    border: 0;
}
.btn-info i{
	margin-right: 5px;
}
.btn-info:hover {
    background-color: #3399ff;
}
.btn-danger{
	display: inline-block;
    background-color: rgba(223, 1, 1, 0.9);
    color: #fff;
    padding: 10px;
    text-decoration: none;
    border-radius: 5px;
    outline: none;
    border: 0;
}
.btn-danger i{
	margin-right: 5px;
}
.btn-danger:hover {
    background-color: #DF0101;
}
.btn-dark{
	display: inline-block;
    background-color: rgba(99, 111, 131,0.9);
    color: #fff;
    padding: 10px;
    text-decoration: none;
    border-radius: 5px;
    outline: none;
    border: 0;
}
.btn-dark i{
	margin-right: 5px;
}
.btn-dark:hover {
    background-color: #636f83;
}
.btn-warning{
	display: inline-block;
    background-color: rgba(255, 193, 7,0.9);
    color: #fff;
    padding: 10px;
    text-decoration: none;
    border-radius: 5px;
    outline: none;
    border: 0;
}
.btn-warning i{
	margin-right: 5px;
}
.btn-warning:hover {
    background-color: #ffc107;
}
/*-----------*/
.text-primary{
	display: inline-block;
    color: #321FDB;
    font-weight: 500;
    text-decoration: none;
}
.text-primary i{
	margin-right: 5px;
}
.text-info{
	display: inline-block;
    color: #3399ff;
    font-weight: 500;
    text-decoration: none;
}
.text-info i{
	margin-right: 5px;
}
.text-danger{
	display: inline-block;
    color: #DF0101;
    font-weight: 500;
    text-decoration: none;
}
.text-danger i{
	margin-right: 5px;
}
.text-dark{
	display: inline-block;
    color: #636f83;
    font-weight: 500;
    text-decoration: none;
}
.text-dark i{
	margin-right: 5px;
}
.text-warning{
	display: inline-block;
    color: #ffc107;
    font-weight: 500;
    text-decoration: none;
}
.text-warning i{
	margin-right: 5px;
}
/*phân trang*/
.pagination{
    width: 100%;
    height: auto;
    margin-top: 20px;
}
.pagination ul{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.pagination ul li{
    list-style: none;
    margin-left: 5px;
}
.pagination ul li a{
    display: inline-block;
    text-decoration: none;
    padding: 7px 10px;
    border: 1px solid#6f3626;
    color: #000;
}
.pagination ul li:hover a{
    background-color: #6f3626;
    color: #fff;
}
.pagination ul li.active a{
    background-color: #6f3626;
    color: #fff;
}
.overlay-container{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, .6);
    display: none;
    transition: all .3s ease;
    z-index: 1;
}
.overlay-container.show{
    display: block;
}
.table-overflow{
    width: 100%;
    overflow: auto;
}