html, body {
    position: relative;
    width: 100%;
    height: 100%;

}

body {
    color: #333;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-weight: 100;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

a {
    color: rgb(0, 100, 200);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a:visited {
    color: rgb(0, 80, 160);
}

label {
    display: block;
}

input, button, select, textarea {
    font-family: inherit;
    font-size: inherit;
    -webkit-padding: 0.4em 0;
    padding: 0.4em;
    margin: 0 0 0.5em 0;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 2px;
}

input:disabled {
    color: #ccc;
}

button {
    color: #333;
    background-color: #f4f4f4;
    outline: none;
}

button:disabled {
    color: #999;
}

button:not(:disabled):active {
    background-color: #ddd;
}

button:focus {
    border-color: #666;
}


h2 {
    font-size: 32px;
}

h2 small {
    font-weight: 100;
    font-size: 16px;
    color: #999;
}


.cell {
    /*margin:0 20px;*/
    padding: 20px;
}


.button {
    background: #ebebeb;
    border-radius: 8px;
    border: none;
    font-weight: lighter;
}

.button.active {
    background: #d0e9d3;
}

.button.white {
    background: #fff;
}

.button.tab {
    border-radius: 5px;
    background: #fff;
    border: 1px solid #ddd;
    min-width: 140px;
    margin: 2px;
    font-size: 20px;
    font-weight: normal;
}

.button.tab.active {
    background: #ecf6ed;
    border: 1px solid #ecf6ed;
}

.tab-container {
    display: flex;
    /*justify-content: space-around;*/
    flex-wrap: wrap;
}

.tab-container .button.six {
    flex: 1 1 14.5%;
    max-width: 14.5%;
    margin: 5px 1%
}

.tab-container .button.active {
    background: #d0e9d3;
}


.bg-gray {
    background: #f7f7f7;
}

.bg-dark-gray {
    background: #dfdfdf;
}

.bg-green {
    background: #ecf6ed;
}

.info {
    color: #66aef7;
    font-size: 12px;
}
