.cpctmrKakhi {
    color:  #7d6608;
    font-weight: bolder;
}
  .cpctmr-mypanel {
    width: 300px;
  }
  
  .cpctcmrButton-01 {
  color: white;
  background-color: green;
  /*margin: 10px;*/
  width: 250px;
  display: inline-block;
}
.cpctcmrButton-02 {
  color: white;
  background-color: #d1dbf1;
  /*margin: 10px;*/
  width: 125px;
  display: inline-block;
}

@keyframes move_wave {
  0% {transform: translateX(0) translateZ(0) scaleY(1)}
  50% {transform: translateX(-25%) translateZ(0) scaleY(0.55)}
  100% {transform: translateX(-50%) translateZ(0) scaleY(1)}
}
.demo-waveWrapper {
  overflow: hidden;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
}
.demo-waveWrapperInner {
  position: absolute;
  width: 100%;
  overflow: hidden;
  height: 100%;
  bottom: -1px;
  background-image: linear-gradient(to top, var(--oj-core-info-1) 20%, var(--oj-core-neutral-1) 80%);
}
.demo-bgTop {
  z-index: 15;
  opacity: 0.5;
}
.demo-bgMiddle {
  z-index: 10;
  opacity: 0.75;
}
.demo-bgBottom {
  z-index: 5;
}
.demo-wave {
  position: absolute;
  left: 0;
  width: 200%;
  height: 100%;
  background-repeat: repeat no-repeat;
  background-position: 0 bottom;
  transform-origin: center bottom;
}
.demo-waveTop {
  background-size: 50% 100px;
  background-image: url('images/homegallery/wave-top.png');
}
.demo-waveAnimation .demo-waveTop {
  animation: move-wave 3s;
  animation-delay: 1s;
}
.demo-waveMiddle {
  background-size: 50% 120px;
  background-image: url('images/homegallery/wave-mid.png');
}
.demo-waveAnimation .demo-waveMiddle {
  animation: move_wave 10s linear infinite;
}
.demo-waveBottom {
  background-size: 50% 100px;
  background-image: url('images/homegallery/wave-bot.png')
}
.demo-waveAnimation .demo-waveBottom {
  animation: move_wave 15s linear infinite;
}

.demoContainer {
  position:relative;
  height:340px;
  border:1px solid;
}

/* Slide css */
@keyframes Gradient {
  0% {background-position: 0% 50%}
  50% {background-position: 100% 50%}
  100% {background-position: 0% 50%}
}
#animationCpctmrSlider {
  width: 100wh;
  height: 400px;
  /* background: linear-gradient(-45deg, var(--oj-core-warning-1), var(--oj-core-danger-1), var(--oj-core-info-1), var(--oj-core-success-1));  */
  background-image: url('images/homegallery/slide1.png'); 
  background-size: 100% 100%;
  animation: Gradient 3s ease-in-out;

  background-image: url('images/homegallery/slide2.png');
  background-size: 100% 100%;
  animation: Gradient 3s ease infinite;
/*
  background-image: url('images/homegallery/slide3.png');
  background-size: 100% 100%;
  animation: Gradient 15s ease infinite;

  background-image: url('images/homegallery/slide4.png'); 
  background-size: 100% 100%;
  animation: Gradient 15s ease infinite; */

}
.auto-slider{
  position: relative;
  box-sizing: content-box;
  display: inline-block;
  padding: 10px 10px 20px;
  background: #fff;
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);

}


@keyframes sliding{
          0%{left: 0%; }
          20%{left: -100%;}
          40%{left: -200%;}
          60%{left: -300%;}
          80%{left: -400%;}
          100%{left: 0%;}
      }        
      
@keyframes indicating{
          from{
              left: -100%;
          }
          to{
              left: 0;
          }
}  
      
      
div#sliderCpctmr { overflow: hidden; }
div#sliderCpctmr figure img { width: 20%; float: left; }
div#sliderCpctmr figure { 
position: relative;
width: 500%;
margin: 0;
left: 0;
text-align: left;
font-size: 0;
animation: 25s sliding ease infinite; 
}

/* Slider indicator */
.indicator{
  width: 100%;
  max-width: 1920px;
  height: 6px;
  background: #d4cbb6;
  position: absolute;
  bottom: 0;
  animation: indicating 5s ease infinite; 
}
/* Slider indicator */
/* Blink text */
/* blinkbody {
  margin: 0;
  padding: 0;
}

blinkdiv {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
} */

blinkh2 {
  font-size: 1em;
  font-family: serif;
  color: #010c47;
  text-align: center;
  animation: animate 
      1.5s linear infinite;
}

@keyframes animate {
  0% {
      opacity: 0;
  }

  50% {
      opacity: 0.7;
  }

  100% {
      opacity: 0;
  }
}
/* Blink text */