.loadingDIV {
    z-index: 1 !important;
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.loadingDIV .C1 {
    background: var(--lightBLUE);
    width: 50px;
    height: 100px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 0;
    transform: rotate(30deg) scale(1);
    opacity: 0;
    animation: animation-C1 3s forwards;
    position: relative;
}

.loadingDIV .C2 {
    background: var(--lightBLUE);
    width: 50px;
    height: 100px;
    border-top-left-radius: 0;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    transform: rotate(30deg) scale(0.9);
    opacity: 0;
    animation: animation-C2 3s forwards;
    position: relative;
}