body{
	font-family: 'Roboto Condensed', sans-serif;
	margin: 0px;
	padding: 0px;
	font-size: 14px;
	line-height: 20px;
}
a:hover{
	color: #ffc107;
}
.clear-fix{
	clear: both;
}
.outer{
	width: 100%;
	display: flex;
	justify-content: space-between;
	min-height: 100vh;
}
.outer > .left-sidebar{
	width: 230px;
	background-color: #f0f0f0;
	min-height: 100vh;
}
.outer > .main-content{
	width: 100%;
	height: 100%;
	padding: 20px;
	background-color: #fff;
	min-height: 100vh;
}
.outer > .left-sidebar .logo{
	height: 80%;
	width: auto;
}
.outer > .left-sidebar > .top{
	height: 80px;
	padding: 10px 0px;
	border-bottom: 1px solid #000;
	display: flex;
	align-items: center;
	justify-content: center;
}
.outer > .left-sidebar .menu{
	margin-top: 30px;
}
.outer > .left-sidebar .menu ul{
	padding-left: 15px;
	list-style-type: none;
}
.outer > .left-sidebar .menu ul a{
	font-weight: 600;
	display: block;
	padding: 5px 0px;
}
.userDetail-page .wrap-change-password{
	display: none;
}
body.login-page{
	background-image: url('../images/bg-login.jpg');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	height: 100vh;
}
body.login-page .container{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}
body.login-page .wrap-login{
	width: 500px;
	background-color: rgba(255, 255, 255, 0.6);
	padding: 40px;
	margin-bottom: 100px;
	border-radius: 10px;
}
@keyframes success{
	0% {
		opacity: 0;
	}
	50% {
		opacity: 0.5;
	}
	100% {
		opacity: 0;
	}
}
.action-success{
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 999;
	width: 100%;
	background-color: #58ca5ca6;
	height: 100vh;
	display: none;
	opacity: 0;
}
.action-success.active{
	display: block;
	opacity: 1;
	animation: success 0.4s forwards;
}
.input-group{
	display: flex;
	justify-content: flex-end;
}
.input-group > * {
	margin-left: 10px !important;	
}
.input-group > *:first-child{
	margin-left: 0px !important;
}
.filter{
	float: right;
}
.addKeyword-page{
	/*max-width: 600px;*/
}
.typeahead{
	font-size: 13px;
}
.form-group{

}
.pagination{
	margin-bottom: 0px;
}
.pagination-box{
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.pagination-box > p{
	margin-right: 15px;
}
.input-sm{

}
table.table-order thead th.order > div{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
table.table-order thead th.order > div:hover{
	cursor: pointer;
}
table.table-order thead th.order > div img{
	width: 8px;
	height: 11px;
	display: block;
	cursor: pointer;
	opacity: 0.6;
	display: none;
}
table.table-order thead th.order > div:hover img{
	opacity: 1;
}
.addKeyword-page .colums-2{
	/*display: flex;
	justify-content: space-between;*/
}
.addKeyword-page .colums-2 > div{
	/*width: 49%;
	max-height: 50vh;*/
}
.addKeyword-page .colums-2 > div.right{
	/*overflow-y: auto;*/
	/*margin-top: */
}
.form-add-keyword{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.form-add-keyword .form-group{
	width: 22%;
	margin-bottom: 0px;
}
.form-add-keyword #save{
	width: 100px;
	height: 32px;
}


.table-editor td input[type="text"]{
	border: 1px solid #ccc;
	padding-left: 5px;
	width: 90px;
	cursor: pointer;
}
.table-editor td input[readonly=""] {
	border: none;
}
.table-editor td select {
	width: 90px;
	border-radius: 0px;
	border: 1px solid #ccc;
}