// Actual modal
.modal-content {
  background-color: $modal-content-bg;
  border: $modal-content-border-width solid $modal-content-border-color;
  @include box-shadow($modal-content-box-shadow-xs);
}

// Modal background
.modal-backdrop {
  background-color: $modal-backdrop-bg;
}

// Actual modal
.modal-content {
  background-color: $modal-content-bg;
  border: $modal-content-border-width solid $modal-content-border-color;
  @include box-shadow($modal-content-box-shadow-xs);
}

// Modal background
.modal-backdrop {
  background-color: $modal-backdrop-bg;
}

// Modal header
// Top section of the modal w/ title and dismiss
.modal-header {
  border-bottom: $modal-header-border-width solid $modal-header-border-color;
}

// Scale up the modal
@include media-breakpoint-up(sm) {
  // Automatically set modal's width for larger viewports
  .modal-content {
    @include box-shadow($modal-content-box-shadow-sm-up);
  }
}
