/* Styles for thermometer/leaderboards */
.loading {
  display: none;
}
.tr-thermometer {
  margin: 1rem 0;
  padding: 2rem;
  /* border: 1px solid #ddd; */
  border-radius: 8px;
  background: #f9f9f9;
  text-align: center;  
}

.tr-thermometer .tr-bar {
  position: relative;
  height: 40px;
  background: #eee;
  border-radius: 25px;
  margin: 20px 0;
  /* overflow: hidden; */
}
.tr-thermometer .fill-wrap {
  position: relative;
  height: 100%;
  border-radius: 25px;
  overflow: hidden;
}

.tr-thermometer .tr-fill {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  /* background: linear-gradient(90deg, #000, #4dc); */
  background-color: #000;
  transition: width 4s cubic-bezier(.25,1.02,.71,.99);  
  
}

.tr-icon {
  border-radius: 50%;
  box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.3);
  position: absolute;
  top: 50%;
  transform: translate(-25%, -50%);  
  height: 60px;
  width: 60px;
  transition: left 4s cubic-bezier(.25,1.02,.71,.99), transform 300ms ease;
}

.loading-message {
  font-size: 24px;
}
.therm-stats {
  font-size: 32px;
}

.percentage {
  /* display: block; */
}

.event-date-container {
  margin-bottom: 2rem;
}
.tr-event-date {
  font-size: 32px;
}
.tr-event-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 1rem 0 2rem;
}
