body,html{
	height: 100%;
	background: #ffffff;
}

.material-icons.md-side-menu { 
	font-size: 18px; 
	width: 1.1em; 
	vertical-align: middle;
}

/* remove outer padding */
.main .row{
	padding: 0px;
	margin: 0px;
}

/* title font-size like <h2> */
span.title{
	font-size: 30px;
}


/*Remove rounded coners*/

nav.sidebar.navbar {
	border-radius: 0px;
}

nav.sidebar, .main{
	-webkit-transition: margin 200ms ease-out;
	-moz-transition: margin 200ms ease-out;
	-o-transition: margin 200ms ease-out;
	transition: margin 200ms ease-out;
}

/* Add gap to nav and right windows.*/
.main{
	padding: 10px 10px 0 10px;
}

.mobile_add{
	float: left;
	padding-top: 5px;
	padding-left: 10px;
}
/* .....NavBar: Icon only with coloring/layout.....*/



.checkbox {
	padding-left: 20px; 
}
  
.checkbox label {
    display: inline-block;
    position: relative;
    padding-left: 5px !important;
}

.checkbox label::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 17px;
    height: 17px;
    left: 0;
    margin-left: -20px;
    border: 1px solid #cccccc;
    border-radius: 3px;
    background-color: #fff;
    -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    transition: border 0.15s ease-in-out, color 0.15s ease-in-out; 
}

.checkbox label::after {
    display: inline-block;
    position: absolute;
    width: 16px;
    height: 16px;
    left: 0;
    top: 0;
    margin-left: -20px;
    padding-left: 3px;
    padding-top: 1px;
    font-size: 11px;
    color: #555555; 
}

.checkbox input[type="checkbox"] {
    opacity: 0; 
}

.checkbox input[type="checkbox"]:focus + label::before {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px; 
}

.checkbox input[type="checkbox"]:checked + label::after {
    font-family: 'FontAwesome';
    content: "\f00c"; 
}
.checkbox input[type="checkbox"]:disabled + label {
    opacity: 0.65; 
}
.checkbox input[type="checkbox"]:disabled + label::before {
    background-color: #eeeeee;
    cursor: not-allowed; 
}

.checkbox.checkbox-circle label::before {
    border-radius: 50%; 
}
.checkbox.checkbox-inline {
    margin-top: 0; 
}

.checkbox-primary input[type="checkbox"]:checked + label::before {
	background-color: #428bca;
	border-color: #428bca; 
}

.checkbox-primary input[type="checkbox"]:checked + label::after {
	color: #fff; 
}

.checkbox-danger input[type="checkbox"]:checked + label::before {
	background-color: #d9534f;
	border-color: #d9534f; 
}

.checkbox-danger input[type="checkbox"]:checked + label::after {
	color: #fff; 
}

.checkbox-info input[type="checkbox"]:checked + label::before {
	background-color: #5bc0de;
	border-color: #5bc0de; 
}

.checkbox-info input[type="checkbox"]:checked + label::after {
	color: #fff; 
}

.checkbox-warning input[type="checkbox"]:checked + label::before {
	background-color: #f0ad4e;
	border-color: #f0ad4e; 
}

.checkbox-warning input[type="checkbox"]:checked + label::after {
	color: #fff; 
}

.checkbox-success input[type="checkbox"]:checked + label::before {
	background-color: #5cb85c;
	border-color: #5cb85c; 
}

.checkbox-success input[type="checkbox"]:checked + label::after {
	color: #fff; 
}

.radio {
	padding-left: 20px; 
}

.radio label {
    display: inline-block;
    position: relative;
    padding-left: 5px !important; 
}
.radio label::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 17px;
    height: 17px;
    left: 0;
    margin-left: -20px;
    border: 1px solid #cccccc;
    border-radius: 50%;
    background-color: #fff;
    -webkit-transition: border 0.15s ease-in-out;
    -o-transition: border 0.15s ease-in-out;
    transition: border 0.15s ease-in-out; 
}
    
.radio label::after {
    display: inline-block;
    position: absolute;
    content: " ";
    width: 11px;
    height: 11px;
    left: 3px;
    top: 3px;
    margin-left: -20px;
    border-radius: 50%;
    background-color: #555555;
    -webkit-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    transform: scale(0, 0);
    -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    -moz-transition: -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    -o-transition: -o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33); 
}

.radio input[type="radio"] {
    opacity: 0; 
}
    
.radio input[type="radio"]:focus + label::before {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px; 
}

.radio input[type="radio"]:checked + label::after {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1); 
}
    
.radio input[type="radio"]:disabled + label {
    opacity: 0.65; 
}

.radio input[type="radio"]:disabled + label::before {
    cursor: not-allowed; 
}

.radio.radio-inline {
    margin-top: 8px !important; 
}

.radio-primary input[type="radio"] + label::after {
	background-color: #428bca; 
}

.radio-primary input[type="radio"]:checked + label::before {
	border-color: #428bca; 
}

.radio-primary input[type="radio"]:checked + label::after {
	background-color: #428bca; 
}

.radio-danger input[type="radio"] + label::after {
	background-color: #d9534f; 
}

.radio-danger input[type="radio"]:checked + label::before {
	border-color: #d9534f; 
}

.radio-danger input[type="radio"]:checked + label::after {
	background-color: #d9534f; 
}

.radio-info input[type="radio"] + label::after {
	background-color: #5bc0de; 
}

.radio-info input[type="radio"]:checked + label::before {
	border-color: #5bc0de; 
}

.radio-info input[type="radio"]:checked + label::after {
	background-color: #5bc0de; 
}

.radio-warning input[type="radio"] + label::after {
	background-color: #f0ad4e; 
}

.radio-warning input[type="radio"]:checked + label::before {
	border-color: #f0ad4e; 
}

.radio-warning input[type="radio"]:checked + label::after {
	background-color: #f0ad4e; 
}

.radio-success input[type="radio"] + label::after {
	background-color: #5cb85c; 
}

.radio-success input[type="radio"]:checked + label::before {
	border-color: #5cb85c;
}

.radio-success input[type="radio"]:checked + label::after {
	background-color: #5cb85c; 
}


.select2 {
	width: 100% !important;
}

.select2-search__field {
	width: 100% !important;
}
	
.select2-combobox{
	width:100%;
}

.select2-selection--single{
	height: 34px !important;
	padding:3px;
}

.select2-selection--single .select2-selection__arrow{
	height: 34px !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice{
	margin-top:2px !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{
	margin-right:0px !important;
	margin-left:2px !important;
	float:right !important;
}

.select2-container .select2-search--inline .select2-search__field{
	margin-top:3px !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice{
	background-color: #eaf5fb !important;
    border: 1px solid #abd7ed !important;
}


.image-preview-input {
    position: relative;
	overflow: hidden;
	margin: 0px;    
    color: #333;
    background-color: #fff;
    border-color: #ccc;    
}
.image-preview-input input[type=file] {
	position: absolute;
	top: 0;
	right: 0;
	margin: 0;
	padding: 0;
	font-size: 20px;
	cursor: pointer;
	opacity: 0;
	filter: alpha(opacity=0);
}
.image-preview-input-title {
    margin-left:2px;
}

.profile-tab-image{
	margin:15px;
	width: 130px;
    height: 130px;
    max-width: 130px;
    max-height: 130px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, 0.5);
}

fieldset.scheduler-border {
    border: 1px groove #ddd !important;
    padding: 0 1.4em 1.4em 1.4em !important;
    margin: 0 0 1.5em 0 !important;
	-moz-box-shadow:    0px 0px 0px 0px #000;
    -webkit-box-shadow: 0px 0px 0px 0px #000;
     box-shadow:        0px 0px 0px 0px #000;
}

legend.scheduler-border {
    width:inherit; /* Or auto */
    padding:0 10px; /* To give a bit of padding on the left and right */
    border-bottom:none;
}

.sorting i{
	float: right;
}

.sorting a{
	text-decoration: none;
}

.sorting a:hover{
	text-decoration: none;
}

.menu-level-1{
	padding: 1px 3px;
	border: 1px solid #ff9326;
	background-color: #ffa64c;
	-webkit-border-radius:5px;
    -moz-border-radius:5px;
    border-radius:5px;
	float:left;
}

.menu-level-2{
	padding: 1px 3px;
	border: 1px solid #ffd24c;
	background-color: #ffdc73;
	-webkit-border-radius:5px;
    -moz-border-radius:5px;
    border-radius:5px;
	float:left;
}

.menu-level-3{
	padding: 1px 3px;
	border: 1px solid #ffff73;
	background-color: #ffff99;
	-webkit-border-radius:5px;
    -moz-border-radius:5px;
    border-radius:5px;
	float:left;
}

.menu-level span{
	font-weight: 600;
}

.select2-avatar{
	max-width:50px;
	-webkit-border-radius:50%;
    -moz-border-radius:50%;
    border-radius:50%;
}

.saved-msg{
	border-radius:3px;
	background-color:rgba(0,0,0,0.8);
	color:#ffffff;
	font-size: 1em;
	position: absolute;
    z-index: 100;
	padding: 6px;
	height: 34px;
}

.name{
	font-size: 1.25em;
    line-height: 1.6;
    color: #000;
}

.module-title{
	float: left;
	font-weight: 600;
	font-size: 20px;
}

.module-subtitle{
	font-weight: 600;
	font-size: 20px;
}

.list-total{
	float: left;
	padding-top: 2px;
	padding-left: 15px;
	color: #666666;
}

.list-sort{
	float:left;
	padding-top: 2px;
	padding-left: 15px;
}

.list-menu.open{
	display: block;
}

.sort-btn{
	border: 0px;
	padding: 0px !important;
	color: #337ab7 !important;
	background-color: #ffffff !important;
	box-shadow: none !important;
	margin: 0px !important;
	margin-top: -2px !important;
}

.sort-btn:hover, .sort-btn:focus{
	background-color: #ffffff !important;
	border-color: #ffffff !important;
	outline:none !important;
	-webkit-box-shadow: none;
          box-shadow: none;
	color: #337ab7;

}

.sort-container{
	position: relative;
	padding-left:8px;
}

.dropdown-sort {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
}

#sort-list > li > a > .fa{
    visibility:hidden;
}
#sort-list > li > a.selected > .fa{
    visibility:visible;
}

#sort-list > li > a.selected{
	color: #337ab7;
}

.list-btn-group{
	list-style: none;
	margin: 0;
	padding: 0;
	float: right;
}

.list-btn-group li{
	display: inline-block;
	float:right;
	padding-left: 5px;
}

.list-btn-group .list-search{
	width: 40%;
}

.dropdown-extra{
	left: auto;
	right:0;
	float: left;
}

.dropdown-extra li{
	float: left;
}

.loader_div{
	display:none;
	padding:5px;
	position: absolute;
	top: 0px;
	right: 0px;
	width:100%;
	height: 300px;
	background-color:#FDE3A7;
	background-repeat:no-repeat;
	background-position:center;
	z-index:14500;
	opacity: 0.4;
	filter: alpha(opacity=40); /* For IE8 and earlier */
}

.spinner {
  margin: 100px auto;
  width: 140px;
  height: 100px;
  text-align: center;
  vertical-align: middle;
  font-size: 10px;
}

.spinner > div {
  background-color: #E87E04;
  height: 100%;
  width: 20px;
  display: inline-block;
  
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% { -webkit-transform: scaleY(0.4) }  
  20% { -webkit-transform: scaleY(1.0) }
}

@keyframes sk-stretchdelay {
  0%, 40%, 100% { 
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }  20% { 
    transform: scaleY(1.0);
    -webkit-transform: scaleY(1.0);
  }
}

.page-header{
	margin: 20px 0 20px;
	height: auto; 
    background-position: center center;
    background-size: cover;
    /* margin: 0; */
    padding: 0 15px;
    border: 0;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

#page-wrapper{
	padding: 0 30px 15px 30px !important;
}

.navbar-static-top{
	/* background-color: #E4F1FE; */
	/* background-color: #FF01BA; */
	background-color: #FF0000;
	color: #ffffff;
}

.navbar-static-top .dropdown .dropdown-toggle{
	color: #ffffff;
}

.navbar-top-links>li>a:focus, .navbar-top-links>li>a:hover{
	/* background-color: #C5EFF7; */
	/* background-color: #ffb3eb; */
	background-color: #ff9999;
}

.navbar-top-links .open>a, .navbar-top-links .open>a:focus, .navbar-top-links .open>a:hover{
	/* background-color: #C5EFF7; */
	/* background-color: #ffb3eb; */
	background-color: #ff9999;
}

.footer .row{
	margin-right: 0px !important;
	margin-left: 0px !important;
}

.footer-col{
	padding: 15px;
	background-color: #E4F1FE;
}


.panel.with-nav-tabs .panel-heading{
	padding: 5px 5px 0 5px !important;
}
.panel.with-nav-tabs .nav-tabs{
	border-bottom: none;
}
.panel.with-nav-tabs .nav-justified{
	margin-bottom: -1px;
}
/********************************************************************/
/*** PANEL DEFAULT ***/
.with-nav-tabs.panel-default .nav-tabs > li > a,
.with-nav-tabs.panel-default .nav-tabs > li > a:hover,
.with-nav-tabs.panel-default .nav-tabs > li > a:focus {
    color: #777;
}
.with-nav-tabs.panel-default .nav-tabs > .open > a,
.with-nav-tabs.panel-default .nav-tabs > .open > a:hover,
.with-nav-tabs.panel-default .nav-tabs > .open > a:focus,
.with-nav-tabs.panel-default .nav-tabs > li > a:hover,
.with-nav-tabs.panel-default .nav-tabs > li > a:focus {
    color: #777;
	background-color: #ddd;
	border-color: transparent;
}
.with-nav-tabs.panel-default .nav-tabs > li.active > a,
.with-nav-tabs.panel-default .nav-tabs > li.active > a:hover,
.with-nav-tabs.panel-default .nav-tabs > li.active > a:focus {
	color: #555;
	background-color: #fff;
	border-color: #ddd;
	border-bottom-color: transparent;
}
.with-nav-tabs.panel-default .nav-tabs > li.dropdown .dropdown-menu {
    background-color: #f5f5f5;
    border-color: #ddd;
}
.with-nav-tabs.panel-default .nav-tabs > li.dropdown .dropdown-menu > li > a {
    color: #777;
}
.with-nav-tabs.panel-default .nav-tabs > li.dropdown .dropdown-menu > li > a:hover,
.with-nav-tabs.panel-default .nav-tabs > li.dropdown .dropdown-menu > li > a:focus {
    background-color: #ddd;
}
.with-nav-tabs.panel-default .nav-tabs > li.dropdown .dropdown-menu > .active > a,
.with-nav-tabs.panel-default .nav-tabs > li.dropdown .dropdown-menu > .active > a:hover,
.with-nav-tabs.panel-default .nav-tabs > li.dropdown .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #555;
}
/********************************************************************/
/*** PANEL PRIMARY ***/
.with-nav-tabs.panel-primary .nav-tabs > li > a,
.with-nav-tabs.panel-primary .nav-tabs > li > a:hover,
.with-nav-tabs.panel-primary .nav-tabs > li > a:focus {
    color: #fff !important;
}
.with-nav-tabs.panel-primary .nav-tabs > .open > a,
.with-nav-tabs.panel-primary .nav-tabs > .open > a:hover,
.with-nav-tabs.panel-primary .nav-tabs > .open > a:focus,
.with-nav-tabs.panel-primary .nav-tabs > li > a:hover,
.with-nav-tabs.panel-primary .nav-tabs > li > a:focus {
	color: #fff !important;
	background-color: #3071a9 !important;
	border-color: transparent !important;
}
.with-nav-tabs.panel-primary .nav-tabs > li.active > a,
.with-nav-tabs.panel-primary .nav-tabs > li.active > a:hover,
.with-nav-tabs.panel-primary .nav-tabs > li.active > a:focus {
	color: #428bca !important;
	background-color: #fff !important;
	border-color: #428bca !important;
	border-bottom-color: transparent !important;
}
.with-nav-tabs.panel-primary .nav-tabs > li.dropdown .dropdown-menu {
    background-color: #428bca !important;
    border-color: #3071a9 !important;
}
.with-nav-tabs.panel-primary .nav-tabs > li.dropdown .dropdown-menu > li > a {
    color: #fff;
}
.with-nav-tabs.panel-primary .nav-tabs > li.dropdown .dropdown-menu > li > a:hover,
.with-nav-tabs.panel-primary .nav-tabs > li.dropdown .dropdown-menu > li > a:focus {
    background-color: #3071a9 !important;
}
.with-nav-tabs.panel-primary .nav-tabs > li.dropdown .dropdown-menu > .active > a,
.with-nav-tabs.panel-primary .nav-tabs > li.dropdown .dropdown-menu > .active > a:hover,
.with-nav-tabs.panel-primary .nav-tabs > li.dropdown .dropdown-menu > .active > a:focus {
    background-color: #4a9fe9 !important;
}
/********************************************************************/
/*** PANEL SUCCESS ***/
.with-nav-tabs.panel-success .nav-tabs > li > a,
.with-nav-tabs.panel-success .nav-tabs > li > a:hover,
.with-nav-tabs.panel-success .nav-tabs > li > a:focus {
	color: #3c763d !important;
	border-bottom-color: #d6e9c6 !important;
}
.with-nav-tabs.panel-success .nav-tabs > .open > a,
.with-nav-tabs.panel-success .nav-tabs > .open > a:hover,
.with-nav-tabs.panel-success .nav-tabs > .open > a:focus,
.with-nav-tabs.panel-success .nav-tabs > li > a:hover,
.with-nav-tabs.panel-success .nav-tabs > li > a:focus {
	color: #3c763d !important;
	background-color: #d6e9c6 !important;
	border-color: transparent;
}
.with-nav-tabs.panel-success .nav-tabs > li.active > a,
.with-nav-tabs.panel-success .nav-tabs > li.active > a:hover,
.with-nav-tabs.panel-success .nav-tabs > li.active > a:focus {
	color: #3c763d !important;
	background-color: #d6e9c6 !important;
	border: 1px solid !important;
	border-color: #d6e9c6 !important;
	border-bottom-color: transparent !important;
	padding-bottom: 8px;
}
.with-nav-tabs.panel-success .nav-tabs > li.dropdown .dropdown-menu {
    background-color: #dff0d8 !important;
    border-color: #d6e9c6 !important;
}
.with-nav-tabs.panel-success .nav-tabs > li.dropdown .dropdown-menu > li > a {
    color: #3c763d !important;
}
.with-nav-tabs.panel-success .nav-tabs > li.dropdown .dropdown-menu > li > a:hover,
.with-nav-tabs.panel-success .nav-tabs > li.dropdown .dropdown-menu > li > a:focus {
    background-color: #d6e9c6 !important;
}
.with-nav-tabs.panel-success .nav-tabs > li.dropdown .dropdown-menu > .active > a,
.with-nav-tabs.panel-success .nav-tabs > li.dropdown .dropdown-menu > .active > a:hover,
.with-nav-tabs.panel-success .nav-tabs > li.dropdown .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #3c763d !important;
}
/********************************************************************/
/*** PANEL INFO ***/
.with-nav-tabs.panel-info .nav-tabs > li > a,
.with-nav-tabs.panel-info .nav-tabs > li > a:hover,
.with-nav-tabs.panel-info .nav-tabs > li > a:focus {
	color: #31708f;
}
.with-nav-tabs.panel-info .nav-tabs > .open > a,
.with-nav-tabs.panel-info .nav-tabs > .open > a:hover,
.with-nav-tabs.panel-info .nav-tabs > .open > a:focus,
.with-nav-tabs.panel-info .nav-tabs > li > a:hover,
.with-nav-tabs.panel-info .nav-tabs > li > a:focus {
	color: #31708f;
	background-color: #bce8f1;
	border-color: transparent;
}
.with-nav-tabs.panel-info .nav-tabs > li.active > a,
.with-nav-tabs.panel-info .nav-tabs > li.active > a:hover,
.with-nav-tabs.panel-info .nav-tabs > li.active > a:focus {
	color: #31708f;
	background-color: #fff;
	border-color: #bce8f1;
	border-bottom-color: transparent;
}
.with-nav-tabs.panel-info .nav-tabs > li.dropdown .dropdown-menu {
    background-color: #d9edf7;
    border-color: #bce8f1;
}
.with-nav-tabs.panel-info .nav-tabs > li.dropdown .dropdown-menu > li > a {
    color: #31708f;
}
.with-nav-tabs.panel-info .nav-tabs > li.dropdown .dropdown-menu > li > a:hover,
.with-nav-tabs.panel-info .nav-tabs > li.dropdown .dropdown-menu > li > a:focus {
    background-color: #bce8f1;
}
.with-nav-tabs.panel-info .nav-tabs > li.dropdown .dropdown-menu > .active > a,
.with-nav-tabs.panel-info .nav-tabs > li.dropdown .dropdown-menu > .active > a:hover,
.with-nav-tabs.panel-info .nav-tabs > li.dropdown .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #31708f;
}
/********************************************************************/
/*** PANEL WARNING ***/
.with-nav-tabs.panel-warning .nav-tabs > li > a,
.with-nav-tabs.panel-warning .nav-tabs > li > a:hover,
.with-nav-tabs.panel-warning .nav-tabs > li > a:focus {
	color: #8a6d3b;
}
.with-nav-tabs.panel-warning .nav-tabs > .open > a,
.with-nav-tabs.panel-warning .nav-tabs > .open > a:hover,
.with-nav-tabs.panel-warning .nav-tabs > .open > a:focus,
.with-nav-tabs.panel-warning .nav-tabs > li > a:hover,
.with-nav-tabs.panel-warning .nav-tabs > li > a:focus {
	color: #8a6d3b;
	background-color: #faebcc;
	border-color: transparent;
}
.with-nav-tabs.panel-warning .nav-tabs > li.active > a,
.with-nav-tabs.panel-warning .nav-tabs > li.active > a:hover,
.with-nav-tabs.panel-warning .nav-tabs > li.active > a:focus {
	color: #8a6d3b;
	background-color: #fff;
	border-color: #faebcc;
	border-bottom-color: transparent;
}
.with-nav-tabs.panel-warning .nav-tabs > li.dropdown .dropdown-menu {
    background-color: #fcf8e3;
    border-color: #faebcc;
}
.with-nav-tabs.panel-warning .nav-tabs > li.dropdown .dropdown-menu > li > a {
    color: #8a6d3b;
}
.with-nav-tabs.panel-warning .nav-tabs > li.dropdown .dropdown-menu > li > a:hover,
.with-nav-tabs.panel-warning .nav-tabs > li.dropdown .dropdown-menu > li > a:focus {
    background-color: #faebcc;
}
.with-nav-tabs.panel-warning .nav-tabs > li.dropdown .dropdown-menu > .active > a,
.with-nav-tabs.panel-warning .nav-tabs > li.dropdown .dropdown-menu > .active > a:hover,
.with-nav-tabs.panel-warning .nav-tabs > li.dropdown .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #8a6d3b;
}
/********************************************************************/
/*** PANEL DANGER ***/
.with-nav-tabs.panel-danger .nav-tabs > li > a,
.with-nav-tabs.panel-danger .nav-tabs > li > a:hover,
.with-nav-tabs.panel-danger .nav-tabs > li > a:focus {
	color: #a94442;
}
.with-nav-tabs.panel-danger .nav-tabs > .open > a,
.with-nav-tabs.panel-danger .nav-tabs > .open > a:hover,
.with-nav-tabs.panel-danger .nav-tabs > .open > a:focus,
.with-nav-tabs.panel-danger .nav-tabs > li > a:hover,
.with-nav-tabs.panel-danger .nav-tabs > li > a:focus {
	color: #a94442;
	background-color: #ebccd1;
	border-color: transparent;
}
.with-nav-tabs.panel-danger .nav-tabs > li.active > a,
.with-nav-tabs.panel-danger .nav-tabs > li.active > a:hover,
.with-nav-tabs.panel-danger .nav-tabs > li.active > a:focus {
	color: #a94442;
	background-color: #fff;
	border-color: #ebccd1;
	border-bottom-color: transparent;
}
.with-nav-tabs.panel-danger .nav-tabs > li.dropdown .dropdown-menu {
    background-color: #f2dede; /* bg color */
    border-color: #ebccd1; /* border color */
}
.with-nav-tabs.panel-danger .nav-tabs > li.dropdown .dropdown-menu > li > a {
    color: #a94442; /* normal text color */
}
.with-nav-tabs.panel-danger .nav-tabs > li.dropdown .dropdown-menu > li > a:hover,
.with-nav-tabs.panel-danger .nav-tabs > li.dropdown .dropdown-menu > li > a:focus {
    background-color: #ebccd1; /* hover bg color */
}
.with-nav-tabs.panel-danger .nav-tabs > li.dropdown .dropdown-menu > .active > a,
.with-nav-tabs.panel-danger .nav-tabs > li.dropdown .dropdown-menu > .active > a:hover,
.with-nav-tabs.panel-danger .nav-tabs > li.dropdown .dropdown-menu > .active > a:focus {
    color: #fff; /* active text color */
    background-color: #a94442; /* active bg color */
}

.restaurant-logo{
	width:200px;
	max-width:200px;
	max-height:200px;
	height:200px;
	padding: 10px;
}

.input-hidden{
	display: none;
}

.form-group.has-error.has-danger > #map{
	border: 1px solid #a94442;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
}

.working-day-wrapper{
	padding-top: 5px;
	padding-bottom: 5px;
}

.bh-wrapper{
	padding-bottom: 10px;
}

.color-box .invisible{
	visibility: hidden;
}

.color-box{
	cursor: pointer;
    width: 60px;
    height: 35px;
	border: 2px solid #888;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
	border: 2px solid #7a1c44;
    background-color: #de5962;
}

.color-box.is-working-day{
	border: 2px solid #4E8059;
    background-color: #8ade8f;
}

.operation-time{
	width: 60px !important;
    padding: 3px;
    font-size: 12px;
    font-weight: normal;
}

.operation-time.primary{
	border: 1px solid #337ab7;
}

.operation-time.secondary{
	border: 1px solid #81c3e4;
}

.time-container{
    line-height: 20px;
    margin-right: 8px;
    width: 80px;
    font-size: 11px;
    font-weight: bold;
	padding: 5px 0;
}

.time-refresh{
	line-height: 20px;
	margin-right: 8px;
	font-size: 22px;
	font-weight: bold;
	color: #ff6666;
}

.time-refresh.primary{
	color: #337ab7;
}

.time-refresh.secondary{
	color: #81c3e4;
}

.time-refresh i{
	padding-top: 9px;
}

.time-refresh a{
	cursor: pointer;
	text-decoration: none;
}

.time-bg-primary{
	color: #fff !important;
    background-color: #337ab7 !important;
	border: 1px solid #337ab7 !important;
}

.time-bg-secondary{
	color: #fff !important;
	background-color: #81c3e4 !important;
	border: 1px solid #81c3e4 !important;
}

.time-container-wrapper{
	display: block;
}

.time-container-wrapper.disabled{
	display: none;
}

.time-container-wrapper .time-bg-primary{
	color: #fff !important;
    background-color: #337ab7 !important;
	border: 1px solid #337ab7 !important;
}

.time-container-wrapper .time-bg-secondary{
	color: #fff !important;
    background-color: #81c3e4 !important;
	border: 1px solid #81c3e4 !important;
}

.time-container-wrapper.disabled .time-bg-primary{
	color: #808080 !important;
    background-color: #bfbfbf !important;
	border: 1px solid #bfbfbf !important;
}

.time-container-wrapper.disabled .time-bg-secondary{
	color: #808080 !important;
    background-color: #bfbfbf !important;
	border: 1px solid #bfbfbf !important;
}

.time-container-wrapper.disabled .operation-time.primary,
.time-container-wrapper.disabled .operation-time.secondary{
	border: 1px solid #eee;
	-webkit-box-shadow: none;
    box-shadow: none;
}

.time-container-wrapper.disabled .time-refresh a{
	color: #bfbfbf;
	cursor: default;
}

.working-day-label{
	padding-top:7px;
}



.ui-tooltip, .arrow:after {
	background: black;
	border: 2px solid white;
}

.ui-tooltip {
	padding: 10px 20px;
	color: white;
	border-radius: 20px;
	font: bold 14px "Helvetica Neue", Sans-Serif;
	text-transform: uppercase;
	box-shadow: 0 0 7px black;
}

.ui-tooltip .arrow {
	width: 70px;
	height: 16px;
	overflow: hidden;
	position: absolute;
	left: 50%;
	margin-left: -35px;
	bottom: -16px;
}

.ui-tooltip .arrow.top {
	top: -16px;
	bottom: auto;
}

.ui-tooltip .arrow.left {
	left: 20%;
}

.ui-tooltip .arrow:after {
	content: "";
	position: absolute;
	left: 20px;
	top: -20px;
	width: 25px;
	height: 25px;
	box-shadow: 6px 5px 9px -9px black;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.ui-tooltip .arrow.top:after {
	bottom: -20px;
	top: auto;
}

/*  bhoechie tab */
div.bhoechie-tab-container{
	/* z-index: 10; */
	background-color: #ffffff;
	padding: 0 !important;
	border-radius: 4px;
	-moz-border-radius: 4px;
	/* border:1px solid #ddd; */
	margin-top: 0;
	margin-left: 0;
	/* -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175); */
	/* box-shadow: 0 6px 12px rgba(0,0,0,.175); */
	/* -moz-box-shadow: 0 6px 12px rgba(0,0,0,.175); */
	background-clip: padding-box;
	opacity: 0.97;
	filter: alpha(opacity=97);
}

div.bhoechie-tab-menu{
	padding-right: 0;
	padding-left: 0;
	padding-bottom: 0;
}

div.bhoechie-tab-menu div.list-group{
	margin-bottom: 0;
}

div.bhoechie-tab-menu div.list-group>a{
	margin-bottom: 0;
}

div.bhoechie-tab-menu div.list-group>a .glyphicon,
div.bhoechie-tab-menu div.list-group>a .fa {
	color: #6d69b0;
}

div.bhoechie-tab-menu div.list-group>a:first-child{
	border-top-right-radius: 0;
	-moz-border-top-right-radius: 0;
	border-top-left-radius: 0;
	-moz-border-top-left-radius: 0;
}

div.bhoechie-tab-menu div.list-group>a:last-child{
	border-bottom-right-radius: 0;
	-moz-border-bottom-right-radius: 0;
}

div.bhoechie-tab-menu div.list-group>a.active,
div.bhoechie-tab-menu div.list-group>a.active .glyphicon,
div.bhoechie-tab-menu div.list-group>a.active .fa{
	background-color: #6d69b0;
	background-image: #6d69b0;
	color: #ffffff;
	border-color: #6d69b0;
}

div.bhoechie-tab-menu div.list-group>a.active:after{
	content: '';
	position: absolute;
	left: 100%;
	top: 50%;
	margin-top: -13px;
	border-left: 0;
	border-bottom: 13px solid transparent;
	border-top: 13px solid transparent;
	border-left: 10px solid #6d69b0;
}

div.bhoechie-tab-content{
	position: static;
}

div.bhoechie-tab-menu-b{
	padding-right: 0;
	padding-left: 10px;
	padding-bottom: 0;
}

div.bhoechie-tab-menu-b div.list-group{
	margin-bottom: 0;
}

div.bhoechie-tab-menu-b div.list-group>a{
	margin-bottom: 0;
}

div.bhoechie-tab-menu-b div.list-group>a .glyphicon,
div.bhoechie-tab-menu-b div.list-group>a .fa {
	color: #3366ff;
}

div.bhoechie-tab-menu-b div.list-group>a:first-child{
	border-top-right-radius: 0;
	-moz-border-top-right-radius: 0;
	border-top-left-radius: 0;
	-moz-border-top-left-radius: 0;
}

div.bhoechie-tab-menu-b div.list-group>a:last-child{
	border-bottom-right-radius: 0;
	-moz-border-bottom-right-radius: 0;
}

div.bhoechie-tab-menu-b div.list-group>a.active,
div.bhoechie-tab-menu-b div.list-group>a.active .glyphicon,
div.bhoechie-tab-menu-b div.list-group>a.active .fa{
	background-color: #3366ff;
	background-image: #3366ff;
	color: #ffffff;
}

div.bhoechie-tab-menu-b div.list-group>a.active:after{
	content: '';
	position: absolute;
	left: 100%;
	top: 50%;
	margin-top: -13px;
	border-left: 0;
	border-bottom: 13px solid transparent;
	border-top: 13px solid transparent;
	border-left: 10px solid #3366ff;
}

div.bhoechie-tab-content{
	background-color: #ffffff;
	/* border: 1px solid #eeeeee; */
	/* padding-left: 40px; */
	/* padding-top: 10px; */
}

div.bhoechie-tab div.bhoechie-tab-content:not(.active){
	display: block;
}

div.bhoechie-tab{
	padding-left: 10px;
	padding-right: 0px;
}

div.bhoechie-tab-container .tab-menu-header{
	padding:  8px 8px 5px 8px;
	font-size: 16px;
	color: #ffffff !important;
}

div.bhoechie-tab-container .tab-menu-header label{
	color: #ffffff !important;
}

div.bhoechie-tab-container .tab-menu-header .btn-group{
	margin: 0px !important;
}

div.bhoechie-tab-container .tab-menu-header a{
	text-decoration: none;
	font-size: 16px;
	padding: 0 5px;
	color: #000000 !important;
	background-color: #ffffff !important;
}

div.bhoechie-tab-container .tab-menu-item-custom-header{
	padding:  8px 8px 5px 8px;
	font-size: 16px;
	color: #ffffff !important;
	/* margin-top:10px; */
}

div.bhoechie-tab-container .tab-menu-item-custom-header label{
	color: #ffffff !important;
}

div.bhoechie-tab-container .tab-menu-item-custom-header .btn-group{
	margin: 0px !important;
}

div.bhoechie-tab-container .tab-menu-item-custom-header a{
	text-decoration: none;
	font-size: 16px;
	padding: 0 5px;
	color: #000000 !important;
	background-color: #ffffff !important;
}

/* div.bhoechie-tab-container .tab-menu-header a:visited, */
/* div.bhoechie-tab-container .tab-menu-header a:hover{ */
	/* color: #ffffff; */
/* } */

div.bhoechie-tab-container .bhoechie-tab-menu .tab-menu-header{
	background-color: #8c1aff !important;
}

div.bhoechie-tab-container .bhoechie-tab-menu-b .tab-menu-header{
	background-color: #3385ff !important;
}

div.bhoechie-tab-content .tab-menu-header{
	background-color: #00b300 !important;
}

div.bhoechie-tab-content .tab-menu-item-custom-header{
	background-color: #009900 !important;
}

div.bhoechie-tab-content .tab-menu-content{
	padding: 10px;
	border-left: 1px solid #cccccc;
	border-right: 1px solid #cccccc;
	border-bottom: 1px solid #cccccc;

	border-bottom-left-radius: 4px;
	-moz-border-bottom-left-radius: 4px;

	border-bottom-right-radius: 4px;
	-moz-border-bottom-right-radius: 4px;
}

div.bhoechie-tab-content .tab-menu-item-custom-content{
	padding: 10px;
	margin-bottom: 10px;
	border-left: 1px solid #cccccc;
	border-right: 1px solid #cccccc;
	border-bottom: 1px solid #cccccc;

	border-bottom-left-radius: 4px;
	-moz-border-bottom-left-radius: 4px;

	border-bottom-right-radius: 4px;
	-moz-border-bottom-right-radius: 4px;
}

.menu-category-edit-header{
	background-color: #8c1aff;
	color: #ffffff;
}

.menu-category-edit-header .close{
	color: #ffffff;
	opacity: 0.6;
}

.menu-category-edit-header .close:hover{
	opacity: 0.9;
}

.menu-category-title-input{
	width:85%;
	margin-right: 10px;
	float: left;
}

.menu-category-title-input:disabled{
	text-decoration: line-through;
}

.menu-category-delete{
	float: left;
}

.menu-category-undo-delete{
	display: none;
	float: left;
}

.menu-item-edit-header{
	background-color: #3385ff;
	color: #ffffff;
}

.menu-item-edit-header .close{
	color: #ffffff;
	opacity: 0.6;
}

.menu-item-edit-header .close:hover{
	opacity: 0.9;
}

.menu-item-title-input{
	width:85%;
	margin-right: 10px;
	float: left;
}

.menu-item-title-input:disabled{
	text-decoration: line-through;
}

.menu-item-delete{
	float: left;
}

.menu-item-undo-delete{
	display: none;
	float: left;
}

.clear-both{
	clear: both;
}


.menu-sortable-ul{
	padding: 0px;
}

.menu-sortable-ul li{
	/* padding-left: 30px; */
	list-style: none;
	cursor: grab;
	cursor: move;
}

.menu-sort{
	float:left;
	font-size: 20px;
	padding: 5px;
}

.menu-item-options-tbl{
	width: 100%;
}

.menu-item-options-price{
	text-align:right;
}

.menu-item-options-tbl th{
	padding: 5px; 
	background-color: #eee;
	border: 5px solid #ffffff;
}

.menu-item-options-tbl th.menu-item-options-price{
	background-color: #ccc;
}

.menu-item-options-tbl td{
	padding: 5px; 
	border: 5px solid #ffffff;
	width: 42%;
}

.menu-item-options-tbl td:last-child{
	width: 16%;
}

.menu-item-options-tbl th{
	width: 42%;
}

.menu-item-options-tbl th:last-child{
	width: 16%;
}

.menu-item-options-tbl tr:nth-child(even){
	padding: 5px; 
	background-color: #eee;
	border: 5px solid #ffffff;
}
.menu-item-options-tbl tr:nth-child(even) > .menu-item-options-price{
	padding: 5px; 
	background-color: #ccc;
	border: 5px solid #ffffff;
}

.menu-item-option-new-tr{
	display: none;
}

.table-row-strike input{
	text-decoration: line-through; 
	
}

.login-panel{
	margin-top: 30px !important;
}

.login-brand-header{
	text-align: center;
	margin-top: 25%;
}

.navbar-brand{
	padding: 5px;	
}

.navbar-brand-logo{
	width: 40px;	
	float: left;
	margin-left:10px;
	margin-right:10px;
}

.navbar-brand-name{
	padding-top: 13px;
	float: left;
	color: #ffffff;
	font-size:24px;
}

.navbar-brand-clear{
	clear: both;
}

.price{
	text-align: right;
}


.res-claim-total{
	background-color: #eeeeee !important;
}

.res-claim-bold{
	font-weight: 600;
}

.new-claim{
	border-radius: 8px;
	background-color: #ff9933;
	color: #ffffff;
	padding: 4px;
	font-weight: 600;
}


.bar-chart-container {
	width: 100%;
	margin: 20px;
	background: #fff;
	padding: 20px;
	overflow: hidden;
	float: left;
}

/* Vertical */

.bar-chart-container.vertical .progress-bar {
	float: left;
	height: 300px;
	width: 60px;
	margin-right: 25px;
}

.bar-chart-container.vertical .progress-track {
	position: relative;
	width: 60px;
	height: 100%;
	background: #ebebeb;
}

.bar-chart-container.vertical .progress-fill {
	position: relative;
	background: #825;
	height: 50%;
	width: 60px;
	color: #fff;
	text-align: center;
	font-family: "Lato","Verdana",sans-serif;
	font-size: 12px;
	line-height: 20px;
}

.bar-chart-container.rounded .progress-track,
.bar-chart-container.rounded .progress-fill {
	box-shadow: inset 0 0 5px rgba(0,0,0,.2);
	border-radius: 3px;
}


.transaction-view{
	min-height: 37px;
}

.custom-option{
	width:100%;
}

.custom-option th,
.custom-option td{
	border: 3px solid #ffffff;
	width:50%;
}

.custom-option th{
	background-color: #cccccc;
}

.custom-option tr{
	background-color: #e6e6e6;
}

.custom-option tr:nth-child(even){
	background-color: #ffffff;
}


.tooltips{
	font-style: italic;
	color: #888888;
	font-size: 0.9em;
}


.modal-content .modal-header{
	padding: 12px 24px;
}

.modal .modal-header .close{
	color: #ffffff !important;
	margin-top: 6px;
}

.panel-heading{
	padding: 10px 15px !important;
}


.sidebar .user .photo{
	background-color: #ffffff;
}

.sidebar .user .photo .material-icons{
	margin-top: 0.25rem;
	justify-content: center;
	display: flex;
}


.form-control, .form-group .form-control {
	background-color: #fff;
    background-image: none;
    border: 1px solid #ccc !important;
    background-size: initial;
    background-repeat: no-repeat;
    background-position: center bottom, center calc(100% - 1px);
    transition: background 0s ease-out;
    float: none;
    box-shadow: none;
	border-radius: 4px;
	font-weight: 400;
}

.form-group{
	margin: 0px;
}

.form-control {
	padding: 6px 12px;
}

.input-group .input-group-addon {
	background-color: #eee;
    border: 1px solid #ccc;
	padding: 6px 12px;
}

.form-group select {
    appearance: auto;
}

.btn, .navbar .navbar-nav > li > a.btn{
	padding: 9px 12px;
	margin: 0;
	font-size: 13px;
}

.input-group .input-group-btn{
	padding: 0px;
}

.input-group-btn .btn{
	margin: 0 0 9px 0;
}

.nav-tabs {
    background: none;
    /* border: 0; */
    /* border-radius: 3px; */
    /* padding: 0 15px; */
}

.nav-tabs > li > a {
    color: #FFFFFF;
    border: 0;
    margin: 0;
    border-radius: inherit;
    line-height: 24px;
    text-transform: uppercase;
    font-size: 12px;
}

.table > thead > tr > th, 
.table > tbody > tr > th, 
.table > tfoot > tr > th, 
.table > thead > tr > td, 
.table > tbody > tr > td, 
.table > tfoot > tr > td {
	padding: 5px;
}

.time-container .form-group{
	padding-bottom: 0px;
}

.time-container .form-control{
	border-radius: 0px;
	padding: 0px;
}

.full-page.login-page:before{
	background-color: #fbfbfb !important;
}

.login-page .card-login{
	box-shadow: 0 1px 4px 0 rgba(0, 172, 193, 0.2);
}

.form-signin .form-group{
	margin-bottom: 15px;
}

.form-signin .card-login .card-content {
    padding: 30px 30px 10px 10px;
}

.form-signin .input-group .input-group-addon {
    border: 0;
    background: transparent;
	padding: 0px 15px 15px 15px;
}


.form-signin .form-control {
    border: 0 !important;
    background-image: linear-gradient(#9c27b0, #9c27b0), linear-gradient(#D2D2D2, #D2D2D2);
    background-size: 0 2px, 100% 1px;
    background-repeat: no-repeat;
    background-position: center bottom, center calc(100% - 1px);
    background-color: rgba(0, 0, 0, 0);
    transition: background 0s ease-out;
    float: none;
    box-shadow: none;
    border-radius: 0;
	font-weight: 400;
	padding: 7px 0px;
}

.main-panel > .content{
	padding-top: 15px;
	min-height: calc(100vh - 131px);
}

/*small/medium side display*/
@media (min-width: 768px) {
	
	/*Allow main to be next to Nav*/
	.main{
		position: absolute;
		width: calc(100% - 40px); /*keeps 100% minus nav size*/
		margin-left: 40px;
		float: right;
	}

	/*lets nav bar to be showed on mouseover*/
	nav.sidebar:hover + .main{
		margin-left: 200px;
	}

	/*Center Brand*/
	nav.sidebar.navbar.sidebar>.container .navbar-brand, .navbar>.container-fluid .navbar-brand {
		margin-left: 0px;
	}
	/*Center Brand*/
	nav.sidebar .navbar-brand, nav.sidebar .navbar-header{
		text-align: center;
		width: 100%;
		margin-left: 0px;
	}

	/*Center Icons*/
	nav.sidebar a{
		padding-right: 13px;
	}

	/*adds border top to first nav box */
	nav.sidebar .navbar-nav > li:first-child{
		border-top: 1px #e5e5e5 solid;
	}

	/*adds border to bottom nav boxes*/
	nav.sidebar .navbar-nav > li{
		border-bottom: 1px #e5e5e5 solid;
	}

	/* Colors/style dropdown box*/
	nav.sidebar .navbar-nav .open .dropdown-menu {
		position: static;
		float: none;
		width: auto;
		margin-top: 0;
		background-color: transparent;
		border: 0;
		-webkit-box-shadow: none;
		box-shadow: none;
	}

	/*allows nav box to use 100% width*/
	nav.sidebar .navbar-collapse, nav.sidebar .container-fluid{
		padding: 0 0px 0 0px;
	}

	/*colors dropdown box text */
	.navbar-inverse .navbar-nav .open .dropdown-menu>li>a {
		color: #777;
	}
	
	.navbar-inverse .navbar-nav .open .dropdown-menu .active a {
		color: #fff;
	}

	/*gives sidebar width/height*/
	nav.sidebar{
		width: 200px;
		height: 100%;
		margin-left: -160px;
		float: left;
		z-index: 8000;
		margin-bottom: 0px;
		position: fixed;
		top:0px;
	}
	
	/*give sidebar 100% width;*/
	nav.sidebar li {
		width: 100%;
	}

	/* Move nav to full on mouse over*/
	nav.sidebar:hover{
		margin-left: 0px;
	}
	/*for hiden things when navbar hidden*/
	.forAnimate{
		opacity: 0;
	}
}

/* .....NavBar: Fully showing nav bar..... */

@media (min-width: 1330px) {

	/*Allow main to be next to Nav*/
	.main{
		width: calc(100% - 200px); /*keeps 100% minus nav size*/
		margin-left: 200px;
	}

	/*Show all nav*/
	nav.sidebar{
		margin-left: 0px;
		float: left;
		position: fixed;
		top:0px;
	}
	/*Show hidden items on nav*/
	nav.sidebar .forAnimate{
		opacity: 1;
	}
}

nav.sidebar .navbar-nav .open .dropdown-menu>li>a:hover, nav.sidebar .navbar-nav .open .dropdown-menu>li>a:focus {
	color: #CCC;
	background-color: transparent;
}

nav:hover .forAnimate{
	opacity: 1;
}
section{
	padding-left: 15px;
}


#no-more-tables .count{
	text-align:right;
} 

#no-more-tables .second-child td{
	padding-left: 40px;
}

#no-more-tables .third-child td{
	padding-left: 80px;
}

span.tips{
	font-size: 10px;
	font-style: italic;
}


@media only screen and (max-width: 800px) {
    
    /* Force table to not be like tables anymore */
	#no-more-tables table, 
	#no-more-tables thead, 
	#no-more-tables tbody, 
	#no-more-tables th, 
	#no-more-tables td, 
	#no-more-tables tr { 
		display: block; 
	}
 
	#no-more-tables .count{
		text-align:left;
	} 

	/* Hide table headers (but not display: none;, for accessibility) */
	#no-more-tables thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
 
	#no-more-tables tr { border: 1px solid #ccc; }
 
	#no-more-tables td { 
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid #eee; 
		position: relative;
		padding-left: 50%; 
		white-space: normal;
		text-align:left;
		min-height:35px;
	}
 
	#no-more-tables td:before { 
		/* Now like a table header */
		position: absolute;
		/* Top/left values mimic padding */
		top: 6px;
		left: 6px;
		width: 45%; 
		padding-right: 10px; 
		white-space: nowrap;
		text-align:left;
		font-weight: bold;
	}
	
	#no-more-tables .second-child td{
		padding-left: 55%;
	}
	
	#no-more-tables .third-child td{
		padding-left: 60%;
	}
 
	/*
	Label the data
	*/
	#no-more-tables td:before { content: attr(data-title); }
	
}

.sidebar::before, .off-canvas-sidebar nav .navbar-collapse::before{
	background-color: #ffffff;
}
