.UploadErrors {
    background-color: white;
    border: none;
    border-radius: 3px;
    margin-top: 25px;
    text-align: center;
    width: 80%;
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%23E84031FF' stroke-width='4' stroke-dasharray='5%2c 12' stroke-dashoffset='19' stroke-linecap='square'/%3e%3c/svg%3e");
    padding: 60px 0;

    h2 {
        font-weight: 400;
        font-size: 24px;
        line-height: 32px;
        text-align: center;
        color: var(--gray-900);
        margin-top: 20px;
        margin-bottom: 10px;
    }

    &-validation-error-msg {
        text-align: center;

        p {
            font-weight: 400;
            font-size: 14px;
            line-height: 20px;
            color: var(--red);
        }

        ul {
            padding: 0;
            width: fit-content;
            margin: 0 auto;
            line-height: 20px;
        }
    }

    &-reUploadButton {
        margin-bottom: 20px;
        height: 40px;

        svg {
            margin-right: 8px;

            path {
                fill: var(--gray-700);
            }
        }
    }
}
