body {
    font-family: 'Google Sans';
    background: #fefefe;
    margin: 0;
    min-width: 900px;
}

button:focus {
    outline: 0;
}

button {
    margin: 1em 0 1em 8px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
    -webkit-transition: box-shadow 300ms, -webkit-box-shadow 300ms, filter 100ms, background 300ms;
    transition: box-shadow 300ms, -webkit-box-shadow 300ms, filter 100ms, background 300ms;
}

button:hover {
    box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.3);
}

button:hover {
    cursor: pointer;
}

button:active {
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}

button:active {
    filter: brightness(90%);
}

button:disabled {
    box-shadow: none;
    -webkit-box-shadow: none;
}

button {
    font-family: 'Google Sans';
    font-size: 1rem;
    font-weight: 500;
    line-height: 36px;
    text-transform: uppercase;
    height: 36px;
    padding: 0 2rem;
    border: none;
    border-radius: 2px;
    display: inline-block;
    vertical-align: middle;
    -webkit-tap-highlight-color: transparent;
}

button:disabled {
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: default;
}

button {
    background: #2196F3;
    color: #ffffff;
}

button:disabled {
    background: #cccccc !important;
    color: #999999 !important;
}

input {
    border: none;
}

input[type=number] {
    font-family: "Google Sans", sans-serif;
    line-height: 36px;
    text-transform: uppercase;
    height: 36px;
    padding-left: 16px;
    padding-right: 4px;
    border-radius: 2px;
    outline-width: 0;
    transition: border-bottom .3s, background .3s;
    -webkit-transition: border-bottom .3s, background .3s;
}

input[type=number]::placeholder {
    color: #9E9E9E;
}

input[type=number] {
    background: #F5F5F5;
    color: #212121;
    border-bottom: 2px solid #cecece;
}

input[type=number]:focus {
    border-bottom: 2px solid #2196F3;
}

input[type=number]:hover {
    background: #EEEEEE;
}

input[type=number]::after {
    background: #F5F5F5;
}

input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    height: 5px !important;
    border-radius: 5px;   
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
}

input[type=range]::-moz-range-thumb {
    width: 15px;
    height: 15px;
    border-radius: 50%; 
    background: #2196F3;
    cursor: pointer;
    transition: width .1s, height .1s;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%; 
    background: #2196F3;
    cursor: pointer;
    transition: width .1s, height .1s;
    -webkit-transition: width .1s, height .1s;
}

input[type=range]::-webkit-slider-thumb:hover, input[type=range]::-webkit-slider-thumb:active {
    width: 25px;
    height: 25px;
}

input[type=range]::-moz-range-thumb:hover, input[type=range]::-moz-range-thumb:active {
    width: 25px;
    height: 25px;
}

/* Hides mocha tests even though it stil runs */

#mocha {
    visibility: hidden;
}