﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&display=swap');

.loader {
    border: 4px solid #d5f3ff;
    border-radius: 50%;
    border-top: 4px solid #2196f3;
    width: 25px;
    height: 25px;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}
/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.m_bx_loader {
    background: rgba(0, 0, 0, 0.5) none repeat scroll 0 0;
    height: 100%;
    margin: 0;
    padding: 0;
    position: fixed;
    width: 100%;
    z-index: 9999;
    display: block;
    top: 0;
    left: 0;
}


.m_bx_loader1 {
    background: rgba(0, 0, 0, 1) none repeat scroll 0 0;
    height: 100%;
    margin: 0;
    padding: 0;
    position: fixed;
    width: 100%;
    z-index: 9999;
    display: block;
    top: 0;
    left: 0;
}

.bx_lodr {
    height: 75px;
    width: 150px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    margin: auto;
    padding: 10px;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}
