html {
    height: 100%;
}

* {
    box-sizing: border-box;
}

body {
    background-color: #E6E6E6;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: rgba(12, 12, 12, 0.92);
    position: relative;
    line-height: 1.5;
    overflow-y: scroll;
}

#rootFlexContent {
    position: relative;
    top: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100vh;
}

#headerAlert {
    font-size: 13px;
}
#headerAlert section {
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
}

#contentContainer {
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
}

#content {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    align-items: stretch;
    padding-top: 10px;
}

#contentCenter {
    padding: 0px;
    padding-top: 0px;
    flex: 1 1 auto;
}

section {
    position: relative;
    overflow: visible;
    padding-left:25px;
    padding-right:25px;
    max-width: 1200px;
    margin: 0 auto;
}

#header section {
    padding-left: 5px;
    padding-right: 5px;
}
#headerSecondary section {
    padding-left: 5px;
    padding-right: 10px;
}

.headerNoJsWarning {
    display: block;
    border-radius: 0px;
    background-color: rgba(217, 130, 43, 0.15);
    color: #bf7326;
}

/* Small Screen */
@media screen and (min-width: 600px) {
    #headerAlert section {
        max-width: 100%;
    }
    #header section {
        padding-left: 5px;
        padding-right: 10px;
    }
    #headerSecondary section {
        padding-left: 5px;
        padding-right: 10px;
    }

    section {
        max-width: 100%;
    }
}

/* Medium Screen */
@media screen and (min-width: 800px) {
    .headerNoJsWarning {
        display: none;
    }

    #headerAlert section {
        max-width: 100%;
    }

    section {
        max-width: 100%;
    }

    #contentContainer section {
        padding-right: 40px;
    }

    #header section {
        padding-left: 14px;
        padding-right: 25px;
    }
    #headerSecondary section {
        padding-left: 14px;
        padding-right: 25px;
    }
}

/* Large Screen */
@media screen and (min-width: 1100px) {
    #headerAlert section {
        max-width: 1180px;
    }
    section {
        max-width: 1180px;
    }
    #contentContainer section {
        padding-right: 25px;
    }
    #header section {
        padding-left: 14px;
        padding-right: 25px;
    }
    #headerSecondary section {
        padding-left: 14px;
        padding-right: 25px;
    }
}

.noJsHidden {
    display: none;
}

#backToHomeButton {
    display: flex;
    justify-content: center;
    align-items: center;
}
#backToHomeButton .bp3-icon {
    margin-left: 1px;
    margin-right: 4px;
    color: #bfccd6;
}

hr {
    margin-top: 10px;
	border-top: 1px solid #BFCCD6;
    border-bottom: none;
    margin-bottom: 10px;
}

.suggestEditButton a {
    color: #8A9BA8 !important;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.suggestEditButton a:hover {
    color: #5C7080 !important;
    text-decoration: none;
}
#suggestEditButtonMobile {
    width: 100%;
    margin-top: 20px;
    display: block;
}
#suggestEditButtonMobile a {
    float: right;
    margin-top: 5px;
}
/* Large Screen */
@media screen and (min-width: 1100px) {
    #suggestEditButtonMobile {
        display: none;
    }
}

pre {
    font-family: monospace;
    text-transform: none;
    background: hsla(0,0%,100%,.7);
    border-radius: 3px;
    -webkit-box-shadow: inset 0 0 0 1px rgba(16,22,26,.15);
    box-shadow: inset 0 0 0 1px rgba(16,22,26,.15);
    color: #182026;
    display: block;
    font-size: 13px;
    line-height: 1.4;
    margin: 10px 0;
    padding: 13px 15px 12px;
    word-break: break-all;
    word-wrap: break-word;
    white-space: pre-wrap;
}

code {
    font-family: monospace;
    text-transform: none;
    background: hsla(0,0%,100%,.7);
    border-radius: 3px;
    -webkit-box-shadow: inset 0 0 0 1px rgba(16,22,26,.2);
    box-shadow: inset 0 0 0 1px rgba(16,22,26,.2);
    color: #5c7080;
    font-size: smaller;
    padding: 2px 5px;
}