body{
  overflow: hidden; 
}

.GradientMask{ /*using in static style*/
    background: var(--BG_gradient_2);
    background-size: cover; background-position: center; background-repeat: no-repeat;
}

.AnimateBGColor{
    animation-name: CycleColor_BG;
    animation-duration: 50s;
    animation-iteration-count: infinite;
}

#BottomLeftMenu{
  left: 95% !important;
  block-size: 75px;
}
#TimemeterPanel, #TimemeterMenuBtn{
  left: 1% !important;
}

@keyframes CycleColor_BG {
    0%{background: var(--BG_gradient_2), black; background-size: cover; background-position: center; background-repeat: no-repeat;}
    20%{background: var(--BG_gradient_2), rgba(0, 0, 0, 0.35); background-size: cover; background-position: center; background-repeat: no-repeat;}
    35%{background: var(--BG_gradient_2), black; background-size: cover; background-position: center; background-repeat: no-repeat;}
    50%{background: var(--BG_gradient_2), rgb(28, 0, 128); background-size: cover; background-position: center; background-repeat: no-repeat;}
    75%{background: var(--BG_gradient_2), black; background-size: cover; background-position: center; background-repeat: no-repeat;}
    80%{background: var(--BG_gradient_2), rgb(128, 0, 0); background-size: cover; background-position: center; background-repeat: no-repeat;}
    100%{background: var(--BG_gradient_2), black; background-size: cover; background-position: center; background-repeat: no-repeat;}
  }
  
/* @keyframes CycleColor_BG {
    0%{background: var(--BG_gradient_1), white; background-size: cover; background-position: center;}
    12.5%{background: var(--BG_gradient_1), indigo; background-size: cover; background-position: center;}
    25%{background: var(--BG_gradient_1), blue; background-size: cover; background-position: center;}
    37.5%{background: var(--BG_gradient_1), cyan; background-size: cover; background-position: center;}
    50%{background-color: green; background-size: cover; background-position: center;}
    62.5%{background: var(--BG_gradient_1), yellow; background-size: cover; background-position: center;}
    75%{background: var(--BG_gradient_1), orange; background-size: cover; background-position: center;}
    87.5%{background: var(--BG_gradient_1), red; background-size: cover; background-position: center;}
    100%{background: var(--BG_gradient_1), white; background-size: cover; background-position: center;}
  } */