/*! 
 * NextGen CSS Framework v1.0.0
 * License: MIT
 */
:root {
  --ng-primary: #3b82f6;
  --ng-secondary: #64748b;
  --ng-success: #10b981;
  --ng-info: #06b6d4;
  --ng-warning: #f59e0b;
  --ng-danger: #ef4444;
  --ng-light: #f8fafc;
  --ng-dark: #0f172a;
  --ng-white: #ffffff;
  --ng-gray-100: #f1f5f9;
  --ng-gray-200: #e2e8f0;
  --ng-gray-300: #cbd5e1;
  --ng-gray-400: #94a3b8;
  --ng-gray-500: #64748b;
  --ng-gray-600: #475569;
  --ng-gray-700: #334155;
  --ng-gray-800: #1e293b;
  --ng-gray-900: #0f172a;
  --ng-black: #020617;
  --ng-body-bg: #ffffff;
  --ng-body-color: #0f172a;
  --ng-link-color: #3b82f6;
  --ng-link-hover-color: rgb(10.0317073171, 89.1707317073, 218.4682926829);
  --ng-border-color: #cbd5e1;
  --ng-card-bg: #ffffff;
  --ng-card-border: #e2e8f0;
  --ng-card-header-bg: #f1f5f9;
  --ng-card-header-border: #e2e8f0;
  --ng-card-footer-bg: #f1f5f9;
  --ng-card-footer-border: #e2e8f0;
  --ng-input-bg: #ffffff;
  --ng-input-border: #cbd5e1;
  --ng-input-disabled-bg: #f1f5f9;
  --ng-code-bg: #f1f5f9;
  --ng-box-shadow-sm: 0 1px 2px 0 rgba(2, 6, 23, 0.05);
  --ng-box-shadow: 0 1px 3px 0 rgba(2, 6, 23, 0.1), 0 1px 2px -1px rgba(2, 6, 23, 0.1);
  --ng-box-shadow-lg: 0 10px 15px -3px rgba(2, 6, 23, 0.1), 0 4px 6px -4px rgba(2, 6, 23, 0.1);
  --ng-box-shadow-xl: 0 20px 25px -5px rgba(2, 6, 23, 0.1), 0 8px 10px -6px rgba(2, 6, 23, 0.1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --ng-primary: rgb(107.7609756098, 161.0975609756, 248.2390243902);
    --ng-secondary: rgb(141.8807531381, 154.9016736402, 173.6192468619);
    --ng-success: rgb(20.0597014925, 231.9402985075, 161.7313432836);
    --ng-info: rgb(20.6330275229, 215.2018348624, 248.3669724771);
    --ng-warning: rgb(246.0039370079, 167.7381889764, 35.4960629921);
    --ng-danger: rgb(243.0197044335, 114.9802955665, 114.9802955665);
    --ng-light: rgb(42.9, 71.5, 100.1);
    --ng-dark: rgb(28.4210526316, 43.5789473684, 79.5789473684);
    --ng-white: #0f172a;
    --ng-black: #f1f5f9;
    --ng-gray-100: #1e293b;
    --ng-gray-200: #334155;
    --ng-gray-300: #475569;
    --ng-gray-400: #64748b;
    --ng-gray-500: #94a3b8;
    --ng-gray-600: #cbd5e1;
    --ng-gray-700: #e2e8f0;
    --ng-gray-800: #f1f5f9;
    --ng-gray-900: #f1f5f9;
    --ng-body-bg: #0f172a;
    --ng-body-color: #f1f5f9;
    --ng-link-color: rgb(132.1414634146, 176.6463414634, 249.3585365854);
    --ng-link-hover-color: rgb(180.9024390244, 207.743902439, 251.5975609756);
    --ng-border-color: #334155;
    --ng-card-bg: #1e293b;
    --ng-card-border: #334155;
    --ng-card-header-bg: #0f172a;
    --ng-card-header-border: #334155;
    --ng-card-footer-bg: #0f172a;
    --ng-card-footer-border: #334155;
    --ng-input-bg: #1e293b;
    --ng-input-border: #475569;
    --ng-input-disabled-bg: #0f172a;
    --ng-code-bg: #1e293b;
    --ng-box-shadow-sm: 0 1px 2px 0 rgba(2, 6, 23, 0.25);
    --ng-box-shadow: 0 1px 3px 0 rgba(2, 6, 23, 0.3), 0 1px 2px -1px rgba(2, 6, 23, 0.3);
    --ng-box-shadow-lg: 0 10px 15px -3px rgba(2, 6, 23, 0.3), 0 4px 6px -4px rgba(2, 6, 23, 0.3);
    --ng-box-shadow-xl: 0 20px 25px -5px rgba(2, 6, 23, 0.3), 0 8px 10px -6px rgba(2, 6, 23, 0.3);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.transition-base {
  transition: all 0.2s ease-in-out;
}

.transition-fade {
  transition: opacity 0.15s linear;
}

.transition-transform {
  transition: transform 0.3s ease-in-out;
}

.transition-all {
  transition: all 0.3s ease-in-out;
}

/*! 
 * NextGen CSS Framework v1.0.0
 * License: MIT
 */
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, p, ul, ol {
  margin: 0;
  padding: 0;
}

html, body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ng-body-color);
  background-color: var(--ng-body-bg);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

a {
  color: var(--ng-link-color);
  text-decoration: none;
}
a:hover {
  color: var(--ng-link-hover-color);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

/*! 
 * NextGen CSS Framework v1.0.0
 * License: MIT
 */
h1, .h1 {
  margin-bottom: 1rem;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ng-body-color);
}

h2, .h2 {
  margin-bottom: 1rem;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ng-body-color);
}

h3, .h3 {
  margin-bottom: 1rem;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ng-body-color);
}

h4, .h4 {
  margin-bottom: 1rem;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ng-body-color);
}

h5, .h5 {
  margin-bottom: 1rem;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ng-body-color);
}

h6, .h6 {
  margin-bottom: 1rem;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ng-body-color);
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}

.lead {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 2;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-justify {
  text-align: justify !important;
}

/*! 
 * NextGen CSS Framework v1.0.0
 * License: MIT
 */
.container,
.container-fluid {
  width: 100%;
  padding-right: var(--ng-container-padding-x, calc(1.5rem / 2));
  padding-left: var(--ng-container-padding-x, calc(1.5rem / 2));
  margin-right: auto;
  margin-left: auto;
}

.container-sm {
  width: 100%;
  padding-right: calc(1.5rem / 2);
  padding-left: calc(1.5rem / 2);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
.container-md {
  width: 100%;
  padding-right: calc(1.5rem / 2);
  padding-left: calc(1.5rem / 2);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 768px) {
  .container-md, .container {
    max-width: 720px;
  }
}
.container-lg {
  width: 100%;
  padding-right: calc(1.5rem / 2);
  padding-left: calc(1.5rem / 2);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 992px) {
  .container-lg, .container {
    max-width: 960px;
  }
}
.container-xl {
  width: 100%;
  padding-right: calc(1.5rem / 2);
  padding-left: calc(1.5rem / 2);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 1200px) {
  .container-xl, .container {
    max-width: 1140px;
  }
}
.container-xxl {
  width: 100%;
  padding-right: calc(1.5rem / 2);
  padding-left: calc(1.5rem / 2);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 1400px) {
  .container-xxl, .container {
    max-width: 1320px;
  }
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: calc(-1.5rem / 2);
  margin-left: calc(-1.5rem / 2);
}

.row-no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.row-no-gutters > .col,
.row-no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col {
  position: relative;
  width: 100%;
  padding-right: calc(1.5rem / 2);
  padding-left: calc(1.5rem / 2);
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  position: relative;
  width: 100%;
  padding-right: calc(1.5rem / 2);
  padding-left: calc(1.5rem / 2);
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  position: relative;
  width: 100%;
  padding-right: calc(1.5rem / 2);
  padding-left: calc(1.5rem / 2);
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  position: relative;
  width: 100%;
  padding-right: calc(1.5rem / 2);
  padding-left: calc(1.5rem / 2);
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-3 {
  position: relative;
  width: 100%;
  padding-right: calc(1.5rem / 2);
  padding-left: calc(1.5rem / 2);
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  position: relative;
  width: 100%;
  padding-right: calc(1.5rem / 2);
  padding-left: calc(1.5rem / 2);
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  position: relative;
  width: 100%;
  padding-right: calc(1.5rem / 2);
  padding-left: calc(1.5rem / 2);
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-6 {
  position: relative;
  width: 100%;
  padding-right: calc(1.5rem / 2);
  padding-left: calc(1.5rem / 2);
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  position: relative;
  width: 100%;
  padding-right: calc(1.5rem / 2);
  padding-left: calc(1.5rem / 2);
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  position: relative;
  width: 100%;
  padding-right: calc(1.5rem / 2);
  padding-left: calc(1.5rem / 2);
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-9 {
  position: relative;
  width: 100%;
  padding-right: calc(1.5rem / 2);
  padding-left: calc(1.5rem / 2);
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  position: relative;
  width: 100%;
  padding-right: calc(1.5rem / 2);
  padding-left: calc(1.5rem / 2);
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  position: relative;
  width: 100%;
  padding-right: calc(1.5rem / 2);
  padding-left: calc(1.5rem / 2);
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-12 {
  position: relative;
  width: 100%;
  padding-right: calc(1.5rem / 2);
  padding-left: calc(1.5rem / 2);
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 0) {
  .col-xs {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xs-auto {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xs-1 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xs-2 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xs-3 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xs-4 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xs-5 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xs-6 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xs-7 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xs-8 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xs-9 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xs-10 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xs-11 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xs-12 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 576px) {
  .col-sm {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-sm-2 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-3 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-sm-5 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-sm-6 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-sm-8 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-sm-9 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-sm-11 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-sm-12 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .col-md {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-md-2 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-3 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-md-5 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-md-6 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-md-8 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-md-9 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-md-11 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-md-12 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-lg-2 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-3 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-lg-5 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-lg-6 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-lg-8 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-lg-9 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-lg-11 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-lg-12 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xl-2 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-3 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xl-5 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xl-6 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xl-8 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xl-9 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xl-11 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xl-12 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xxl-auto {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xxl-1 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xxl-2 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xxl-3 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xxl-4 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xxl-5 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xxl-6 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xxl-7 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xxl-8 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xxl-9 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xxl-10 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xxl-11 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xxl-12 {
    position: relative;
    width: 100%;
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 1.5rem;
}

.grid-gap-0 {
  grid-gap: 0;
}

.grid-gap-1 {
  grid-gap: 0.25rem;
}

.grid-gap-2 {
  grid-gap: 0.5rem;
}

.grid-gap-3 {
  grid-gap: 1rem;
}

.grid-gap-4 {
  grid-gap: 1.5rem;
}

.grid-gap-5 {
  grid-gap: 3rem;
}

/*! 
 * NextGen CSS Framework v1.0.0
 * License: MIT
 */
.container, .container-skinny {
  width: 100%;
  padding-right: var(--ng-container-padding-x, calc(1.5rem / 2));
  padding-left: var(--ng-container-padding-x, calc(1.5rem / 2));
  margin-right: auto;
  margin-left: auto;
}

.container-fluid, .container-xxl, .container-xl, .container-lg, .container-md, .container-sm {
  width: 100%;
  padding-right: var(--ng-container-padding-x, calc(1.5rem / 2));
  padding-left: var(--ng-container-padding-x, calc(1.5rem / 2));
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm,
  .container,
  .container-skinny {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md,
  .container,
  .container-skinny {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg,
  .container,
  .container-skinny {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl,
  .container,
  .container-skinny {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl,
  .container,
  .container-skinny {
    max-width: 1320px;
  }
}
@media (min-width: 576px) {
  .container-skinny {
    max-width: 95%;
  }
}
@media (min-width: 768px) {
  .container-skinny {
    max-width: 85%;
  }
}
@media (min-width: 992px) {
  .container-skinny {
    max-width: 75%;
  }
}
@media (min-width: 1200px) {
  .container-skinny {
    max-width: 65%;
  }
}
@media (min-width: 1400px) {
  .container-skinny {
    max-width: 60%;
  }
}

.container-content {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--ng-container-padding-x, calc(1.5rem / 2));
  padding-right: var(--ng-container-padding-x, calc(1.5rem / 2));
}

/*! 
 * NextGen CSS Framework v1.0.0
 * License: MIT
 */
.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

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

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.gap-0 {
  gap: 0 !important;
}

.gap-1 {
  gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.gap-5 {
  gap: 3rem !important;
}

.row-gap-0 {
  row-gap: 0 !important;
}

.row-gap-1 {
  row-gap: 0.25rem !important;
}

.row-gap-2 {
  row-gap: 0.5rem !important;
}

.row-gap-3 {
  row-gap: 1rem !important;
}

.row-gap-4 {
  row-gap: 1.5rem !important;
}

.row-gap-5 {
  row-gap: 3rem !important;
}

.column-gap-0 {
  column-gap: 0 !important;
}

.column-gap-1 {
  column-gap: 0.25rem !important;
}

.column-gap-2 {
  column-gap: 0.5rem !important;
}

.column-gap-3 {
  column-gap: 1rem !important;
}

.column-gap-4 {
  column-gap: 1.5rem !important;
}

.column-gap-5 {
  column-gap: 3rem !important;
}

/*! 
 * NextGen CSS Framework v1.0.0
 * License: MIT
 */
.btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.375rem;
  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;
  cursor: pointer;
}
.btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(var(--ng-primary), 0.25);
}
.btn:disabled, .btn.disabled {
  opacity: 0.65;
  pointer-events: none;
}

.btn-primary {
  background-color: var(--ng-primary);
  border-color: var(--ng-primary);
  color: var(--ng-white);
}
.btn-primary:hover {
  background-color: rgb(22.4292682927, 106.6768292683, 244.3207317073);
  border-color: rgb(11.1512195122, 99.1219512195, 242.8487804878);
}
.btn-primary:focus, .btn-primary:active {
  background-color: rgb(11.1512195122, 99.1219512195, 242.8487804878);
  border-color: rgb(10.5914634146, 94.1463414634, 230.6585365854);
  box-shadow: 0 0 0 0.25rem rgba(59, 130, 246, 0.25);
}

.btn-secondary {
  background-color: var(--ng-secondary);
  border-color: var(--ng-secondary);
  color: var(--ng-white);
}
.btn-secondary:hover {
  background-color: rgb(83.9958158996, 97.4351464435, 116.7541841004);
  border-color: rgb(78.6610878661, 91.2468619247, 109.3389121339);
}
.btn-secondary:focus, .btn-secondary:active {
  background-color: rgb(78.6610878661, 91.2468619247, 109.3389121339);
  border-color: rgb(73.3263598326, 85.0585774059, 101.9236401674);
  box-shadow: 0 0 0 0.25rem rgba(100, 116, 139, 0.25);
}

.btn-success {
  background-color: var(--ng-success);
  border-color: var(--ng-success);
  color: var(--ng-white);
}
.btn-success:hover {
  background-color: rgb(12.9552238806, 149.7947761194, 104.4514925373);
  border-color: rgb(11.9402985075, 138.0597014925, 96.2686567164);
}
.btn-success:focus, .btn-success:active {
  background-color: rgb(11.9402985075, 138.0597014925, 96.2686567164);
  border-color: rgb(10.9253731343, 126.3246268657, 88.0858208955);
  box-shadow: 0 0 0 0.25rem rgba(16, 185, 129, 0.25);
}

.btn-outline-primary {
  background-color: transparent;
  border-color: var(--ng-primary);
  color: var(--ng-primary);
}
.btn-outline-primary:hover {
  background-color: var(--ng-primary);
  color: var(--ng-white);
}
.btn-outline-primary:focus, .btn-outline-primary:active {
  background-color: var(--ng-primary);
  color: var(--ng-white);
  box-shadow: 0 0 0 0.25rem rgba(59, 130, 246, 0.25);
}

.btn-outline-secondary {
  background-color: transparent;
  border-color: var(--ng-secondary);
  color: var(--ng-secondary);
}
.btn-outline-secondary:hover {
  background-color: var(--ng-secondary);
  color: var(--ng-white);
}
.btn-outline-secondary:focus, .btn-outline-secondary:active {
  background-color: var(--ng-secondary);
  color: var(--ng-white);
  box-shadow: 0 0 0 0.25rem rgba(100, 116, 139, 0.25);
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}

.btn-block {
  display: block;
  width: 100%;
}

/*! 
 * NextGen CSS Framework v1.0.0
 * License: MIT
 */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: var(--ng-card-bg);
  background-clip: border-box;
  border: 1px solid var(--ng-card-border);
  border-radius: 0.375rem;
  box-shadow: var(--ng-box-shadow-sm);
}
.card:hover {
  box-shadow: var(--ng-box-shadow);
  transition: box-shadow 0.3s ease;
}

.card-body {
  flex: 1 1 auto;
  padding: 1.25rem;
  color: var(--ng-body-color);
}

.card-title {
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ng-body-color);
}

.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
  font-size: 1rem;
  color: var(--ng-gray-600);
}

.card-text {
  color: var(--ng-body-color);
}
.card-text:last-child {
  margin-bottom: 0;
}

.card-img-top {
  width: 100%;
  border-top-left-radius: calc(0.375rem - 1px);
  border-top-right-radius: calc(0.375rem - 1px);
}

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: var(--ng-card-header-bg);
  border-bottom: 1px solid var(--ng-card-header-border);
  color: var(--ng-body-color);
}
.card-header:first-child {
  border-top-left-radius: calc(0.375rem - 1px);
  border-top-right-radius: calc(0.375rem - 1px);
}

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: var(--ng-card-footer-bg);
  border-top: 1px solid var(--ng-card-footer-border);
  color: var(--ng-body-color);
}
.card-footer:last-child {
  border-bottom-left-radius: calc(0.375rem - 1px);
  border-bottom-right-radius: calc(0.375rem - 1px);
}

.card-group {
  display: flex;
  flex-direction: column;
}
.card-group > .card {
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  .card-group {
    flex-flow: row wrap;
  }
  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
}

/*! 
 * NextGen CSS Framework v1.0.0
 * License: MIT
 */
.form-control {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ng-body-color);
  background-color: var(--ng-input-bg);
  background-clip: padding-box;
  border: 1px solid var(--ng-input-border);
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
.form-control:focus {
  color: var(--ng-body-color);
  background-color: var(--ng-input-bg);
  border-color: var(--ng-primary);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(var(--ng-primary), 0.25);
}
.form-control::placeholder {
  color: var(--ng-gray-500);
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: var(--ng-input-disabled-bg);
  opacity: 1;
}

select.form-control {
  padding-right: 2rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
}

.form-control-lg {
  min-height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.125rem;
  border-radius: 0.5rem;
}

.form-control-sm {
  min-height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
}

.form-text {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--ng-gray-600);
}

.form-label {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ng-body-color);
}

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
  margin-bottom: 0.125rem;
}

.form-check-input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.25rem;
  margin-left: -1.5rem;
  background-color: var(--ng-input-bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid var(--ng-input-border);
  appearance: none;
}
.form-check-input[type=checkbox] {
  border-radius: 0.25rem;
}
.form-check-input[type=checkbox]:checked {
  background-color: var(--ng-primary);
  border-color: var(--ng-primary);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}
.form-check-input[type=radio] {
  border-radius: 50%;
}
.form-check-input[type=radio]:checked {
  background-color: var(--ng-primary);
  border-color: var(--ng-primary);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}
.form-check-input:focus {
  border-color: var(--ng-primary);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(var(--ng-primary), 0.25);
}

.is-valid {
  border-color: var(--ng-success);
}

.is-invalid {
  border-color: var(--ng-danger);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 85%;
  color: var(--ng-danger);
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 85%;
  color: var(--ng-success);
}

.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip,
.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip {
  display: block;
}

/*! 
 * NextGen CSS Framework v1.0.0
 * License: MIT
 */
.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background-color: var(--ng-card-bg);
  box-shadow: var(--ng-box-shadow-sm);
}
.navbar > .container,
.navbar > .container-fluid {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}

.navbar-fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

.navbar-sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ng-body-color);
  text-decoration: none;
  white-space: nowrap;
}
.navbar-brand:hover, .navbar-brand:focus {
  color: var(--ng-primary);
  text-decoration: none;
}
.navbar-brand img {
  margin-right: 0.5rem;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid var(--ng-border-color);
  border-radius: 0.375rem;
  cursor: pointer;
  color: var(--ng-body-color);
}
.navbar-toggler:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(59, 130, 246, 0.25);
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link {
  padding: 0.5rem 1rem;
  color: var(--ng-body-color);
  text-decoration: none;
  transition: color 0.15s ease-in-out;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link:focus {
  color: var(--ng-primary);
}
.navbar-nav .nav-item {
  margin-bottom: 0;
}
.navbar-nav .active {
  color: var(--ng-primary);
  font-weight: 500;
}
.navbar-nav .disabled {
  color: var(--ng-gray-400);
  pointer-events: none;
  cursor: default;
}
@media (min-width: 768px) {
  .navbar-nav {
    flex-direction: row;
  }
  .navbar-nav .nav-link {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }
}

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--ng-link-color);
  text-decoration: none;
  transition: color 0.15s ease-in-out;
}
.nav-link:hover, .nav-link:focus {
  color: var(--ng-link-hover-color);
}
.nav-link.disabled {
  color: var(--ng-gray-400);
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid var(--ng-border-color);
}
.nav-tabs .nav-item {
  margin-bottom: -1px;
}
.nav-tabs .nav-link {
  margin-bottom: -1px;
  border: 1px solid transparent;
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: var(--ng-gray-200) var(--ng-gray-200) var(--ng-border-color);
}
.nav-tabs .nav-link.disabled {
  color: var(--ng-gray-400);
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: var(--ng-primary);
  background-color: var(--ng-card-bg);
  border-color: var(--ng-border-color) var(--ng-border-color) var(--ng-card-bg);
}

.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  color: var(--ng-primary);
  background-color: var(--ng-card-bg);
  border: 1px solid var(--ng-border-color);
  text-decoration: none;
}
.page-link:hover {
  z-index: 2;
  color: var(--ng-link-hover-color);
  background-color: var(--ng-gray-100);
  border-color: var(--ng-border-color);
}
.page-link:focus {
  z-index: 3;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(59, 130, 246, 0.25);
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}
.page-item:last-child .page-link {
  border-top-right-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}
.page-item.active .page-link {
  z-index: 3;
  color: var(--ng-white);
  background-color: var(--ng-primary);
  border-color: var(--ng-primary);
}
.page-item.disabled .page-link {
  color: var(--ng-gray-400);
  pointer-events: none;
  background-color: var(--ng-card-bg);
  border-color: var(--ng-border-color);
}

/*! 
 * NextGen CSS Framework v1.0.0
 * License: MIT
 */
.text-primary {
  color: var(--ng-primary) !important;
}

.text-secondary {
  color: var(--ng-secondary) !important;
}

.text-success {
  color: var(--ng-success) !important;
}

.text-info {
  color: var(--ng-info) !important;
}

.text-warning {
  color: var(--ng-warning) !important;
}

.text-danger {
  color: var(--ng-danger) !important;
}

.text-light {
  color: var(--ng-light) !important;
}

.text-dark {
  color: var(--ng-dark) !important;
}

.text-white {
  color: var(--ng-white) !important;
}

.text-black {
  color: var(--ng-black) !important;
}

.text-gray-100 {
  color: var(--ng-gray-100) !important;
}

.text-gray-200 {
  color: var(--ng-gray-200) !important;
}

.text-gray-300 {
  color: var(--ng-gray-300) !important;
}

.text-gray-400 {
  color: var(--ng-gray-400) !important;
}

.text-gray-500 {
  color: var(--ng-gray-500) !important;
}

.text-gray-600 {
  color: var(--ng-gray-600) !important;
}

.text-gray-700 {
  color: var(--ng-gray-700) !important;
}

.text-gray-800 {
  color: var(--ng-gray-800) !important;
}

.text-gray-900 {
  color: var(--ng-gray-900) !important;
}

.text-opacity-25 {
  opacity: 0.25 !important;
}

.text-opacity-50 {
  opacity: 0.5 !important;
}

.text-opacity-75 {
  opacity: 0.75 !important;
}

.text-opacity-100 {
  opacity: 1 !important;
}

.bg-primary {
  background-color: var(--ng-primary) !important;
}

.bg-secondary {
  background-color: var(--ng-secondary) !important;
}

.bg-success {
  background-color: var(--ng-success) !important;
}

.bg-info {
  background-color: var(--ng-info) !important;
}

.bg-warning {
  background-color: var(--ng-warning) !important;
}

.bg-danger {
  background-color: var(--ng-danger) !important;
}

.bg-light {
  background-color: var(--ng-light) !important;
}

.bg-dark {
  background-color: var(--ng-dark) !important;
}

.bg-white {
  background-color: var(--ng-white) !important;
}

.bg-black {
  background-color: var(--ng-black) !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.bg-gray-100 {
  background-color: var(--ng-gray-100) !important;
}

.bg-gray-200 {
  background-color: var(--ng-gray-200) !important;
}

.bg-gray-300 {
  background-color: var(--ng-gray-300) !important;
}

.bg-gray-400 {
  background-color: var(--ng-gray-400) !important;
}

.bg-gray-500 {
  background-color: var(--ng-gray-500) !important;
}

.bg-gray-600 {
  background-color: var(--ng-gray-600) !important;
}

.bg-gray-700 {
  background-color: var(--ng-gray-700) !important;
}

.bg-gray-800 {
  background-color: var(--ng-gray-800) !important;
}

.bg-gray-900 {
  background-color: var(--ng-gray-900) !important;
}

.bg-opacity-10 {
  --ng-bg-opacity: 0.1;
}

.bg-opacity-25 {
  --ng-bg-opacity: 0.25;
}

.bg-opacity-50 {
  --ng-bg-opacity: 0.5;
}

.bg-opacity-75 {
  --ng-bg-opacity: 0.75;
}

.bg-opacity-100 {
  --ng-bg-opacity: 1;
}

[class*=bg-] {
  background-color: rgba(var(--ng-bg-rgb, 255, 255, 255), var(--ng-bg-opacity, 1)) !important;
}

.bg-gradient {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0)) !important;
}

.bg-gradient-primary {
  background: linear-gradient(45deg, var(--ng-primary), rgb(132.1414634146, 176.6463414634, 249.3585365854)) !important;
  color: var(--ng-white);
}

.bg-gradient-secondary {
  background: linear-gradient(45deg, var(--ng-secondary), rgb(141.8807531381, 154.9016736402, 173.6192468619)) !important;
  color: var(--ng-white);
}

.bg-gradient-success {
  background: linear-gradient(45deg, var(--ng-success), rgb(41.0074626866, 236.4925373134, 171.7164179104)) !important;
  color: var(--ng-white);
}

.bg-gradient-info {
  background: linear-gradient(45deg, var(--ng-info), rgb(45.4311926606, 219.4128440367, 249.0688073394)) !important;
  color: var(--ng-white);
}

.bg-gradient-warning {
  background: linear-gradient(45deg, var(--ng-warning), rgb(248.0118110236, 187.2145669291, 84.4881889764)) !important;
  color: var(--ng-black);
}

.bg-gradient-danger {
  background: linear-gradient(45deg, var(--ng-danger), rgb(245.0295566502, 138.4704433498, 138.4704433498)) !important;
  color: var(--ng-white);
}

.bg-gradient-light {
  background: linear-gradient(45deg, var(--ng-light), white) !important;
  color: var(--ng-dark);
}

.bg-gradient-dark {
  background: linear-gradient(45deg, var(--ng-dark), rgb(35.1315789474, 53.8684210526, 98.3684210526)) !important;
  color: var(--ng-white);
}

.border-primary {
  border-color: var(--ng-primary) !important;
}

.border-secondary {
  border-color: var(--ng-secondary) !important;
}

.border-success {
  border-color: var(--ng-success) !important;
}

.border-info {
  border-color: var(--ng-info) !important;
}

.border-warning {
  border-color: var(--ng-warning) !important;
}

.border-danger {
  border-color: var(--ng-danger) !important;
}

.border-light {
  border-color: var(--ng-light) !important;
}

.border-dark {
  border-color: var(--ng-dark) !important;
}

.border-white {
  border-color: var(--ng-white) !important;
}

.border-black {
  border-color: var(--ng-black) !important;
}

.border-gray-100 {
  border-color: var(--ng-gray-100) !important;
}

.border-gray-200 {
  border-color: var(--ng-gray-200) !important;
}

.border-gray-300 {
  border-color: var(--ng-gray-300) !important;
}

.border-gray-400 {
  border-color: var(--ng-gray-400) !important;
}

.border-gray-500 {
  border-color: var(--ng-gray-500) !important;
}

.border-gray-600 {
  border-color: var(--ng-gray-600) !important;
}

.border-gray-700 {
  border-color: var(--ng-gray-700) !important;
}

.border-gray-800 {
  border-color: var(--ng-gray-800) !important;
}

.border-gray-900 {
  border-color: var(--ng-gray-900) !important;
}

.border-0 {
  border: 0 !important;
}

.border-1 {
  border-width: 1px !important;
}

.border-2 {
  border-width: 2px !important;
}

.border-3 {
  border-width: 3px !important;
}

.border-4 {
  border-width: 4px !important;
}

.border-5 {
  border-width: 5px !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-end-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-start-0 {
  border-left: 0 !important;
}

.border {
  border: 1px solid var(--ng-border-color) !important;
}

.border-top {
  border-top: 1px solid var(--ng-border-color) !important;
}

.border-end {
  border-right: 1px solid var(--ng-border-color) !important;
}

.border-bottom {
  border-bottom: 1px solid var(--ng-border-color) !important;
}

.border-start {
  border-left: 1px solid var(--ng-border-color) !important;
}

.border-solid {
  border-style: solid !important;
}

.border-dashed {
  border-style: dashed !important;
}

.border-dotted {
  border-style: dotted !important;
}

.border-double {
  border-style: double !important;
}

.border-hidden {
  border-style: hidden !important;
}

.border-none {
  border-style: none !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.rounded-1 {
  border-radius: 0.25rem !important;
}

.rounded-2 {
  border-radius: 0.375rem !important;
}

.rounded-3 {
  border-radius: 0.5rem !important;
}

.rounded-4 {
  border-radius: 0.75rem !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-top {
  border-top-left-radius: 0.375rem !important;
  border-top-right-radius: 0.375rem !important;
}

.rounded-end {
  border-top-right-radius: 0.375rem !important;
  border-bottom-right-radius: 0.375rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.375rem !important;
  border-bottom-left-radius: 0.375rem !important;
}

.rounded-start {
  border-top-left-radius: 0.375rem !important;
  border-bottom-left-radius: 0.375rem !important;
}

.shadow-none {
  box-shadow: none !important;
}

.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(2, 6, 23, 0.05) !important;
}

.shadow {
  box-shadow: 0 1px 3px 0 rgba(2, 6, 23, 0.1), 0 1px 2px -1px rgba(2, 6, 23, 0.1) !important;
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(2, 6, 23, 0.1), 0 4px 6px -4px rgba(2, 6, 23, 0.1) !important;
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(2, 6, 23, 0.1), 0 8px 10px -6px rgba(2, 6, 23, 0.1) !important;
}

/*! 
 * NextGen CSS Framework v1.0.0
 * License: MIT
 */
.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mr-1 {
  margin-right: 0.25rem !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1 {
  margin-left: 0.25rem !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mr-2 {
  margin-right: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2 {
  margin-left: 0.5rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mr-3 {
  margin-right: 1rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.ml-3 {
  margin-left: 1rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mr-4 {
  margin-right: 1.5rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4 {
  margin-left: 1.5rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mr-5 {
  margin-right: 3rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.ml-5 {
  margin-left: 3rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1 {
  margin-left: -0.25rem !important;
}

.mx-n1 {
  margin-right: -0.25rem !important;
  margin-left: -0.25rem !important;
}

.my-n1 {
  margin-top: -0.25rem !important;
  margin-bottom: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2 {
  margin-left: -0.5rem !important;
}

.mx-n2 {
  margin-right: -0.5rem !important;
  margin-left: -0.5rem !important;
}

.my-n2 {
  margin-top: -0.5rem !important;
  margin-bottom: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3 {
  margin-top: -1rem !important;
}

.mr-n3 {
  margin-right: -1rem !important;
}

.mb-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3 {
  margin-left: -1rem !important;
}

.mx-n3 {
  margin-right: -1rem !important;
  margin-left: -1rem !important;
}

.my-n3 {
  margin-top: -1rem !important;
  margin-bottom: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4 {
  margin-left: -1.5rem !important;
}

.mx-n4 {
  margin-right: -1.5rem !important;
  margin-left: -1.5rem !important;
}

.my-n4 {
  margin-top: -1.5rem !important;
  margin-bottom: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5 {
  margin-top: -3rem !important;
}

.mr-n5 {
  margin-right: -3rem !important;
}

.mb-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5 {
  margin-left: -3rem !important;
}

.mx-n5 {
  margin-right: -3rem !important;
  margin-left: -3rem !important;
}

.my-n5 {
  margin-top: -3rem !important;
  margin-bottom: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto {
  margin-top: auto !important;
}

.mr-auto {
  margin-right: auto !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ml-auto {
  margin-left: auto !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pr-1 {
  padding-right: 0.25rem !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1 {
  padding-left: 0.25rem !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pr-2 {
  padding-right: 0.5rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2 {
  padding-left: 0.5rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pr-3 {
  padding-right: 1rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pl-3 {
  padding-left: 1rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pr-4 {
  padding-right: 1.5rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4 {
  padding-left: 1.5rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pr-5 {
  padding-right: 3rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.pl-5 {
  padding-left: 3rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.gap-0 {
  gap: 0 !important;
}

.gap-row-0 {
  row-gap: 0 !important;
}

.gap-col-0 {
  column-gap: 0 !important;
}

.gap-1 {
  gap: 0.25rem !important;
}

.gap-row-1 {
  row-gap: 0.25rem !important;
}

.gap-col-1 {
  column-gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-row-2 {
  row-gap: 0.5rem !important;
}

.gap-col-2 {
  column-gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-row-3 {
  row-gap: 1rem !important;
}

.gap-col-3 {
  column-gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.gap-row-4 {
  row-gap: 1.5rem !important;
}

.gap-col-4 {
  column-gap: 1.5rem !important;
}

.gap-5 {
  gap: 3rem !important;
}

.gap-row-5 {
  row-gap: 3rem !important;
}

.gap-col-5 {
  column-gap: 3rem !important;
}

.spacer-y-1 > * + * {
  margin-top: 0.25rem !important;
}

.spacer-y-2 > * + * {
  margin-top: 0.5rem !important;
}

.spacer-y-3 > * + * {
  margin-top: 1rem !important;
}

.spacer-y-4 > * + * {
  margin-top: 1.5rem !important;
}

.spacer-y-5 > * + * {
  margin-top: 3rem !important;
}

.spacer-x-1 > * + * {
  margin-left: 0.25rem !important;
}

.spacer-x-2 > * + * {
  margin-left: 0.5rem !important;
}

.spacer-x-3 > * + * {
  margin-left: 1rem !important;
}

.spacer-x-4 > * + * {
  margin-left: 1.5rem !important;
}

.spacer-x-5 > * + * {
  margin-left: 3rem !important;
}

/*! 
 * NextGen CSS Framework v1.0.0
 * License: MIT
 */
.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-grid {
  display: grid !important;
}

.d-inline-grid {
  display: inline-grid !important;
}

@media (min-width: 0) {
  .d-none {
    display: none !important;
  }
  .d-inline {
    display: inline !important;
  }
  .d-inline-block {
    display: inline-block !important;
  }
  .d-block {
    display: block !important;
  }
  .d-table {
    display: table !important;
  }
  .d-table-row {
    display: table-row !important;
  }
  .d-table-cell {
    display: table-cell !important;
  }
  .d-flex {
    display: flex !important;
  }
  .d-inline-flex {
    display: inline-flex !important;
  }
  .d-grid {
    display: grid !important;
  }
  .d-inline-grid {
    display: inline-grid !important;
  }
}
@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-inline-grid {
    display: inline-grid !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-inline-grid {
    display: inline-grid !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-inline-grid {
    display: inline-grid !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-inline-grid {
    display: inline-grid !important;
  }
}
@media (min-width: 1400px) {
  .d-xxl-none {
    display: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-inline-grid {
    display: inline-grid !important;
  }
}
.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

/*! 
 * NextGen CSS Framework v1.0.0
 * License: MIT
 */
@media (min-width: 0) {
  .d-none {
    display: none !important;
  }
  .d-inline {
    display: inline !important;
  }
  .d-inline-block {
    display: inline-block !important;
  }
  .d-block {
    display: block !important;
  }
  .d-table {
    display: table !important;
  }
  .d-table-row {
    display: table-row !important;
  }
  .d-table-cell {
    display: table-cell !important;
  }
  .d-flex {
    display: flex !important;
  }
  .d-inline-flex {
    display: inline-flex !important;
  }
  .d-grid {
    display: grid !important;
  }
  .d-inline-grid {
    display: inline-grid !important;
  }
}
@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-inline-grid {
    display: inline-grid !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-inline-grid {
    display: inline-grid !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-inline-grid {
    display: inline-grid !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-inline-grid {
    display: inline-grid !important;
  }
}
@media (min-width: 1400px) {
  .d-xxl-none {
    display: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-inline-grid {
    display: inline-grid !important;
  }
}
@media (min-width: 0) {
  .flex-row {
    flex-direction: row !important;
  }
  .flex-column {
    flex-direction: column !important;
  }
  .flex-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-wrap {
    flex-wrap: wrap !important;
  }
  .flex-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-start {
    justify-content: flex-start !important;
  }
  .justify-content-end {
    justify-content: flex-end !important;
  }
  .justify-content-center {
    justify-content: center !important;
  }
  .justify-content-between {
    justify-content: space-between !important;
  }
  .justify-content-around {
    justify-content: space-around !important;
  }
  .justify-content-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-start {
    align-items: flex-start !important;
  }
  .align-items-end {
    align-items: flex-end !important;
  }
  .align-items-center {
    align-items: center !important;
  }
  .align-items-baseline {
    align-items: baseline !important;
  }
  .align-items-stretch {
    align-items: stretch !important;
  }
  .align-self-start {
    align-self: flex-start !important;
  }
  .align-self-end {
    align-self: flex-end !important;
  }
  .align-self-center {
    align-self: center !important;
  }
  .align-self-baseline {
    align-self: baseline !important;
  }
  .align-self-stretch {
    align-self: stretch !important;
  }
  .align-content-start {
    align-content: flex-start !important;
  }
  .align-content-end {
    align-content: flex-end !important;
  }
  .align-content-center {
    align-content: center !important;
  }
  .align-content-between {
    align-content: space-between !important;
  }
  .align-content-around {
    align-content: space-around !important;
  }
  .align-content-stretch {
    align-content: stretch !important;
  }
  .flex-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-shrink-1 {
    flex-shrink: 1 !important;
  }
}
@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
}
@media (min-width: 1400px) {
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    align-content: center !important;
  }
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
}
@media (min-width: 0) {
  .text-left {
    text-align: left !important;
  }
  .text-right {
    text-align: right !important;
  }
  .text-center {
    text-align: center !important;
  }
  .text-justify {
    text-align: justify !important;
  }
  .text-nowrap {
    white-space: nowrap !important;
  }
  .text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
  .text-sm-justify {
    text-align: justify !important;
  }
  .text-sm-nowrap {
    white-space: nowrap !important;
  }
  .text-sm-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
  .text-md-justify {
    text-align: justify !important;
  }
  .text-md-nowrap {
    white-space: nowrap !important;
  }
  .text-md-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
  .text-lg-justify {
    text-align: justify !important;
  }
  .text-lg-nowrap {
    white-space: nowrap !important;
  }
  .text-lg-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
  .text-xl-justify {
    text-align: justify !important;
  }
  .text-xl-nowrap {
    white-space: nowrap !important;
  }
  .text-xl-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
@media (min-width: 1400px) {
  .text-xxl-left {
    text-align: left !important;
  }
  .text-xxl-right {
    text-align: right !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
  .text-xxl-justify {
    text-align: justify !important;
  }
  .text-xxl-nowrap {
    white-space: nowrap !important;
  }
  .text-xxl-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
@media (min-width: 0) {
  .position-static {
    position: static !important;
  }
  .position-relative {
    position: relative !important;
  }
  .position-absolute {
    position: absolute !important;
  }
  .position-fixed {
    position: fixed !important;
  }
  .position-sticky {
    position: sticky !important;
  }
}
@media (min-width: 576px) {
  .position-sm-static {
    position: static !important;
  }
  .position-sm-relative {
    position: relative !important;
  }
  .position-sm-absolute {
    position: absolute !important;
  }
  .position-sm-fixed {
    position: fixed !important;
  }
  .position-sm-sticky {
    position: sticky !important;
  }
}
@media (min-width: 768px) {
  .position-md-static {
    position: static !important;
  }
  .position-md-relative {
    position: relative !important;
  }
  .position-md-absolute {
    position: absolute !important;
  }
  .position-md-fixed {
    position: fixed !important;
  }
  .position-md-sticky {
    position: sticky !important;
  }
}
@media (min-width: 992px) {
  .position-lg-static {
    position: static !important;
  }
  .position-lg-relative {
    position: relative !important;
  }
  .position-lg-absolute {
    position: absolute !important;
  }
  .position-lg-fixed {
    position: fixed !important;
  }
  .position-lg-sticky {
    position: sticky !important;
  }
}
@media (min-width: 1200px) {
  .position-xl-static {
    position: static !important;
  }
  .position-xl-relative {
    position: relative !important;
  }
  .position-xl-absolute {
    position: absolute !important;
  }
  .position-xl-fixed {
    position: fixed !important;
  }
  .position-xl-sticky {
    position: sticky !important;
  }
}
@media (min-width: 1400px) {
  .position-xxl-static {
    position: static !important;
  }
  .position-xxl-relative {
    position: relative !important;
  }
  .position-xxl-absolute {
    position: absolute !important;
  }
  .position-xxl-fixed {
    position: fixed !important;
  }
  .position-xxl-sticky {
    position: sticky !important;
  }
}
@media (min-width: 0) {
  .gap-0 {
    gap: 0 !important;
  }
  .column-gap-0 {
    column-gap: 0 !important;
  }
  .row-gap-0 {
    row-gap: 0 !important;
  }
  .gap-1 {
    gap: 0.25rem !important;
  }
  .column-gap-1 {
    column-gap: 0.25rem !important;
  }
  .row-gap-1 {
    row-gap: 0.25rem !important;
  }
  .gap-2 {
    gap: 0.5rem !important;
  }
  .column-gap-2 {
    column-gap: 0.5rem !important;
  }
  .row-gap-2 {
    row-gap: 0.5rem !important;
  }
  .gap-3 {
    gap: 1rem !important;
  }
  .column-gap-3 {
    column-gap: 1rem !important;
  }
  .row-gap-3 {
    row-gap: 1rem !important;
  }
  .gap-4 {
    gap: 1.5rem !important;
  }
  .column-gap-4 {
    column-gap: 1.5rem !important;
  }
  .row-gap-4 {
    row-gap: 1.5rem !important;
  }
  .gap-5 {
    gap: 3rem !important;
  }
  .column-gap-5 {
    column-gap: 3rem !important;
  }
  .row-gap-5 {
    row-gap: 3rem !important;
  }
}
@media (min-width: 576px) {
  .gap-sm-0 {
    gap: 0 !important;
  }
  .column-gap-sm-0 {
    column-gap: 0 !important;
  }
  .row-gap-sm-0 {
    row-gap: 0 !important;
  }
  .gap-sm-1 {
    gap: 0.25rem !important;
  }
  .column-gap-sm-1 {
    column-gap: 0.25rem !important;
  }
  .row-gap-sm-1 {
    row-gap: 0.25rem !important;
  }
  .gap-sm-2 {
    gap: 0.5rem !important;
  }
  .column-gap-sm-2 {
    column-gap: 0.5rem !important;
  }
  .row-gap-sm-2 {
    row-gap: 0.5rem !important;
  }
  .gap-sm-3 {
    gap: 1rem !important;
  }
  .column-gap-sm-3 {
    column-gap: 1rem !important;
  }
  .row-gap-sm-3 {
    row-gap: 1rem !important;
  }
  .gap-sm-4 {
    gap: 1.5rem !important;
  }
  .column-gap-sm-4 {
    column-gap: 1.5rem !important;
  }
  .row-gap-sm-4 {
    row-gap: 1.5rem !important;
  }
  .gap-sm-5 {
    gap: 3rem !important;
  }
  .column-gap-sm-5 {
    column-gap: 3rem !important;
  }
  .row-gap-sm-5 {
    row-gap: 3rem !important;
  }
}
@media (min-width: 768px) {
  .gap-md-0 {
    gap: 0 !important;
  }
  .column-gap-md-0 {
    column-gap: 0 !important;
  }
  .row-gap-md-0 {
    row-gap: 0 !important;
  }
  .gap-md-1 {
    gap: 0.25rem !important;
  }
  .column-gap-md-1 {
    column-gap: 0.25rem !important;
  }
  .row-gap-md-1 {
    row-gap: 0.25rem !important;
  }
  .gap-md-2 {
    gap: 0.5rem !important;
  }
  .column-gap-md-2 {
    column-gap: 0.5rem !important;
  }
  .row-gap-md-2 {
    row-gap: 0.5rem !important;
  }
  .gap-md-3 {
    gap: 1rem !important;
  }
  .column-gap-md-3 {
    column-gap: 1rem !important;
  }
  .row-gap-md-3 {
    row-gap: 1rem !important;
  }
  .gap-md-4 {
    gap: 1.5rem !important;
  }
  .column-gap-md-4 {
    column-gap: 1.5rem !important;
  }
  .row-gap-md-4 {
    row-gap: 1.5rem !important;
  }
  .gap-md-5 {
    gap: 3rem !important;
  }
  .column-gap-md-5 {
    column-gap: 3rem !important;
  }
  .row-gap-md-5 {
    row-gap: 3rem !important;
  }
}
@media (min-width: 992px) {
  .gap-lg-0 {
    gap: 0 !important;
  }
  .column-gap-lg-0 {
    column-gap: 0 !important;
  }
  .row-gap-lg-0 {
    row-gap: 0 !important;
  }
  .gap-lg-1 {
    gap: 0.25rem !important;
  }
  .column-gap-lg-1 {
    column-gap: 0.25rem !important;
  }
  .row-gap-lg-1 {
    row-gap: 0.25rem !important;
  }
  .gap-lg-2 {
    gap: 0.5rem !important;
  }
  .column-gap-lg-2 {
    column-gap: 0.5rem !important;
  }
  .row-gap-lg-2 {
    row-gap: 0.5rem !important;
  }
  .gap-lg-3 {
    gap: 1rem !important;
  }
  .column-gap-lg-3 {
    column-gap: 1rem !important;
  }
  .row-gap-lg-3 {
    row-gap: 1rem !important;
  }
  .gap-lg-4 {
    gap: 1.5rem !important;
  }
  .column-gap-lg-4 {
    column-gap: 1.5rem !important;
  }
  .row-gap-lg-4 {
    row-gap: 1.5rem !important;
  }
  .gap-lg-5 {
    gap: 3rem !important;
  }
  .column-gap-lg-5 {
    column-gap: 3rem !important;
  }
  .row-gap-lg-5 {
    row-gap: 3rem !important;
  }
}
@media (min-width: 1200px) {
  .gap-xl-0 {
    gap: 0 !important;
  }
  .column-gap-xl-0 {
    column-gap: 0 !important;
  }
  .row-gap-xl-0 {
    row-gap: 0 !important;
  }
  .gap-xl-1 {
    gap: 0.25rem !important;
  }
  .column-gap-xl-1 {
    column-gap: 0.25rem !important;
  }
  .row-gap-xl-1 {
    row-gap: 0.25rem !important;
  }
  .gap-xl-2 {
    gap: 0.5rem !important;
  }
  .column-gap-xl-2 {
    column-gap: 0.5rem !important;
  }
  .row-gap-xl-2 {
    row-gap: 0.5rem !important;
  }
  .gap-xl-3 {
    gap: 1rem !important;
  }
  .column-gap-xl-3 {
    column-gap: 1rem !important;
  }
  .row-gap-xl-3 {
    row-gap: 1rem !important;
  }
  .gap-xl-4 {
    gap: 1.5rem !important;
  }
  .column-gap-xl-4 {
    column-gap: 1.5rem !important;
  }
  .row-gap-xl-4 {
    row-gap: 1.5rem !important;
  }
  .gap-xl-5 {
    gap: 3rem !important;
  }
  .column-gap-xl-5 {
    column-gap: 3rem !important;
  }
  .row-gap-xl-5 {
    row-gap: 3rem !important;
  }
}
@media (min-width: 1400px) {
  .gap-xxl-0 {
    gap: 0 !important;
  }
  .column-gap-xxl-0 {
    column-gap: 0 !important;
  }
  .row-gap-xxl-0 {
    row-gap: 0 !important;
  }
  .gap-xxl-1 {
    gap: 0.25rem !important;
  }
  .column-gap-xxl-1 {
    column-gap: 0.25rem !important;
  }
  .row-gap-xxl-1 {
    row-gap: 0.25rem !important;
  }
  .gap-xxl-2 {
    gap: 0.5rem !important;
  }
  .column-gap-xxl-2 {
    column-gap: 0.5rem !important;
  }
  .row-gap-xxl-2 {
    row-gap: 0.5rem !important;
  }
  .gap-xxl-3 {
    gap: 1rem !important;
  }
  .column-gap-xxl-3 {
    column-gap: 1rem !important;
  }
  .row-gap-xxl-3 {
    row-gap: 1rem !important;
  }
  .gap-xxl-4 {
    gap: 1.5rem !important;
  }
  .column-gap-xxl-4 {
    column-gap: 1.5rem !important;
  }
  .row-gap-xxl-4 {
    row-gap: 1.5rem !important;
  }
  .gap-xxl-5 {
    gap: 3rem !important;
  }
  .column-gap-xxl-5 {
    column-gap: 3rem !important;
  }
  .row-gap-xxl-5 {
    row-gap: 3rem !important;
  }
}
@media (min-width: 0) {
  .w-auto {
    width: auto !important;
  }
  .w-25 {
    width: 25% !important;
  }
  .w-50 {
    width: 50% !important;
  }
  .w-75 {
    width: 75% !important;
  }
  .w-100 {
    width: 100% !important;
  }
  .w-fit {
    width: fit-content !important;
  }
  .w-max {
    width: max-content !important;
  }
  .w-min {
    width: min-content !important;
  }
  .w-vh-100 {
    width: 100vh !important;
  }
  .mw-100 {
    max-width: 100% !important;
  }
  .vw-100 {
    width: 100vw !important;
  }
  .h-auto {
    height: auto !important;
  }
  .h-25 {
    height: 25% !important;
  }
  .h-50 {
    height: 50% !important;
  }
  .h-75 {
    height: 75% !important;
  }
  .h-100 {
    height: 100% !important;
  }
  .h-fit {
    height: fit-content !important;
  }
  .h-max {
    height: max-content !important;
  }
  .h-min {
    height: min-content !important;
  }
  .h-vw-100 {
    height: 100vw !important;
  }
  .mh-100 {
    max-height: 100% !important;
  }
  .vh-100 {
    height: 100vh !important;
  }
}
@media (min-width: 576px) {
  .w-sm-auto {
    width: auto !important;
  }
  .w-sm-25 {
    width: 25% !important;
  }
  .w-sm-50 {
    width: 50% !important;
  }
  .w-sm-75 {
    width: 75% !important;
  }
  .w-sm-100 {
    width: 100% !important;
  }
  .w-sm-fit {
    width: fit-content !important;
  }
  .w-sm-max {
    width: max-content !important;
  }
  .w-sm-min {
    width: min-content !important;
  }
  .w-sm-vh-100 {
    width: 100vh !important;
  }
  .mw-sm-100 {
    max-width: 100% !important;
  }
  .vw-sm-100 {
    width: 100vw !important;
  }
  .h-sm-auto {
    height: auto !important;
  }
  .h-sm-25 {
    height: 25% !important;
  }
  .h-sm-50 {
    height: 50% !important;
  }
  .h-sm-75 {
    height: 75% !important;
  }
  .h-sm-100 {
    height: 100% !important;
  }
  .h-sm-fit {
    height: fit-content !important;
  }
  .h-sm-max {
    height: max-content !important;
  }
  .h-sm-min {
    height: min-content !important;
  }
  .h-sm-vw-100 {
    height: 100vw !important;
  }
  .mh-sm-100 {
    max-height: 100% !important;
  }
  .vh-sm-100 {
    height: 100vh !important;
  }
}
@media (min-width: 768px) {
  .w-md-auto {
    width: auto !important;
  }
  .w-md-25 {
    width: 25% !important;
  }
  .w-md-50 {
    width: 50% !important;
  }
  .w-md-75 {
    width: 75% !important;
  }
  .w-md-100 {
    width: 100% !important;
  }
  .w-md-fit {
    width: fit-content !important;
  }
  .w-md-max {
    width: max-content !important;
  }
  .w-md-min {
    width: min-content !important;
  }
  .w-md-vh-100 {
    width: 100vh !important;
  }
  .mw-md-100 {
    max-width: 100% !important;
  }
  .vw-md-100 {
    width: 100vw !important;
  }
  .h-md-auto {
    height: auto !important;
  }
  .h-md-25 {
    height: 25% !important;
  }
  .h-md-50 {
    height: 50% !important;
  }
  .h-md-75 {
    height: 75% !important;
  }
  .h-md-100 {
    height: 100% !important;
  }
  .h-md-fit {
    height: fit-content !important;
  }
  .h-md-max {
    height: max-content !important;
  }
  .h-md-min {
    height: min-content !important;
  }
  .h-md-vw-100 {
    height: 100vw !important;
  }
  .mh-md-100 {
    max-height: 100% !important;
  }
  .vh-md-100 {
    height: 100vh !important;
  }
}
@media (min-width: 992px) {
  .w-lg-auto {
    width: auto !important;
  }
  .w-lg-25 {
    width: 25% !important;
  }
  .w-lg-50 {
    width: 50% !important;
  }
  .w-lg-75 {
    width: 75% !important;
  }
  .w-lg-100 {
    width: 100% !important;
  }
  .w-lg-fit {
    width: fit-content !important;
  }
  .w-lg-max {
    width: max-content !important;
  }
  .w-lg-min {
    width: min-content !important;
  }
  .w-lg-vh-100 {
    width: 100vh !important;
  }
  .mw-lg-100 {
    max-width: 100% !important;
  }
  .vw-lg-100 {
    width: 100vw !important;
  }
  .h-lg-auto {
    height: auto !important;
  }
  .h-lg-25 {
    height: 25% !important;
  }
  .h-lg-50 {
    height: 50% !important;
  }
  .h-lg-75 {
    height: 75% !important;
  }
  .h-lg-100 {
    height: 100% !important;
  }
  .h-lg-fit {
    height: fit-content !important;
  }
  .h-lg-max {
    height: max-content !important;
  }
  .h-lg-min {
    height: min-content !important;
  }
  .h-lg-vw-100 {
    height: 100vw !important;
  }
  .mh-lg-100 {
    max-height: 100% !important;
  }
  .vh-lg-100 {
    height: 100vh !important;
  }
}
@media (min-width: 1200px) {
  .w-xl-auto {
    width: auto !important;
  }
  .w-xl-25 {
    width: 25% !important;
  }
  .w-xl-50 {
    width: 50% !important;
  }
  .w-xl-75 {
    width: 75% !important;
  }
  .w-xl-100 {
    width: 100% !important;
  }
  .w-xl-fit {
    width: fit-content !important;
  }
  .w-xl-max {
    width: max-content !important;
  }
  .w-xl-min {
    width: min-content !important;
  }
  .w-xl-vh-100 {
    width: 100vh !important;
  }
  .mw-xl-100 {
    max-width: 100% !important;
  }
  .vw-xl-100 {
    width: 100vw !important;
  }
  .h-xl-auto {
    height: auto !important;
  }
  .h-xl-25 {
    height: 25% !important;
  }
  .h-xl-50 {
    height: 50% !important;
  }
  .h-xl-75 {
    height: 75% !important;
  }
  .h-xl-100 {
    height: 100% !important;
  }
  .h-xl-fit {
    height: fit-content !important;
  }
  .h-xl-max {
    height: max-content !important;
  }
  .h-xl-min {
    height: min-content !important;
  }
  .h-xl-vw-100 {
    height: 100vw !important;
  }
  .mh-xl-100 {
    max-height: 100% !important;
  }
  .vh-xl-100 {
    height: 100vh !important;
  }
}
@media (min-width: 1400px) {
  .w-xxl-auto {
    width: auto !important;
  }
  .w-xxl-25 {
    width: 25% !important;
  }
  .w-xxl-50 {
    width: 50% !important;
  }
  .w-xxl-75 {
    width: 75% !important;
  }
  .w-xxl-100 {
    width: 100% !important;
  }
  .w-xxl-fit {
    width: fit-content !important;
  }
  .w-xxl-max {
    width: max-content !important;
  }
  .w-xxl-min {
    width: min-content !important;
  }
  .w-xxl-vh-100 {
    width: 100vh !important;
  }
  .mw-xxl-100 {
    max-width: 100% !important;
  }
  .vw-xxl-100 {
    width: 100vw !important;
  }
  .h-xxl-auto {
    height: auto !important;
  }
  .h-xxl-25 {
    height: 25% !important;
  }
  .h-xxl-50 {
    height: 50% !important;
  }
  .h-xxl-75 {
    height: 75% !important;
  }
  .h-xxl-100 {
    height: 100% !important;
  }
  .h-xxl-fit {
    height: fit-content !important;
  }
  .h-xxl-max {
    height: max-content !important;
  }
  .h-xxl-min {
    height: min-content !important;
  }
  .h-xxl-vw-100 {
    height: 100vw !important;
  }
  .mh-xxl-100 {
    max-height: 100% !important;
  }
  .vh-xxl-100 {
    height: 100vh !important;
  }
}
@media (min-width: 0) {
  .m-0 {
    margin: 0 !important;
  }
  .mt-0 {
    margin-top: 0 !important;
  }
  .mr-0 {
    margin-right: 0 !important;
  }
  .mb-0 {
    margin-bottom: 0 !important;
  }
  .ml-0 {
    margin-left: 0 !important;
  }
  .mx-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .m-n0 {
    margin: 0 !important;
  }
  .mt-n0 {
    margin-top: 0 !important;
  }
  .mr-n0 {
    margin-right: 0 !important;
  }
  .mb-n0 {
    margin-bottom: 0 !important;
  }
  .ml-n0 {
    margin-left: 0 !important;
  }
  .mx-n0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .my-n0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .p-0 {
    padding: 0 !important;
  }
  .pt-0 {
    padding-top: 0 !important;
  }
  .pr-0 {
    padding-right: 0 !important;
  }
  .pb-0 {
    padding-bottom: 0 !important;
  }
  .pl-0 {
    padding-left: 0 !important;
  }
  .px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .m-1 {
    margin: 0.25rem !important;
  }
  .mt-1 {
    margin-top: 0.25rem !important;
  }
  .mr-1 {
    margin-right: 0.25rem !important;
  }
  .mb-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-1 {
    margin-left: 0.25rem !important;
  }
  .mx-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .m-n1 {
    margin: -0.25rem !important;
  }
  .mt-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-n1 {
    margin-left: -0.25rem !important;
  }
  .mx-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  .my-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .p-1 {
    padding: 0.25rem !important;
  }
  .pt-1 {
    padding-top: 0.25rem !important;
  }
  .pr-1 {
    padding-right: 0.25rem !important;
  }
  .pb-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-1 {
    padding-left: 0.25rem !important;
  }
  .px-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .m-2 {
    margin: 0.5rem !important;
  }
  .mt-2 {
    margin-top: 0.5rem !important;
  }
  .mr-2 {
    margin-right: 0.5rem !important;
  }
  .mb-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-2 {
    margin-left: 0.5rem !important;
  }
  .mx-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .m-n2 {
    margin: -0.5rem !important;
  }
  .mt-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-n2 {
    margin-left: -0.5rem !important;
  }
  .mx-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .my-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .p-2 {
    padding: 0.5rem !important;
  }
  .pt-2 {
    padding-top: 0.5rem !important;
  }
  .pr-2 {
    padding-right: 0.5rem !important;
  }
  .pb-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-2 {
    padding-left: 0.5rem !important;
  }
  .px-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .m-3 {
    margin: 1rem !important;
  }
  .mt-3 {
    margin-top: 1rem !important;
  }
  .mr-3 {
    margin-right: 1rem !important;
  }
  .mb-3 {
    margin-bottom: 1rem !important;
  }
  .ml-3 {
    margin-left: 1rem !important;
  }
  .mx-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .my-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .m-n3 {
    margin: -1rem !important;
  }
  .mt-n3 {
    margin-top: -1rem !important;
  }
  .mr-n3 {
    margin-right: -1rem !important;
  }
  .mb-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-n3 {
    margin-left: -1rem !important;
  }
  .mx-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .my-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .p-3 {
    padding: 1rem !important;
  }
  .pt-3 {
    padding-top: 1rem !important;
  }
  .pr-3 {
    padding-right: 1rem !important;
  }
  .pb-3 {
    padding-bottom: 1rem !important;
  }
  .pl-3 {
    padding-left: 1rem !important;
  }
  .px-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .m-4 {
    margin: 1.5rem !important;
  }
  .mt-4 {
    margin-top: 1.5rem !important;
  }
  .mr-4 {
    margin-right: 1.5rem !important;
  }
  .mb-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-4 {
    margin-left: 1.5rem !important;
  }
  .mx-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .m-n4 {
    margin: -1.5rem !important;
  }
  .mt-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-n4 {
    margin-left: -1.5rem !important;
  }
  .mx-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .my-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .p-4 {
    padding: 1.5rem !important;
  }
  .pt-4 {
    padding-top: 1.5rem !important;
  }
  .pr-4 {
    padding-right: 1.5rem !important;
  }
  .pb-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-4 {
    padding-left: 1.5rem !important;
  }
  .px-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .m-5 {
    margin: 3rem !important;
  }
  .mt-5 {
    margin-top: 3rem !important;
  }
  .mr-5 {
    margin-right: 3rem !important;
  }
  .mb-5 {
    margin-bottom: 3rem !important;
  }
  .ml-5 {
    margin-left: 3rem !important;
  }
  .mx-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .m-n5 {
    margin: -3rem !important;
  }
  .mt-n5 {
    margin-top: -3rem !important;
  }
  .mr-n5 {
    margin-right: -3rem !important;
  }
  .mb-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-n5 {
    margin-left: -3rem !important;
  }
  .mx-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .my-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .p-5 {
    padding: 3rem !important;
  }
  .pt-5 {
    padding-top: 3rem !important;
  }
  .pr-5 {
    padding-right: 3rem !important;
  }
  .pb-5 {
    padding-bottom: 3rem !important;
  }
  .pl-5 {
    padding-left: 3rem !important;
  }
  .px-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .m-auto {
    margin: auto !important;
  }
  .mt-auto {
    margin-top: auto !important;
  }
  .mr-auto {
    margin-right: auto !important;
  }
  .mb-auto {
    margin-bottom: auto !important;
  }
  .ml-auto {
    margin-left: auto !important;
  }
  .mx-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
}
@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mr-sm-0 {
    margin-right: 0 !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .ml-sm-0 {
    margin-left: 0 !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .m-sm-n0 {
    margin: 0 !important;
  }
  .mt-sm-n0 {
    margin-top: 0 !important;
  }
  .mr-sm-n0 {
    margin-right: 0 !important;
  }
  .mb-sm-n0 {
    margin-bottom: 0 !important;
  }
  .ml-sm-n0 {
    margin-left: 0 !important;
  }
  .mx-sm-n0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .my-sm-n0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pr-sm-0 {
    padding-right: 0 !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pl-sm-0 {
    padding-left: 0 !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mr-sm-1 {
    margin-right: 0.25rem !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-sm-1 {
    margin-left: 0.25rem !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .m-sm-n1 {
    margin: -0.25rem !important;
  }
  .mt-sm-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-sm-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-sm-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-sm-n1 {
    margin-left: -0.25rem !important;
  }
  .mx-sm-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  .my-sm-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pr-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-sm-1 {
    padding-left: 0.25rem !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mr-sm-2 {
    margin-right: 0.5rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-sm-2 {
    margin-left: 0.5rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .m-sm-n2 {
    margin: -0.5rem !important;
  }
  .mt-sm-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-sm-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-sm-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-sm-n2 {
    margin-left: -0.5rem !important;
  }
  .mx-sm-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .my-sm-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pr-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-sm-2 {
    padding-left: 0.5rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mr-sm-3 {
    margin-right: 1rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .ml-sm-3 {
    margin-left: 1rem !important;
  }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .m-sm-n3 {
    margin: -1rem !important;
  }
  .mt-sm-n3 {
    margin-top: -1rem !important;
  }
  .mr-sm-n3 {
    margin-right: -1rem !important;
  }
  .mb-sm-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-sm-n3 {
    margin-left: -1rem !important;
  }
  .mx-sm-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .my-sm-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pr-sm-3 {
    padding-right: 1rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pl-sm-3 {
    padding-left: 1rem !important;
  }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mr-sm-4 {
    margin-right: 1.5rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-sm-4 {
    margin-left: 1.5rem !important;
  }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .m-sm-n4 {
    margin: -1.5rem !important;
  }
  .mt-sm-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-sm-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-sm-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-sm-n4 {
    margin-left: -1.5rem !important;
  }
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .my-sm-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pr-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-sm-4 {
    padding-left: 1.5rem !important;
  }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .mr-sm-5 {
    margin-right: 3rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .ml-sm-5 {
    margin-left: 3rem !important;
  }
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .m-sm-n5 {
    margin: -3rem !important;
  }
  .mt-sm-n5 {
    margin-top: -3rem !important;
  }
  .mr-sm-n5 {
    margin-right: -3rem !important;
  }
  .mb-sm-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-sm-n5 {
    margin-left: -3rem !important;
  }
  .mx-sm-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .my-sm-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .pr-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .pl-sm-5 {
    padding-left: 3rem !important;
  }
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-auto {
    margin-left: auto !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mr-md-0 {
    margin-right: 0 !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .ml-md-0 {
    margin-left: 0 !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .m-md-n0 {
    margin: 0 !important;
  }
  .mt-md-n0 {
    margin-top: 0 !important;
  }
  .mr-md-n0 {
    margin-right: 0 !important;
  }
  .mb-md-n0 {
    margin-bottom: 0 !important;
  }
  .ml-md-n0 {
    margin-left: 0 !important;
  }
  .mx-md-n0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .my-md-n0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pr-md-0 {
    padding-right: 0 !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pl-md-0 {
    padding-left: 0 !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mr-md-1 {
    margin-right: 0.25rem !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-md-1 {
    margin-left: 0.25rem !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .m-md-n1 {
    margin: -0.25rem !important;
  }
  .mt-md-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-md-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-md-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-md-n1 {
    margin-left: -0.25rem !important;
  }
  .mx-md-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  .my-md-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pr-md-1 {
    padding-right: 0.25rem !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-md-1 {
    padding-left: 0.25rem !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mr-md-2 {
    margin-right: 0.5rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-md-2 {
    margin-left: 0.5rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .m-md-n2 {
    margin: -0.5rem !important;
  }
  .mt-md-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-md-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-md-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-md-n2 {
    margin-left: -0.5rem !important;
  }
  .mx-md-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .my-md-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pr-md-2 {
    padding-right: 0.5rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-md-2 {
    padding-left: 0.5rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mr-md-3 {
    margin-right: 1rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .ml-md-3 {
    margin-left: 1rem !important;
  }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .m-md-n3 {
    margin: -1rem !important;
  }
  .mt-md-n3 {
    margin-top: -1rem !important;
  }
  .mr-md-n3 {
    margin-right: -1rem !important;
  }
  .mb-md-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-md-n3 {
    margin-left: -1rem !important;
  }
  .mx-md-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .my-md-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pr-md-3 {
    padding-right: 1rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pl-md-3 {
    padding-left: 1rem !important;
  }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mr-md-4 {
    margin-right: 1.5rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-md-4 {
    margin-left: 1.5rem !important;
  }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .m-md-n4 {
    margin: -1.5rem !important;
  }
  .mt-md-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-md-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-md-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-md-n4 {
    margin-left: -1.5rem !important;
  }
  .mx-md-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .my-md-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pr-md-4 {
    padding-right: 1.5rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-md-4 {
    padding-left: 1.5rem !important;
  }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .mr-md-5 {
    margin-right: 3rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .ml-md-5 {
    margin-left: 3rem !important;
  }
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .m-md-n5 {
    margin: -3rem !important;
  }
  .mt-md-n5 {
    margin-top: -3rem !important;
  }
  .mr-md-n5 {
    margin-right: -3rem !important;
  }
  .mb-md-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-md-n5 {
    margin-left: -3rem !important;
  }
  .mx-md-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .my-md-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pr-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .pl-md-5 {
    padding-left: 3rem !important;
  }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .mr-md-auto {
    margin-right: auto !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-auto {
    margin-left: auto !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
}
@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mr-lg-0 {
    margin-right: 0 !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .ml-lg-0 {
    margin-left: 0 !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .m-lg-n0 {
    margin: 0 !important;
  }
  .mt-lg-n0 {
    margin-top: 0 !important;
  }
  .mr-lg-n0 {
    margin-right: 0 !important;
  }
  .mb-lg-n0 {
    margin-bottom: 0 !important;
  }
  .ml-lg-n0 {
    margin-left: 0 !important;
  }
  .mx-lg-n0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .my-lg-n0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pr-lg-0 {
    padding-right: 0 !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pl-lg-0 {
    padding-left: 0 !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mr-lg-1 {
    margin-right: 0.25rem !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-lg-1 {
    margin-left: 0.25rem !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .m-lg-n1 {
    margin: -0.25rem !important;
  }
  .mt-lg-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-lg-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-lg-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-lg-n1 {
    margin-left: -0.25rem !important;
  }
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  .my-lg-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pr-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-lg-1 {
    padding-left: 0.25rem !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mr-lg-2 {
    margin-right: 0.5rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-lg-2 {
    margin-left: 0.5rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .m-lg-n2 {
    margin: -0.5rem !important;
  }
  .mt-lg-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-lg-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-lg-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-lg-n2 {
    margin-left: -0.5rem !important;
  }
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .my-lg-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pr-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-lg-2 {
    padding-left: 0.5rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mr-lg-3 {
    margin-right: 1rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .ml-lg-3 {
    margin-left: 1rem !important;
  }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .m-lg-n3 {
    margin: -1rem !important;
  }
  .mt-lg-n3 {
    margin-top: -1rem !important;
  }
  .mr-lg-n3 {
    margin-right: -1rem !important;
  }
  .mb-lg-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-lg-n3 {
    margin-left: -1rem !important;
  }
  .mx-lg-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .my-lg-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pr-lg-3 {
    padding-right: 1rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pl-lg-3 {
    padding-left: 1rem !important;
  }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mr-lg-4 {
    margin-right: 1.5rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-lg-4 {
    margin-left: 1.5rem !important;
  }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .m-lg-n4 {
    margin: -1.5rem !important;
  }
  .mt-lg-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-lg-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-lg-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-lg-n4 {
    margin-left: -1.5rem !important;
  }
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .my-lg-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pr-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-lg-4 {
    padding-left: 1.5rem !important;
  }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .mr-lg-5 {
    margin-right: 3rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .ml-lg-5 {
    margin-left: 3rem !important;
  }
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .m-lg-n5 {
    margin: -3rem !important;
  }
  .mt-lg-n5 {
    margin-top: -3rem !important;
  }
  .mr-lg-n5 {
    margin-right: -3rem !important;
  }
  .mb-lg-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-lg-n5 {
    margin-left: -3rem !important;
  }
  .mx-lg-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .my-lg-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .pr-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-5 {
    padding-left: 3rem !important;
  }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-auto {
    margin-left: auto !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
}
@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mr-xl-0 {
    margin-right: 0 !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xl-0 {
    margin-left: 0 !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .m-xl-n0 {
    margin: 0 !important;
  }
  .mt-xl-n0 {
    margin-top: 0 !important;
  }
  .mr-xl-n0 {
    margin-right: 0 !important;
  }
  .mb-xl-n0 {
    margin-bottom: 0 !important;
  }
  .ml-xl-n0 {
    margin-left: 0 !important;
  }
  .mx-xl-n0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .my-xl-n0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pr-xl-0 {
    padding-right: 0 !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xl-0 {
    padding-left: 0 !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xl-1 {
    margin-left: 0.25rem !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .m-xl-n1 {
    margin: -0.25rem !important;
  }
  .mt-xl-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-xl-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-xl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xl-n1 {
    margin-left: -0.25rem !important;
  }
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  .my-xl-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xl-1 {
    padding-left: 0.25rem !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xl-2 {
    margin-left: 0.5rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .m-xl-n2 {
    margin: -0.5rem !important;
  }
  .mt-xl-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-xl-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-xl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-xl-n2 {
    margin-left: -0.5rem !important;
  }
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .my-xl-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xl-2 {
    padding-left: 0.5rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mr-xl-3 {
    margin-right: 1rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xl-3 {
    margin-left: 1rem !important;
  }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .m-xl-n3 {
    margin: -1rem !important;
  }
  .mt-xl-n3 {
    margin-top: -1rem !important;
  }
  .mr-xl-n3 {
    margin-right: -1rem !important;
  }
  .mb-xl-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-xl-n3 {
    margin-left: -1rem !important;
  }
  .mx-xl-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .my-xl-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pr-xl-3 {
    padding-right: 1rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xl-3 {
    padding-left: 1rem !important;
  }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xl-4 {
    margin-left: 1.5rem !important;
  }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .m-xl-n4 {
    margin: -1.5rem !important;
  }
  .mt-xl-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-xl-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-xl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-xl-n4 {
    margin-left: -1.5rem !important;
  }
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .my-xl-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xl-4 {
    padding-left: 1.5rem !important;
  }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .mr-xl-5 {
    margin-right: 3rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xl-5 {
    margin-left: 3rem !important;
  }
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .m-xl-n5 {
    margin: -3rem !important;
  }
  .mt-xl-n5 {
    margin-top: -3rem !important;
  }
  .mr-xl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xl-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-xl-n5 {
    margin-left: -3rem !important;
  }
  .mx-xl-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .my-xl-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .pr-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xl-5 {
    padding-left: 3rem !important;
  }
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-auto {
    margin-left: auto !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
}
@media (min-width: 1400px) {
  .m-xxl-0 {
    margin: 0 !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mr-xxl-0 {
    margin-right: 0 !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xxl-0 {
    margin-left: 0 !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .m-xxl-n0 {
    margin: 0 !important;
  }
  .mt-xxl-n0 {
    margin-top: 0 !important;
  }
  .mr-xxl-n0 {
    margin-right: 0 !important;
  }
  .mb-xxl-n0 {
    margin-bottom: 0 !important;
  }
  .ml-xxl-n0 {
    margin-left: 0 !important;
  }
  .mx-xxl-n0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .my-xxl-n0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pr-xxl-0 {
    padding-right: 0 !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xxl-0 {
    padding-left: 0 !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .m-xxl-n1 {
    margin: -0.25rem !important;
  }
  .mt-xxl-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-xxl-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-xxl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xxl-n1 {
    margin-left: -0.25rem !important;
  }
  .mx-xxl-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  .my-xxl-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .m-xxl-n2 {
    margin: -0.5rem !important;
  }
  .mt-xxl-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-xxl-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-xxl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-xxl-n2 {
    margin-left: -0.5rem !important;
  }
  .mx-xxl-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .my-xxl-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .mt-xxl-3 {
    margin-top: 1rem !important;
  }
  .mr-xxl-3 {
    margin-right: 1rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xxl-3 {
    margin-left: 1rem !important;
  }
  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .m-xxl-n3 {
    margin: -1rem !important;
  }
  .mt-xxl-n3 {
    margin-top: -1rem !important;
  }
  .mr-xxl-n3 {
    margin-right: -1rem !important;
  }
  .mb-xxl-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-xxl-n3 {
    margin-left: -1rem !important;
  }
  .mx-xxl-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .my-xxl-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .pt-xxl-3 {
    padding-top: 1rem !important;
  }
  .pr-xxl-3 {
    padding-right: 1rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xxl-3 {
    padding-left: 1rem !important;
  }
  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .m-xxl-n4 {
    margin: -1.5rem !important;
  }
  .mt-xxl-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-xxl-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-xxl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-xxl-n4 {
    margin-left: -1.5rem !important;
  }
  .mx-xxl-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .my-xxl-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .mt-xxl-5 {
    margin-top: 3rem !important;
  }
  .mr-xxl-5 {
    margin-right: 3rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xxl-5 {
    margin-left: 3rem !important;
  }
  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .m-xxl-n5 {
    margin: -3rem !important;
  }
  .mt-xxl-n5 {
    margin-top: -3rem !important;
  }
  .mr-xxl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xxl-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-xxl-n5 {
    margin-left: -3rem !important;
  }
  .mx-xxl-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .my-xxl-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .pt-xxl-5 {
    padding-top: 3rem !important;
  }
  .pr-xxl-5 {
    padding-right: 3rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xxl-5 {
    padding-left: 3rem !important;
  }
  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .mr-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ml-xxl-auto {
    margin-left: auto !important;
  }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
}
.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media (min-width: 0) {
  .visible {
    visibility: visible !important;
  }
  .invisible {
    visibility: hidden !important;
  }
  .opacity-0 {
    opacity: 0 !important;
  }
  .opacity-25 {
    opacity: 0.25 !important;
  }
  .opacity-50 {
    opacity: 0.5 !important;
  }
  .opacity-75 {
    opacity: 0.75 !important;
  }
  .opacity-100 {
    opacity: 1 !important;
  }
}
@media (min-width: 576px) {
  .visible-sm {
    visibility: visible !important;
  }
  .invisible-sm {
    visibility: hidden !important;
  }
  .opacity-sm-0 {
    opacity: 0 !important;
  }
  .opacity-sm-25 {
    opacity: 0.25 !important;
  }
  .opacity-sm-50 {
    opacity: 0.5 !important;
  }
  .opacity-sm-75 {
    opacity: 0.75 !important;
  }
  .opacity-sm-100 {
    opacity: 1 !important;
  }
}
@media (min-width: 768px) {
  .visible-md {
    visibility: visible !important;
  }
  .invisible-md {
    visibility: hidden !important;
  }
  .opacity-md-0 {
    opacity: 0 !important;
  }
  .opacity-md-25 {
    opacity: 0.25 !important;
  }
  .opacity-md-50 {
    opacity: 0.5 !important;
  }
  .opacity-md-75 {
    opacity: 0.75 !important;
  }
  .opacity-md-100 {
    opacity: 1 !important;
  }
}
@media (min-width: 992px) {
  .visible-lg {
    visibility: visible !important;
  }
  .invisible-lg {
    visibility: hidden !important;
  }
  .opacity-lg-0 {
    opacity: 0 !important;
  }
  .opacity-lg-25 {
    opacity: 0.25 !important;
  }
  .opacity-lg-50 {
    opacity: 0.5 !important;
  }
  .opacity-lg-75 {
    opacity: 0.75 !important;
  }
  .opacity-lg-100 {
    opacity: 1 !important;
  }
}
@media (min-width: 1200px) {
  .visible-xl {
    visibility: visible !important;
  }
  .invisible-xl {
    visibility: hidden !important;
  }
  .opacity-xl-0 {
    opacity: 0 !important;
  }
  .opacity-xl-25 {
    opacity: 0.25 !important;
  }
  .opacity-xl-50 {
    opacity: 0.5 !important;
  }
  .opacity-xl-75 {
    opacity: 0.75 !important;
  }
  .opacity-xl-100 {
    opacity: 1 !important;
  }
}
@media (min-width: 1400px) {
  .visible-xxl {
    visibility: visible !important;
  }
  .invisible-xxl {
    visibility: hidden !important;
  }
  .opacity-xxl-0 {
    opacity: 0 !important;
  }
  .opacity-xxl-25 {
    opacity: 0.25 !important;
  }
  .opacity-xxl-50 {
    opacity: 0.5 !important;
  }
  .opacity-xxl-75 {
    opacity: 0.75 !important;
  }
  .opacity-xxl-100 {
    opacity: 1 !important;
  }
}
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.sr-only-focusable {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
}

@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
}
