.modal-title small {
  display: block;
  line-height: 1.62;
  font-size: 12px;
}

#event-modal-wrapper {
  display: block;
  transition: all 0.5s;
  opacity: 0;
  pointer-events: none;
}
#event-modal-wrapper .modal-dialog {
  display: none;
}
#event-modal-wrapper.show {
  opacity: 1;
  pointer-events: all;
}
#event-modal-wrapper.show .modal-dialog {
  display: flex;
}

#modalClose {
  position: fixed;
  top: 20px;
  right: 20px;
  color: white;
  cursor: pointer;
}

.color-dot-green {
  height: 25px;
  width: 25px;
  background-color: #145A32;
  border-radius: 50%;
  display: inline-block;
}

.color-dot-light-green {
  height: 25px;
  width: 25px;
  background-color: #ABEBC6;
  border-radius: 50%;
  display: inline-block;
}

.color-dot-yellow {
  height: 25px;
  width: 25px;
  background-color: #F7DC6F;
  border-radius: 50%;
  display: inline-block;
}

.color-dot-red {
  height: 25px;
  width: 25px;
  background-color: #922B21;
  border-radius: 50%;
  display: inline-block;
}

.color-dot-grey {
  height: 25px;
  width: 25px;
  background-color: #E5E7E9;
  border-radius: 50%;
  display: inline-block;
}

.invalid-feedback {
  margin-top: 12px;
  font-size: 14px;
}
