.clock-wrapper {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
  padding: 0 10px;
  transform: translateX(0);
  transition: transform 0.4s linear;
}

.clock {
  display: flex;
  padding: 0 15px;
  background: #faf9fa;
  color: #636161;
  border-radius: 3px;
  margin-right: 24px;
}

.clock span:not(:last-child) {
  display: block;
  margin-right: 5px;
}

.clock span {
  white-space: nowrap;
}

.clock-animation {
  transform: translateX(0);
  transition: transform 0.4s linear;
}


