/*////////////////////////////////////////////////////////////////////////////////
//
//  Quantum Intech, Inc.
//  Copyright 2005-2026 Quantum Intech, Inc.
//  All Rights Reserved.
//
//  NOTICE: Sections of this code and its application are covered by patents.
//
////////////////////////////////////////////////////////////////////////////////*/

body {
    background: #ffffff;
}

.wrapper {
    max-width: 1200px;
}

p, #content ol, #content ul {
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.7em;
    color: #666666;
}

a, a:hover, a:focus {
    color: #337ab7;
    text-decoration: none;
    transition: all 0.3s;
}

.navbar {
    padding: 15px 10px;
    background: #fafafa;
    border: none;
    border-radius: 0;
    margin-bottom: 40px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;
}

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #dddddd;
    margin: 10px 0;
}

.input-group .input-group-addon {
     line-height: 1!important;
 }
 
.simplebox, .simplebox:focus {
  outline: none;
  /*border: none !important;*/
  border-color: #cccccc;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
}

.back-to-top {
  position: fixed;
  bottom: 4em;
  right: 0px;
  text-decoration: none;
  color: #ffffff;
  background-color: #666666;
  font-size: 12px;
  padding: 1em;
  z-index: 1000;
  display: none;
}

.back-to-top:hover {    
  color: #ffffff;
  text-decoration: none;
  border-right-width: 0px;
  background-color: #464545;
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */
#sidebar {
    width: 250px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 999;
    background: #fafafa;
    border-right: 1px solid #ccc;
    color: #666;
    transition: all 0.3s;
}

#sidebar.active {
    margin-left: -250px;
}

#B {
    position: absolute;
    height: 50px;
    width: 100px;
    top: 0px;
    left: 250px;
    right: 0;
    bottom: 0px;
    transition: all 0.3s;
}
#B.active {
    margin-left: -250px;
}
#B button {
  margin-top: 0px;
  background-color: #666;
  border: none;
  border-radius: 0px;
}
#B button:hover {
    color: #fff;
    background: #464545;
}

#sidebar .sidebar-header {
    padding: 0px 10px;
    background: #fafafa;
}
#sidebar ul.nav-components {
    margin-top: 20px;
    border-top: 1px dashed #ddd;
    border-bottom: 1px dashed #ddd;
    background-color: #fafafa;
}
#sidebar ul p {
    color: #fff;
    padding: 10px;
}
#sidebar ul li a {
    color: #666;
    padding: 10px;
    font-size: 1.1em;
    display: block;
}
#sidebar ul li a:hover {
    color: #fff;
    background: #464545;
}
#sidebar ul li.active > a, #sidebar ul li.active > a[aria-expanded="true"] {
    color: #fff !important;
    background: #666;
}
#sidebar a[aria-expanded="true"] {
    background: #9c9c9c;
}
#sidebar ul li.active > a:hover {
    color: #fff;
    background: #464545;
}

#sidebar a[data-toggle="collapse"] {
    position: relative;
}

#sidebar a[aria-expanded="false"]::before, #sidebar a[aria-expanded="true"]::before {
    content: '\e259';
    display: block;
    position: absolute;
    right: 20px;
    font-family: 'Glyphicons Halflings';
    font-size: 0.6em;
}
#sidebar a[aria-expanded="true"]::before {
    content: '\e260';
}

#sidebar ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    background: #efefef;
}

#sidebar ul.CTAs {
    padding: 7px 10px 0px 10px;
}

#sidebar ul.CTAs a {
    text-align: center;
    font-size: 0.9em !important;
    display: block;
    border-radius: 5px;
    margin-bottom: 5px;
}

/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */
#content {
    width: calc(100% - 250px);
    background: #ffffff;
    padding: 40px;
    min-height: 100vh;
    transition: all 0.3s;
    position: absolute;
    top: 0;
    right: 0;
}
#content.active {
  width: 100%;
}
#subcontent {
  max-width: 1200px;
}

/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */
@media (max-width: 768px) {
    #sidebar {
        margin-left: -250px;
    }
    #sidebar.active {
        margin-left: 0;
    }
    #B {
        margin-left: -250px;
    }
    #B.active {
        margin-left: 0px;
    }
    #content {
        width: 100%;
    }
    #content.active {
        width: calc(100% - 250px);
        min-width: 300px;
    }
}
