.k12-loader{
    position: relative;
}
.k12-loader::after{
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(1px);
    z-index: 99;
}
.k12-loader::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 7px solid #EEEEEE;
    border-top: 7px solid #043753;
    animation: k12-spin 1s linear infinite;
    transform: translate(-50%, -50%);
    z-index: 100;
}
@keyframes k12-spin{
    100%{
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
.d-none{
    display: none;
}
.fs-13{
    font-size: 13px;
}
.fs-14{
    font-size: 14px;
}
.bg-primary{
    color: #FFFFFF;
    background-color: #043753;
}
.swal2-popup{
    padding-bottom: 0px;
}
.swal2-html-container{
    padding: 0px;
}