.modal-header, h4, .close {
  background-color: #5cb85c;
  color:white;
  font-size: 30px;
}

.modal-footer {
  background-color: #e9e9e9;
}

#eventModal .highlightInvalid {
  box-shadow: 0 0 5px 1px red;
}

.wizard-modal p {
  margin: 0 0 10px;
  padding: 0;
}

.wizard-modal .chzn-container .chzn-results {
  max-height: 150px;
}

#eventDateList > div > hr {
  margin-top : 3px;
  margin-bottom : 3px;
  border: 1px solid lightgray;
}

#hallItemList input {
  width: 5em;
}

.text-color, .card-header {
  color: #31708f;
}

#eventContent .toggle-active {
    border-bottom: 1px solid #5cb9cc;
}

.hidden {
    display: none;
}

.loader {
    z-index: 999;
    width: 2em;
    height: 2em;
    border: 5px solid #f3f3f3;
    border-radius: 50%;
    border-top: 5px solid #3498db;
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.eventTypeIndicator {
    position: absolute;
    right: 10%;
    font-size: 5em;
    color: #d2e1ec;
    height: 1em;
    top: -0.1em;
}

.datepicker {
    width: 40%;
}

.fa-exclamation-triangle {
    color: red;
}

#messageBox {
    z-index: 2000;
}

/* Progress display */
.progressDisplay {
  text-align: center;
}
.progressDisplay .circle,
.progressDisplay .bar {
  display: inline-block;
  background: #fff;
  width: 40px; height: 40px;
  border-radius: 40px;
  border: 1px solid #d5d5da;
  box-sizing: border-box;
}
.progressDisplay .bar {
  position: relative;
  width: 80px;
  height: 6px;
  top: -33px;
  /*
  margin-left: -5px;
  margin-right: -5px;
  */
  border-left: none;
  border-right: none;
  border-radius: 0;
}
.progressDisplay .circle .label {
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 32px;
  margin-top: 3px;
  color: #b5b5ba;
  font-size: 17px;
}
.progressDisplay .circle .title {
  color: #b5b5ba;
  font-size: 13px;
  line-height: 30px;
  margin-left: -5px;
  word-wrap: normal;
}

/* Done / Active */
.progressDisplay .bar.done,
.progressDisplay .circle.done {
  background: #cdc;
  box-sizing: border-box;
}
.progressDisplay .bar.active {
  background: linear-gradient(to right, #ccc 40%, #FFF 60%);
}
.progressDisplay .circle.done .label {
  color: #FFF;
  background: #8bc435;
  box-shadow: inset 0 0 2px rgba(0,0,0,.2);
}
.progressDisplay .circle.done .title {
  color: #444;
}
.progressDisplay .circle.active .label {
  color: #FFF;
  background: #0c95be;
  box-shadow: inset 0 0 2px rgba(0,0,0,.2);
}
.progressDisplay .circle.active .title {
  color: #0c95be;
}
/* Progress display end */
