:root {
  --bg: #7d7d7d;
  --light-blue: #68b2d5;
  --dark-blue: #052950;
  --white: #ffffff;
  --divider: rgba(255, 255, 255, 0.35);
  --text-shadow: rgba(0, 0, 0, 0.08);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  /* min-height: 100vh; */
  /* display: grid; */
  place-items: center;
  font-family: "Montserrat", sans-serif;
  font-size: 100%;
  background: none;
}
.countdown-wrap {
  width: 70%;
  margin-top: 0.75rem;
}
.countdown {
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 54px;
}
.countdown-label {
  display: flex;
  align-items: stretch;
  width: 100%;
  margin-top: 0.2rem;
}
.segment {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--white);
  background: var(--light-blue);
  margin-right: 2px;
  overflow: hidden;
  box-sizing: border-box;
  align-items: center; 
  justify-content: center;
  justify-items: center;
}
.nobg {
  background: none!important;
}
.segment.days {
  width: 34%;
  border-top-left-radius: 999px;
  border-bottom-left-radius: 999px;
}
.segment.hours {
  width: 16%;
}
.segment.minutes {
  width: 16%;
}
.segment.label-right {
  width: 34%;
  background: var(--dark-blue);
  justify-content: center;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  text-align: center;
  margin: 0 auto;
  margin-right: 2px;
}
.number {
  font-size: clamp(0.6rem, 11vw - 0.2rem, 2rem);
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 1px var(--text-shadow);
  font-family: "Dutch801 Rm BT", serif;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aligned {
	padding-left: 0.7rem;
}
.segment.days .number {
  font-size: clamp(1rem, 14vw - 0.2rem, 2.4rem);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.unit {
  font-size: 0.55rem;
  font-size: clamp(0.2rem, 3vw - 0.2rem, 0.55rem);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}
.right-text {
  font-size: clamp(0.45rem, 5vw - 0.2rem, 1.05rem);
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--white);
  white-space: nowrap;
}