
* {
	margin: 0;
	font-family: 'Roboto', sans-serif;
	box-sizing: border-box;
	word-wrap: break-word;
}
.docs{
    margin: 1rem;
}
.navbar{
    padding: 1rem 2rem;
    box-shadow: 0 8px 5px var(--tertiary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    right: 0;
    z-index: 2;
    background: white;
}
.title{
    display: inline;
    font-weight: 700;
}
.sidebar{
    display: inline;
    font-size: 1.3rem;
    margin-right: 2rem;
    position: relative;
}
.sidebar-list{
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 3.5rem;
    width: 15%;
    height: 90vh;
    background: var(--white);
    box-shadow: 8px 0 5px var(--tertiary-color);
    min-width: 10rem;
    z-index: 1000;
    overflow: auto;
}
.link{
    text-decoration: none;
    color: black;
}
.docs{
    padding: 0.5rem 2rem;
    grid-area: docs;
}
.component-display{
    width: 100%;
    padding: 1rem;
    background-color: var(--tertiary-color);
    border-radius: 0.3rem;
    box-sizing: border-box;
}
.code-display{
    box-sizing: border-box;
    width: 100%;
    text-align: center;
    background: #011627;
}
.code-display iframe{
    width: 100%;
    height: auto;
    border: 0;
}
.row-gap{
    height: 1rem;
    width: auto;
    background-color: var(--white);
}
.image-container{
    width: 50%;
}
.sidebar-hide{
    display: none;
}
.sidebar-active{
    display: block;
   
}
.footer{
    background: var(--tertiary-color);
    z-index: 4;
}
.sidebar-list .btn:hover{
    color: var(--primary-color);
    background: var(--tertiary-color);

}
.sidebar-list .active{
    color: var(--primary-color);
    background: var(--tertiary-color);
}
::-webkit-scrollbar {
    width: 0.5rem;
  }