

.cntdwn {
  color: #333;
  margin: 0 auto;
  padding: 2px 4px;
  bottom: 10px;
  right: 10px;
  border-radius: 6px;
  text-align: center;
  position: absolute;
  background: #B8860B;
  background: linear-gradient(
    to bottom,
    rgba(255, 215, 0, .5) 0%,     /* transparent gold */
    rgba(218, 165, 32, .75) 20%,  /* 75% goldenrod */
    rgba(184, 134, 11, 1) 50%,    /* solid dark goldenrod */
    rgba(218, 165, 32, 1) 80%,    /* goldenrod */
    rgba(255, 215, 0, 1) 100%     /* gold */
  );
  box-shadow: 0px 0px 13px 1px rgba(255,223,0,0.75) inset;
-webkit-box-shadow: 0px 0px 13px 1px rgba(255,223,0,0.75) inset;
-moz-box-shadow: 0px 0px 13px 1px rgba(255,223,0,0.75) inset;
}

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

.cntdwn li {
  color: #3D2800;
  text-shadow: 0px 0px 5px rgba(75,18,1,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(255, 215, 0, 0.25);
  box-shadow: 0px 0px 13px 1px rgba(255,223,0,0.75) inset;
-webkit-box-shadow: 0px 0px 13px 1px rgba(255,223,0,0.75) inset;
-moz-box-shadow: 0px 0px 13px 1px rgba(255,223,0,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, 215, 0, 0) 0%,     /* transparent */
    rgba(255, 215, 0, 0.5) 20%,  /* 50% transparent gold */
    rgba(255, 215, 0, 1) 50%,    /* solid gold */
    rgba(255, 215, 0, 0.5) 80%,  /* 50% transparent gold */
    rgba(255, 215, 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: 380px) {


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


}


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

}


