* {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-appearance: none;
    -webkit-border-radius:0; 
    border-radius:0;
}
body {
    background-color: #fff;
    background-image: linear-gradient(#eee .1em, transparent .1em);
    background-size: 100% 2rem;
    color: #231f1b;
    font-family: 'Nunito Sans', sans-serif;
    margin: 0;
}
h1 {
    font-size: 4rem;
    margin-top: 2.75rem;
    margin-bottom: 1.33rem;
    line-height: 1;

}
h2 {
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 1.35rem;
}
ul {
    list-style: none;
    margin: 0 auto;
    padding: 0;
}
p {
    line-height: 29px;
    margin: 0;
    transform: translateY(7px);
}
a {
    color: #1d8ff3;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    transition: all 200ms ease-in-out; 
}
a:after {
    content:'';
    border-bottom: 2px solid rgba(29, 143, 243, .5);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    transition: all 200ms ease-in-out; 
}
a:hover {
    color: #105ea3;
}
a:hover:after {
    border-color: #105ea3;
}
.flex-wrap {
    margin-top: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    text-align: center;
}
.results {
    max-width: 100%;
    margin-bottom: 4vh;
}
.button-group {
    padding: 0 2rem;
}
.button {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    position: relative;
    z-index: 1000;
    background: red;
    border: 0 none;
    box-shadow: 0 3px 7px rgba(0,0,0,.35);
    border-radius: 3px;
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1.5rem;
    line-height: 1;
    outline: none;
    transition: all 200ms ease-in-out;
    cursor: pointer;
    margin-bottom: 4vh;
    width: 100%;
    touch-action: manipulation;
}

@media screen and (min-width:768px) {
    body {
        background-image:
        linear-gradient(90deg, transparent 10vw, #ce4343  10vw, #ce4343  calc(10vw + 2px), transparent calc(10vw + 2px)),
        linear-gradient(#eee .1em, transparent .1em);
        background-size: 100% 2rem;
    }
    .button {
        margin-right: 10px;
    }
    .button:last-child {
        margin-right: 0px;
    }
    .button-group {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0px;
    }
    #history__list {
        -webkit-columns: 2;
        columns: 2;
    }
}
@media screen and (min-width:1024px) {
    .results {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    [id*="result"] {
        font-size: 4rem;
        margin-right: 2rem;
        margin-bottom: 2rem;
    }
    #history__list {
        -webkit-columns: 3;
        columns: 3;
    }
}

.freebirdFormviewerViewFormContent {
    background: #222222;
}