@font-face {
    font-family: 'SF Pro Display';
    src: url('../../../../assets/fonts/SFProDisplay-Bold.woff2') format('woff2'),
        url('../../../../assets/fonts/SFProDisplay-Bold.woff') format('woff'),
        url('../../../../assets/fonts/SFProDisplay-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('../../../../assets/fonts/SFProDisplay-Regular.woff2') format('woff2'),
        url('../../../../assets/fonts/SFProDisplay-Regular.woff') format('woff'),
        url('../../../../assets/fonts/SFProDisplay-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html,
body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: auto;
    overflow-x: hidden;
}

@media (max-width: 575.98px) {
    div#mainpage-div {
        width: 100%;
    }

    nav#main-docs-nav {
        width: 100%;
        height: 60px;
        background-color: white;
        border-bottom: 1px solid lightgray;
        position: fixed;
        top: 0;
        z-index: 10;
    }

    nav#side-docs-nav {
        width: 100%;
        height: 100%;
        position: fixed;
        top: -100%;
        padding: 10px;
        box-sizing: border-box;
        transition: top 0.3s ease-in-out; 
        background-color: rgba(255, 255, 255, 0.9);
        opacity: 0;
    }
    
    nav#side-docs-nav.open {
        top: 60px;
        opacity: 1;
    }


    ul#main-docs-listing-ul {
        width: 100%;
        height: 100%;
        list-style-type: none;
        margin: 0;
        padding: 0;
        display: block;
        margin: auto;
    }

    li.main-docs-logo-li {
        float: left;
        margin: 0;
        padding: 0;
        width: 100px;
        height: 100%;
    }

    img.main-docs-logo-img {
        height: 45px;
        margin: 7.5px 15px;
        padding: 0;
    }

    li.mainsite-butts-area {
        width: calc(100% - 200px);
        height: 100%;
        float: left;
        display: flex;
        justify-content: center;
        align-content: center;
    }

    ul.mainsite-butts-listing-ul {
        height: 100%;
        margin: 0;
        padding: 0;
        list-style-type: none;
        display: none;
    }

    li.mainsite-butt-area-li {
        padding-left: 20px;
        padding-right: 20px;
        float: left;
        margin-top: 20px;
        cursor: pointer;
    }

    a.mainsite-butt-href-a {
        font-family: 'SF Pro Display';
        text-decoration: none;
        font-size: 16px;
        color: rgb(89, 89, 89);
        height: 100%;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: bold;
        cursor: pointer;
    }

    a.mainsite-butt-href-a:hover {
        color: black;
    }

    li.mainsite-mobile-menu {
        width: 100px;
        height: 100%;
        float: left;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mainsite-mobile-butt {
        position: relative;
        display: inline-block;
        width: 40px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
    }

    .mainsite-mobile-butt span {
        display: block;
        position: absolute;
        height: 4px;
        width: 100%;
        background: #333;
        border-radius: 4px;
        opacity: 1;
        left: 0;
        transform: rotate(0deg);
        transition: .25s ease-in-out;
    }

    .mainsite-mobile-butt span:nth-child(1) {
        top: 0px;
    }

    .mainsite-mobile-butt span:nth-child(2) {
        top: 10px;
    }

    .mainsite-mobile-butt span:nth-child(3) {
        top: 20px;
    }

    .mainsite-mobile-butt.close span:nth-child(1) {
        top: 10px;
        transform: rotate(45deg);
    }

    .mainsite-mobile-butt.close span:nth-child(2) {
        opacity: 0;
    }

    .mainsite-mobile-butt.close span:nth-child(3) {
        top: 10px;
        transform: rotate(-45deg);
    }

    ul#side-docs-nav-ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
    }

    li.side-docs-nav-li {
        margin: 0;
        padding: 0;
        border-radius: 5px;
        padding: 10px;
        box-sizing: border-box;
    }

    li.side-docs-nav-li.active p {
        font-weight: bold;
    }

    li.side-docs-nav-li:hover {
        background-color: lightgray;
    }

    a.side-docs-nav-a {
        text-decoration: none;
        color: black;
    }

    p.side-docs-nav-p {
        margin: 0;
        padding: 0;
        font-family: 'SF Pro Display';
    }

    div#docs-inner-div {
        width: 100%;
        margin: auto;
        display: block;
    }

    div#docs-text-area-div {
        min-height: 200px;
        margin-top: 100px;
        padding: 0 50px;
        box-sizing: border-box;
    }

    h1 {
        font-family: 'SF Pro Display';
        font-weight: bold;
        margin: 0;
        padding: 0;
        margin-bottom: 10px;
        margin-top: 50px;
    }

    p.docs-txt-p {
        font-family: 'SF Pro Display';
        margin: 0;
        padding: 0;
        margin-bottom: 20px;
        font-size: 18px;
    }

    h2 {
        font-family: 'SF Pro Display';
        font-weight: bold;
        margin: 0;
        padding: 0;
        margin-bottom: 10px;
    }

    h3 {
        font-family: 'SF Pro Display';
        font-weight: bold;
        margin: 0;
        padding: 0;
        margin-bottom: 10px;

    }

    li {
        font-family: 'SF Pro Display';
        margin: 0;
        padding: 0;
        margin-bottom: 10px;
        font-size: 18px;
    }

    div#page-controls-bar {
        width: 100%;
        height: 50px;
        margin-top: 100px;
    }

    a.page-control-button {
        color: black;
        text-decoration: none;
    }

    a.previous-page {
        float: left;
    }

    a.next-page {
        float: right;
    }

    span.page-control-icon {
        float: left;
        vertical-align: middle;
    }

    p#page-control-txt-p {
        float: left;
        font-family: 'SF Pro Display';
        margin: 0 10px;
        padding: 0;
        vertical-align: middle;
        line-height: 24px;
        font-size: 20px;
    }

    footer#docs-footer {
        width: 100%;
        height: 60px;
        background-color: white;
        border-top: 1px solid lightgray;
        bottom: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    p.footer-docs-txt-p {
        font-family: 'SF Pro Display';
        margin: 0;
        padding: 0;
        font-size: 14px;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    div#mainpage-div {
        width: 100%;
    }

    nav#main-docs-nav {
        width: 100%;
        height: 60px;
        background-color: white;
        border-bottom: 1px solid lightgray;
        position: fixed;
        top: 0;
        z-index: 10;
    }

    nav#side-docs-nav {
        width: 100%;
        height: 100%;
        position: fixed;
        top: -100%;
        padding: 10px;
        box-sizing: border-box;
        transition: top 0.3s ease-in-out; 
        background-color: rgba(255, 255, 255, 0.9);
        opacity: 0;
    }
    
    nav#side-docs-nav.open {
        top: 60px;
        opacity: 1;
    }


    ul#main-docs-listing-ul {
        width: 100%;
        height: 100%;
        list-style-type: none;
        margin: 0;
        padding: 0;
        display: block;
        margin: auto;
    }

    li.main-docs-logo-li {
        float: left;
        margin: 0;
        padding: 0;
        width: 100px;
        height: 100%;
    }

    img.main-docs-logo-img {
        height: 45px;
        margin: 7.5px 15px;
        padding: 0;
    }

    li.mainsite-butts-area {
        width: calc(100% - 200px);
        height: 100%;
        float: left;
        display: flex;
        justify-content: center;
        align-content: center;
    }

    ul.mainsite-butts-listing-ul {
        height: 100%;
        margin: 0;
        padding: 0;
        list-style-type: none;
    }

    li.mainsite-butt-area-li {
        padding-left: 20px;
        padding-right: 20px;
        float: left;
        margin-top: 20px;
        cursor: pointer;
    }

    a.mainsite-butt-href-a {
        font-family: 'SF Pro Display';
        text-decoration: none;
        font-size: 16px;
        color: rgb(89, 89, 89);
        height: 100%;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: bold;
        cursor: pointer;
    }

    a.mainsite-butt-href-a:hover {
        color: black;
    }

    li.mainsite-mobile-menu {
        width: 100px;
        height: 100%;
        float: left;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mainsite-mobile-butt {
        position: relative;
        display: inline-block;
        width: 40px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
    }

    .mainsite-mobile-butt span {
        display: block;
        position: absolute;
        height: 4px;
        width: 100%;
        background: #333;
        border-radius: 4px;
        opacity: 1;
        left: 0;
        transform: rotate(0deg);
        transition: .25s ease-in-out;
    }

    .mainsite-mobile-butt span:nth-child(1) {
        top: 0px;
    }

    .mainsite-mobile-butt span:nth-child(2) {
        top: 10px;
    }

    .mainsite-mobile-butt span:nth-child(3) {
        top: 20px;
    }

    .mainsite-mobile-butt.close span:nth-child(1) {
        top: 10px;
        transform: rotate(45deg);
    }

    .mainsite-mobile-butt.close span:nth-child(2) {
        opacity: 0;
    }

    .mainsite-mobile-butt.close span:nth-child(3) {
        top: 10px;
        transform: rotate(-45deg);
    }

    ul#side-docs-nav-ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
    }

    li.side-docs-nav-li {
        margin: 0;
        padding: 0;
        border-radius: 5px;
        padding: 10px;
        box-sizing: border-box;
    }

    li.side-docs-nav-li.active p {
        font-weight: bold;
    }

    li.side-docs-nav-li:hover {
        background-color: lightgray;
    }

    a.side-docs-nav-a {
        text-decoration: none;
        color: black;
    }

    p.side-docs-nav-p {
        margin: 0;
        padding: 0;
        font-family: 'SF Pro Display';
    }

    div#docs-inner-div {
        width: 100%;
        margin: auto;
        display: block;
    }

    div#docs-text-area-div {
        min-height: 200px;
        margin-top: 100px;
        padding: 0 50px;
        box-sizing: border-box;
    }

    h1 {
        font-family: 'SF Pro Display';
        font-weight: bold;
        margin: 0;
        padding: 0;
        margin-bottom: 10px;
        margin-top: 50px;
    }

    p.docs-txt-p {
        font-family: 'SF Pro Display';
        margin: 0;
        padding: 0;
        margin-bottom: 20px;
        font-size: 18px;
    }

    h2 {
        font-family: 'SF Pro Display';
        font-weight: bold;
        margin: 0;
        padding: 0;
        margin-bottom: 10px;
    }

    h3 {
        font-family: 'SF Pro Display';
        font-weight: bold;
        margin: 0;
        padding: 0;
        margin-bottom: 10px;

    }

    li {
        font-family: 'SF Pro Display';
        margin: 0;
        padding: 0;
        margin-bottom: 10px;
        font-size: 18px;
    }

    div#page-controls-bar {
        width: 100%;
        height: 50px;
        margin-top: 100px;
    }

    a.page-control-button {
        color: black;
        text-decoration: none;
    }

    a.previous-page {
        float: left;
    }

    a.next-page {
        float: right;
    }

    span.page-control-icon {
        float: left;
        vertical-align: middle;
    }

    p#page-control-txt-p {
        float: left;
        font-family: 'SF Pro Display';
        margin: 0 10px;
        padding: 0;
        vertical-align: middle;
        line-height: 24px;
        font-size: 20px;
    }

    footer#docs-footer {
        width: 100%;
        height: 60px;
        background-color: white;
        border-top: 1px solid lightgray;
        bottom: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    p.footer-docs-txt-p {
        font-family: 'SF Pro Display';
        margin: 0;
        padding: 0;
        font-size: 14px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    div#mainpage-div {
        width: 100%;
    }

    nav#main-docs-nav {
        width: 100%;
        height: 60px;
        background-color: white;
        border-bottom: 1px solid lightgray;
        position: fixed;
        top: 0;
        z-index: 10;
    }

    nav#side-docs-nav {
        width: 100%;
        height: 100%;
        position: fixed;
        top: -100%;
        padding: 10px;
        box-sizing: border-box;
        transition: top 0.3s ease-in-out; 
        background-color: rgba(255, 255, 255, 0.9);
        opacity: 0;
    }
    
    nav#side-docs-nav.open {
        top: 60px;
        opacity: 1;
    }


    ul#main-docs-listing-ul {
        width: 100%;
        height: 100%;
        list-style-type: none;
        margin: 0;
        padding: 0;
        display: block;
        margin: auto;
    }

    li.main-docs-logo-li {
        float: left;
        margin: 0;
        padding: 0;
        width: 100px;
        height: 100%;
    }

    img.main-docs-logo-img {
        height: 45px;
        margin: 7.5px 15px;
        padding: 0;
    }

    li.mainsite-butts-area {
        width: calc(100% - 200px);
        height: 100%;
        float: left;
        display: flex;
        justify-content: center;
        align-content: center;
    }

    ul.mainsite-butts-listing-ul {
        height: 100%;
        margin: 0;
        padding: 0;
        list-style-type: none;
    }

    li.mainsite-butt-area-li {
        padding-left: 20px;
        padding-right: 20px;
        float: left;
        margin-top: 20px;
        cursor: pointer;
    }

    a.mainsite-butt-href-a {
        font-family: 'SF Pro Display';
        text-decoration: none;
        font-size: 16px;
        color: rgb(89, 89, 89);
        height: 100%;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: bold;
        cursor: pointer;
    }

    a.mainsite-butt-href-a:hover {
        color: black;
    }

    li.mainsite-mobile-menu {
        width: 100px;
        height: 100%;
        float: left;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mainsite-mobile-butt {
        position: relative;
        display: inline-block;
        width: 40px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
    }

    .mainsite-mobile-butt span {
        display: block;
        position: absolute;
        height: 4px;
        width: 100%;
        background: #333;
        border-radius: 4px;
        opacity: 1;
        left: 0;
        transform: rotate(0deg);
        transition: .25s ease-in-out;
    }

    .mainsite-mobile-butt span:nth-child(1) {
        top: 0px;
    }

    .mainsite-mobile-butt span:nth-child(2) {
        top: 10px;
    }

    .mainsite-mobile-butt span:nth-child(3) {
        top: 20px;
    }

    .mainsite-mobile-butt.close span:nth-child(1) {
        top: 10px;
        transform: rotate(45deg);
    }

    .mainsite-mobile-butt.close span:nth-child(2) {
        opacity: 0;
    }

    .mainsite-mobile-butt.close span:nth-child(3) {
        top: 10px;
        transform: rotate(-45deg);
    }

    ul#side-docs-nav-ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
    }

    li.side-docs-nav-li {
        margin: 0;
        padding: 0;
        border-radius: 5px;
        padding: 10px;
        box-sizing: border-box;
    }

    li.side-docs-nav-li.active p {
        font-weight: bold;
    }

    li.side-docs-nav-li:hover {
        background-color: lightgray;
    }

    a.side-docs-nav-a {
        text-decoration: none;
        color: black;
    }

    p.side-docs-nav-p {
        margin: 0;
        padding: 0;
        font-family: 'SF Pro Display';
    }

    div#docs-inner-div {
        width: 100%;
        margin: auto;
        display: block;
    }

    div#docs-text-area-div {
        min-height: 200px;
        margin-top: 100px;
        padding: 0 50px;
        box-sizing: border-box;
    }

    h1 {
        font-family: 'SF Pro Display';
        font-weight: bold;
        margin: 0;
        padding: 0;
        margin-bottom: 10px;
        margin-top: 50px;
    }

    p.docs-txt-p {
        font-family: 'SF Pro Display';
        margin: 0;
        padding: 0;
        margin-bottom: 20px;
        font-size: 18px;
    }

    h2 {
        font-family: 'SF Pro Display';
        font-weight: bold;
        margin: 0;
        padding: 0;
        margin-bottom: 10px;
    }

    h3 {
        font-family: 'SF Pro Display';
        font-weight: bold;
        margin: 0;
        padding: 0;
        margin-bottom: 10px;

    }

    li {
        font-family: 'SF Pro Display';
        margin: 0;
        padding: 0;
        margin-bottom: 10px;
        font-size: 18px;
    }

    div#page-controls-bar {
        width: 100%;
        height: 50px;
        margin-top: 100px;
    }

    a.page-control-button {
        color: black;
        text-decoration: none;
    }

    a.previous-page {
        float: left;
    }

    a.next-page {
        float: right;
    }

    span.page-control-icon {
        float: left;
        vertical-align: middle;
    }

    p#page-control-txt-p {
        float: left;
        font-family: 'SF Pro Display';
        margin: 0 10px;
        padding: 0;
        vertical-align: middle;
        line-height: 24px;
        font-size: 20px;
    }

    footer#docs-footer {
        width: 100%;
        height: 60px;
        background-color: white;
        border-top: 1px solid lightgray;
        bottom: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    p.footer-docs-txt-p {
        font-family: 'SF Pro Display';
        margin: 0;
        padding: 0;
        font-size: 14px;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    div#mainpage-div {
        width: 100%;
    }

    nav#main-docs-nav {
        width: 100%;
        height: 60px;
        background-color: white;
        border-bottom: 1px solid lightgray;
        position: fixed;
        top: 0;
        z-index: 10;
    }

    nav#side-docs-nav {
        width: 100%;
        height: 100%;
        position: fixed;
        top: -100%;
        padding: 10px;
        box-sizing: border-box;
        transition: top 0.3s ease-in-out; 
        background-color: rgba(255, 255, 255, 0.9);
        opacity: 0;
    }
    
    nav#side-docs-nav.open {
        top: 60px;
        opacity: 1;
    }

    ul#main-docs-listing-ul {
        width: 100%;
        height: 100%;
        list-style-type: none;
        margin: 0;
        padding: 0;
        display: block;
        margin: auto;
    }

    li.main-docs-logo-li {
        float: left;
        margin: 0;
        padding: 0;
        width: 100px;
        height: 100%;
    }

    img.main-docs-logo-img {
        height: 45px;
        margin: 7.5px 15px;
        padding: 0;
    }

    li.mainsite-butts-area {
        width: calc(100% - 200px);
        height: 100%;
        float: left;
        display: flex;
        justify-content: center;
        align-content: center;
    }

    ul.mainsite-butts-listing-ul {
        height: 100%;
        margin: 0;
        padding: 0;
        list-style-type: none;
    }

    li.mainsite-butt-area-li {
        padding-left: 20px;
        padding-right: 20px;
        float: left;
        margin-top: 20px;
        cursor: pointer;
    }

    a.mainsite-butt-href-a {
        font-family: 'SF Pro Display';
        text-decoration: none;
        font-size: 16px;
        color: rgb(89, 89, 89);
        height: 100%;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: bold;
        cursor: pointer;
    }

    a.mainsite-butt-href-a:hover {
        color: black;
    }

    li.mainsite-mobile-menu {
        width: 100px;
        height: 100%;
        float: left;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mainsite-mobile-butt {
        position: relative;
        display: inline-block;
        width: 40px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
    }

    .mainsite-mobile-butt span {
        display: block;
        position: absolute;
        height: 4px;
        width: 100%;
        background: #333;
        border-radius: 4px;
        opacity: 1;
        left: 0;
        transform: rotate(0deg);
        transition: .25s ease-in-out;
    }

    .mainsite-mobile-butt span:nth-child(1) {
        top: 0px;
    }

    .mainsite-mobile-butt span:nth-child(2) {
        top: 10px;
    }

    .mainsite-mobile-butt span:nth-child(3) {
        top: 20px;
    }

    .mainsite-mobile-butt.close span:nth-child(1) {
        top: 10px;
        transform: rotate(45deg);
    }

    .mainsite-mobile-butt.close span:nth-child(2) {
        opacity: 0;
    }

    .mainsite-mobile-butt.close span:nth-child(3) {
        top: 10px;
        transform: rotate(-45deg);
    }

    ul#side-docs-nav-ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
    }

    li.side-docs-nav-li {
        margin: 0;
        padding: 0;
        border-radius: 5px;
        padding: 10px;
        box-sizing: border-box;
    }

    li.side-docs-nav-li.active p {
        font-weight: bold;
    }

    li.side-docs-nav-li:hover {
        background-color: lightgray;
    }

    a.side-docs-nav-a {
        text-decoration: none;
        color: black;
    }

    p.side-docs-nav-p {
        margin: 0;
        padding: 0;
        font-family: 'SF Pro Display';
    }

    div#docs-inner-div {
        width: 100%;
        margin: auto;
        display: block;
    }

    div#docs-text-area-div {
        min-height: 200px;
        margin-top: 100px;
        padding: 0 50px;
        box-sizing: border-box;
    }

    h1 {
        font-family: 'SF Pro Display';
        font-weight: bold;
        margin: 0;
        padding: 0;
        margin-bottom: 10px;
        margin-top: 50px;
    }

    p.docs-txt-p {
        font-family: 'SF Pro Display';
        margin: 0;
        padding: 0;
        margin-bottom: 20px;
        font-size: 18px;
    }

    h2 {
        font-family: 'SF Pro Display';
        font-weight: bold;
        margin: 0;
        padding: 0;
        margin-bottom: 10px;
    }

    h3 {
        font-family: 'SF Pro Display';
        font-weight: bold;
        margin: 0;
        padding: 0;
        margin-bottom: 10px;

    }

    li {
        font-family: 'SF Pro Display';
        margin: 0;
        padding: 0;
        margin-bottom: 10px;
        font-size: 18px;
    }

    div#page-controls-bar {
        width: 100%;
        height: 50px;
        margin-top: 100px;
    }

    a.page-control-button {
        color: black;
        text-decoration: none;
    }

    a.previous-page {
        float: left;
    }

    a.next-page {
        float: right;
    }

    span.page-control-icon {
        float: left;
        vertical-align: middle;
    }

    p#page-control-txt-p {
        float: left;
        font-family: 'SF Pro Display';
        margin: 0 10px;
        padding: 0;
        vertical-align: middle;
        line-height: 24px;
        font-size: 20px;
    }

    footer#docs-footer {
        width: 100%;
        height: 60px;
        background-color: white;
        border-top: 1px solid lightgray;
        bottom: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    p.footer-docs-txt-p {
        font-family: 'SF Pro Display';
        margin: 0;
        padding: 0;
        font-size: 14px;
    }
}

@media (min-width: 1200px) {
    div#mainpage-div {
        width: 100%;
    }

    nav#main-docs-nav {
        width: 100%;
        height: 60px;
        background-color: white;
        border-bottom: 1px solid lightgray;
        position: fixed;
        top: 0;
    }

    nav#side-docs-nav {
        width: 250px;
        height: 100%;
        position: fixed;
        top: 60px;
        padding: 10px;
        box-sizing: border-box;
    }

    ul#main-docs-listing-ul {
        width: 1200px;
        list-style-type: none;
        margin: 0;
        padding: 0;
        display: block;
        margin: auto;
    }

    li.main-docs-logo-li {
        float: left;
        margin: 0;
        padding: 0;
        width: 250px;
        height: 100%;
    }

    img.main-docs-logo-img {
        height: 45px;
        margin: 7.5px 15px;
        padding: 0;
    }

    li.mainsite-butts-area {
        width: calc(100% - 400px);
        height: 100%;
        float: left;
        display: flex;
        justify-content: center;
        align-content: center;
    }

    ul.mainsite-butts-listing-ul {
        height: 100%;
        margin: 0;
        padding: 0;
        list-style-type: none;
    }

    li.mainsite-butt-area-li {
        padding-left: 20px;
        padding-right: 20px;
        float: left;
        margin-top: 20px;
        cursor: pointer;
    }

    a.mainsite-butt-href-a {
        font-family: 'SF Pro Display';
        text-decoration: none;
        font-size: 16px;
        color: rgb(89, 89, 89);
        height: 100%;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: bold;
        cursor: pointer;
    }

    a.mainsite-butt-href-a:hover {
        color: black;
    }

    a.mainsite-butt-href-a:hover {
        color: black;
    }

    ul#side-docs-nav-ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
    }

    li.side-docs-nav-li {
        margin: 0;
        padding: 0;
        border-radius: 5px;
        padding: 10px;
        box-sizing: border-box;
    }

    li.side-docs-nav-li.active p {
        font-weight: bold;
    }

    li.side-docs-nav-li:hover {
        background-color: lightgray;
    }

    a.side-docs-nav-a {
        text-decoration: none;
        color: black;
    }

    p.side-docs-nav-p {
        margin: 0;
        padding: 0;
        font-family: 'SF Pro Display';
    }

    div#docs-inner-div {
        width: 1200px;
        margin: auto;
        display: block;
    }

    div#docs-text-area-div {
        width: calc(100% - 250px);
        min-height: 200px;
        margin-left: 250px;
        margin-top: 100px;
        padding: 0 50px;
        box-sizing: border-box;
    }

    h1 {
        font-family: 'SF Pro Display';
        font-weight: bold;
        margin: 0;
        padding: 0;
        margin-bottom: 10px;
        margin-top: 50px;
    }

    p.docs-txt-p {
        font-family: 'SF Pro Display';
        margin: 0;
        padding: 0;
        margin-bottom: 20px;
        font-size: 18px;
    }

    h2 {
        font-family: 'SF Pro Display';
        font-weight: bold;
        margin: 0;
        padding: 0;
        margin-bottom: 10px;
    }

    h3 {
        font-family: 'SF Pro Display';
        font-weight: bold;
        margin: 0;
        padding: 0;
        margin-bottom: 10px;

    }

    li {
        font-family: 'SF Pro Display';
        margin: 0;
        padding: 0;
        margin-bottom: 10px;
        font-size: 18px;
    }

    div#page-controls-bar {
        width: 100%;
        height: 50px;
        margin-top: 100px;
    }

    a.page-control-button {
        color: black;
        text-decoration: none;
    }

    a.previous-page {
        float: left;
        margin-left: 50px;
    }

    a.next-page {
        float: right;
        margin-right: 50px;
    }

    span.page-control-icon {
        float: left;
        vertical-align: middle;
    }

    p#page-control-txt-p {
        float: left;
        font-family: 'SF Pro Display';
        margin: 0 10px;
        padding: 0;
        vertical-align: middle;
        line-height: 24px;
        font-size: 20px;
    }

    footer#docs-footer {
        width: 100%;
        height: 60px;
        background-color: white;
        border-top: 1px solid lightgray;
        bottom: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    p.footer-docs-txt-p {
        font-family: 'SF Pro Display';
        margin: 0;
        padding: 0;
        font-size: 14px;
    }
}

a.forwards-docs {
    text-decoration:dotted underline;
}

svg#svg-roadmap-10things {
    width: 100%;
}

img#roadmap-img-10things {
    width: 100%;
}