@keyframes glowing-box-cibonfire {
    0% {
        background-position: 0 0;
    }
    50% {
        background-position: 400% 0;
    }
    100% {
        background-position: 0 0;
    }
}

.glow-box-body-top-right {
    border: none;
    outline: none;
    cursor: pointer;
    position: relative;
    z-index: 0;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    padding: 0px;
}

.glow-box-body-top-right:before {
    content: "";
    background: linear-gradient( 45deg, #72e848, #3d951d, #000, #111411, #000, #08ff00, #000, #39b616, #68ff00 );
    position: absolute;
    background-size: 400%;
    z-index: -1;
    filter: blur(1px);
    -webkit-filter: blur(5px);
    width: calc(100% );
    height: calc(100%);
    animation: glowing-box-cibonfire 40s linear infinite;
    transition: opacity 0.3s ease-in-out;
    border-top-right-radius: 20% 50px;
}


.glow-box-body-top-left {
    border: none;
    outline: none;
    cursor: pointer;
    position: relative;
    z-index: 0;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    padding: 0px;
}

.glow-box-body-top-left:before {
    content: "";
    background: linear-gradient( 45deg, #72e848, #3d951d, #000, #111411, #000, #08ff00, #000, #39b616, #68ff00 );
    position: absolute;
    background-size: 400%;
    z-index: -1;
    filter: blur(1px);
    -webkit-filter: blur(5px);
    width: calc(100%);
    height: calc(100%);
    animation: glowing-box-cibonfire 40s linear infinite;
    transition: opacity 0.3s ease-in-out;
    border-top-left-radius: 20% 50px;
    left: 6px;
}