/* Utilities */
.d-flex {
  display: flex;
}

.justify-content-between {
  justify-content: space-between;
}

.pt-4 {
  padding-top: 24px;
}

.pb-4 {
  padding-bottom: 24px;
}

.p-3 {
  padding: 16px;
}

.mt-3 {
  margin-top: 16px;
}

/* Components */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 4px;
}

.card-header {
  padding: 12px 16px;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card-body {
  flex: 1 1 auto;
  min-height: 1px;
  padding: 20px;
}

.card-header:first-child {
  border-radius: 3px 3px 0 0;
}

.accordion {
  overflow-anchor: none;
}

.accordion > .card {
  overflow: hidden;
}

.accordion > .card:not(:last-of-type) {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.accordion > .card:not(:first-of-type) {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.accordion > .card > .card-header {
  border-radius: 0;
  margin-bottom: -1px;
}

/* Form */
.form-check {
  position: relative;
  display: block;
  padding-left: 20px;
}

input.form-check-input {
  position: absolute;
  margin-top: 4px;
  margin-left: -20px;
}

.form-check-label {
  margin-bottom: 0;
}
