.color-primary {
  color: #0b2993;
}

.bg-gray-extra-light {
  background-color: #f0f4f7;
}

.border-radius-tl-5 {
  border-top-left-radius: 3rem;
}

.border-radius-tr-5 {
  border-top-right-radius: 3rem;
}

.border-radius-bl-5 {
  border-bottom-left-radius: 3rem;
}

.border-radius-br-5 {
  border-bottom-right-radius: 3rem;
}

.title-custom {
  text-align: center;
  color: #0b2993;
  padding: 30px 0;
}

.card.card-custom {
  border-radius: 20px;
  transition: 0.3s all;
  border-width: 2px;
}
.card.card-custom.card-success .card-header, .card.card-custom.card-success .card-footer {
  background-color: #75d8c1;
}
.card.card-custom.card-default {
  border-color: #e6edf4;
}
.card.card-custom.card-default .card-header, .card.card-custom.card-default .card-footer {
  background-color: #eef3f8;
}
.card.card-custom.card-danger .card-header, .card.card-custom.card-danger .card-footer {
  background-color: #FEE9FF;
}
.card.card-custom .card-header {
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
  border: 0;
  border-top-left-radius: 17px;
  border-top-right-radius: 17px;
}
.card.card-custom .card-header .card-title {
  font-weight: 900;
  font-size: 1.4rem;
}
.card.card-custom .card-footer {
  border: 0;
}
@media (min-width: 768px) {
  .card.card-custom.card-custom-table {
    display: table;
    width: 100%;
  }
  .card.card-custom.card-custom-table .card-body {
    padding: 0 50px 0 50px;
  }
  .card.card-custom.card-custom-table .card-header,
  .card.card-custom.card-custom-table .card-body,
  .card.card-custom.card-custom-table .card-footer {
    display: table-cell;
    vertical-align: middle;
  }
}

.modal-custom .modal-dialog {
  display: flex;
  align-items: center;
  min-height: calc(100% - var(--bs-modal-margin) * 2);
}
.modal-custom .modal-dialog .modal-content .modal-header {
  border: 0;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
}
.modal-custom .modal-dialog .modal-content .modal-header .modal-title {
  font-weight: 900;
  font-size: 1.5rem;
  color: #0b2993;
  margin: auto;
}
.modal-custom .modal-dialog .modal-content .modal-footer {
  border: 0;
}

.btn.btn-custom {
  border-radius: 40px;
  line-height: 40px;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 0.06s ease, filter 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}
.btn.btn-custom:hover {
  filter: brightness(0.96);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}
.btn.btn-custom:active {
  filter: brightness(0.92);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  transform: translateY(0);
}
.btn.btn-custom:focus {
  box-shadow: none;
}
.btn.btn-custom:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(157, 217, 222, 0.35);
}
.btn.btn-custom:disabled, .btn.btn-custom.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none !important;
  transform: none !important;
  filter: none !important;
}
.btn.btn-custom.btn-danger {
  color: #fff;
  border-color: var(--color-orange);
  background-color: var(--color-orange);
}
.btn.btn-custom.btn-danger:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(255, 125, 0, 0.35);
}
.btn.btn-custom.btn-info {
  color: #1d2c5b;
  border-color: #9dd9de;
  background-color: #9dd9de;
}
.btn.btn-custom.btn-info:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(157, 217, 222, 0.35);
}

.form-select,
.form-control[type=text],
.form-control-plaintext {
  padding: 0.75rem 2.25rem 0.75rem 0.75rem;
  border: 2px solid #b0b8bd;
  border-radius: 8px;
}
.form-select.is-invalid,
.form-control[type=text].is-invalid,
.form-control-plaintext.is-invalid {
  border-color: #dc3545;
}

.form-control-plaintext {
  background-color: #EEE;
}

.form-check {
  padding-left: 3em;
}
.form-check .form-check-input {
  padding: 1rem;
  margin-top: -2px;
  margin-left: -48px;
  border-radius: 8px !important;
  border: 2px solid #b0b8bd;
}
.form-check .form-check-input:checked {
  background-color: #0b2993;
  border-color: #0b2993;
}
.form-check .form-check-input.is-invalid {
  border-color: #dc3545;
}
.form-check .form-check-input.is-invalid:focus, .form-check .form-check-input.is-invalid:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}
.form-check .form-check-input.is-invalid:checked {
  border-color: #dc3545;
}
.form-check .form-check-input:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.form-check > label {
  margin-top: 3px;
}

.input-group {
  border: 2px solid #b0b8bd;
  border-radius: 8px;
}
.input-group .form-control {
  box-shadow: none !important;
  border: 0 !important;
}
.input-group .input-group-text {
  border: 0;
  background-color: transparent;
}
.input-group:has(.is-invalid) {
  border-color: #dc3545;
}

.custom-btn-check + label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  line-height: 16px;
  padding: 0.65rem 1rem;
  color: #212529;
  background-color: #fff;
  border: 2px solid #9dd9de;
  border-radius: 999px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.05s ease;
}
.custom-btn-check + label:hover {
  background-color: rgba(0, 0, 0, 0.03);
}
.custom-btn-check + label:active {
  transform: translateY(1px);
}
.custom-btn-check:checked + label {
  border: 2px solid #9dd9de;
  background-color: #9dd9de;
  color: #212529;
  font-weight: 600;
}
.custom-btn-check.is-invalid + label, .custom-btn-check.is-invalid:checked + label {
  border-color: #dc3545;
}
.custom-btn-check.is-invalid:focus + label, .custom-btn-check.is-invalid:focus-visible + label {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}
.custom-btn-check:focus + label, .custom-btn-check:focus-visible + label {
  outline: 0;
  border-color: #9dd9de;
  box-shadow: 0 0 0 0.25rem rgba(157, 217, 222, 0.25);
}
.custom-btn-check:disabled + label {
  opacity: 0.55;
  cursor: not-allowed;
  background-color: rgba(0, 0, 0, 0.02);
}

.custom-btn-check-product + label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  line-height: 16px;
  padding: 0.65rem 1rem;
  color: #212529;
  background-color: #9dd9de;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.05s ease, filter 0.18s ease;
}
.custom-btn-check-product + label:hover {
  filter: brightness(0.96);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}
.custom-btn-check-product + label:active {
  filter: brightness(0.92);
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}
.custom-btn-check-product:checked + label {
  color: #fff;
  background-color: var(--color-orange);
  font-weight: 600;
}
.custom-btn-check-product:focus + label, .custom-btn-check-product:focus-visible + label {
  outline: 0;
}
.custom-btn-check-product.is-invalid:checked + label {
  background-color: var(--color-orange);
  color: #fff;
}
.custom-btn-check-product:disabled + label {
  opacity: 0.55;
  cursor: not-allowed;
  filter: none;
  box-shadow: none;
  transform: none;
}

.navbar .container {
  display: flex;
  align-items: center;
}
.navbar .container .wizard {
  flex: 0 0 auto;
  margin-left: auto;
  margin-right: 0;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  align-self: center;
  width: 100%;
  max-width: 1050px;
  display: flex !important;
  flex-wrap: nowrap;
  justify-content: flex-end;
}
.navbar .container .wizard.size-large {
  max-width: 1150px;
}
.navbar .container .wizard .wizard-step {
  flex: 0 0 auto;
  width: auto;
  white-space: nowrap;
}
.navbar .container .wizard .wizard-step .wizard-step-container {
  padding: 0 24px;
  text-align: center;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  color: #0b2993;
  font-family: "DaxlinePro", sans-serif;
}
.navbar .container .wizard .wizard-step.pending .wizard-step-container {
  background-color: #334fb0;
  color: rgba(170, 170, 170, 0.6666666667);
}
.navbar .container .wizard .wizard-step.active .wizard-step-container {
  background-color: #9dd8de;
  color: #0b2993;
}
.navbar .container .wizard .wizard-step.visited .wizard-step-container {
  background-color: #EEE;
}
.navbar .container .wizard .wizard-step.bg-pending {
  background-color: #334fb0;
}
.navbar .container .wizard .wizard-step.bg-active {
  background-color: #9dd8de;
}
.navbar .container .wizard .wizard-step.bg-visited {
  background-color: #EEE;
}
.navbar .container .wizard .wizard-step span {
  line-height: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}
@media (min-width: 1200px) {
  .navbar .container .wizard .wizard-step span {
    font-size: 1rem;
    font-weight: 700;
  }
}

@media (max-width: 1400px) {
  .navbar .container .wizard {
    justify-content: flex-end;
    width: auto;
    max-width: none;
  }
  .navbar .container .wizard .wizard-step {
    width: 20px;
    height: 20px;
    padding: 0;
    border-radius: 50%;
    text-align: center;
    margin-left: 20px;
  }
  .navbar .container .wizard .wizard-step.visited {
    background-color: #EEE;
  }
  .navbar .container .wizard .wizard-step.active {
    background-color: #9dd8de;
  }
  .navbar .container .wizard .wizard-step.pending {
    background-color: #334fb0;
  }
  .navbar .container .wizard .wizard-step span {
    display: none;
  }
}
.autosos-header .logo-container img {
  max-width: 200px;
}
@media (max-width: 768px) {
  .autosos-header .logo-container img {
    max-width: 100px;
  }
}
.autosos-header .header-title {
  font-size: 1.5rem;
  color: #0b2993;
  padding: 30px 0;
}
@media (max-width: 768px) {
  .autosos-header .header-title {
    font-size: 1rem;
    padding: 10px 0;
  }
}

.product-type .compare-grid {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: #fff;
}
.product-type .compare-grid th, .product-type .compare-grid td {
  vertical-align: middle;
  padding: 18px 18px;
}
.product-type .compare-grid thead th {
  border: 2px solid #ffffff;
  vertical-align: top;
  padding: 22px 22px;
}
.product-type .compare-grid thead th:first-child {
  width: 28%;
  background: #fff;
}
.product-type .compare-grid thead th:not(:first-child) {
  background: #eef3f8;
  text-align: center;
}
.product-type .compare-grid tbody th {
  background: #eef3f8;
  text-align: left;
}
.product-type .compare-grid tbody td {
  text-align: center;
  background: #fff;
}
.product-type .compare-grid tbody th {
  border-top: 2px solid white;
  border-right: 2px solid #e6edf4;
  border-bottom: 2px solid white;
}
.product-type .compare-grid tbody td {
  border: 2px solid #e6edf4;
}
.product-type .compare-grid tbody tr:last-child td {
  border-bottom: 0;
}
.product-type .compare-grid tfoot .compare-foot-cell {
  padding: 0;
  background: #fff;
  text-align: center;
  vertical-align: middle;
}
.product-type .compare-grid tfoot .compare-foot-label {
  background: #fff;
  border-color: #fff;
}
.product-type .compare-grid tfoot .tfoot-cap {
  padding: 0 20px 10px;
  background: #fff;
  height: 100%;
  border-top: 0;
  border-right: 2px solid #e6edf4;
  border-bottom: 2px solid #e6edf4;
  border-left: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-type .compare-grid tfoot .compare-foot-cell:first-of-type .tfoot-cap {
  border-left: 2px solid #e6edf4;
}
.product-type .compare-grid tfoot .tfoot-cap.cap-left {
  border-bottom-left-radius: 20px;
  border-left: 2px solid #e6edf4;
}
.product-type .compare-grid tfoot .tfoot-cap.cap-right {
  border-bottom-right-radius: 20px;
  border-right: 2px solid #e6edf4;
}
.product-type .list-grid {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: #fff;
}
.product-type .list-grid th {
  padding: 14px;
  vertical-align: middle;
  background: #eef3f8;
  text-align: left;
  border-bottom: 2px solid white;
}
.product-type .list-grid tr:first-child th {
  border-top-left-radius: 20px;
}
.product-type .list-grid tr:last-child th {
  border-bottom-left-radius: 20px;
}
.product-type .list-grid td {
  width: 56px;
  background: #fff;
  text-align: center;
  vertical-align: middle;
  padding: 0;
  position: relative;
}
.product-type .list-grid td .cap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  box-sizing: border-box;
  background: #fff;
  overflow: hidden;
  border-left: 0;
  border-right: 2px solid #e6edf4;
  border-bottom: 1px solid #e6edf4;
  border-top: 1px solid #e6edf4;
}
.product-type .list-grid td .cap.cap-top {
  border-top: 2px solid #e6edf4;
  border-top-right-radius: 20px;
}
.product-type .list-grid td .cap.cap-bottom {
  border-bottom: 2px solid #e6edf4;
  border-bottom-right-radius: 20px;
}
.product-type .list-grid .block-title {
  display: block;
  color: #0b2993;
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.product-type .list-grid .block-content {
  display: block;
  color: rgba(28, 36, 48, 0.85);
  font-size: 0.85rem;
  line-height: 1.3;
}
.product-type .list-grid .check {
  width: 28px;
  height: 28px;
  display: inline-block;
}
.product-type .list-grid .check svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #0b2993;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.product-type .hero-title {
  margin: 0;
  color: #0b2993;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.25;
  text-align: left;
}
.product-type .product-title {
  display: block;
  color: #0b2993;
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1.25;
  margin: 0 0 12px;
}
.product-type .product-sub-title {
  display: block;
  color: #212529;
  opacity: 0.85;
  font-size: 0.95rem;
  line-height: 1.35;
  margin: 0 0 18px;
}
.product-type .product-price {
  display: block;
  color: #0b2993;
  font-weight: 700;
  font-size: 2.4rem;
  margin: 0;
}
.product-type .block-title {
  display: block;
  color: #0b2993;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.product-type .block-content {
  display: block;
  color: #212529;
  opacity: 0.85;
  font-size: 0.95rem;
  line-height: 1.35;
}
.product-type .check, .product-type .minus {
  width: 34px;
  height: 34px;
  display: inline-block;
  vertical-align: middle;
}
.product-type .check svg, .product-type .minus svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #0b2993;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (max-width: 768px) {
  .product-type .compare-grid {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }
  .product-type .compare-grid th:first-child {
    min-width: 260px;
  }
  .product-type .compare-grid thead th:not(:first-child),
  .product-type .compare-grid tbody td {
    min-width: 220px;
  }
}

.auto-confirm-offer .card-custom .table > :not(caption) > * > * {
  border-bottom-width: 2px;
  border-bottom-color: #e6edf4;
}
.auto-confirm-offer .card-custom .table tr:last-child th, .auto-confirm-offer .card-custom .table tr:last-child td {
  border-bottom: 0;
}
.auto-confirm-offer .card-custom .table tr.before-summary-row th, .auto-confirm-offer .card-custom .table tr.before-summary-row td {
  border-bottom: 0;
  padding-bottom: 15px;
}
.auto-confirm-offer .card-custom .table tr.summary-row th {
  padding: 3px 0 3px 3px;
}
.auto-confirm-offer .card-custom .table tr.summary-row th span {
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  padding-left: 12px;
}
.auto-confirm-offer .card-custom .table tr.summary-row td {
  padding: 3px 3px 3px 0;
}
.auto-confirm-offer .card-custom .table tr.summary-row td span {
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  padding-right: 12px;
}
.auto-confirm-offer .card-custom .table tr.summary-row th, .auto-confirm-offer .card-custom .table tr.summary-row td {
  padding: 0;
}
.auto-confirm-offer .card-custom .table tr.summary-row th span, .auto-confirm-offer .card-custom .table tr.summary-row td span {
  background-color: #f0f4f7 !important;
  font-weight: 700;
  font-size: 1.2rem;
  color: #E25144;
  display: block;
  width: 100%;
  padding-top: 8px;
  padding-bottom: 8px;
}

.payment-success .card .card-footer,
.payment-failed .card .card-footer,
.payment-cancelled .card .card-footer {
  border-radius: 0 17px 17px 0;
}
.payment-success .card .tick,
.payment-failed .card .tick,
.payment-cancelled .card .tick {
  line-height: 120px;
  width: 120px;
  height: 120px;
  border-radius: 10px;
  color: #FFF;
  background-color: #0b2993;
  margin: 40px auto 40px;
  display: block;
  text-align: center;
  font-size: 92px;
}
.payment-success .card .insurance-number,
.payment-failed .card .insurance-number,
.payment-cancelled .card .insurance-number {
  display: block;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 1.5rem;
}
.payment-success .card .title-custom,
.payment-failed .card .title-custom,
.payment-cancelled .card .title-custom {
  font-size: 3rem;
}

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