.modal#confirmDeleteModal .modal-content svg,
.modal#statusErrorsModal .modal-content svg,
.modal#statusSuccessModal .modal-content svg {
    width: 100px;
    display: block;
    margin: 0 auto;
}

.modal#confirmDeleteModal .modal-content .path,
.modal#statusErrorsModal .modal-content .path,
.modal#statusSuccessModal .modal-content .path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 0;
}

.modal#confirmDeleteModal .modal-content .path.circle,
.modal#statusErrorsModal .modal-content .path.circle,
.modal#statusSuccessModal .modal-content .path.circle {
    -webkit-animation: dash 0.9s ease-in-out;
    animation: dash 0.9s ease-in-out;
}

.modal#confirmDeleteModal .modal-content .path.line,
.modal#statusErrorsModal .modal-content .path.line,
.modal#statusSuccessModal .modal-content .path.line {
    stroke-dashoffset: 1000;
    -webkit-animation: dash-line 0.95s 0.35s ease-in-out forwards;
    animation: dash-line 0.95s 0.35s ease-in-out forwards;
}

@-webkit-keyframes dash {
    0% {
        stroke-dashoffset: 1000;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes dash {
    0% {
        stroke-dashoffset: 1000;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@-webkit-keyframes dash-line {
    0% {
        stroke-dashoffset: 1000;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes dash-line {
    0% {
        stroke-dashoffset: 1000;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@-webkit-keyframes dash-check {
    0% {
        stroke-dashoffset: -100;
    }
    100% {
        stroke-dashoffset: 900;
    }
}

@keyframes dash-check {
    0% {
        stroke-dashoffset: -100;
    }
    100% {
        stroke-dashoffset: 900;
    }
}

.box00 {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}
