html {
  scroll-padding-bottom: 120px;
}

body.stream-live {
  padding-bottom: calc(116px + env(safe-area-inset-bottom, 0px));
}

.ckut-thermometer {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: auto;
  width: 100%;
  background: #ffff00;
  color: #000000;
  border-top: 1px solid #000000;
  box-sizing: border-box;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  font-family: Arial, Helvetica, sans-serif;
  pointer-events: auto;
}

.ckut-thermometer__inner {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  padding: 10px 14px 12px;
}

.ckut-thermometer__top {
  margin-bottom: 8px;
}

.ckut-thermometer__title {
  margin: 0;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.ckut-thermometer__labels {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
}

.ckut-thermometer__track {
  position: relative;
  width: 100%;
  height: 12px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #000000;
  box-sizing: border-box;
}

.ckut-thermometer__fill {
  width: 0%;
  height: 100%;
  background: #008d44;
  transition: width 300ms ease;
  will-change: width;
}

.ckut-thermometer__status {
  min-height: 18px;
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ckut-thermometer.is-hidden-status .ckut-thermometer__status {
  display: none;
}

.ckut-thermometer.is-loading .ckut-thermometer__fill {
  transition: none;
}

@media (max-width: 720px) {
  html {
    scroll-padding-bottom: 106px;
  }

  body.stream-live {
    padding-bottom: calc(104px + env(safe-area-inset-bottom, 0px));
  }

  .ckut-thermometer__inner {
    padding: 9px 12px 10px;
  }

  .ckut-thermometer__top {
    margin-bottom: 7px;
  }

  .ckut-thermometer__title {
    font-size: 11px;
  }

  .ckut-thermometer__labels {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .ckut-thermometer__track {
    height: 10px;
  }

  .ckut-thermometer__status {
    font-size: 11px;
    margin-top: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ckut-thermometer__fill {
    transition: none;
  }
}