.develux-timer-countdown-wrapper {
    box-sizing: border-box;
  .develux-timer-countdown-timer-title{

  }
  /* counter */
  .develux-timer-counter {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    position: relative;
  }

  .develux-timer-counter-item {
    position: relative;
  }

  .develux-timer-counter-title {
    text-align: center;
  }

  .develux-timer-countnum {
    position: relative;
    perspective: 500px;
  }

  .develux-timer-countnum-top, .develux-timer-countnum-bottom, .develux-timer-countnum-backtop, .develux-timer-countnum-backbottom {
    position: absolute;
    width: 100%;
    left: 0;
    line-height: inherit;
    height: 50%;
    display: flex;
    justify-content: center;
    overflow: hidden;
  }

  .develux-timer-countnum-top, .develux-timer-countnum-backtop {
    background: inherit;
    border-radius: inherit;
    top: 0;
  }

  .develux-timer-countnum.animate .develux-timer-countnum-top {
    animation: develux-flip 250ms linear 0ms forwards;
    box-shadow: 0 -1px 1px rgba(0, 0, 0, 0.3);
    transform-origin: bottom;
    transform: rotateX(0deg);
  }

  .develux-timer-countnum-bottom, .develux-timer-countnum-backbottom {
    align-items: flex-end;
    background: inherit;
    border-radius: inherit;
    bottom: 0;
  }

  .develux-timer-countnum.animate .develux-timer-countnum-backbottom {
    animation: develux-flip2 250ms linear 250ms forwards;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
    transform-origin: top;
    transform: rotateX(90deg);
    z-index: 10;
  }

  .develux-timer-countnum-line {
    background: inherit;
    height: 1px;
    width: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 50;
  }

  div[data-animation="0"] {
    .develux-timer-countnum-line {
      height: 0;
    }
  }
  .develux-timer-dislocation {
    width: 100%;
  }
}
@keyframes develux-flip {
  100% {
    transform: rotateX(-90deg);
  }
}
@keyframes develux-flip2 {
  100% {
    transform: rotateX(0deg);
  }
}
/* -------------------------------------------------------------------------------------------------------------------- */
.wc-block-product{
  position:relative;
}