@import 'fonts.css';

html {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    min-height: 100%;
}


:root {
    font-family: 'RMNeue', sans-serif, Arial, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
        Cantarell, 'Open Sans', 'Helvetica Neue';
    --font-mono: 'Fira Mono', monospace;
    --pure-white: #ffffff;
    --sbt-purple: #32285A;
    --sbt-violet: #bea0fa;
    --sbt-slate: #50555f;
    --sbt-gray: #bebec8;
    --sbt-lightgray: #e6e6eb;
    --sbt-red: #f05a64;
    --sbt-blue: #32b4e6;
    --sbt-green: #005050;
    --sbt-lightgreen: #6ebebe;
    --text-color: #444444;
    --background-without-opacity: rgba(255, 255, 255, 0.7);
    --column-width: 42rem;
    --column-margin-top: 4rem;
    --shadow-height: .5rem;
    --shadow-gradient: linear-gradient(to bottom, rgba(0, 0, 0, .1) 0%, rgba(0, 0, 0, .05) 30%, transparent 100%);
    --header-height: 4.5em;
    --footer-height: 3em;
    --sidepanel-width: 26em;
    --sidepanel-breakpoint: 100em;
    --mdc-typography-font-family: 'RMNeue';
    --mdc-typography-subtitle2-font-size: 1rem;
}

h1,
h2,
p {
    font-weight: 400;
    color: var(--sbt-purple);
}

p {
    line-height: 1.5;
}

h1 {
    font-size: 2rem;
    text-align: center;
}

h2 {
    font-size: 1rem;
}

.sbt-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    inline-size: 100vw;
    block-size: var(--header-height);
    margin-inline: auto;
    margin-block: 0;
    background-color: var(--pure-white);
    z-index: 99;
}

.sbt-header:after {
    content: '';
    position: absolute;
    display: block;
    inline-size: 100%;
    block-size: var(--shadow-height);
    inset-inline-start: 0;
    top: var(--header-height);
    background: var(--shadow-gradient);
}

.left-corner {
    width: 20em;
    height: 5em;
    display: flex;
    justify-content: left;
    margin-left: 1.5em;
    align-items: center;
}

.left-corner h1 {
    font-size: 2em;
}

.right-corner {
    width: 14em;
    height: 5em;
    display: flex;
    align-items: center;
    justify-content: right;
    align-items: center;
    margin-right: 1.5em;
}

.right-corner h1 {
    font-size: 2em;
}

.right-corner a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 2.5em;
}

.right-corner img {
    width: 3.5em;
    height: 2em;
    object-fit: contain;
}

body {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    overflow-y: auto;
    min-height: 100vh;
}


/* top-buttons */
.top-buttons {
    display: flex;
    flex-flow: row wrap;
}



.left {
    margin: 20px;
}

.right {
    margin: 20px;
}

footer {
    position: relative;
    bottom: 0;
    background-color: var(--sbt-slate);
    flex-shrink: 0;
    flex: 1 100%;



}

.footer-content {

    margin: auto;
    justify-content: space-between;
    align-items: center;
    text-align: center;

}

.footer-content p {
    color: var(--sbt-gray);

}

.experimental-notice {
    background-color: var(--sbt-red);
    color: var(--pure-white);
    flex: 0;
    position: relative;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.experimental-notice p {
    font-size: 1.1em;
    background-color: var(--sbt-red);
    color: var(--pure-white);
    margin: auto;
}

.bk-root {
    font-family: 'RMNeue';
    font-size: 14px
}

.bk-root .bk-btn-success {
    color: #fff;
    background-color: var(--sbt-purple);
    border-color: var(--sbt-purple);
    font-size: 14px;
}

.bk-root .bk-btn-success:hover {
    background-color: var(--sbt-violet);
}

.bk-root .bk-data-table {
    font-size: 13px;
    font-weight: 100;
}

.d-flex {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    overflow-y: auto;

}

.d-flex>div {
    margin: 5px;

}

.hero {
    flex: 0 0 calc(33.33% - 10px);
    padding: 30px 0;
    border-radius: 3px;
}

.hero:nth-child(2) {
    flex-basis: calc(65% - 10px);
}

@media (max-width: 736px) {
    .hero {
        flex-basis: calc(50% - 10px);
    }

    .hero:nth-child(2) {
        flex-grow: 1;
    }

    .hero:nth-child(1) {
        flex-grow: 1;
    }
}

* {
    box-sizing: border-box;
}