.c3-test-flight *,
.c3-test-flight *:before,
.c3-test-flight *:after {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    outline: 0;
}

.c3-test-flight p {
    margin-bottom: 1rem;
}

.c3-test-flight p:last-child {
    margin-bottom: 0;
}

.c3-test-flight strong {
    font-family: 'GalaxiePolaris-Medium', sans-serif;
}

.c3-test-flight small {
    display: block;
    font-size: 75%;
    line-height: 1.5;
    opacity: 0.5;
}

.c3-test-flight {
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    background-color: rgba(0, 0, 0, 0.75);
    font-family: 'GalaxiePolaris-Book', sans-serif;
    font-size: 0.8rem;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0ms 450ms, opacity 300ms 150ms;
    -webkit-transition: visibility 0ms 450ms, opacity 300ms 150ms;
}

.c3-test-flight.c3-test-flight--visible {
    visibility: visible;
    opacity: 1;
    transition: visibility 0ms, opacity 300ms;
    -webkit-transition: visibility 0ms, opacity 300ms;
}

.c3-test-flight__button-close {
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 99;
    cursor: pointer;
}

.c3-test-flight__button-close:before,
.c3-test-flight__button-close:after {
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #fff;
}

.c3-test-flight__button-close:before {
    transform: translate(-50%, -50%) rotate(45deg);
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
}

.c3-test-flight__button-close:after {
    transform: translate(-50%, -50%) rotate(-45deg);
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
}

.c3-test-flight__container {
    display: block;
    width: 100%;
    max-width: 800px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    -webkit-transform: translate(-50%, -50%) scale(0.5);
    padding: 1rem;
    background-color: #fff;
    opacity: 0;
    overflow: auto;
    transition: transform 300ms 0ms, opacity 300ms 0ms;
    -webkit-transition: transform 300ms 0ms, opacity 300ms 0ms;
}

.c3-test-flight--visible .c3-test-flight__container {
    transform: translate(-50%, -50%) scale(1);
    -webkit-transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    transition: transform 300ms 150ms, opacity 300ms 150ms;
    -webkit-transition: transform 300ms 150ms, opacity 300ms 150ms;
}

.c3-test-flight__title {
    margin-bottom: 1rem;
    font-family: 'GalaxiePolaris-Medium', sans-serif;
    font-size: 1.2rem;
    color: #ec0000;
}

.c3-test-flight__form {
    margin-bottom: 1rem;
}

.c3-test-flight__form.c3-test-flight__form--success {
    pointer-events: none;
}

.c3-test-flight__form-row {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-left: -0.5rem;
}

.c3-test-flight__form-column {
    flex: 1;
    margin-top: 0.5rem;
    margin-left: 0.5rem;
}

.c3-test-flight__form-label {
    display: block;
    color: #888;
}

.c3-test-flight__form-input,
.c3-test-flight__form-textarea,
.c3-test-flight__form-select {
    appearance: none;
    -webkit-appearance: none;
    display: inline-block;
    width: 100%;
    height: 30px;
    border: 0;
    border-radius: 0;
    padding: 0.4rem;
    background-color: #ececea;
    font-family: 'GalaxiePolaris-Book', sans-serif;
    font-size: 0.8rem;
}

.c3-test-flight__form-textarea {
    height: 100px;
}

.c3-test-flight__form-input[name="zip"] {
    width: calc(30% - 4px);
    border-right: 4px solid #fff;
}

.c3-test-flight__form-input[name="city"] {
    width: 70%;
}

.c3-test-flight__form-button {
    position: relative;
    z-index: 2;
    border: 0;
    border-radius: 0;
    padding: 0.5rem 1rem;
    background-color: #ec0000;
    font-family: 'GalaxiePolaris-Medium', sans-serif;
    font-size: 0.7rem;
    color: #fff;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    cursor: pointer;
    opacity: 1;
}

.c3-test-flight__form-message {
    display: block;
    position: relative;
    transform: translateY(-1rem);
    -webkit-transform: translateY(-1rem);
    z-index: 1;
    font-family: 'GalaxiePolaris-Medium', sans-serif;
    font-size: 0.7rem;
    opacity: 0;
    transition: transform 300ms, opacity 300ms;
    -webkit-transition: transform 300ms, opacity 300ms;
}

.c3-test-flight__form--success .c3-test-flight__form-message,
.c3-test-flight__form--error .c3-test-flight__form-message {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    opacity: 1;
}

.c3-test-flight__form--success .c3-test-flight__form-message {
    color: #009c00;
}

.c3-test-flight__form--error .c3-test-flight__form-message {
    color: #ec0000;
}

@media (max-width: 560px) {
    .c3-test-flight__button-close {
        top: 20px;
        right: 20px;
    }

    .c3-test-flight__button-close:before,
    .c3-test-flight__button-close:after {
        background-color: #1f1f1f;
    }

    .c3-test-flight__container {
        width: 100%;
        height: 100%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        opacity: 1;
    }

    .c3-test-flight--visible .c3-test-flight__container {
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
    }

    .c3-test-flight__form-column {
        flex: none;
        width: calc(100% - 0.5rem);
        margin-top: 0.5rem;
        margin-left: 0.5rem;
    }
}

#g-recaptcha-message {
    color: red;
}