@charset "utf-8";

html {
    font-size: .625em;
    height: 100%;
    margin: 0;
    overflow: hidden;
    padding: 0;
}

body {
    display: flex;
    background-color: #fff;
    margin: 0;
    padding: 0;
    font: 1.6rem / 1.34 'Montserrat', sans-serif;
    font-weight: 300;
    height: 100%;
}

.bold {
    font-weight: 900;
}

.no-margin {
    margin: 0
}

.landbot-container {
    flex: 1 0 0;
}

.header-main {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    background-color: #000;
    padding: 1rem 2.5rem;
    box-sizing: border-box;
}

.landbot {
    height: 100%
}

.chart {
    flex: 0 0 32%;
    min-width: -webkit-min-content;
    min-width: min-content;
    overflow-y: auto;
    padding: 28px
}

@media screen and (max-width: 1000px) {
    body {
        flex-direction: column;
    }

    .chart {
        flex-basis: 50%
    }

    .landbot {
        /* Remove the header's height */
        height: calc(100% - 80px)
    }
}
.hidden{display:none;}
