.featured-event {
  background-color: #f0f0f0;
}

label, li, input, body {
  font-family: "Raleway", Arial, "Helvetica Neue", Helvetica, sans-serif;

}

.top-buttons {
  background-color: #4c5758;
  color: #ffffff;
  border-color: #4c5758;
  /* font-family: 'Lato', Arial, 'Helvetica Neue', Helvetica, sans-serif; */
  font-family: "Raleway", Arial, "Helvetica Neue", Helvetica, sans-serif;
  width: 100%;
}

@media (max-width: 767px) {
  .filter-button,
  .print-button {
    margin-top: 10px;
  }
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.calendar-day {
  max-width: 31%;
  min-width: 29%;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #f6f6f6;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: minmax(96px, 96px) 1fr;
  align-items: stretch;
  margin-bottom: 40px;
  display: flex;
}

.calendar-day-date-container {
  color: #000;
  text-align: center;
  padding: 20px 24px 16px;
  /* font-family: 'Lato'; */
  font-family: "Raleway", Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.calendar-card-date {
  text-align: center;
  font-size: 40px;
  line-height: 36px;
  margin-left: -15px;
  /* font-family: 'Lato'; */
}

.calendar-card-date.month {
  text-transform: uppercase;
  font-size: 22px;
  line-height: 38px;
  /* font-family: 'Lato'; */
}

.calendar-day-contents {
  background-color: #f6f6f6;
  flex: 1;
  align-self: stretch;
  padding: 20px 24px 16px 0;
  border-color: #4c5758;
  /* font-family: 'Lato'; */
  font-family: "Raleway", Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.card {
  border: none;
  border-radius: 0;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.card-body {
  padding: 20px;
}

.card-title {
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 18px;
}

.calendar-item-title {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 5px;
}

.calendar-item-details {
  font-size: 14px;
  color: #777;
}

/* Include other CSS rules here */
.w-dyn-empty {
  background-color: #ddd;
  padding: 10px;
}

.w-dyn-hide,
.w-dyn-bind-empty,
.w-condition-invisible {
  display: none !important;
}

.wf-layout-layout {
  display: grid;
}

.w-pagination-wrapper {
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.w-pagination-previous {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-previous-icon {
  margin-right: 4px;
}

.dropdown {
  display: flex;
  justify-content: flex-end;
}

.dropdown ul li{
  cursor: pointer;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}