.handle-preloader{
	background-color:#e12029 !important;
}
.handle-preloader {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -ms-flexbox;
  height: 100%;
  justify-content: center;
  -webkit-justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
}
.preloader-close{
  position: fixed;
  z-index: 99999999;
  font-size: 18px;
  background: #fff;
  width: 30px;
  height: 30px;
  line-height: 26px;
  text-align: center;
  cursor: pointer;
  right: 15px;
  top: 18px;
  border-radius: 0%;
}

.preloader-close{
  position: fixed;
  z-index: 99999999;
  font-size: 18px;
  background: #fff;
  width: 30px;
  height: 30px;
  line-height: 26px;
  text-align: center;
  cursor: pointer;
  right: 15px;
  top: 15px;
  border-radius: 0%;
}

#preloader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #e12029 !important;
    z-index: 99;
}

.block-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 6px;
}

.block {
    width: 70px;
    height: 90px;
    background-color: #fff; /* Original color for the blocks */
}

.block:first-child {
    animation: blockAnimation 2s infinite; /* Make the animation slightly faster (e.g., 2s) */
}



@keyframes blockAnimation {
    0%, 100% {
        background-color: #ddd; /* Gray color for the first block at the start and end */
    }
    50% {
        background-color: #e12029; /* Red color for the first block in the middle */
    }
}