div.loading {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    opacity: 1;
}
div.screen {
    transition: opacity 0.75s linear;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
div.screen div.wrap {
    padding: 20px;
    max-height: 100%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}
div.screen h1 {
    color: var(--white);
}
div.hide-me {
    position: fixed;
    left: -2000px;
    width: 100px;
    height: 100px;
    overflow: hidden;
    opacity: 0;
}
main div.full-size {
    opacity: 1;
    position: static;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 50px;
}
sup {
    font-weight: 300;
    font-size: 16px;
    vertical-align: top;
}
div.buttons {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
main button {
    min-width: 150px;
    padding: 15px 25px 15px 25px;
    font-size: 20px;
    font-weight: 200;
    cursor: pointer;
    transition: background-color 0.2s linear;
}
main button.back {
    background-color: var(--green-main);
    color: var(--white);
}
button.back:hover {
    background-color: var(--green-dark);
}
button.choice, button.look-up {
    background-color: var(--blue-dark);
    color: var(--white);
}
button.choice:hover, button.look-up:hover {
    background-color: var(--blue-main);
}
div.quote-number-and-look-up {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
div.quote-error {
    opacity: 1;
    position: static;
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    background-color: var(--orange-main);
    color: var(--white);
    padding: 20px;
    font-weight: 200;
}
input.quote-number {
    padding: 15px;
    font-size: 26px;
    outline: none;
    border-width: 3px;
    border-style: solid;
    border-color: var(--white);
    font-weight: 200;
    width: 100%;
}
input.quote-number:focus {
    border-color: var(--blue-main);
}
select.number-of-vehicles {
    min-width: 80px;
    text-align: center;
    font-size: 20px;
    font-weight: 300;
    outline: none;
    padding: 15px;
}

@media only screen and (min-width: 480px) {
    div.buttons {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 50px;
    }

}
@media only screen and (min-width: 560px) {
    input.quote-number {
        width: auto;
    }
    div.quote-number-and-look-up {
        flex-direction: row;
        gap: 40px;
    }
}