/* Minification failed. Returning unminified contents.
(15,1): run-time error CSS1019: Unexpected token, found '@'
(21,1): run-time error CSS1019: Unexpected token, found '@'
 */
.thank-you-page {
    background-color: #ececec
}

    .thank-you-page .thank-you-card {
        -webkit-box-shadow: 0 3px 8px rgba(0,0,0,.1);
        box-shadow: 0 3px 8px rgba(0,0,0,.1);
        background: #fff;
        padding: 48px;
        margin: 32px;
        border-radius: 3px;
        border-top: 3px solid #334c96;
    }

@@media (max-width: 991px) {
    .thank-you-page .thank-you-card {
        padding: 48px
    }
}

@@media (max-width: 767px) {
    .thank-you-page .thank-you-card {
        padding: 32px;
    }
}

.thank-you-page .thank-you-card__title {
    color: #334c96;
    text-align: center;
    margin-bottom: 24px
}

    .thank-you-page .thank-you-card__title:after {
        margin-left: calc(50% - 24px);
        content: "";
        display: block;
        width: 50px;
        height: 3px;
        margin-top: 16px;
        background-color: #334c96;
    }

.thank-you-page .thank-you-card p {
    padding-bottom: 24px
}

.thank-you-page .thank-you-card span {
    color: #777;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

    .thank-you-page .thank-you-card span:before {
        content: "";
        display: block;
        width: 80%;
        height: 1px;
        margin: 16px 0;
        background-color: #334c96;
    }

