

.cntdwn {
  color: #333;
  margin: 0 auto;
  padding: 2px 4px;
  top: 50px;
  left: 17px;
  border-radius: 6px;
  text-align: center;
  position: absolute;
  background: #E6E7E8;
  background: #112F59;
  background: linear-gradient(
    to bottom,
    rgba(51, 149, 255, .5) 0%,     /* transparent */
    rgba(17, 47, 89, .75) 20%,  /* 50% transparent red */
    rgba(17, 47, 89, 1) 50%,    /* solid red */
    rgba(51, 149, 255, 1) 80%,  /* 50% transparent red */
    rgba(51, 149, 255, 1) 100%    /* transparent */
  );
  box-shadow: 0px 0px 13px 1px rgba(249,240,240,0.75) inset;
-webkit-box-shadow: 0px 0px 13px 1px rgba(249,240,240,0.75) inset;
-moz-box-shadow: 0px 0px 13px 1px rgba(255,255,255,0.75) inset;
}

.cntdwn h1 {
  font-weight: normal;
  letter-spacing: .125rem;
  text-transform: uppercase;
}

.cntdwn li {
  color: #ECF1F4;
  text-shadow: 0px 0px 5px rgba(0,0,0,1);
  min-width: 34px;
  display: inline-block;
  font-size: 0.45em;
  border-radius: 5px;
  list-style-type: none;
  padding:  0.3em 0.2em;
  text-transform: uppercase;
  background: rgba(51, 149, 255, 0.25);
  box-shadow: 0px 0px 13px 1px rgba(249,240,240,0.75) inset;
-webkit-box-shadow: 0px 0px 13px 1px rgba(249,240,240,0.75) inset;
-moz-box-shadow: 0px 0px 13px 1px rgba(249,240,240,0.75) inset;

}

.cntdwn li.line {
  position: relative;
}

.cntdwn li.line::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -3px;               /* stick to the right side */
  width: 1px;             /* 1px border */
  background: linear-gradient(
    to bottom,
    rgba(255, 0, 0, 0) 0%,     /* transparent */
    rgba(255, 0, 0, 0.5) 20%,  /* 50% transparent red */
    rgba(255, 0, 0, 1) 50%,    /* solid red */
    rgba(255, 0, 0, 0.5) 80%,  /* 50% transparent red */
    rgba(255, 0, 0, 0) 100%    /* transparent */
  );
}
.cntdwn li span {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  display: block;
  color: #ffffff;
  font-size: 1rem;
  line-height: 0.8rem;
}


@media screen and (min-width: 600px) {
  .cntdwn {
  top: 65px;
}

.cntdwn li {
min-width: 54px;
  font-size: 0.65em;


}


.cntdwn li span {
  font-size: 1.6rem;
  line-height: 1.4rem;
}

}


