﻿.formio-loader {
    position: relative;
    min-height: 100px
}

.loader-wrapper {
    z-index: 1000;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0,0,0,0)
}

.loader {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -30px;
    margin-top: -30px;
    z-index: 10000;
    display: inline-block;
    border: 6px solid #f3f3f3;
    border-top: 6px solid #3498db;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite
}

.alert-success {
    position: relative;
    padding: 1rem;
    margin-bottom: 1rem;
    color: #0a3622;
    background-color: #d1e7dd;
    border: #a3cfbb;
    border-radius: .375rem
}

@keyframes spin {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}
