:root {
  --c-fg: #fff;
  --c-gradient-top: #68e0cf;
  --c-gradient-bottom: #209cff;
  --c-cursor: rgba(255,80,0,1);
  --c-stripe-light: rgba(255,255,255, .2);
  --c-stripe-dark: rgba(255,255,255, .1);
}

.weather {
  width: 300px;
  margin: 2rem 2rem 4rem;
  display: flex;
  justify-content: center;
  padding: 0;
}

.weather .column {
  text-align: center;
  padding: 0;
}

.weather #w_temp {
  font-size: 4.2rem;
  padding: 0;
}


.calendarView {
  margin: 0 2rem;
  position: relative;
  bottom: 0;
  display: flex;
  height: 75vh;
  min-height: 600px;
  justify-content: space-evenly;
  background-image: linear-gradient(0deg, var(--c-stripe-light) 25%, var(--c-stripe-dark) 25%, var(--c-stripe-dark) 50%, var(--c-stripe-light) 50%, var(--c-stripe-light) 75%, var(--c-stripe-dark) 75%, var(--c-stripe-dark) 100%);
  background-size: 16.6666% 16.6666%;
}

.hours {
  position: relative;
}

.hours div {
  position: absolute;
  padding-right: .6em;
  font-size: .8rem;
  transform: translate(-100%, -50%);
}

.calendar {
  position: relative;
  width: 100%;
  height: 100%;
}

.calendar:nth-child(2n+1) {
  background-color: rgba(0,0,0,.05);
}

.calendar h2 {
  margin: 0;
  padding: 0;
  position: absolute;
  left: 2rem;
  transform: translate(0, -100%);
  font-size: 1.4rem;
}

.event {
  position: absolute;
  left: 0;
  width: 100%;
  border: 1px solid rgba(0,0,0,.1);
  border-width: 0 1px 1px 0;
  background: var(--c-gradient-bottom) no-repeat;
  background-image: linear-gradient(to top, var(--c-gradient-bottom) 0%, var(--c-gradient-top) 100%);
  background-blend-mode: lighten;
  font-size: .6rem;
  box-sizing: border-box;
  padding: .2rem .4rem;
  color: rgba(0,0,0,.7);
  border-radius: .2rem;
  overflow: hidden;
}

.event .organizer {
  float: right;
}

.cursor {
  position: absolute;
  width: 100%;
  height: 0;
  border: 1px solid var(--c-cursor);
  border-width: 1px 0;
}

.cursor:before,
.cursor:after {
  content: " ";
  position: absolute;
  width: .6em;
  height: .6em;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--c-cursor);
}

.cursor:after {
  right: 0;
  transform: translate(50%, -50%);
}
