.fc-header-toolbar {
  flex-wrap: wrap;
}
.ccafc--filter {
  margin-top: 1em;
  width: 100%;
  flex: 0 0 auto;
}
.ccafc--modal-footer {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 0;
  /* background-color: rgba(0,0,0,0); */
  background-color: rgba(0,0,0,.5);
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: 10;
  transition: background-color .2s, opacity .2s;
}
.ccafc--modal-footer.grow {
  height: 100vh;
}
.ccafc--modal-footer.show {
  /* background-color: rgba(0,0,0,.7); */
  opacity: 1;
}
.ccafc--modal {
  --font-family: sans-serif;
  --headings-font-family: sans-serif;
  --text-color: #666;
  --accent-color: #aaa;
  --headings-color: #222;

  background: #fff;
  box-shadow: 0 0 20px rgba(0,0,0,.2);
  border-bottom: 10px solid var(--accent-color);
}
.ccafc--modal-loading-indicator {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 100px;
  z-index: -1;
}
.ccafc--modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--accent-color);
  color: #fff;
  padding: 20px;
}
.ccafc--modal-header-title {
  margin: 0;
  font-family: var(--headings-font-family);
  font-size: 1.1em;
  font-weight: bold;
  text-transform: uppercase;
}
.ccafc--modal-content {
  padding: 20px;
  color: var(--text-color);
}
.ccafc--modal-content-section {
  margin-bottom: 20px;
}
.ccafc--modal-content-section:last-child {
  margin-bottom: 0;
}
.ccafc--modal-content-title {
  margin: 0;
  color: var(--headings-color);
  font-family: var(--headings-font-family);
  font-weight: bold;
  font-size: 1em;
  text-transform: uppercase;
}
.ccafc--modal-content-title--main {
  text-transform: none;
  font-size: 1.3em;
}
.ccafc--modal-content-detail {
  margin: 0;
}