.content {
    padding: 0px;
    margin: 0px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;    
    flex-direction: column;
    justify-content: stretch;
    font-family: var(--body-font);
}

.footer-root {
    display: none;
}
.footer-prev {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-start;
}
.footer-nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: space-around;
}
.footer-next {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: flex-end;
}

.text-area{
    overflow-y: scroll;
    padding: 32px 72px;
    margin: 0px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;    
    flex-direction: column;
    flex: 1 1 0px;
    justify-content: start;
    width: calc(100vw - 225px);
    height: auto;
}

.row {
    padding: 0px;
    margin: 0px !important;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;    
    flex-direction: row;
    justify-content: space-between;
    flex-shrink: 0;
}

.content-area .h3{
    font-size: 20px !important;
}

.content-area {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;    
    flex-direction: column;
    flex: 1 1 0px;
    padding-right: 36px;
    min-width: 250px;
}

.example-area {
    margin-top: 56px;
    margin-bottom: 72px;
    padding-left: 36px;
    z-index: 1;
    position: -webkit-sticky;
    position: sticky;
    top: 0px;
    bottom: 0px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;    
    align-self: flex-start;
    flex-direction: column;
    justify-content: start;
    flex: 1 1 0px;
    min-width: 250px;
}

.highlight{
    border: 0px;
    padding: 16px 16px 0px 16px;
    background-color: var(--grey200);
    font-size: 15px;
    overflow: visible;
}

.highlight code{
    font-family: Source Code Pro;
}

.example{
    top: 0px;
    bottom: 0px;
    max-height: inherit;
    background-color: var(--grey200);
    max-height: 50vh;
    min-width: 250px;
    width: 100%;
    border-radius: 10px;
    margin-bottom: 16px;
}
.example pre {
    background-color: inherit;
    overflow: unset;
}
.scroll {
    max-height: inherit;
    overflow: auto;
    border-radius: 10px;
}

#scroll-wrap{
    overflow: hidden;
}

.content-textbox{
    padding: 16px;
    max-height: inherit;
}

@media (max-width: 1400px){
    .showing-nav .text-area{
        width: calc(100vw - 225px);
    }
    .text-area{
        width: calc(100vw - 72px);
    }
}

@media (max-width: 1024px) {
    /* CSS that should be displayed if width is equal to or less than 1000px goes here */
    .example-area {
        position: inherit;
        margin-top: 56px;
        margin-bottom: 72px;
        padding-left: 0;
        z-index: 1;
        top: 0px;
        bottom: 0px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;        
        align-self: flex-start;
        flex-direction: column;
        justify-content: start;
        flex: 1 1 0px;
        width: 100%;
    }
    .row {
        padding: 0px;
        margin: 0px !important;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;        
        flex-direction: column;
        justify-content: start;
        align-items: stretch;
        width: 100%;
    }
    .content-area {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        flex-direction: column;
        flex: 1 1 0px;
        padding-right: 0;
        width: 100%;
    }
}

@media (max-width: 900px) {
    .showing-nav.content {
        display: none;
    }
    .text-area{
        padding: 16px 32px;
        width: 100%;
        /* margin-top: 24px;
        margin-bottom: 24px; */
    }

    .example-area {
        margin-top: 24px;
        margin-bottom: 24px;
    }

    .content{
        width: 100vw;
    }
    .footer-root {
        display: flex;
        flex-direction: row;
        justify-content: space-between
    }
}