body{
  background-color: #272D35;
  font-family: 'Nunito', sans-serif;
  color: white;
}

h2.title{
  width: 100%;
  margin-top: 128px;
  text-align: center;
}

p.login{
  width: calc(100% - 48px);
  margin-left: 24px;
  box-sizing: border-box;
  background-color: #FC4C02;
  border-radius: 4px;
  height: 44px;
  vertical-align: middle;
  text-align: center;
}

p.login a{
  color: white;
  text-decoration: none;
  line-height: 44px;
}


.graphContainer{
  position: relative;
}

.graph {
  margin-left: 8px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(100, 1fr);
  grid-column-gap: 16px;
  height: 200px;
  width: calc(100% - 16px);
  box-sizing: border-box;
  padding-bottom: 24px;
}

#Goals{
  position: relative;
  float: left;
}

#Goals .bar{
  background-color: rgba(0,0,0,0.25);
  /* border: 2px solid rgba(255,255,255,0.3); */
  box-shadow: 0 0 0pt 3pt rgba(0,0,0,0.25);
  border-radius: 16px;
}

#Progress .bar{
  /* background-color: blue; */
  opacity: 0.7;
  border-radius: 12px;
}

#Progress{
  position: absolute;
  pointer-events: none;
}

.bar{
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(100, 1fr);
  grid-row-start: 1;
  grid-row-end: 101;
}

.underacheived{
  background-color: rgba(20,150,234,1);
  /* background: linear-gradient(0deg, rgba(170,71,150,1) 0%, rgba(236,98,66,1) 100%); */
}

.overacheived{
  background-color: rgba(20,234,110,1);
  /* background: linear-gradient(0deg, rgba(3,94,119,1) 0%, rgba(0,212,129,1) 100%); */
}

.totalProgressContainer{
  margin-top: env(safe-area-inset-top);
  height: 40vh;
  position: relative;
  text-align: center;
}

.totalProgressContainer.hidden{
  display: none;
}

.totalProgressContainer p{
  font-family: 'Nunito';
  font-weight: bold;
  font-size: 36px;
  position: absolute;
  width: 100%;
  color: white;
  text-align: center;
}

.totalProgressContainer .unit{
  top: 120px;
  font-size: 24px;
  opacity: 0.5;
  padding-left: 4px;
}

#progressIndicator{
  top: 0px;
  padding: 36px;
  box-sizing: border-box;
  height: 100%;
  width: 100%;
}

#dateIndicator{
  transform-origin: center;
}

/* #dateIndicator{
  position: relative;
  top: 0px;
  height: 100%;
  margin-top: calc(-100% + 36px);
  width: 16px;
  background-color: aqua;
  display: inline-block;
  transform: rotate(45deg);
}

#dateIndicator:after{
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: red;
} */

.ProgressIndicatorGraph{
  stroke-dasharray: 276;
  stroke-dashoffset: 0;
}

table.ridesList{
  color: white;
  width: 100%;
}

table.ridesList .average{
  width: 40px;
}

table.ridesList .unit{
  opacity: 0.5;
  padding-left: 2px;
  font-size: 12px;
}

tr.spacer{
  height: 20px;
  width: 100%;
  border-bottom: 4px solid red;
}

.monthDetails.hidden{
  display: none;
}

.monthDetails{
  padding: 4px;
}

.monthDetails .valueGroup{
  width: 33%;
  display: inline-block;
  float: left;
  color: white;
}

.monthDetails .valueGroup .title{
  margin: 0;
  opacity: 0.5;
}

.monthDetails .valueGroup .value{
  margin: 0 0 24 0;
}

.monthDetails .valueGroup .number{
  font-size: 24px
}

.monthDetails .valueGroup .unit{
  font-size: 16px;
  padding-left: 4px;
  opacity: 0.5;
}

.diverContainer{
  width: calc(100vw - 24px);
  overflow: hidden;
  position: relative;
  height: 20px;
}

.divider img{
  position: absolute;
}
