.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background-color: transparent;
    z-index: 1000;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

.loading-wrap {
    width: 10vw;
    height: 7vw;
    background: #fff;
    font-size: 3.2vw;
    color: #243a48;
    box-shadow: 0 0.8vw 2.6666666667vw 0 rgb(0 0 0 / 50%);
    border-radius: 1.3333333333vw;
    padding: 1.8666666667vw 0;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20%;
    margin-left: 41%;
}

.loading {
    position: relative;
    width: 4.6666666667vw;
    height: 2.3333333333vw;
}

.loading>div:nth-of-type(1) {
    left: 0;
    background: #fb7f32;
    -webkit-animation: loading-1 0.6s ease infinite;
    animation: loading-1 0.6s ease infinite;
    z-index: 5;
}

.loading>div {
    position: absolute;
    width: 50%;
    height: 100%;
    border-radius: 50%;
}

.loading>div:nth-of-type(2) {
    left: 50%;
    background: #243a48;
    -webkit-animation: loading-2 0.6s ease infinite;
    animation: loading-2 0.6s ease infinite;
}

.loading>div {
    position: absolute;
    width: 50%;
    height: 100%;
    border-radius: 50%;
}

.loading-wrap p {
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    text-align: center;
}

@-webkit-keyframes loading-1 {
    0% {
        left: 0
    }
    50% {
        left: 50%
    }
    100% {
        left: 0
    }
}

@keyframes loading-1 {
    0% {
        left: 0
    }
    50% {
        left: 50%
    }
    100% {
        left: 0
    }
}

@-webkit-keyframes loading-2 {
    0% {
        left: 50%;
        z-index: 1
    }
    49% {
        z-index: 1
    }
    50% {
        left: 0;
        z-index: 10
    }
    100% {
        left: 50%;
        z-index: 10
    }
}

@keyframes loading-2 {
    0% {
        left: 50%;
        z-index: 1
    }
    49% {
        z-index: 1
    }
    50% {
        left: 0;
        z-index: 10
    }
    100% {
        left: 50%;
        z-index: 10
    }
}

@media only screen and (max-width: 767px) {
    .loading-wrap {
        width: 40vw;
        height: 24vw;
        background: #fff;
        font-size: 3.2vw;
        color: #243a48;
        box-shadow: 0 0.8vw 2.6666666667vw 0 rgb(0 0 0 / 50%);
        border-radius: 1.3333333333vw;
        padding: 1.8666666667vw 0;
        -webkit-box-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        align-items: center;
        flex-wrap: wrap;
        margin-top: 70%;
        margin-left: 30%;
    }
    .loading {
        position: relative;
        width: 18.6666666667vw;
        height: 9.3333333333vw;
    }
}