body {
  margin: 0;
  padding: 0;
}

.hpto-calendar-wrapper {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 12px;
  display: grid;
  grid-template-columns: 1fr 7fr;
  flex-wrap: nowrap;
}
.hpto-calendar-wrapper, .hpto-calendar-wrapper * {
  box-sizing: border-box;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
.hpto-calendar-wrapper ul {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0;
  margin: 0;
}
.hpto-calendar-wrapper ul li {
  margin: 0;
  padding: 0;
}
.hpto-calendar-wrapper svg.icon {
  height: 1em;
  width: auto;
  display: inline-block;
}
.hpto-calendar-wrapper svg.icon path {
  fill: currentColor;
}
.hpto-calendar-wrapper svg.icon.spin {
  animation: icon-spin 1s infinite linear;
}
@keyframes icon-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.hpto-calendar-wrapper .market-select-wrapper {
  background-color: #eee;
}
.hpto-calendar-wrapper .market-select-wrapper .market-select-content {
  padding: 10px;
  overflow-y: auto;
  height: 100vh;
}
.hpto-calendar-wrapper .market-select-wrapper .market-list-filter ul {
  flex-direction: column;
  align-items: flex-start;
}
.hpto-calendar-wrapper .market-select-wrapper .market-list-filter ul li {
  display: flex;
  align-items: center;
  margin: 5px 0;
}
.hpto-calendar-wrapper .market-select-wrapper .market-list-filter ul li label {
  flex-grow: 1;
  display: block;
  margin-left: 5px;
}
.hpto-calendar-wrapper .market-select-wrapper .market-list-filter ul li label .market {
  display: block;
  font-weight: bold;
  font-size: 14px;
}
.hpto-calendar-wrapper .market-select-wrapper .market-list-filter ul li label .stations {
  display: block;
  font-size: 10px;
}
.hpto-calendar-wrapper .calendar-view .calendar-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}
.hpto-calendar-wrapper .calendar-view .calendar-navigation .current-month {
  background-color: #eee;
  padding: 5px;
  margin: 0 15px;
  border-radius: 5px;
}
.hpto-calendar-wrapper .calendar-view .calendar-navigation .current-month select {
  display: inline-block;
  border: none;
  font-size: 22px;
  text-align: center;
  font-weight: bold;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-color: #eee;
}
.hpto-calendar-wrapper .calendar-view .calendar-navigation .nav {
  cursor: pointer;
  font-size: 26px;
}
.hpto-calendar-wrapper .calendar-view .calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: 30px;
  grid-auto-rows: auto;
  position: relative;
}
.hpto-calendar-wrapper .calendar-view .calendar-grid .calendar-loading-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
}
.hpto-calendar-wrapper .calendar-view .calendar-grid .dow {
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}
.hpto-calendar-wrapper .calendar-view .calendar-grid .day {
  border: 1px solid #aaa;
  padding: 5px 10px;
  min-height: 14vh;
}
.hpto-calendar-wrapper .calendar-view .calendar-grid .day .date {
  text-align: right;
  font-size: 16px;
  margin-bottom: 10px;
}
.hpto-calendar-wrapper .calendar-view .calendar-grid .day .entries .entry {
  border: 1px solid #000;
  border-radius: 5px;
  padding: 3px;
  margin-bottom: 5px;
}
.hpto-calendar-wrapper .calendar-view .calendar-grid .day .entries .entry .tag {
  background-color: #000;
  color: #fff;
  border-radius: 5px;
  padding: 5px;
  margin: 1px;
  display: inline-block;
  font-size: 8px;
  font-weight: bold;
}
.hpto-calendar-wrapper .calendar-view .calendar-grid .day .entries .entry .header-tags {
  display: flex;
  justify-content: space-between;
}
.hpto-calendar-wrapper .calendar-view .calendar-grid .day .entries .entry .header-tags .market-tags {
  flex-grow: 1;
}
.hpto-calendar-wrapper .calendar-view .calendar-grid .day .entries .entry .header-tags .type-status-tags ul {
  justify-content: flex-end;
}
.hpto-calendar-wrapper .calendar-view .calendar-grid .day .entries .entry .name {
  text-align: center;
  padding: 10px 0;
}
.hpto-calendar-wrapper .calendar-view .calendar-grid .day .entries .entry .meta {
  text-align: center;
  font-size: 10px;
}
.hpto-calendar-wrapper .calendar-view .calendar-grid .day .entries .entry .entry-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
