.div-loader
{
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 600;
    border-radius: 5px;
    background: #fdfdfd9a;
    /* align-items: center; */
    justify-content: center;
    margin: 0;
}

.loader
{
    width: 60px;
}

.loader-wheel
{
    animation: spin 1s infinite linear;
    border: 2px solid transparent;
    border-left: 4px solid rgb(2, 165, 43);
    border-radius: 50%;
    height: 50px;
    margin-bottom: 10px;
    width: 50px;
    position: relative;
    top:45%;
}

@keyframes spin
{
    0% {
    transform: rotate(0deg);
    }
    100% {
    transform: rotate(360deg);
    }
}

.error
{
    height: 20.5px;
    padding-top: 2px;
    font-size: 11px;
    color: #ff1100;
    font-weight: 400;
    margin-bottom: 5px;
}