/*
    DEMO STYLE
*/
body {
    font-family: 'Montserrat', sans-serif;
    background: #fafafa;
}
a,
a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

.navbar {
    padding: 15px 10px;
    background: #fff;
    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 #ddd;
    margin: 40px 0;
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

.wrapper {
    display: flex;
    width: 100%;
}

#sidebar {
    width: 250px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 999;
    background: #0f474e;
    color: #fff;
    transition: all 0.3s;
}

#sidebar.active {
    margin-left: -250px;
}

#sidebar .sidebar-header {
    padding: 40px 20px;
}

#sidebar ul.components {
    padding: 0px 20px 0 45px;
}
#sidebar ul li
{
  margin-bottom: 18px;
}
#sidebar ul li a {
    font-size: 1.1em;
    display: block;
    text-transform: uppercase;
    color: #fff;
}

#sidebar ul li a:hover {
    color: #48Bccb;
}

#sidebar ul li.active>a,
a[aria-expanded="true"] {
    color: #48Bccb;
}

a[data-toggle="collapse"] {
    position: relative;
}

.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
ul ul
{
  margin: 15px 0px;
}
ul ul a {
    font-size: 0.9em !important;
    padding-left:15px;
    position: relative;
    color: #fff !important;
    text-transform: inherit !important;
}
ul ul a::before
{
  /*content: '>'; */
  content: "";
  display: block;
  position: absolute;
  top: 7px;
  left: 0;
    width: 0;
    height: 0;
    border-left: .3em solid;
    border-bottom: .3em solid transparent;
    border-right: 0;
    border-top: .3em solid transparent;
}
ul.CTAs {
    padding: 10px 20px;
}

ul.CTAs a {
    text-align: center;
    color: #fff !important;
    font-size: 0.9em !important;
    display: block;
    border-radius: 50px;
    margin-bottom: 5px;
    border: 1px solid #fff;
    padding:10px;
}

a.contact {
    color: #fff;
}
a.contact:hover {
    background: #48Bccb !important;
    border: 1px solid #48Bccb;
    color: #fff !important;
}
ul.lang,
ul.social
{
  text-align: center;
}
ul.lang li,
ul.social li
{
  display: inline-block;
  color: #fff;
  text-transform: uppercase;
	padding: 6px 3px !important;
}
ul.lang .select
{
	color: #48Bccb !important;	
}
ul.lang a,
ul.social a
{
	color: #fff !important;	
	transition: all 0.5s;
}
ul.lang a:hover,
ul.social a:hover
{
	color:#48Bccb !important;
	transition: all 0.5s;
}
ul.social li
{
	padding: 6px 10px !important;
}



/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

#content {
    width: calc(100% - 250px);
    min-height: 100vh;
    transition: all 0.3s;
    position: absolute;
    top: 0;
    right: 0;
}

#content.active {
    width: 100%;
}
#sidebarCollapse
{
  display: none;
}
.btn-info
{
    color: #fff;
    background-color: #0f474e;
    border-color: #0f474e;
    box-shadow: none;
}
.btn-info:not(:disabled):not(.disabled).active, 
.btn-info:not(:disabled):not(.disabled):active, 
.show>.btn-info.dropdown-toggle {
  color: #fff;
  background-color: #48Bccb;
  border-color: #48Bccb;
  box-shadow: none;
}
.btn-info:not(:disabled):not(.disabled).active:focus, 
.btn-info:not(:disabled):not(.disabled):active:focus, 
.show>.btn-info.dropdown-toggle:focus {
  box-shadow: none;
}
.btn-info:hover {
  color: #fff;
  background-color: #48Bccb;
  border-color: #48Bccb;
}
.btn-info.focus, .btn-info:focus {
  box-shadow:none;
}

/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */

@media (max-width: 768px) {
    #sidebarCollapse
    {
        /*position: absolute;
        right: 5px;
        margin: 15px 10px 0 0;*/
        display: inline-block;
        left: 10px;
        top: 17px;
        position: absolute;
    }
    #sidebar {
        margin-left: -250px;
    }
    #sidebar.active {
        margin-left: 0;
    }
    #content {
        width: 100%;
    }
    #content.active {
        width: calc(100% - 250px);
    }
    #sidebarCollapse span {
        display: none;
    }

}