﻿/* //=======================Loader============================// */
.card-loader {
    width: 48px;
    height: 48px;
    border: 5px solid;
    border-color: #49c5b6 transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader-text {
    font-size: 16px;
}

.loader-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
/* ================== Small Loader (sm) ================== */
.loader-box-sm {
    position: absolute;
    display: flex;
    justify-content: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.loader-sm {
    width: 24px;
    height: 24px;
    border: 3px solid;
    border-color: #49c5b6 transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

.loader-text-sm {
    font-size: 12px;
    margin-top: 5px;
    color: #333;
}

.ul_loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: inherit;
    padding: 10px;
    z-index: 1000;
}
