﻿.loader {
    width: calc(60% - 0px);
    height: calc(60% - 0px);
    border: 8px solid #162534;
    border-top: 8px solid #7474f0;
    border-radius: 50%;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#circle {
    position: absolute;
    top: 50%;
    left: 53%;
    transform: translate(-50%,-50%);
    width: 100px;
    height: 100px;
}

.lodding-bg {
    background-color: rgba(0, 0, 0, 0.4);
    position: fixed;
    top: 0;
    right: 0px;
    bottom: 0px;
    left: 0px;
    display: none;
    z-index: 9999;
}

.lodding-tag {
    font-size: 20px;
    color: #000;
    text-align: center;
    margin: 10px 10px 10px -40px;
}
