::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    background-color: #f2f5f7;
    border: 1px solid #fff
}

::-webkit-scrollbar-thumb {
    border: 0;
    background-color: #cdd0d8;
}

html {
  font-size: 14px;
}

.main-body {
    width: 100%;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
    -webkit-font-smoothing: antialiased !important;
    text-rendering: optimizeLegibility !important;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.004) !important;
}

html, body {
    height: 100%;
    margin: 0;
    font-family: var(--elevate-primary-font);
}

a {
    font-family: var(--elevate-secondary-font);
}

.site-content {
    width: 100vw;
    height: 100vh;
}

.footer {
    position: absolute;
    bottom: 0;
    color: var(--footer-primary);
    font-family: var(--elevate-primary-font);
    font-size: 10px;
}

.footer-link {
    color: var(--footer-dark);
    font-weight: 600;
}

.footer-link:hover {
    color: var(--footer-secondary);
}

.content-body {
    display: flex;
    height: calc(100% - 75px);
    overflow-y: auto;
    background-color: var(--site-base);
}

@media (max-width: 650px) {
    .content-body {
        height: calc(100% - 32px);
    }
}

    #content-body::-webkit-scrollbar {
        width: 6px;
        background-color: #f2f5f7;
        border: 1px solid #fff;
    }

    #content-body::-webkit-scrollbar-track {
        /*    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);*/
        /*    border-radius: 5px;*/
        background-color: #f1f1f1;
    }


    #content-body::-webkit-scrollbar-thumb {
        /*    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);*/
        background-color: #cdd0d8;
    }