/* header color css */
.navbar-custom {
 background-color: #2F3F4E;
 position: fixed;
 height: 50px;
 width: 100%;
 padding:5px;
 z-index: 9;
}

.stickyheader {
 background-color: #2F3F1E;
  background: white;
  position: sticky;
  top: 100; /* Don't forget this, required for the stickiness */
  box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.4);
}

/* profile css */
.profile img {
	border:1px solid #DFDCDC;
	display:block;
	margin:0;
	padding:5px;
	width:100%;
	max-width:200px;
}

/* setting css */
.setting-values .radioValue .radio label {
	display:block;
}
.setting-options {
	list-style: none;
	padding: 0;
	margin:0;
}
.setting-options:after {
	clear:both;
	content:' ';
	display:block;
}
.setting-options li {
	float: left;
	margin-bottom: 10px;
	margin-right: 15px;
}
.setting-options li label {
	font-weight: normal;
}
.setting-options li label input {
	margin-right: 5px;
	margin-top: 0;
}

/* group permissions css */
#permissionTables .permission_row .change_permission img {
	padding:5px;
}
#permissionTables .fix-column thead .fixcol {
	position: absolute;
	left: 0;
	margin-top: -1px;
	height: 37px;
	border-right: 0;
}
#permissionTables .fix-column tbody .fixcol {
	position: absolute;
	left: 0;
	margin-top: -1px;
	background-color:bisque;
}
#permissionTables .fix-column tbody .blankcol {
	white-space: nowrap;
}
#permissionTables .fix-column tbody .blankcol span {
	white-space: normal;
}
#per_loading_text {
	color:red;
	text-decoration: blink;
}

/* select2 css */
.select2-container, .select2-container .select2-search__field {
	width:100% !important;
}

/* social login css */
.social_logins {
	max-width: 280px;
	margin:0 auto;
}
.social_logins a {
	border-radius: 5px;
	padding: 5px 10px;
	width: 100%;
	font-size: 106%;
	letter-spacing: .4px;
	display: block;
	margin: 15px 0;
	color:#ffffff;
}
.social_logins a span {
	margin-left: 10px;
}
.social_logins .fb_btn {
	background: #4267B2;
}
.social_logins .google_btn {
	background: #4285F4;
}
.social_logins .twt_btn {
	background: #1DA1F2;
}
.social_logins .ldn_btn {
	background: #0077B5;
}

/* table sort css */
table th a.asc:after {
	content:' ⇣';
}
table th a.desc:after {
	content:' ⇡';
}
@media (max-width: 767px) {
	.table-responsive .dropdown-menu, .table-responsive .dropdown-toggle {
		position: static !important;
	}
}
@media (min-width: 768px) {
	.table-responsive {
		overflow: visible;
	}
}

/* form css */
.error-message {
	color:#9E2424;
}
form .required:after {
	color:#EE3322;
	content:"*";
	display:inline;
}

/* flash message css */
.toast-wrapper {
	position:absolute;
	top:20px;
	right:20px;
	z-index:100000;
	width:auto;
}

/* common css */
.h30 {
	height:30px;
}
.h32 {
	height:32px;
}
.h200 {
	height:200px;
}
.h300 {
	height:300px;
}
.h400 {
	height:400px;
}
.mw100 {
	min-width:100px;
}
.w170 {
	width:170px;
}
.w200 {
	width:200px;
}
.color-green {
	color:green;
}
.color-red {
	color:red;
}
.font-size-10 {
	font-size:10px;
}
.font-size-11 {
	font-size:11px;
}
.font-size-12 {
	font-size:12px;
}
.border-color-red {
	border-color:red;
}
.right5 {
	right:5px;
}
.top0 {
	top:0;
}
.display-none {
	display:none;
}

.copyright {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #2F3F4E;
  color: white;
  text-align: center;
  font-size:11px;
}