@import url("bootstrap.min.css");


.spinner-overlay	{
	display: none;
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    background-color: rgba(255,255,255, 0.7);
    overflow: hidden;
    transition: 0.5s;
}
.spinner {
  width: 40px;
  height: 40px;

  position: relative;
  margin: 100px auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.double-bounce1, .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #37495E;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
  0%, 100% { -webkit-transform: scale(0.0) }
  50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
  0%, 100% { 
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 50% { 
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}

html,
body {
    height: 100%;
	font-family: Open Sans, sans-serif;
	text-shadow: none;
	color: #fff;
}
.jumbotron	{
	color:#999;
}
.wrap {
    min-height: 100%;
    height: auto;
    margin: 0 auto -60px;
    padding: 0 0 60px;
	background-color:#F1F3F6;
	color:#666;
}

.wrap > .container {
    padding: 70px 15px 20px;
}

.jumbotron {
    text-align: center;
}

.footer {
    height: 60px;
    background-color: #38485D;
    padding-top: 25px;
	color:#fff;
}
.footer a	{
	color:#fff;
}
.navbar-default .navbar-nav>.open>a, .navbar-default .navbar-nav>.open>a:focus, .navbar-default .navbar-nav>.open>a:hover	{
	background-color:#333f54;
}
.dropdown-menu	{
	background-color:#455972;
	border-color:#455972;
	border-radius: 0px;
	-webkit-border-radius: 0px;
}
.dropdown-menu>li>a	{
	padding: 10px 20px;
	color:#fff;
}
.dropdown-menu>li>a:focus, .dropdown-menu>li>a:hover	{
	background-color:#2B3A4B;
}
.btn-default.active, .btn-default.focus, .btn-default:active, .btn-default:focus, .btn-default:hover, .open>.dropdown-toggle.btn-default	{
	background-color:#2B3A4B;
	border-color:#2B3A4B;
}
.btn-info.active, .btn-info.focus, .btn-info:active, .btn-info:focus, .btn-info:hover, .open>.dropdown-toggle.btn-info	{
	background-color:#367AAE;
	border-color:#367AAE;	
}
.not-set {
    color: #c55;
    font-style: italic;
}

.inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.inputfile + label {
    max-width: 80%;
    font-size: 1.25rem;
    /* 20px */
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    padding: 0.625rem 1.25rem;
    /* 10px 20px */
}
td i.fa.fa-pencil,
td i.fa.fa-times	{
	cursor: pointer;
}
.no-js .inputfile + label {
    display: none;
}

.inputfile:focus + label,
.inputfile.has-focus + label {
    outline: 1px dotted #000;
    outline: -webkit-focus-ring-color auto 5px;
}

.inputfile + label * {
    /* pointer-events: none; */
    /* in case of FastClick lib use */
}

.inputfile + label svg {
    width: 1em;
    height: 1em;
    vertical-align: middle;
    fill: currentColor;
    margin-top: -0.25em;
    /* 4px */
    margin-right: 0.25em;
    /* 4px */
}

.inputfile-4 + label {
    color: #d3394c;
}

.inputfile-4:focus + label,
.inputfile-4.has-focus + label,
.inputfile-4 + label:hover {
    color: #722040;
}

.inputfile-4 + label figure {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #d3394c;
    display: block;
    padding: 20px;
    margin: 0 auto 10px;
}

.inputfile-4:focus + label figure,
.inputfile-4.has-focus + label figure,
.inputfile-4 + label:hover figure {
    background-color: #722040;
}

.inputfile-4 + label svg {
    width: 100%;
    height: 100%;
    fill: #f1e5e6;
}

#loading {
    position: absolute;
    left: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    top: 0px;
    bottom: 0px;
    background-image: url('../images/loading.gif');
    background-repeat: no-repeat;
    background-position: center;
    background-color: rgba(0,0,0,0.4);
    z-index: 9999;
    display: none;
}

/*-- Sorting --*/

/* add sorting icons to gridview sort links */
a.asc:after, a.desc:after {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    padding-left: 5px;
}

a.asc:after {
    content: /*"\e113"*/ "\e151";
}

a.desc:after {
    content: /*"\e114"*/ "\e152";
}

.sort-numerical a.asc:after {
    content: "\e153";
}

.sort-numerical a.desc:after {
    content: "\e154";
}

.sort-ordinal a.asc:after {
    content: "\e155";
}

.sort-ordinal a.desc:after {
    content: "\e156";
}

/*-- Other --*/

.grid-view th {
    white-space: nowrap;
}

.hint-block {
    display: block;
    margin-top: 5px;
    color: #999;
}

.error-summary {
    color: #a94442;
    background: #fdf7f7;
    border-left: 3px solid #eed3d7;
    padding: 10px 20px;
    margin: 0 0 15px 0;
}

/* add red asterisk to required form fields */
div.required label:after {
    content: " *";
    color: #e13431;
}

/*-- GridView options display tweaks --*/

.user-index td:last-child,
.articles-admin td:last-child {
    width: 68px;
}

.article-view th {
    min-width: 90px;
}

/*-- Css for nicer display of boolean yes/no values --*/

.boolean-true {
    font-weight: bold;
    color: #00b100;
}

.boolean-false {
    font-weight: bold;
    color: #e34542;
}

/*-- Css for nicer display of user roles --*/

.role-theCreator {
    font-weight: bold;
    color: #f9f9f9;
}

.role-admin {
    font-weight: bold;
    color: #c4a500;
}

.role-editor {
    font-weight: bold;
    color: #a700a7;
}

.role-support {
    font-weight: bold;
    color: #009d00;
}

.role-premium {
    font-weight: bold;
    color: #6060ff;
}

.role-member {
    font-weight: bold;
}

/*-- Colors used for various data presentation purposes --*/

.blue {
    font-weight: bold;
    color: #7373ff; 
}

.green {
    font-weight: bold;
    color: #009d00;
}

.gold {
    font-weight: bold;
    color: #c4a500;   
}

hr.top {
    margin-top: 0px;
    border-width: 2px;
    border-color: #333;
    text-align: left;
}

hr.article-devider {
    border-width: 1px;
    border-color: #444;
    border-style: dashed;
    text-align: left;
}
.nz-meter-container {
    display: none;
}
#form-signup table,
#form-user table,
#reset-password-form table {
    background-color: transparent;
}

/** new stuff **/
.navbar-default	{
	background-color:#36495E;
	border-color:#2B3A4B;
	background-image: none;
	border-bottom: 3px solid #2B3A4B;
}
.navbar-nav>li>a {
    padding: 25px 15px;
	color:#fff !important;
	font-weight: 400 !important;
}
.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:focus, .navbar-default .navbar-nav>.active>a:hover	{
	background-color: #2B3A4B;
}
.navbar-brand	{
	padding: 21px;
}
.navbar-brand img	{
	max-height: 33px;
	float: left !important;
	margin-right: 15px !important;
	width: auto !important;
}
.navbar-default .navbar-brand	{
	color:#fff;
	text-transform: uppercase;
	text-shadow: none;
	font-weight: 700;
}
.navbar-default .navbar-brand.user-welcome	{
	color:#fff;
	text-transform: none;
	font-weight: 500;
	text-shadow: none;
	font-weight: 700;
	font-size: 18px !important;
	font-family:"Open Sans", sans-serif;
}
.page-header	{
	border-bottom: 0;
	color:#34495e;
	text-shadow: none;
	font-weight: 700;
}
.well	{
	background-color:#fff;
	border-color:#fff;
	-webkit-border-radius: 0;
	border-radius: 0;
	border: 1px solid #eaeaea;
	box-shadow: none;
	-webkit-box-shadow: none;
}
h1, h2, h3, h4, h5, h6 {
	text-shadow: none;
	color:#34495e;
	font-weight: 700;
}
h1	{
	font-size: 24px;
	font-weight: 700;
}
.label	{
	padding: 5px 8px;
	font-weight: 400;
}
.btn	{
	background-image: none;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
	-ms-transition: all 0.6s ease;
	-o-transition: all 0.6s ease;
	transition: all 0.6s ease;
	border-color: transparent;
	text-shadow: none;
	-webkit-text-shadow: none;
	padding: 10px 15px;
	font-size: 13px;
	margin-bottom: 5px;
}
.btn:hover	{
	border-color: transparent;
	background-image: none;	
}
.btn-info	{
	color: rgb(255, 255, 255);
    background-color: rgb(26, 130, 174);
    border-color: rgb(24, 122, 163);
}
.btn-info:not(:disabled):not(.disabled):active, 
.btn-info:not(:disabled):not(.disabled).active, 
.show > .btn-info.dropdown-toggle {
    color: rgb(255, 255, 255);
    background-color: rgb(24, 122, 163);
    border-color: rgb(23, 113, 152);
}
.right-buttons	{
	text-align: right;
	margin-top: 15px;
	margin-bottom: 15px;
}
.well .page-header	{
	margin: 0px;
}
table, .table .table {
	width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    background-color: transparent;
}
.table-bordered, .table .table {
    border-width: 1px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.05);
    border-image: initial;
}
.table-bordered th, .table-bordered td {
    border-width: 1px;
    border-style: solid;
    border-color: #f8f8f8;
    border-image: initial;
}
.table-striped tbody tr:nth-of-type(2n+1) {
    background-color: #f8f8f8;
}
.btn-success {
    color: rgb(255, 255, 255);
    background-color: rgb(75, 191, 115);
    border-color: rgb(75, 191, 115);
}
.btn-success:hover {
    color: rgb(255, 255, 255);
    background-color: #55A231;
    border-color: #55A231;
}
.btn-primary	{
	color: #fff;
    background-color: #36495E;
    border-color: #36495E;
}
.btn-danger.active, .btn-danger.focus, .btn-danger:active, .btn-danger:focus, .btn-danger:hover, .open>.dropdown-toggle.btn-danger	{
	background-color:#B43C2F;
	border-color:#B43C2F;
}
.table .table, 
.table-bordered, 
.table-bordered>tbody>tr>td, 
.table-bordered>tbody>tr>th, 
.table-bordered>tfoot>tr>td, 
.table-bordered>tfoot>tr>th, 
.table-bordered>thead>tr>td, 
.table-bordered>thead>tr>th	{
	border-color:#eaeaea;
	color:#333;
}
a {
    color: rgb(26, 26, 26);
    background-color: transparent;
    text-decoration: none;
}
.log-in	{
	text-align: center;
	padding: 10px 0;
}
thead th	{
	font-size: 13px;
	font-weight: 700;
	padding: 25px 15px;
	color:#6a6c6f;
}
thead th a	{
	color:#6a6c6f;
}
.table>thead>tr>th	{
	border-bottom: 1px solid #ddd;
}
.table th, 
.table td {
    padding: 5px 15px !important;
	font-size: 14px;
}
h3	{
	font-weight: 700;
	font-size: 24px;
}
.form-control	{
	border-color:#eaeaea;
	background-color:#fff;
	-webkit-border-radius: 0;
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}
.form-control:focus	{
	-webkit-box-shadow: none;
	box-shadow: none;
}
.modal-content	{
	background-color:#fff;
}
.modal-content	{
	-webkit-border-radius:0;
	border-radius:0;
	-webkit-box-shadow: 0 0px 100px rgba(0,0,0,.3);
	box-shadow: 0 0px 100px rgba(0,0,0,.3);
	border: 0px;
}
.modal .table th, 
.modal .table td	{
	padding: 15px 15px !important;
	color:#333;
}
.modal .well	{
	border-color: transparent;
	padding: 0px;
}
.modal-footer .btn+.btn	{
	margin-bottom: 5px;
}
.modal-body	{
	padding: 15px;
}
.fa.fa-check	{
	color:rgb(60, 168, 97);
}
.thumbnail	{
	background-color:#ddd;
	border-color:#ddd;
	-webkit-border-radius: 0;
	border-radius: 0;
	margin: 2px auto;
}
.input-group-addon	{
	-webkit-border-radius: 0;
	border-radius: 0;
}
.table-responsive >.table	{
	background-color: transparent;
}
.btn i.fa	{
	margin-right: 5px;
}
.btn i.fa:only-child	{
	margin-right: 0px;
}
.table-bordered>tbody>tr:hover>td, 
.table-bordered>tbody>tr:hover>th	{
	background-color:#f0f0f0;
}
.table>tbody>tr>td, 
.table>tbody>tr>th, 
.table>tfoot>tr>td, 
.table>tfoot>tr>th, 
.table>thead>tr>td, 
.table>thead>tr>th	{
	border-top: 1px solid #ddd;
}
.table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th	{
	border-color:#eaeaea;
}
.text-white {
	color: white !important;
}
.gradient {
	position: relative;
    content: "";
    height: 100%;
    width: 100%;
    top: 100;
    left: 0;
    background: #F1F3F6;
}
.qr-scanner-btn	{
	margin-top: 74px;
}
.pagination>li>a, 
.pagination>li>span,
.pagination>li.disabled>a, 
.pagination>li.disabled>a:hover, 
.pagination>li.disabled>span, 
.pagination>li.disabled>span:hover	{
	background-image: none;
	background-color:#fff;
	border-color:#eaeaea;
	text-shadow: none;
	color:#333;
	padding: 10px 15px;
}
.pagination>li.active>a, .pagination>li.active>span, .pagination>li>a:hover, .pagination>li>span:hover	{
	background-color:#f0f0f0;
	background-image: none;
	border-color:#f0f0f0;
	color:#333;
}
.pagination,
.pagination>li:first-child>a, 
.pagination>li:first-child>span,
.pagination>li:last-child>a, 
.pagination>li:last-child>span	{
	border-radius: 0px;
	-webkit-border-radius: 0px;
}
.select2-container .select2-selection--single	{
	min-height: 28px;
	height: auto;
}
.select2-container .select2-selection--single .select2-selection__rendered	{
	padding-top: 5px;
	padding-bottom: 5px;
	height: 36px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow	{
	height: 36px;
}
.select2-container--default .select2-selection--single	{
	border-color:#eaeaea;
	border-radius: 0px !important;
	-webkit-border-radius: 0px;
}
.table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th	{
	vertical-align: middle;
}
.list-group .list-group-item.list-group-item-success	{
	border-color: #55A231 !important;
	font-weight: 700;
}
.bg-info:hover	{
	background-color:#367AAE;
}
.group-items-well	{
	margin: 0;
}
.panel-default>.panel-heading	{
	background-color:#36495e;
	padding: 0px;
}
.panel-title>a	{
	color:#fff;
	padding: 10px 15px;
	display: block;
}
#employees-table	{
	margin: 0;
}
.btn-group-xs>.btn, .btn-xs {
    padding: 1px 5px !important;
}

@media (max-width:767px){
	.site-signup	{
		margin-top: 70px;
	}
	.user-welcome {
	    padding: 10px 0px 0px;
	}	
	#drop {
	    padding: 30px 10px;
	}	
}

@media (max-width:991px) {
	.right-buttons {
	    text-align: left;
	    margin-bottom: 10px;
	    position: relative;
	    z-index: 20;
	}
	.btn{
		margin-bottom:2px;
	}
}
#ajaxLoadMore {
	cursor: pointer;
}
.form-horizontal .control-label {
    text-align: left;
}
.item-name a	{
	display: inline-block;
	padding: 5px;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	text-align: center;
	display: block;
}
.well.padding	{
	padding: 15px;
}
.label-success,
.btn-success,
.bg-success,
.list-group-item-success	{
	background-color:#6ACB3D;
	border-color:#6ACB3D;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
	-ms-transition: all 0.6s ease;
	-o-transition: all 0.6s ease;
	transition: all 0.6s ease;
}
.label-info,
.btn-info,
.bg-info,
.list-group-item-info	{
	background-color:#4498D9;
	border-color:#4498D9;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
	-ms-transition: all 0.6s ease;
	-o-transition: all 0.6s ease;
	transition: all 0.6s ease;
}
.label-warning,
.bg-warning,
.list-group-item-warning,
.btn-warning	{
	background-color:#FAB61F;
	border-color:#FAB61F;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
	-ms-transition: all 0.6s ease;
	-o-transition: all 0.6s ease;
	transition: all 0.6s ease;
}
.label-danger,
.bg-danger,
.list-group-item-danger,
.btn-danger	{
	background-color:#e74c3c;
	border-color:#e74c3c;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
	-ms-transition: all 0.6s ease;
	-o-transition: all 0.6s ease;
	transition: all 0.6s ease;
}
a.bg-info:hover {
    background-color: #367AAE;
}
.btn-default	{
	background-color:#36495E;
	border-color:#36495E;
}
.select2-results__option	{
	color:#181818;
}
.panel	{
	background-color:#fff;
	border-color: transparent;
}
.modal-header,
.modal-footer	{
	border-color:#eaeaea;
}
.modal-header .close	{
	margin-top: 7px;
	margin-right: 15px;
}
.input-group-addon	{
	background-image: none;
	background-color: #36495E;
}
hr	{
	border-color:#eaeaea;
}
.summary	{
	padding-bottom: 10px;
}
.ui-datepicker {
	background-color:#fff;
	width: 280px;
	-webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3);
	box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3);
	z-index: 1000 !important;
}
.ui-datepicker-header {
  height: 50px;
  line-height: 50px;
  color: #fff;
  background: #37495E;
}
.ui-datepicker-prev,
.ui-datepicker-next {
  width: 20px;
  height: 20px;
  text-indent: 9999px;
  border-radius: 100%;
  cursor: pointer;
  overflow: hidden;
  margin-top: 12px;
}
.ui-datepicker-prev {
  float: left;
  margin-left: 12px;
}
.ui-datepicker-prev:after {
  transform: rotate(45deg);
  margin: -43px 0px 0px 8px;
}
.ui-datepicker-next {
  float: right;
  margin-right: 12px;
}
.ui-datepicker-next:after {
  transform: rotate(-135deg);
  margin: -43px 0px 0px 6px;
}
.ui-datepicker-prev:after,
.ui-datepicker-next:after {
  content: '';
  position: absolute;
  display: block;
  width: 8px;
  height: 8px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.ui-datepicker-prev:hover,
.ui-datepicker-next:hover,
.ui-datepicker-prev:hover:after,
.ui-datepicker-next:hover:after {
  border-color: #5ed1cc;
}
.ui-datepicker-title {
  text-align: center;
  font-weight: 700;
}
.ui-datepicker-calendar {
  width: 100%;
  text-align: center;
}
.ui-datepicker-calendar thead tr th span {
  display: block;
  width: 40px;
  color: #181818;
  margin-bottom: 5px;
  font-size: 13px;
}
.ui-state-default {
  display: block;
  text-decoration: none;
  color: #181818;
  line-height: 35px;
  font-size: 12px;
}
.ui-state-default:hover {
  background: rgba(0,0,0,0.02);
}
.ui-state-highlight {
  background-color: #8dd391;
  color:#fff;
}
.ui-datepicker-today {
  color: #fff;
  font-weight: 700;
}
.ui-datepicker-unselectable .ui-state-default {
  color: #eee;
  border: 2px solid transparent;
}
.ui-datepicker-calendar	{
	margin-bottom: 0px;
}
.ui-datepicker-calendar th	{
	padding: 10px;
}
.ui-datepicker-calendar tbody th,
.ui-datepicker-calendar tbody td	{
	border: 1px solid #f0f0f0;
}
.ui-datepicker-calendar th,
.ui-datepicker-calendar td	{
	max-width: 15px;
}
.ui-datepicker-other-month	{
	background-color:#f0f0f0;
	color:#999;
}
.ui-datepicker-other-month a	{
	color:#999;
}
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
    cursor: default;
    background-color: #fff;
    opacity: 1;
}
.dropdown	{
	display: inline-block;
}
.dropdown-menu.tool-menu	{
	right: 0;
	top: 39px;
	left: auto;
	background-clip: unset;
	-webkit-border-radius: 3px 0 3px 3px;
	border-radius: 3px 0 3px 3px;
}
.panel-default>.panel-heading	{
    background-color: #fff;
    padding: 0px;
    margin: -1px;
}
.panel-title>a {
    color: #36495E;
    padding: 10px 15px;
    display: block;
    border: 1px solid #ddd;
}
#worksheetRowForm .form-group	{
	margin-bottom: 5px;
}
.panel-group .panel+.panel	{
	margin-top: 1px;
}
.panel-default>.panel-heading+.panel-collapse>.panel-body	{
	border-color: transparent;
}
.content-wrapper	{
	padding-top: 68px;
}
.createWorksheet .table th,
.createWorksheet .table td	{
	padding: 2px !important;
}
.createWorksheet .table th .form-control,
.createWorksheet .table td .form-control	{
	padding: 3px 4px;
}
.createWorksheet .select2-container	{
	width: 100% !important;
}
#accordion .btn	{
	margin-bottom: 0px;
}
#accordion .table	{
	margin-bottom: 15px;
}
#calendar .fc-scroller	{
	height: auto !important;
	overflow: hidden !important;
}
#calendar .fc-view-container	{
	background-color:#fff;
}
#calendar .fc-widget-header table	{
	margin-bottom: 0px;
}
#calendar .fc-widget-header table th	{
	padding: 10px;
	background-color:#36495E;
	color:#fff;
}
#calendar .fc-row	{
	height: auto !important;
}
.modal .table-responsive .form	{
	background-color:#f8f8f8;
}	
.modal .table-responsive .form .table th:first-child	{
	background-color:#fff;
}	
.modal .table-responsive .form .table th,
.modal .table-responsive .form .table td	{
	border-top: 0px;
}
.select2-container	{
	width: 100% !important;
}
#createWorksheet .form-control,
#createWorksheet textarea.form-control,
.select2-container .select2-selection--single .select2-selection__rendered	{
	height: 30px;
	padding: 2px 5px;
}
#createWorksheet .table th,
#createWorksheet .table td	{
	font-size:13px;
}

@media only screen and (max-width: 1980px) {
	.modal .table th, .modal .table td	{
		padding: 5px !important;
	}
	.modal-footer	{
		padding: 15px;
	}
	#worksheet-wrapper h1	{
		margin: 25px 0 0px;
	}	
	#worksheet-wrapper .col-md-7 .right-buttons	{
		margin-bottom: 0px;
	}	
	#worksheet-wrapper hr	{
		margin: 15px 0;
	}
	.btn	{
		padding: 7px 11px;
	}
}
@media only screen and (max-width: 990px) {
	.right-buttons	{ text-align: right; }
	.user-welcome	{
		display: none;
	}
	body	{
		overflow-x: hidden;
	}
	.container	{
		width: 100%;
	}
	.table-responsive	{
		width: 100%;
	}
	.table-bordered, .table-bordered th, .table-bordered td, .table .table, .table-bordered, .table-bordered>tbody>tr>td, .table-bordered>tbody>tr>th, .table-bordered>tfoot>tr>td, .table-bordered>tfoot>tr>th, .table-bordered>thead>tr>td, .table-bordered>thead>tr>th	{
		text-align: center;
	}
}
@media only screen and (max-width: 990px) and (min-width: 768px) {
	.page-header	{
		margin-top: 15px;
	}
}
@media only screen and (min-width: 768px) {
	.fa.fa-check {
		color: #fff;
		background: #6ACB3D;
		width: 30px;
		height: 30px;
		text-align: center;
		margin: 0 auto;
		border-radius: 50%;
		padding-top: 8px;
	}
	.logout-btn	{
		display: none;
	}
	.navbar-brand {
		line-height: 30px;
		height: 70px;
	}
}
@media only screen and (max-width: 768px) {
	#worksheet-wrapper .table tr th,
	#worksheet-wrapper .table tr td	{
		border-color:#999;
	}
	.table-bordered, .table-bordered th, .table-bordered td, .table .table, .table-bordered, .table-bordered>tbody>tr>td, .table-bordered>tbody>tr>th, .table-bordered>tfoot>tr>td, .table-bordered>tfoot>tr>th, .table-bordered>thead>tr>td, .table-bordered>thead>tr>th	{
		text-align: left;
	}
	.table th, .table td	{
		font-size: 13px;
	}
	.site-request-password-reset	{
		margin-top: 70px;
	}
	.modal-footer .btn+.btn	{
		margin-bottom: 2px;
	}
	.btn-group-xs>.btn, .btn-xs {
		padding: 5px 15px !important;
	}
	/*.table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th	{
		border-color:#fff;
	}*/
	.modal .table td	{
		padding: 15px 15px !important;
		color:#333;
	}
	.modal .table th, 
	.modal .table td	{
		padding: 5px !important;
		color:#333;
	}
	.navbar-default .navbar-nav>li>a,
	.navbar-default .navbar-nav .open .dropdown-menu>li>a	{
		text-align: center;
		color:#fff;
	}
	.navbar-fixed-bottom .navbar-collapse, .navbar-fixed-top .navbar-collapse	{
		max-height: 500px;
	}
	.logout-btn	{
		color:#fff;
	}
	.gradient	{
		background-color:transparent;
	}
	body	{
		font-size: 14px;
		background-color:#f4f5f9;
	}
	.navbar-brand	{
		padding: 20px 15px;
		font-size: 14px;
	}
	.navbar-brand img	{
		max-height: 20px;
	}
	.navbar-nav .open .dropdown-menu>li>a, 
	.navbar-nav .open .dropdown-menu .dropdown-header	{
		padding: 15px;
	}
	li.lang-item:first-child {
		margin-left: 6px;
	}
	li.lang-item {
		display: inline-block;
		text-align: center;
		width: 32%;
	}
	.no-more-tables td .btn	{
		display: block;
		width: 100%;
		float: right;
	}
	.btn-xs	{
		padding: 10px 5px;
	}
	.right-buttons .btn	{ display: block; }
	.btn	{ padding: 15px 10px;}
	.navbar-brand	{ height: auto; }
	.navbar-toggle, .navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {margin-top: 16px; background-color:#f1f4f6; border-radius: 3px; -webkit-border-radius: 3px;}
	.navbar-default .navbar-toggle .icon-bar	{ background-color: #36495E; }
	.navbar-default .navbar-brand.user-welcome {
		display: block;
		float: none;
		width: 100%;
		margin: 10px 0;
		text-align: center;
	}
	.right-buttons	{
		margin-top: 0px;
	}	
	.right-buttons .btn	{
		width: 49%;
		float: left;
		margin-right: 2px;
	}
	.modal-header {
		padding: 15px;
		background: #fff;
	}
	h4.modal-title	{
		font-size: 18px;
		font-weight: 700;
	}
	.table-responsive	{
		border-color: transparent;
	}
	.table th, 
	.table td	{
		padding: 0px !important;
	}
	.strong-xs	{
		font-weight: 700;
	}
	.table-bordered,
	.table-bordered th,
	.table-bordered td,
	.table .table, 
	.table-bordered, 
	.table-bordered>tbody>tr>td, 
	.table-bordered>tbody>tr>th, 
	.table-bordered>tfoot>tr>td, 
	.table-bordered>tfoot>tr>th, 
	.table-bordered>thead>tr>td, 
	.table-bordered>thead>tr>th	{
		vertical-align: middle;
		padding: 0;
	}
	.table th:last-child 	{
		padding: 10px !important;
		font-weight: 700;
	}
	.items-table tr.filters td:nth-child(5)	{
		display: none;
	}
	.table td:last-child	{
		padding: 2px !important;
	}
	.table thead a	{
		font-weight: 700;
	}
	.group-items-well.well	{
		padding: 0px;
		padding-bottom: 15px;
	}
	.summary	{
		margin: 15px 0;
	}
	.items-table .filters td:first-child	{
		display: none;
	}
	#groupUsers .table tr th:first-child,
	#groupUsers .table tr td:first-child	{
		display: none;
	}
	.wrap > .container {
		padding: 0 15px 20px;
	}
	.qr-scanner-btn {
		margin-top: 62px;
	}
	.page-header	{
		margin-top: 15px;
	}	
	.page-header img	{
		margin-bottom: 15px;
	}
	h1.page-header	{
		font-size: 23px;
	}
	.qr-scanner-btn .btn	{
		position: relative;
		z-index: 999;
	}
	h3	{
		font-size: 21px;
		margin: 10px 0;
	}
	.well	{
		padding: 0px;
	}
	.form-control	{
		height: auto;
		padding: 9px 8px;
	}
	.form-horizontal .form-control	{
		padding: 3px 8px;
	}
	.table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th	{
		vertical-align: middle;
	}
	.well.padding	{
		text-align: center;
	}
	.mce-toolbar-grp	{
		display: none !important;
	}
	.label	{
		width: 100%;
		margin-bottom: 3px;
		display: block;
		padding: 8px;
	}
	h3	{
		margin-top: 20px;
		margin-bottom: 10px;
	}
	.right-buttons:after	{
		clear: both;
	}
	.well.well-padding	{
		padding: 15px;
	}
	.btn-xs-block {
        display: block;
        width: 100%;
    }
    input[type="submit"].btn-xs-block,
    input[type="reset"].btn-xs-block,
    input[type="button"].btn-xs-block {
        width: 100%;
    }
    .btn-block + .btn-xs-block,
    .btn-xs-block + .btn-block,
    .btn-xs-block + .btn-xs-block {
        margin-top: 0.5rem;
    }
	.modal .table tr,
	.modal .table td	{
		padding: 5px !important;
		color:#333;
	}
	input[type="date"]	{
		display:block;
		min-height: 50px;
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
	}
	input[type=text],
	input[type=password] {   
		/* Remove First */
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
	}
	.ui-datepicker {
		z-index: 1040 !important;
	}
	hr	{
		margin-top: 10px;
		margin-bottom: 10px;
	}
	h4	{
		font-size: 18px;
	}
	.qr-scanner-btn {
		margin-top: 17px;
		position: fixed;
		z-index: 999999;
		width: 100%;
		right: 75px;
	}
	.qr-scanner-btn .btn {
		padding: 6px 10px 7px;
		z-index:99999;
	}
	.modal 	{
		z-index: 999999;
	}
	#createWorksheet .form-control,
	#createWorksheet textarea.form-control,
	.select2-container .select2-selection--single .select2-selection__rendered	{
		height: 25px;
		padding: 2px 5px;
	}
	.select2-container--default .select2-selection--single .select2-selection__arrow	{
		height: 25px;
	}
	#worksheet-wrapper .create-ws-btn	{
		padding: 10px 5px;
	}	
	#worksheet-wrapper #optionsPanel	{
		margin-bottom: 2px;
	}
	#worksheet-wrapper h1	{
		margin-top: 5px;
		font-size: 18px;
	}	
	#worksheet-wrapper h1 .btn	{
		margin-top: -5px;
	}		
	#worksheet-wrapper .form-control	{
		padding: 4px 8px;
	}		
	#worksheet-wrapper .panel-title>a	{
		padding: 5px 15px;
		font-size: 14px;
	}	
	#worksheet-wrapper .panel-body	{
		padding: 1px 3px;
	}	
	#worksheet-wrapper .table-responsive>.table-bordered	{
		border: 1px solid #999;
	}
	#createWorksheet .table th, #createWorksheet .table td	{
		padding: 1px !important;
	}
	#createWorksheet .select2-container {
		width: 150px !Important;
	}
	#worksheet-wrapper .table th:last-child {
		padding: 1px !important;
		font-weight: 700;
	}	
	#worksheet-wrapper .table td.billed {
		min-width: 100px;
	}	
	#worksheet-wrapper .table-responsive {
		margin-bottom: 0px;
	}	
	#worksheet-wrapper #accordion .table {
		margin-bottom: 5px;
	}
	#worksheet-wrapper hr	{
		margin: 2px 0;
	}
	.modal .btn,
	#worksheet-wrapper .btn,
	.loadPanels {
		padding: 5px 15px !important;
		min-width: 90px;
		max-width: 90px;
	}		
	.loadPanels,
	#worksheet-wrapper .btn-danger {
		min-width: 90px;
		max-width: 100%;
	}	
	#worksheet-wrapper #collapse-buttons .right-buttons .btn {
		min-width: 90px;
		max-width: 100%;
	}
	#worksheet-wrapper .panel-group {
		margin-bottom: 5px;
	}
}
@media only screen and (max-width: 375px) {
	.table-responsive	{
		border-color: #fff;
	}
	.table th, 
	.table td	{
		padding: 0px 1px !important;
		text-align: center;
		vertical-align: middle;
	}
	.items-table	{
		border: 0px;
	}
}

.business-logo-md {
	max-width: 140px;
	height: auto;
}

.business-logo-sm {
	max-width: 95px;
	height: auto;
}
.swal2-success	{
	position: fixed;
    top: 45%;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    width: 50px;
    background: #6ACB3D;
    padding: 15px;
    border-radius: 50%;
	color:#fff !important;
}
.swal2-success i.fa	{
	color:#fff;
}	
@media only screen and (max-width: 335px) {
	.navbar-brand img	{
		max-height: 17px;
		margin-top: 2px !important;
	}
	.navbar-brand	{
		font-size: 13px;
	}
}