/* Import Bootstrap theme overrides */
/* Bootstrap CSS Variables - Theme Colors */
:root {
  --bs-primary: #E30613;
  --bs-primary-rgb: 227, 6, 19;
  --bs-secondary: #1d1d18;
  --bs-secondary-rgb: 29, 29, 24;
  --bs-success: #198754;
  --bs-success-rgb: 25, 135, 84;
  --bs-info: #0dcaf0;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning: #ffc107;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger: #dc3545;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light: #f8f9fa;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark: #212529;
  --bs-dark-rgb: 33, 37, 41;
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #C20510;
  --bs-btn-hover-border-color: #B50510;
  --bs-btn-focus-shadow-rgb: 247, 46, 59;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #B50510;
  --bs-btn-active-border-color: #A9050F;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--bs-primary);
  --bs-btn-disabled-border-color: var(--bs-primary);
  --bs-body-color: #444;
  --bs-body-bg: #fff;
  --bs-border-color: #dee2e6;
  --bs-border-radius: 0.375rem;
  --bs-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --bs-focus-ring-color: rgba(227, 6, 19, 0.25);
}

/* Bootstrap Form Overrides */
.form-select {
  padding-top: 13px;
  padding-bottom: 13px;
  font-size: 14px;
}

.form-select option:disabled {
  color: #ccc !important;
}

/* Primary Button Variants */
.btn-primary {
  color: #fff !important;
  background-color: var(--bs-primary) !important;
  border-color: var(--bs-primary) !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active {
  color: #fff !important;
  background-color: #C20510 !important;
  border-color: #B50510 !important;
}

.btn-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(227, 6, 19, 0.25) !important;
}

/* General Outline Button Styles */
.btn[class*=btn-outline-] {
  border: 2px solid !important;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-outline-primary {
  border: 2px solid;
  color: var(--bs-primary) !important;
  border-color: var(--bs-primary) !important;
  background-color: transparent !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active,
.btn-outline-primary.active {
  color: #fff !important;
  background-color: var(--bs-primary) !important;
  border-color: var(--bs-primary) !important;
}

.btn-outline-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(227, 6, 19, 0.25) !important;
}

/* Secondary Button Variants */
.btn-secondary {
  color: #fff !important;
  background-color: var(--bs-secondary) !important;
  border-color: var(--bs-secondary) !important;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary.active {
  color: #fff !important;
  background-color: #151511 !important;
  border-color: #0f0f0d !important;
}

.btn-secondary:focus {
  box-shadow: 0 0 0 0.25rem rgba(29, 29, 24, 0.25) !important;
}

.btn-outline-secondary {
  color: var(--bs-secondary) !important;
  border-color: var(--bs-secondary) !important;
  background-color: transparent !important;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus,
.btn-outline-secondary:active,
.btn-outline-secondary.active {
  color: #fff !important;
  background-color: var(--bs-secondary) !important;
  border-color: var(--bs-secondary) !important;
}

.btn-outline-secondary:focus {
  box-shadow: 0 0 0 0.25rem rgba(29, 29, 24, 0.25) !important;
}

/* Success Button Variants */
.btn-success {
  color: #fff !important;
  background-color: var(--bs-success) !important;
  border-color: var(--bs-success) !important;
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active {
  color: #fff !important;
  background-color: #146c43 !important;
  border-color: #13653f !important;
}

.btn-success:focus {
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25) !important;
}

.btn-outline-success {
  color: var(--bs-success) !important;
  border-color: var(--bs-success) !important;
  background-color: transparent !important;
}

.btn-outline-success:hover,
.btn-outline-success:focus,
.btn-outline-success:active,
.btn-outline-success.active {
  color: #fff !important;
  background-color: var(--bs-success) !important;
  border-color: var(--bs-success) !important;
}

.btn-outline-success:focus {
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25) !important;
}

/* Info Button Variants */
.btn-info {
  color: #000 !important;
  background-color: var(--bs-info) !important;
  border-color: var(--bs-info) !important;
}

.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active {
  color: #000 !important;
  background-color: #31d2f2 !important;
  border-color: #25cff2 !important;
}

.btn-info:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.25) !important;
}

.btn-outline-info {
  color: var(--bs-info) !important;
  border-color: var(--bs-info) !important;
  background-color: transparent !important;
}

.btn-outline-info:hover,
.btn-outline-info:focus,
.btn-outline-info:active,
.btn-outline-info.active {
  color: #000 !important;
  background-color: var(--bs-info) !important;
  border-color: var(--bs-info) !important;
}

.btn-outline-info:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.25) !important;
}

/* Warning Button Variants */
.btn-warning {
  color: #000 !important;
  background-color: var(--bs-warning) !important;
  border-color: var(--bs-warning) !important;
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-warning.active {
  color: #000 !important;
  background-color: #ffcd39 !important;
  border-color: #ffc720 !important;
}

.btn-warning:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25) !important;
}

.btn-outline-warning {
  color: var(--bs-warning) !important;
  border-color: var(--bs-warning) !important;
  background-color: transparent !important;
}

.btn-outline-warning:hover,
.btn-outline-warning:focus,
.btn-outline-warning:active,
.btn-outline-warning.active {
  color: #000 !important;
  background-color: var(--bs-warning) !important;
  border-color: var(--bs-warning) !important;
}

.btn-outline-warning:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25) !important;
}

/* Danger Button Variants */
.btn-danger {
  color: #fff !important;
  background-color: var(--bs-danger) !important;
  border-color: var(--bs-danger) !important;
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active {
  color: #fff !important;
  background-color: #bb2d3b !important;
  border-color: #b02a37 !important;
}

.btn-danger:focus {
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25) !important;
}

.btn-outline-danger {
  color: var(--bs-danger) !important;
  border-color: var(--bs-danger) !important;
  background-color: transparent !important;
}

.btn-outline-danger:hover,
.btn-outline-danger:focus,
.btn-outline-danger:active,
.btn-outline-danger.active {
  color: #fff !important;
  background-color: var(--bs-danger) !important;
  border-color: var(--bs-danger) !important;
}

.btn-outline-danger:focus {
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25) !important;
}

/* Light Button Variants */
.btn-light {
  color: #000 !important;
  background-color: var(--bs-light) !important;
  border-color: var(--bs-light) !important;
}

.btn-light:hover,
.btn-light:focus,
.btn-light:active,
.btn-light.active {
  color: #000 !important;
  background-color: #d3d4d5 !important;
  border-color: #c6c7c8 !important;
}

.btn-light:focus {
  box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.25) !important;
}

.btn-outline-light {
  color: var(--bs-light) !important;
  border-color: var(--bs-light) !important;
  background-color: transparent !important;
}

.btn-outline-light:hover,
.btn-outline-light:focus,
.btn-outline-light:active,
.btn-outline-light.active {
  color: #000 !important;
  background-color: var(--bs-light) !important;
  border-color: var(--bs-light) !important;
}

.btn-outline-light:focus {
  box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.25) !important;
}

/* Dark Button Variants */
.btn-dark {
  color: #fff !important;
  background-color: var(--bs-dark) !important;
  border-color: var(--bs-dark) !important;
}

.btn-dark:hover,
.btn-dark:focus,
.btn-dark:active,
.btn-dark.active {
  color: #fff !important;
  background-color: #1c1f23 !important;
  border-color: #1a1e21 !important;
}

.btn-dark:focus {
  box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.25) !important;
}

.btn-outline-dark {
  color: var(--bs-dark) !important;
  border-color: var(--bs-dark) !important;
  background-color: transparent !important;
}

.btn-outline-dark:hover,
.btn-outline-dark:focus,
.btn-outline-dark:active,
.btn-outline-dark.active {
  color: #fff !important;
  background-color: var(--bs-dark) !important;
  border-color: var(--bs-dark) !important;
}

.btn-outline-dark:focus {
  box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.25) !important;
}

/* Ghost Button Variants - No borders, color text only */
.btn[class*=btn-ghost-] i {
  padding: 0 !important;
}

/* Primary Ghost */
.btn-ghost-primary {
  color: var(--bs-primary) !important;
  background-color: transparent !important;
  border: none !important;
  border-color: transparent !important;
}

.btn-ghost-primary:hover,
.btn-ghost-primary:focus,
.btn-ghost-primary:active,
.btn-ghost-primary.active {
  color: #fff !important;
  background-color: var(--bs-primary) !important;
  border-color: transparent !important;
}

.btn-ghost-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(227, 6, 19, 0.25) !important;
}

/* Secondary Ghost */
.btn-ghost-secondary {
  color: var(--bs-secondary) !important;
  background-color: transparent !important;
  border: none !important;
  border-color: transparent !important;
}

.btn-ghost-secondary:hover,
.btn-ghost-secondary:focus,
.btn-ghost-secondary:active,
.btn-ghost-secondary.active {
  color: #fff !important;
  background-color: var(--bs-secondary) !important;
  border-color: transparent !important;
}

.btn-ghost-secondary:focus {
  box-shadow: 0 0 0 0.25rem rgba(29, 29, 24, 0.25) !important;
}

/* Success Ghost */
.btn-ghost-success {
  color: var(--bs-success) !important;
  background-color: transparent !important;
  border: none !important;
  border-color: transparent !important;
}

.btn-ghost-success:hover,
.btn-ghost-success:focus,
.btn-ghost-success:active,
.btn-ghost-success.active {
  color: #fff !important;
  background-color: var(--bs-success) !important;
  border-color: transparent !important;
}

.btn-ghost-success:focus {
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25) !important;
}

/* Info Ghost */
.btn-ghost-info {
  color: var(--bs-info) !important;
  background-color: transparent !important;
  border: none !important;
  border-color: transparent !important;
}

.btn-ghost-info:hover,
.btn-ghost-info:focus,
.btn-ghost-info:active,
.btn-ghost-info.active {
  color: #000 !important;
  background-color: var(--bs-info) !important;
  border-color: transparent !important;
}

.btn-ghost-info:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.25) !important;
}

/* Warning Ghost */
.btn-ghost-warning {
  color: var(--bs-warning) !important;
  background-color: transparent !important;
  border: none !important;
  border-color: transparent !important;
}

.btn-ghost-warning:hover,
.btn-ghost-warning:focus,
.btn-ghost-warning:active,
.btn-ghost-warning.active {
  color: #000 !important;
  background-color: var(--bs-warning) !important;
  border-color: transparent !important;
}

.btn-ghost-warning:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25) !important;
}

/* Danger Ghost */
.btn-ghost-danger {
  color: var(--bs-danger) !important;
  background-color: transparent !important;
  border: none !important;
  border-color: transparent !important;
}

.btn-ghost-danger:hover,
.btn-ghost-danger:focus,
.btn-ghost-danger:active,
.btn-ghost-danger.active {
  color: #fff !important;
  background-color: var(--bs-danger) !important;
  border-color: transparent !important;
}

.btn-ghost-danger:focus {
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25) !important;
}

/* Light Ghost */
.btn-ghost-light {
  color: var(--bs-light) !important;
  background-color: transparent !important;
  border: none !important;
  border-color: transparent !important;
}

.btn-ghost-light:hover,
.btn-ghost-light:focus,
.btn-ghost-light:active,
.btn-ghost-light.active {
  color: #000 !important;
  background-color: var(--bs-light) !important;
  border-color: transparent !important;
}

.btn-ghost-light:focus {
  box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.25) !important;
}

/* Dark Ghost */
.btn-ghost-dark {
  color: var(--bs-dark) !important;
  background-color: transparent !important;
  border: none !important;
  border-color: transparent !important;
}

.btn-ghost-dark:hover,
.btn-ghost-dark:focus,
.btn-ghost-dark:active,
.btn-ghost-dark.active {
  color: #fff !important;
  background-color: var(--bs-dark) !important;
  border-color: transparent !important;
}

.btn-ghost-dark:focus {
  box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.25) !important;
}

/*Round Fab buttons*/
/* Base FAB Button Styles */
.btn-fab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50% !important;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  outline: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  padding: 0 !important;
}

.btn-fab:hover {
  box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.btn-fab:active {
  box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 12px 17px 2px rgba(0, 0, 0, 0.14), 0 5px 22px 4px rgba(0, 0, 0, 0.12);
}

.btn-fab i {
  font-size: 24px;
  line-height: 1;
  padding: 0 !important;
}

/* Small FAB Variant */
.btn-fab-sm {
  width: 40px;
  height: 40px;
}

.btn-fab-sm i {
  font-size: 18px;
}

/* Extra Small FAB Variant */
.btn-fab-xs {
  width: 32px;
  height: 32px;
}

.btn-fab-xs i {
  font-size: 14px;
}

/* Large FAB Variant */
.btn-fab-lg {
  width: 72px;
  height: 72px;
}

.btn-fab-lg i {
  font-size: 32px;
}

/* Primary FAB */
.btn-fab-primary {
  background-color: var(--bs-primary) !important;
  color: #fff !important;
}

.btn-fab-primary:hover {
  background-color: #C20510 !important;
  color: #fff !important;
}

.btn-fab-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(227, 6, 19, 0.25), 0 3px 5px -1px rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12);
}

/* Secondary FAB */
.btn-fab-secondary {
  background-color: var(--bs-secondary) !important;
  color: #fff !important;
}

.btn-fab-secondary:hover {
  background-color: #151511 !important;
  color: #fff !important;
}

.btn-fab-secondary:focus {
  box-shadow: 0 0 0 0.25rem rgba(29, 29, 24, 0.25), 0 3px 5px -1px rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12);
}

/* Success FAB */
.btn-fab-success {
  background-color: var(--bs-success) !important;
  color: #fff !important;
}

.btn-fab-success:hover {
  background-color: #146c43 !important;
  color: #fff !important;
}

.btn-fab-success:focus {
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25), 0 3px 5px -1px rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12);
}

/* Info FAB */
.btn-fab-info {
  background-color: var(--bs-info) !important;
  color: #000 !important;
}

.btn-fab-info:hover {
  background-color: #31d2f2 !important;
  color: #000 !important;
}

.btn-fab-info:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.25), 0 3px 5px -1px rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12);
}

/* Warning FAB */
.btn-fab-warning {
  background-color: var(--bs-warning) !important;
  color: #000 !important;
}

.btn-fab-warning:hover {
  background-color: #ffcd39 !important;
  color: #000 !important;
}

.btn-fab-warning:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25), 0 3px 5px -1px rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12);
}

/* Danger FAB */
.btn-fab-danger {
  background-color: var(--bs-danger) !important;
  color: #fff !important;
}

.btn-fab-danger:hover {
  background-color: #bb2d3b !important;
  color: #fff !important;
}

.btn-fab-danger:focus {
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25), 0 3px 5px -1px rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12);
}

/* Light FAB */
.btn-fab-light {
  background-color: var(--bs-light) !important;
  color: #000 !important;
}

.btn-fab-light:hover {
  background-color: #d3d4d5 !important;
  color: #000 !important;
}

.btn-fab-light:focus {
  box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.25), 0 3px 5px -1px rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12);
}

/* Dark FAB */
.btn-fab-dark {
  background-color: var(--bs-dark) !important;
  color: #fff !important;
}

.btn-fab-dark:hover {
  background-color: #1c1f23 !important;
  color: #fff !important;
}

.btn-fab-dark:focus {
  box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.25), 0 3px 5px -1px rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12);
}

/*Typography utils */
/*Font Sizing and spacing ---------------------------------------------------*/
.lh-base {
  line-height: 1;
}

@media (max-width: 575px) {
  .lh-xs-base {
    line-height: 1;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .lh-sm-base {
    line-height: 1;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .lh-md-base {
    line-height: 1;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .lh-lg-base {
    line-height: 1;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .lh-xl-base {
    line-height: 1;
  }
}
@media (min-width: 1400px) {
  .lh-xxl-base {
    line-height: 1;
  }
}
.lh-compact {
  line-height: 1.2;
}

@media (max-width: 575px) {
  .lh-xs-compact {
    line-height: 1.2;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .lh-sm-compact {
    line-height: 1.2;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .lh-md-compact {
    line-height: 1.2;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .lh-lg-compact {
    line-height: 1.2;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .lh-xl-compact {
    line-height: 1.2;
  }
}
@media (min-width: 1400px) {
  .lh-xxl-compact {
    line-height: 1.2;
  }
}
.lh-comfortable {
  line-height: 1.33;
}

@media (max-width: 575px) {
  .lh-xs-comfortable {
    line-height: 1.33;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .lh-sm-comfortable {
    line-height: 1.33;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .lh-md-comfortable {
    line-height: 1.33;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .lh-lg-comfortable {
    line-height: 1.33;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .lh-xl-comfortable {
    line-height: 1.33;
  }
}
@media (min-width: 1400px) {
  .lh-xxl-comfortable {
    line-height: 1.33;
  }
}
.lh-spacious {
  line-height: 1.66;
}

@media (max-width: 575px) {
  .lh-xs-spacious {
    line-height: 1.66;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .lh-sm-spacious {
    line-height: 1.66;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .lh-md-spacious {
    line-height: 1.66;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .lh-lg-spacious {
    line-height: 1.66;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .lh-xl-spacious {
    line-height: 1.66;
  }
}
@media (min-width: 1400px) {
  .lh-xxl-spacious {
    line-height: 1.66;
  }
}
.lh-broad {
  line-height: 2;
}

@media (max-width: 575px) {
  .lh-xs-broad {
    line-height: 2;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .lh-sm-broad {
    line-height: 2;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .lh-md-broad {
    line-height: 2;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .lh-lg-broad {
    line-height: 2;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .lh-xl-broad {
    line-height: 2;
  }
}
@media (min-width: 1400px) {
  .lh-xxl-broad {
    line-height: 2;
  }
}
.text-xlarge, .text-xlarge * {
  font-size: 18px;
}

@media (max-width: 575px) {
  .text-xs-xlarge, .text-xs-xlarge * {
    font-size: 18px !important;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .text-sm-xlarge, .text-sm-xlarge * {
    font-size: 18px !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .text-md-xlarge, .text-md-xlarge * {
    font-size: 18px !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .text-lg-xlarge, .text-lg-xlarge * {
    font-size: 18px !important;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .text-xl-xlarge, .text-xl-xlarge * {
    font-size: 18px !important;
  }
}
@media (min-width: 1400px) {
  .text-xxl-xlarge, .text-xxl-xlarge * {
    font-size: 18px !important;
  }
}
.text-large, .text-large * {
  font-size: 16px;
}

@media (max-width: 575px) {
  .text-xs-large, .text-xs-large * {
    font-size: 16px !important;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .text-sm-large, .text-sm-large * {
    font-size: 16px !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .text-md-large, .text-md-large * {
    font-size: 16px !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .text-lg-large, .text-lg-large * {
    font-size: 16px !important;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .text-xl-large, .text-xl-large * {
    font-size: 16px !important;
  }
}
@media (min-width: 1400px) {
  .text-xxl-large, .text-xxl-large * {
    font-size: 16px !important;
  }
}
.text-medium, .text-medium * {
  font-size: 14px;
}

@media (max-width: 575px) {
  .text-xs-medium, .text-xs-medium * {
    font-size: 14px !important;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .text-sm-medium, .text-sm-medium * {
    font-size: 14px !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .text-md-medium, .text-md-medium * {
    font-size: 14px !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .text-lg-medium, .text-lg-medium * {
    font-size: 14px !important;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .text-xl-medium, .text-xl-medium * {
    font-size: 14px !important;
  }
}
@media (min-width: 1400px) {
  .text-xxl-medium, .text-xxl-medium * {
    font-size: 14px !important;
  }
}
.text-small, .text-small * {
  font-size: 12px;
}

@media (max-width: 575px) {
  .text-xs-small, .text-xs-small * {
    font-size: 12px !important;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .text-sm-small, .text-sm-small * {
    font-size: 12px !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .text-md-small, .text-md-small * {
    font-size: 12px !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .text-lg-small, .text-lg-small * {
    font-size: 12px !important;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .text-xl-small, .text-xl-small * {
    font-size: 12px !important;
  }
}
@media (min-width: 1400px) {
  .text-xxl-small, .text-xxl-small * {
    font-size: 12px !important;
  }
}
.text-xsmall, .text-xsmall * {
  font-size: 10px;
}

@media (max-width: 575px) {
  .text-xs-xsmall, .text-xs-xsmall * {
    font-size: 10px !important;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .text-sm-xsmall, .text-sm-xsmall * {
    font-size: 10px !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .text-md-xsmall, .text-md-xsmall * {
    font-size: 10px !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .text-lg-xsmall, .text-lg-xsmall * {
    font-size: 10px !important;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .text-xl-xsmall, .text-xl-xsmall * {
    font-size: 10px !important;
  }
}
@media (min-width: 1400px) {
  .text-xxl-xsmall, .text-xxl-xsmall * {
    font-size: 10px !important;
  }
}
/*Contrato Modal */
.contrato, .contrato * {
  font-size: 14px !important;
  color: #000 !important;
}

/*# sourceMappingURL=overrides.css.map */
