#wrapper {
  margin: 12px auto;
  max-width: 640px;
}
[id^=calendar], [id^=calendar] + h3 {
  width: 400px;
}
[id^=calendar] + h3 {
  text-align: center;
}
.mini-cal {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding-bottom: 1.2em;
  background: #ffffff;
  color: #555;
  box-shadow: 0px 10px 9px rgba(230, 230, 230, 0.48);
  border-radius: 6px;
}
div#monthYear {
  font-size: 24px;
  font-family: 'poppinssemibold';
}
#calTitle {
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
  font-size: 1.12em;
  text-align: center;
  padding: .5em 1em;
  background-color: #f4f4f4;
  border-bottom: 2px solid #2d3941;
  border-radius: 5px 5px 0 0;
}
#calTitle button {
  outline: 0;
  display: block;
  border: .1em solid #ddd;
  border: none;
  padding: 0;
  width: 40px;
  height: 40px;
  line-height: 0;
  border-radius: 50%;
  background-color: transparent;
}
#calTitle button svg {
  width: 30px;
  height: 30px
}
#calTitle button:hover {
  background: rgba(255, 255, 255, .1)
}
#calTbody, #calThead {
  display: flex;
  flex-wrap: wrap;
  padding: .1em
}
#calThead {
  color: #fff;
  margin-top: .4em;
  align-items: center;
  text-align: center;
  font-size: .88em;
  background-color: #e31837;
  margin: .4em .5em;
  border-radius: 3px;
  padding: .3em 0;
}
#calTbody .a-date, #calThead > div {
  box-sizing: border-box;
  flex: 1;
  min-width: calc(100% / 7);
  max-width: calc(100% / 7);
  width: calc(100% / 7);
  text-align: center;
  padding: 0;
  border-radius: 5px;
}
#calThead > div {
  font-size: 1.2em;
  padding: .2em .2em;
  font-family: 'poppinssemibold';
  color: #fff;
}
#calTbody {
  color: #ddd
}
#calTbody .a-date > span {
  display: block;
  font-size: 1em;
  color: #555;
  font-family: 'poppinsmedium';
}
button.a-date.focused span {
  color: #fff !important;
}
#calTbody .a-date {
  cursor: pointer;
  position: relative;
  background-color: transparent;
  color: inherit;
  padding: .9em;
  border: .1em solid transparent;
  outline: 0;
  font-size: .9em;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
}
#calTbody .a-date:hover {
  background-color: #e8e8e8;
}
#calTbody .a-date.blurred {
  opacity: .5;
  pointer-events: none
}
#calTbody .a-date.current {
  outline: 0;
  background-color: #e31837;
}
#calTbody .a-date.focused, #calTbody .a-date:active {
  background: #3f4042
}
#calTbody .a-date.current.event.focused {
  background-color: #e31837;
  color: #000
}
#calTFooter {
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
  font-size: 1.1em;
  padding: 0 1em;
  margin-top: .5em
}
#calTFooter #calLink {
  font-size: .8em;
  display: inline-block;
  padding: .6em .8em;
  flex-shrink: 0;
  text-decoration: none;
  color: #fffc23
}
#calTFooter #calLink:hover {
  background-color: #555
}
#calTFooter #eventTitle {
  margin: 0;
  margin-right: .1em;
  font-weight: 400;
  font-size: .95em;
  white-space: nowrap;
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis
}
button.a-date.current span {
  color: #fff !important;
}