/*
    DEMO STYLE
*/
.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;
}

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 40px 0;
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

#sidebar {
    width: 250px;
    position: fixed;
    top: 0;
    left: -260px;
    height: 100vh;
    z-index: 999;
    /* background: #7386D5; */
    /* background: #f5f5f5; */
    background: #fff;
    color: #fff;
    transition: all 0.3s;
    overflow-y: hidden;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}

#sidebar.active {
    left: 0;
}

#dismiss {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #fff;
    position: absolute;
    top: 15px;
    right: 10px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

#dismiss .fa-times {
    font-size: 20px;
    color: #c2c2c2;
}

#dismiss:hover {
    background: #fff;
    color: #D1954E;
}

.overlay {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}
.overlay.active {
    display: block;
    opacity: 1;
}

#sidebar .sidebar-header {
  padding: 10px 20px 10px 5px;
  background: #fff;
  display: flex;
  justify-content: center;
}

#sidebar ul.components {
    padding: 0 0 20px 0;
    border-bottom: 1px solid #e6e6e6;
    text-align: center;
    /* border-bottom: 1px solid #47748b; */
}

#sidebar ul p {
    color: #fff;
    padding: 10px;
}

#sidebar ul li a {
    padding: 10px;
    font-size: 1.1em;
    display: block;
}

#sidebar ul li a:hover {
  color: #333;
  background: #e8e8e8;
}

#sidebar ul li>a.active {
    color: #fff;
    background: #D1954E;
    /* background: #6d7fcc; */
}

a[data-toggle="collapse"] {
    position: relative;
}

.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    background: #dcdcdc;
}

ul.CTAs {
    padding: 20px;
}

ul.CTAs a {
    text-align: center;
    font-size: 0.9em !important;
    display: block;
    border-radius: 5px;
    margin-bottom: 5px;
}

.toggle-btn {
  padding: 8px 10px;
  background-color: transparent;
  border: 1px solid #D1954E;
  cursor: pointer;
  margin-top: 20px;
  margin-right: 0;
}

.toggle-btn .icon-bar {
  display: block;
  width: 18px;
  height: 3px;
  border-radius: 1px;
  background-color: #D1954E;
}

/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

#content {
    width: 100%;
    /* padding: 20px;
    min-height: 100vh; */
    transition: all 0.3s;
    position: absolute;
    top: 0;
    right: 0;
}

#content .container-fluid {
  padding: 0;
}

#content .container-fluid .pull-left {
  float: none !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-icon-container {
    text-align: center;
    font-size: 26px;
}


@media screen and (max-width: 1025px) {
    .navbar {
        padding: 0 22px;
        background-color: rgba(0,0,0,0.35);
        border: none;
        border-radius: 0;
        /* margin-bottom: 40px;
        box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1); */
    }

    .toggle-btn {
        margin-top: 5px ;
    }
}


@media (max-width: 576px) {
    .social-icon-container {
        font-size: 20px;
    }
}