.timer {
    background-image: linear-gradient(90deg, #2c6d1b, #53fc1903);
    border: 1px solid #34861d;
    border-radius: 8px;
    max-width: 780px;
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
    padding: 24px 32px;
    position: relative;
  }
  
  .margin-bottom-12 {
    margin-bottom: 12px;
  }
  
  .timer_heading {
    color: #53fc19;
    margin-top: .5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 110%;
    text-align: center;
  }
  
  .timer_subheading {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    color: #fff;
    justify-content: center;
    margin-top: -10px;
    font-size: 0.875rem;
    display: flex;
  }
  
  .timer_divider {
    background-color: #aaa;
    opacity: 0.5;
    border-radius: 999px;
    max-width: 400px;
    height: 2px;
    margin: 20px auto;
  }
  
  .timer-countdown {
    justify-content: space-around;
    display: flex;
  }
  
  .timer-countdown_unit {
    flex-flow: column;
    align-items: center;
    display: flex;
  }
  
  .timer-countdown_value {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 100%;
  }
  
  .timer-countdown_label {
    color: #fff;
    margin-top: 4px;
    font-size: 1rem;
  }
  
  .timer-bar {
    background-color: #0f0b16;
    border-radius: 8px;
    width: 100%;
    height: 8px;
    margin-bottom: 20px;
    overflow: hidden;
  }
  
  .timer-bar_fill {
    background-color: #53fc19;
    border-radius: 8px;
    width: 100%;
    height: 100%;
  }
  
  
  .timer_icon-wrapper {
    position: absolute;
    top: 8px;
    left: 8px;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
  }
  
  .timer_icon-animation {
	border: 2px solid #fff;
	width: 8px;
	height: 8px;
	position:relative;
	border-radius: 50%;
	display: flex;
	align-items: center;
	align-content: center;
	justify-content: center;
	}

  .timer_icon_circle {
	width: 4px;
	height: 4px;
	background: #55F91D;
	border-radius: 50%;
	position: absolute;
	z-index: 999;
    animation: onlineAnim2 1.5s infinite ease-in-out;
}
  
  .timer_icon_circle-animation {
    content: "";
    position: absolute;
    z-index: 1;
    width: 12px;
    height: 12px;
    background: #ffffff70;
    border-radius: 50%;
    display: block;
    animation: onlineAnim 1.5s infinite ease-in-out;
}

@keyframes onlineAnim {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

@keyframes onlineAnim2 {
    0% {
        opacity: 0.2;
    }
    100% {
        opacity: 1;
    }
}