.event-calendar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 250px;
}

.event-calendar-icon {
  display: inline-block;
  width: 1em;
  fill: currentColor;
}

.event-calendar-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 30px;
  background: #c4c4c4;
  padding: 5px 10px;
}

.event-calendar-header__button {
  padding: 7px 13px;
  line-height: 0;
}

.event-calendar-header__month {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.event-calendar-header__month-buttons {
  margin-left: 10px;
  font-size: 20px;
}

.event-calendar-header__year {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.event-calendar-header__year-buttons {
  margin-right: 10px;
  font-size: 20px;
}

.event-calendar-weekdays {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #c4c4c4;
}

.event-calendar__week {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #e5e5e5;
}

.event-calendar__weekday, .event-calendar__day-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  padding-top: 5px;
  padding-bottom: 5px;
}

.event-calendar__day {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.event-calendar__day:hover {
  border-radius: 50%;
  background: #c4c4c4;
}

.event-calendar__day-event {
  position: relative;
}

.event-calendar__day-event:after {
  content: "";
  background-color: #18a0fb;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  right: -3px;
}

.event-calendar__day-event-selected {
  background-color: white;
  border-radius: 50%;
}

.event-calendar__today {
  border-radius: 50%;
  background: #c4c4c4;
}

.event-calendar__weekday {
  font-weight: bold;
}

.event-calendar__weekendday {
  color: red;
}

@media (max-width: 450px) {
  .event-calendar {
    font-size: 14px;
  }
  .event-calendar-header {
    font-size: 26px;
  }
  .event-calendar__day {
    height: 30px;
    width: 30px;
  }
}

@media (max-width: 370px) {
  .event-calendar-header {
    font-size: 22px;
  }
}

@media (max-width: 350px) {
  .event-calendar {
    font-size: 13px;
  }
  .event-calendar-header {
    font-size: 18px;
  }
}
/*# sourceMappingURL=event-calendar.style.css.map */