
/* ===================================================================
*
* Virtual Volunteering styles
*
* ================================================================ */

/* ----------------------------------------------------
  Form
------------------------------------------------------- */

/** Style the score field to not look like a field **/

#frm_field_148_container label {
  font-size: 20px;
  font-weight: 700;
}

#frm_field_148_container input {
  border: none;
  padding: 0;
  color: #2B73DE;
  font-size: 20px;
  font-weight: 700;
}

/* ----------------------------------------------------
  Meter
------------------------------------------------------- */

.goal-meter {
  border-radius: 20px;
  background: #EEE;
  background: linear-gradient(180deg,rgba(230, 230, 230, 1) 0%, rgba(240, 240, 240, 1) 100%);
  overflow: hidden;
}

.meter-bar {
  /* Calculate the percentage based on the variables */
  width: calc((var(--value) / var(--goal)) * 100%);
  height: 24px;
  background: #2B73DE;
  background: linear-gradient(0deg,rgba(43, 115, 222, 1) 0%, rgba(130, 180, 255, 1) 100%);
  transition: width 0.5s ease-in-out;
}

.meter-text {
  margin-top: 8px;
  font-size: 1.1rem;
  font-weight: bold;
}

.total-pgm-score-container {
  margin: 30px 0 60px;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 30px;
  border: 1px solid #bbb!important;
  border-radius: 8px;
  box-shadow: 0 10px 15px #eee;
  text-align: center;
}

.total-pgm-score-container .current {
  color: #2B73DE;
}

/* ----------------------------------------------------
  Leaderboard
------------------------------------------------------- */

.volunteer-leaderboard-table {
  width:100%;
  border-collapse: collapse
  ;margin-top: 0;
}

.volunteer-leaderboard-table thead tr {
  background:#f7f7f7;
  text-align:left;
  border-bottom:2px solid #ccc;
}

.volunteer-leaderboard-table tbody tr {
  border-bottom: 1px solid #e0e0e0;
}

.volunteer-leaderboard-table th,
.volunteer-leaderboard-table td {
  padding: 12px;
}

@media ( max-width: 767px ) {
  
  .volunteer-leaderboard-table th,
  .volunteer-leaderboard-table td {
    font-size: .8em;
  }
}