html {
    height:100%;
    width:100%;
    overflow: hidden;
}

body {
    background: #fafafa;
    height:100%;
    overflow:hidden;
}

h1 {
    font-weight: 500;
} 

p {
    font-size: 1.1em;
    font-weight: 400;
    line-height: 1.7em;
    /* color: #57606f */
}

a {
    color: #437bd4;
}

img {
    width:100%;
}

td, th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
  }
  
  tr:nth-child(even) {
    background-color: #dddddd;
  }

.video-container {
	position:relative;
	padding-bottom:56.25%;
	padding-top:30px;
	height:0;
    overflow:hidden;
}

.video-container iframe, .video-container object, .video-container embed {
	position:absolute;
	top:0;
	left:0;
	width:100%;
    height:100%;
}

.sideMenuLink,
.sideMenuLink:hover,
.sideMenuLink: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%;
    align-items: stretch;
    height:100%;
    box-sizing: padding-box;
    -moz-box-sizing: padding-box;
    -webkit-box-sizing: padding-box;
    padding-top: 83px;
}

#sidebar {
    min-width: 250px;
    max-width: 250px;
    background: #437bd4;
    color: #fff;
    transition: all 0.3s;
    height:100%;
}

#sidebar.active {
    margin-left: -250px;
}

#sidebar .sidebar-header {
    padding: 20px;
    background: #437bd4;
}

#sidebar ul.components {
    padding: 0 0;
    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: #437bd4;
    background: #fff;
}

#sidebar ul li.active>a,
a[aria-expanded="true"] {
    color: #fff;
    background: #437bd4;
}

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

.dropdown-toggle {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

.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: #437bd4;
}

ul.CTAs {
    padding: 20px;
}

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

a.download {
    background: #fff;
    color: #7386D5;
}

a.article,
a.article:hover {
    background: #437bd4 !important;
    color: #fff !important;
}

#sidebarCollapse {
    background-color: #437bd4;
    position:fixed;
    opacity: 0.6;
    right:15px;
    z-index: 5;
}

#activatedSidebarCollapse {
    background-color: #437bd4;
	position: absolute;
	right:5px;
	top:5px;
}

.sidepanel-heading {
	border-bottom: 1px solid white;
	padding:15px 0 15px 0;
}

.sidepanel-heading > h4 {
	margin:0;
	display:flex;
	align-items: center;
}

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

#content {
    width: 100%;
    /* min-height: 100vh; */
    transition: all 0.3s;
    overflow-y:scroll;
    -webkit-overflow-scrolling: touch;
    overflow-x:hidden;
    height:100%;
}

.info_photo {
    margin-left:auto;
    margin-right:auto;
    display:block;
    max-width:50%;
    height:auto;
}

/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */

@media (max-width: 768px) {
    #sidebarCollapse {
        display:inline;
    }
    #activatedSidebarCollapse {
        display:inline;
    }
    #sidebar {
        margin-left: -250px;
        position:absolute;
        z-index: 2;
    }
    #sidebar.active {
        margin-left: 0;
    }
    #sidebarCollapse span {
        display: none;
    }
}

@media (min-width: 780px) {
    #sidebarCollapse {
        display:none;
    }
    #activatedSidebarCollapse {
        display:none;
    }
    #sidebar {
        position:static;
        z-index:initial;
    }
}

.documentation pre {
	border:1px dashed gray;
	border-radius: 10px;
	background-color: white;
	position: relative;
	max-height: 500px;
	overflow-y: auto;
	padding-left:1em;
	padding-right:1em;
}
.documentation pre > code {
	width: 100%;
}