.error {
    color: rgb(159, 36, 63);

}

.loader {
    border: 14px solid #fff;
    border-radius: 50%;
    border-top: 14px solid rgb(159, 36, 63);
    border-bottom: 14px solid rgb(159, 36, 63);
    width: 60px;
    height: 60px;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

table th {
    vertical-align: middle;
    text-align: center;
}

table td {
    vertical-align: middle;
    text-align: center;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}