@charset "UTF-8";
:root {
  --primary-color: #003293;
  --primary-light-color: #BED4FF;
  --secondary-color: #4C5FD9;
  --secondary-light-color: #D7DCFF;
  --success-color: #4CD9CF;
  --success-light-color: #DBF7F5;
  --body-color: #202541;
  --body-l-color: #627178;
  --gray-color: #D6DCDF;
  --gray-l-color: #E7EBEF;
  --gray-xl-color: #F4F7FB;
  --danger-color: #FF6E88;
  --danger-light-color: #FBDBE1;
  --warning-color: #FFE406;
  --warning-light-color: #FFFA99;
  --fulfilled-color: #5CB089;
  --fulfilled-light-color: #65B892;
  --button-text-gray: #005063;
  --skip-color: #6A6F75;
  --terminal-background-color: #EFF2F8;
}

@font-face {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Gilroy-Regular.otf");
}
@font-face {
  font-family: "Gilroy";
  font-weight: 500;
  src: url("../fonts/Gilroy-SemiBold.ttf");
}
@font-face {
  font-family: "Gilroy";
  font-weight: 600;
  src: url("../fonts/Gilroy-Bold.ttf");
}
*, ::before, ::after {
  box-sizing: border-box;
}

html {
  display: flex;
  min-height: 100%;
  width: 100%;
}

html, body {
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: "Gilroy", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 400;
  line-height: 1.3;
  color: var(--body-color);
  text-align: left;
  width: 100%;
  overscroll-behavior-y: none;
  box-sizing: border-box;
}

h1, .dealengine .h1, h2, .dealengine .h2, h3, .dealengine .h3, h4, .dealengine .h4, h5, .dealengine .h5, h6, .dealengine .h6 {
  font-weight: 600;
  color: var(--primary-color);
}

h1, .dealengine .h1 {
  font-size: 42px;
}

h2, .dealengine .h2 {
  font-size: 38px;
}

h3, .dealengine .h3 {
  font-size: 34px;
}

h4, .dealengine .h4 {
  font-size: 26px;
}

h5, .dealengine .h5 {
  font-size: 21px;
}

h6, .dealengine .h6 {
  font-size: 0.8 rem;
}

/* Bootstrap reset */
hr {
  border-color: var(--gray-l-color);
}

.dropdown-toggle::after {
  display: none;
}

a {
  color: var(--primary-color);
}

.text-uppercase {
  letter-spacing: 2px;
}

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

.btn {
  border-radius: 50px;
  font-weight: 500;
  transition: all ease-out 0.15s;
  padding: 10px 20px;
  box-shadow: 0 1px 0 var(--gray-l-color) !important;
  font-size: 0.9rem;
  color: var(--primary-color);
}
.btn:hover {
  transform: translate(0, -2px);
}

.btn-default {
  background: #fff;
}

.btn-lg, .dealengine .btn-group-lg > .btn,
.btn-hero {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15) !important;
}

.btn-sm, .dealengine .btn-group-sm > .btn {
  padding: 0.5rem 1rem;
  font-size: 0.6vw;
}

.btn-rounded {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.btn-primary {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}
.btn-primary:hover, .btn-primary:focus {
  color: white;
  background: var(--primary-color);
  border-color: var(--primary-color);
}
.btn-primary:disabled {
  background: var(--gray-color);
  border-color: var(--gray-color);
  color: white;
}

.btn-outline-primary {
  background: white;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-outline-primary:hover:active, .btn-outline-primary:focus:active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.btn-outline-primary:disabled {
  background: white;
  border-color: var(--gray-color);
  color: var(--gray-color);
}

.btn-outline-primary:hover, .btn-outline-primary:disabled {
  background: transparent;
  transform: none;
}

.btn-outline-primary:hover {
  color: white;
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-secondary {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: white;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}
.btn-secondary:disabled {
  background: var(--gray-color);
  border-color: var(--gray-color);
  color: white;
}

.btn-outline-secondary {
  background: white;
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.btn-outline-secondary:hover:active, .btn-outline-secondary:focus:active {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: white;
}

.btn-outline-secondary:disabled {
  background: white;
  border-color: var(--gray-color);
  color: var(--gray-color);
}

.btn-outline-secondary:hover, .btn-outline-secondary:disabled {
  background: transparent;
  transform: none;
}

.btn-outline-secondary:hover {
  color: white;
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}

.btn-success {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: white;
}
.btn-success:hover, .btn-success:focus {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}
.btn-success:disabled {
  background: var(--gray-color);
  border-color: var(--gray-color);
  color: white;
}

.btn-outline-success {
  background: white;
  border-color: var(--success-color);
  color: var(--success-color);
}

.btn-outline-success:hover:active, .btn-outline-success:focus:active {
  background: var(--success-color);
  border-color: var(--success-color);
  color: white;
}

.btn-outline-success:disabled {
  background: white;
  border-color: var(--gray-color);
  color: var(--gray-color);
}

.btn-outline-success:hover, .btn-outline-success:disabled {
  background: transparent;
  transform: none;
}

.btn-outline-success:hover {
  color: white;
  background: var(--success-color);
  border-color: var(--success-color);
}

.btn-warning {
  background: var(--warning-color);
  border-color: var(--warning-color);
  color: var(--button-text-gray);
}
.btn-warning:hover, .btn-warning:focus {
  background: var(--warning-color);
  border-color: var(--warning-color);
}
.btn-warning:disabled {
  background: var(--gray-color);
  border-color: var(--gray-color);
  color: white;
}

.btn-outline-warning {
  background: white;
  border-color: var(--warning-color);
  color: var(--warning-color);
}

.btn-outline-warning:hover:active, .btn-outline-warning:focus:active {
  background: var(--warning-color);
  border-color: var(--warning-color);
  color: white;
}

.btn-outline-warning:disabled {
  background: white;
  border-color: var(--gray-color);
  color: var(--gray-color);
}

.btn-outline-warning:hover, .btn-outline-warning:disabled {
  background: transparent;
  transform: none;
}

.btn-outline-warning:hover {
  color: white;
  background: var(--warning-color);
  border-color: var(--warning-color);
}

.btn-danger {
  background: var(--danger-color);
  border-color: var(--danger-color);
  color: white;
}
.btn-danger:hover, .btn-danger:focus {
  background: var(--danger-color);
  border-color: var(--danger-color);
}
.btn-danger:disabled {
  background: var(--gray-color);
  border-color: var(--gray-color);
  color: white;
}

.btn-outline-danger {
  background: white;
  border-color: var(--danger-color);
  color: var(--danger-color);
}

.btn-outline-danger:hover:active, .btn-outline-danger:focus:active {
  background: var(--danger-color);
  border-color: var(--danger-color);
  color: white;
}

.btn-outline-danger:disabled {
  background: white;
  border-color: var(--gray-color);
  color: var(--gray-color);
}

.btn-outline-danger:hover, .btn-outline-danger:disabled {
  background: transparent;
  transform: none;
}

.btn-outline-danger:hover {
  color: white;
  background: var(--danger-color);
  border-color: var(--danger-color);
}

.btn-outline-fulfilled {
  background: white;
  border-color: var(--fulfilled-color);
  color: var(--fulfilled-color);
}

.btn-outline-fulfilled:hover:active, .btn-outline-fulfilled:focus:active {
  background: var(--fulfilled-color);
  border-color: var(--fulfilled-color);
  color: white;
}

.btn-outline-fulfilled:disabled {
  background: white;
  border-color: var(--gray-color);
  color: var(--gray-color);
}

.btn-outline-fulfilled:hover, .btn-outline-fulfilled:disabled {
  background: transparent;
  transform: none;
}

.btn-outline-fulfilled:hover {
  color: white;
  background: var(--fulfilled-color);
  border-color: var(--fulfilled-color);
}

.btn-fulfilled {
  color: white;
  background-color: var(--fulfilled-color);
  border-color: var(--fulfilled-color);
}
.btn-fulfilled:hover, .btn-fulfilled:focus {
  background: var(--fulfilled-color);
  border-color: var(--fulfilled-color);
}
.btn-fulfilled:disabled {
  background: var(--gray-color);
  border-color: var(--gray-color);
}

.btn-link {
  color: var(--primary-color);
  font-size: 0.8rem;
  border: 0;
  padding: 0;
  box-shadow: 0 !important;
  font-weight: 500;
}
.btn-link .font-sm {
  font-size: 0.85rem;
}
.btn-link:hover, .btn-link:focus {
  color: var(--primary-color);
  text-decoration: underline;
}

.btn-dark {
  color: white;
  background-color: var(--skip-color);
  border-color: var(--skip-color);
}

.btn-link-diable {
  color: var(--gray-color);
  font-size: 1rem;
  border: 0;
  padding: 0;
  box-shadow: 0 !important;
  font-weight: 500;
}
.btn-link-diable .font-sm {
  font-size: 0.8rem;
}
.btn-link-diable:hover, .btn-link-diable:focus {
  color: var(--gray-color);
  text-decoration: underline;
}

.btn-uppercase {
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 1px;
}
.btn-uppercase.btn-sm, .dealengine .btn-group-sm > .btn-uppercase.btn {
  font-size: 0.6rem;
}
.btn-uppercase.btn-lg, .dealengine .btn-group-lg > .btn-uppercase.btn {
  font-size: 0.9rem;
  padding: 1rem 2rem;
}

.btn-hero {
  font-weight: bold;
  padding: 1rem 1.5rem;
  box-shadow: 0 10px 30px rba(0, 0, 0, 0.15);
  font-size: 0.8rem;
}

.container-fluid, .dealengine .container-xxl, .dealengine .container-xl, .dealengine .container-lg, .dealengine .container-md, .dealengine .container-sm {
  padding-left: 2rem;
  padding-right: 2rem;
}

.badge {
  padding: 4px;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: normal;
  margin: 4px 4px;
}

.badge-primary {
  background: var(--primary-color);
  color: white;
}

.badge-secondary--light {
  background-color: var(--primary-light-color);
  color: var(--primary-color);
}

.badge-secondary {
  background-color: var(--secondary-color);
  color: white;
}

.badge-secondary--light {
  background-color: var(--secondary-light-color);
  color: var(--secondary-color);
}

.badge-success {
  background: var(--success-color);
  color: var(--primary-color);
}

.badge-success--light {
  background: var(--success-light-color);
  color: var(--primary-color);
}

.badge-warning {
  background: var(--warning-color);
  color: var(--button-text-gray);
}

.badge-warning--light {
  background: var(--warning-light-color);
  color: var(--warning-color);
}

.badge-danger {
  background: var(--danger-color);
  color: white;
}

.badge-danger--light {
  background: var(--danger-light-color);
  color: var(--danger-color);
}

.badge-info {
  background: var(--gray-color);
  color: var(--primary-color);
}

.badge-info--dark {
  background: var(--body-l-color);
  color: white;
}

.badge-fulfilled {
  background: var(--fulfilled-color);
  color: white;
}

.badge-fulfilled--light {
  background: var(--fulfilled-light-color);
  color: white;
}

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 0;
  border-radius: 5px;
  font-size: 0.9rem;
}

.alert-primary {
  color: var(--primary-color);
  background-color: var(--primary-light-color);
}

.alert-secondary {
  color: var(--secondary-color);
  background-color: var(--secondary-light-color);
}

.alert-success {
  color: var(--primary-color);
  background-color: var(--success-light-color);
}

.alert-info {
  color: var(--primary-color);
  background-color: var(--gray-l-color);
}

.alert-danger {
  color: var(--danger-color);
  background-color: var(--danger-light-color);
}

.alert-warning {
  color: var(--primary-color);
  background-color: var(--warning-light-color);
}

.modal-backdrop {
  background-color: #fff;
}

.modal .modal-content {
  border: 1px solid var(--gray-l-color);
  padding: 3rem;
  box-shadow: 0 5px 60px rgba(0, 0, 0, 0.05);
}
.modal .close {
  position: absolute;
  right: 1rem;
  top: 1rem;
}

/* Helpers Classes */
.font-sm {
  font-size: 0.9rem;
}

.font-xs {
  font-size: 0.8rem;
}

.font-xxs {
  font-size: 0.7rem;
}

.font-medium {
  font-weight: 400;
}

.search-small {
  cursor: pointer;
  border-top-right-radius: 2.5rem !important;
  border-bottom-right-radius: 2.5rem !important;
}

.search-small:hover {
  background: var(--gray-xl-color);
  text-decoration: none;
}

.btn-circle,
.circle-icon {
  display: flex;
  justify-self: center;
  min-width: 2rem;
  height: 2rem;
  border-radius: 2rem;
  line-height: 2rem !important;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--body-l-color);
}

.circle-icon-lg {
  min-width: 2.5rem;
  height: 2.5rem;
  border-radius: 2.5rem;
}

.circle-icon {
  background: var(--gray-l-color);
}

.circle-icon-success {
  background: var(--secondary-color);
  color: #fff;
}

.circle-icon-danger {
  background: var(--danger-color);
  color: #fff;
}

.list-dropdown {
  border: 1px solid var(--gray-l-color);
  padding: 0.5rem 1rem;
  border-radius: 34px;
}
.list-dropdown a {
  color: var(--body-color);
}
.list-dropdown a:hover {
  text-decoration: none;
  white-space: nowrap;
}

.text-white {
  color: white;
}

.text-blue {
  color: var(--primary-color);
}

.text-teal {
  color: var(--success-color);
}

.text-bodyl {
  color: var(--body-l-color);
}

table .table-success td {
  background-color: var(--success-light-color);
}

.attachment-pill {
  border-radius: 50px;
  max-width: 235px;
}

.btn-outline-skip {
  background: white;
  border-color: var(--skip-color);
  color: var(--skip-color);
}

.btn-outline-skip:hover:active, .btn-outline-skip:focus:active {
  background: var(--skip-color);
  border-color: var(--skip-color);
  color: white;
}

.btn-outline-skip:disabled {
  background: white;
  border-color: var(--gray-color);
  color: var(--gray-color);
}

.btn-outline-skip:hover, .btn-outline-skip:disabled {
  background: transparent;
  transform: none;
}

.btn-outline-skip:hover {
  color: white;
  background: var(--skip-color);
  border-color: var(--skip-color);
}

.loading-mask-center {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.loading-mask-center img {
  height: 150px;
  width: auto;
}

.loading-mask {
  min-width: 100vw;
  min-height: 100vh;
  background-color: #fffa;
  z-index: 99999999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s linear;
  transition-delay: 0.5s;
  line-height: 1em;
  font-weight: 500;
  font-size: 1.2em;
  color: var(--secondary-color);
}

.loading-mask.active {
  visibility: visible;
  opacity: 1;
}

.dealengine {
  @font-face {
    .dealengine {
      font-family: "Gilroy";
      src: url("../fonts/Gilroy-Regular.otf");
      font-weight: 400;
      font-style: normal;
    }
  }
  @font-face {
    .dealengine {
      font-family: "Gilroy";
      src: url("../fonts/Gilroy-Medium.ttf");
      font-weight: 500;
      font-style: normal;
    }
  }
  @font-face {
    .dealengine {
      font-family: "Gilroy";
      src: url("../fonts/Gilroy-SemiBold.ttf");
      font-weight: 600;
      font-style: normal;
    }
  }
  @font-face {
    .dealengine {
      font-family: "Gilroy";
      src: url("../fonts/Gilroy-Bold.otf");
      font-weight: 700;
      font-style: normal;
    }
  }
  @font-face {
    .dealengine {
      font-family: "Gilroy";
      src: url("../fonts/Gilroy-ExtraBold.otf");
      font-weight: 800;
      font-style: normal;
    }
  }
  /*!
   * Bootstrap v5.0.0 (https://getbootstrap.com/)
   * Copyright 2011-2021 The Bootstrap Authors
   * Copyright 2011-2021 Twitter, Inc.
   * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
   */
  /* rtl:raw:
  [type="tel"],
  [type="url"],
  [type="email"],
  [type="number"] {
    direction: ltr;
  }
  */
  @keyframes progress-bar-stripes {
    0% {
      background-position-x: 1rem;
    }
  }
  /* rtl:begin:ignore */
  /* rtl:end:ignore */
  /* rtl:options: {
    "autoRename": true,
    "stringMap":[ {
      "name"    : "prev-next",
      "search"  : "prev",
      "replace" : "next"
    } ]
  } */
  @keyframes spinner-border {
    to {
      transform: rotate(360deg) /* rtl:ignore */;
    }
  }
  @keyframes spinner-grow {
    0% {
      transform: scale(0);
    }
    50% {
      opacity: 1;
      transform: none;
    }
  }
  /* rtl:begin:remove */
  /* rtl:end:remove */
  @keyframes mymove {
    100% {
      transform: rotate(180deg);
    }
  }
  /* CSS style to exclude p elements with another class */
}
.dealengine body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.dealengine :root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-primary: #4C5FD9;
  --bs-secondary: #4CD9CF;
  --bs-info: #4CD9CF;
  --bs-success: #4CD9CF;
  --bs-font-sans-serif: "Gilroy";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
}
.dealengine *,
.dealengine *::before,
.dealengine *::after {
  box-sizing: border-box;
}
@media (prefers-reduced-motion: no-preference) {
  .dealengine :root {
    scroll-behavior: smooth;
  }
}
.dealengine body {
  margin: 0;
  font-family: "Gilroy";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #2A3478;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(32, 37, 65, 0);
}
.dealengine hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}
.dealengine hr:not([size]) {
  height: 1px;
}
.dealengine h6, .dealengine .h6, .dealengine h5, .dealengine .h5, .dealengine h4, .dealengine .h4, .dealengine h3, .dealengine .h3, .dealengine h2, .dealengine .h2, .dealengine h1, .dealengine .h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}
.dealengine h1, .dealengine .h1 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  .dealengine h1, .dealengine .h1 {
    font-size: 2.5rem;
  }
}
.dealengine h2, .dealengine .h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  .dealengine h2, .dealengine .h2 {
    font-size: 2rem;
  }
}
.dealengine h3, .dealengine .h3 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  .dealengine h3, .dealengine .h3 {
    font-size: 1.75rem;
  }
}
.dealengine h4, .dealengine .h4 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  .dealengine h4, .dealengine .h4 {
    font-size: 1.5rem;
  }
}
.dealengine h5, .dealengine .h5 {
  font-size: 1.25rem;
}
.dealengine h6, .dealengine .h6 {
  font-size: 1rem;
}
.dealengine p {
  margin-top: 0;
  margin-bottom: 1rem;
}
.dealengine abbr[title],
.dealengine abbr[data-bs-original-title] {
  text-decoration: underline dotted;
  cursor: help;
  text-decoration-skip-ink: none;
}
.dealengine address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}
.dealengine ol,
.dealengine ul {
  padding-left: 2rem;
}
.dealengine ol,
.dealengine ul,
.dealengine dl {
  margin-top: 0;
  margin-bottom: 1rem;
}
.dealengine ol ol,
.dealengine ul ul,
.dealengine ol ul,
.dealengine ul ol {
  margin-bottom: 0;
}
.dealengine dt {
  font-weight: 700;
}
.dealengine dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}
.dealengine blockquote {
  margin: 0 0 1rem;
}
.dealengine b,
.dealengine strong {
  font-weight: bolder;
}
.dealengine small, .dealengine .small {
  font-size: 0.875em;
}
.dealengine mark, .dealengine .mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}
.dealengine sub,
.dealengine sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}
.dealengine sub {
  bottom: -0.25em;
}
.dealengine sup {
  top: -0.5em;
}
.dealengine a {
  color: #0d6efd;
  text-decoration: underline;
}
.dealengine a:hover {
  color: #0a58ca;
}
.dealengine a:not([href]):not([class]), .dealengine a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}
.dealengine pre,
.dealengine code,
.dealengine kbd,
.dealengine samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
  direction: ltr /* rtl:ignore */;
  unicode-bidi: bidi-override;
}
.dealengine pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
.dealengine pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}
.dealengine code {
  font-size: 0.875em;
  color: #d63384;
  word-wrap: break-word;
}
a > .dealengine code {
  color: inherit;
}
.dealengine kbd {
  padding: 0.2rem 0.4rem;
  font-size: 0.875em;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}
.dealengine kbd kbd {
  padding: 0;
  font-size: 1em;
  font-weight: 700;
}
.dealengine figure {
  margin: 0 0 1rem;
}
.dealengine img,
.dealengine svg {
  vertical-align: middle;
}
.dealengine table {
  caption-side: bottom;
  border-collapse: collapse;
}
.dealengine caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #6c757d;
  text-align: left;
}
.dealengine th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}
.dealengine thead,
.dealengine tbody,
.dealengine tfoot,
.dealengine tr,
.dealengine td,
.dealengine th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}
.dealengine label {
  display: inline-block;
}
.dealengine button {
  border-radius: 0;
}
.dealengine button:focus:not(:focus-visible) {
  outline: 0;
}
.dealengine input,
.dealengine button,
.dealengine select,
.dealengine optgroup,
.dealengine textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
.dealengine button,
.dealengine select {
  text-transform: none;
}
.dealengine [role=button] {
  cursor: pointer;
}
.dealengine select {
  word-wrap: normal;
}
.dealengine select:disabled {
  opacity: 1;
}
.dealengine [list]::-webkit-calendar-picker-indicator {
  display: none;
}
.dealengine button,
.dealengine [type=button],
.dealengine [type=reset],
.dealengine [type=submit] {
  -webkit-appearance: button;
}
.dealengine button:not(:disabled),
.dealengine [type=button]:not(:disabled),
.dealengine [type=reset]:not(:disabled),
.dealengine [type=submit]:not(:disabled) {
  cursor: pointer;
}
.dealengine ::-moz-focus-inner {
  padding: 0;
  border-style: none;
}
.dealengine textarea {
  resize: vertical;
}
.dealengine fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
.dealengine legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}
@media (min-width: 1200px) {
  .dealengine legend {
    font-size: 1.5rem;
  }
}
.dealengine legend + * {
  clear: left;
}
.dealengine ::-webkit-datetime-edit-fields-wrapper,
.dealengine ::-webkit-datetime-edit-text,
.dealengine ::-webkit-datetime-edit-minute,
.dealengine ::-webkit-datetime-edit-hour-field,
.dealengine ::-webkit-datetime-edit-day-field,
.dealengine ::-webkit-datetime-edit-month-field,
.dealengine ::-webkit-datetime-edit-year-field {
  padding: 0;
}
.dealengine ::-webkit-inner-spin-button {
  height: auto;
}
.dealengine [type=search] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}
.dealengine ::-webkit-search-decoration {
  -webkit-appearance: none;
}
.dealengine ::-webkit-color-swatch-wrapper {
  padding: 0;
}
.dealengine ::file-selector-button {
  font: inherit;
}
.dealengine ::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}
.dealengine output {
  display: inline-block;
}
.dealengine iframe {
  border: 0;
}
.dealengine summary {
  display: list-item;
  cursor: pointer;
}
.dealengine progress {
  vertical-align: baseline;
}
.dealengine [hidden] {
  display: none !important;
}
.dealengine .lead {
  font-size: 1.25rem;
  font-weight: 300;
}
.dealengine .display-1 {
  font-size: calc(1.625rem + 4.5vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .dealengine .display-1 {
    font-size: 5rem;
  }
}
.dealengine .display-2 {
  font-size: calc(1.575rem + 3.9vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .dealengine .display-2 {
    font-size: 4.5rem;
  }
}
.dealengine .display-3 {
  font-size: calc(1.525rem + 3.3vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .dealengine .display-3 {
    font-size: 4rem;
  }
}
.dealengine .display-4 {
  font-size: calc(1.475rem + 2.7vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .dealengine .display-4 {
    font-size: 3.5rem;
  }
}
.dealengine .display-5 {
  font-size: calc(1.425rem + 2.1vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .dealengine .display-5 {
    font-size: 3rem;
  }
}
.dealengine .display-6 {
  font-size: calc(1.375rem + 1.5vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .dealengine .display-6 {
    font-size: 2.5rem;
  }
}
.dealengine .list-unstyled {
  padding-left: 0;
  list-style: none;
}
.dealengine .list-inline {
  padding-left: 0;
  list-style: none;
}
.dealengine .list-inline-item {
  display: inline-block;
}
.dealengine .list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}
.dealengine .initialism {
  font-size: 0.875em;
  text-transform: uppercase;
}
.dealengine .blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.dealengine .blockquote > :last-child {
  margin-bottom: 0;
}
.dealengine .blockquote-footer {
  margin-top: -1rem;
  margin-bottom: 1rem;
  font-size: 0.875em;
  color: #6c757d;
}
.dealengine .blockquote-footer::before {
  content: "— ";
}
.dealengine .img-fluid {
  max-width: 100%;
  height: auto;
}
.dealengine .img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  max-width: 100%;
  height: auto;
}
.dealengine .figure {
  display: inline-block;
}
.dealengine .figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}
.dealengine .figure-caption {
  font-size: 0.875em;
  color: #6c757d;
}
.dealengine .container,
.dealengine .container-fluid,
.dealengine .container-xxl,
.dealengine .container-xl,
.dealengine .container-lg,
.dealengine .container-md,
.dealengine .container-sm {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .dealengine .container-sm, .dealengine .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .dealengine .container-md, .dealengine .container-sm, .dealengine .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .dealengine .container-lg, .dealengine .container-md, .dealengine .container-sm, .dealengine .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .dealengine .container-xl, .dealengine .container-lg, .dealengine .container-md, .dealengine .container-sm, .dealengine .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .dealengine .container-xxl, .dealengine .container-xl, .dealengine .container-lg, .dealengine .container-md, .dealengine .container-sm, .dealengine .container {
    max-width: 1320px;
  }
}
.dealengine .row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) / -2);
  margin-left: calc(var(--bs-gutter-x) / -2);
}
.dealengine .row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) / 2);
  padding-left: calc(var(--bs-gutter-x) / 2);
  margin-top: var(--bs-gutter-y);
}
.dealengine .col {
  flex: 1 0 0%;
}
.dealengine .row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}
.dealengine .row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}
.dealengine .row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}
.dealengine .row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}
.dealengine .row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}
.dealengine .row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}
.dealengine .row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}
.dealengine .col-auto {
  flex: 0 0 auto;
  width: auto;
}
.dealengine .col-1 {
  flex: 0 0 auto;
  width: 8.3333333333%;
}
.dealengine .col-2 {
  flex: 0 0 auto;
  width: 16.6666666667%;
}
.dealengine .col-3 {
  flex: 0 0 auto;
  width: 25%;
}
.dealengine .col-4 {
  flex: 0 0 auto;
  width: 33.3333333333%;
}
.dealengine .col-5 {
  flex: 0 0 auto;
  width: 41.6666666667%;
}
.dealengine .col-6 {
  flex: 0 0 auto;
  width: 50%;
}
.dealengine .col-7 {
  flex: 0 0 auto;
  width: 58.3333333333%;
}
.dealengine .col-8 {
  flex: 0 0 auto;
  width: 66.6666666667%;
}
.dealengine .col-9 {
  flex: 0 0 auto;
  width: 75%;
}
.dealengine .col-10 {
  flex: 0 0 auto;
  width: 83.3333333333%;
}
.dealengine .col-11 {
  flex: 0 0 auto;
  width: 91.6666666667%;
}
.dealengine .col-12 {
  flex: 0 0 auto;
  width: 100%;
}
.dealengine .offset-1 {
  margin-left: 8.3333333333%;
}
.dealengine .offset-2 {
  margin-left: 16.6666666667%;
}
.dealengine .offset-3 {
  margin-left: 25%;
}
.dealengine .offset-4 {
  margin-left: 33.3333333333%;
}
.dealengine .offset-5 {
  margin-left: 41.6666666667%;
}
.dealengine .offset-6 {
  margin-left: 50%;
}
.dealengine .offset-7 {
  margin-left: 58.3333333333%;
}
.dealengine .offset-8 {
  margin-left: 66.6666666667%;
}
.dealengine .offset-9 {
  margin-left: 75%;
}
.dealengine .offset-10 {
  margin-left: 83.3333333333%;
}
.dealengine .offset-11 {
  margin-left: 91.6666666667%;
}
.dealengine .g-0,
.dealengine .gx-0 {
  --bs-gutter-x: 0;
}
.dealengine .g-0,
.dealengine .gy-0 {
  --bs-gutter-y: 0;
}
.dealengine .g-1,
.dealengine .gx-1 {
  --bs-gutter-x: 0.25rem;
}
.dealengine .g-1,
.dealengine .gy-1 {
  --bs-gutter-y: 0.25rem;
}
.dealengine .g-2,
.dealengine .gx-2 {
  --bs-gutter-x: 0.5rem;
}
.dealengine .g-2,
.dealengine .gy-2 {
  --bs-gutter-y: 0.5rem;
}
.dealengine .g-3,
.dealengine .gx-3 {
  --bs-gutter-x: 1rem;
}
.dealengine .g-3,
.dealengine .gy-3 {
  --bs-gutter-y: 1rem;
}
.dealengine .g-4,
.dealengine .gx-4 {
  --bs-gutter-x: 1.5rem;
}
.dealengine .g-4,
.dealengine .gy-4 {
  --bs-gutter-y: 1.5rem;
}
.dealengine .g-5,
.dealengine .gx-5 {
  --bs-gutter-x: 3rem;
}
.dealengine .g-5,
.dealengine .gy-5 {
  --bs-gutter-y: 3rem;
}
@media (min-width: 576px) {
  .dealengine .col-sm {
    flex: 1 0 0%;
  }
  .dealengine .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .dealengine .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .dealengine .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .dealengine .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .dealengine .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .dealengine .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .dealengine .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .dealengine .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .dealengine .col-sm-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .dealengine .col-sm-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .dealengine .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .dealengine .col-sm-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .dealengine .col-sm-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .dealengine .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .dealengine .col-sm-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .dealengine .col-sm-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .dealengine .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .dealengine .col-sm-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .dealengine .col-sm-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .dealengine .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .dealengine .offset-sm-0 {
    margin-left: 0;
  }
  .dealengine .offset-sm-1 {
    margin-left: 8.3333333333%;
  }
  .dealengine .offset-sm-2 {
    margin-left: 16.6666666667%;
  }
  .dealengine .offset-sm-3 {
    margin-left: 25%;
  }
  .dealengine .offset-sm-4 {
    margin-left: 33.3333333333%;
  }
  .dealengine .offset-sm-5 {
    margin-left: 41.6666666667%;
  }
  .dealengine .offset-sm-6 {
    margin-left: 50%;
  }
  .dealengine .offset-sm-7 {
    margin-left: 58.3333333333%;
  }
  .dealengine .offset-sm-8 {
    margin-left: 66.6666666667%;
  }
  .dealengine .offset-sm-9 {
    margin-left: 75%;
  }
  .dealengine .offset-sm-10 {
    margin-left: 83.3333333333%;
  }
  .dealengine .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
  .dealengine .g-sm-0,
.dealengine .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .dealengine .g-sm-0,
.dealengine .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .dealengine .g-sm-1,
.dealengine .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .dealengine .g-sm-1,
.dealengine .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .dealengine .g-sm-2,
.dealengine .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .dealengine .g-sm-2,
.dealengine .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .dealengine .g-sm-3,
.dealengine .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .dealengine .g-sm-3,
.dealengine .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .dealengine .g-sm-4,
.dealengine .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .dealengine .g-sm-4,
.dealengine .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .dealengine .g-sm-5,
.dealengine .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .dealengine .g-sm-5,
.dealengine .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .dealengine .col-md {
    flex: 1 0 0%;
  }
  .dealengine .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .dealengine .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .dealengine .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .dealengine .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .dealengine .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .dealengine .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .dealengine .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .dealengine .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .dealengine .col-md-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .dealengine .col-md-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .dealengine .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .dealengine .col-md-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .dealengine .col-md-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .dealengine .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .dealengine .col-md-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .dealengine .col-md-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .dealengine .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .dealengine .col-md-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .dealengine .col-md-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .dealengine .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .dealengine .offset-md-0 {
    margin-left: 0;
  }
  .dealengine .offset-md-1 {
    margin-left: 8.3333333333%;
  }
  .dealengine .offset-md-2 {
    margin-left: 16.6666666667%;
  }
  .dealengine .offset-md-3 {
    margin-left: 25%;
  }
  .dealengine .offset-md-4 {
    margin-left: 33.3333333333%;
  }
  .dealengine .offset-md-5 {
    margin-left: 41.6666666667%;
  }
  .dealengine .offset-md-6 {
    margin-left: 50%;
  }
  .dealengine .offset-md-7 {
    margin-left: 58.3333333333%;
  }
  .dealengine .offset-md-8 {
    margin-left: 66.6666666667%;
  }
  .dealengine .offset-md-9 {
    margin-left: 75%;
  }
  .dealengine .offset-md-10 {
    margin-left: 83.3333333333%;
  }
  .dealengine .offset-md-11 {
    margin-left: 91.6666666667%;
  }
  .dealengine .g-md-0,
.dealengine .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .dealengine .g-md-0,
.dealengine .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .dealengine .g-md-1,
.dealengine .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .dealengine .g-md-1,
.dealengine .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .dealengine .g-md-2,
.dealengine .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .dealengine .g-md-2,
.dealengine .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .dealengine .g-md-3,
.dealengine .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .dealengine .g-md-3,
.dealengine .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .dealengine .g-md-4,
.dealengine .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .dealengine .g-md-4,
.dealengine .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .dealengine .g-md-5,
.dealengine .gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  .dealengine .g-md-5,
.dealengine .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .dealengine .col-lg {
    flex: 1 0 0%;
  }
  .dealengine .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .dealengine .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .dealengine .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .dealengine .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .dealengine .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .dealengine .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .dealengine .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .dealengine .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .dealengine .col-lg-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .dealengine .col-lg-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .dealengine .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .dealengine .col-lg-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .dealengine .col-lg-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .dealengine .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .dealengine .col-lg-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .dealengine .col-lg-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .dealengine .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .dealengine .col-lg-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .dealengine .col-lg-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .dealengine .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .dealengine .offset-lg-0 {
    margin-left: 0;
  }
  .dealengine .offset-lg-1 {
    margin-left: 8.3333333333%;
  }
  .dealengine .offset-lg-2 {
    margin-left: 16.6666666667%;
  }
  .dealengine .offset-lg-3 {
    margin-left: 25%;
  }
  .dealengine .offset-lg-4 {
    margin-left: 33.3333333333%;
  }
  .dealengine .offset-lg-5 {
    margin-left: 41.6666666667%;
  }
  .dealengine .offset-lg-6 {
    margin-left: 50%;
  }
  .dealengine .offset-lg-7 {
    margin-left: 58.3333333333%;
  }
  .dealengine .offset-lg-8 {
    margin-left: 66.6666666667%;
  }
  .dealengine .offset-lg-9 {
    margin-left: 75%;
  }
  .dealengine .offset-lg-10 {
    margin-left: 83.3333333333%;
  }
  .dealengine .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
  .dealengine .g-lg-0,
.dealengine .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .dealengine .g-lg-0,
.dealengine .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .dealengine .g-lg-1,
.dealengine .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .dealengine .g-lg-1,
.dealengine .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .dealengine .g-lg-2,
.dealengine .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .dealengine .g-lg-2,
.dealengine .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .dealengine .g-lg-3,
.dealengine .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .dealengine .g-lg-3,
.dealengine .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .dealengine .g-lg-4,
.dealengine .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .dealengine .g-lg-4,
.dealengine .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .dealengine .g-lg-5,
.dealengine .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .dealengine .g-lg-5,
.dealengine .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .dealengine .col-xl {
    flex: 1 0 0%;
  }
  .dealengine .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .dealengine .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .dealengine .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .dealengine .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .dealengine .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .dealengine .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .dealengine .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .dealengine .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .dealengine .col-xl-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .dealengine .col-xl-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .dealengine .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .dealengine .col-xl-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .dealengine .col-xl-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .dealengine .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .dealengine .col-xl-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .dealengine .col-xl-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .dealengine .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .dealengine .col-xl-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .dealengine .col-xl-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .dealengine .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .dealengine .offset-xl-0 {
    margin-left: 0;
  }
  .dealengine .offset-xl-1 {
    margin-left: 8.3333333333%;
  }
  .dealengine .offset-xl-2 {
    margin-left: 16.6666666667%;
  }
  .dealengine .offset-xl-3 {
    margin-left: 25%;
  }
  .dealengine .offset-xl-4 {
    margin-left: 33.3333333333%;
  }
  .dealengine .offset-xl-5 {
    margin-left: 41.6666666667%;
  }
  .dealengine .offset-xl-6 {
    margin-left: 50%;
  }
  .dealengine .offset-xl-7 {
    margin-left: 58.3333333333%;
  }
  .dealengine .offset-xl-8 {
    margin-left: 66.6666666667%;
  }
  .dealengine .offset-xl-9 {
    margin-left: 75%;
  }
  .dealengine .offset-xl-10 {
    margin-left: 83.3333333333%;
  }
  .dealengine .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
  .dealengine .g-xl-0,
.dealengine .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .dealengine .g-xl-0,
.dealengine .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .dealengine .g-xl-1,
.dealengine .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .dealengine .g-xl-1,
.dealengine .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .dealengine .g-xl-2,
.dealengine .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .dealengine .g-xl-2,
.dealengine .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .dealengine .g-xl-3,
.dealengine .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .dealengine .g-xl-3,
.dealengine .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .dealengine .g-xl-4,
.dealengine .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .dealengine .g-xl-4,
.dealengine .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .dealengine .g-xl-5,
.dealengine .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .dealengine .g-xl-5,
.dealengine .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1400px) {
  .dealengine .col-xxl {
    flex: 1 0 0%;
  }
  .dealengine .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .dealengine .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .dealengine .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .dealengine .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .dealengine .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .dealengine .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .dealengine .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .dealengine .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .dealengine .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .dealengine .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .dealengine .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .dealengine .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .dealengine .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .dealengine .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .dealengine .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .dealengine .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .dealengine .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .dealengine .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .dealengine .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .dealengine .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .dealengine .offset-xxl-0 {
    margin-left: 0;
  }
  .dealengine .offset-xxl-1 {
    margin-left: 8.3333333333%;
  }
  .dealengine .offset-xxl-2 {
    margin-left: 16.6666666667%;
  }
  .dealengine .offset-xxl-3 {
    margin-left: 25%;
  }
  .dealengine .offset-xxl-4 {
    margin-left: 33.3333333333%;
  }
  .dealengine .offset-xxl-5 {
    margin-left: 41.6666666667%;
  }
  .dealengine .offset-xxl-6 {
    margin-left: 50%;
  }
  .dealengine .offset-xxl-7 {
    margin-left: 58.3333333333%;
  }
  .dealengine .offset-xxl-8 {
    margin-left: 66.6666666667%;
  }
  .dealengine .offset-xxl-9 {
    margin-left: 75%;
  }
  .dealengine .offset-xxl-10 {
    margin-left: 83.3333333333%;
  }
  .dealengine .offset-xxl-11 {
    margin-left: 91.6666666667%;
  }
  .dealengine .g-xxl-0,
.dealengine .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .dealengine .g-xxl-0,
.dealengine .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .dealengine .g-xxl-1,
.dealengine .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .dealengine .g-xxl-1,
.dealengine .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .dealengine .g-xxl-2,
.dealengine .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .dealengine .g-xxl-2,
.dealengine .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .dealengine .g-xxl-3,
.dealengine .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  .dealengine .g-xxl-3,
.dealengine .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  .dealengine .g-xxl-4,
.dealengine .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .dealengine .g-xxl-4,
.dealengine .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .dealengine .g-xxl-5,
.dealengine .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  .dealengine .g-xxl-5,
.dealengine .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}
.dealengine .table {
  --bs-table-bg: transparent;
  --bs-table-striped-color: #2A3478;
  --bs-table-striped-bg: rgba(32, 37, 65, 0.05);
  --bs-table-active-color: #2A3478;
  --bs-table-active-bg: rgba(32, 37, 65, 0.1);
  --bs-table-hover-color: #2A3478;
  --bs-table-hover-bg: rgba(32, 37, 65, 0.075);
  width: 100%;
  margin-bottom: 1rem;
  color: #2A3478;
  vertical-align: top;
  border-color: #dee2e6;
}
.dealengine .table > :not(caption) > * > * {
  padding: 0.5rem 0.5rem;
  background-color: var(--bs-table-bg);
  border-bottom-width: 1px;
  box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}
.dealengine .table > tbody {
  vertical-align: inherit;
}
.dealengine .table > thead {
  vertical-align: bottom;
}
.dealengine .table > :not(:last-child) > :last-child > * {
  border-bottom-color: currentColor;
}
.dealengine .caption-top {
  caption-side: top;
}
.dealengine .table-sm > :not(caption) > * > * {
  padding: 0.25rem 0.25rem;
}
.dealengine .table-bordered > :not(caption) > * {
  border-width: 1px 0;
}
.dealengine .table-bordered > :not(caption) > * > * {
  border-width: 0 1px;
}
.dealengine .table-borderless > :not(caption) > * > * {
  border-bottom-width: 0;
}
.dealengine .table-striped > tbody > tr:nth-of-type(odd) {
  --bs-table-accent-bg: var(--bs-table-striped-bg);
  color: var(--bs-table-striped-color);
}
.dealengine .table-active {
  --bs-table-accent-bg: var(--bs-table-active-bg);
  color: var(--bs-table-active-color);
}
.dealengine .table-hover > tbody > tr:hover {
  --bs-table-accent-bg: var(--bs-table-hover-bg);
  color: var(--bs-table-hover-color);
}
.dealengine .table-primary {
  --bs-table-bg: #cfe2ff;
  --bs-table-striped-bg: #c6d9f6;
  --bs-table-striped-color: #202541;
  --bs-table-active-bg: #becfec;
  --bs-table-active-color: #202541;
  --bs-table-hover-bg: #c2d4f1;
  --bs-table-hover-color: #202541;
  color: #202541;
  border-color: #becfec;
}
.dealengine .table-secondary {
  --bs-table-bg: #e2e3e5;
  --bs-table-striped-bg: #d8dadd;
  --bs-table-striped-color: #202541;
  --bs-table-active-bg: #cfd0d5;
  --bs-table-active-color: #202541;
  --bs-table-hover-bg: #d3d5d9;
  --bs-table-hover-color: #202541;
  color: #202541;
  border-color: #cfd0d5;
}
.dealengine .table-success {
  --bs-table-bg: #d1e7dd;
  --bs-table-striped-bg: #c8ddd5;
  --bs-table-striped-color: #202541;
  --bs-table-active-bg: #bfd4cd;
  --bs-table-active-color: #202541;
  --bs-table-hover-bg: #c4d8d1;
  --bs-table-hover-color: #202541;
  color: #202541;
  border-color: #bfd4cd;
}
.dealengine .table-info {
  --bs-table-bg: #cff4fc;
  --bs-table-striped-bg: #c6eaf3;
  --bs-table-striped-color: #202541;
  --bs-table-active-bg: #bedfe9;
  --bs-table-active-color: #202541;
  --bs-table-hover-bg: #c2e4ee;
  --bs-table-hover-color: #202541;
  color: #202541;
  border-color: #bedfe9;
}
.dealengine .table-warning {
  --bs-table-bg: #fff3cd;
  --bs-table-striped-bg: #f4e9c6;
  --bs-table-striped-color: #202541;
  --bs-table-active-bg: #e9debf;
  --bs-table-active-color: #202541;
  --bs-table-hover-bg: #eee4c3;
  --bs-table-hover-color: #202541;
  color: #202541;
  border-color: #e9debf;
}
.dealengine .table-danger {
  --bs-table-bg: #f8d7da;
  --bs-table-striped-bg: #edced2;
  --bs-table-striped-color: #202541;
  --bs-table-active-bg: #e2c5cb;
  --bs-table-active-color: #202541;
  --bs-table-hover-bg: #e8cacf;
  --bs-table-hover-color: #202541;
  color: #202541;
  border-color: #e2c5cb;
}
.dealengine .table-light {
  --bs-table-bg: #f8f9fa;
  --bs-table-striped-bg: #edeef1;
  --bs-table-striped-color: #202541;
  --bs-table-active-bg: #e2e4e8;
  --bs-table-active-color: #202541;
  --bs-table-hover-bg: #e8e9ec;
  --bs-table-hover-color: #202541;
  color: #202541;
  border-color: #e2e4e8;
}
.dealengine .table-dark {
  --bs-table-bg: #202541;
  --bs-table-striped-bg: #2b304b;
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: #363b54;
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: #31354f;
  --bs-table-hover-color: #fff;
  color: #fff;
  border-color: #363b54;
}
.dealengine .table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 575.98px) {
  .dealengine .table-responsive-sm {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 767.98px) {
  .dealengine .table-responsive-md {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 991.98px) {
  .dealengine .table-responsive-lg {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1199.98px) {
  .dealengine .table-responsive-xl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1399.98px) {
  .dealengine .table-responsive-xxl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.dealengine .form-label {
  margin-bottom: 0.5rem;
}
.dealengine .col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}
.dealengine .col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
}
.dealengine .col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
}
.dealengine .form-text {
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #6c757d;
}
.dealengine .form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #2A3478;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .dealengine .form-control {
    transition: none;
  }
}
.dealengine .form-control[type=file] {
  overflow: hidden;
}
.dealengine .form-control[type=file]:not(:disabled):not(:read-only) {
  cursor: pointer;
}
.dealengine .form-control:focus {
  color: #2A3478;
  background-color: #fff;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.dealengine .form-control::-webkit-date-and-time-value {
  height: 1.5em;
}
.dealengine .form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}
.dealengine .form-control:disabled, .dealengine .form-control:read-only {
  background-color: #e9ecef;
  opacity: 1;
}
.dealengine .form-control::file-selector-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  margin-inline-end: 0.75rem;
  color: #2A3478;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  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;
}
@media (prefers-reduced-motion: reduce) {
  .dealengine .form-control::file-selector-button {
    transition: none;
  }
}
.dealengine .form-control:hover:not(:disabled):not(:read-only)::file-selector-button {
  background-color: #dde0e3;
}
.dealengine .form-control::-webkit-file-upload-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  margin-inline-end: 0.75rem;
  color: #2A3478;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  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;
}
@media (prefers-reduced-motion: reduce) {
  .dealengine .form-control::-webkit-file-upload-button {
    transition: none;
  }
}
.dealengine .form-control:hover:not(:disabled):not(:read-only)::-webkit-file-upload-button {
  background-color: #dde0e3;
}
.dealengine .form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  line-height: 1.5;
  color: #2A3478;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
.dealengine .form-control-plaintext.form-control-sm, .dealengine .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}
.dealengine .form-control-sm {
  min-height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}
.dealengine .form-control-sm::file-selector-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  margin-inline-end: 0.5rem;
}
.dealengine .form-control-sm::-webkit-file-upload-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  margin-inline-end: 0.5rem;
}
.dealengine .form-control-lg {
  min-height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}
.dealengine .form-control-lg::file-selector-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  margin-inline-end: 1rem;
}
.dealengine .form-control-lg::-webkit-file-upload-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  margin-inline-end: 1rem;
}
.dealengine textarea.form-control {
  min-height: calc(1.5em + 0.75rem + 2px);
}
.dealengine textarea.form-control-sm {
  min-height: calc(1.5em + 0.5rem + 2px);
}
.dealengine textarea.form-control-lg {
  min-height: calc(1.5em + 1rem + 2px);
}
.dealengine .form-control-color {
  max-width: 3rem;
  height: auto;
  padding: 0.375rem;
}
.dealengine .form-control-color:not(:disabled):not(:read-only) {
  cursor: pointer;
}
.dealengine .form-control-color::-moz-color-swatch {
  height: 1.5em;
  border-radius: 0.25rem;
}
.dealengine .form-control-color::-webkit-color-swatch {
  height: 1.5em;
  border-radius: 0.25rem;
}
.dealengine .form-select {
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #2A3478;
  background-color: #fff;
  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;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  appearance: none;
}
.dealengine .form-select:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.dealengine .form-select[multiple], .dealengine .form-select[size]:not([size="1"]) {
  padding-right: 0.75rem;
  background-image: none;
}
.dealengine .form-select:disabled {
  background-color: #e9ecef;
}
.dealengine .form-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #2A3478;
}
.dealengine .form-select-sm {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
}
.dealengine .form-select-lg {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
}
.dealengine .form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}
.dealengine .form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
}
.dealengine .form-check-input {
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(32, 37, 65, 0.25);
  appearance: none;
  color-adjust: exact;
}
.dealengine .form-check-input[type=checkbox] {
  border-radius: 0.25em;
}
.dealengine .form-check-input[type=radio] {
  border-radius: 50%;
}
.dealengine .form-check-input:active {
  filter: brightness(90%);
}
.dealengine .form-check-input:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.dealengine .form-check-input:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.dealengine .form-check-input:checked[type=checkbox] {
  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");
}
.dealengine .form-check-input:checked[type=radio] {
  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");
}
.dealengine .form-check-input[type=checkbox]:indeterminate {
  background-color: #0d6efd;
  border-color: #0d6efd;
  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 10h8'/%3e%3c/svg%3e");
}
.dealengine .form-check-input:disabled {
  pointer-events: none;
  filter: none;
  opacity: 0.5;
}
.dealengine .form-check-input[disabled] ~ .form-check-label, .dealengine .form-check-input:disabled ~ .form-check-label {
  opacity: 0.5;
}
.dealengine .form-switch {
  padding-left: 2.5em;
}
.dealengine .form-switch .form-check-input {
  width: 2em;
  margin-left: -2.5em;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  background-position: left center;
  border-radius: 2em;
  transition: background-position 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .dealengine .form-switch .form-check-input {
    transition: none;
  }
}
.dealengine .form-switch .form-check-input:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e");
}
.dealengine .form-switch .form-check-input:checked {
  background-position: right center;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
.dealengine .form-check-inline {
  display: inline-block;
  margin-right: 1rem;
}
.dealengine .btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.dealengine .btn-check[disabled] + .btn, .dealengine .btn-check:disabled + .btn {
  pointer-events: none;
  filter: none;
  opacity: 0.65;
}
.dealengine .form-range {
  width: 100%;
  height: 1.5rem;
  padding: 0;
  background-color: transparent;
  appearance: none;
}
.dealengine .form-range:focus {
  outline: 0;
}
.dealengine .form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.dealengine .form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.dealengine .form-range::-moz-focus-outer {
  border: 0;
}
.dealengine .form-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #0d6efd;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .dealengine .form-range::-webkit-slider-thumb {
    transition: none;
  }
}
.dealengine .form-range::-webkit-slider-thumb:active {
  background-color: #b6d4fe;
}
.dealengine .form-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.dealengine .form-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #0d6efd;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .dealengine .form-range::-moz-range-thumb {
    transition: none;
  }
}
.dealengine .form-range::-moz-range-thumb:active {
  background-color: #b6d4fe;
}
.dealengine .form-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.dealengine .form-range:disabled {
  pointer-events: none;
}
.dealengine .form-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}
.dealengine .form-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}
.dealengine .form-floating {
  position: relative;
}
.dealengine .form-floating > .form-control,
.dealengine .form-floating > .form-select {
  height: calc(3.5rem + 2px);
  padding: 1rem 0.75rem;
}
.dealengine .form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 1rem 0.75rem;
  pointer-events: none;
  border: 1px solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .dealengine .form-floating > label {
    transition: none;
  }
}
.dealengine .form-floating > .form-control::placeholder {
  color: transparent;
}
.dealengine .form-floating > .form-control:focus, .dealengine .form-floating > .form-control:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.dealengine .form-floating > .form-control:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.dealengine .form-floating > .form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.dealengine .form-floating > .form-control:focus ~ label,
.dealengine .form-floating > .form-control:not(:placeholder-shown) ~ label,
.dealengine .form-floating > .form-select ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.dealengine .form-floating > .form-control:-webkit-autofill ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.dealengine .input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.dealengine .input-group > .form-control,
.dealengine .input-group > .form-select {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}
.dealengine .input-group > .form-control:focus,
.dealengine .input-group > .form-select:focus {
  z-index: 3;
}
.dealengine .input-group .btn {
  position: relative;
  z-index: 2;
}
.dealengine .input-group .btn:focus {
  z-index: 3;
}
.dealengine .input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #2A3478;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}
.dealengine .input-group-lg > .form-control,
.dealengine .input-group-lg > .form-select,
.dealengine .input-group-lg > .input-group-text,
.dealengine .input-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}
.dealengine .input-group-sm > .form-control,
.dealengine .input-group-sm > .form-select,
.dealengine .input-group-sm > .input-group-text,
.dealengine .input-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}
.dealengine .input-group-lg > .form-select,
.dealengine .input-group-sm > .form-select {
  padding-right: 3rem;
}
.dealengine .input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),
.dealengine .input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.dealengine .input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu),
.dealengine .input-group.has-validation > .dropdown-toggle:nth-last-child(n+4) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.dealengine .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.dealengine .valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #198754;
}
.dealengine .valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: rgba(25, 135, 84, 0.9);
  border-radius: 0.25rem;
}
.was-validated .dealengine:valid ~ .valid-feedback,
.was-validated .dealengine:valid ~ .valid-tooltip, .dealengine.is-valid ~ .valid-feedback,
.dealengine.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .dealengine .form-control:valid, .dealengine .form-control.is-valid {
  border-color: #198754;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .dealengine .form-control:valid:focus, .dealengine .form-control.is-valid:focus {
  border-color: #198754;
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}
.was-validated .dealengine textarea.form-control:valid, .dealengine textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}
.was-validated .dealengine .form-select:valid, .dealengine .form-select.is-valid {
  border-color: #198754;
}
.was-validated .dealengine .form-select:valid:not([multiple]):not([size]), .was-validated .dealengine .form-select:valid:not([multiple])[size="1"], .dealengine .form-select.is-valid:not([multiple]):not([size]), .dealengine .form-select.is-valid:not([multiple])[size="1"] {
  padding-right: 4.125rem;
  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"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .dealengine .form-select:valid:focus, .dealengine .form-select.is-valid:focus {
  border-color: #198754;
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}
.was-validated .dealengine .form-check-input:valid, .dealengine .form-check-input.is-valid {
  border-color: #198754;
}
.was-validated .dealengine .form-check-input:valid:checked, .dealengine .form-check-input.is-valid:checked {
  background-color: #198754;
}
.was-validated .dealengine .form-check-input:valid:focus, .dealengine .form-check-input.is-valid:focus {
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}
.was-validated .dealengine .form-check-input:valid ~ .form-check-label, .dealengine .form-check-input.is-valid ~ .form-check-label {
  color: #198754;
}
.dealengine .form-check-inline .form-check-input ~ .valid-feedback {
  margin-left: 0.5em;
}
.was-validated .dealengine .input-group .form-control:valid, .dealengine .input-group .form-control.is-valid,
.was-validated .dealengine .input-group .form-select:valid,
.dealengine .input-group .form-select.is-valid {
  z-index: 3;
}
.dealengine .invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #dc3545;
}
.dealengine .invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0.25rem;
}
.was-validated .dealengine:invalid ~ .invalid-feedback,
.was-validated .dealengine:invalid ~ .invalid-tooltip, .dealengine.is-invalid ~ .invalid-feedback,
.dealengine.is-invalid ~ .invalid-tooltip {
  display: block;
}
.was-validated .dealengine .form-control:invalid, .dealengine .form-control.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .dealengine .form-control:invalid:focus, .dealengine .form-control.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}
.was-validated .dealengine textarea.form-control:invalid, .dealengine textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}
.was-validated .dealengine .form-select:invalid, .dealengine .form-select.is-invalid {
  border-color: #dc3545;
}
.was-validated .dealengine .form-select:invalid:not([multiple]):not([size]), .was-validated .dealengine .form-select:invalid:not([multiple])[size="1"], .dealengine .form-select.is-invalid:not([multiple]):not([size]), .dealengine .form-select.is-invalid:not([multiple])[size="1"] {
  padding-right: 4.125rem;
  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"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .dealengine .form-select:invalid:focus, .dealengine .form-select.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}
.was-validated .dealengine .form-check-input:invalid, .dealengine .form-check-input.is-invalid {
  border-color: #dc3545;
}
.was-validated .dealengine .form-check-input:invalid:checked, .dealengine .form-check-input.is-invalid:checked {
  background-color: #dc3545;
}
.was-validated .dealengine .form-check-input:invalid:focus, .dealengine .form-check-input.is-invalid:focus {
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}
.was-validated .dealengine .form-check-input:invalid ~ .form-check-label, .dealengine .form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}
.dealengine .form-check-inline .form-check-input ~ .invalid-feedback {
  margin-left: 0.5em;
}
.was-validated .dealengine .input-group .form-control:invalid, .dealengine .input-group .form-control.is-invalid,
.was-validated .dealengine .input-group .form-select:invalid,
.dealengine .input-group .form-select.is-invalid {
  z-index: 3;
}
.dealengine .btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #2A3478;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  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;
}
@media (prefers-reduced-motion: reduce) {
  .dealengine .btn {
    transition: none;
  }
}
.dealengine .btn:hover {
  color: #2A3478;
}
.btn-check:focus + .dealengine .btn, .dealengine .btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.dealengine .btn:disabled, .dealengine .btn.disabled, fieldset:disabled .dealengine .btn {
  pointer-events: none;
  opacity: 0.65;
}
.dealengine .btn-primary {
  color: #fff;
  background-color: #4C5FD9;
  border-color: #4C5FD9;
}
.dealengine .btn-primary:hover {
  color: #fff;
  background-color: #4151b8;
  border-color: #3d4cae;
}
.btn-check:focus + .dealengine .btn-primary, .dealengine .btn-primary:focus {
  color: #fff;
  background-color: #4151b8;
  border-color: #3d4cae;
  box-shadow: 0 0 0 0.25rem rgba(103, 119, 223, 0.5);
}
.btn-check:checked + .dealengine .btn-primary, .btn-check:active + .dealengine .btn-primary, .dealengine .btn-primary:active, .dealengine .btn-primary.active, .show > .dealengine .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #3d4cae;
  border-color: #3947a3;
}
.btn-check:checked + .dealengine .btn-primary:focus, .btn-check:active + .dealengine .btn-primary:focus, .dealengine .btn-primary:active:focus, .dealengine .btn-primary.active:focus, .show > .dealengine .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(103, 119, 223, 0.5);
}
.dealengine .btn-primary:disabled, .dealengine .btn-primary.disabled {
  color: #fff;
  background-color: #4C5FD9;
  border-color: #4C5FD9;
}
.dealengine .btn-secondary {
  color: #202541;
  background-color: #4CD9CF;
  border-color: #4CD9CF;
}
.dealengine .btn-secondary:hover {
  color: #202541;
  background-color: #67dfd6;
  border-color: #5eddd4;
}
.btn-check:focus + .dealengine .btn-secondary, .dealengine .btn-secondary:focus {
  color: #202541;
  background-color: #67dfd6;
  border-color: #5eddd4;
  box-shadow: 0 0 0 0.25rem rgba(69, 190, 186, 0.5);
}
.btn-check:checked + .dealengine .btn-secondary, .btn-check:active + .dealengine .btn-secondary, .dealengine .btn-secondary:active, .dealengine .btn-secondary.active, .show > .dealengine .btn-secondary.dropdown-toggle {
  color: #202541;
  background-color: #70e1d9;
  border-color: #5eddd4;
}
.btn-check:checked + .dealengine .btn-secondary:focus, .btn-check:active + .dealengine .btn-secondary:focus, .dealengine .btn-secondary:active:focus, .dealengine .btn-secondary.active:focus, .show > .dealengine .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(69, 190, 186, 0.5);
}
.dealengine .btn-secondary:disabled, .dealengine .btn-secondary.disabled {
  color: #202541;
  background-color: #4CD9CF;
  border-color: #4CD9CF;
}
.dealengine .btn-info {
  color: #202541;
  background-color: #4CD9CF;
  border-color: #4CD9CF;
}
.dealengine .btn-info:hover {
  color: #202541;
  background-color: #67dfd6;
  border-color: #5eddd4;
}
.btn-check:focus + .dealengine .btn-info, .dealengine .btn-info:focus {
  color: #202541;
  background-color: #67dfd6;
  border-color: #5eddd4;
  box-shadow: 0 0 0 0.25rem rgba(69, 190, 186, 0.5);
}
.btn-check:checked + .dealengine .btn-info, .btn-check:active + .dealengine .btn-info, .dealengine .btn-info:active, .dealengine .btn-info.active, .show > .dealengine .btn-info.dropdown-toggle {
  color: #202541;
  background-color: #70e1d9;
  border-color: #5eddd4;
}
.btn-check:checked + .dealengine .btn-info:focus, .btn-check:active + .dealengine .btn-info:focus, .dealengine .btn-info:active:focus, .dealengine .btn-info.active:focus, .show > .dealengine .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(69, 190, 186, 0.5);
}
.dealengine .btn-info:disabled, .dealengine .btn-info.disabled {
  color: #202541;
  background-color: #4CD9CF;
  border-color: #4CD9CF;
}
.dealengine .btn-success {
  color: #202541;
  background-color: #4CD9CF;
  border-color: #4CD9CF;
}
.dealengine .btn-success:hover {
  color: #202541;
  background-color: #67dfd6;
  border-color: #5eddd4;
}
.btn-check:focus + .dealengine .btn-success, .dealengine .btn-success:focus {
  color: #202541;
  background-color: #67dfd6;
  border-color: #5eddd4;
  box-shadow: 0 0 0 0.25rem rgba(69, 190, 186, 0.5);
}
.btn-check:checked + .dealengine .btn-success, .btn-check:active + .dealengine .btn-success, .dealengine .btn-success:active, .dealengine .btn-success.active, .show > .dealengine .btn-success.dropdown-toggle {
  color: #202541;
  background-color: #70e1d9;
  border-color: #5eddd4;
}
.btn-check:checked + .dealengine .btn-success:focus, .btn-check:active + .dealengine .btn-success:focus, .dealengine .btn-success:active:focus, .dealengine .btn-success.active:focus, .show > .dealengine .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(69, 190, 186, 0.5);
}
.dealengine .btn-success:disabled, .dealengine .btn-success.disabled {
  color: #202541;
  background-color: #4CD9CF;
  border-color: #4CD9CF;
}
.dealengine .btn-outline-primary {
  color: #4C5FD9;
  border-color: #4C5FD9;
}
.dealengine .btn-outline-primary:hover {
  color: #fff;
  background-color: #4C5FD9;
  border-color: #4C5FD9;
}
.btn-check:focus + .dealengine .btn-outline-primary, .dealengine .btn-outline-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(76, 95, 217, 0.5);
}
.btn-check:checked + .dealengine .btn-outline-primary, .btn-check:active + .dealengine .btn-outline-primary, .dealengine .btn-outline-primary:active, .dealengine .btn-outline-primary.active, .dealengine .btn-outline-primary.dropdown-toggle.show {
  color: #fff;
  background-color: #4C5FD9;
  border-color: #4C5FD9;
}
.btn-check:checked + .dealengine .btn-outline-primary:focus, .btn-check:active + .dealengine .btn-outline-primary:focus, .dealengine .btn-outline-primary:active:focus, .dealengine .btn-outline-primary.active:focus, .dealengine .btn-outline-primary.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(76, 95, 217, 0.5);
}
.dealengine .btn-outline-primary:disabled, .dealengine .btn-outline-primary.disabled {
  color: #4C5FD9;
  background-color: transparent;
}
.dealengine .btn-outline-secondary {
  color: #4CD9CF;
  border-color: #4CD9CF;
}
.dealengine .btn-outline-secondary:hover {
  color: #202541;
  background-color: #4CD9CF;
  border-color: #4CD9CF;
}
.btn-check:focus + .dealengine .btn-outline-secondary, .dealengine .btn-outline-secondary:focus {
  box-shadow: 0 0 0 0.25rem rgba(76, 217, 207, 0.5);
}
.btn-check:checked + .dealengine .btn-outline-secondary, .btn-check:active + .dealengine .btn-outline-secondary, .dealengine .btn-outline-secondary:active, .dealengine .btn-outline-secondary.active, .dealengine .btn-outline-secondary.dropdown-toggle.show {
  color: #202541;
  background-color: #4CD9CF;
  border-color: #4CD9CF;
}
.btn-check:checked + .dealengine .btn-outline-secondary:focus, .btn-check:active + .dealengine .btn-outline-secondary:focus, .dealengine .btn-outline-secondary:active:focus, .dealengine .btn-outline-secondary.active:focus, .dealengine .btn-outline-secondary.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(76, 217, 207, 0.5);
}
.dealengine .btn-outline-secondary:disabled, .dealengine .btn-outline-secondary.disabled {
  color: #4CD9CF;
  background-color: transparent;
}
.dealengine .btn-outline-info {
  color: #4CD9CF;
  border-color: #4CD9CF;
}
.dealengine .btn-outline-info:hover {
  color: #202541;
  background-color: #4CD9CF;
  border-color: #4CD9CF;
}
.btn-check:focus + .dealengine .btn-outline-info, .dealengine .btn-outline-info:focus {
  box-shadow: 0 0 0 0.25rem rgba(76, 217, 207, 0.5);
}
.btn-check:checked + .dealengine .btn-outline-info, .btn-check:active + .dealengine .btn-outline-info, .dealengine .btn-outline-info:active, .dealengine .btn-outline-info.active, .dealengine .btn-outline-info.dropdown-toggle.show {
  color: #202541;
  background-color: #4CD9CF;
  border-color: #4CD9CF;
}
.btn-check:checked + .dealengine .btn-outline-info:focus, .btn-check:active + .dealengine .btn-outline-info:focus, .dealengine .btn-outline-info:active:focus, .dealengine .btn-outline-info.active:focus, .dealengine .btn-outline-info.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(76, 217, 207, 0.5);
}
.dealengine .btn-outline-info:disabled, .dealengine .btn-outline-info.disabled {
  color: #4CD9CF;
  background-color: transparent;
}
.dealengine .btn-outline-success {
  color: #4CD9CF;
  border-color: #4CD9CF;
}
.dealengine .btn-outline-success:hover {
  color: #202541;
  background-color: #4CD9CF;
  border-color: #4CD9CF;
}
.btn-check:focus + .dealengine .btn-outline-success, .dealengine .btn-outline-success:focus {
  box-shadow: 0 0 0 0.25rem rgba(76, 217, 207, 0.5);
}
.btn-check:checked + .dealengine .btn-outline-success, .btn-check:active + .dealengine .btn-outline-success, .dealengine .btn-outline-success:active, .dealengine .btn-outline-success.active, .dealengine .btn-outline-success.dropdown-toggle.show {
  color: #202541;
  background-color: #4CD9CF;
  border-color: #4CD9CF;
}
.btn-check:checked + .dealengine .btn-outline-success:focus, .btn-check:active + .dealengine .btn-outline-success:focus, .dealengine .btn-outline-success:active:focus, .dealengine .btn-outline-success.active:focus, .dealengine .btn-outline-success.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(76, 217, 207, 0.5);
}
.dealengine .btn-outline-success:disabled, .dealengine .btn-outline-success.disabled {
  color: #4CD9CF;
  background-color: transparent;
}
.dealengine .btn-link {
  font-weight: 400;
  color: #0d6efd;
  text-decoration: underline;
}
.dealengine .btn-link:hover {
  color: #0a58ca;
}
.dealengine .btn-link:disabled, .dealengine .btn-link.disabled {
  color: #6c757d;
}
.dealengine .btn-lg, .dealengine .btn-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}
.dealengine .btn-sm, .dealengine .btn-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}
.dealengine .fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .dealengine .fade {
    transition: none;
  }
}
.dealengine .fade:not(.show) {
  opacity: 0;
}
.dealengine .collapse:not(.show) {
  display: none;
}
.dealengine .collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .dealengine .collapsing {
    transition: none;
  }
}
.dealengine .dropup,
.dealengine .dropend,
.dealengine .dropdown,
.dealengine .dropstart {
  position: relative;
}
.dealengine .dropdown-toggle {
  white-space: nowrap;
}
.dealengine .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dealengine .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dealengine .dropdown-menu {
  position: absolute;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #2A3478;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(32, 37, 65, 0.15);
  border-radius: 0.25rem;
}
.dealengine .dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: 0.125rem;
}
.dealengine .dropdown-menu-start {
  --bs-position: start;
}
.dealengine .dropdown-menu-start[data-bs-popper] {
  right: auto /* rtl:ignore */;
  left: 0 /* rtl:ignore */;
}
.dealengine .dropdown-menu-end {
  --bs-position: end;
}
.dealengine .dropdown-menu-end[data-bs-popper] {
  right: 0 /* rtl:ignore */;
  left: auto /* rtl:ignore */;
}
@media (min-width: 576px) {
  .dealengine .dropdown-menu-sm-start {
    --bs-position: start;
  }
  .dealengine .dropdown-menu-sm-start[data-bs-popper] {
    right: auto /* rtl:ignore */;
    left: 0 /* rtl:ignore */;
  }
  .dealengine .dropdown-menu-sm-end {
    --bs-position: end;
  }
  .dealengine .dropdown-menu-sm-end[data-bs-popper] {
    right: 0 /* rtl:ignore */;
    left: auto /* rtl:ignore */;
  }
}
@media (min-width: 768px) {
  .dealengine .dropdown-menu-md-start {
    --bs-position: start;
  }
  .dealengine .dropdown-menu-md-start[data-bs-popper] {
    right: auto /* rtl:ignore */;
    left: 0 /* rtl:ignore */;
  }
  .dealengine .dropdown-menu-md-end {
    --bs-position: end;
  }
  .dealengine .dropdown-menu-md-end[data-bs-popper] {
    right: 0 /* rtl:ignore */;
    left: auto /* rtl:ignore */;
  }
}
@media (min-width: 992px) {
  .dealengine .dropdown-menu-lg-start {
    --bs-position: start;
  }
  .dealengine .dropdown-menu-lg-start[data-bs-popper] {
    right: auto /* rtl:ignore */;
    left: 0 /* rtl:ignore */;
  }
  .dealengine .dropdown-menu-lg-end {
    --bs-position: end;
  }
  .dealengine .dropdown-menu-lg-end[data-bs-popper] {
    right: 0 /* rtl:ignore */;
    left: auto /* rtl:ignore */;
  }
}
@media (min-width: 1200px) {
  .dealengine .dropdown-menu-xl-start {
    --bs-position: start;
  }
  .dealengine .dropdown-menu-xl-start[data-bs-popper] {
    right: auto /* rtl:ignore */;
    left: 0 /* rtl:ignore */;
  }
  .dealengine .dropdown-menu-xl-end {
    --bs-position: end;
  }
  .dealengine .dropdown-menu-xl-end[data-bs-popper] {
    right: 0 /* rtl:ignore */;
    left: auto /* rtl:ignore */;
  }
}
@media (min-width: 1400px) {
  .dealengine .dropdown-menu-xxl-start {
    --bs-position: start;
  }
  .dealengine .dropdown-menu-xxl-start[data-bs-popper] {
    right: auto /* rtl:ignore */;
    left: 0 /* rtl:ignore */;
  }
  .dealengine .dropdown-menu-xxl-end {
    --bs-position: end;
  }
  .dealengine .dropdown-menu-xxl-end[data-bs-popper] {
    right: 0 /* rtl:ignore */;
    left: auto /* rtl:ignore */;
  }
}
.dealengine .dropup .dropdown-menu[data-bs-popper] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}
.dealengine .dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}
.dealengine .dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dealengine .dropend .dropdown-menu[data-bs-popper] {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}
.dealengine .dropend .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}
.dealengine .dropend .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dealengine .dropend .dropdown-toggle::after {
  vertical-align: 0;
}
.dealengine .dropstart .dropdown-menu[data-bs-popper] {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}
.dealengine .dropstart .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
.dealengine .dropstart .dropdown-toggle::after {
  display: none;
}
.dealengine .dropstart .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}
.dealengine .dropstart .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dealengine .dropstart .dropdown-toggle::before {
  vertical-align: 0;
}
.dealengine .dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(32, 37, 65, 0.15);
}
.dealengine .dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dealengine .dropdown-item:hover, .dealengine .dropdown-item:focus {
  color: #1e2125;
  background-color: #e9ecef;
}
.dealengine .dropdown-item.active, .dealengine .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #0d6efd;
}
.dealengine .dropdown-item.disabled, .dealengine .dropdown-item:disabled {
  color: #adb5bd;
  pointer-events: none;
  background-color: transparent;
}
.dealengine .dropdown-menu.show {
  display: block;
}
.dealengine .dropdown-header {
  display: block;
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}
.dealengine .dropdown-item-text {
  display: block;
  padding: 0.25rem 1rem;
  color: #212529;
}
.dealengine .dropdown-menu-dark {
  color: #dee2e6;
  background-color: #343a40;
  border-color: rgba(32, 37, 65, 0.15);
}
.dealengine .dropdown-menu-dark .dropdown-item {
  color: #dee2e6;
}
.dealengine .dropdown-menu-dark .dropdown-item:hover, .dealengine .dropdown-menu-dark .dropdown-item:focus {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.15);
}
.dealengine .dropdown-menu-dark .dropdown-item.active, .dealengine .dropdown-menu-dark .dropdown-item:active {
  color: #fff;
  background-color: #0d6efd;
}
.dealengine .dropdown-menu-dark .dropdown-item.disabled, .dealengine .dropdown-menu-dark .dropdown-item:disabled {
  color: #adb5bd;
}
.dealengine .dropdown-menu-dark .dropdown-divider {
  border-color: rgba(32, 37, 65, 0.15);
}
.dealengine .dropdown-menu-dark .dropdown-item-text {
  color: #dee2e6;
}
.dealengine .dropdown-menu-dark .dropdown-header {
  color: #adb5bd;
}
.dealengine .btn-group,
.dealengine .btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.dealengine .btn-group > .btn,
.dealengine .btn-group-vertical > .btn {
  position: relative;
  flex: 1 1 auto;
}
.dealengine .btn-group > .btn-check:checked + .btn,
.dealengine .btn-group > .btn-check:focus + .btn,
.dealengine .btn-group > .btn:hover,
.dealengine .btn-group > .btn:focus,
.dealengine .btn-group > .btn:active,
.dealengine .btn-group > .btn.active,
.dealengine .btn-group-vertical > .btn-check:checked + .btn,
.dealengine .btn-group-vertical > .btn-check:focus + .btn,
.dealengine .btn-group-vertical > .btn:hover,
.dealengine .btn-group-vertical > .btn:focus,
.dealengine .btn-group-vertical > .btn:active,
.dealengine .btn-group-vertical > .btn.active {
  z-index: 1;
}
.dealengine .btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.dealengine .btn-toolbar .input-group {
  width: auto;
}
.dealengine .btn-group > .btn:not(:first-child),
.dealengine .btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
}
.dealengine .btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.dealengine .btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.dealengine .btn-group > .btn:nth-child(n+3),
.dealengine .btn-group > :not(.btn-check) + .btn,
.dealengine .btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.dealengine .dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}
.dealengine .dropdown-toggle-split::after, .dropup .dealengine .dropdown-toggle-split::after, .dropend .dealengine .dropdown-toggle-split::after {
  margin-left: 0;
}
.dropstart .dealengine .dropdown-toggle-split::before {
  margin-right: 0;
}
.dealengine .btn-sm + .dropdown-toggle-split, .dealengine .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}
.dealengine .btn-lg + .dropdown-toggle-split, .dealengine .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}
.dealengine .btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.dealengine .btn-group-vertical > .btn,
.dealengine .btn-group-vertical > .btn-group {
  width: 100%;
}
.dealengine .btn-group-vertical > .btn:not(:first-child),
.dealengine .btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: -1px;
}
.dealengine .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.dealengine .btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.dealengine .btn-group-vertical > .btn ~ .btn,
.dealengine .btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.dealengine .nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.dealengine .nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #0d6efd;
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .dealengine .nav-link {
    transition: none;
  }
}
.dealengine .nav-link:hover, .dealengine .nav-link:focus {
  color: #0a58ca;
}
.dealengine .nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}
.dealengine .nav-tabs {
  border-bottom: 1px solid #dee2e6;
}
.dealengine .nav-tabs .nav-link {
  margin-bottom: -1px;
  background: none;
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.dealengine .nav-tabs .nav-link:hover, .dealengine .nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
  isolation: isolate;
}
.dealengine .nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}
.dealengine .nav-tabs .nav-link.active,
.dealengine .nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}
.dealengine .nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.dealengine .nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: 0.25rem;
}
.dealengine .nav-pills .nav-link.active,
.dealengine .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #0d6efd;
}
.dealengine .nav-fill > .nav-link,
.dealengine .nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}
.dealengine .nav-justified > .nav-link,
.dealengine .nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}
.dealengine .nav-fill .nav-item .nav-link,
.dealengine .nav-justified .nav-item .nav-link {
  width: 100%;
}
.dealengine .tab-content > .tab-pane {
  display: none;
}
.dealengine .tab-content > .active {
  display: block;
}
.dealengine .navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.dealengine .navbar > .container,
.dealengine .navbar > .container-fluid,
.dealengine .navbar > .container-sm,
.dealengine .navbar > .container-md,
.dealengine .navbar > .container-lg,
.dealengine .navbar > .container-xl,
.dealengine .navbar > .container-xxl {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}
.dealengine .navbar-brand {
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  text-decoration: none;
  white-space: nowrap;
}
.dealengine .navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.dealengine .navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}
.dealengine .navbar-nav .dropdown-menu {
  position: static;
}
.dealengine .navbar-text {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.dealengine .navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}
.dealengine .navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  transition: box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .dealengine .navbar-toggler {
    transition: none;
  }
}
.dealengine .navbar-toggler:hover {
  text-decoration: none;
}
.dealengine .navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 0.25rem;
}
.dealengine .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%;
}
.dealengine .navbar-nav-scroll {
  max-height: var(--bs-scroll-height, 75vh);
  overflow-y: auto;
}
@media (min-width: 576px) {
  .dealengine .navbar-expand-sm {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .dealengine .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  .dealengine .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .dealengine .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .dealengine .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }
  .dealengine .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .dealengine .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}
@media (min-width: 768px) {
  .dealengine .navbar-expand-md {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .dealengine .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  .dealengine .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .dealengine .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .dealengine .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
  .dealengine .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .dealengine .navbar-expand-md .navbar-toggler {
    display: none;
  }
}
@media (min-width: 992px) {
  .dealengine .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .dealengine .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .dealengine .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .dealengine .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .dealengine .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  .dealengine .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .dealengine .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}
@media (min-width: 1200px) {
  .dealengine .navbar-expand-xl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .dealengine .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  .dealengine .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .dealengine .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .dealengine .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }
  .dealengine .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .dealengine .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}
@media (min-width: 1400px) {
  .dealengine .navbar-expand-xxl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .dealengine .navbar-expand-xxl .navbar-nav {
    flex-direction: row;
  }
  .dealengine .navbar-expand-xxl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .dealengine .navbar-expand-xxl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .dealengine .navbar-expand-xxl .navbar-nav-scroll {
    overflow: visible;
  }
  .dealengine .navbar-expand-xxl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .dealengine .navbar-expand-xxl .navbar-toggler {
    display: none;
  }
}
.dealengine .navbar-expand {
  flex-wrap: nowrap;
  justify-content: flex-start;
}
.dealengine .navbar-expand .navbar-nav {
  flex-direction: row;
}
.dealengine .navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
.dealengine .navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.dealengine .navbar-expand .navbar-nav-scroll {
  overflow: visible;
}
.dealengine .navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}
.dealengine .navbar-expand .navbar-toggler {
  display: none;
}
.dealengine .navbar-light .navbar-brand {
  color: rgba(32, 37, 65, 0.9);
}
.dealengine .navbar-light .navbar-brand:hover, .dealengine .navbar-light .navbar-brand:focus {
  color: rgba(32, 37, 65, 0.9);
}
.dealengine .navbar-light .navbar-nav .nav-link {
  color: rgba(32, 37, 65, 0.55);
}
.dealengine .navbar-light .navbar-nav .nav-link:hover, .dealengine .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(32, 37, 65, 0.7);
}
.dealengine .navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(32, 37, 65, 0.3);
}
.dealengine .navbar-light .navbar-nav .show > .nav-link,
.dealengine .navbar-light .navbar-nav .nav-link.active {
  color: rgba(32, 37, 65, 0.9);
}
.dealengine .navbar-light .navbar-toggler {
  color: rgba(32, 37, 65, 0.55);
  border-color: rgba(32, 37, 65, 0.1);
}
.dealengine .navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2832, 37, 65, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.dealengine .navbar-light .navbar-text {
  color: rgba(32, 37, 65, 0.55);
}
.dealengine .navbar-light .navbar-text a,
.dealengine .navbar-light .navbar-text a:hover,
.dealengine .navbar-light .navbar-text a:focus {
  color: rgba(32, 37, 65, 0.9);
}
.dealengine .navbar-dark .navbar-brand {
  color: #fff;
}
.dealengine .navbar-dark .navbar-brand:hover, .dealengine .navbar-dark .navbar-brand:focus {
  color: #fff;
}
.dealengine .navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.55);
}
.dealengine .navbar-dark .navbar-nav .nav-link:hover, .dealengine .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}
.dealengine .navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}
.dealengine .navbar-dark .navbar-nav .show > .nav-link,
.dealengine .navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}
.dealengine .navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.55);
  border-color: rgba(255, 255, 255, 0.1);
}
.dealengine .navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.dealengine .navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.55);
}
.dealengine .navbar-dark .navbar-text a,
.dealengine .navbar-dark .navbar-text a:hover,
.dealengine .navbar-dark .navbar-text a:focus {
  color: #fff;
}
.dealengine .card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(32, 37, 65, 0.125);
  border-radius: 0.25rem;
}
.dealengine .card > hr {
  margin-right: 0;
  margin-left: 0;
}
.dealengine .card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}
.dealengine .card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.dealengine .card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
.dealengine .card > .card-header + .list-group,
.dealengine .card > .list-group + .card-footer {
  border-top: 0;
}
.dealengine .card-body {
  flex: 1 1 auto;
  padding: 1rem 1rem;
}
.dealengine .card-title {
  margin-bottom: 0.5rem;
}
.dealengine .card-subtitle {
  margin-top: -0.25rem;
  margin-bottom: 0;
}
.dealengine .card-text:last-child {
  margin-bottom: 0;
}
.dealengine .card-link:hover {
  text-decoration: none;
}
.dealengine .card-link + .card-link {
  margin-left: 1rem;
}
.dealengine .card-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  background-color: rgba(32, 37, 65, 0.03);
  border-bottom: 1px solid rgba(32, 37, 65, 0.125);
}
.dealengine .card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}
.dealengine .card-footer {
  padding: 0.5rem 1rem;
  background-color: rgba(32, 37, 65, 0.03);
  border-top: 1px solid rgba(32, 37, 65, 0.125);
}
.dealengine .card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}
.dealengine .card-header-tabs {
  margin-right: -0.5rem;
  margin-bottom: -0.5rem;
  margin-left: -0.5rem;
  border-bottom: 0;
}
.dealengine .card-header-pills {
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}
.dealengine .card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
  border-radius: calc(0.25rem - 1px);
}
.dealengine .card-img,
.dealengine .card-img-top,
.dealengine .card-img-bottom {
  width: 100%;
}
.dealengine .card-img,
.dealengine .card-img-top {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.dealengine .card-img,
.dealengine .card-img-bottom {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
.dealengine .card-group > .card {
  margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
  .dealengine .card-group {
    display: flex;
    flex-flow: row wrap;
  }
  .dealengine .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .dealengine .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .dealengine .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .dealengine .card-group > .card:not(:last-child) .card-img-top,
.dealengine .card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  .dealengine .card-group > .card:not(:last-child) .card-img-bottom,
.dealengine .card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  .dealengine .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .dealengine .card-group > .card:not(:first-child) .card-img-top,
.dealengine .card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  .dealengine .card-group > .card:not(:first-child) .card-img-bottom,
.dealengine .card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}
.dealengine .accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: #2A3478;
  text-align: left;
  background-color: #fff;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  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, border-radius 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .dealengine .accordion-button {
    transition: none;
  }
}
.dealengine .accordion-button:not(.collapsed) {
  color: #0c63e4;
  background-color: #e7f1ff;
  box-shadow: inset 0 -1px 0 rgba(32, 37, 65, 0.125);
}
.dealengine .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}
.dealengine .accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232A3478'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform 0.2s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .dealengine .accordion-button::after {
    transition: none;
  }
}
.dealengine .accordion-button:hover {
  z-index: 2;
}
.dealengine .accordion-button:focus {
  z-index: 3;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.dealengine .accordion-header {
  margin-bottom: 0;
}
.dealengine .accordion-item {
  background-color: #fff;
  border: 1px solid rgba(32, 37, 65, 0.125);
}
.dealengine .accordion-item:first-of-type {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.dealengine .accordion-item:first-of-type .accordion-button {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.dealengine .accordion-item:not(:first-of-type) {
  border-top: 0;
}
.dealengine .accordion-item:last-of-type {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.dealengine .accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
.dealengine .accordion-item:last-of-type .accordion-collapse {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.dealengine .accordion-body {
  padding: 1rem 1.25rem;
}
.dealengine .accordion-flush .accordion-collapse {
  border-width: 0;
}
.dealengine .accordion-flush .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}
.dealengine .accordion-flush .accordion-item:first-child {
  border-top: 0;
}
.dealengine .accordion-flush .accordion-item:last-child {
  border-bottom: 0;
}
.dealengine .accordion-flush .accordion-item .accordion-button {
  border-radius: 0;
}
.dealengine .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0;
  margin-bottom: 1rem;
  list-style: none;
}
.dealengine .breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}
.dealengine .breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: #6c757d;
  content: var(--bs-breadcrumb-divider, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */;
}
.dealengine .breadcrumb-item.active {
  color: #6c757d;
}
.dealengine .pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
}
.dealengine .page-link {
  position: relative;
  display: block;
  color: #0d6efd;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #dee2e6;
  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;
}
@media (prefers-reduced-motion: reduce) {
  .dealengine .page-link {
    transition: none;
  }
}
.dealengine .page-link:hover {
  z-index: 2;
  color: #0a58ca;
  background-color: #e9ecef;
  border-color: #dee2e6;
}
.dealengine .page-link:focus {
  z-index: 3;
  color: #0a58ca;
  background-color: #e9ecef;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.dealengine .page-item:not(:first-child) .page-link {
  margin-left: -1px;
}
.dealengine .page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.dealengine .page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
  border-color: #dee2e6;
}
.dealengine .page-link {
  padding: 0.375rem 0.75rem;
}
.dealengine .page-item:first-child .page-link {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.dealengine .page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.dealengine .pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
}
.dealengine .pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}
.dealengine .pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}
.dealengine .pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}
.dealengine .pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}
.dealengine .pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}
.dealengine .badge {
  display: inline-block;
  padding: 0.35em 0.65em;
  font-size: 0.75em;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
}
.dealengine .badge:empty {
  display: none;
}
.dealengine .btn .badge {
  position: relative;
  top: -1px;
}
.dealengine .alert {
  position: relative;
  padding: 1rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}
.dealengine .alert-heading {
  color: inherit;
}
.dealengine .alert-link {
  font-weight: 700;
}
.dealengine .alert-dismissible {
  padding-right: 3rem;
}
.dealengine .alert-dismissible .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 1.25rem 1rem;
}
.dealengine .alert-primary {
  color: #2e3982;
  background-color: #dbdff7;
  border-color: #c9cff4;
}
.dealengine .alert-primary .alert-link {
  color: #252e68;
}
.dealengine .alert-secondary {
  color: #326d7a;
  background-color: #dbf7f5;
  border-color: #c9f4f1;
}
.dealengine .alert-secondary .alert-link {
  color: #285762;
}
.dealengine .alert-info {
  color: #326d7a;
  background-color: #dbf7f5;
  border-color: #c9f4f1;
}
.dealengine .alert-info .alert-link {
  color: #285762;
}
.dealengine .alert-success {
  color: #326d7a;
  background-color: #dbf7f5;
  border-color: #c9f4f1;
}
.dealengine .alert-success .alert-link {
  color: #285762;
}
.dealengine .progress {
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}
.dealengine .progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #0d6efd;
  transition: width 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .dealengine .progress-bar {
    transition: none;
  }
}
.dealengine .progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
}
.dealengine .progress-bar-animated {
  animation: 1s linear infinite progress-bar-stripes;
}
@media (prefers-reduced-motion: reduce) {
  .dealengine .progress-bar-animated {
    animation: none;
  }
}
.dealengine .list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: 0.25rem;
}
.dealengine .list-group-numbered {
  list-style-type: none;
  counter-reset: section;
}
.dealengine .list-group-numbered > li::before {
  content: counters(section, ".") ". ";
  counter-increment: section;
}
.dealengine .list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}
.dealengine .list-group-item-action:hover, .dealengine .list-group-item-action:focus {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}
.dealengine .list-group-item-action:active {
  color: #2A3478;
  background-color: #e9ecef;
}
.dealengine .list-group-item {
  position: relative;
  display: block;
  padding: 0.5rem 1rem;
  color: #212529;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid rgba(32, 37, 65, 0.125);
}
.dealengine .list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
.dealengine .list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}
.dealengine .list-group-item.disabled, .dealengine .list-group-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
}
.dealengine .list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.dealengine .list-group-item + .dealengine .list-group-item {
  border-top-width: 0;
}
.dealengine .list-group-item + .dealengine .list-group-item.active {
  margin-top: -1px;
  border-top-width: 1px;
}
.dealengine .list-group-horizontal {
  flex-direction: row;
}
.dealengine .list-group-horizontal > .list-group-item:first-child {
  border-bottom-left-radius: 0.25rem;
  border-top-right-radius: 0;
}
.dealengine .list-group-horizontal > .list-group-item:last-child {
  border-top-right-radius: 0.25rem;
  border-bottom-left-radius: 0;
}
.dealengine .list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}
.dealengine .list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: 1px;
  border-left-width: 0;
}
.dealengine .list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: -1px;
  border-left-width: 1px;
}
@media (min-width: 576px) {
  .dealengine .list-group-horizontal-sm {
    flex-direction: row;
  }
  .dealengine .list-group-horizontal-sm > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .dealengine .list-group-horizontal-sm > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .dealengine .list-group-horizontal-sm > .list-group-item.active {
    margin-top: 0;
  }
  .dealengine .list-group-horizontal-sm > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .dealengine .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 768px) {
  .dealengine .list-group-horizontal-md {
    flex-direction: row;
  }
  .dealengine .list-group-horizontal-md > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .dealengine .list-group-horizontal-md > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .dealengine .list-group-horizontal-md > .list-group-item.active {
    margin-top: 0;
  }
  .dealengine .list-group-horizontal-md > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .dealengine .list-group-horizontal-md > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 992px) {
  .dealengine .list-group-horizontal-lg {
    flex-direction: row;
  }
  .dealengine .list-group-horizontal-lg > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .dealengine .list-group-horizontal-lg > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .dealengine .list-group-horizontal-lg > .list-group-item.active {
    margin-top: 0;
  }
  .dealengine .list-group-horizontal-lg > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .dealengine .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 1200px) {
  .dealengine .list-group-horizontal-xl {
    flex-direction: row;
  }
  .dealengine .list-group-horizontal-xl > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .dealengine .list-group-horizontal-xl > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .dealengine .list-group-horizontal-xl > .list-group-item.active {
    margin-top: 0;
  }
  .dealengine .list-group-horizontal-xl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .dealengine .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 1400px) {
  .dealengine .list-group-horizontal-xxl {
    flex-direction: row;
  }
  .dealengine .list-group-horizontal-xxl > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .dealengine .list-group-horizontal-xxl > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .dealengine .list-group-horizontal-xxl > .list-group-item.active {
    margin-top: 0;
  }
  .dealengine .list-group-horizontal-xxl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .dealengine .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
.dealengine .list-group-flush {
  border-radius: 0;
}
.dealengine .list-group-flush > .list-group-item {
  border-width: 0 0 1px;
}
.dealengine .list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}
.dealengine .list-group-item-primary {
  color: #2e3982;
  background-color: #dbdff7;
}
.dealengine .list-group-item-primary.list-group-item-action:hover, .dealengine .list-group-item-primary.list-group-item-action:focus {
  color: #2e3982;
  background-color: #c5c9de;
}
.dealengine .list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #2e3982;
  border-color: #2e3982;
}
.dealengine .list-group-item-secondary {
  color: #326d7a;
  background-color: #dbf7f5;
}
.dealengine .list-group-item-secondary.list-group-item-action:hover, .dealengine .list-group-item-secondary.list-group-item-action:focus {
  color: #326d7a;
  background-color: #c5dedd;
}
.dealengine .list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #326d7a;
  border-color: #326d7a;
}
.dealengine .list-group-item-info {
  color: #326d7a;
  background-color: #dbf7f5;
}
.dealengine .list-group-item-info.list-group-item-action:hover, .dealengine .list-group-item-info.list-group-item-action:focus {
  color: #326d7a;
  background-color: #c5dedd;
}
.dealengine .list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #326d7a;
  border-color: #326d7a;
}
.dealengine .list-group-item-success {
  color: #326d7a;
  background-color: #dbf7f5;
}
.dealengine .list-group-item-success.list-group-item-action:hover, .dealengine .list-group-item-success.list-group-item-action:focus {
  color: #326d7a;
  background-color: #c5dedd;
}
.dealengine .list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #326d7a;
  border-color: #326d7a;
}
.dealengine .btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: #202541;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23202541'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  border: 0;
  border-radius: 0.25rem;
  opacity: 0.5;
}
.dealengine .btn-close:hover {
  color: #202541;
  text-decoration: none;
  opacity: 0.75;
}
.dealengine .btn-close:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  opacity: 1;
}
.dealengine .btn-close:disabled, .dealengine .btn-close.disabled {
  pointer-events: none;
  user-select: none;
  opacity: 0.25;
}
.dealengine .btn-close-white {
  filter: invert(1) grayscale(100%) brightness(200%);
}
.dealengine .toast {
  width: 350px;
  max-width: 100%;
  font-size: 0.875rem;
  pointer-events: auto;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.5rem 1rem rgba(32, 37, 65, 0.15);
  border-radius: 0.25rem;
}
.dealengine .toast:not(.showing):not(.show) {
  opacity: 0;
}
.dealengine .toast.hide {
  display: none;
}
.dealengine .toast-container {
  width: max-content;
  max-width: 100%;
  pointer-events: none;
}
.dealengine .toast-container > :not(:last-child) {
  margin-bottom: 0.75rem;
}
.dealengine .toast-header {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  color: #6c757d;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.dealengine .toast-header .btn-close {
  margin-right: -0.375rem;
  margin-left: 0.75rem;
}
.dealengine .toast-body {
  padding: 0.75rem;
  word-wrap: break-word;
}
.dealengine .modal-open {
  overflow: hidden;
}
.dealengine .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.dealengine .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.dealengine .modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .dealengine .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .dealengine .modal-dialog {
    transition: none;
  }
}
.modal.show .dealengine .modal-dialog {
  transform: none;
}
.modal.modal-static .dealengine .modal-dialog {
  transform: scale(1.02);
}
.dealengine .modal-dialog-scrollable {
  height: calc(100% - 1rem);
}
.dealengine .modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.dealengine .modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}
.dealengine .modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}
.dealengine .modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(32, 37, 65, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}
.dealengine .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #202541;
}
.dealengine .modal-backdrop.fade {
  opacity: 0;
}
.dealengine .modal-backdrop.show {
  opacity: 0.5;
}
.dealengine .modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.dealengine .modal-header .btn-close {
  padding: 0.5rem 0.5rem;
  margin: -0.5rem -0.5rem -0.5rem auto;
}
.dealengine .modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}
.dealengine .modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}
.dealengine .modal-footer {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}
.dealengine .modal-footer > * {
  margin: 0.25rem;
}
@media (min-width: 576px) {
  .dealengine .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .dealengine .modal-dialog-scrollable {
    height: calc(100% - 3.5rem);
  }
  .dealengine .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .dealengine .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .dealengine .modal-lg,
.dealengine .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .dealengine .modal-xl {
    max-width: 1140px;
  }
}
.dealengine .modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.dealengine .modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.dealengine .modal-fullscreen .modal-header {
  border-radius: 0;
}
.dealengine .modal-fullscreen .modal-body {
  overflow-y: auto;
}
.dealengine .modal-fullscreen .modal-footer {
  border-radius: 0;
}
@media (max-width: 575.98px) {
  .dealengine .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .dealengine .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .dealengine .modal-fullscreen-sm-down .modal-header {
    border-radius: 0;
  }
  .dealengine .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
  .dealengine .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 767.98px) {
  .dealengine .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .dealengine .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .dealengine .modal-fullscreen-md-down .modal-header {
    border-radius: 0;
  }
  .dealengine .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
  .dealengine .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 991.98px) {
  .dealengine .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .dealengine .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .dealengine .modal-fullscreen-lg-down .modal-header {
    border-radius: 0;
  }
  .dealengine .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
  .dealengine .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1199.98px) {
  .dealengine .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .dealengine .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .dealengine .modal-fullscreen-xl-down .modal-header {
    border-radius: 0;
  }
  .dealengine .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
  .dealengine .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1399.98px) {
  .dealengine .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .dealengine .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .dealengine .modal-fullscreen-xxl-down .modal-header {
    border-radius: 0;
  }
  .dealengine .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
  .dealengine .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
}
.dealengine .tooltip {
  position: absolute;
  z-index: 1080;
  display: block;
  margin: 0;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0;
}
.dealengine .tooltip.show {
  opacity: 0.9;
}
.dealengine .tooltip .tooltip-arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}
.dealengine .tooltip .tooltip-arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}
.dealengine .bs-tooltip-top, .dealengine .bs-tooltip-auto[data-popper-placement^=top] {
  padding: 0.4rem 0;
}
.dealengine .bs-tooltip-top .tooltip-arrow, .dealengine .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
  bottom: 0;
}
.dealengine .bs-tooltip-top .tooltip-arrow::before, .dealengine .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
  top: -1px;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #202541;
}
.dealengine .bs-tooltip-end, .dealengine .bs-tooltip-auto[data-popper-placement^=right] {
  padding: 0 0.4rem;
}
.dealengine .bs-tooltip-end .tooltip-arrow, .dealengine .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.dealengine .bs-tooltip-end .tooltip-arrow::before, .dealengine .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
  right: -1px;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #202541;
}
.dealengine .bs-tooltip-bottom, .dealengine .bs-tooltip-auto[data-popper-placement^=bottom] {
  padding: 0.4rem 0;
}
.dealengine .bs-tooltip-bottom .tooltip-arrow, .dealengine .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
  top: 0;
}
.dealengine .bs-tooltip-bottom .tooltip-arrow::before, .dealengine .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
  bottom: -1px;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #202541;
}
.dealengine .bs-tooltip-start, .dealengine .bs-tooltip-auto[data-popper-placement^=left] {
  padding: 0 0.4rem;
}
.dealengine .bs-tooltip-start .tooltip-arrow, .dealengine .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.dealengine .bs-tooltip-start .tooltip-arrow::before, .dealengine .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
  left: -1px;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #202541;
}
.dealengine .tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #202541;
  border-radius: 0.25rem;
}
.dealengine .popover {
  position: absolute;
  top: 0;
  left: 0 /* rtl:ignore */;
  z-index: 1070;
  display: block;
  max-width: 276px;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(32, 37, 65, 0.2);
  border-radius: 0.3rem;
}
.dealengine .popover .popover-arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
}
.dealengine .popover .popover-arrow::before, .dealengine .popover .popover-arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}
.dealengine .bs-popover-top > .popover-arrow, .dealengine .bs-popover-auto[data-popper-placement^=top] > .popover-arrow {
  bottom: calc(-0.5rem - 1px);
}
.dealengine .bs-popover-top > .popover-arrow::before, .dealengine .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before {
  bottom: 0;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: rgba(32, 37, 65, 0.25);
}
.dealengine .bs-popover-top > .popover-arrow::after, .dealengine .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  bottom: 1px;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #fff;
}
.dealengine .bs-popover-end > .popover-arrow, .dealengine .bs-popover-auto[data-popper-placement^=right] > .popover-arrow {
  left: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
}
.dealengine .bs-popover-end > .popover-arrow::before, .dealengine .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {
  left: 0;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: rgba(32, 37, 65, 0.25);
}
.dealengine .bs-popover-end > .popover-arrow::after, .dealengine .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  left: 1px;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: #fff;
}
.dealengine .bs-popover-bottom > .popover-arrow, .dealengine .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow {
  top: calc(-0.5rem - 1px);
}
.dealengine .bs-popover-bottom > .popover-arrow::before, .dealengine .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {
  top: 0;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: rgba(32, 37, 65, 0.25);
}
.dealengine .bs-popover-bottom > .popover-arrow::after, .dealengine .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  top: 1px;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: #fff;
}
.dealengine .bs-popover-bottom .popover-header::before, .dealengine .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid #f0f0f0;
}
.dealengine .bs-popover-start > .popover-arrow, .dealengine .bs-popover-auto[data-popper-placement^=left] > .popover-arrow {
  right: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
}
.dealengine .bs-popover-start > .popover-arrow::before, .dealengine .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before {
  right: 0;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: rgba(32, 37, 65, 0.25);
}
.dealengine .bs-popover-start > .popover-arrow::after, .dealengine .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  right: 1px;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: #fff;
}
.dealengine .popover-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 1rem;
  background-color: #f0f0f0;
  border-bottom: 1px solid #d8d8d8;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.dealengine .popover-header:empty {
  display: none;
}
.dealengine .popover-body {
  padding: 1rem 1rem;
  color: #2A3478;
}
.dealengine .carousel {
  position: relative;
}
.dealengine .carousel.pointer-event {
  touch-action: pan-y;
}
.dealengine .carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.dealengine .carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}
.dealengine .carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .dealengine .carousel-item {
    transition: none;
  }
}
.dealengine .carousel-item.active,
.dealengine .carousel-item-next,
.dealengine .carousel-item-prev {
  display: block;
}
.dealengine .carousel-item-next:not(.carousel-item-start),
.dealengine .active.carousel-item-end {
  transform: translateX(100%);
}
.dealengine .carousel-item-prev:not(.carousel-item-end),
.dealengine .active.carousel-item-start {
  transform: translateX(-100%);
}
.dealengine .carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}
.dealengine .carousel-fade .carousel-item.active,
.dealengine .carousel-fade .carousel-item-next.carousel-item-start,
.dealengine .carousel-fade .carousel-item-prev.carousel-item-end {
  z-index: 1;
  opacity: 1;
}
.dealengine .carousel-fade .active.carousel-item-start,
.dealengine .carousel-fade .active.carousel-item-end {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}
@media (prefers-reduced-motion: reduce) {
  .dealengine .carousel-fade .active.carousel-item-start,
.dealengine .carousel-fade .active.carousel-item-end {
    transition: none;
  }
}
.dealengine .carousel-control-prev,
.dealengine .carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: none;
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .dealengine .carousel-control-prev,
.dealengine .carousel-control-next {
    transition: none;
  }
}
.dealengine .carousel-control-prev:hover, .dealengine .carousel-control-prev:focus,
.dealengine .carousel-control-next:hover,
.dealengine .carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}
.dealengine .carousel-control-prev {
  left: 0;
}
.dealengine .carousel-control-next {
  right: 0;
}
.dealengine .carousel-control-prev-icon,
.dealengine .carousel-control-next-icon {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
}
.dealengine .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}
.dealengine .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.dealengine .carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 15%;
  margin-bottom: 1rem;
  margin-left: 15%;
  list-style: none;
}
.dealengine .carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .dealengine .carousel-indicators [data-bs-target] {
    transition: none;
  }
}
.dealengine .carousel-indicators .active {
  opacity: 1;
}
.dealengine .carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 1.25rem;
  left: 15%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: center;
}
.dealengine .carousel-dark .carousel-control-prev-icon,
.dealengine .carousel-dark .carousel-control-next-icon {
  filter: invert(1) grayscale(100);
}
.dealengine .carousel-dark .carousel-indicators [data-bs-target] {
  background-color: #202541;
}
.dealengine .carousel-dark .carousel-caption {
  color: #202541;
}
.dealengine .spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: 0.75s linear infinite spinner-border;
}
.dealengine .spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}
.dealengine .spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0;
  animation: 0.75s linear infinite spinner-grow;
}
.dealengine .spinner-grow-sm {
  width: 1rem;
  height: 1rem;
}
@media (prefers-reduced-motion: reduce) {
  .dealengine .spinner-border,
.dealengine .spinner-grow {
    animation-duration: 1.5s;
  }
}
.dealengine .offcanvas {
  position: fixed;
  bottom: 0;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  visibility: hidden;
  background-color: #fff;
  background-clip: padding-box;
  outline: 0;
  transition: transform 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .dealengine .offcanvas {
    transition: none;
  }
}
.dealengine .offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
}
.dealengine .offcanvas-header .btn-close {
  padding: 0.5rem 0.5rem;
  margin: -0.5rem -0.5rem -0.5rem auto;
}
.dealengine .offcanvas-title {
  margin-bottom: 0;
  line-height: 1.5;
}
.dealengine .offcanvas-body {
  flex-grow: 1;
  padding: 1rem 1rem;
  overflow-y: auto;
}
.dealengine .offcanvas-start {
  top: 0;
  left: 0;
  width: 400px;
  border-right: 1px solid rgba(32, 37, 65, 0.2);
  transform: translateX(-100%);
}
.dealengine .offcanvas-end {
  top: 0;
  right: 0;
  width: 400px;
  border-left: 1px solid rgba(32, 37, 65, 0.2);
  transform: translateX(100%);
}
.dealengine .offcanvas-top {
  top: 0;
  right: 0;
  left: 0;
  height: 30vh;
  max-height: 100%;
  border-bottom: 1px solid rgba(32, 37, 65, 0.2);
  transform: translateY(-100%);
}
.dealengine .offcanvas-bottom {
  right: 0;
  left: 0;
  height: 30vh;
  max-height: 100%;
  border-top: 1px solid rgba(32, 37, 65, 0.2);
  transform: translateY(100%);
}
.dealengine .offcanvas.show {
  transform: none;
}
.dealengine .clearfix::after {
  display: block;
  clear: both;
  content: "";
}
.dealengine .link-primary {
  color: #4C5FD9;
}
.dealengine .link-primary:hover, .dealengine .link-primary:focus {
  color: #3d4cae;
}
.dealengine .link-secondary {
  color: #4CD9CF;
}
.dealengine .link-secondary:hover, .dealengine .link-secondary:focus {
  color: #70e1d9;
}
.dealengine .link-info {
  color: #4CD9CF;
}
.dealengine .link-info:hover, .dealengine .link-info:focus {
  color: #70e1d9;
}
.dealengine .link-success {
  color: #4CD9CF;
}
.dealengine .link-success:hover, .dealengine .link-success:focus {
  color: #70e1d9;
}
.dealengine .ratio {
  position: relative;
  width: 100%;
}
.dealengine .ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}
.dealengine .ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.dealengine .ratio-1x1 {
  --bs-aspect-ratio: 100%;
}
.dealengine .ratio-4x3 {
  --bs-aspect-ratio: calc(3 / 4 * 100%);
}
.dealengine .ratio-16x9 {
  --bs-aspect-ratio: calc(9 / 16 * 100%);
}
.dealengine .ratio-21x9 {
  --bs-aspect-ratio: calc(9 / 21 * 100%);
}
.dealengine .fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}
.dealengine .fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}
.dealengine .sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}
@media (min-width: 576px) {
  .dealengine .sticky-sm-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 768px) {
  .dealengine .sticky-md-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 992px) {
  .dealengine .sticky-lg-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1200px) {
  .dealengine .sticky-xl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1400px) {
  .dealengine .sticky-xxl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
.dealengine .visually-hidden,
.dealengine .visually-hidden-focusable:not(:focus):not(:focus-within) {
  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;
}
.dealengine .stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}
.dealengine .text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dealengine .align-baseline {
  vertical-align: baseline !important;
}
.dealengine .align-top {
  vertical-align: top !important;
}
.dealengine .align-middle {
  vertical-align: middle !important;
}
.dealengine .align-bottom {
  vertical-align: bottom !important;
}
.dealengine .align-text-bottom {
  vertical-align: text-bottom !important;
}
.dealengine .align-text-top {
  vertical-align: text-top !important;
}
.dealengine .float-start {
  float: left !important;
}
.dealengine .float-end {
  float: right !important;
}
.dealengine .float-none {
  float: none !important;
}
.dealengine .overflow-auto {
  overflow: auto !important;
}
.dealengine .overflow-hidden {
  overflow: hidden !important;
}
.dealengine .overflow-visible {
  overflow: visible !important;
}
.dealengine .overflow-scroll {
  overflow: scroll !important;
}
.dealengine .d-inline {
  display: inline !important;
}
.dealengine .d-inline-block {
  display: inline-block !important;
}
.dealengine .d-block {
  display: block !important;
}
.dealengine .d-grid {
  display: grid !important;
}
.dealengine .d-table {
  display: table !important;
}
.dealengine .d-table-row {
  display: table-row !important;
}
.dealengine .d-table-cell {
  display: table-cell !important;
}
.dealengine .d-flex {
  display: flex !important;
}
.dealengine .d-inline-flex {
  display: inline-flex !important;
}
.dealengine .d-none {
  display: none !important;
}
.dealengine .shadow {
  box-shadow: 0 0.5rem 1rem rgba(32, 37, 65, 0.15) !important;
}
.dealengine .shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(32, 37, 65, 0.075) !important;
}
.dealengine .shadow-lg {
  box-shadow: 0 1rem 3rem rgba(32, 37, 65, 0.175) !important;
}
.dealengine .shadow-none {
  box-shadow: none !important;
}
.dealengine .position-static {
  position: static !important;
}
.dealengine .position-relative {
  position: relative !important;
}
.dealengine .position-absolute {
  position: absolute !important;
}
.dealengine .position-fixed {
  position: fixed !important;
}
.dealengine .position-sticky {
  position: sticky !important;
}
.dealengine .top-0 {
  top: 0 !important;
}
.dealengine .top-50 {
  top: 50% !important;
}
.dealengine .top-100 {
  top: 100% !important;
}
.dealengine .bottom-0 {
  bottom: 0 !important;
}
.dealengine .bottom-50 {
  bottom: 50% !important;
}
.dealengine .bottom-100 {
  bottom: 100% !important;
}
.dealengine .start-0 {
  left: 0 !important;
}
.dealengine .start-50 {
  left: 50% !important;
}
.dealengine .start-100 {
  left: 100% !important;
}
.dealengine .end-0 {
  right: 0 !important;
}
.dealengine .end-50 {
  right: 50% !important;
}
.dealengine .end-100 {
  right: 100% !important;
}
.dealengine .translate-middle {
  transform: translate(-50%, -50%) !important;
}
.dealengine .translate-middle-x {
  transform: translateX(-50%) !important;
}
.dealengine .translate-middle-y {
  transform: translateY(-50%) !important;
}
.dealengine .border {
  border: 1px solid #dee2e6 !important;
}
.dealengine .border-0 {
  border: 0 !important;
}
.dealengine .border-top {
  border-top: 1px solid #dee2e6 !important;
}
.dealengine .border-top-0 {
  border-top: 0 !important;
}
.dealengine .border-end {
  border-right: 1px solid #dee2e6 !important;
}
.dealengine .border-end-0 {
  border-right: 0 !important;
}
.dealengine .border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}
.dealengine .border-bottom-0 {
  border-bottom: 0 !important;
}
.dealengine .border-start {
  border-left: 1px solid #dee2e6 !important;
}
.dealengine .border-start-0 {
  border-left: 0 !important;
}
.dealengine .border-primary {
  border-color: #4C5FD9 !important;
}
.dealengine .border-secondary {
  border-color: #4CD9CF !important;
}
.dealengine .border-info {
  border-color: #4CD9CF !important;
}
.dealengine .border-success {
  border-color: #4CD9CF !important;
}
.dealengine .border-white {
  border-color: #fff !important;
}
.dealengine .border-1 {
  border-width: 1px !important;
}
.dealengine .border-2 {
  border-width: 2px !important;
}
.dealengine .border-3 {
  border-width: 3px !important;
}
.dealengine .border-4 {
  border-width: 4px !important;
}
.dealengine .border-5 {
  border-width: 5px !important;
}
.dealengine .w-25 {
  width: 25% !important;
}
.dealengine .w-50 {
  width: 50% !important;
}
.dealengine .w-75 {
  width: 75% !important;
}
.dealengine .w-100 {
  width: 100% !important;
}
.dealengine .w-auto {
  width: auto !important;
}
.dealengine .mw-100 {
  max-width: 100% !important;
}
.dealengine .vw-100 {
  width: 100vw !important;
}
.dealengine .min-vw-100 {
  min-width: 100vw !important;
}
.dealengine .h-25 {
  height: 25% !important;
}
.dealengine .h-50 {
  height: 50% !important;
}
.dealengine .h-75 {
  height: 75% !important;
}
.dealengine .h-100 {
  height: 100% !important;
}
.dealengine .h-auto {
  height: auto !important;
}
.dealengine .mh-100 {
  max-height: 100% !important;
}
.dealengine .vh-100 {
  height: 100vh !important;
}
.dealengine .min-vh-100 {
  min-height: 100vh !important;
}
.dealengine .flex-fill {
  flex: 1 1 auto !important;
}
.dealengine .flex-row {
  flex-direction: row !important;
}
.dealengine .flex-column {
  flex-direction: column !important;
}
.dealengine .flex-row-reverse {
  flex-direction: row-reverse !important;
}
.dealengine .flex-column-reverse {
  flex-direction: column-reverse !important;
}
.dealengine .flex-grow-0 {
  flex-grow: 0 !important;
}
.dealengine .flex-grow-1 {
  flex-grow: 1 !important;
}
.dealengine .flex-shrink-0 {
  flex-shrink: 0 !important;
}
.dealengine .flex-shrink-1 {
  flex-shrink: 1 !important;
}
.dealengine .flex-wrap {
  flex-wrap: wrap !important;
}
.dealengine .flex-nowrap {
  flex-wrap: nowrap !important;
}
.dealengine .flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}
.dealengine .gap-0 {
  gap: 0 !important;
}
.dealengine .gap-1 {
  gap: 0.25rem !important;
}
.dealengine .gap-2 {
  gap: 0.5rem !important;
}
.dealengine .gap-3 {
  gap: 1rem !important;
}
.dealengine .gap-4 {
  gap: 1.5rem !important;
}
.dealengine .gap-5 {
  gap: 3rem !important;
}
.dealengine .justify-content-start {
  justify-content: flex-start !important;
}
.dealengine .justify-content-end {
  justify-content: flex-end !important;
}
.dealengine .justify-content-center {
  justify-content: center !important;
}
.dealengine .justify-content-between {
  justify-content: space-between !important;
}
.dealengine .justify-content-around {
  justify-content: space-around !important;
}
.dealengine .justify-content-evenly {
  justify-content: space-evenly !important;
}
.dealengine .align-items-start {
  align-items: flex-start !important;
}
.dealengine .align-items-end {
  align-items: flex-end !important;
}
.dealengine .align-items-center {
  align-items: center !important;
}
.dealengine .align-items-baseline {
  align-items: baseline !important;
}
.dealengine .align-items-stretch {
  align-items: stretch !important;
}
.dealengine .align-content-start {
  align-content: flex-start !important;
}
.dealengine .align-content-end {
  align-content: flex-end !important;
}
.dealengine .align-content-center {
  align-content: center !important;
}
.dealengine .align-content-between {
  align-content: space-between !important;
}
.dealengine .align-content-around {
  align-content: space-around !important;
}
.dealengine .align-content-stretch {
  align-content: stretch !important;
}
.dealengine .align-self-auto {
  align-self: auto !important;
}
.dealengine .align-self-start {
  align-self: flex-start !important;
}
.dealengine .align-self-end {
  align-self: flex-end !important;
}
.dealengine .align-self-center {
  align-self: center !important;
}
.dealengine .align-self-baseline {
  align-self: baseline !important;
}
.dealengine .align-self-stretch {
  align-self: stretch !important;
}
.dealengine .order-first {
  order: -1 !important;
}
.dealengine .order-0 {
  order: 0 !important;
}
.dealengine .order-1 {
  order: 1 !important;
}
.dealengine .order-2 {
  order: 2 !important;
}
.dealengine .order-3 {
  order: 3 !important;
}
.dealengine .order-4 {
  order: 4 !important;
}
.dealengine .order-5 {
  order: 5 !important;
}
.dealengine .order-last {
  order: 6 !important;
}
.dealengine .m-0 {
  margin: 0 !important;
}
.dealengine .m-1 {
  margin: 0.25rem !important;
}
.dealengine .m-2 {
  margin: 0.5rem !important;
}
.dealengine .m-3 {
  margin: 1rem !important;
}
.dealengine .m-4 {
  margin: 1.5rem !important;
}
.dealengine .m-5 {
  margin: 3rem !important;
}
.dealengine .m-auto {
  margin: auto !important;
}
.dealengine .mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}
.dealengine .mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}
.dealengine .mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}
.dealengine .mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}
.dealengine .mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}
.dealengine .mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}
.dealengine .mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}
.dealengine .my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.dealengine .my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}
.dealengine .my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}
.dealengine .my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}
.dealengine .my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}
.dealengine .my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}
.dealengine .my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}
.dealengine .mt-0 {
  margin-top: 0 !important;
}
.dealengine .mt-1 {
  margin-top: 0.25rem !important;
}
.dealengine .mt-2 {
  margin-top: 0.5rem !important;
}
.dealengine .mt-3 {
  margin-top: 1rem !important;
}
.dealengine .mt-4 {
  margin-top: 1.5rem !important;
}
.dealengine .mt-5 {
  margin-top: 3rem !important;
}
.dealengine .mt-auto {
  margin-top: auto !important;
}
.dealengine .me-0 {
  margin-right: 0 !important;
}
.dealengine .me-1 {
  margin-right: 0.25rem !important;
}
.dealengine .me-2 {
  margin-right: 0.5rem !important;
}
.dealengine .me-3 {
  margin-right: 1rem !important;
}
.dealengine .me-4 {
  margin-right: 1.5rem !important;
}
.dealengine .me-5 {
  margin-right: 3rem !important;
}
.dealengine .me-auto {
  margin-right: auto !important;
}
.dealengine .mb-0 {
  margin-bottom: 0 !important;
}
.dealengine .mb-1 {
  margin-bottom: 0.25rem !important;
}
.dealengine .mb-2 {
  margin-bottom: 0.5rem !important;
}
.dealengine .mb-3 {
  margin-bottom: 1rem !important;
}
.dealengine .mb-4 {
  margin-bottom: 1.5rem !important;
}
.dealengine .mb-5 {
  margin-bottom: 3rem !important;
}
.dealengine .mb-auto {
  margin-bottom: auto !important;
}
.dealengine .ms-0 {
  margin-left: 0 !important;
}
.dealengine .ms-1 {
  margin-left: 0.25rem !important;
}
.dealengine .ms-2 {
  margin-left: 0.5rem !important;
}
.dealengine .ms-3 {
  margin-left: 1rem !important;
}
.dealengine .ms-4 {
  margin-left: 1.5rem !important;
}
.dealengine .ms-5 {
  margin-left: 3rem !important;
}
.dealengine .ms-auto {
  margin-left: auto !important;
}
.dealengine .p-0 {
  padding: 0 !important;
}
.dealengine .p-1 {
  padding: 0.25rem !important;
}
.dealengine .p-2 {
  padding: 0.5rem !important;
}
.dealengine .p-3 {
  padding: 1rem !important;
}
.dealengine .p-4 {
  padding: 1.5rem !important;
}
.dealengine .p-5 {
  padding: 3rem !important;
}
.dealengine .px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}
.dealengine .px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}
.dealengine .px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}
.dealengine .px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}
.dealengine .px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}
.dealengine .px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}
.dealengine .py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.dealengine .py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}
.dealengine .py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.dealengine .py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
.dealengine .py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}
.dealengine .py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}
.dealengine .pt-0 {
  padding-top: 0 !important;
}
.dealengine .pt-1 {
  padding-top: 0.25rem !important;
}
.dealengine .pt-2 {
  padding-top: 0.5rem !important;
}
.dealengine .pt-3 {
  padding-top: 1rem !important;
}
.dealengine .pt-4 {
  padding-top: 1.5rem !important;
}
.dealengine .pt-5 {
  padding-top: 3rem !important;
}
.dealengine .pe-0 {
  padding-right: 0 !important;
}
.dealengine .pe-1 {
  padding-right: 0.25rem !important;
}
.dealengine .pe-2 {
  padding-right: 0.5rem !important;
}
.dealengine .pe-3 {
  padding-right: 1rem !important;
}
.dealengine .pe-4 {
  padding-right: 1.5rem !important;
}
.dealengine .pe-5 {
  padding-right: 3rem !important;
}
.dealengine .pb-0 {
  padding-bottom: 0 !important;
}
.dealengine .pb-1 {
  padding-bottom: 0.25rem !important;
}
.dealengine .pb-2 {
  padding-bottom: 0.5rem !important;
}
.dealengine .pb-3 {
  padding-bottom: 1rem !important;
}
.dealengine .pb-4 {
  padding-bottom: 1.5rem !important;
}
.dealengine .pb-5 {
  padding-bottom: 3rem !important;
}
.dealengine .ps-0 {
  padding-left: 0 !important;
}
.dealengine .ps-1 {
  padding-left: 0.25rem !important;
}
.dealengine .ps-2 {
  padding-left: 0.5rem !important;
}
.dealengine .ps-3 {
  padding-left: 1rem !important;
}
.dealengine .ps-4 {
  padding-left: 1.5rem !important;
}
.dealengine .ps-5 {
  padding-left: 3rem !important;
}
.dealengine .font-monospace {
  font-family: var(--bs-font-monospace) !important;
}
.dealengine .fs-1 {
  font-size: calc(1.375rem + 1.5vw) !important;
}
.dealengine .fs-2 {
  font-size: calc(1.325rem + 0.9vw) !important;
}
.dealengine .fs-3 {
  font-size: calc(1.3rem + 0.6vw) !important;
}
.dealengine .fs-4 {
  font-size: calc(1.275rem + 0.3vw) !important;
}
.dealengine .fs-5 {
  font-size: 1.25rem !important;
}
.dealengine .fs-6 {
  font-size: 1rem !important;
}
.dealengine .fst-italic {
  font-style: italic !important;
}
.dealengine .fst-normal {
  font-style: normal !important;
}
.dealengine .fw-light {
  font-weight: 300 !important;
}
.dealengine .fw-lighter {
  font-weight: lighter !important;
}
.dealengine .fw-normal {
  font-weight: 400 !important;
}
.dealengine .fw-bold {
  font-weight: 700 !important;
}
.dealengine .fw-bolder {
  font-weight: bolder !important;
}
.dealengine .lh-1 {
  line-height: 1 !important;
}
.dealengine .lh-sm {
  line-height: 1.25 !important;
}
.dealengine .lh-base {
  line-height: 1.5 !important;
}
.dealengine .lh-lg {
  line-height: 2 !important;
}
.dealengine .text-start {
  text-align: left !important;
}
.dealengine .text-end {
  text-align: right !important;
}
.dealengine .text-center {
  text-align: center !important;
}
.dealengine .text-decoration-none {
  text-decoration: none !important;
}
.dealengine .text-decoration-underline {
  text-decoration: underline !important;
}
.dealengine .text-decoration-line-through {
  text-decoration: line-through !important;
}
.dealengine .text-lowercase {
  text-transform: lowercase !important;
}
.dealengine .text-uppercase {
  text-transform: uppercase !important;
}
.dealengine .text-capitalize {
  text-transform: capitalize !important;
}
.dealengine .text-wrap {
  white-space: normal !important;
}
.dealengine .text-nowrap {
  white-space: nowrap !important;
}
.dealengine .text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}
.dealengine .text-primary {
  color: #4C5FD9 !important;
}
.dealengine .text-secondary {
  color: #4CD9CF !important;
}
.dealengine .text-info {
  color: #4CD9CF !important;
}
.dealengine .text-success {
  color: #4CD9CF !important;
}
.dealengine .text-white {
  color: #fff !important;
}
.dealengine .text-body {
  color: #2A3478 !important;
}
.dealengine .text-muted {
  color: #6c757d !important;
}
.dealengine .text-black-50 {
  color: rgba(32, 37, 65, 0.5) !important;
}
.dealengine .text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}
.dealengine .text-reset {
  color: inherit !important;
}
.dealengine .bg-primary {
  background-color: #4C5FD9 !important;
}
.dealengine .bg-secondary {
  background-color: #4CD9CF !important;
}
.dealengine .bg-info {
  background-color: #4CD9CF !important;
}
.dealengine .bg-success {
  background-color: #4CD9CF !important;
}
.dealengine .bg-body {
  background-color: #fff !important;
}
.dealengine .bg-white {
  background-color: #fff !important;
}
.dealengine .bg-transparent {
  background-color: transparent !important;
}
.dealengine .bg-gradient {
  background-image: var(--bs-gradient) !important;
}
.dealengine .user-select-all {
  user-select: all !important;
}
.dealengine .user-select-auto {
  user-select: auto !important;
}
.dealengine .user-select-none {
  user-select: none !important;
}
.dealengine .pe-none {
  pointer-events: none !important;
}
.dealengine .pe-auto {
  pointer-events: auto !important;
}
.dealengine .rounded {
  border-radius: 0.25rem !important;
}
.dealengine .rounded-0 {
  border-radius: 0 !important;
}
.dealengine .rounded-1 {
  border-radius: 0.2rem !important;
}
.dealengine .rounded-2 {
  border-radius: 0.25rem !important;
}
.dealengine .rounded-3 {
  border-radius: 0.3rem !important;
}
.dealengine .rounded-circle {
  border-radius: 50% !important;
}
.dealengine .rounded-pill {
  border-radius: 50rem !important;
}
.dealengine .rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}
.dealengine .rounded-end {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}
.dealengine .rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}
.dealengine .rounded-start {
  border-bottom-left-radius: 0.25rem !important;
  border-top-left-radius: 0.25rem !important;
}
.dealengine .visible {
  visibility: visible !important;
}
.dealengine .invisible {
  visibility: hidden !important;
}
@media (min-width: 576px) {
  .dealengine .float-sm-start {
    float: left !important;
  }
  .dealengine .float-sm-end {
    float: right !important;
  }
  .dealengine .float-sm-none {
    float: none !important;
  }
  .dealengine .d-sm-inline {
    display: inline !important;
  }
  .dealengine .d-sm-inline-block {
    display: inline-block !important;
  }
  .dealengine .d-sm-block {
    display: block !important;
  }
  .dealengine .d-sm-grid {
    display: grid !important;
  }
  .dealengine .d-sm-table {
    display: table !important;
  }
  .dealengine .d-sm-table-row {
    display: table-row !important;
  }
  .dealengine .d-sm-table-cell {
    display: table-cell !important;
  }
  .dealengine .d-sm-flex {
    display: flex !important;
  }
  .dealengine .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .dealengine .d-sm-none {
    display: none !important;
  }
  .dealengine .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .dealengine .flex-sm-row {
    flex-direction: row !important;
  }
  .dealengine .flex-sm-column {
    flex-direction: column !important;
  }
  .dealengine .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .dealengine .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .dealengine .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .dealengine .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .dealengine .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .dealengine .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .dealengine .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .dealengine .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .dealengine .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .dealengine .gap-sm-0 {
    gap: 0 !important;
  }
  .dealengine .gap-sm-1 {
    gap: 0.25rem !important;
  }
  .dealengine .gap-sm-2 {
    gap: 0.5rem !important;
  }
  .dealengine .gap-sm-3 {
    gap: 1rem !important;
  }
  .dealengine .gap-sm-4 {
    gap: 1.5rem !important;
  }
  .dealengine .gap-sm-5 {
    gap: 3rem !important;
  }
  .dealengine .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .dealengine .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .dealengine .justify-content-sm-center {
    justify-content: center !important;
  }
  .dealengine .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .dealengine .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .dealengine .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  .dealengine .align-items-sm-start {
    align-items: flex-start !important;
  }
  .dealengine .align-items-sm-end {
    align-items: flex-end !important;
  }
  .dealengine .align-items-sm-center {
    align-items: center !important;
  }
  .dealengine .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .dealengine .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .dealengine .align-content-sm-start {
    align-content: flex-start !important;
  }
  .dealengine .align-content-sm-end {
    align-content: flex-end !important;
  }
  .dealengine .align-content-sm-center {
    align-content: center !important;
  }
  .dealengine .align-content-sm-between {
    align-content: space-between !important;
  }
  .dealengine .align-content-sm-around {
    align-content: space-around !important;
  }
  .dealengine .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .dealengine .align-self-sm-auto {
    align-self: auto !important;
  }
  .dealengine .align-self-sm-start {
    align-self: flex-start !important;
  }
  .dealengine .align-self-sm-end {
    align-self: flex-end !important;
  }
  .dealengine .align-self-sm-center {
    align-self: center !important;
  }
  .dealengine .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .dealengine .align-self-sm-stretch {
    align-self: stretch !important;
  }
  .dealengine .order-sm-first {
    order: -1 !important;
  }
  .dealengine .order-sm-0 {
    order: 0 !important;
  }
  .dealengine .order-sm-1 {
    order: 1 !important;
  }
  .dealengine .order-sm-2 {
    order: 2 !important;
  }
  .dealengine .order-sm-3 {
    order: 3 !important;
  }
  .dealengine .order-sm-4 {
    order: 4 !important;
  }
  .dealengine .order-sm-5 {
    order: 5 !important;
  }
  .dealengine .order-sm-last {
    order: 6 !important;
  }
  .dealengine .m-sm-0 {
    margin: 0 !important;
  }
  .dealengine .m-sm-1 {
    margin: 0.25rem !important;
  }
  .dealengine .m-sm-2 {
    margin: 0.5rem !important;
  }
  .dealengine .m-sm-3 {
    margin: 1rem !important;
  }
  .dealengine .m-sm-4 {
    margin: 1.5rem !important;
  }
  .dealengine .m-sm-5 {
    margin: 3rem !important;
  }
  .dealengine .m-sm-auto {
    margin: auto !important;
  }
  .dealengine .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .dealengine .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .dealengine .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .dealengine .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .dealengine .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .dealengine .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .dealengine .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .dealengine .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .dealengine .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .dealengine .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .dealengine .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .dealengine .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .dealengine .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .dealengine .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .dealengine .mt-sm-0 {
    margin-top: 0 !important;
  }
  .dealengine .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .dealengine .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .dealengine .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .dealengine .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .dealengine .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .dealengine .mt-sm-auto {
    margin-top: auto !important;
  }
  .dealengine .me-sm-0 {
    margin-right: 0 !important;
  }
  .dealengine .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .dealengine .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .dealengine .me-sm-3 {
    margin-right: 1rem !important;
  }
  .dealengine .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .dealengine .me-sm-5 {
    margin-right: 3rem !important;
  }
  .dealengine .me-sm-auto {
    margin-right: auto !important;
  }
  .dealengine .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .dealengine .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .dealengine .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .dealengine .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .dealengine .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .dealengine .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .dealengine .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .dealengine .ms-sm-0 {
    margin-left: 0 !important;
  }
  .dealengine .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .dealengine .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .dealengine .ms-sm-3 {
    margin-left: 1rem !important;
  }
  .dealengine .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .dealengine .ms-sm-5 {
    margin-left: 3rem !important;
  }
  .dealengine .ms-sm-auto {
    margin-left: auto !important;
  }
  .dealengine .p-sm-0 {
    padding: 0 !important;
  }
  .dealengine .p-sm-1 {
    padding: 0.25rem !important;
  }
  .dealengine .p-sm-2 {
    padding: 0.5rem !important;
  }
  .dealengine .p-sm-3 {
    padding: 1rem !important;
  }
  .dealengine .p-sm-4 {
    padding: 1.5rem !important;
  }
  .dealengine .p-sm-5 {
    padding: 3rem !important;
  }
  .dealengine .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .dealengine .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .dealengine .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .dealengine .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .dealengine .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .dealengine .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .dealengine .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .dealengine .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .dealengine .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .dealengine .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .dealengine .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .dealengine .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .dealengine .pt-sm-0 {
    padding-top: 0 !important;
  }
  .dealengine .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .dealengine .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .dealengine .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .dealengine .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .dealengine .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .dealengine .pe-sm-0 {
    padding-right: 0 !important;
  }
  .dealengine .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .dealengine .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .dealengine .pe-sm-3 {
    padding-right: 1rem !important;
  }
  .dealengine .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  .dealengine .pe-sm-5 {
    padding-right: 3rem !important;
  }
  .dealengine .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .dealengine .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .dealengine .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .dealengine .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .dealengine .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .dealengine .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .dealengine .ps-sm-0 {
    padding-left: 0 !important;
  }
  .dealengine .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .dealengine .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .dealengine .ps-sm-3 {
    padding-left: 1rem !important;
  }
  .dealengine .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  .dealengine .ps-sm-5 {
    padding-left: 3rem !important;
  }
  .dealengine .text-sm-start {
    text-align: left !important;
  }
  .dealengine .text-sm-end {
    text-align: right !important;
  }
  .dealengine .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .dealengine .float-md-start {
    float: left !important;
  }
  .dealengine .float-md-end {
    float: right !important;
  }
  .dealengine .float-md-none {
    float: none !important;
  }
  .dealengine .d-md-inline {
    display: inline !important;
  }
  .dealengine .d-md-inline-block {
    display: inline-block !important;
  }
  .dealengine .d-md-block {
    display: block !important;
  }
  .dealengine .d-md-grid {
    display: grid !important;
  }
  .dealengine .d-md-table {
    display: table !important;
  }
  .dealengine .d-md-table-row {
    display: table-row !important;
  }
  .dealengine .d-md-table-cell {
    display: table-cell !important;
  }
  .dealengine .d-md-flex {
    display: flex !important;
  }
  .dealengine .d-md-inline-flex {
    display: inline-flex !important;
  }
  .dealengine .d-md-none {
    display: none !important;
  }
  .dealengine .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .dealengine .flex-md-row {
    flex-direction: row !important;
  }
  .dealengine .flex-md-column {
    flex-direction: column !important;
  }
  .dealengine .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .dealengine .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .dealengine .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .dealengine .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .dealengine .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .dealengine .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .dealengine .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .dealengine .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .dealengine .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .dealengine .gap-md-0 {
    gap: 0 !important;
  }
  .dealengine .gap-md-1 {
    gap: 0.25rem !important;
  }
  .dealengine .gap-md-2 {
    gap: 0.5rem !important;
  }
  .dealengine .gap-md-3 {
    gap: 1rem !important;
  }
  .dealengine .gap-md-4 {
    gap: 1.5rem !important;
  }
  .dealengine .gap-md-5 {
    gap: 3rem !important;
  }
  .dealengine .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .dealengine .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .dealengine .justify-content-md-center {
    justify-content: center !important;
  }
  .dealengine .justify-content-md-between {
    justify-content: space-between !important;
  }
  .dealengine .justify-content-md-around {
    justify-content: space-around !important;
  }
  .dealengine .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .dealengine .align-items-md-start {
    align-items: flex-start !important;
  }
  .dealengine .align-items-md-end {
    align-items: flex-end !important;
  }
  .dealengine .align-items-md-center {
    align-items: center !important;
  }
  .dealengine .align-items-md-baseline {
    align-items: baseline !important;
  }
  .dealengine .align-items-md-stretch {
    align-items: stretch !important;
  }
  .dealengine .align-content-md-start {
    align-content: flex-start !important;
  }
  .dealengine .align-content-md-end {
    align-content: flex-end !important;
  }
  .dealengine .align-content-md-center {
    align-content: center !important;
  }
  .dealengine .align-content-md-between {
    align-content: space-between !important;
  }
  .dealengine .align-content-md-around {
    align-content: space-around !important;
  }
  .dealengine .align-content-md-stretch {
    align-content: stretch !important;
  }
  .dealengine .align-self-md-auto {
    align-self: auto !important;
  }
  .dealengine .align-self-md-start {
    align-self: flex-start !important;
  }
  .dealengine .align-self-md-end {
    align-self: flex-end !important;
  }
  .dealengine .align-self-md-center {
    align-self: center !important;
  }
  .dealengine .align-self-md-baseline {
    align-self: baseline !important;
  }
  .dealengine .align-self-md-stretch {
    align-self: stretch !important;
  }
  .dealengine .order-md-first {
    order: -1 !important;
  }
  .dealengine .order-md-0 {
    order: 0 !important;
  }
  .dealengine .order-md-1 {
    order: 1 !important;
  }
  .dealengine .order-md-2 {
    order: 2 !important;
  }
  .dealengine .order-md-3 {
    order: 3 !important;
  }
  .dealengine .order-md-4 {
    order: 4 !important;
  }
  .dealengine .order-md-5 {
    order: 5 !important;
  }
  .dealengine .order-md-last {
    order: 6 !important;
  }
  .dealengine .m-md-0 {
    margin: 0 !important;
  }
  .dealengine .m-md-1 {
    margin: 0.25rem !important;
  }
  .dealengine .m-md-2 {
    margin: 0.5rem !important;
  }
  .dealengine .m-md-3 {
    margin: 1rem !important;
  }
  .dealengine .m-md-4 {
    margin: 1.5rem !important;
  }
  .dealengine .m-md-5 {
    margin: 3rem !important;
  }
  .dealengine .m-md-auto {
    margin: auto !important;
  }
  .dealengine .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .dealengine .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .dealengine .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .dealengine .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .dealengine .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .dealengine .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .dealengine .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .dealengine .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .dealengine .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .dealengine .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .dealengine .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .dealengine .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .dealengine .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .dealengine .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .dealengine .mt-md-0 {
    margin-top: 0 !important;
  }
  .dealengine .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .dealengine .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .dealengine .mt-md-3 {
    margin-top: 1rem !important;
  }
  .dealengine .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .dealengine .mt-md-5 {
    margin-top: 3rem !important;
  }
  .dealengine .mt-md-auto {
    margin-top: auto !important;
  }
  .dealengine .me-md-0 {
    margin-right: 0 !important;
  }
  .dealengine .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .dealengine .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .dealengine .me-md-3 {
    margin-right: 1rem !important;
  }
  .dealengine .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .dealengine .me-md-5 {
    margin-right: 3rem !important;
  }
  .dealengine .me-md-auto {
    margin-right: auto !important;
  }
  .dealengine .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .dealengine .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .dealengine .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .dealengine .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .dealengine .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .dealengine .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .dealengine .mb-md-auto {
    margin-bottom: auto !important;
  }
  .dealengine .ms-md-0 {
    margin-left: 0 !important;
  }
  .dealengine .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .dealengine .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .dealengine .ms-md-3 {
    margin-left: 1rem !important;
  }
  .dealengine .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .dealengine .ms-md-5 {
    margin-left: 3rem !important;
  }
  .dealengine .ms-md-auto {
    margin-left: auto !important;
  }
  .dealengine .p-md-0 {
    padding: 0 !important;
  }
  .dealengine .p-md-1 {
    padding: 0.25rem !important;
  }
  .dealengine .p-md-2 {
    padding: 0.5rem !important;
  }
  .dealengine .p-md-3 {
    padding: 1rem !important;
  }
  .dealengine .p-md-4 {
    padding: 1.5rem !important;
  }
  .dealengine .p-md-5 {
    padding: 3rem !important;
  }
  .dealengine .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .dealengine .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .dealengine .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .dealengine .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .dealengine .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .dealengine .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .dealengine .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .dealengine .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .dealengine .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .dealengine .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .dealengine .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .dealengine .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .dealengine .pt-md-0 {
    padding-top: 0 !important;
  }
  .dealengine .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .dealengine .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .dealengine .pt-md-3 {
    padding-top: 1rem !important;
  }
  .dealengine .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .dealengine .pt-md-5 {
    padding-top: 3rem !important;
  }
  .dealengine .pe-md-0 {
    padding-right: 0 !important;
  }
  .dealengine .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .dealengine .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .dealengine .pe-md-3 {
    padding-right: 1rem !important;
  }
  .dealengine .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .dealengine .pe-md-5 {
    padding-right: 3rem !important;
  }
  .dealengine .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .dealengine .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .dealengine .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .dealengine .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .dealengine .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .dealengine .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .dealengine .ps-md-0 {
    padding-left: 0 !important;
  }
  .dealengine .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .dealengine .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .dealengine .ps-md-3 {
    padding-left: 1rem !important;
  }
  .dealengine .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .dealengine .ps-md-5 {
    padding-left: 3rem !important;
  }
  .dealengine .text-md-start {
    text-align: left !important;
  }
  .dealengine .text-md-end {
    text-align: right !important;
  }
  .dealengine .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .dealengine .float-lg-start {
    float: left !important;
  }
  .dealengine .float-lg-end {
    float: right !important;
  }
  .dealengine .float-lg-none {
    float: none !important;
  }
  .dealengine .d-lg-inline {
    display: inline !important;
  }
  .dealengine .d-lg-inline-block {
    display: inline-block !important;
  }
  .dealengine .d-lg-block {
    display: block !important;
  }
  .dealengine .d-lg-grid {
    display: grid !important;
  }
  .dealengine .d-lg-table {
    display: table !important;
  }
  .dealengine .d-lg-table-row {
    display: table-row !important;
  }
  .dealengine .d-lg-table-cell {
    display: table-cell !important;
  }
  .dealengine .d-lg-flex {
    display: flex !important;
  }
  .dealengine .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .dealengine .d-lg-none {
    display: none !important;
  }
  .dealengine .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .dealengine .flex-lg-row {
    flex-direction: row !important;
  }
  .dealengine .flex-lg-column {
    flex-direction: column !important;
  }
  .dealengine .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .dealengine .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .dealengine .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .dealengine .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .dealengine .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .dealengine .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .dealengine .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .dealengine .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .dealengine .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .dealengine .gap-lg-0 {
    gap: 0 !important;
  }
  .dealengine .gap-lg-1 {
    gap: 0.25rem !important;
  }
  .dealengine .gap-lg-2 {
    gap: 0.5rem !important;
  }
  .dealengine .gap-lg-3 {
    gap: 1rem !important;
  }
  .dealengine .gap-lg-4 {
    gap: 1.5rem !important;
  }
  .dealengine .gap-lg-5 {
    gap: 3rem !important;
  }
  .dealengine .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .dealengine .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .dealengine .justify-content-lg-center {
    justify-content: center !important;
  }
  .dealengine .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .dealengine .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .dealengine .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .dealengine .align-items-lg-start {
    align-items: flex-start !important;
  }
  .dealengine .align-items-lg-end {
    align-items: flex-end !important;
  }
  .dealengine .align-items-lg-center {
    align-items: center !important;
  }
  .dealengine .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .dealengine .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .dealengine .align-content-lg-start {
    align-content: flex-start !important;
  }
  .dealengine .align-content-lg-end {
    align-content: flex-end !important;
  }
  .dealengine .align-content-lg-center {
    align-content: center !important;
  }
  .dealengine .align-content-lg-between {
    align-content: space-between !important;
  }
  .dealengine .align-content-lg-around {
    align-content: space-around !important;
  }
  .dealengine .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .dealengine .align-self-lg-auto {
    align-self: auto !important;
  }
  .dealengine .align-self-lg-start {
    align-self: flex-start !important;
  }
  .dealengine .align-self-lg-end {
    align-self: flex-end !important;
  }
  .dealengine .align-self-lg-center {
    align-self: center !important;
  }
  .dealengine .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .dealengine .align-self-lg-stretch {
    align-self: stretch !important;
  }
  .dealengine .order-lg-first {
    order: -1 !important;
  }
  .dealengine .order-lg-0 {
    order: 0 !important;
  }
  .dealengine .order-lg-1 {
    order: 1 !important;
  }
  .dealengine .order-lg-2 {
    order: 2 !important;
  }
  .dealengine .order-lg-3 {
    order: 3 !important;
  }
  .dealengine .order-lg-4 {
    order: 4 !important;
  }
  .dealengine .order-lg-5 {
    order: 5 !important;
  }
  .dealengine .order-lg-last {
    order: 6 !important;
  }
  .dealengine .m-lg-0 {
    margin: 0 !important;
  }
  .dealengine .m-lg-1 {
    margin: 0.25rem !important;
  }
  .dealengine .m-lg-2 {
    margin: 0.5rem !important;
  }
  .dealengine .m-lg-3 {
    margin: 1rem !important;
  }
  .dealengine .m-lg-4 {
    margin: 1.5rem !important;
  }
  .dealengine .m-lg-5 {
    margin: 3rem !important;
  }
  .dealengine .m-lg-auto {
    margin: auto !important;
  }
  .dealengine .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .dealengine .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .dealengine .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .dealengine .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .dealengine .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .dealengine .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .dealengine .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .dealengine .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .dealengine .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .dealengine .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .dealengine .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .dealengine .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .dealengine .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .dealengine .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .dealengine .mt-lg-0 {
    margin-top: 0 !important;
  }
  .dealengine .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .dealengine .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .dealengine .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .dealengine .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .dealengine .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .dealengine .mt-lg-auto {
    margin-top: auto !important;
  }
  .dealengine .me-lg-0 {
    margin-right: 0 !important;
  }
  .dealengine .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .dealengine .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .dealengine .me-lg-3 {
    margin-right: 1rem !important;
  }
  .dealengine .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .dealengine .me-lg-5 {
    margin-right: 3rem !important;
  }
  .dealengine .me-lg-auto {
    margin-right: auto !important;
  }
  .dealengine .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .dealengine .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .dealengine .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .dealengine .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .dealengine .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .dealengine .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .dealengine .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .dealengine .ms-lg-0 {
    margin-left: 0 !important;
  }
  .dealengine .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .dealengine .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .dealengine .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .dealengine .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .dealengine .ms-lg-5 {
    margin-left: 3rem !important;
  }
  .dealengine .ms-lg-auto {
    margin-left: auto !important;
  }
  .dealengine .p-lg-0 {
    padding: 0 !important;
  }
  .dealengine .p-lg-1 {
    padding: 0.25rem !important;
  }
  .dealengine .p-lg-2 {
    padding: 0.5rem !important;
  }
  .dealengine .p-lg-3 {
    padding: 1rem !important;
  }
  .dealengine .p-lg-4 {
    padding: 1.5rem !important;
  }
  .dealengine .p-lg-5 {
    padding: 3rem !important;
  }
  .dealengine .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .dealengine .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .dealengine .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .dealengine .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .dealengine .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .dealengine .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .dealengine .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .dealengine .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .dealengine .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .dealengine .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .dealengine .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .dealengine .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .dealengine .pt-lg-0 {
    padding-top: 0 !important;
  }
  .dealengine .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .dealengine .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .dealengine .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .dealengine .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .dealengine .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .dealengine .pe-lg-0 {
    padding-right: 0 !important;
  }
  .dealengine .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .dealengine .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .dealengine .pe-lg-3 {
    padding-right: 1rem !important;
  }
  .dealengine .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .dealengine .pe-lg-5 {
    padding-right: 3rem !important;
  }
  .dealengine .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .dealengine .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .dealengine .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .dealengine .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .dealengine .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .dealengine .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .dealengine .ps-lg-0 {
    padding-left: 0 !important;
  }
  .dealengine .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .dealengine .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .dealengine .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .dealengine .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .dealengine .ps-lg-5 {
    padding-left: 3rem !important;
  }
  .dealengine .text-lg-start {
    text-align: left !important;
  }
  .dealengine .text-lg-end {
    text-align: right !important;
  }
  .dealengine .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .dealengine .float-xl-start {
    float: left !important;
  }
  .dealengine .float-xl-end {
    float: right !important;
  }
  .dealengine .float-xl-none {
    float: none !important;
  }
  .dealengine .d-xl-inline {
    display: inline !important;
  }
  .dealengine .d-xl-inline-block {
    display: inline-block !important;
  }
  .dealengine .d-xl-block {
    display: block !important;
  }
  .dealengine .d-xl-grid {
    display: grid !important;
  }
  .dealengine .d-xl-table {
    display: table !important;
  }
  .dealengine .d-xl-table-row {
    display: table-row !important;
  }
  .dealengine .d-xl-table-cell {
    display: table-cell !important;
  }
  .dealengine .d-xl-flex {
    display: flex !important;
  }
  .dealengine .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .dealengine .d-xl-none {
    display: none !important;
  }
  .dealengine .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .dealengine .flex-xl-row {
    flex-direction: row !important;
  }
  .dealengine .flex-xl-column {
    flex-direction: column !important;
  }
  .dealengine .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .dealengine .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .dealengine .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .dealengine .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .dealengine .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .dealengine .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .dealengine .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .dealengine .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .dealengine .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .dealengine .gap-xl-0 {
    gap: 0 !important;
  }
  .dealengine .gap-xl-1 {
    gap: 0.25rem !important;
  }
  .dealengine .gap-xl-2 {
    gap: 0.5rem !important;
  }
  .dealengine .gap-xl-3 {
    gap: 1rem !important;
  }
  .dealengine .gap-xl-4 {
    gap: 1.5rem !important;
  }
  .dealengine .gap-xl-5 {
    gap: 3rem !important;
  }
  .dealengine .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .dealengine .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .dealengine .justify-content-xl-center {
    justify-content: center !important;
  }
  .dealengine .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .dealengine .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .dealengine .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  .dealengine .align-items-xl-start {
    align-items: flex-start !important;
  }
  .dealengine .align-items-xl-end {
    align-items: flex-end !important;
  }
  .dealengine .align-items-xl-center {
    align-items: center !important;
  }
  .dealengine .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .dealengine .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .dealengine .align-content-xl-start {
    align-content: flex-start !important;
  }
  .dealengine .align-content-xl-end {
    align-content: flex-end !important;
  }
  .dealengine .align-content-xl-center {
    align-content: center !important;
  }
  .dealengine .align-content-xl-between {
    align-content: space-between !important;
  }
  .dealengine .align-content-xl-around {
    align-content: space-around !important;
  }
  .dealengine .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .dealengine .align-self-xl-auto {
    align-self: auto !important;
  }
  .dealengine .align-self-xl-start {
    align-self: flex-start !important;
  }
  .dealengine .align-self-xl-end {
    align-self: flex-end !important;
  }
  .dealengine .align-self-xl-center {
    align-self: center !important;
  }
  .dealengine .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .dealengine .align-self-xl-stretch {
    align-self: stretch !important;
  }
  .dealengine .order-xl-first {
    order: -1 !important;
  }
  .dealengine .order-xl-0 {
    order: 0 !important;
  }
  .dealengine .order-xl-1 {
    order: 1 !important;
  }
  .dealengine .order-xl-2 {
    order: 2 !important;
  }
  .dealengine .order-xl-3 {
    order: 3 !important;
  }
  .dealengine .order-xl-4 {
    order: 4 !important;
  }
  .dealengine .order-xl-5 {
    order: 5 !important;
  }
  .dealengine .order-xl-last {
    order: 6 !important;
  }
  .dealengine .m-xl-0 {
    margin: 0 !important;
  }
  .dealengine .m-xl-1 {
    margin: 0.25rem !important;
  }
  .dealengine .m-xl-2 {
    margin: 0.5rem !important;
  }
  .dealengine .m-xl-3 {
    margin: 1rem !important;
  }
  .dealengine .m-xl-4 {
    margin: 1.5rem !important;
  }
  .dealengine .m-xl-5 {
    margin: 3rem !important;
  }
  .dealengine .m-xl-auto {
    margin: auto !important;
  }
  .dealengine .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .dealengine .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .dealengine .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .dealengine .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .dealengine .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .dealengine .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .dealengine .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .dealengine .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .dealengine .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .dealengine .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .dealengine .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .dealengine .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .dealengine .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .dealengine .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .dealengine .mt-xl-0 {
    margin-top: 0 !important;
  }
  .dealengine .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .dealengine .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .dealengine .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .dealengine .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .dealengine .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .dealengine .mt-xl-auto {
    margin-top: auto !important;
  }
  .dealengine .me-xl-0 {
    margin-right: 0 !important;
  }
  .dealengine .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .dealengine .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .dealengine .me-xl-3 {
    margin-right: 1rem !important;
  }
  .dealengine .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .dealengine .me-xl-5 {
    margin-right: 3rem !important;
  }
  .dealengine .me-xl-auto {
    margin-right: auto !important;
  }
  .dealengine .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .dealengine .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .dealengine .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .dealengine .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .dealengine .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .dealengine .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .dealengine .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .dealengine .ms-xl-0 {
    margin-left: 0 !important;
  }
  .dealengine .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .dealengine .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .dealengine .ms-xl-3 {
    margin-left: 1rem !important;
  }
  .dealengine .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .dealengine .ms-xl-5 {
    margin-left: 3rem !important;
  }
  .dealengine .ms-xl-auto {
    margin-left: auto !important;
  }
  .dealengine .p-xl-0 {
    padding: 0 !important;
  }
  .dealengine .p-xl-1 {
    padding: 0.25rem !important;
  }
  .dealengine .p-xl-2 {
    padding: 0.5rem !important;
  }
  .dealengine .p-xl-3 {
    padding: 1rem !important;
  }
  .dealengine .p-xl-4 {
    padding: 1.5rem !important;
  }
  .dealengine .p-xl-5 {
    padding: 3rem !important;
  }
  .dealengine .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .dealengine .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .dealengine .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .dealengine .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .dealengine .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .dealengine .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .dealengine .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .dealengine .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .dealengine .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .dealengine .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .dealengine .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .dealengine .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .dealengine .pt-xl-0 {
    padding-top: 0 !important;
  }
  .dealengine .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .dealengine .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .dealengine .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .dealengine .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .dealengine .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .dealengine .pe-xl-0 {
    padding-right: 0 !important;
  }
  .dealengine .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .dealengine .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .dealengine .pe-xl-3 {
    padding-right: 1rem !important;
  }
  .dealengine .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  .dealengine .pe-xl-5 {
    padding-right: 3rem !important;
  }
  .dealengine .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .dealengine .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .dealengine .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .dealengine .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .dealengine .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .dealengine .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .dealengine .ps-xl-0 {
    padding-left: 0 !important;
  }
  .dealengine .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .dealengine .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .dealengine .ps-xl-3 {
    padding-left: 1rem !important;
  }
  .dealengine .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  .dealengine .ps-xl-5 {
    padding-left: 3rem !important;
  }
  .dealengine .text-xl-start {
    text-align: left !important;
  }
  .dealengine .text-xl-end {
    text-align: right !important;
  }
  .dealengine .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1400px) {
  .dealengine .float-xxl-start {
    float: left !important;
  }
  .dealengine .float-xxl-end {
    float: right !important;
  }
  .dealengine .float-xxl-none {
    float: none !important;
  }
  .dealengine .d-xxl-inline {
    display: inline !important;
  }
  .dealengine .d-xxl-inline-block {
    display: inline-block !important;
  }
  .dealengine .d-xxl-block {
    display: block !important;
  }
  .dealengine .d-xxl-grid {
    display: grid !important;
  }
  .dealengine .d-xxl-table {
    display: table !important;
  }
  .dealengine .d-xxl-table-row {
    display: table-row !important;
  }
  .dealengine .d-xxl-table-cell {
    display: table-cell !important;
  }
  .dealengine .d-xxl-flex {
    display: flex !important;
  }
  .dealengine .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .dealengine .d-xxl-none {
    display: none !important;
  }
  .dealengine .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  .dealengine .flex-xxl-row {
    flex-direction: row !important;
  }
  .dealengine .flex-xxl-column {
    flex-direction: column !important;
  }
  .dealengine .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .dealengine .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .dealengine .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .dealengine .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .dealengine .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .dealengine .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .dealengine .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .dealengine .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .dealengine .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .dealengine .gap-xxl-0 {
    gap: 0 !important;
  }
  .dealengine .gap-xxl-1 {
    gap: 0.25rem !important;
  }
  .dealengine .gap-xxl-2 {
    gap: 0.5rem !important;
  }
  .dealengine .gap-xxl-3 {
    gap: 1rem !important;
  }
  .dealengine .gap-xxl-4 {
    gap: 1.5rem !important;
  }
  .dealengine .gap-xxl-5 {
    gap: 3rem !important;
  }
  .dealengine .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .dealengine .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .dealengine .justify-content-xxl-center {
    justify-content: center !important;
  }
  .dealengine .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .dealengine .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .dealengine .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  .dealengine .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .dealengine .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .dealengine .align-items-xxl-center {
    align-items: center !important;
  }
  .dealengine .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .dealengine .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .dealengine .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .dealengine .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .dealengine .align-content-xxl-center {
    align-content: center !important;
  }
  .dealengine .align-content-xxl-between {
    align-content: space-between !important;
  }
  .dealengine .align-content-xxl-around {
    align-content: space-around !important;
  }
  .dealengine .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .dealengine .align-self-xxl-auto {
    align-self: auto !important;
  }
  .dealengine .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .dealengine .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .dealengine .align-self-xxl-center {
    align-self: center !important;
  }
  .dealengine .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .dealengine .align-self-xxl-stretch {
    align-self: stretch !important;
  }
  .dealengine .order-xxl-first {
    order: -1 !important;
  }
  .dealengine .order-xxl-0 {
    order: 0 !important;
  }
  .dealengine .order-xxl-1 {
    order: 1 !important;
  }
  .dealengine .order-xxl-2 {
    order: 2 !important;
  }
  .dealengine .order-xxl-3 {
    order: 3 !important;
  }
  .dealengine .order-xxl-4 {
    order: 4 !important;
  }
  .dealengine .order-xxl-5 {
    order: 5 !important;
  }
  .dealengine .order-xxl-last {
    order: 6 !important;
  }
  .dealengine .m-xxl-0 {
    margin: 0 !important;
  }
  .dealengine .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .dealengine .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .dealengine .m-xxl-3 {
    margin: 1rem !important;
  }
  .dealengine .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .dealengine .m-xxl-5 {
    margin: 3rem !important;
  }
  .dealengine .m-xxl-auto {
    margin: auto !important;
  }
  .dealengine .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .dealengine .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .dealengine .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .dealengine .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .dealengine .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .dealengine .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .dealengine .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .dealengine .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .dealengine .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .dealengine .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .dealengine .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .dealengine .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .dealengine .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .dealengine .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .dealengine .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .dealengine .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .dealengine .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .dealengine .mt-xxl-3 {
    margin-top: 1rem !important;
  }
  .dealengine .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .dealengine .mt-xxl-5 {
    margin-top: 3rem !important;
  }
  .dealengine .mt-xxl-auto {
    margin-top: auto !important;
  }
  .dealengine .me-xxl-0 {
    margin-right: 0 !important;
  }
  .dealengine .me-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .dealengine .me-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .dealengine .me-xxl-3 {
    margin-right: 1rem !important;
  }
  .dealengine .me-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .dealengine .me-xxl-5 {
    margin-right: 3rem !important;
  }
  .dealengine .me-xxl-auto {
    margin-right: auto !important;
  }
  .dealengine .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .dealengine .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .dealengine .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .dealengine .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .dealengine .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .dealengine .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .dealengine .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .dealengine .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .dealengine .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .dealengine .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .dealengine .ms-xxl-3 {
    margin-left: 1rem !important;
  }
  .dealengine .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .dealengine .ms-xxl-5 {
    margin-left: 3rem !important;
  }
  .dealengine .ms-xxl-auto {
    margin-left: auto !important;
  }
  .dealengine .p-xxl-0 {
    padding: 0 !important;
  }
  .dealengine .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .dealengine .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .dealengine .p-xxl-3 {
    padding: 1rem !important;
  }
  .dealengine .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .dealengine .p-xxl-5 {
    padding: 3rem !important;
  }
  .dealengine .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .dealengine .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .dealengine .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .dealengine .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .dealengine .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .dealengine .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .dealengine .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .dealengine .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .dealengine .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .dealengine .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .dealengine .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .dealengine .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .dealengine .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .dealengine .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .dealengine .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .dealengine .pt-xxl-3 {
    padding-top: 1rem !important;
  }
  .dealengine .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .dealengine .pt-xxl-5 {
    padding-top: 3rem !important;
  }
  .dealengine .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .dealengine .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .dealengine .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .dealengine .pe-xxl-3 {
    padding-right: 1rem !important;
  }
  .dealengine .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .dealengine .pe-xxl-5 {
    padding-right: 3rem !important;
  }
  .dealengine .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .dealengine .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .dealengine .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .dealengine .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .dealengine .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .dealengine .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .dealengine .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .dealengine .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .dealengine .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .dealengine .ps-xxl-3 {
    padding-left: 1rem !important;
  }
  .dealengine .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .dealengine .ps-xxl-5 {
    padding-left: 3rem !important;
  }
  .dealengine .text-xxl-start {
    text-align: left !important;
  }
  .dealengine .text-xxl-end {
    text-align: right !important;
  }
  .dealengine .text-xxl-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .dealengine .fs-1 {
    font-size: 2.5rem !important;
  }
  .dealengine .fs-2 {
    font-size: 2rem !important;
  }
  .dealengine .fs-3 {
    font-size: 1.75rem !important;
  }
  .dealengine .fs-4 {
    font-size: 1.5rem !important;
  }
}
@media print {
  .dealengine .d-print-inline {
    display: inline !important;
  }
  .dealengine .d-print-inline-block {
    display: inline-block !important;
  }
  .dealengine .d-print-block {
    display: block !important;
  }
  .dealengine .d-print-grid {
    display: grid !important;
  }
  .dealengine .d-print-table {
    display: table !important;
  }
  .dealengine .d-print-table-row {
    display: table-row !important;
  }
  .dealengine .d-print-table-cell {
    display: table-cell !important;
  }
  .dealengine .d-print-flex {
    display: flex !important;
  }
  .dealengine .d-print-inline-flex {
    display: inline-flex !important;
  }
  .dealengine .d-print-none {
    display: none !important;
  }
}
.dealengine body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Gilroy", sans-serif;
}
.dealengine html, .dealengine body {
  font-size: 21;
  scroll-behavior: smooth;
}
.dealengine h1, .dealengine .h1, .dealengine h2, .dealengine .h2, .dealengine h3, .dealengine .h3, .dealengine h4, .dealengine .h4, .dealengine h5, .dealengine .h5, .dealengine h6, .dealengine .h6 {
  font-weight: 600;
}
.dealengine h1, .dealengine .h1 {
  font-size: 42px;
}
.dealengine h2, .dealengine .h2 {
  font-size: 38px;
}
.dealengine h3, .dealengine .h3 {
  font-size: 34px;
}
.dealengine h4, .dealengine .h4 {
  font-size: 26px;
}
.dealengine h5, .dealengine .h5 {
  font-size: 21px;
}
.dealengine h6, .dealengine .h6 {
  font-size: 17px;
}
.dealengine strong, .dealengine .btn {
  font-weight: 600;
}
.dealengine .lead {
  font-size: 1.42rem;
}
.dealengine .btn {
  border-radius: 50px;
}
.dealengine .btn-call {
  color: white;
  background-color: #003293;
  border-color: #003293;
  width: inherit;
}
.dealengine .btn-call:hover {
  transform: translateY(-2px);
  color: white;
}
.dealengine .form-control, .dealengine .card {
  border-color: #D6DCDF;
  color: #2A3478;
}
.dealengine input::-webkit-input-placeholder {
  color: #627178 !important;
}
.dealengine .form-control-lg, .dealengine .input-group-lg > .form-control, .dealengine .input-group-lg > .input-group-prepend > .input-group-text, .dealengine .input-group-lg > .input-group-append > .input-group-text, .dealengine .input-group-lg > .input-group-prepend > .btn, .dealengine .input-group-lg > .input-group-append > .btn {
  font-size: 1rem;
  border-radius: 50px;
  padding: 0.75rem 1rem;
}
.dealengine .input-group > .input-group-append > .btn, .dealengine .input-group > .input-group-append > .input-group-text, .dealengine .input-group > .input-group-prepend:not(:first-child) > .btn, .dealengine .input-group > .input-group-prepend:not(:first-child) > .input-group-text, .dealengine .input-group > .input-group-prepend:first-child > .btn:not(:first-child), .dealengine .input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.dealengine .form-control:focus {
  box-shadow: none;
  border-color: #4CD9CF;
}
.dealengine .card {
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.03);
  border-radius: 10px !important;
}
.dealengine .card .card-body {
  padding: 1rem 1.5rem;
}
.dealengine .btn-info, .dealengine .btn-info:not(:disabled):not(.disabled):active {
  background-image: linear-gradient(-135deg, #4CD9AA, #4CD9CF);
  color: #fff;
}
.dealengine .btn-info:hover, .dealengine .btn-info:focus, .dealengine .btn-info:active, .dealengine .btn-info:not(:disabled):not(.disabled):active:hover, .dealengine .btn-info:not(:disabled):not(.disabled):active:focus, .dealengine .btn-info:not(:disabled):not(.disabled):active:active {
  background-image: linear-gradient(-135deg, #4CD9AA, #4CD9CF);
  box-shadow: 1px 5px 10px rgba(76, 217, 207, 0.3);
  color: #fff !important;
}
.dealengine .btn-outline-info:hover, .dealengine .btn-outline-info:focus, .dealengine .btn-outline-info:not(:disabled):not(.disabled):active {
  background-image: linear-gradient(-135deg, #4CD9AA, #4CD9CF);
  color: #fff !important;
}
.dealengine .modal-backdrop {
  background-color: #fff;
}
.dealengine .modal-content {
  border: 1px solid #D6DCDF;
  margin-top: 100px;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.03);
}
.dealengine .modal-body {
  padding: 0 2rem 1rem;
}
.dealengine .modal-header {
  padding: 1.5rem 2rem 1rem;
  border-bottom: 0;
}
.dealengine .btn:focus, .dealengine .btn.focus {
  box-shadow: none !important;
}
.dealengine .btn-info {
  color: #fff !important;
  border: 1px solid #4CD9CF;
}
.dealengine .btn.disabled, .dealengine .btn:disabled {
  opacity: 1;
}
.dealengine .badge {
  margin-left: 0.1em;
}
.dealengine .custom-select, .dealengine .monthselect, .dealengine .yearselect {
  -webkit-appearance: unset;
  -moz-appearance: unset;
  appearance: unset;
}
.dealengine .hidden {
  display: none !important;
}
.dealengine .font-size-sm {
  font-size: 0.85 rem;
}
.dealengine .reset-m {
  margin: 0 !important;
}
.dealengine .fa-ul {
  margin: 0px;
  font-size: 25px;
}
.dealengine .fa-ul .fa-li {
  left: -2.2rem;
  text-align: start;
}
.dealengine .navbar {
  padding: 1rem;
}
.dealengine .navbar .btn {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
}
.dealengine .hero {
  background: url("../images/hero-bg.png") no-repeat top center;
  background-size: contain;
}
.dealengine .dashboard-page .dashboard-icon {
  display: flex;
  justify-content: center;
}
.dealengine .dashboard-page .dashboard-icon img {
  padding: 1rem;
}
.dealengine .dashboard-page .action {
  border-bottom: 1px solid rgba(76, 217, 207, 0.1);
  border-left: 1px solid rgba(76, 217, 207, 0.1);
  display: block;
  padding: 1rem;
}
.dealengine .dashboard-page .action .action-title {
  color: #202541;
  margin-bottom: 0;
}
.dealengine .dashboard-page .action small, .dealengine .dashboard-page .action .small {
  display: block;
  color: #4CD9CF;
}
.dealengine .dashboard-page .action:hover {
  background: #003293;
  text-decoration: none;
}
.dealengine .dashboard-page .action:hover .action-title, .dealengine .dashboard-page .action:hover small, .dealengine .dashboard-page .action:hover .small {
  color: #fff;
}
@media (min-width: 768px) {
  .dealengine .white-transition:before {
    content: " ";
    display: block;
    position: absolute;
    margin-top: -325px;
    width: 100%;
    height: calc(100% + 325px);
    background: url("../images/white-bg.png") no-repeat top center;
  }
  .dealengine .white-transition-content:before {
    content: " ";
    display: block;
    position: absolute;
    margin-top: -560px;
    width: 100%;
    height: calc(100% + 325px);
    background: url("../images/white-content-bg.png") no-repeat top center;
  }
  .dealengine .white-transition-login:before {
    content: " ";
    display: block;
    position: absolute;
    margin-top: -200px;
    width: 100%;
    height: calc(100% + 200px);
    background: url("../images/white-content-bg.png") no-repeat top center;
  }
  .dealengine .main-info, .dealengine .white-content, .dealengine .hero-content, .dealengine .white-transition-content .container, .dealengine .white-transition-login {
    z-index: 2;
    position: relative;
  }
  .dealengine .stats {
    position: relative;
  }
  .dealengine .stats .stat {
    position: absolute;
    top: 7rem;
  }
  .dealengine .stats .stat-left {
    left: 3rem;
  }
  .dealengine .stats .stat-right {
    right: 3rem;
  }
}
.dealengine .login-page .card-body {
  padding: 2rem 3rem 1rem;
}
.dealengine .login-page .btn-link {
  text-decoration: underline;
  font-weight: 100;
  font-size: 0.8rem;
}
.dealengine .hero .input-group-append {
  width: 150px;
}
.dealengine .hero .input-group-append .btn {
  width: 100%;
}
@media (max-width: 991.98px) {
  .dealengine .container {
    max-width: none;
    width: 95%;
  }
}
@media (min-width: 1400px) {
  .dealengine .hero {
    background-size: cover;
  }
}
@media (max-width: 767.98px) {
  .dealengine .navbar .btn {
    background: none;
    border: 0;
    width: 100%;
    color: #627178 !important;
    border-top: 1px solid #f2f5f8;
    border-radius: 0;
    padding: 1rem;
    text-align: center;
    text-transform: none;
    letter-spacing: 0;
  }
  .dealengine .navbar .btn:hover {
    box-shadow: none;
    border-top: 1px solid #f2f5f8 !important;
    background: none !important;
    color: #003293 !important;
  }
  .dealengine .input-group input {
    font-size: 0.8rem;
  }
  .dealengine .hero {
    background-position: top left;
    background-size: cover;
  }
  .dealengine .hero-title {
    font-size: 2rem;
  }
  .dealengine .stats, .dealengine .hero-title {
    text-align: center;
  }
  .dealengine .footer {
    background: url("../images/footer-bg-mobile.png") no-repeat top center;
    background-size: contain;
    margin-top: 0;
    padding-top: 100px;
  }
}
.dealengine .arp-cover {
  border-radius: 10px;
  object-fit: cover;
  height: 280px;
  overflow: hidden;
  width: 100%;
}
.dealengine .btn-link {
  float: right;
  color: #003293 !important;
  font-size: small;
}
.dealengine .text-secondary {
  color: #003293 !important;
}
.dealengine .table {
  width: 100%;
  display: inline-table;
  align-items: flex-start;
  margin-bottom: 1rem;
  color: #003293;
  font-size: 0.9rem;
  border-spacing: 2px;
  border-color: #D6DCDF;
}
.dealengine .table td,
.dealengine .table th {
  font-size: 0.9rem;
}
.dealengine .badge-secondary {
  color: #003293;
  background-color: #D6DCDF;
  font-size: 0.8rem;
  font-weight: 600;
}
.dealengine .grouped-form-container {
  border: 1px solid #D6DCDF;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.03);
}
.dealengine .grouped-form-container .form-group {
  margin-bottom: 0;
  position: relative;
}
.dealengine .grouped-form-container .form-group:first-child .form-control {
  border-top-left-radius: 2.5rem !important;
  border-top-right-radius: 2.5rem !important;
}
.dealengine .grouped-form-container .form-group:last-child .form-control {
  border-bottom-left-radius: 2.5rem !important;
  border-bottom-right-radius: 2.5rem !important;
}
.dealengine .grouped-form-container .form-group label {
  padding: 0.5rem 2rem;
  margin-bottom: 0;
  font-size: 0.7rem;
  color: #627178;
  position: absolute;
  top: 0;
  pointer-events: none;
}
.dealengine .grouped-form-container .form-group .form-control {
  background: #fff;
  border: 0;
  padding: 1.2rem 2rem 0.5rem;
  border-radius: 0;
  height: 100%;
}
.dealengine .grouped-form-container .form-group .form-control:focus {
  box-shadow: none;
  background: #f4f7fb;
}
.dealengine .grouped-form-container.form-inline {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  padding: 0px;
  border-radius: 2.5rem;
}
.dealengine .grouped-form-container.form-inline .form-group {
  position: relative;
  height: 100%;
}
.dealengine .grouped-form-container.form-inline .form-group .form-control {
  display: block;
  width: 100%;
  padding: 1.75rem 1.5rem 0.75rem;
  border-radius: 0 !important;
  border-bottom: 0;
  max-width: 100%;
}
.dealengine .grouped-form-container.form-inline .form-group:first-child .form-control {
  border-top-left-radius: 2.5rem !important;
  border-bottom-left-radius: 2.5rem !important;
}
.dealengine .grouped-form-container.form-inline .form-group:last-child .form-control {
  border-top-right-radius: 2.5rem !important;
  border-bottom-right-radius: 2.5rem !important;
}
.dealengine .grouped-form-container.form-inline .form-group:not(:last-child) .form-control {
  border-bottom: 0;
  border-right: 1px solid #D6DCDF;
}
.dealengine .grouped-form-container.form-small-height .form-group .form-control {
  padding: 1.5rem 1rem 0.5rem;
  font-size: 0.8rem;
}
.dealengine .grouped-form-container.form-small-height .form-group label {
  padding: 0.5rem 1rem;
}
.dealengine .grouped-form-container.form-small-height .form-group select {
  border: 0;
  width: 100%;
  height: 100%;
}
.dealengine .grouped-form-container.form-small-width .form-group {
  width: 140px;
}
.dealengine #pac-container_ {
  min-width: 450px;
}
@media (max-width: 768px) {
  .dealengine #pac-container_ {
    max-width: 300px;
  }
}
.dealengine .form-section label {
  padding: 0rem 1rem;
  margin-bottom: 0;
  font-size: 0.7rem;
  color: #627178;
  position: relative;
  top: 0;
  pointer-events: none;
}
.dealengine .btn--no-left-radius {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}
.dealengine .search-small {
  cursor: pointer;
  border-top-right-radius: 2.5rem !important;
  border-bottom-right-radius: 2.5rem !important;
  background: white;
  border: 0;
  outline: 0;
}
.dealengine .search-small:hover {
  background: #f4f7fb !important;
  text-decoration: none;
}
.dealengine .mb-chat {
  margin-bottom: 5rem;
}
.dealengine .language-picker a {
  padding: 0.25rem 0.75rem;
}
.dealengine .language-picker a img {
  width: 20px;
}
.dealengine .language-picker button {
  padding: 0.25rem 0.75rem;
}
.dealengine .language-picker button img {
  width: 15px;
}
.dealengine .input-height {
  height: 3rem !important;
}
.dealengine .product-card {
  border-radius: 1.25rem !important;
}
.dealengine .product-card__icon {
  top: 0;
  right: 20px;
  transform: translateY(-50%);
}
.dealengine .product-card__body {
  height: 253px;
  padding: 35px 20px 20px 20px !important;
  transform: translateY(-1.875rem);
  background-color: #FFFFFF;
  box-shadow: 0px 1px 2px 1px rgba(0, 0, 0, 0.15);
  z-index: 2020;
}
.dealengine .product-card__action {
  display: inline-block;
  color: #4CD9CF;
  border: 1px solid #4CD9CF;
  border-radius: 100px;
  padding: 10px 7px 10px 20px;
  transition: all 0.2s ease-out;
  text-decoration: none;
  font-weight: bolder;
  bottom: 20px;
  right: 20px;
}
.dealengine .product-card__action:hover {
  background-color: #4CD9CF;
  color: #FFFFFF;
  text-decoration: none;
}
.dealengine .product-card__action:hover .btn {
  filter: brightness(0) saturate(100%) invert(96%) sepia(100%) saturate(1%) hue-rotate(333deg) brightness(102%) contrast(101%);
}
.dealengine .product-card__footer {
  transform: translateY(-3.75rem);
  background-color: #003293 !important;
  z-index: 1010;
  padding-top: 1.875rem !important;
  padding-bottom: 0 !important;
  color: #FFFFFF;
}
.dealengine .product-card__link {
  display: block;
  width: 100%;
  color: #FFFFFF;
  padding: 0.9rem 0;
  font-size: 1rem;
  font-weight: medium;
}
.dealengine .product-card__link:not(:last-child) {
  border-bottom: #FFFFFF 1px solid;
}
.dealengine .product-card__link:hover {
  color: #FFFFFF !important;
  text-decoration: none;
}
.dealengine .product-card__link .btn-primary__arrow {
  position: absolute;
  right: 1em;
}
.dealengine .navbar {
  border-bottom: 1px solid #D6DCDF;
  background-color: white;
  padding: 1rem 3rem !important;
}
.dealengine .nav-link {
  color: #627178;
  font-size: 1rem;
}
.dealengine .landing-modal {
  border-radius: 0.8rem;
}
.dealengine .landing-modal-icon {
  width: 3rem;
  height: auto;
}
.dealengine .btn-outline-light {
  border: 1px solid #D6DCDF;
  margin-left: 1rem;
}
.dealengine .text-white {
  color: white;
}
.dealengine .text-blue {
  color: #003293;
}
.dealengine .text-teal {
  color: #4CD9CF;
}
.dealengine .text-bodyl {
  color: #627178;
}
.dealengine .text-cold-grey {
  color: #54595E;
}
.dealengine .text-info {
  color: #4CD9CF !important;
}
.dealengine .btn-link-teal {
  color: #4CD9CF;
  font-weight: 600;
}
.dealengine .btn-link-teal:hover {
  text-decoration: underline;
  color: #4CD9CF;
}
.dealengine .input-group .form-control {
  font-size: 1rem;
  padding: 0.75rem 1rem;
}
.dealengine .input-height {
  border-radius: 0px;
}
.dealengine .text-header {
  font-size: 51px;
  font-weight: 800;
}
@media (max-width: 576px) {
  .dealengine .text-header {
    font-size: 42px;
  }
}
.dealengine .crop-img {
  overflow: hidden;
  box-sizing: content-box;
}
.dealengine .crop-img .img-header {
  max-width: 125%;
  height: auto;
}
@media (max-width: 1040px) {
  .dealengine .crop-img {
    box-sizing: content-box;
    max-width: 100%;
  }
}
.dealengine .bottom-left {
  bottom: -3px;
  left: 0;
}
.dealengine .top-left {
  top: -3px;
  left: 0;
}
.dealengine .background-blue {
  background-color: #4c5fd9;
  padding-bottom: 75px;
}
.dealengine .background-white {
  background-color: white;
  padding-bottom: 150px;
}
@media (max-width: 576px) {
  .dealengine .background-white {
    padding-bottom: 50px;
  }
}
.dealengine .background-blue2 {
  background-color: #4c5fd9;
  padding-top: 125px;
}
@media (max-width: 576px) {
  .dealengine .background-blue2 {
    padding-top: 0;
  }
}
.dealengine .background-white2 {
  background-color: white;
  padding-top: 25px;
}
.dealengine .background-white3 {
  background-color: white;
  padding-top: 100px;
}
@media (max-width: 576px) {
  .dealengine .background-white3 {
    padding-top: 0;
  }
}
.dealengine .background-blue-product {
  background-color: #4c5fd9;
  padding-bottom: 75px;
}
.dealengine .background-white-product {
  background-color: white;
  padding-top: 25px;
}
.dealengine .above {
  position: relative;
  z-index: 111;
}
.dealengine .logos {
  height: 100px;
  width: auto;
  overflow: hidden;
}
.dealengine a.dropdown-item {
  background-color: transparent !important;
}
.dealengine a.dropdown-item:hover {
  color: #003293 !important;
}
.dealengine .nav-link:hover {
  color: #003293 !important;
}
.dealengine .px {
  padding: 0 2.5rem 0 2.5rem !important;
}
@media (max-width: 576px) {
  .dealengine .px {
    padding: 0 0.7rem 0 0.7rem !important;
  }
}
@media (max-width: 767.98px) {
  .dealengine .navbar .nav-menu {
    width: 100%;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.8rem !important;
    background: none;
  }
  .dealengine .line-spacing {
    line-height: 30px;
  }
}
.dealengine .text-danger {
  color: var(--danger-color);
}
.dealengine .table-primary td {
  border-color: rgba(76, 95, 217, 0.1);
  background-color: rgba(76, 95, 217, 0.1);
}
.dealengine .rotate {
  animation: mymove 2.5s infinite linear;
}
.dealengine .carousel-box {
  justify-items: stretch;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  cursor: pointer;
}
.dealengine .carousel-own-item {
  transform: scale(1) translateY(0);
  transform-origin: top center;
}
.dealengine .carousel-own-item.pos-left {
  grid-column: 1/2;
  grid-row: 1;
  z-index: 1;
  transform: scale(1.5) translate(17.5%, 17.5%);
}
.dealengine .carousel-own-item.pos-center {
  grid-column: 2/3;
  grid-row: 1;
  z-index: 3;
  transform: scale(2) translateY(0);
}
.dealengine .carousel-own-item.pos-right {
  grid-column: 3/4;
  grid-row: 1;
  z-index: 2;
  transform: scale(1.5) translate(-17.5%, 17.5%);
}
.dealengine .carousel-text {
  display: none;
}
.dealengine .carousel-text.pos-center {
  display: block;
}
.dealengine .carousel-padding {
  width: 100%;
  margin-bottom: 250px;
}
@media (max-width: 576px) {
  .dealengine .carousel-padding {
    margin-bottom: 180px;
  }
}
.dealengine .carousel-dots {
  position: absolute;
  z-index: 10;
  display: flex;
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
}
@media (max-width: 576px) {
  .dealengine .carousel-dots {
    bottom: 5%;
  }
}
.dealengine .carousel-dot {
  height: 10px;
  width: 10px;
  background-color: #C9F4F1;
  margin: 0 10px;
  border-radius: 50%;
  cursor: pointer;
}
.dealengine .carousel-dot.pos-center {
  background-color: #4cd9cf;
}
.dealengine div.qce-overview-card {
  min-width: 250pt;
  max-width: 400pt;
  margin-left: auto;
  margin-right: auto;
}
.dealengine div.qce-detailview {
  min-width: 500pt;
  margin-left: auto;
  margin-right: auto;
}
.dealengine .welcome-banner {
  color: white;
  min-height: 75px;
  background: #535FD5;
  align-items: center;
  font-weight: bolder;
}
.dealengine .banner-button {
  text-transform: uppercase;
  color: white;
  background: #87D9AE;
  border-radius: 50px;
  letter-spacing: 2px;
  font-weight: bolder !important;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
}
.dealengine ol {
  list-style-type: none;
  counter-reset: item;
  margin: 0;
  padding: 0;
}
.dealengine ol > li {
  display: table;
  counter-increment: item;
  margin-bottom: 0.6em;
}
.dealengine ol > li:before {
  content: counters(item, ".") ". ";
  display: table-cell;
  padding-right: 0.6em;
}
.dealengine li ol > li {
  margin: 0;
}
.dealengine li ol > li:before {
  content: counters(item, ".") " ";
}
.dealengine .lowercase-list {
  list-style-type: lower-alpha;
}
.dealengine div.justified-document p {
  text-align: justify;
}
.dealengine div.justified-document li {
  text-align: justify;
}
.dealengine div.justified-document p.justify-none {
  text-align: initial;
}
.dealengine div.justified-document td.justify-none {
  text-align: initial;
}
.dealengine small, .dealengine .small {
  font-size: 75%;
  line-height: 1;
}
.dealengine #cookiescript_injected *,
.dealengine #cookiescript_injected_fsd *,
.dealengine #cookiescript_badgetext * {
  font-family: Gilroy;
}
.dealengine a {
  text-decoration: none;
}

body.onepoint {
  @font-face {
    body.onepoint {
      font-family: "Gilroy";
      src: url("../fonts/gilroy/Gilroy-Regular.otf");
    }
  }
  /* breakpoint md */
}
body.onepoint .page .navbar {
  top: 0;
  background: #fff;
  z-index: 1005;
  width: 100%;
}
body.onepoint body {
  padding-top: 88px;
}
body.onepoint .navbar {
  min-height: 88px;
  border-bottom: 1px solid var(--gray-l-color);
}
body.onepoint .navbar .navbar-brand {
  display: flex;
  align-items: center;
}
body.onepoint .navbar .navbar-toggler {
  border: 0;
}
body.onepoint .navbar .navbar-nav {
  align-items: center;
}
body.onepoint .navbar .nav-item {
  font-size: 1rem;
}
@media (min-width: 992px) {
  body.onepoint .navbar .nav-item {
    padding: 0.75rem;
  }
}
body.onepoint .navbar .nav-item .nav-link {
  color: var(--body-l-color);
}
body.onepoint .navbar .nav-item.active .nav-link {
  color: var(--primary-color);
  font-weight: bold;
}
body.onepoint .navbar .user-profile-badge {
  position: relative;
  margin-right: 0.33rem;
}
body.onepoint .navbar .user-profile-badge .fa-star {
  position: absolute;
  top: 0;
  right: 0;
  color: #ECBF4C;
  background: #fff;
  border-radius: 17px;
  padding: 0.2rem;
  font-size: 9px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}
body.onepoint .account-card {
  padding: 2rem;
}
@media (min-width: 768px) {
  body.onepoint .account-card {
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 4.5rem;
    margin-top: 10vh;
  }
}
body.onepoint .grouped-form-container {
  border: 1px solid var(--gray-l-color);
  border-radius: 2.5rem;
}
body.onepoint .grouped-form-container .form-group {
  margin-bottom: 0;
  position: relative;
}
body.onepoint .grouped-form-container .form-group:first-child, body.onepoint .grouped-form-container .form-group:first-child .form-control {
  border-top-left-radius: 2.5rem;
  border-bottom-left-radius: unset;
  border-top-right-radius: 2.5rem;
  border-bottom-right-radius: unset;
}
body.onepoint .grouped-form-container .form-group:last-child, body.onepoint .grouped-form-container .form-group:last-child .form-control {
  border-top-left-radius: unset;
  border-bottom-left-radius: 2.5rem;
  border-top-right-radius: unset;
  border-bottom-right-radius: 2.5rem;
}
body.onepoint .grouped-form-container .form-group label {
  padding: 0.5rem 2rem;
  margin-bottom: 0;
  font-size: 0.8rem;
  color: var(--body-l-color);
  position: absolute;
  top: 0;
  pointer-events: none;
}
body.onepoint .grouped-form-container .form-group .form-control {
  background: #fff;
  border: 0;
  padding: 1.2rem 2rem 0.5rem;
  border-radius: 0;
  height: auto;
}
body.onepoint .grouped-form-container .form-group .form-control:focus {
  box-shadow: none;
  background: var(--gray-xl-color);
}
body.onepoint .grouped-form-container.form-inline {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
body.onepoint .grouped-form-container.form-inline .form-group {
  position: relative;
  border-left: 1px solid var(--gray-color);
  height: 100%;
}
body.onepoint .grouped-form-container.form-inline .form-group:first-child, body.onepoint .grouped-form-container.form-inline .form-group:first-child .form-control {
  border-top-left-radius: 2.5rem;
  border-bottom-left-radius: 2.5rem;
  border-top-right-radius: unset;
  border-bottom-right-radius: unset;
}
body.onepoint .grouped-form-container.form-inline .form-group:last-child, body.onepoint .grouped-form-container.form-inline .form-group:last-child .form-control {
  border-top-left-radius: unset;
  border-bottom-left-radius: unset;
  border-top-right-radius: 2.5rem;
  border-bottom-right-radius: 2.5rem;
}
body.onepoint .grouped-form-container.form-inline .form-group .form-control {
  display: block;
  width: 100%;
  padding: 1.75rem 1.5rem 0.75rem;
  border-radius: 0;
  border-bottom: 0;
  max-width: 100%;
}
body.onepoint .grouped-form-container.form-inline .form-group .form-control:first-child {
  border-left: 0p;
}
body.onepoint .grouped-form-container.form-small-height .form-group .form-control {
  padding: 1.5rem 1rem 0.5rem;
  font-size: 0.8rem;
}
body.onepoint .grouped-form-container.form-small-height .form-group label {
  padding: 0.5rem 1rem;
}
body.onepoint .grouped-form-container.form-small-height .form-group select {
  border: 0;
  width: 100%;
  height: 100%;
}
body.onepoint .grouped-form-container.form-small-width .form-group {
  width: 140px;
}
body.onepoint .grouped-search-form {
  border: 1px solid var(--gray-l-color);
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.03);
  border-radius: 0.25rem;
}
body.onepoint .grouped-search-form .form-group {
  margin-bottom: 0;
  position: relative;
}
body.onepoint .grouped-search-form .form-group:first-child .form-control {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-right-radius: 0rem !important;
}
body.onepoint .grouped-search-form .form-group:last-child .form-control {
  border-top-left-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-bottom-right-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}
body.onepoint .grouped-search-form .form-group label {
  padding: 0.5rem 2rem;
  margin-bottom: 0;
  font-size: 0.8rem;
  color: var(--body-l-color);
  position: absolute;
  top: 0;
  pointer-events: none;
}
body.onepoint .grouped-search-form .form-group .form-control {
  background: #fff;
  border: 0;
  padding: 1.2rem 2rem 0.5rem;
  border-radius: 0;
  height: 90%;
}
body.onepoint .grouped-search-form .form-group .form-control:focus {
  box-shadow: none;
  background: var(--gray-xl-color);
}
body.onepoint .grouped-search-form.form-inline {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
body.onepoint .grouped-search-form.form-inline .form-group {
  position: relative;
  border-left: 1px solid var(--gray-color);
  height: 100%;
}
body.onepoint .grouped-search-form.form-inline .form-group:first-child, body.onepoint .grouped-search-form.form-inline .form-group:first-child .form-control {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  border-left: none;
}
body.onepoint .grouped-search-form.form-inline .form-group:last-child, body.onepoint .grouped-search-form.form-inline .form-group:last-child .form-control {
  border-top-left-radius: 0rem;
  border-bottom-left-radius: 0rem;
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
body.onepoint .grouped-search-form.form-inline .form-group .form-control {
  display: block;
  width: 100%;
  padding: 1.75rem 1.5rem 0.75rem;
  border-radius: 0;
  border-bottom: 0;
  max-width: 100%;
}
body.onepoint .grouped-search-form.form-inline .form-group .form-control:first-child {
  border-left: 1px solid var(--gray-color);
}
body.onepoint .grouped-search-form.form-small-height .form-group .form-control {
  padding: 1.5rem 1rem 0.5rem;
  font-size: 0.8rem;
}
body.onepoint .grouped-search-form.form-small-height .form-group label {
  padding: 0.5rem 1rem;
}
body.onepoint .grouped-search-form.form-small-height .form-group select {
  border: 0;
  width: 100%;
  height: 100%;
}
body.onepoint .grouped-search-form.form-small-width .form-group {
  width: 140px;
}
body.onepoint #pac-container_ {
  min-width: 450px;
}
@media (max-width: 768px) {
  body.onepoint #pac-container_ {
    max-width: 300px;
  }
}
body.onepoint .form-section label {
  padding: 0rem 1rem;
  margin-bottom: 0;
  font-size: 0.8rem;
  color: var(--body-l-color);
  position: relative;
  top: 0;
  pointer-events: none;
}
body.onepoint .btn--no-left-radius {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}
body.onepoint .home-container .home-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem 5% 10%;
}
body.onepoint .home-container .home-content h1, body.onepoint .home-container .home-content .dealengine .h1, .dealengine body.onepoint .home-container .home-content .h1 {
  font-size: 2.5rem;
  letter-spacing: -1px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 3rem;
}
body.onepoint .home-container .grouped-form-container {
  border: 1px solid var(--gray-l-color);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  border-radius: 2.5rem;
}
body.onepoint .home-container .form-group label, body.onepoint .home-container .form-group .form-group-label {
  padding: 0.75rem 1.5rem;
}
body.onepoint .home-container .form-group .form-control {
  padding: 1.75rem 1.5rem 0.75rem;
  font-size: 0.9rem;
}
body.onepoint .home-container .form-group:not(:last-child) .form-control {
  border-right: 0;
}
body.onepoint .home-container .home-image {
  background: url("../images/home-pic.jpg");
  background-size: cover;
  position: fixed;
  right: 0;
  height: calc(100% - 88px);
}
body.onepoint .home-acp-image {
  background: url("../images/acp-wing-cover-slim.webp");
  background-size: cover;
  background-position: center;
  position: fixed;
  right: 0;
  object-fit: contain;
  height: calc(100% - 88px);
}
body.onepoint .home-flights-image {
  background: url("../images/home-vuelos-pic.jpg");
  background-size: cover;
  position: fixed;
  right: 0;
  object-fit: contain;
  height: calc(100% - 88px);
}
body.onepoint .toggle-destination {
  position: absolute;
  top: 20px;
  right: -14px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  font-size: 0.7rem;
  border-radius: 2.5rem;
  background: #fff;
  border: 1px solid var(--gray-l-color);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  transition: all 0.15s ease-in;
}
body.onepoint .toggle-destination:hover {
  background: var(--gray-l-color);
  transform: translate(0, -1px);
  text-decoration: none;
}
body.onepoint .results-filters {
  margin-bottom: 1rem;
}
body.onepoint .filter {
  border-radius: 38px;
  height: 38px;
  border: 1px solid var(--gray-color);
  padding: 0 1rem;
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  color: var(--body-color);
  transition: all 0.15s ease-in;
  margin-right: 0.5rem;
}
body.onepoint .filter:hover {
  text-decoration: none;
  background: var(--gray-xl-color);
  color: inherit;
}
body.onepoint .filter.filter-active {
  font-weight: 500;
  border-color: var(--secondary-color);
}
body.onepoint .filter::after {
  margin-left: 0.5rem;
  margin-top: 2px;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  border: 0;
}
body.onepoint .dropdown-title {
  padding: 0.33rem 1rem 0.33rem;
  font-size: 0.7rem;
  color: var(--body-l-color);
  margin-bottom: 0;
}
body.onepoint .dropdown-menu.show {
  z-index: 2010;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--gray-color);
  min-width: 250px;
  border-radius: 10px;
}
body.onepoint .dropdown-check {
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}
body.onepoint .dropdown-check * {
  cursor: pointer;
}
body.onepoint .dropdown-check:hover {
  background: rgba(76, 217, 207, 0.2);
}
body.onepoint .dropdown-check label {
  padding-left: 0.33rem;
}
body.onepoint .dropdown-check .form-check-label {
  font-weight: 400;
  font-size: 0.8rem;
}
body.onepoint .dropdown-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.33rem 1rem;
}
body.onepoint .dropdown-footer .btn {
  font-size: 0.7rem;
  font-weight: 400;
}
body.onepoint .dropdown-footer .btn-link {
  color: var(--body-l-color);
  text-decoration: underline;
  border: 0;
  box-shadow: none !important;
  padding: 0;
}
body.onepoint .dropdown-footer .btn-primary {
  padding: 8px 17px;
}
body.onepoint .dropdown-item {
  font-size: 0.8rem;
  color: var(--body-l-color);
}
body.onepoint .dropdown-item:hover {
  background: rgba(76, 217, 207, 0.2);
}
body.onepoint .results-header {
  padding-top: 1.5rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-l-color);
}
@media (min-width: 768px) {
  body.onepoint .results-header {
    position: sticky;
    top: 88px;
    background: #fff;
    z-index: 1000;
  }
}
body.onepoint .results-header .form-control {
  max-width: 250px;
  font-size: 0.8rem;
}
body.onepoint .results-main {
  padding: 0 1rem;
}
@media (min-width: 768px) {
  body.onepoint .results-main {
    width: calc(70% - 3rem);
    padding-left: 1.5rem;
  }
}
body.onepoint .results-map {
  width: 32%;
  right: 0rem;
  top: 0rem;
  bottom: 0rem;
  border-radius: 0px;
  position: fixed;
  height: calc(100% - 2srem - 88px);
  overflow: hidden;
}
body.onepoint .results-map iframe {
  width: 100%;
  height: 100%;
}
body.onepoint .result-amenities li {
  font-size: 0.7rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}
body.onepoint .result-amenities li i {
  width: 1rem;
  text-align: center;
}
body.onepoint .result-card {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-l-color);
}
body.onepoint .result-card .result-name {
  font-size: 1.1rem;
}
body.onepoint .result-card .result-stars {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
body.onepoint .result-card .result-stars i {
  color: var(--secondary-color);
  font-size: 8.5px;
  margin-right: 0.1rem;
}
body.onepoint .result-card .result-stars p {
  margin-bottom: -1px;
  margin-top: 1px;
  font-size: 0.7rem;
  color: var(--body-l-color);
  margin-left: 0.25rem;
  font-weight: 500;
}
body.onepoint .result-card .result-image-link {
  display: block;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 768px) {
  body.onepoint .result-card .result-image-link {
    margin-right: 1rem;
  }
}
body.onepoint .result-card .results-price-currency {
  text-transform: uppercase;
  font-size: 0.8rem;
}
body.onepoint .result-card .results-details {
  border-top: 1px solid var(--gray-l-color);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
}
body.onepoint .result-card .room-card {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
body.onepoint .result-card .room-card:not(:last-child) {
  border-bottom: 1px solid var(--gray-l-color);
}
body.onepoint .reserve-modal {
  position: fixed;
  z-index: 1010;
  top: 88px;
  left: 0;
  width: 100%;
  height: 100%;
}
body.onepoint .reserve-modal .reserve-modal-backdrop {
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
}
body.onepoint .reserve-modal .reserve-modal-content {
  background: #fff;
  right: 0;
  height: 100%;
  position: absolute;
  width: 32%;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}
body.onepoint .reserve-modal-image {
  height: 23%;
  border-radius: 22px;
  justify-content: center;
  margin: 1rem;
  overflow: hidden;
  position: relative;
}
body.onepoint .reserve-modal-image img {
  position: absolute;
  width: 100%;
  bottom: -5%;
}
body.onepoint .reserve-card {
  padding: 0.5rem 1rem;
}
body.onepoint .reserve-card:not(:last-child) {
  border-bottom: 1px solid var(--gray-l-color);
}
body.onepoint .reserve-card .reserve-card-title {
  font-size: 0.6rem;
  margin-bottom: 0.25rem;
}
body.onepoint .reserve-card p {
  margin-bottom: 0;
}
body.onepoint .flights-results {
  margin-bottom: 4rem;
}
body.onepoint .flights-results .flights-search-container {
  padding-top: 1.5rem;
}
body.onepoint .flights-results .toggle-destination {
  top: 14px;
}
body.onepoint .flights-results .selected-flight {
  background: #CAF4F1;
  display: inline-block;
  padding: 12px 24px;
  position: relative;
  border-radius: 54px;
  margin-bottom: 1rem;
}
body.onepoint .flights-results .selected-flight:hover {
  text-decoration: none;
}
body.onepoint .flights-results .selected-flight .edit-flight {
  position: absolute;
  right: -12px;
  top: 12px;
}
body.onepoint .flight-result {
  border: 1px solid var(--gray-l-color);
  border-bottom: 0;
  transition: all 0.15s ease-in;
}
body.onepoint .flight-result:not(.flight-result-expanded):hover {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}
body.onepoint .flight-result:first-child {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
body.onepoint .flight-result:last-child {
  border-bottom: 1px solid var(--gray-l-color);
}
body.onepoint .flight-result .arrow-open {
  display: none;
}
body.onepoint .flight-result.flight-result-open {
  margin-bottom: 1rem;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid var(--gray-l-color);
}
body.onepoint .flight-result.flight-result-open .arrow-open {
  display: block;
}
body.onepoint .flight-result.flight-result-open .arrow-closed {
  display: none;
}
body.onepoint .flight-result .view-more-flight-button > .row {
  align-items: center;
  padding: 0 0.5rem;
}
body.onepoint .flight-result .view-more-flight-button > .row > .col {
  padding: 1rem 0.5rem;
}
body.onepoint .flight-result .flight-result-logo img {
  width: 35px;
  height: auto;
}
body.onepoint .flight-result .btn-rounded {
  pointer-events: none;
}
body.onepoint .flight-result .flight-result-detail {
  border-top: 1px solid var(--gray-l-color);
  padding: 1rem 1.5rem 1rem;
}
body.onepoint .flight-segment:not(:first-child) {
  padding-top: 1rem;
}
body.onepoint .flight-segment:not(:last-child) {
  padding-bottom: 1rem;
}
body.onepoint .flight-segment .flight-segment-item {
  position: relative;
  padding-left: 1rem;
}
body.onepoint .flight-segment .flight-segment-item .flight-segment-item-detail {
  padding: 0.75rem 0 1.25rem;
}
body.onepoint .flight-segment .flight-segment-item img {
  width: 20px;
}
body.onepoint .flight-segment .flight-segment-item p {
  margin-bottom: 0;
}
body.onepoint .flight-segment .flight-segment-item:before, body.onepoint .flight-segment .flight-segment-item:after {
  content: " ";
  display: block;
  position: absolute;
  top: 7px;
}
body.onepoint .flight-segment .flight-segment-item:before {
  background: var(--secondary-color);
  border-radius: 6px;
  width: 6px;
  height: 6px;
  left: 0;
}
body.onepoint .flight-segment .flight-segment-item:after {
  background: var(--gray-color);
  width: 1px;
  left: 3px;
  top: 1.5rem;
  bottom: 0.5rem;
}
body.onepoint .flight-segment .flight-segment-info {
  padding: 0.5rem 0 0;
}
body.onepoint .flight-segment .flight-segment-info .flight-segment-info-item {
  padding: 0.25rem;
  font-size: 0.8rem;
}
body.onepoint .flight-segment .flight-segment-info .flight-segment-info-item:not(:last-child):after {
  margin-left: 0.5rem;
  content: "·";
}
body.onepoint .flight-stopover {
  border-top: 1px solid var(--gray-l-color);
  border-bottom: 1px solid var(--gray-l-color);
  padding: 0.5rem;
  font-size: 0.8rem;
}
body.onepoint .result-amenities li {
  color: var(--body-l-color);
}
body.onepoint .flight-result-expanded {
  border-radius: 8px;
  border-bottom: 1px solid var(--gray-l-color);
}
body.onepoint .flight-details .flight-details-main {
  padding: 1.5rem;
}
body.onepoint .flight-details .flight-reserve {
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 88px;
  bottom: 0;
  right: 0;
}
body.onepoint .payment-success-message {
  display: flex;
  align-items: center;
  background: #E5EAF4;
  border-radius: 8px;
  padding: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary-color);
}
body.onepoint .payment-success-message .payment-success-icon i {
  background: var(--secondary-color);
  display: flex;
  width: 2rem;
  height: 2rem;
  border-radius: 2rem;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
  color: #fff;
  margin-right: 1rem;
}
@media (max-width: 768px) {
  body.onepoint .landing-page .navbar .btn-primary, body.onepoint .landing-page .navbar .btn-info {
    background: none;
    color: var(--primary-color);
    border: 0;
    border-radius: 0;
  }
  body.onepoint .landing-page .navbar .btn-primary:hover, body.onepoint .landing-page .navbar .btn-primary:focus, body.onepoint .landing-page .navbar .btn-info:hover, body.onepoint .landing-page .navbar .btn-info:focus {
    background: none !important;
  }
}
body.onepoint .landing-page .hero {
  padding: 6rem 0 12rem;
  color: #fff;
  background: url("../images/landing/hero-bg.jpg");
  background-size: cover;
  position: relative;
  overflow: hidden;
}
body.onepoint .landing-page .hero video {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  top: 0;
}
@media (max-width: 768px) {
  body.onepoint .landing-page .hero video {
    left: -50%;
  }
}
body.onepoint .landing-page .hero:before {
  content: " ";
  opacity: 0.4;
  background: var(--primary-color);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
body.onepoint .landing-page .hero:after {
  content: " ";
  background: url("../images/landing/hero-line.svg");
  background-size: cover;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 127px;
}
@media (min-width: 1400px) {
  body.onepoint .landing-page .hero:after {
    height: 10vw;
  }
}
body.onepoint .landing-page .hero .hero-content {
  z-index: 1;
  position: relative;
}
body.onepoint .landing-page .hero .hero-content h1, body.onepoint .landing-page .hero .hero-content .dealengine .h1, .dealengine body.onepoint .landing-page .hero .hero-content .h1 {
  letter-spacing: -1px;
  font-weight: bold;
  line-height: 1.3;
}
@media (min-width: 769px) {
  body.onepoint .landing-page .hero .hero-content h1, body.onepoint .landing-page .hero .hero-content .dealengine .h1, .dealengine body.onepoint .landing-page .hero .hero-content .h1 {
    font-size: 3.5rem;
  }
}
body.onepoint .landing-page .hero .hero-content p {
  font-size: 1.25rem;
  line-height: 1.5;
}
body.onepoint .landing-page .feature-container {
  background: url("../images/landing/content-bg.jpg");
  background-size: cover;
}
body.onepoint .landing-page .feature-container .feature-section {
  align-items: center;
  padding: 2rem;
}
body.onepoint .landing-page .feature-container .feature-section p {
  font-size: 21px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  body.onepoint .landing-page .feature-container .feature-section .swap-mobile {
    order: 2;
  }
}
body.onepoint .landing-page .carousel-item {
  text-align: center;
  padding: 6rem 15% 12rem;
}
body.onepoint .landing-page .carousel-item p {
  font-size: 28px;
  line-height: 1.5;
}
body.onepoint .landing-page .carousel-item .testimonial-name {
  font-size: 0.9rem;
  letter-spacing: 2px;
  font-weight: bold;
  color: var(--primary-color);
  padding: 3rem 0 2rem;
  position: relative;
}
body.onepoint .landing-page .carousel-item .testimonial-name:after {
  content: " ";
  width: 1rem;
  height: 2px;
  background: var(--secondary-color);
  position: absolute;
  bottom: 0;
  left: calc(50% - 1rem);
}
body.onepoint .landing-page .carousel-control-prev,
body.onepoint .landing-page .carousel-control-next {
  opacity: 1;
  transition: all 0.15s ease-in;
}
body.onepoint .landing-page .carousel-control-prev:hover i,
body.onepoint .landing-page .carousel-control-next:hover i {
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.25);
}
body.onepoint .landing-page .carousel-control-prev i,
body.onepoint .landing-page .carousel-control-next i {
  width: 3.5rem;
  height: 3.5rem;
  background: #fff;
  border-radius: 3.5rem;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
body.onepoint .landing-page .footer-container {
  background: var(--primary-color);
  position: relative;
}
body.onepoint .landing-page .footer-container:after {
  content: " ";
  background: url("../images/landing/footer-top.svg");
  background-size: cover;
  position: absolute;
  top: -96px;
  width: 100%;
  height: 96px;
}
@media (min-width: 1400px) {
  body.onepoint .landing-page .footer-container:after {
    height: 8.7vw;
    top: -8.5vw;
  }
}
body.onepoint .landing-page .footer-container .footer-content {
  padding: 5rem 2rem 12rem;
  text-align: center;
}
@media (max-width: 768px) {
  body.onepoint .landing-page .footer-container .footer-content {
    padding: 5rem 2rem;
  }
}
body.onepoint .landing-page .footer-container .footer-content h1, body.onepoint .landing-page .footer-container .footer-content .dealengine .h1, .dealengine body.onepoint .landing-page .footer-container .footer-content .h1 {
  color: #fff;
  text-align: center;
  font-weight: 100;
}
body.onepoint .landing-page .footer-container .footer-content form {
  margin-top: 2rem;
  border-radius: 60px;
  overflow: hidden;
  display: flex;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
body.onepoint .landing-page .footer-container .footer-content form .form-control, body.onepoint .landing-page .footer-container .footer-content form .btn {
  height: 60px;
  width: 50%;
  flex: 1;
  border-radius: 0;
}
body.onepoint .landing-page .footer-container .footer-content form .btn:hover {
  transform: none;
}
body.onepoint .landing-page .footer-container .footer-links p,
body.onepoint .landing-page .footer-container .footer-links a {
  font-size: 0.8rem;
  padding: 1rem;
  display: block;
}
@media (max-width: 768px) {
  body.onepoint .landing-page .footer-container .footer-links p,
body.onepoint .landing-page .footer-container .footer-links a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
  }
}
body.onepoint .landing-page .footer-container .footer-icon {
  position: absolute;
  bottom: 0rem;
  left: 18%;
}
@media (max-width: 768px) {
  body.onepoint .landing-page .footer-container .footer-icon {
    display: none;
  }
}
body.onepoint .admin-page-header {
  margin: 2rem 0 1.5rem;
}
body.onepoint .admin-page-title {
  color: var(--primary-color);
  font-weight: bold;
}
body.onepoint .admin-grid-row {
  border: 1px solid var(--gray-l-color);
}
body.onepoint .admin-grid-row:not(:last-child) {
  border-bottom: 0;
}
body.onepoint .admin-grid {
  padding: 0.25rem 0.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  align-items: center;
}
body.onepoint .admin-grid.admin-grid-header {
  align-items: flex-start;
}
body.onepoint .admin-grid.admin-grid-header .admin-grid-item {
  font-size: 0.8rem;
  color: var(--primary-color);
  font-weight: 500;
}
body.onepoint .admin-grid .admin-grid-item {
  padding: 8px 4px;
  font-size: 0.9rem;
  justify-content: center;
  text-align: center;
}
body.onepoint .admin-grid .admin-grid-item:not(.has-ellipsis) {
  display: flex;
  align-items: center;
}
body.onepoint .admin-grid .admin-grid-item.has-ellipsis {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  min-width: 0;
}
body.onepoint .admin-grid .admin-grid-item:hover {
  text-decoration: none;
}
body.onepoint .form-section {
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--gray-l-color);
}
body.onepoint .form-section .form-control,
body.onepoint .form-section .custom-select,
body.onepoint .form-section .dealengine .monthselect,
.dealengine body.onepoint .form-section .monthselect,
body.onepoint .form-section .dealengine .yearselect,
.dealengine body.onepoint .form-section .yearselect, body.onepoint .styled-form .form-control,
body.onepoint .styled-form .custom-select,
body.onepoint .styled-form .dealengine .monthselect,
.dealengine body.onepoint .styled-form .monthselect,
body.onepoint .styled-form .dealengine .yearselect,
.dealengine body.onepoint .styled-form .yearselect {
  border-radius: 1rem;
  border-color: var(--gray-l-color);
  padding-left: 1rem;
  padding-right: 1rem;
}
body.onepoint .form-section .form-control:disabled, body.onepoint .form-section .form-control[readonly],
body.onepoint .form-section .custom-select:disabled,
body.onepoint .form-section .dealengine .monthselect:disabled,
.dealengine body.onepoint .form-section .monthselect:disabled,
body.onepoint .form-section .dealengine .yearselect:disabled,
.dealengine body.onepoint .form-section .yearselect:disabled,
body.onepoint .form-section .custom-select[readonly],
body.onepoint .form-section .dealengine [readonly].monthselect,
.dealengine body.onepoint .form-section [readonly].monthselect,
body.onepoint .form-section .dealengine [readonly].yearselect,
.dealengine body.onepoint .form-section [readonly].yearselect, body.onepoint .styled-form .form-control:disabled, body.onepoint .styled-form .form-control[readonly],
body.onepoint .styled-form .custom-select:disabled,
body.onepoint .styled-form .dealengine .monthselect:disabled,
.dealengine body.onepoint .styled-form .monthselect:disabled,
body.onepoint .styled-form .dealengine .yearselect:disabled,
.dealengine body.onepoint .styled-form .yearselect:disabled,
body.onepoint .styled-form .custom-select[readonly],
body.onepoint .styled-form .dealengine [readonly].monthselect,
.dealengine body.onepoint .styled-form [readonly].monthselect,
body.onepoint .styled-form .dealengine [readonly].yearselect,
.dealengine body.onepoint .styled-form [readonly].yearselect {
  background: var(--gray-xl-color);
}
body.onepoint .form-section > div > .form-group, body.onepoint .styled-form > div > .form-group {
  margin-left: -8px;
  margin-right: -8px;
}
body.onepoint .form-section > div > .form-group > div, body.onepoint .styled-form > div > .form-group > div {
  padding-left: 8px;
  padding-right: 8px;
}
body.onepoint .form-section-footer {
  padding-bottom: 5rem;
}
body.onepoint .nav-tabs {
  border-bottom-color: var(--gray-l-color);
}
body.onepoint .nav-tabs .nav-link {
  border-bottom: 3px solid transparent;
  color: var(--body-l-color);
  border-top: 0;
  border-left: 0;
  border-right: 0;
  padding: 1rem 1.5rem;
}
body.onepoint .nav-tabs .nav-link.active {
  border-bottom-color: var(--secondary-color);
  color: var(--primary-color);
  font-weight: 500;
}
body.onepoint .level-badge {
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-weight: 500;
}
body.onepoint .level-badge.level-1 {
  background: #9DEAE5;
}
body.onepoint .level-badge.level-2 {
  background: #B7F0EC;
}
body.onepoint .level-badge.level-3 {
  background: #D2F6F3;
}
body.onepoint .level-badge.level-invitado {
  background: #EDFBFA;
}
body.onepoint .reservas-page .form-small .form-group .form-control {
  max-width: none !important;
}
body.onepoint .reservas-page .reserve-detail {
  padding: 1rem;
  border-top: 1px solid var(--gray-l-color);
}
body.onepoint .reservas-page .reserve-detail .admin-grid-header {
  border-bottom: 1px solid var(--gray-xl-color);
}
body.onepoint .flights-search-container .form-group .long-select {
  cursor: pointer;
  max-width: 240px !important;
  width: 240px;
}
body.onepoint .circle-icon {
  background: var(--gray-l-color);
  text-align: center;
  padding-top: 1%;
}
body.onepoint .carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 163px;
  object-fit: contain;
}
body.onepoint .carousel-item active {
  z-index: 1;
  opacity: 1;
  height: 163px;
  width: 257px;
  object-fit: contain;
}
body.onepoint .carousel-inner-home {
  height: auto !important;
}
body.onepoint .carousel-z {
  width: 257px;
}
body.onepoint .selected-flight {
  cursor: pointer;
}
body.onepoint .ui-autocomplete {
  z-index: 1001 !important;
}
body.onepoint .reserve-modal {
  display: none;
}
body.onepoint .loader-autocomplete {
  background: url("/assets/onepoint/images/loading.gif") !important;
  background-repeat: no-repeat !important;
  background-position: right !important;
}
body.onepoint .loader-hotels {
  background-size: 5% !important;
}
body.onepoint .loader-flights {
  background-size: 25% !important;
}
body.onepoint .ui-corner-round-1p {
  color: #495057;
  border: 1px solid #e5eaf4;
  border-radius: 10px !important;
  border-radius: 10px !important;
}
body.onepoint .ui-state-active {
  border: 1px solid #e5eaf4 !important;
  background-color: rgba(76, 217, 207, 0.2) !important;
  color: #495057 !important;
  border-radius: 10px !important;
}
body.onepoint .paginate-on-show {
  position: relative;
  top: -200px;
}
body.onepoint .navbar {
  z-index: 2010;
}
body.onepoint .user-profile-badge {
  width: 2em;
  height: 2em;
}
body.onepoint .language-picker a img {
  width: 20px;
  margin-right: 10px;
}
body.onepoint .language-picker button img {
  width: 20px;
  margin: auto;
}
body.onepoint .no-pointer-events, body.onepoint .no-atc-change-allowed * {
  pointer-events: none;
}
body.onepoint .no-atc-change-allowed input, body.onepoint .no-atc-change-allowed select {
  background: #f9f9f9 !important;
}
body.onepoint .atc-changed input, body.onepoint .atc-changed select {
  background: #DBF7F5 !important;
}
body.onepoint .atc-segment:nth-child(odd) {
  background: #fafdfd;
}
body.onepoint .atc-segment:nth-child(even) {
  background: #fafcfd;
}
body.onepoint .negative-margin {
  margin-top: -3%;
}
body.onepoint .cancelation-policies {
  background: rgba(76, 217, 207, 0.2);
  color: var(--body-color);
}
body.onepoint .p-4 {
  padding: 0.5rem 1.5rem 1.5rem 1.5rem !important;
}
body.onepoint .font-weight-bold {
  font-weight: 550 !important;
}
body.onepoint .text-input-filter {
  max-width: 160px;
  max-height: 40px;
}
body.onepoint .position-bottom {
  bottom: 0;
}
body.onepoint .position-right {
  right: 0;
}
body.onepoint .grey-shadows {
  border-color: var(--gray-l-color);
  box-shadow: 0 1px 0 var(--gray-l-color) !important;
}
body.onepoint .font-weight-medium {
  font-weight: 500;
}
body.onepoint .up-on-hover {
  transition: transform 0.2s ease-out;
  cursor: pointer;
}
body.onepoint .up-on-hover:hover {
  transform: translateY(-2px);
}
body.onepoint .alert span {
  color: var(--primary-color);
}
body.onepoint .acp-itinerary-editor h4, body.onepoint .acp-itinerary-editor .dealengine .h4, .dealengine body.onepoint .acp-itinerary-editor .h4 {
  font-weight: lighter;
  color: var(--primary-color);
}
body.onepoint .acp-itinerary-editor .grouped-form-container.form-inline .form-group {
  width: 15rem;
}
body.onepoint .acp-itinerary-editor span.acp-icon {
  position: absolute;
  right: 0;
  bottom: 0;
  color: var(--primary-color);
  padding-bottom: 20px;
  padding-right: 1.5rem;
}
body.onepoint .acp-itinerary-editor .grouped-form-container.form-inline.waiver {
  margin-left: 2em;
}
body.onepoint .acp-itinerary-editor .grouped-form-container.form-inline.waiver input {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
body.onepoint .table-container {
  border: 1px solid #D6DCDF;
  background-color: white;
  padding: 1rem;
  border-radius: 20px;
  text-align: left;
  color: #202541;
  margin-bottom: 1em;
}
body.onepoint .table-container.primary {
  border: 1px solid #4CD9CF;
  color: #003293;
}
body.onepoint .table-group-container {
  border: 1px solid #D6DCDF;
  background-color: white;
  padding: 1rem;
  text-align: left;
  color: #202541;
}
body.onepoint .table-group-container:first-of-type {
  border: 1px solid #4CD9CF;
  border-radius: 20px 20px 0px 0px;
  color: #003293;
}
body.onepoint .table-group-container:last-of-type {
  border-radius: 0px 0px 20px 20px;
}
body.onepoint .table-group-container-2col {
  border: 1px solid #D6DCDF;
  background-color: white;
  padding: 1rem;
  text-align: left;
  color: #202541;
}
body.onepoint .table-group-container-2col:first-of-type {
  border: 1px solid #4CD9CF;
  border-radius: 20px 0px 0px 0px;
  color: #003293;
}
body.onepoint select.select-flat {
  -webkit-appearance: none;
}
body.onepoint .gds-profile {
  color: #495057;
  border: 1px solid #e5eaf4;
  border-radius: 2.5rem;
  display: block;
  width: 100%;
  height: 40px;
  padding: 1.75rem 1.5rem 0.75rem;
  cursor: pointer;
}
body.onepoint .gds-profile text-input-filter {
  max-height: 40px;
}
body.onepoint .modal-title {
  color: var(--primary-color);
}
body.onepoint .col-container {
  display: flex;
  flex-wrap: wrap;
}
body.onepoint h4, body.onepoint .dealengine .h4, .dealengine body.onepoint .h4 {
  color: #003293;
  font-size: 22px;
  font-weight: 400 !important;
  margin-bottom: 2em !important;
}
body.onepoint .row {
  margin-left: 0px !important;
  margin-right: 0px !important;
}
body.onepoint .table-group-container {
  border: 1px solid #D6DCDF;
  background-color: white;
  text-align: left;
  color: #202541;
  padding: 1rem;
  font-weight: 300;
}
body.onepoint .table-group-container label {
  font-size: 0.8rem;
  color: var(--body-l-color);
}
body.onepoint .table-container label {
  font-size: 0.8rem;
  color: var(--body-l-color);
}
body.onepoint .add-element {
  border-radius: 20px 20px 20px 20px;
}
body.onepoint .danger {
  border: 1px solid #EC4C69;
  color: #EC4C69 !important;
}
body.onepoint .first-right {
  border-radius: 0px 20px 0px 0px;
  color: #202541;
  font-size: 1rem;
  font-weight: 400;
}
body.onepoint .first-left {
  border: 1px solid #4CD9CF;
  border-radius: 20px 0px 0px 0px;
  color: #003293;
  font-size: 1rem;
  font-weight: 400;
}
body.onepoint .last-right {
  border-radius: 0px 0px 20px 0px;
}
body.onepoint .last-left {
  border-radius: 0px 0px 0px 20px;
  font-weight: 400;
}
body.onepoint .icon-color {
  color: var(--secondary-color);
}
body.onepoint .daterangepicker .active {
  background-color: var(--secondary-color) !important;
}
body.onepoint .daterangepicker td.in-range {
  background-color: rgba(76, 217, 207, 0.2);
}
body.onepoint .slider-handle {
  background-image: none !important;
  background: #FFFFFF;
  border: 0.544828px solid #DBE4EA;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
}
body.onepoint .slider-selection {
  background-color: var(--secondary-color) !important;
  background-image: none !important;
}
body.onepoint .rounded-input {
  border-radius: 1.5rem;
}
body.onepoint .attachment-dropzone .attachments {
  border: 2px dashed var(--gray-l-color);
  background-color: #fff;
  border-radius: 10px;
}
body.onepoint .attachment-dropzone .attachments h4 i, body.onepoint .attachment-dropzone .attachments .dealengine .h4 i, .dealengine body.onepoint .attachment-dropzone .attachments .h4 i {
  font-size: 3em;
}
body.onepoint .attachment-dropzone .attachments label {
  cursor: pointer;
}
body.onepoint .attachment-dropzone .attachments .attachment .delete {
  display: none;
}
body.onepoint .attachment-dropzone .attachments .attachment:hover .delete {
  display: inline-block;
}
body.onepoint .attachment-dropzone.attachment-dragging .attachments {
  background-color: var(--secondary-light-color);
  border: 2px dashed var(--secondary-color);
}
body.onepoint .pagination {
  width: 100%;
  overflow: scroll;
  border: 1px solid var(--gray-color);
}
body.onepoint #cookiescript_injected *,
body.onepoint #cookiescript_injected_fsd *,
body.onepoint #cookiescript_badge * {
  font-family: Gilroy;
}
body.onepoint .card {
  box-shadow: none;
  border-radius: 10px !important;
  border-color: var(--gray-l-color);
  color: var(--body-color);
}
body.onepoint .card h6, body.onepoint .card .dealengine .h6, .dealengine body.onepoint .card .h6 {
  margin-bottom: 0;
  color: var(--primary-color);
}
body.onepoint .card th {
  color: var(--primary-color);
}
body.onepoint .card td {
  color: var(--body-color);
}
body.onepoint .card .text-uppercase {
  letter-spacing: 0;
}
body.onepoint .card .card-footer {
  background-color: var(--gray-l-color);
  border-radius: 0 0 10px 10px !important;
  border-color: var(--gray-l-color);
}
body.onepoint .card .card-body {
  font-size: 0.9rem;
}
body.onepoint strong .btn {
  font-weight: 500;
  font-size: 0.8rem;
}
body.onepoint .card-header {
  background-color: var(--gray-l-color);
  border-radius: 10px 10px 0 0 !important;
  border-color: var(--gray-l-color);
}
body.onepoint .card-header-secondary {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: white;
  border-radius: 10px 10px 0 0 !important;
  border-bottom: 1px solid var(--gray-l-color);
}
body.onepoint .information-note {
  color: var(--body-l-color);
  font-size: 0.7rem;
  text-align: right;
  margin-bottom: 0;
}
body.onepoint .card-body .grouped-table {
  border-bottom: 1px solid var(--gray-l-color);
  padding: 1rem 0 1rem 0;
  margin: 0;
  font-size: 0.9rem;
}
body.onepoint .card-body .grouped-table:first-of-type {
  padding: 0 0 1rem 0;
}
body.onepoint .card-body .grouped-table:last-of-type {
  border-bottom: 0;
  padding: 1rem 0 0 0;
}
body.onepoint checkbox-md {
  height: 1rem !important;
  width: 1rem !important;
}
body.onepoint .card {
  border-radius: 12px !important;
}
body.onepoint .card-title {
  margin-bottom: 0.75rem;
}
body.onepoint .card-summary {
  line-height: 1.2;
}
body.onepoint .arp-cover {
  border-radius: 12px;
  object-fit: cover;
  overflow: hidden;
  width: 100%;
}
body.onepoint .plane-cover {
  border-radius: inherit;
  background-image: url("../../images/arp-plane-wide-max.webp");
  background-size: cover;
  background-position: center;
  background-repeat: norepeat;
}
body.onepoint img.img-fluid.w-100 {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
body.onepoint .product-card {
  border-radius: 1.5rem;
  border-style: solid 3px #6c757d;
  width: 24rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
body.onepoint .product-card-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem !important;
}
body.onepoint .product-card-link {
  display: block;
  width: 100%;
  color: #FFFFFF;
  padding: 0.9rem 0;
  font-size: 1rem;
  font-weight: medium;
}
body.onepoint .dashboard-link {
  border-bottom: solid 1px #4cd9cf;
}
body.onepoint .products-row {
  position: relative;
}
body.onepoint .vector-background-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  margin-top: -12rem;
}
body.onepoint textarea.form-control {
  max-height: 180px;
}
body.onepoint thead th {
  font-size: 0.9rem;
  border-top: 0;
}
body.onepoint .mb-chat {
  margin-bottom: 5rem;
}
body.onepoint .font-size-xsm {
  font-size: 0.7rem;
}
body.onepoint .font-size-sm {
  font-size: 0.8rem;
}
body.onepoint .font-size-md {
  font-size: 0.9rem;
}
body.onepoint .font-size-ml {
  font-size: 0.95rem;
}
body.onepoint .table-hover tbody tr {
  font-size: 0.8rem;
  white-space: wrap;
}
body.onepoint .table-hover tbody tr:hover {
  color: #2A3478;
  background-color: rgba(76, 217, 207, 0.1);
}
body.onepoint .badge {
  padding: 6px;
  font-size: 0.8rem;
}
body.onepoint .btn-info {
  color: white;
  border-color: var(--success-color);
  background-color: var(--success-color);
}
body.onepoint .in-process {
  color: var(--secondary-color);
}
body.onepoint .pill-badge {
  border-radius: 50px;
  font-weight: 500;
  padding: 1rem 0.7rem;
  padding-top: 0.7rem;
  padding-right: 1rem;
  padding-bottom: 0.7rem;
  padding-left: 1rem;
  box-shadow: 0 1px 0 var(--gray-l-color) !important;
  font-size: 0.6vw;
}
body.onepoint .btn-candidate .btn-sm, body.onepoint .btn-candidate .dealengine .btn-group-sm > .btn, .dealengine body.onepoint .btn-candidate .btn-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 2.5rem;
}
body.onepoint .btn-outline-dark {
  color: var(--body-color);
  border-color: var(--body-color);
  background-color: #fff;
}
body.onepoint .btn-outline-dark:hover {
  color: #fff;
  border-color: var(--body-color);
  background-color: var(--body-color);
}
body.onepoint .sort-header {
  cursor: pointer;
}
body.onepoint .main-data {
  padding: 2rem 0;
  border-right: 1px solid var(--success-color);
  border-right: 1px solid var(--success-color);
}
body.onepoint .main-data:last-of-type {
  border-right: 0;
}
body.onepoint .underline-title {
  border-bottom: 2px solid var(--success-color);
  padding-bottom: 0.5rem;
}
body.onepoint thead th {
  font-size: 0.9rem;
  border-top: 0;
  vertical-align: top;
  border-bottom: 1px solid var(--gray-l-color);
}
body.onepoint .border-top {
  border-top: 1px solid var(--gray-l-color) !important;
}
body.onepoint ::placeholder {
  color: #D8D8D8;
}
body.onepoint input[type=checkbox] {
  transform: scale(1.25);
}
body.onepoint .toast-container-position {
  z-index: 1022;
  left: 0;
  bottom: 0;
  width: 500px;
  max-width: 500px;
}
body.onepoint .toast-header {
  background-color: var(--gray-l-color);
}
body.onepoint .toast-header-title {
  color: var(--primary-color);
  padding-left: 0.25rem !important;
}
body.onepoint .grecaptcha-badge {
  visibility: hidden;
}
body.onepoint .evidence-screen {
  border-radius: 3px;
  font-family: courier, monospace;
  padding: 0 3px;
}
body.onepoint .td-200 {
  max-width: 200px;
}
body.onepoint .td-180 {
  max-width: 180px;
}
body.onepoint .td-150 {
  max-width: 150px;
  word-wrap: break-word;
}
body.onepoint .td-100 {
  max-width: 100px;
}
body.onepoint .td-80 {
  max-width: 80px;
}
body.onepoint .td-60 {
  max-width: 60px;
}
body.onepoint .td-50 {
  max-width: 50px;
}
body.onepoint .td-40 {
  max-width: 40px;
}
body.onepoint .td-30 {
  max-width: 30px;
}
body.onepoint .td-20 {
  max-width: 20px;
}
body.onepoint .refund-type {
  padding: 0.1 rem 0.1 rem;
}
body.onepoint a.dropdown-item.small.active {
  color: white;
}
body.onepoint a.dropdown-item.small.active:hover {
  color: white;
  background-color: #0B64C4;
}
@media (max-width: 2600px) {
  body.onepoint .font-size-ml {
    font-size: 1.05rem;
  }
  body.onepoint .font-size-md {
    font-size: 1rem;
  }
  body.onepoint .font-size-sm {
    font-size: 0.95rem;
  }
  body.onepoint .font-size-xsm {
    font-size: 0.9rem;
  }
  body.onepoint .font-size-xxsm {
    font-size: 0.85rem;
  }
  body.onepoint .btn-link,
body.onepoint .card .card-body,
body.onepoint .navbar,
body.onepoint .nav-item,
body.onepoint h6,
body.onepoint .dealengine .h6,
.dealengine body.onepoint .h6 {
    font-size: 0.9rem;
  }
  body.onepoint .segments-removal {
    margin-top: 0.7rem;
    margin-bottom: 0.7rem;
  }
}
@media (max-width: 2200px) {
  body.onepoint .font-size-ml {
    font-size: 1rem;
  }
  body.onepoint .font-size-md {
    font-size: 0.95rem;
  }
  body.onepoint .font-size-sm {
    font-size: 0.9rem;
  }
  body.onepoint .font-size-xsm {
    font-size: 0.85rem;
  }
  body.onepoint .font-size-xxsm {
    font-size: 0.8rem;
  }
  body.onepoint .btn-link,
body.onepoint .card .card-body,
body.onepoint .navbar,
body.onepoint .nav-item,
body.onepoint h6,
body.onepoint .dealengine .h6,
.dealengine body.onepoint .h6 {
    font-size: 0.9rem;
  }
  body.onepoint .segments-removal {
    margin-top: 0.6rem;
    margin-bottom: 0.6rem;
  }
}
@media (max-width: 1900px) {
  body.onepoint .font-size-ml {
    font-size: 0.95rem;
  }
  body.onepoint .font-size-md {
    font-size: 0.9rem;
  }
  body.onepoint .font-size-sm {
    font-size: 0.85rem;
  }
  body.onepoint .font-size-xsm {
    font-size: 0.8rem;
  }
  body.onepoint .font-size-xxsm {
    font-size: 0.75rem;
  }
  body.onepoint .btn-link,
body.onepoint .card .card-body,
body.onepoint .navbar,
body.onepoint .nav-item,
body.onepoint h6,
body.onepoint .dealengine .h6,
.dealengine body.onepoint .h6 {
    font-size: 0.85rem;
  }
  body.onepoint .segments-removal {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 1700px) {
  body.onepoint .font-size-ml {
    font-size: 0.9rem;
  }
  body.onepoint .font-size-md {
    font-size: 0.85rem;
  }
  body.onepoint .font-size-sm {
    font-size: 0.8rem;
  }
  body.onepoint .font-size-xsm {
    font-size: 0.75rem;
  }
  body.onepoint .font-size-xxsm {
    font-size: 0.7rem;
  }
  body.onepoint .btn-link,
body.onepoint .card .card-body,
body.onepoint .navbar,
body.onepoint .nav-item,
body.onepoint h6,
body.onepoint .dealengine .h6,
.dealengine body.onepoint .h6 {
    font-size: 0.8rem;
  }
  body.onepoint .segments-removal {
    margin-top: 0.4rem;
    margin-bottom: 0.4rem;
  }
}
@media (max-width: 1500px) {
  body.onepoint .font-size-ml {
    font-size: 0.85rem;
  }
  body.onepoint .font-size-md {
    font-size: 0.8rem;
  }
  body.onepoint .font-size-sm {
    font-size: 0.75rem;
  }
  body.onepoint .font-size-xsm {
    font-size: 0.7rem;
  }
  body.onepoint .font-size-xxsm {
    font-size: 0.65rem;
  }
  body.onepoint .btn-link,
body.onepoint .card .card-body,
body.onepoint .navbar,
body.onepoint .nav-item,
body.onepoint h6,
body.onepoint .dealengine .h6,
.dealengine body.onepoint .h6 {
    font-size: 0.75rem;
  }
  body.onepoint .segments-removal {
    margin-top: 0.3rem;
    margin-bottom: 0.3rem;
  }
}
@media (max-width: 1400px) {
  body.onepoint .font-size-ml {
    font-size: 0.75rem;
  }
  body.onepoint .font-size-md {
    font-size: 0.7rem;
  }
  body.onepoint .font-size-sm {
    font-size: 0.65rem;
  }
  body.onepoint .font-size-xsm {
    font-size: 0.6rem;
  }
  body.onepoint .font-size-xxsm {
    font-size: 0.55rem;
  }
  body.onepoint .btn-link,
body.onepoint .card .card-body,
body.onepoint .navbar,
body.onepoint .nav-item,
body.onepoint h6,
body.onepoint .dealengine .h6,
.dealengine body.onepoint .h6 {
    font-size: 0.65rem;
  }
  body.onepoint .segments-removal {
    margin-top: 0.2rem;
    margin-bottom: 0.2rem;
  }
}
@media (max-width: 1370px) {
  body.onepoint .font-size-ml {
    font-size: 0.7rem;
  }
  body.onepoint .font-size-md {
    font-size: 0.65rem;
  }
  body.onepoint .font-size-sm {
    font-size: 0.6rem;
  }
  body.onepoint .font-size-xsm {
    font-size: 0.55rem;
  }
  body.onepoint .btn-link,
body.onepoint .card .card-body,
body.onepoint .nav-item {
    font-size: 0.6rem;
  }
  body.onepoint .segments-removal {
    margin-top: 0.1rem;
    margin-bottom: 0.1rem;
  }
}
body.onepoint .refund-details-summary {
  background-color: #F4F7FB;
  border-radius: 1.25rem;
}
body.onepoint .overflow-col {
  max-height: 15rem;
  overflow: auto;
}
body.onepoint .nav-number {
  max-width: 80%;
  height: auto;
}
body.onepoint .vertical-nav-item {
  background: #F6F9FC;
  border-color: #F6F9FC;
}
body.onepoint .vertical-nav-item.active {
  background: #003293;
  border-color: #003293;
  color: white;
}
body.onepoint .vertical-nav-item.active:hover {
  background: #003293;
  border-color: #003293;
}
body.onepoint .vertical-nav-item:hover {
  background: #E2E8F0;
  border-color: #E2E8F0;
}
body.onepoint .circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: #white;
}
body.onepoint .circle-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: white;
  border: solid 2px #003293;
}
body.onepoint .col-border-left {
  border-left: solid #003293 1px !important;
}
body.onepoint .gds-form-row {
  gap: 2.8em;
}
body.onepoint .gds-select-input {
  display: flex;
  flex-wrap: nowrap;
  flex: 1;
  align-items: center;
}
body.onepoint .gds-select-input label {
  font-weight: 600;
  color: var(--primary-color);
  margin: 0 1.8em 0 0;
  white-space: nowrap;
}
body.onepoint .gds-select-input select {
  flex-grow: 1;
}
body.onepoint .connection-status {
  display: inline-block;
  width: 0.95em;
  height: 0.95em;
  border-radius: 999px;
  background-color: #B32630;
}
body.onepoint .connection-status.active {
  background-color: var(--success-color);
}
body.onepoint .terminal {
  background-color: var(--terminal-background-color);
  border-radius: 1rem;
  width: 100%;
  text-transform: uppercase;
}
body.onepoint .command-input {
  width: 100%;
  outline: none;
  border: solid 1px var(--gray-color);
  border-radius: 0.5rem;
}
body.onepoint .gds-history-button {
  padding: 0 0;
  box-shadow: none !important;
  font-size: 1.3rem;
}
body.onepoint .gds-screen-selected {
  background-color: #e4e8ea;
  border-radius: 0.1rem;
  color: var(--primary);
}
body.onepoint .gds-border-screen-selected {
  border: solid;
  border-color: var(--primary);
  border-width: medium;
}
@media (max-width: 768px) {
  body.onepoint .gds-form-row {
    gap: 1em;
  }
  body.onepoint .gds-select-input label {
    margin: 0 0.5em 0 0;
  }
}
body.onepoint .hero {
  padding: 6rem 0 12rem;
  color: #fff;
  background: url("../../images/hero-bg.png");
  background-size: cover;
  position: relative;
  overflow: hidden;
}
body.onepoint .hero .hero-content {
  z-index: 1;
  position: relative;
}
body.onepoint .hero .hero-content h1, body.onepoint .hero .hero-content .dealengine .h1, .dealengine body.onepoint .hero .hero-content .h1 {
  letter-spacing: -1px;
  font-weight: bold;
  line-height: 1.3;
}
@media (min-width: 769px) {
  body.onepoint .hero .hero-content h1, body.onepoint .hero .hero-content .dealengine .h1, .dealengine body.onepoint .hero .hero-content .h1 {
    font-size: 3.5rem;
  }
}
body.onepoint .hero .hero-content p {
  font-size: 1.25rem;
  line-height: 1.5;
}
body.onepoint .op-pagination {
  display: inline-block;
}
body.onepoint .op-pagination a {
  color: black;
  float: left;
  padding: 8px 16px;
  text-decoration: none;
  cursor: pointer;
}
body.onepoint .op-pagination a.active {
  background-color: var(--primary-color);
  color: white;
}
body.onepoint .op-pagination a:hover:not(.active) {
  background-color: #ddd;
}

body.commerce-page.nmviajes {
  --primary-color: #B01630;
  --secondary-color: #CFD1D3;
  --info-color: #FFE0E5;
}
body.commerce-page.nmviajes .navbar .navbar-logo {
  background-size: auto 100%;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAc0AAABtCAMAAAD08Mp1AAAAllBMVEX////V086wFjDS0MvX1dCtAB/z8vGvDSv89Pbe3Ni8SFj4+Pjh39vep7D++vvb2dWqAAnHYnHATl/hrrXDWmn68fLm5eK2HTrs6+n19POtACOuACasABqrABXu7ezPfIipAADw1trlwMXXmKDluL++QFXGaHS3LkO5N0u7RFT26evqx8zWkJrRhI/hrLTIc33x3N+3MkZmLJsIAAANuUlEQVR4nO2da3ebOBCGTbiFgkPWTTAXmzRpbnXiJvn/f24BY8OMRiPh4G7o6j2nHxqEwHqkkTQaidnMyGiyCr3Sy8IT5Z2dMHMjQWlg2ZWcwBs/7yxy7CbzKBs/cyNBYWxbrexo7MyjQ96WnYyduZGgzOrJjsfNvKsoJ6krRlixBXCmY+ad2DDzcszMjUSVFpQz4nAls3Dm4+VtRClABT5m+0FNs8r8BMMso55wgVsjdm4xztsyA6GTKhRojjcOCh2BphkHnVTZn6UZjJa5ESFD82/SKS3tzFjaPy0zCvqbhEt8TPeBmaH8aaWoxE/qPbDGy9uIFPLsjWoLsWdvVLehEaEMjFXG9roDmGYMdHplTrciFo+8qBwGtoH5h5XsFpTt4ARrHF6wy9s2q9V/TFmZpuWpIkmqvFMzmDUyMjIyMvo7dH69qXR9fXF0Dtebl/nr9mb7+vt9cy59zOb2d53o5/3m+ugnja6w1WnyrsZjSaW09AY+4bi3Or/7+fZtWazXxfJjsf29GXh7o/vt83rl5nmR5+7aX7zeEmkufm8f3LXrVonc1erj7f6YB42rsEyiwGmnM04cJePOaMK0jb21rN0TgkRvVpOlSRA7jlXd6MRBlOAB9BJocfj7+/dvlyu38M8a+X7u/vh1T7fQ334/C//ucOF2667yNoddNvl6gXnePa5XRS+RX6zcG1hzqnIF4iYBJUza8/hkKBdp5fbqosZedDtOudYQwbw590GYxkL2Vf5OomptZWSjG+uKAIj6fRUPuz9evFyduX0MLYsnstnMV/083D3Nl0WR4yzOzopi27O3m/lHXoiJcn/efwDyl7MeVrkz1kPlRxdehRKX9P4Gi3ELRDCtfK06TCwB5V4RwzNMZO9l9eoB5NXQvLhbuEQRNzy3xIPmbj9NS/P2kcLUJLjat7yL+bNYZ3YPcrc9O4CX9pnwRrQmbffKX4dmKS5UAknrkS7NxJGybLjI7ku5+7rNEiLN26sVXcQNin/EJxE0L25kLCvlT7vWefvAPGj1Ji8rS95GUDPuc1fT9GKuqHflJnm0Hs2MZWlJ3cd9J7BEO9uOaW7eLuVFXMO6Ep4l0nxZurL7G5x193yxXfMPuumVAvoxclMLg2bBwpSKZhgpiwxn2UmLprCmTYnA6anval8M0bx7Ivo6oNVPBc2X2WvBcmry2DyrHrT+3j1C19SGKF2/aBQ0S2m/hO4jq5IOTXUDa95ZaP3iUjj9YhGiebZUcaj1ztIsvv/DNsxa/sf8SW6J94mW3dQTLwbLTC0ytGBoydPEkQlMqVGtU4OmVtO3xJgIIiCQlodp6ih/ZGlWUwx1Hr5k9APkvna/CBWozNTCQoXBOSxNLSPYK7bhNHVhCuvoeNAgU111h9M889GUca5si8fJf+qmnWgTiSRwAFVjmIqlqV/WFmnolTQHVBdYV0vdG2fH0cxf4YueiuaZey/9TbSpheYStWDe0uqas0aic0BFMyXzaf1BgvqvRs2ZiPt29p8pTD93XWri6T8NoFk7FNTc6ERFN34OtUK00IgW8uJp4v2AXGETsxsVTSIPJ47KLPPKRODF+DwqOUFSerWTN+jXwJ0dkhWve1kstvP7n4+FOCm8hJ5xGU0/X13mT4tfyzUzrzwr3PWP5fPi2b8UBrn+snMbJfAnkaYWGVrUghRj2gg7zeIoLcu60AiiQuNU0BT6PtvqOQozPNqNmTv7DkYvOrybJ6dZrBfzQ591Lww/V9DBR9P018+v9zvsF2IWHfDHedsNb15zDN1/6UhpmFpkaJGnXDXf7DUR5P0sxbkFvpmn6Qn3o3Exsgy9MTu6T/AupI3HY9+aKZbF423fv/7+jErZhVNOiqafL/o++s0VidN92vb96y9L9KC8V20YvwCdBAcoq2h21yNh0Iono8LjeZp4I7Do8YE4O1OLB/NEJfaCblZDFPHiBaW/X6FChsMggmb+hNZb3pcE8WKLVtlwTm7PgYAmhJSphSlw16r07LXDTtK3niGcClMKL+O+j3LfJfT96FbabeIdmjou4qKYi8lR4yzewFWBpr9+FNacb4TGuXoQFjuv0YNAtUH9mlgiiDeGovbTOrWjVOKYQA4ZPMVnaeLpFemLBS9/qKvIBEv8v/QaSlV+V9Si9E84QPGvQMPDNP2z72IWL2sMU/AQVtrCBxVy1zthaiP+h6tpZrYjX5VO2LrC0cSeOXrdC4xsD5UF0VQdjoFAPJDBHnfI27PgaPoP2PVX6xxZ6xW9VAqzKvorNoiGQAt2MSJtjRUxLtAWDsNw9hzNhL3zkEqHptSl2QrRXJDhBe+YJmCOELhEy6zGtU/QiF6Sb/MCmQOaaIIv0IAOBjG0QG+1Wi4ILOEuQppwPilrXjRNnS63Jy2a1yPQfNCh+Q7tMaSpqOOwdxLdNZ+lCbtllD9Dk2/UdA4HmmhMW11hY+m1aM6GWFoJzYUOzQ1HEzkHkKmFVwmT9Fma0OihpzM0U4XNaAVTHf4seBxt7sTH42ge0TavdGheXzI0UZGhcinpQWGnz9KEgxl9mnDuIYv/SiWvT3nr5QFnU6Lpcb4eaGgJezaMZuiVSRJFUVD9q4NesxDSRN0fQxO8mOwAMfRyHXNyqdq2IjqfKdGcMaYWmWF1PAZDs0x2x9h2aUX/uz5N2APQcT/IC91fmJWs1dl2RLTQSdGEPxqYWrjkRM2y9WiGqSJsbyhNNI6JRAVC39j/ZfLQA1t0QU6KJnK9961NIL2ylw7N+vxnHZYDaIqnTikF1/vYGK8YxlRPiiaauvVHFKoxkBZNZPA4nZSmeum1S2v1eU6LJhy42pIL9Fq2kqYnj0IXdUKawpTUYw2G3RvyTYsmmlR2BhWWJtklqmgOCvTSpymubSpkE50+/25dzPa0aKJSO5haSJleaVDQHGBla52MJgWzDsPn36YdDk2MZka7TKChpZ1nx8TTHqYlQjTJqSyt9HQadifKftw3MZrolKX9CB2OaOniYGmKJ2RW/VGQpHVoUK00TVjnOTNDGUKTW5KblRHTse+KYmo0Sd83NLSS0GmWJo71sBxhpyua7MKLY9Cs5o+KA93CqkrJsmvmqFOjCQunXSCCQ13JGiBHU+jciK2UyEvMXQQ04ezfkSlOtI4xCtOYdic0A/mp0UTltmtAoGXJFhA5mrhpUm3kSEuL+4aQluSlKYUeuaO3bpyTowmh7KwqKC+ZtWJoovZDz1eP9dOCS2MdjpmKW03rrCdHE3qxm0IFzhLpAiJDs2RJtbcfSxP29KOd9y7uUAymSBPOpGtTC4pSeoAEQxMOcOimieaj+jTRFGW0IxVxUGj9StOjCVf86pIHKKQr8wxNFHlNZaE4e4GLC2L2lH5K2B1fWaXp0RTGPMBOyg8RZmiiLUsUTexbG0CT21QqaMhwCI/dsinShI6fDJQWc/rMp2gKq4wDaOKYWA5YIvbZUSC7ATsjJ0kT+QrAf5mIAn2axLhT9C7A62ysO6oJ8ihKL7aF6uhZdixpzn8FTfgrAk1Dq09Ta2f0EJqClabpZLugETRMqt9NYnHQa0+z30T+IFDzGTcnQxOxEEwtsSA1hKZgponDwsODVx1WyP2jiXPbiK58ijTJ3eNUGQMxNIVPpYDCDgUzO5AmVRuCsvP/hFkS91ZI+g2xiypy8MGKwub7Sc43qR9CFQQWQ1MIvXG6rlNywN0gmtSpCrZVH2JZR3kG+BRFmdWIO6ChuEN4mr6gGRHPvxc3Ndf37NVX46TMsqyJxSSfNIzmsCXrQHZfRT1uagBximZTCSZJU3aGDus247zuVKSG9AyLRsNoDgtT6QbVA05KmeYaSiM6KpF3aXM0NQ8/62kgzYEHErXvNqgOTHF9sxU9DmIdKZ89ywutU8LMlTRDvaDr9t12/b/2mWwWfV7QZGiSpc+7QPm4IHVxeeLiTSeNc/aUx6V2j9oP5gTHuvwW4kTT6dCkxkGKjcc8TWUwVgqBD6epeQYmPHpB9562Ik+UJjUOUhwKoDrRlC+vdPZpmlpBnrYDO/9Up3keAv2mSpMInlJ8F0EVHc3irL1D4A/H0JyV6l0ugs8n1DgD8zDNnipNoedUfiZRuXNBek53ez43+NtRNGu/B8PTpvx3zcFt7M6FoLPMPvzowjea5gqmQjvl1+DqSkIzB6l+kM+5/gES5QxNfAyCchVYZ1cRxdOO20Y/Bk15lLPtiEeI7RXKD/eHCyzfgH490jQfuFT3z+DqA/11mrdfINUHmej8Az7ohkzVqgza75bUH6BRR09lMRTVDISAVdvpPtUJ7tbfKS++CPDK1g+pz7XM2OlVWEaO2KztGLnvz5HozNhUF+giXSFQKskHpvRe5/AbvebjTXqRqJqqy3rf/hxq/zKpITRnu28h7QNpgyTlSe7vydLmWy12u4/CiYUAbiNKYeZVGlJFBtI8/s28+utjaVp65gO8pxNaNDMfrp6ysN/O0JyysNeeW2c1+urCoSgj7U8w+i+EXXaKmFmjr6ew3qNXy1Mf+2701eXZtdvCISb1qnNHjb6emC+PmSHt5CRf35IdjWj0dSUPDVGdvm709SSFaWab05M0prd/YJzRRCQ9mpL95L3R15R0SHuy9ROj00k2pGU32xp9UVEbxwzMqYqMjLSJM8CMJiDCoceeeWj0lRWWEdhDZtsakWZGX1heEsS7Iw8jE3FlZGRk9L/Qv/u3AOYzPGMUAAAAAElFTkSuQmCC");
  width: 200px;
  height: 30px;
  background-repeat: no-repeat;
  background-position-x: 0;
  background-position-y: 0;
}
body.commerce-page.nmviajes .product-description p a {
  margin-left: 0.5rem;
}
body.commerce-page.nmviajes .alert-contact div p {
  margin: 0;
}
body.commerce-page.nmviajes .alert-contact div span {
  margin: 0;
  color: var(--primary-color);
}
body.commerce-page.milanesas-jackson {
  --primary-color: #CD1731;
}
body.commerce-page.milanesas-jackson .navbar .navbar-logo {
  background: url("https://s3images.coroflot.com/user_files/individual_files/722006_yg5wevqktk9d_neijovjmfqwy.jpg");
  background-size: auto 100%;
  background-repeat: no-repeat;
  height: 50px;
  width: 250px;
}
body.commerce-page .navbar {
  border-bottom: 1px solid var(--gray-color);
  background-color: white;
  padding: 1rem 3rem;
}
body.commerce-page .product.card {
  min-height: 24em;
  border-radius: 0.8em;
}
body.commerce-page .img-product {
  width: 100%;
  height: auto;
  object-fit: cover;
}
body.commerce-page .btn-card-position {
  margin: 1.5rem 2.5rem;
}
body.commerce-page .btn-outline-primary:hover {
  color: #fff;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.product-description {
  font-size: 0.9rem;
  color: var(--body-l-color);
}
.product-description ul {
  padding: 10px;
  margin: 0;
}

a:hover {
  color: var(--primary-color);
}

.product-price-currency {
  font-size: 1.3rem;
  color: var(--body-l-color);
}

.product-price-amount {
  font-size: 1.3rem;
  color: var(--primary-color);
}

.product-price-unit-desc {
  font-size: 0.8rem;
  color: var(--body-l-color);
}

.alert-contact {
  font-size: 0.9rem;
}

.alert-payment {
  margin: 2.5rem auto;
  color: black;
  background-color: var(--info-color);
  border: 0;
  width: 70%;
}

code {
  color: var(--primary-color);
}

.paid-success {
  color: var(--body-l-color);
  font-weight: 400;
}

em {
  font-style: normal;
  color: var(--body-l-color);
  font-size: 0.9rem;
}

.z-100 {
  z-index: 100 !important;
}

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