body {
    margin: 0;
    padding: 0;
}

.ld {
    background: rgb(218, 218, 218);
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100;
}

.loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(75deg);
    width: 15px;
    height: 15px;
}

.loadtxt {
    position: absolute;
    top: 50%;
    left: 50%;
    /* transform: translate(-50%, -50%) rotate(75deg); */
    width: 15px;
    height: 15px;
}

.loading::before,
.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 15px;
    border-radius: 15px;
    animation: loading 1.5s infinite linear;
}

.loading::before {
    box-shadow: 15px 15px #e77f67, -15px -15px #778beb;
}

.loading::after {
    box-shadow: 15px 15px #f8a6c2, -15px -15px #f5cd79;
    transform: translate(-50%, -50%) rotate(90deg);
}

@keyframes loading {
    50% {
        height: 45px;
    }
}
