
.text-error { color: red; }

/* Custom labels: the container */
.checkcontainer {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 17px;
    -webkit-user-select: none; /* Chrome, Opera, Safari */
    -moz-user-select: none; /* Firefox 2+ */
    -ms-user-select: none; /* IE 10+ */
    user-select: none; /* Standard syntax */
}

/* Hide the browser's default checkbox */
.checkcontainer input {
  	position: absolute;
	  opacity: 0;
cursor: pointer;}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
}

/* On mouse-over, add a grey background color */
.checkcontainer:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkcontainer input:checked ~ .checkmark {
    background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkcontainer input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkcontainer .checkmark:after {
    left: 10px;
    top: 6px;
    width: 7px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* Create a custom radio button */
.radiobtn{
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.checkcontainer:hover input ~ .radiobtn{
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.checkcontainer input:checked ~ .radiobtn{
  background-color: #2196F3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.radiobtn:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.checkcontainer input:checked ~ .radiobtn:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.checkcontainer .radiobtn:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

input.form-control, select.form-control {
	font-weight:bold;
	color: #000;
}

.text-bold {font-weight:bold;}
.text-upper {text-transform:uppercase;}
.text-lower {text-transform:lowercase;}
.text-formal {text-transform:capitalize;}
.text-capitalize {text-transform: capitalize; }
.text-blue {color:blue;}
.text-red {color:red;}
.text-black {color:black;}
.text-green {color:green;}
.text-yellow {color:yellow;}
.text-link{color:#337ab7;}
/* usage */
/*
<div class="w3-row" style="padding:10px;border:4px solid #f1f1f1;">
<div class="w3-col s4">
<p><strong>Default:</strong></p>
<input type="checkbox" checked="checked"> One<br>
<input type="checkbox"> Two<br><br>
<input type="radio" name="same" checked="checked"> One<br>
<input type="radio" name="same"> Two
</div>

<div class="w3-col s4">
<p><strong>Custom checkbox:</strong></p>
<label class="checkcontainer">One
  <input type="checkbox" checked="checked">
  <span class="checkmark"></span>
</label>
<label class="checkcontainer">Two
  <input type="checkbox">
  <span class="checkmark"></span>
</label>
<label class="checkcontainer">Three
  <input type="checkbox">
  <span class="checkmark"></span>
</label>
<label class="checkcontainer">Four
  <input type="checkbox">
  <span class="checkmark"></span>
</label>
</div>

<div class="w3-col s4">
<p><strong>Custom radio button:</strong></p>
<label class="checkcontainer">One
  <input type="radio" checked="checked" name="radio">
  <span class="radiobtn"></span>
</label>
<label class="checkcontainer">Two
  <input type="radio" name="radio">
  <span class="radiobtn"></span>
</label>
<label class="checkcontainer">Three
  <input type="radio" name="radio">
  <span class="radiobtn"></span>
</label>
<label class="checkcontainer">Four
  <input type="radio" name="radio">
  <span class="radiobtn"></span>
</label>
</div>

</div>

*/

.row.form-group {margin-bottom:4px;}

.form-group input.form-control,
.form-group select.form-control{ 
  border:1px solid #888; 
}

.form-group .input-group .input-group-addon{ 
  border-color: #888; 
}

.logo-name {
  -webkit-text-stroke-width: 6px;
  -webkit-text-stroke-color: #ddd;
  font-size: 90px;
  font-family: "open sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #ddd;
  letter-spacing: 2px;
}

.gray-bg {
  background:#fff;
  border-top:1px solid #eee;
}

.gray-bg-1 {
  background:#f3f3f4;
  border-top:1px solid #eee;
}

.white-bg {
  background-color:#fff;
}

a.black-link, a.black-link:active {
  color:black;
}
a.black-link:hover{
  color: #337ab7;
}

div.app-toolbar {
  position: fixed;
  top: 10px;
  left: 290px;
  z-index:1020; 
}

body.left-side-collapsed div.app-toolbar {
  left: 120px;
}

.form-group label {
  color: #555;
  font-weight:bold;
}

input.form-control[required],
select.form-control[required],
autocomplete[required] input.form-control{
  border-color:red;
}


div.checkbox {
  padding-left:0;
}

.checkbox input[type="checkbox"],
.checkbox input[type="radio"] {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.checkbox label {
  position: relative;
  display: inline-block;
  padding: 0 0 0 2em;
  height: 1.5em;
  line-height: 1.5;
  cursor: default;
}
.checkbox label::before,
.checkbox label::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 1.5em;
  height: 1.5em;
}
.checkbox label::before {
  content: " ";
  border: 2px solid #999;
  border-radius: 20%;
}
.checkbox input[type="checkbox"][disabled] + label::before {
   background-color:#eee;
   cursor: not-allowed;
}
/* Checkbox */
.checkbox input[type="checkbox"] + label::after {
  content: "\2714";
  color: #2c3e50;
  line-height: 1.5;
  text-align: center;
}

/* Radio */
.radio input[type="radio"] + label::before {
  border-radius: 50%;
}
.radio .checkbox input[type=radio] + label::after {
  content: " ";
  top: .25em;
  left: .25em;
  width: 1em;
  height: 1em;
  background: #fff;
  border: .2em solid #2c3e50;
  border-radius: 50%;
}
/* :checked */
.checkbox input[type="checkbox"]:checked + label::before,
.radio input[type="radio"]:checked + label::before {
  background: #fff;
  border-color: #888;
}
.checkbox input[type="checkbox"] + label::after,
.radio input[type=radio] + label::after {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}
.checkbox input[type="checkbox"]:checked + label::after,
.radio input[type=radio]:checked + label::after {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
/* Transition */
.checkbox label::before,
.chekbox label::after,
.radio label::before,
.radio label::after {
  -webkit-transition: .25s all ease;
  -o-transition: .25s all ease;
  transition: .25s all ease;
}

input.form-control.form-control-sm, select.form-control.form-control-sm {
  padding:4px;
  height: auto;
}

button.btn.btn-sm, button.btn.btn-xs {
  font-weight:700;
}

table.table.table-sm tr>td, 
table.table.table-sm>tbody>tr>td, 
table.table.table-sm>tbody>tr>th, 
table.table.table-sm>tfoot>tr>td, 
table.table.table-sm>tfoot>tr>th, 
table.table.table-sm>thead>tr>td, 
table.table.table-sm>thead>tr>th {
  padding:8px !important;
}

select {
  color:#000; 
  font-weight:bold;
  padding:2px;
}

.text-block{
  color:black;
}


a.help-tip {
  text-decoration: none;
}
a.help-tip i.fa-question-circle {
  font-size: 18px;
}
a.help-tip:hover {
  cursor: help;
  
}
a.help-tip span {
  display: none
}
a.help-tip span p {
  color: black;
  font-size: 13px;
}
a.help-tip:hover span {
  border-radius: 5px;
  border: #337ab7 1px dotted;
  padding: 5px 20px 5px 5px;
  background: white;
  display: inline-block;
  z-index: 100;
  left: 0px;
  margin: 10px;
  width: 250px;
  position: absolute;
  top: 10px;
  text-decoration: none;
}

.ibox {
  clear: both;
  margin-bottom: 25px;
  margin-top: 0;
  padding: 0;
}
.ibox.collapsed .ibox-content {
  display: none;
}
.ibox.collapsed .fa.fa-chevron-up:before {
  content: "\f078";
}
.ibox.collapsed .fa.fa-chevron-down:before {
  content: "\f077";
}
.ibox:after,
.ibox:before {
  display: table;
}
.ibox-title {
  -moz-border-bottom-colors: none;
  -moz-border-left-colors: none;
  -moz-border-right-colors: none;
  -moz-border-top-colors: none;
  background-color: #ffffff;
  border-color: #e7eaec;
  border-image: none;
  border-style: solid solid none;
  border-width: 2px 0 0;
  color: inherit;
  margin-bottom: 0;
  padding: 15px 10px 8px 15px;
  min-height: 48px;
  position: relative;
  clear: both;
}
.ibox-content {
  background-color: #ffffff;
  color: inherit;
  padding: 15px 20px 20px 20px;
  border-color: #e7eaec;
  border-image: none;
  border-style: solid solid none;
  border-width: 1px 0;
}

.ibox-footer {
  color: inherit;
  border-top: 1px solid #e7eaec;
  font-size: 90%;
  background: #ffffff;
  padding: 10px 15px;
}

.ibox .total {
  font-size:18px; 
  font-weight:500;
  font-family: 'Cabin', sans-serif;
}

.label {
  background-color: #d1dade;
  color: #5e5e5e;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 600;
  padding: 3px 8px;
  text-shadow: none;
  border-radius: 0.25em;
  line-height: 1;
  white-space: nowrap;
}
.nav .label,
.ibox .label {
  font-size: 10px;
}
.badge {
  background-color: #d1dade;
  color: #5e5e5e;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  padding-bottom: 4px;
  padding-left: 6px;
  padding-right: 6px;
  text-shadow: none;
  white-space: nowrap;
}
.label-primary,
.badge-primary {
  background-color: #1ab394;
  color: #FFFFFF;
}
.label-success,
.badge-success {
  background-color: #1c84c6;
  color: #FFFFFF;
}
.label-warning,
.badge-warning {
  background-color: #f8ac59;
  color: #FFFFFF;
}
.label-warning-light,
.badge-warning-light {
  background-color: #f8ac59;
  color: #ffffff;
}
.label-danger,
.badge-danger {
  background-color: #ed5565;
  color: #FFFFFF;
}
.label-info,
.badge-info {
  background-color: #23c6c8;
  color: #FFFFFF;
}
.label-inverse,
.badge-inverse {
  background-color: #262626;
  color: #FFFFFF;
}
.label-white,
.badge-white {
  background-color: #FFFFFF;
  color: #5E5E5E;
}
.label-white,
.badge-disable {
  background-color: #2A2E36;
  color: #8B91A0;
}

.folder-list {
  margin-left:0;
  padding-left:0;
}
.folder-list li {
  border-bottom: 1px solid #e7eaec;
  display: block;
}
.folder-list li a {
  color: #666666;
  display: block;
  padding: 5px 0;
}     


.bs-vertical-wizard {
  /*border-right: 1px solid #eaecf1;*/
  padding-bottom: 20px;
  padding-top:20px;
}

.bs-vertical-wizard ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bs-vertical-wizard ul>li {
  display: block;
  position: relative;
}

.bs-vertical-wizard ul>li>a {
  display: block;
  padding: 10px 10px 10px 40px;
  color: #fff;
  /* font-size: 17px; */
  font-weight: 400;
  letter-spacing: .8px;
}

.bs-vertical-wizard ul>li>a:before {
  content: '';
  position: absolute;
  width: 1px;
  height: calc(100% - 15px);
  background-color: #bdc2ce;
  left: 13px;
  bottom: -9px;
  z-index: 3;
}

.bs-vertical-wizard ul>li>a .ico {
  pointer-events: none;
  font-size: 14px;
  position: absolute;
  left: 10px;
  top: 15px;
  z-index: 2;
}


.bs-vertical-wizard ul>li>a i.lnr {
  font-size: 16px;
}

.bs-vertical-wizard ul>li>a:after {
  content: '';
  position: absolute;
  border: 2px solid #bdc2ce;
  border-radius: 50%;
  top: 10px;
  left: 6px;
  width: 16px;
  height: 16px;
  z-index: 3;
}

.bs-vertical-wizard ul>li>a .desc {
  display: block;
  color: #bdc2ce;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: .8px;
}

.bs-vertical-wizard ul>li.complete>a:before {
  background-color: #5cb85c;
  opacity: 1;
  height: calc(100% - 25px);
  bottom: -9px;
}

.bs-vertical-wizard ul>li.complete>a:after {display:none;}
.bs-vertical-wizard ul>li.locked>a:after {display:none;}
.bs-vertical-wizard ul>li:last-child>a:before {display:none;}

.bs-vertical-wizard ul>li.complete>a .ico {
  left: 8px;
}

.bs-vertical-wizard ul>li>a .ico.ico-green {
  color: #5cb85c;
}

.bs-vertical-wizard ul>li>a .ico.ico-muted {
  color: #bdc2ce;
}

.bs-vertical-wizard ul>li.current {
  background-color: #eee;
}

.bs-vertical-wizard ul>li.current>a:before {
  /*background-color: #ffe357;*/
  background-color:#8756fc;
  opacity: 1;
}

.bs-vertical-wizard ul>li.current>a {
  color:#000;
}

.bs-vertical-wizard ul>li.current>a:after {
  border-color: #8756fc; /*#ffe357;*/
  background-color:#03a9f4; /*#ffe357;*/
  opacity: 1;
}

.bs-vertical-wizard ul>li.current:after, .bs-vertical-wizard ul>li.current:before {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.bs-vertical-wizard ul>li.current:after {
  border-color: rgba(255,255,255,0);
  border-left-color: #fff;
  border-width: 10px;
  margin-top: -10px;
}

.bs-vertical-wizard ul>li.current:before {
  border-color: rgba(234,236,241,0);
  border-left-color: #eaecf1;
  border-width: 11px;
  margin-top: -11px;
}


body.left-side-collapsed li.nav-hover .bs-vertical-wizard ul>li>a:before,
body.left-side-collapsed li.nav-hover .bs-vertical-wizard ul>li>a:after{
  display:none;
}

label.required::after{
  content: "*";
  color: black; 
  font-weight:bold;
}



.flex {
  display: flex;
  flex-direction: row; 
}
.gutter.gutter-horizontal {
  cursor: ew-resize;
}


.slim-scrollbar::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
	border-radius: 6px;
	background-color: white;
}

.slim-scrollbar::-webkit-scrollbar
{
	width: 10px;
    height: 10px;
    padding: 18px;
    -webkit-border-radius: 1ex;
}

.slim-scrollbar::-webkit-scrollbar-thumb
{
    background-color: rgba(73, 90, 153, 0.3);
    padding: 8px;
    width: 10px;
    height: 10px;
    -webkit-border-radius: 1ex;
}

.white-bg{
  background-color: #fff;
}