@charset "utf-8";
.loader-list{background: rgba(0 0 0 / .75);display: flex;flex-wrap: wrap;align-items: center;justify-content: center;}
.loader-list li{width: 33.333%;text-align: center;display: flex;height: 200px;justify-content: center;align-items: center;}


  .loader1-6 {
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: #2680EB;
    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);
    }
    } 
    .loader1-6.type01 {border:5px solid #ddd;border-bottom-color: #2680EB;}


