﻿@charset "UTF-8";

@-webkit-keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.main-row {
    margin-right: 20px;
    margin-bottom: 30px;
    max-width: 600px;
}

.text-icon-wrapper i {
    vertical-align: top;
}

.text-icon-wrapper .space-right {
    margin-right: 5px;
}

.text-icon-wrapper .space-left {
    margin-left: 5px;
}

.fine-text {
    font-size: 12px;
}

.loading {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    border: 0.25rem solid rgba(255, 255, 255, 0.2);
    border-top-color: black;
    -webkit-animation: spin 1s infinite linear;
    animation: spin 1s infinite linear;
}

.form-group.form-error {
    border-left: 4px solid #CC0000;
    padding-left: calc(16px - 4px);
}

    .form-group.form-error .form-input,
    .form-group.form-error .form-select {
        border: 2px solid #CC0000;
        padding: calc(8px - 2px) calc(16px - 2px);
    }

.form-error-message {
    font-weight: bold;
    color: #1a1a1a;
    text-transform: none;
    display: block;
    color: #CC0000;
    margin-top: 4px;
}

.form-alert {
    background-color: #F5F5F5;
    background-position: 16px 16px;
    background-repeat: no-repeat;
    background-size: 24px;
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 16px;
    position: relative;
    margin-top: 16px;
    margin-bottom: 16px;
    border-left: 8px solid #8f8f8f;
}

    .form-alert:first-child {
        margin-top: 0;
    }

    .form-alert.form-alert--paragraph {
        max-width: 66ch;
    }

    .form-alert .form-alert-close {
        position: absolute;
        top: 16px;
        right: 16px;
        font-size: 1.4rem;
        line-height: 2rem;
        font-weight: 500;
        color: #1a1a1a;
    }

        .form-alert .form-alert-close .icon-svg {
            margin-right: 4px;
            width: 1.6rem;
            height: 1.6rem;
            fill: currentColor;
        }

    .form-alert .form-alert-heading {
        margin-top: 0;
        margin-bottom: 0;
        font-weight: 600;
        line-height: 2.4rem;
        color: #1a1a1a;
        -ms-word-wrap: break-word;
        word-wrap: break-word;
    }

    .form-alert .form-alert-text {
        margin-bottom: 0;
        margin-top: 0;
        color: #1a1a1a;
        max-width: 66ch;
    }

.form-alert-success {
    background-color: #eeffe2;
    border-color: #358000;
}

    .form-alert-success.form-alert--show-icon {
        background-image: url("../img/svg-icons/success.svg");
        padding-left: 48px;
    }

.form-alert-warning {
    background-color: #ffeecc;
    border-color: #febb30;
}

    .form-alert-warning.form-alert--show-icon {
        background-image: url("../img/svg-icons/report-problem.svg");
        padding-left: calc(16px + 24px + 8px);
    }

.form-alert-error {
    background-color: #ffe0e0;
    border-color: #CC0000;
}

    .form-alert-error.form-alert--show-icon {
        background-image: url("../img/svg-icons/error.svg");
        padding-left: 48px;
    }

.clear-pull {
    clear: both !important;
}

.summary-field {
    margin-bottom: 5px;
}

.summary-footer {
    color: #034ea2;
}
