/**
 * Custom container width override.
 * Changes the default Bootstrap xxl container max-width from 1320px to 1428px.
 */
@media (min-width: 1400px) {

  .container,
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 1428px;
  }
}

.container {
  &.container-small {
    max-width: 1000px;
  }
}
