@charset "UTF-8";

:root {
--base-layout-width: 100%;
--base-content-width: 56vw;
--base-offset: 20px;
--base-offset-vertical: 40px;
--base-space: 12px;
--base-gap: var(--base-offset);
}
@media (max-width: 1299px) {
:root {
--base-content-width: 100%;
}
}
@media (min-width: 1000px) {
body {
padding-top: 0;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-ms-flex-direction: row;
flex-direction: row;
}
}
main {
background: var(--base-color-background-dark);
padding: calc(1.5 * var(--base-offset)) var(--base-offset);
padding-bottom: calc(2 * var(--base-offset-vertical));
}
@media (min-width: 1000px) {
main {
padding-bottom: calc(4 * var(--base-offset-vertical));
}
}
@media (min-width: 1000px) {
main {
max-height: 100vh;
overflow: auto;
-ms-flex: 1;
flex: 1;
}
}
main > .site-layout-container > * {
margin-left: 0;
margin-right: 0;
max-width: 100%;
}
main > .site-layout-container > *:first-child:not(div) {
margin-top: 0;
}
footer.footer {
display: none;
}