/* hide element on mobile devices */



body {
  background-color: #ffffff;
  position: relative;
  min-height: 100vh;
  padding: 0;
}
#wrapper {
  width: 100%;
  
}
#page-wrapper {
  padding: 55px 15px;
  min-height: 100vh;
  background-color: white;
}
@media (min-width: 768px) {
  #page-wrapper {
    position: inherit;
    min-height: 100vh;
    margin: 0 0 0 250px;
    padding: 50px 30px;
    border-left: 1px solid #e7e7e7;
  }
}
.navbar-top-links {
  margin-right: 0;
}
.navbar-top-links li {
  display: inline-block;
}
.navbar-top-links li:last-child {
  margin-right: 15px;
}
.navbar-top-links li a {
  padding: 15px;
  min-height: 50px;
}
.navbar-top-links .dropdown-menu li {
  display: block;
}
.navbar-top-links .dropdown-menu li:last-child {
  margin-right: 0;
}
.navbar-top-links .dropdown-menu li a {
  padding: 3px 20px;
  min-height: 0;
}
.navbar-top-links .dropdown-menu li a div {
  white-space: normal;
}
.navbar-top-links .dropdown-messages,
.navbar-top-links .dropdown-tasks,
.navbar-top-links .dropdown-alerts {
  width: 310px;
  min-width: 0;
}
.navbar-top-links .dropdown-messages {
  margin-left: 5px;
}
.navbar-top-links .dropdown-tasks {
  margin-left: -59px;
}
.navbar-top-links .dropdown-alerts {
  margin-left: -123px;
}
.navbar-top-links .dropdown-user {
  right: 0;
  left: auto;
}

.page-action-links{
  margin:20px 0px 20px 0px;
}


.sidebar .sidebar-nav.navbar-collapse {
  padding-left: 0;
  padding-right: 0;
}
.sidebar ul li {
  border-bottom: 1px solid #e7e7e7;
}
.sidebar ul li a.active {
  background-color: #eeeeee;
}
.sidebar .arrow {
  float: right;
}
.sidebar .fa.arrow:before {
  content: "\f104";
}
.sidebar .active > a > .fa.arrow:before {
  content: "\f107";
}
.sidebar .nav-second-level li,
.sidebar .nav-third-level li {
  border-bottom: none !important;
}
.sidebar .nav-second-level li a {
  padding-left: 37px;
}
.sidebar .nav-third-level li a {
  padding-left: 52px;
}
@media (min-width: 768px) {
  .sidebar {
    z-index: 1;
    position: absolute;
    width: 250px;
    margin-top: 51px;
  }
  .navbar-top-links .dropdown-messages,
  .navbar-top-links .dropdown-tasks,
  .navbar-top-links .dropdown-alerts {
    margin-left: auto;
  }
}

.panel .slidedown .glyphicon,
.chat .glyphicon {
  margin-right: 5px;
}

.login-panel {
  margin-top: 25%;
}

.btn-circle {
  width: 30px;
  height: 30px;
  padding: 6px 0;
  border-radius: 15px;
  text-align: center;
  font-size: 12px;
  line-height: 1.428571429;
}
.btn-circle.btn-lg {
  width: 50px;
  height: 50px;
  padding: 10px 16px;
  border-radius: 25px;
  font-size: 18px;
  line-height: 1.33;
}
.btn-circle.btn-xl {
  width: 70px;
  height: 70px;
  padding: 10px 16px;
  border-radius: 35px;
  font-size: 24px;
  line-height: 1.33;
}
.show-grid [class^="col-"] {
  padding-top: 10px;
  padding-bottom: 10px;
  border: 1px solid #ddd;
  background-color: #eee !important;
}
.show-grid {
  margin: 15px 0;
}
.huge {
  font-size: 20px;
}

.panel-green > .panel-heading {
  border-color: #5cb85c;
  color: white;
  background-color: #5cb85c;
}
.panel-green {
  border-color: #5cb85c;
}
.panel-green > a {
  color: #5cb85c;
}
.panel-green > a:hover {
  color: #3d8b3d;
}
.panel-red {
  border-color: #d9534f;
}
.panel-red > .panel-heading {
  border-color: #d9534f;
  color: white;
  background-color: #d9534f;
}
.panel-red > a {
  color: #d9534f;
}
.panel-red > a:hover {
  color: #b52b27;
}
.panel-yellow {
  border-color: #f0ad4e;
}
.panel-yellow > .panel-heading {
  border-color: #f0ad4e;
  color: white;
  background-color: #f0ad4e;
}
.panel-yellow > a {
  color: #f0ad4e;
}
.panel-yellow > a:hover {
  color: #df8a13;
}

label.error{
  color: red;
}


select.selectpicker {
    padding: 16px 20px;
    width: 100%;
    font-size: 1em;
    border: 1px solid #e3e3e3;
    border-radius: 5px;
    margin: 0 5px 15px 5px;
}






#signUpForm {
    max-width: 900px;
    background-color: #ffffff;
    margin: 15px auto;
    padding: 15px;
    box-shadow: 0px 6px 18px rgb(0 0 0 / 9%);
    border-radius: 12px;
}
#signUpForm .form-header {
    gap: 5px;
    text-align: center;
    font-size: .9em;
    margin-bottom: 30px;
    display: flex!important;
}
#signUpForm .form-header .stepIndicator {
    position: relative;
    flex: 1;
    padding-bottom: 30px;
}
#signUpForm .form-header .stepIndicator.active {
    font-weight: 600;
}
#signUpForm .form-header .stepIndicator.finish {
    font-weight: 600;
    color: #009688;
}
#signUpForm .form-header .stepIndicator::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    z-index: 9;
    width: 20px;
    height: 20px;
    background-color: #d5efed;
    border-radius: 50%;
    border: 3px solid #ecf5f4;
}
#signUpForm .form-header .stepIndicator.active::before {
    background-color: #a7ede8;
    border: 3px solid #d5f9f6;
}
#signUpForm .form-header .stepIndicator.finish::before {
    background-color: #009688;
    border: 3px solid #b7e1dd;
}
#signUpForm .form-header .stepIndicator::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 8px;
    width: 100%;
    height: 3px;
    background-color: #f3f3f3;
}
#signUpForm .form-header .stepIndicator.active::after {
    background-color: #a7ede8;
}
#signUpForm .form-header .stepIndicator.finish::after {
    background-color: #009688;
}
#signUpForm .form-header .stepIndicator:last-child:after {
    display: none;
}
#signUpForm input {
    padding: 15px 20px;
    width: 100%;
    font-size: 1em;
    border: 1px solid #e3e3e3;
    border-radius: 5px;
    margin: 0 5px 15px 5px;
}
#signUpForm input:focus {
    border: 1px solid #009688;
    outline: 0;
}
#signUpForm input.invalid {
    border: 1px solid #ffaba5;
}
#signUpForm select.invalid {
    border: 1px solid #ffaba5;
}


#signUpForm .step {
  display: none;
}
#signUpForm .form-footer{
    overflow:auto;
    gap: 20px;
}
#signUpForm .form-footer button{
    background-color: #009688;
    border: 1px solid #009688 !important;
    color: #ffffff;
    border: none;
    padding: 13px 30px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
    flex: 1;
    margin-top: 5px;
}
#signUpForm .form-footer button:hover {
  opacity: 0.8;
}

#signUpForm .form-footer #prevBtn {
    background-color: #fff;
    color: #009688;
}

.decade {
    padding: 11px 15px;
    margin-right: 5px;
    height: 52px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: 4px;
}

.inline {
    display: flex;
}

form.view#signUpForm {
    max-width: 100%;
}

.table.view {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    font-size: 11px;
}

div#show {
    border: 1px solid #737373;
    padding: 10px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    margin-bottom: 25px;
    cursor: pointer;
    border-radius: 5px;
    background: #d0d0d0;
}

i.fa.fa-angle-right {
    float: right;
}

.navbar-toggle {
  position: relative;
  float: left;
  padding: 11px 12px;
  margin-top: 8px;
  margin-left: 8px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}

.page-header {
  padding-bottom: 9px;
  margin: 20px 0 20px;
  border-bottom: 1px solid #eee;
}
.h2, h2 {
  font-size: 25px;
}

.h1, h1 {
  font-size: 25px;
}

.navbar-header {
  
  width: 100%;
}

.loginSignUpSeparator {
    border-top: 1px solid #7a7c7e;
    position: relative;
    margin-top: 25px;
    margin-bottom: 4.895%;
    margin-right: 15px;
    margin-left: 15px;
    height: 15px;
    text-align: center;
}
.loginSignUpSeparator .textInSeparator {
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    padding: 0 0.5em;
    position: relative;
    color: #6c7378;
    top: -0.7em;
}

.btn-group-lg>.btn, .btn-lg {
    width: 100%;
    padding: 13.85px 0;
    margin-bottom: 40px;
    font-size: 1em;
    line-height: 1.3333333;
    border-radius: 6px;
}

.col-xs-6.col-sm-6.col-md-6.n {
    padding-left: 0;
    padding-right: 4px;
}
.col-xs-6.col-sm-6.col-md-6.p {
    padding-right: 0;
    padding-left: 4px;
}

.logo-header {
    width: 100px;
    float: left;
    z-index: 102;
    -webkit-box-align: center;
    display: inline-flex;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    height: 40px;
    margin-top: 5px;
    margin-bottom: 5px;
}

img.img-fluid.dash {
    width: 100%;
}

.input-lg {
    height: 35px !important;
    padding: 1px 16px;
    font-size: 15px !important;
    line-height: 1.3333333;
    border-radius: 6px;
}

a.Print {
    float: right;
    margin: 20px 5px 20px;
}

.copyright {
    
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
    color: #535074;
    position: absolute;
    font-size: 15px;
    width: 100%;
    bottom: 0;
    
}
@media screen and (max-height: 1200px) {
    .copyright {
        position: relative;
    }
  }

.btn-group>.btn:first-child {
    margin-left: 0;
    padding: 15px 20px;
    width: 100% !important;
    font-size: 1em;
    border: 1px solid #e3e3e3;
    border-radius: 5px;
    margin: 0 5px 15px 5px;
}

.bootstrap-select:not([class*=span]):not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: 100%;
}
.herb>.btn {
    padding: 0px !important;
}

img.herb {
    width: 53px;
    margin-right: 10px;
}

.nb {
    padding: 0px 0 25px 0;
}

table.table.table-striped.table-bordered.table-condensed {
    font-size: 9px;
}

table.table.table-striped.table-bordered.table-condensed.view.\32 {
    width: 400px;
}

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

.responsive-iframe {
    
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 400px;
  }
  

  .highcharts-figure,
.highcharts-data-table table {
 
  margin: 0em ;
}

.highcharts-data-table table {
  font-family: Verdana, sans-serif;
  border-collapse: collapse;
  border: 1px solid #ebebeb;
  margin: 10px auto;
  text-align: center;
  width: 100%;
  max-width: 500px;
}

.highcharts-data-table caption {
  padding: 1em 0;
  font-size: 1.2em;
  color: #555;
}

.highcharts-data-table th {
  font-weight: 600;
  padding: 0.5em;
}

.highcharts-data-table td,
.highcharts-data-table th,
.highcharts-data-table caption {
  padding: 0.5em;
}

.highcharts-data-table thead tr,
.highcharts-data-table tr:nth-child(even) {
  background: #f8f8f8;
}

.highcharts-data-table tr:hover {
  background: #f1f7ff;
}

.chart {
    border: 1px solid #e6e6e6;
    margin-bottom: 35px;
    padding-right: 5 px;
}

.sidebar-nav.navbar-collapse {
    max-height: 100% !important;
}

.center-column {
    text-align: center;
  }

.custom-th {
    font-size: 20px; /* Set the custom font size for table header cells with the class "custom-th" */
  }

.icon-size {
    font-size: 44px; /* Set the custom font size for table header cells with the class "custom-th" */
  }

.icon-size-2 {
     font-size: 25px; /* Set the custom font size for table header cells with the class "custom-th" */
  }

  .list-group-horizontal {
    display: flex;
    float: right;
    margin-bottom: 0px;
}

.list-group-item {
    
    margin-bottom: 0px;
    
}
.page-header-title {
    display: flex;
    border-bottom: 1px solid gainsboro;
    margin-top: 5px;
    margin-bottom: 20px;
}

.row {
    
    margin-top: 1rem;
}

span#togglePassword {
    cursor: pointer;
}


.panel-heading h3 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: normal;
    width: 75%;
    padding-top: 8px;
}

.sms {
    background: #2d52a2;
    height: 30px;
    border-radius: 5px;
    padding: 0.3em 0px;
    color: white;
}
label.bar {
    padding-right: 15px;
    padding-left: 0px;
}