.clocko li {
        width: 15%;  
        display: -moz-inline-stack;
        display: inline-block;
        vertical-align: top; 
        margin: 4px;
        zoom: 1;
        *display: inline;
        _height: 250px;
        padding-bottom:20px;
    text-align: center;
    }
 @media only screen and (max-width: 767px) {
  .clocko li {
        width: 30%;  
        display: -moz-inline-stack;
        display: inline-block;
        vertical-align: top; 
        margin: 5px;
        zoom: 1;
        *display: inline;
        _height: 250px;
        padding-bottom:20px;
    text-align: center;
    }
  
}
 @media only screen and (max-width: 389px) {
  .clocko li {
        width: 40%;  
        display: -moz-inline-stack;
        display: inline-block;
        vertical-align: top; 
        margin: 5px;
        zoom: 1;
        *display: inline;
        _height: 250px;
        padding-bottom:20px;
    text-align: center;
   }}
clock {
    border: solid 2px currentColor;
    border-radius: 50%;
    box-shadow: 0 0 5px rgb(255 255 255);
    color: #ffffff;
    display: inline-block;
    height: 100px;
    position: relative;
    width: 100px;
    background: rgb(0 0 0 / 5%);
    backdrop-filter: blur(10px);
  
}

.hand {
  border: 1px solid currentColor;
  height: 40px;
  left: 50%;
  margin-top: -40px;
  position: absolute;
  top: 50%;
  transform-origin: 50% 100%;
  width: 0;
  /* box-shadow: 0 0 3px rgba(0,0,0,0.4); */
}

.hour {
  height: 28px;
  margin-top: -28px;
  border-color: #red;
  
}

clock:after {
  content: '';
  display: block;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background: #828383;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.second {
  border-width: 1px;
  border-color: #green;
}

.label {
  font-size: 11px;
  font-family: sans-serif;
  position: absolute;
  display: block;
  padding-top: 110px; 
}

.label > span {
  color: white;
  font-weight: bold;