html,
body {
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    background-color: #fafafa;
    overflow: auto;
}

nav {
    padding: 0;
    margin: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    flex-wrap: wrap;
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
}

nav>a {
    height: 40px;
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
    font-size: 12px;
    text-align: center;
    background-color: #eee;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: inherit;
    padding-left: 5px;
    padding-right: 5px;
}

nav>a:active {
    color: inherit;
}

nav>a:active,
nav>a:focus {
    color: inherit;
    outline: none;
}

nav>a.active {
    background-color: white;
    color: maroon;
}

.tab.full {
    width: 100%;
    height: 100%;
}

.tab {
    width: 100%;
    height: calc(100% - 120px);
}

.tab>div {
    width: 100%;
    height: 100%;
}

.terms-content-wrapper {
    padding-left: 20px;
    padding-right: 20px;
}

select {
    margin: 0 20px 100px;
    padding: 10px 20px;
    font-size: 16px;
    max-width: 100%;
}