

.t1_thermometer-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 40px;
  justify-content: center;
}

/* Left Label */
.t1_label {
  font-size: 20px;
  text-align: right;
}

/* Thermometer */
.t1_thermometer {
  position: relative;
  width: 80px;
  height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Tube */
.t1_tube {
  position: relative;
  width: 40px;
  height: 400px;
  border: 6px solid black;
  border-radius: 30px;
  background: white;
  overflow: hidden;
}

/* Red Fill */
.t1_fill {
  position: absolute;
  bottom: 0;
  width: 100%;
  /* background: red; */
  border-radius: 20px 20px 0 0;
}

/* Bulb */
.t1_bulb {
  width: 90px;
  height: 90px;
  border: 6px solid black;
  border-radius: 50%;
  background: white;
  position: relative;
  top: -20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.t1_bulb-fill {
  width: 60px;
  height: 60px;
  /* background: red; */
  border-radius: 50%;
}


/* Scale */
.t1_scale {
  height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-weight: bold;
  font-size: 22px;
}
.t1_label_mobile{
  display: none;
}

.t1_label_total{
  font-size: 20px;
  text-align: center;
}

/* @media (max-width: 768px) {
  .t1_label{
      display: none;
      text-align: center;
  }
  .t1_label_mobile{
      display: block;
  }
} */



.t2_campaign-card {
  /* max-width: 600px; */
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.t2_progress-bar {
  width: 100%;
  height: 25px;
  background: #eee;
  border-radius: 50px;
  overflow: hidden;
  margin: 20px 0;
}

.t2_progress-fill {
  height: 100%;
  width: 0;
  /* background: linear-gradient(90deg, #28a745, #5cd65c); */
  border-radius: 50px;
  transition: width 1s ease-in-out;
}

.t2_campaign-stats {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}
.t2_campaign-title {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}
.t2_campaign-button {
  text-align: center;
  margin-top: 20px;
}
.t2_campaign-button-btn {
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  border: none;
}