*{
	transition:all 0.8s;
}
header {
	background: #262626;
}
header nav {
	padding: 18px 0 !important;
}
header h3 {
	font-size: 1.875rem;
	color: #000;
}
/* Reset -------------------------------------------------- */
html {
	margin: 0;
	padding: 0;
	font-family: 'Open Sans', sans-serif;
	border: 0;
	font-weight: 400;
}
a, abbr, acronym, address, article, aside, blockquote, body, caption, code, dd, del, dfn, dialog, div, dl, dt, em, fieldset, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, iframe, img, input, label, legend, li, nav, object, ol, p, pre, q, section, span, ul {
	margin: 0;
	padding: 0;
	border: 0;
}
article, aside, dialog, figure, footer, header, hgroup, nav, section {
	display: block;
}
blockquote:after, blockquote:before, q:after, q:before {
	content: '';
}
blockquote, q {
	quotes: "" "";
}
a img {
	border: none;
}
:focus {
	outline: 0;
}
a:focus {
	outline: none;
}
/* Global -------------------------------------------------- */
body {
	color: #000;
	font-size: 14px;
	line-height: 21px;
	font-family: 'Open Sans', sans-serif;
	background: #fff;
	font-weight: 400;
}
/* Global Css for headings, p and achors */
h1, h2, h3, h4, h5, h6 {
	padding: 0;
	margin: 0;
}
a {
	text-decoration: none !important;
}
ul, ul li, ul li ul, ul li ul li, ul ol {
	list-style: none;
	padding: 0;
	margin: 0;
}
* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.banner {
	background: url(../images/background-repeat.png) repeat left top;
	height: 200px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.banner h1 {
	font-size: 3.125rem;
	color: #fdb827;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.banner h2 {
	text-transform: uppercase;
	color: #fff;
	font-size: 2rem;
	font-weight: 600;
}
.content-section {
	padding: 40px 0;
	min-height: 640px;
}
.content-section .card {
	border: 0;
}
.content-section .inner-list {
	margin-top: 30px;
}
.content-section h3 a {
	font-size: 1.125rem;
	color: #262626;
	margin-bottom: 25px;
}
.content-section .sidebar-wrapper ul li {
	background: transparent;
	border-radius: 0;
	border: 0;
	border-bottom: solid 1px #e4e4e4;
	padding: 15px 0;
	font-size: 1rem;
	color: #262626;
	cursor: pointer;
	position: relative;
}
.content-section .sidebar-wrapper ul li:after {
	font-family: 'FontAwesome';
	content: "\f107";
	position: absolute;
	top: 20px;
	right: 10px;
	font-size: 1.5rem;
	color: #bcbcbc;
	-moz-transition: all ease 0.5s;
	-webkit-transition: all ease 0.5s;
	-o-transition: all ease 0.5s;
	transition: all ease 0.5s;
	-moz-transform: rotate(-180deg);
	-webkit-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	transform: rotate(-180deg);
}
.content-section .sidebar-wrapper ul li.active-li:after {
	-moz-transform: rotate(0);
	-webkit-transform: rotate(0);
	-ms-transform: rotate(0);
	transform: rotate(0);
}
.content-section .sidebar-wrapper ul li ul {
	display: none;
	padding: 15px;
}
.content-section .sidebar-wrapper ul li ul li {
	border-bottom: solid 0 #e4e4e4;
	padding: 0;
	color: #000;
	font-size: 0.875rem;
	line-height: 30px;
	cursor: pointer;
}
.content-section .sidebar-wrapper ul li ul li.active {
	color: #262626;
	font-weight: bold;
}
.content-section .sidebar-wrapper ul li ul li:after {
	display: none;
}
.content-section .sidebar-wrapper ul li ul li a {
	color: #bcbcbc;
	font-size: 0.875rem;
	line-height: 30px;
	cursor: pointer;
}
.content-section .show-content {
	position: relative;
}
.content-section .show-content .img-wrap {
	display: none;
}
.content-section .show-content label {
	font-size: 1rem;
	color: #262626;
	margin-bottom: 10px;
}
.heading-main {
	border-bottom: solid 2px #d1d1d1;
}
.heading-main h2 {
	font-size: 1.625rem;
	color: #262626;
	font-family: 'Oswald', sans-serif;
	padding: 20px 15px;
}
.loader-icon {
	background: #fff;
}
.loader {
	border: 10px solid #f3f3f3;
	border-radius: 50%;
	border-top: 10px solid #fdb827;
	width: 70px;
	height: 70px;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
	margin: auto;
	display: none;
}

/* Safari */
@-webkit-keyframes spin {
 0% {
 -webkit-transform: rotate(0deg);
}
 100% {
 -webkit-transform: rotate(360deg);
}
}
 @keyframes spin {
 0% {
 -webkit-transform: rotate(0deg);
 transform: rotate(0deg);
}
 100% {
 -webkit-transform: rotate(360deg);
 transform: rotate(360deg);
}
}
footer {
	background: #262626;
	padding: 30px 0;
	position:absolute;
	width:100%;
}
footer img {
	height: 130px;
}
footer ul li {
	margin-bottom: 10px;
}
footer ul li a {
	color: #818181;
	font-size: 1.125rem;
	-moz-transition: all ease 0.5s;
	-webkit-transition: all ease 0.5s;
	-o-transition: all ease 0.5s;
	transition: all ease 0.5s;
}
footer ul li a i {
	margin-right: 7px;
}
footer ul li a:hover {
	color: #fff;
	-moz-transition: all ease 0.5s;
	-webkit-transition: all ease 0.5s;
	-o-transition: all ease 0.5s;
	transition: all ease 0.5s;
}
footer .socialicons ul {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	margin-left: 10px;
}
footer .socialicons ul li a {
	-moz-transition: all ease 0.5s;
	-webkit-transition: all ease 0.5s;
	-o-transition: all ease 0.5s;
	transition: all ease 0.5s;
	color: #818181;
	font-size: 1.125rem;
}
footer .socialicons ul li a:hover {
	color: #fff;
	-moz-transition: all ease 0.5s;
	-webkit-transition: all ease 0.5s;
	-o-transition: all ease 0.5s;
	transition: all ease 0.5s;
}
footer p {
	font-size: 1rem;
	color: #818181;
	text-align: right;
}
.backtop {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 9999999999999;
}
.backtop #back_to_top {
	display: none;
}
.backtop #back_to_top .fa {
	background: #fcb726;
	padding: 0;
	font-size: 23px;
	color: #ffffff;
	width: 40px;
	height: 40px;
	text-align: center;
	line-height: 1.5;
	border-radius: 5px;
	cursor: pointer;
	border: solid 2px #fcb726;
	-moz-transition: background-color 0.5s ease-out;
	-webkit-transition: background-color 0.5s ease-out;
	-o-transition: background-color 0.5s ease-out;
	transition: background-color 0.5s ease-out;
}

.clients .status{
    width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.clients .error.alert-danger{
    margin-top: 20px;
}
.clients label{
    display: block;
    margin-bottom: 8px;
}
.clients .error{
    color:red;
}

/* ------------------------------------------------------------------------ */
ul.dots{
  box-sizing: content-box;
  list-style-type: none;  
  margin-left: 5px;
  float: left;
}
ul.dots a {
  text-decoration: none;
  font-size: 20px;
  color: #34495e;
}
ul.dots li {
  display: box;
  position: relative;
  width: 100%;
  padding: 5px 0 ;  
}

#noti_Container {
    position:relative;
}
#noti_Container span{
	margin-left: 5px;
}
#noti_Container .ban-info{
	padding: 5px 10px;
	background-color: #eaeaea;
	margin: 1px 0px;
}    
/* A CIRCLE LIKE BUTTON IN THE TOP MENU. */
#noti_Button {
    width:22px;
    height:22px;
    line-height:22px;
    border-radius:50%;
    -moz-border-radius:50%; 
    -webkit-border-radius:50%;
    background:#FFF;
    margin:-3px 10px 0 10px;
    cursor:pointer;
}
    
/* THE POPULAR RED NOTIFICATIONS COUNTER. */
#noti_Counter {
	display: block;
	position: absolute;
	background: #E1141E;
	color: #FFF;
	font-size: 10px;
	font-weight: normal;
	padding: 4px 4px 4px 4px;
	margin: -12px 0 0 24px;
	border-radius: 2px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	z-index: 1;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	text-align: center;
	line-height: 10px;
}
    
/* THE NOTIFICAIONS WINDOW. THIS REMAINS HIDDEN WHEN THE PAGE LOADS. */
#notifications {
    display:none;
    width:400px;
    position:absolute;
    top:30px;
    right:0;
    background:#FFF;
    border:solid 1px rgba(100, 100, 100, .20);
    -webkit-box-shadow:0 3px 8px rgba(0, 0, 0, .20);
    z-index: 10;
}
/* AN ARROW LIKE STRUCTURE JUST OVER THE NOTIFICATIONS WINDOW */
#notifications:before {         
    content: '';
    display:block;
    width:0;
    height:0;
    color:transparent;
    border:10px solid #CCC;
    border-color:transparent transparent #FFF;
    margin-top: -17px;
	margin-left: 367px;
}
   
#noti_Container h3 {
    display:block;
    background:#FFF;
    font-weight:bold;
    padding:8px;
    margin:0;
    border-bottom:solid 1px rgba(100, 100, 100, .30);
}
    
.seeAll {
    background:#F6F7F8;
    padding:8px;
    font-size:12px;
    font-weight:bold;
    border-top:solid 1px rgba(100, 100, 100, .30);
    text-align:center;
}
.seeAll a {
    color:#3b5998;
}
.seeAll a:hover {
    background:#F6F7F8;
    color:#3b5998;
    text-decoration:underline;
}
#Notifications-List .ban-info {
    padding: 4px 4px;
    background: #eee;
    width: 100%;
    margin: 1px 0px !important;
    cursor: pointer;
}
#Notifications-List .ban-info span{
	border: 1px solid #ccc;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    margin: 0px;
    display: inline-block;
    text-align: center;
    line-height: 25px;
	font-size: 18px;
}


/* ------------------------------------------------------------------------ */

@media only screen and (max-width: 768px) {
.banner h1 {
	font-size: 32px;
}
.banner h2 {
	font-size: 24px;
}
.content-section {
	padding: 10px 0;
}
.content-section .show-content {
	margin-top: 15px;
}
.socialicons {
	height: auto !important;
	display: block !important;
	text-align: center;
	margin: 10px 0;
}
footer p {
	text-align: center !important;
}
}

@media only screen and (max-width: 480px) {
.banner h1 {
	font-size: 23px;
}
.banner h2 {
	font-size: 19px;
}
}

.printq{
	width:100%;
	height: 150px;
	padding: 10
}

.nav-item:hover>.subnav{
	display:block;
	position: absolute;
    background-color: #262626;
    width: 150px;
	z-index:1;
}
.subnav{
	display: none;
}

li.menu_sep {
    border-bottom: solid 1px #4e4e4e;
    line-height: 1px;
    padding: 0px;
    margin: 0px 0px 0px 10px;
    width: 90%;
}
li.ban_cat>span{
	float: right;
}
.edt{
	margin-right: 30px;
    margin-left: 10px;
}

#user_table {
	border-collapse: collapse; /* Collapse borders */
	width: 100%; /* Full-width */
	border: 1px solid #ddd; /* Add a grey border */
	font-size: 18px; /* Increase font-size */
}
#user_table th, #user_table td {
	padding: 12px; /* Add padding */
}
#user_table tr {
	/* Add a bottom border to all table rows */
	border-bottom: 1px solid #ddd;
}
#user_table tr.header, #user_table tr:hover {
	/* Add a grey background color to the table header and on hover */
	background-color: #f1f1f1;
}
.client_sym{
    transform: rotate(90deg);
    margin-right: 15px;
}