pre {
  font-size: 12px !important;
  background: #e3e3e3;
  white-space: pre-line;
  border-radius: 5px;
}

/* style filters on the table */


.clear-filters {
  position: relative;
  display: flex;
  align-items: center;
}

.amount-filter {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #007bff;
  color: white;
  border-radius: 50%;
  padding: 2px 5px;
  font-size: 12px;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
}



/* form styles init */



.circle-active {
  height: 10px;
  width: 10px;
  border-radius: 100%;
  display: inline-block;
  margin-left: 10px;
}

.circle-active.active {
  background: #8dcd78;
}
.circle-active.inactive {
  background: #c12819;
}

.section-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
}
.format-form-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.group-form-fieldset {
  border: 1px solid #e5e5e5;
  padding: 15px;
  border-radius: 6px;
}

.group-form-fieldset-header {
  display: flex;
  justify-content: space-between;
}

.align-button-form {
  display: flex;
  justify-content: end;
  margin-top: 24px;
}

.form-subtitle {
  font-size: 18px;
  font-weight: 600;
  color: #475467;
  margin-bottom: 25px;
}

.aling-form-group {
  display: flex;
  gap: 24px;
  flex-direction: column;
}

.TextInput {
  width: 100%;
}
.aling-action-form {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.has-error-select {
  border-color: var(--error-color) !important;
}

.select-container-block .has-error {
  color: var(--error-color);
}

.TextInput.has-error input {
  border-color: var(--error-color);
}

.TextInput.has-error .help-message {
  color: var(--error-color);
}

form .aling-form {
  display: flex;
  gap: 10px;
  width: 100%;
}

form .aling-form-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

/* form styles end */


.label {
  font-size: 16px;
  padding: 6px;
  border-radius: 5px;
  color: #e1e1e1;
}

.label.-grey {
  background-color: #7b7c81;
}

.label.-warn {
  background-color: var(--bs-warning);
  color: var(--bs-black);
}

.label.-info {
  background-color: var(--bs-primary);
  color: var(--bs-white);
}

.label.-danger {
  background-color: var(--bs-danger);
  color: var(--bs-white);
}

.align-right {
  text-align: right;
}

.justify-flex-end {
  justify-content: flex-end;
}

.float-right {
  float: right;
}

.hidden {
  visibility: hidden;
}

.link {
  cursor: pointer;
}

.red {
  color: #d90000;
}

.flex-end {
  align-items: flex-end;
}

.-blue {
  color: #184ABC;
}

.relative{
  position: relative;
}

.absolute {
  position: absolute;
}

.btn.-filled.-red.-sm {
  color: #fff;
  background: #ff3939;
}

.inline-block{
  display: inline-block;
}

.w-100 {
  width: 100%;
}

.block{
  display: block;
}

.form-input.block {
  display: block;
}

.flex-direction-unset {
  flex-direction: unset !important;
}

.form-input input[type="checkbox"] {
  width: unset;
  display: unset;
  margin-right: 10px;
  box-shadow: unset;
}

.password-input button {
  position: absolute;
  right: 12px;
  top: 10px;
}

.-gray {
  color: #475467;
}

.content-center.align-flex-start,
.align-flex-start {
  align-items: flex-start;
}

.form-input input[disabled],
.disabled {
  opacity: 0.6;
  pointer-events: none;
}

.content-center {
  align-items: center;
  justify-content: center;
}

a.reset {
  color: unset;
}

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.custom-select select{
  width: 100%;
  display: block;
  background: #fff;
  border: 1px solid #D0D5DD;
  box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
  border-radius: 8px;
  font-size: 16px;
  line-height: 150%;
  transition: 0.2s;
  padding: 9px 13px;
}

.text-center {
  text-align: center;
}

/* Utils */

/**
 * Heading styles
 */

/**
 * Paragraph styles
 */

/**
 * Breakpoints
 */

/**
 * Bootstrap Grid
 */

/**
 * Colors
 */

/**
 * Shadows
 */

/* Vendor */

/*!
 * Bootstrap Grid v5.2.0 (https://getbootstrap.com/)
 * Copyright 2011-2022 The Bootstrap Authors
 * Copyright 2011-2022 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */

 :root {
  --sp: 768px;
  --theme-color: #44a0ae;
  --dark-color: #333;
  --light-color: #ddd;
    --bs-blue: #184ABC;
    --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-black: #000;
    --bs-white: #fff;
    --bs-gray: #475467;
    --bs-gray-dark: #1D2939;
    --bs-gray-100: #F2F4F7;
    --bs-gray-200: #EAECF0;
    --bs-gray-300: #D0D5DD;
    --bs-gray-400: #98A2B3;
    --bs-gray-500: #667085;
    --bs-gray-600: #475467;
    --bs-gray-700: #344054;
    --bs-gray-800: #1D2939;
    --bs-gray-900: #101828;
    --bs-primary: #184ABC;
    --bs-secondary: #475467;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #F2F4F7;
    --bs-dark: #141414;
    --bs-primary-rgb: 24, 74, 188;
    --bs-secondary-rgb: 71, 84, 103;
    --bs-success-rgb: 25, 135, 84;
    --bs-info-rgb: 13, 202, 240;
    --bs-warning-rgb: 255, 193, 7;
    --bs-danger-rgb: 220, 53, 69;
    --bs-light-rgb: 242, 244, 247;
    --bs-dark-rgb: 20, 20, 20;
    --bs-white-rgb: 255, 255, 255;
    --bs-black-rgb: 0, 0, 0;
    --bs-body-color-rgb: 16, 24, 40;
    --bs-body-bg-rgb: 255, 255, 255;
    --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --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));
    --bs-body-font-family: var(--bs-font-sans-serif);
    --bs-body-font-size: 1rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.5;
    --bs-body-color: #101828;
    --bs-body-bg: #fff;
    --bs-border-width: 1px;
    --bs-border-style: solid;
    --bs-border-color: #D0D5DD;
    --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
    --bs-border-radius: 0.375rem;
    --bs-border-radius-sm: 0.25rem;
    --bs-border-radius-lg: 0.5rem;
    --bs-border-radius-xl: 1rem;
    --bs-border-radius-2xl: 2rem;
    --bs-border-radius-pill: 50rem;
    --bs-link-color: #184ABC;
    --bs-link-hover-color: #133b96;
    --bs-code-color: #d63384;
    --bs-highlight-bg: #fff3cd;
    --error-color: #CE0707;
  }
  
  .container,
  .container-fluid,
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
  }

  .form-field-group-align {
    width: 100%;
  }
  
  .row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
  }
  
  .row > * {
    box-sizing: border-box;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
  }
  
  .col {
    flex: 1 0 0%;
  }
  
  .row-cols-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  
  .row-cols-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  
  .row-cols-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  
  .row-cols-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  
  .row-cols-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  
  .row-cols-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  
  .row-cols-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  
  .col-auto {
    flex: 0 0 auto;
    width: auto;
  }
  
  .col-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  
  .col-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  
  .col-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  
  .col-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  
  .col-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  
  .col-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  
  .col-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  
  .col-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  
  .col-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  
  .col-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  
  .col-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  
  .col-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  
  .offset-1 {
    margin-left: 8.33333333%;
  }
  
  .offset-2 {
    margin-left: 16.66666667%;
  }
  
  .offset-3 {
    margin-left: 25%;
  }
  
  .offset-4 {
    margin-left: 33.33333333%;
  }
  
  .offset-5 {
    margin-left: 41.66666667%;
  }
  
  .offset-6 {
    margin-left: 50%;
  }
  
  .offset-7 {
    margin-left: 58.33333333%;
  }
  
  .offset-8 {
    margin-left: 66.66666667%;
  }
  
  .offset-9 {
    margin-left: 75%;
  }
  
  .offset-10 {
    margin-left: 83.33333333%;
  }
  
  .offset-11 {
    margin-left: 91.66666667%;
  }
  
  .g-0,
  .gx-0 {
    --bs-gutter-x: 0;
  }
  
  .g-0,
  .gy-0 {
    --bs-gutter-y: 0;
  }
  
  .g-1,
  .gx-1 {
    --bs-gutter-x: 0.25rem;
  }
  
  .g-1,
  .gy-1 {
    --bs-gutter-y: 0.25rem;
  }
  
  .g-2,
  .gx-2 {
    --bs-gutter-x: 0.5rem;
  }
  
  .g-2,
  .gy-2 {
    --bs-gutter-y: 0.5rem;
  }
  
  .g-3,
  .gx-3 {
    --bs-gutter-x: 1rem;
  }
  
  .g-3,
  .gy-3 {
    --bs-gutter-y: 1rem;
  }
  
  .g-4,
  .gx-4 {
    --bs-gutter-x: 1.5rem;
  }
  
  .g-4,
  .gy-4 {
    --bs-gutter-y: 1.5rem;
  }
  
  .g-5,
  .gx-5 {
    --bs-gutter-x: 3rem;
  }
  
  .g-5,
  .gy-5 {
    --bs-gutter-y: 3rem;
  }
  
  .d-inline {
    display: inline !important;
  }
  
  .d-inline-block {
    display: inline-block !important;
  }
  
  .d-block {
    display: block !important;
  }
  
  .d-grid {
    display: grid !important;
  }
  
  .d-table {
    display: table !important;
  }
  
  .d-table-row {
    display: table-row !important;
  }
  
  .d-table-cell {
    display: table-cell !important;
  }
  
  .d-flex {
    display: flex !important;
    flex-direction: unset;
  }

  .min-vh-100 {
    min-height:100vh !important
  }
  
  .d-inline-flex {
    display: inline-flex !important;
  }
  
  .d-none {
    display: none !important;
  }
  
  .flex-fill {
    flex: 1 1 auto !important;
  }
  
  .flex-row {
    flex-direction: row !important;
  }
  
  .flex-column {
    flex-direction: column !important;
  }
  
  .flex-row-reverse {
    flex-direction: row-reverse !important;
  }
  
  .flex-column-reverse {
    flex-direction: column-reverse !important;
  }
  
  .flex-grow-0 {
    flex-grow: 0 !important;
  }
  
  .flex-grow-1 {
    flex-grow: 1 !important;
  }
  
  .flex-shrink-0 {
    flex-shrink: 0 !important;
  }
  
  .flex-shrink-1 {
    flex-shrink: 1 !important;
  }
  
  .flex-wrap {
    flex-wrap: wrap !important;
  }
  
  .flex-nowrap {
    flex-wrap: nowrap !important;
  }
  
  .flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  
  .justify-content-start {
    justify-content: flex-start !important;
  }
  
  .justify-content-end {
    justify-content: flex-end !important;
  }
  
  .justify-content-center {
    justify-content: center !important;
  }
  
  .justify-content-between {
    justify-content: space-between !important;
  }
  
  .justify-content-around {
    justify-content: space-around !important;
  }
  
  .justify-content-evenly {
    justify-content: space-evenly !important;
  }
  
  .align-items-start {
    align-items: flex-start !important;
  }
  
  .align-items-end {
    align-items: flex-end !important;
  }
  
  .align-items-center {
    align-items: center !important;
  }
  
  .align-items-baseline {
    align-items: baseline !important;
  }
  
  .align-items-stretch {
    align-items: stretch !important;
  }
  
  .align-content-start {
    align-content: flex-start !important;
  }
  
  .align-content-end {
    align-content: flex-end !important;
  }
  
  .align-content-center {
    align-content: center !important;
  }
  
  .align-content-between {
    align-content: space-between !important;
  }
  
  .align-content-around {
    align-content: space-around !important;
  }
  
  .align-content-stretch {
    align-content: stretch !important;
  }
  
  .align-self-auto {
    align-self: auto !important;
  }
  
  .align-self-start {
    align-self: flex-start !important;
  }
  
  .align-self-end {
    align-self: flex-end !important;
  }
  
  .align-self-center {
    align-self: center !important;
  }
  
  .align-self-baseline {
    align-self: baseline !important;
  }
  
  .align-self-stretch {
    align-self: stretch !important;
  }
  
  .order-first {
    order: -1 !important;
  }
  
  .order-0 {
    order: 0 !important;
  }
  
  .order-1 {
    order: 1 !important;
  }
  
  .order-2 {
    order: 2 !important;
  }
  
  .order-3 {
    order: 3 !important;
  }
  
  .order-4 {
    order: 4 !important;
  }
  
  .order-5 {
    order: 5 !important;
  }
  
  .order-last {
    order: 6 !important;
  }
  
  .m-0 {
    margin: 0 !important;
  }
  
  .m-1 {
    margin: 0.25rem !important;
  }
  
  .m-2 {
    margin: 0.5rem !important;
  }
  
  .m-3 {
    margin: 1rem !important;
  }
  
  .m-4 {
    margin: 1.5rem !important;
  }
  
  .m-5 {
    margin: 3rem !important;
  }
  
  .m-auto {
    margin: auto !important;
  }
  
  .mx-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  
  .mx-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  
  .mx-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  
  .mx-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  
  .mx-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  
  .mx-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  
  .mx-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  
  .my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  
  .my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  
  .my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  
  .my-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  
  .my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  .my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  
  .my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  
  .mt-0 {
    margin-top: 0 !important;
  }
  
  .mt-1 {
    margin-top: 0.25rem !important;
  }
  
  .mt-2 {
    margin-top: 0.5rem !important;
  }
  
  .mt-3 {
    margin-top: 1rem !important;
  }
  
  .mt-4 {
    margin-top: 1.5rem !important;
  }
  
  .mt-5 {
    margin-top: 3rem !important;
  }
  
  .mt-auto {
    margin-top: auto !important;
  }
  
  .me-0 {
    margin-right: 0 !important;
  }
  
  .me-1 {
    margin-right: 0.25rem !important;
  }
  
  .me-2 {
    margin-right: 0.5rem !important;
  }
  
  .me-3 {
    margin-right: 1rem !important;
  }
  
  .me-4 {
    margin-right: 1.5rem !important;
  }
  
  .me-5 {
    margin-right: 3rem !important;
  }
  
  .me-auto {
    margin-right: auto !important;
  }
  
  .mb-0 {
    margin-bottom: 0 !important;
  }
  
  .mb-1 {
    margin-bottom: 0.25rem !important;
  }
  
  .mb-2 {
    margin-bottom: 0.5rem !important;
  }
  
  .mb-3 {
    margin-bottom: 1rem !important;
  }
  
  .mb-4 {
    margin-bottom: 1.5rem !important;
  }
  
  .mb-5 {
    margin-bottom: 3rem !important;
  }
  
  .mb-auto {
    margin-bottom: auto !important;
  }
  
  .ms-0 {
    margin-left: 0 !important;
  }
  
  .ms-1 {
    margin-left: 0.25rem !important;
  }
  
  .ms-2 {
    margin-left: 0.5rem !important;
  }
  
  .ms-3 {
    margin-left: 1rem !important;
  }
  
  .ms-4 {
    margin-left: 1.5rem !important;
  }
  
  .ms-5 {
    margin-left: 3rem !important;
  }
  
  .ms-auto {
    margin-left: auto !important;
  }
  
  .p-0 {
    padding: 0 !important;
  }
  
  .p-1 {
    padding: 0.25rem !important;
  }
  
  .p-2 {
    padding: 0.5rem !important;
  }
  
  .p-3 {
    padding: 1rem !important;
  }
  
  .p-4 {
    padding: 1.5rem !important;
  }
  
  .p-5 {
    padding: 3rem !important;
  }
  
  .px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  
  .px-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  
  .px-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  
  .px-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  
  .px-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  
  .px-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  
  .py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  
  .py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  
  .py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  
  .py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  
  .py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  
  .py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  
  .pt-0 {
    padding-top: 0 !important;
  }
  
  .pt-1 {
    padding-top: 0.25rem !important;
  }
  
  .pt-2 {
    padding-top: 0.5rem !important;
  }
  
  .pt-3 {
    padding-top: 1rem !important;
  }
  
  .pt-4 {
    padding-top: 1.5rem !important;
  }
  
  .pt-5 {
    padding-top: 3rem !important;
  }
  
  .pe-0 {
    padding-right: 0 !important;
  }
  
  .pe-1 {
    padding-right: 0.25rem !important;
  }
  
  .pe-2 {
    padding-right: 0.5rem !important;
  }
  
  .pe-3 {
    padding-right: 1rem !important;
  }
  
  .pe-4 {
    padding-right: 1.5rem !important;
  }
  
  .pe-5 {
    padding-right: 3rem !important;
  }
  
  .pb-0 {
    padding-bottom: 0 !important;
  }
  
  .pb-1 {
    padding-bottom: 0.25rem !important;
  }
  
  .pb-2 {
    padding-bottom: 0.5rem !important;
  }
  
  .pb-3 {
    padding-bottom: 1rem !important;
  }
  
  .pb-4 {
    padding-bottom: 1.5rem !important;
  }
  
  .pb-5 {
    padding-bottom: 3rem !important;
  }
  
  .ps-0 {
    padding-left: 0 !important;
  }
  
  .ps-1 {
    padding-left: 0.25rem !important;
  }
  
  .ps-2 {
    padding-left: 0.5rem !important;
  }
  
  .ps-3 {
    padding-left: 1rem !important;
  }
  
  .ps-4 {
    padding-left: 1.5rem !important;
  }
  
  .ps-5 {
    padding-left: 3rem !important;
  }
  
  [data-simplebar] {
    position: relative;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
  }
  
  .simplebar-wrapper {
    overflow: hidden;
    width: inherit;
    height: inherit;
    max-width: inherit;
    max-height: inherit;
  }
  
  .simplebar-mask {
    direction: inherit;
    position: absolute;
    overflow: hidden;
    padding: 0;
    margin: 0;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: auto !important;
    height: auto !important;
    z-index: 0;
  }
  
  .simplebar-offset {
    direction: inherit !important;
    box-sizing: inherit !important;
    resize: none !important;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 0;
    margin: 0;
    -webkit-overflow-scrolling: touch;
  }
  
  .simplebar-content-wrapper {
    direction: inherit;
    box-sizing: border-box !important;
    position: relative;
    display: block;
    height: 100%;
    /* Required for horizontal native scrollbar to not appear if parent is taller than natural height */
    width: auto;
    max-width: 100%;
    /* Not required for horizontal scroll to trigger */
    max-height: 100%;
    /* Needed for vertical scroll to trigger */
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .simplebar-content-wrapper::-webkit-scrollbar,
  .simplebar-hide-scrollbar::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
  
  .simplebar-content:before,
  .simplebar-content:after {
    content: " ";
    display: table;
  }
  
  .simplebar-placeholder {
    max-height: 100%;
    max-width: 100%;
    width: 100%;
    pointer-events: none;
  }
  
  .simplebar-height-auto-observer-wrapper {
    box-sizing: inherit !important;
    height: 100%;
    width: 100%;
    max-width: 1px;
    position: relative;
    float: left;
    max-height: 1px;
    overflow: hidden;
    z-index: -1;
    padding: 0;
    margin: 0;
    pointer-events: none;
    flex-grow: inherit;
    flex-shrink: 0;
    flex-basis: 0;
  }
  
  .simplebar-height-auto-observer {
    box-sizing: inherit;
    display: block;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 1000%;
    width: 1000%;
    min-height: 1px;
    min-width: 1px;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
  }
  
  .simplebar-track {
    z-index: 1;
    position: absolute;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
  }
  
  [data-simplebar].simplebar-dragging .simplebar-content {
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
  }
  
  [data-simplebar].simplebar-dragging .simplebar-track {
    pointer-events: all;
  }
  
  .simplebar-scrollbar {
    position: absolute;
    left: 0;
    right: 0;
    min-height: 10px;
  }
  
  .simplebar-scrollbar:before {
    position: absolute;
    content: "";
    background: black;
    border-radius: 7px;
    left: 2px;
    right: 2px;
    opacity: 0;
    transition: opacity 0.2s linear;
  }
  
  .simplebar-scrollbar.simplebar-visible:before {
    /* When hovered, remove all transitions from drag handle */
    opacity: 0.5;
    transition: opacity 0s linear;
  }
  
  .simplebar-track.simplebar-vertical {
    top: 0;
    width: 11px;
  }
  
  .simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
    top: 2px;
    bottom: 2px;
  }
  
  .simplebar-track.simplebar-horizontal {
    left: 0;
    height: 11px;
  }
  
  .simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
    height: 100%;
    left: 2px;
    right: 2px;
  }
  
  .simplebar-track.simplebar-horizontal .simplebar-scrollbar {
    right: auto;
    left: 0;
    top: 2px;
    height: 7px;
    min-height: 0;
    min-width: 10px;
    width: auto;
  }
  
  /* Rtl support */
  
  [data-simplebar-direction=rtl] .simplebar-track.simplebar-vertical {
    right: auto;
    left: 0;
  }
  
  .hs-dummy-scrollbar-size {
    direction: rtl;
    position: fixed;
    opacity: 0;
    visibility: hidden;
    height: 500px;
    width: 500px;
    overflow-y: hidden;
    overflow-x: scroll;
  }
  
  .simplebar-hide-scrollbar {
    position: fixed;
    left: 0;
    visibility: hidden;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  /* Base */
  
  *,
  ::after,
  ::before {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
  }
  
  *:focus {
    outline: none;
  }
  
  html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    min-height: 100%;
  }
  
  article,
  aside,
  figcaption,
  figure,
  footer,
  header,
  hgroup,
  main,
  nav,
  section {
    display: block;
  }
  
  body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    text-align: left;
    background-color: #fff;
  }
  
  [tabindex="-1"]:focus:not(:focus-visible) {
    outline: 0 !important;
  }
  
  hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 0;
  }
  
  p {
    margin: 0;
  }
  
  abbr[data-original-title],
  abbr[title] {
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    cursor: help;
    border-bottom: 0;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
  }
  
  address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit;
  }
  
  dl,
  ol,
  ul {
    margin-top: 0;
    margin-bottom: 0;
  }
  
  ol ol,
  ol ul,
  ul ol,
  ul ul {
    margin-bottom: 0;
  }
  
  dt {
    font-weight: 700;
  }
  
  dd {
    margin-bottom: 0.5rem;
    margin-left: 0;
  }
  
  blockquote {
    margin: 0;
  }
  
  b,
  strong {
    font-weight: 700;
  }
  
  small {
    font-size: 80%;
  }
  
  sub,
  sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
  }
  
  sub {
    bottom: -0.25em;
  }
  
  sup {
    top: -0.5em;
  }
  
  a {
    color: #007bff;
    text-decoration: none;
    background-color: transparent;
  }
  
  a:not([href]) {
    color: inherit;
    text-decoration: none;
  }
  
  a:not([href]):hover {
    color: inherit;
    text-decoration: none;
  }
  
  code,
  kbd,
  pre,
  samp {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 1em;
  }
  
  pre {
    margin-top: 0;
    overflow: auto;
  }
  
  figure {
    margin: 0;
  }
  
  img {
    border-style: none;
  }
  
  svg {
    overflow: hidden;
  }
  
  table {
    border-collapse: collapse;
  }
  
  caption {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    color: #6c757d;
    text-align: left;
    caption-side: bottom;
  }
  
  th {
    text-align: inherit;
  }
  
  label {
    display: inline-block;
    margin: 0;
  }
  
  button {
    border-radius: 0;
  }
  
  button:focus {
    outline: none;
  }
  
  button,
  input,
  optgroup,
  select,
  textarea {
    border-radius: 0;
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
  }
  
  button,
  input {
    overflow: visible;
  }
  
  button,
  select {
    text-transform: none;
  }
  
  select {
    word-wrap: normal;
  }
  
  [type=button],
  [type=reset],
  [type=submit],
  button {
    -webkit-appearance: button;
  }
  
  [type=button]:not(:disabled),
  [type=reset]:not(:disabled),
  [type=submit]:not(:disabled),
  button:not(:disabled) {
    cursor: pointer;
  }
  
  [type=button]::-moz-focus-inner,
  [type=reset]::-moz-focus-inner,
  [type=submit]::-moz-focus-inner,
  button::-moz-focus-inner {
    padding: 0;
    border-style: none;
  }
  
  input[type=checkbox],
  input[type=radio] {
    box-sizing: border-box;
    padding: 0;
  }
  
  input[type=date],
  input[type=datetime-local],
  input[type=month],
  input[type=time] {
    -webkit-appearance: listbox;
  }
  
  textarea {
    overflow: auto;
    resize: vertical;
  }
  
  fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
  }
  
  legend {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    font-size: 1.5rem;
    line-height: inherit;
    color: inherit;
    white-space: normal;
  }
  
  progress {
    vertical-align: baseline;
  }
  
  [type=number]::-webkit-inner-spin-button,
  [type=number]::-webkit-outer-spin-button {
    height: auto;
  }
  
  [type=search] {
    outline-offset: -2px;
    -webkit-appearance: none;
  }
  
  [type=search]::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  
  ::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button;
  }
  
  output {
    display: inline-block;
  }
  
  summary {
    display: list-item;
    cursor: pointer;
  }
  
  template {
    display: none;
  }
  
  [hidden] {
    display: none !important;
  }
  
  ul,
  ol {
    list-style: none;
  }
  
  ol,
  ul,
  li {
    margin: 0;
    padding: 0;
  }
  
  a {
    transition: all ease 0.2s;
  }
  
  a:hover {
    text-decoration: none;
  }
  
  input,
  button,
  textarea {
    border: 0;
    margin: 0;
    padding: 0;
    background: transparent;
  }
  
  /* input,
  textarea {
    appearance: none;
  }
   */
  input:focus,
  textarea:focus {
    outline: none;
  }
  
  button:focus {
    outline: none;
  }
  
  html,
  body {
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
  }
  
  body {
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Inter";
    background: #F8F8FA;
    display: flex;
    flex-direction: column;
  }
  
  ::placeholder {
    color: #667085;
  }
  
  h1 {
    color: #101828;
    font-weight: 600;
    font-size: 56px;
    line-height: 128%;
    letter-spacing: -0.02em;
  }
  
  h2 {
    color: #101828;
    font-weight: 600;
    font-size: 30px;
    line-height: 127%;
  }
  
  h3 {
    color: #101828;
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
  }
  
  h4 {
    color: #101828;
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
  }
  
  h5 {
    color: #101828;
    font-weight: 600;
    font-size: 18px;
    line-height: 156%;
  }
  
  p {
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 30px;
  }
  
  p:last-child {
    margin-bottom: 0;
  }
  
  p a {
    font-weight: 500;
    color: #184ABC;
    text-decoration: underline;
  }
  
  p a:hover {
    text-decoration: none;
  }
  
  section {
    padding: 40px 0 80px;
  }
  
  /* Components */
  
  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
  }
  
  .hamburger.is-active .hamburger-inner,
  .hamburger.is-active .hamburger-inner::before,
  .hamburger.is-active .hamburger-inner::after {
    background-color: #fff;
  }
  
  .hamburger-box {
    width: 32px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  .hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -1px;
  }
  
  .hamburger-inner,
  .hamburger-inner::before,
  .hamburger-inner::after {
    width: 32px;
    height: 2px;
    background-color: #fff;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
  }
  
  .hamburger-inner::before,
  .hamburger-inner::after {
    content: "";
    display: block;
  }
  
  .hamburger-inner::before {
    top: -7px;
  }
  
  .hamburger-inner::after {
    bottom: -7px;
  }
  
  /*
   * Spin
   */
  
  .hamburger--spin .hamburger-inner {
    transition-duration: 0.22s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  
  .hamburger--spin .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
  }
  
  .hamburger--spin .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  
  .hamburger--spin.is-active .hamburger-inner {
    transform: rotate(225deg);
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  
  .hamburger--spin.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
  }
  
  .hamburger--spin.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  
  .btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    transition: 0.2s;
    cursor: pointer;
    gap: 8px;
  }
  
  .btn.-sm {
    font-size: 14px;
    line-height: 143%;
  }
  
  .btn.-md {
    font-size: 14px;
    line-height: 143%;
  }
  
  .btn.-xl {
    font-size: 16px;
    line-height: 150%;
  }
  
  .btn.-filled,
  .btn.-bordered {
    border-radius: 8px;
  }
  
  .btn.-filled.-sm,
  .btn.-bordered.-sm {
    padding: 8px 14px;
  }
  
  .btn.-filled.-md,
  .btn.-bordered.-md {
    padding: 10px 16px;
  }
  
  .btn.-filled.-xl,
  .btn.-bordered.-xl {
    padding: 12px 20px;
  }
  
  .btn.-filled.-blue {
    background: #184ABC;
    color: #fff;
  }
  
  .btn.-filled.-blue:hover {
    background: #194185;
  }
  
  .btn.-filled.-orange {
    background: #DC6803;
    color: #fff;
  }
  
  .btn.-filled.-orange:hover {
    background: #B54708;
  }

  .btn.-filled.red {
    background: #d90000;
    color: #fff;
  }
  
  .btn.-filled.red:hover {
    background: #ac1616;
  }
  
  .btn.-filled.-black {
    background: #000;
    color: #fff;
  }
  
  .btn.-filled.-black:hover {
    background: #fff;
    color: #000;
    box-shadow: inset 0 0 0 1px #000;
  }
  
  .btn.-bordered.-gray {
    background: #fff;
    border: 1px solid #D0D5DD;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
  }

  .btn.-bordered.-black {
    background: #1e1e1e;
    color: #f4f4f4;
    border: 1px solid #1e1e1e;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
  }

  .btn.-bordered.-black:hover {
    background: #404040;
    color: #f4f4f4;
  }
  
  .btn.-bordered.-gray:hover {
    background: #F9FAFB;
  }
  
  .btn:not(.-filled, .-bordered).-blue {
    color: #184ABC;
  }
  
  .btn:not(.-filled, .-bordered).-blue:hover {
    color: #194185;
  }

  .btn:not(.-filled, .-bordered).red {
    color: #d90000;
  }
  
  .btn:not(.-filled, .-bordered).red:hover {
    color: #ac1616;
  }
  
  .btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
  }
  
  .stat-card {
    padding: 24px;
    display: flex;
    flex-wrap: wrap;
    /* align-items: center; */
    justify-content: space-between;
  }
  
  .stat-card-title {
    font-size: 14px;
    line-height: 143%;
    color: #475467;
    width: 100%;
    margin-bottom: 8px;
  }
  
  .stat-card-number {
    color: #101828;
    font-weight: 600;
    font-size: 30px;
    line-height: 127%;
    color: #475467;
  }
  
  .badge {
    border-radius: 16px;
    display: flex;
    align-items: center;
    padding: 2px 8px;
    font-weight: 500;
  }
  
  .badge.-sm {
    font-size: 12px;
    line-height: 150%;
  }
  
  .badge.-md {
    font-size: 14px;
    line-height: 143%;
  }
  
  .badge.-up,
  .badge.-down {
    padding-left: 6px;
  }
  
  .badge.-up svg,
  .badge.-down svg {
    width: 12px;
    height: 12px;
    fill: #000;
    margin-right: 4px;
  }
  
  .badge.-up {
    background: #ECFDF3;
    color: #027A48;
  }
  
  .badge.-down {
    background: #FEF3F2;
    color: #B42318;
  }
  
  .badge.-down svg {
    transform: rotate(-180deg);
  }
  
  .badge.-blue {
    background: rgba(24, 74, 188, 0.1);
    color: #184ABC;
  }
  
  .badge.-active:before,
  .badge.-inactive:before {
    display: block;
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #B9B20B;
    margin-left: 1px;
    margin-right: 5px;
  }
  
  .badge.-active {
    background: #ECFDF3;
    color: #027A48;
  }
  
  .badge.-inactive {
    background: #F2F4F7;
    color: #344054;
  }
  
  .form-input {
    display: flex;
    flex-direction: column;
  }
  
  .form-input.has-error .error {
    display: block;
  }
  
  .form-input.has-error input,
  .form-input.has-error textarea {
    border-color: #dc3545;
  }
  
  .form-input label {
    font-size: 14px;
    line-height: 143%;
    align-self: start;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
  }
  
  .form-input label .tooltip {
    margin-left: 6px;
  }
  
  .form-input input,
  .form-input textarea {
    width: 100%;
    display: block;
    background: #fff;
    border: 1px solid #D0D5DD;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 8px;
    font-size: 16px;
    line-height: 150%;
    transition: 0.2s;
    padding: 9px 13px;
  }
  
  .form-input textarea {
    border-radius: 8px;
    height: 134px;
    resize: none;
  }
  
  .form-input .error {
    display: none;
    text-align: right;
    margin-top: 6px;
    margin-bottom: 0;
    font-size: 12px;
    line-height: 150%;
    color: #F04438;
  }
  
  .form-input .custom-select {
    position: relative;
    width: 100%;
    color: #101828;
  }
  
  .form-input .custom-select.-sm {
    font-size: 14px;
    line-height: 143%;
  }
  
  .form-input .custom-select.-sm .custom-select-trigger svg {
    width: 20px;
    height: 20px;
  }
  
  .form-input .custom-select.-md {
    font-size: 16px;
    line-height: 150%;
  }
  
  .form-input .custom-select.-md .custom-select-trigger svg {
    width: 24px;
    height: 24px;
  }
  
  .form-input .custom-select select {
    display: none;
  }
  
  .form-input .custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: 0.2s;
    background: #fff;
    border: 1px solid #D0D5DD;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 8px;
    padding: 9px 13px;
  }
  
  .form-input .custom-select-trigger.active svg {
    transform: rotate(-180deg);
  }
  
  .form-input .custom-select-trigger svg {
    fill: currentColor;
    margin-left: 8px;
    transition: 0.2s;
  }
  
  .form-input .custom-select-dropdown {
    position: absolute;
    transition: 0.2s ease-in-out;
    transform: translateY(105%);
    left: 0;
    z-index: 100;
    bottom: -4px;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    border: 1px solid #EAECF0;
    box-shadow: 0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 4px 6px -2px rgba(16, 24, 40, 0.03);
    border-radius: 8px;
    padding: 6px;
    pointer-events: none;
  }
  
  .form-input .custom-select-dropdown.active {
    pointer-events: inherit;
    transform: translateY(100%);
    opacity: 1;
    visibility: visible;
  }
  
  .form-input .custom-select-dropdown ul {
    max-height: 188px;
    overflow: auto;
  }
  
  .form-input .custom-select-dropdown ul li {
    cursor: pointer;
    transition: 0.2s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 10px 38px 10px 8px;
    border-radius: 6px;
    font-weight: 500;
    color: #101828;
    position: relative;
  }
  
  .form-input .custom-select-dropdown ul li:hover {
    background: #F9FAFB;
  }
  
  .form-input .custom-select-dropdown ul li:not(:last-child) {
    margin-bottom: 4px;
  }
  
  .form-input .custom-select-dropdown ul li.selected {
    background: #F9FAFB;
  }
  
  .form-input .custom-select-dropdown ul li.selected:after {
    display: block;
    content: "";
    width: 16px;
    height: 16px;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    right: 10px;
    background: url(../img/icons/check.svg) no-repeat center center/100% 100%;
  }
  
  .form-input .phone-select-input {
    display: flex;
    position: relative;
    background: #fff;
    border: 1px solid #D0D5DD;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 8px;
  }
  
  .form-input .phone-select-input input,
  .form-input .phone-select-input .custom-select-trigger {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    border: 0;
  }
  
  .form-input .phone-select-input .custom-select {
    width: 60px;
    min-width: 60px;
    position: static;
  }
  
  .form-input .phone-select-input .custom-select-trigger {
    padding-right: 0;
  }
  
  .form-input .phone-select-input .custom-select-trigger svg {
    width: 20px;
    height: 20px;
    fill: #667085;
  }
  
  .form-input .phone-select-input .custom-select-dropdown ul li span {
    color: #98A2B3;
  }
  
  /* .checkbox {
    position: relative;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    line-height: 150%;
    color: #344054;
  }
  
  .checkbox:hover div {
    border-color: #184ABC;
    background: rgba(24, 74, 188, 0.1);
  } */
  
  /* .checkbox input {
    display: none;
  } */
  
  /* .checkbox input:checked + div {
    border-color: #184ABC;
    background: rgba(24, 74, 188, 0.1) url(../img/icons/check.svg) no-repeat center/70%;
  }
  
  .checkbox div {
    background: #fff;
    border: 1px solid #D0D5DD;
    border-radius: 6px;
    width: 20px;
    height: 20px;
    min-width: 20px;
    transition: border-color 0.2s, background-color 0.2s;
  } */
  
  .tooltip {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .tooltip svg {
    width: 16px;
    height: 16px;
    fill: #98A2B3;
    transition: 0.2s;
    cursor: pointer;
  }
  
  .tooltip svg:hover {
    fill: #667085;
  }
  
  .tooltip svg:hover + .tooltip-info {
    opacity: 1;
    visibility: visible;
  }
  
  .tooltip-info {
    position: absolute;
    transform: translate(-50%, -100%);
    left: 50%;
    top: -10px;
    background: #fff;
    border: 1px solid #F2F4F7;
    box-shadow: 0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 4px 6px -2px rgba(16, 24, 40, 0.03);
    border-radius: 8px;
    text-align: center;
    width: 140px;
    padding: 7px 11px;
    pointer-events: none;
    transition: 0.2s;
    opacity: 0;
    visibility: hidden;
    z-index: 50;
    font-size: 12px;
    line-height: 150%;
    color: #344054;
    font-weight: 600;
  }
  
  /* Layout */
  
  .header {
    position: sticky;
    top: 0;
    left: 0;
    background: #141414;
    z-index: 900;
  }
  
  .header.-single {
    padding: 23px 0;
  }
  
  .header-inner {
    padding: 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .header-logo {
    position: relative;
    z-index: 950;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .header-nav.active {
    visibility: visible;
    transform: translateX(0);
  }
  
  .header-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .header-nav ul {
    display: flex;
    align-items: center;
  }
  
  .header-nav ul li {
    display: flex;
    align-items: center;
    transition: 0.2s;
    color: #F2F4F7;
  }
  
  .header-nav ul li:hover {
    color: #98A2B3;
  }
  
  .header-nav ul li:not(:last-child) {
    margin-right: 28px;
  }
  
  .header-nav ul li a {
    font-size: 18px;
    line-height: 156%;
    font-size: 17px;
    letter-spacing: -0.02em;
    font-weight: 500;
    color: currentColor;
    transition: 0s;
  }
  
  .header-actions {
    display: flex;
    align-items: center;
  }
  
  .header-btn {
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    color: #fff;
  }
  
  .header-btn:not(:last-child) {
    margin-right: 16px;
  }
  
  .header-btn:hover {
    color: #98A2B3;
  }
  
  .header-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
  }
  
  .header .hamburger {
    position: relative;
    z-index: 950;
  }
  
  .sub-header {
    background: #141414;
  }
  
  .sub-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-top: 1px solid;
    border-image: linear-gradient(270deg, #B7CE27 0%, #AD27CE 33.86%, #184ABC 69.21%, #27CEA6 100%) 1;
  }
  
  .sub-header-menu {
    display: flex;
    align-items: center;
  }
  
  .sub-header-menu li {
    display: flex;
    align-items: center;
  }
  
  .sub-header-menu li:not(:last-child) {
    margin-right: 20px;
  }
  
  .sub-header-menu li a {
    font-size: 16px;
    line-height: 150%;
    font-weight: 500;
    color: #fff;
    margin: 0;
  }
  
  .sub-header-menu li a:hover {
    color: #98A2B3;
  }
  
  .sub-header-search {
    position: relative;
    display: flex;
    align-items: center;
    padding: 10px 14px;
    opacity: 0.5;
    transition: 0.2s;
  }
  
  .sub-header-search:before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, #B7CE27 0%, #AD27CE 33.86%, #184ABC 69.21%, #27CEA6 100%);
    border-radius: 8px;
  }
  
  .sub-header-search:after {
    display: block;
    content: "";
    position: absolute;
    top: 1px;
    left: 1px;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    background: #1E1E1E;
    border-radius: 8px;
  }
  
  .sub-header-search.-focus {
    opacity: 1;
  }
  
  .sub-header-search svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
    fill: #fff;
    margin-right: 8px;
    position: relative;
    z-index: 10;
  }
  
  .sub-header-search input {
    font-size: 16px;
    line-height: 150%;
    color: #fff;
    width: 264px;
    position: relative;
    z-index: 10;
  }
  
  .sub-header-search input::placeholder {
    color: #fff;
  }
  
  .footer {
    background: #141414;
    padding: 22px 0px 32px;
    margin-top: auto;
  }
  
  .footer-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .footer-contacts {
    display: flex;
    align-items: center;
  }
  
  .footer-contacts li {
    display: flex;
    align-items: center;
  }
  
  .footer-contacts li:not(:last-child) {
    margin-right: 28px;
  }
  
  .footer-contacts li a {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 15px;
    line-height: 100%;
    letter-spacing: -0.02em;
    color: #fff;
  }
  
  .footer-contacts li a:hover {
    color: #98A2B3;
  }
  
  .footer-contacts li a svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    margin-right: 6px;
  }
  
  .footer-bottom {
    margin-top: 70px;
    display: flex;
    align-items: center;
  }
  
  .footer-bottom > p,
  .footer-bottom a {
    margin: 0;
    font-weight: 500;
    font-size: 15px;
    line-height: 100%;
    letter-spacing: -0.02em;
    color: #9E9E9E;
  }
  
  .footer-bottom > p a,
  .footer-bottom a a {
    background: linear-gradient(90deg, #B1777E, #B7CC29);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }
  
  .footer-bottom span {
    width: 3px;
    height: 3px;
    margin: 0px 28px;
    background: #696969;
  }
  
  .footer-bottom > a {
    text-decoration: underline;
  }
  
  .footer-bottom > a:hover {
    color: #fff;
    text-decoration: none;
  }
  
  .popup {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    display: flex;
    transition: 0.4s;
    background: rgba(52, 64, 84, 0.7);
    backdrop-filter: blur(16px);
    padding: 30px 15px;
  }
  
  .popup.active {
    opacity: 1;
    visibility: visible;
  }
  
  .popup-inner {
    overflow: hidden;
    background: #fff;
    width: 100%;
    position: relative;
    margin: auto;
    max-width: 850px;
  }
  
  .popup-datepicker #datepicker {
    display: none;
  }
  
  .popup-datepicker .popup-inner {
    border: 1px solid #F2F4F7;
    box-shadow: 0px 20px 24px -4px rgba(16, 24, 40, 0.08), 0px 8px 8px -4px rgba(16, 24, 40, 0.03);
    border-radius: 8px;
  }
  
  .popup-datepicker-bottom {
    position: relative;
    margin-top: -76px;
    margin-left: auto;
    width: calc(100% - 192px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #EAECF0;
    padding: 16px;
  }
  
  .popup-datepicker-inputs {
    display: flex;
    align-items: center;
  }
  
  .popup-datepicker-inputs .form-input {
    max-width: 136px;
  }
  
  .popup-datepicker-inputs span {
    font-size: 16px;
    line-height: 150%;
    color: #667085;
    margin: 0px 12px;
  }
  
  .popup-datepicker-actions {
    display: flex;
    align-items: center;
  }
  
  .popup-datepicker-actions .btn:not(:last-child) {
    margin-right: 12px;
  }
  
  /* Pages */
  
  /**
   * Hero
   */
  
  .hero {
    background: #141414;
    color: #fff;
    text-align: center;
    height: calc(100vh - 280px);
  }
  
  .hero h1 {
    color: #fff;
    letter-spacing: -0.02em;
  }
  
  .hero p {
    font-size: 18px;
    line-height: 156%;
    max-width: 600px;
    color: #D0D0D0;
    margin: 0 auto;
  }
  
  /**
   * Portal Options
   */
  
  .portal-options {
    overflow: hidden;
    background: linear-gradient(#141414 70px, rgba(0, 0, 0, 0) 0);
  }
  
  .portal-options-items {
    gap: 28px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(40%, 1fr));
  }
  
  .portal-options-card {
    padding: 24px;
    height: 100%;
  }
  
  .portal-options-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
  }
  
  .portal-options-card-top h3 {
    margin-right: auto;
  }
  
  .portal-options-card-top .btn {
    min-width: 132px;
    margin-left: 15px;
  }
  
  .portal-options-card-ico {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #F2F4F7;
    padding: 9px;
    margin-right: 14px;
  }
  
  .portal-options-card-ico svg {
    width: 24px;
    height: 24px;
    fill: #101828;
  }
  
  .portal-options-card p {
    font-size: 16px;
    line-height: 150%;
    color: #475467;
  }
  
  /**
   * Services
   */
  
  .services p {
    max-width: 50%;
    margin: 10px 0px 42px;
    font-size: 18px;
    line-height: 156%;
    color: #475467;
  }
  
  .services .row {
    --bs-gutter-y: 20px;
  }
  
  .services-block {
    background: #fff;
    border-radius: 12px;
    padding: 24px 32px 36px;
  }
  
  .services-block-top {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #EFF1F3;
    display: flex;
    align-items: flex-start;
  }
  
  .services-block-top img {
    width: 24px;
    min-width: 24px;
  }
  
  .services-block h3 {
    color: #1E1E1E;
    margin-left: 16px;
    letter-spacing: -0.02em;
  }
  
  .services-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 36px;
  }
  
  .services-list li {
    display: flex;
  }
  
  .services-list li a {
    font-weight: 500;
    font-size: 17px;
    line-height: 100%;
    letter-spacing: -0.02em;
    text-decoration-line: underline;
    color: #475467;
  }
  
  .services-list li a:hover {
    color: #184ABC;
  }
  
  .customer-portal {
    overflow: hidden;
  }
  
  .customer-portal-date {
    display: flex;
    align-items: center;
    margin-top: 26px;
    padding: 9px 16px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #D0D5DD;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    font-size: 14px;
    line-height: 143%;
    font-weight: 500;
    color: #344054;
    cursor: pointer;
    transition: 0.2s;
  }
  
  .customer-portal-date:hover {
    background: #F9FAFB;
  }
  
  .customer-portal-date svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    margin-right: 8px;
  }
  
  .customer-portal-main {
    margin-top: 32px;
  }
  
  .customer-portal-main .row {
    --bs-gutter-y: 24px;
    --bs-gutter-x: 24px;
  }
  
  .customer-portal .channels-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 20px 24px 33px;
    flex-wrap: wrap;
  }
  
  .customer-portal .channels-top .badge {
    margin-left: 8px;
  }
  
  .customer-portal .channels-actions {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 12px 16px;
    border-top: 1px solid #EAECF0;
  }
  
  .customer-portal .channels-status-filter {
    display: flex;
    border: 1px solid #D0D5DD;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 8px;
    overflow: hidden;
  }
  
  .customer-portal .channels-status-filter li {
    font-size: 14px;
    line-height: 143%;
    font-weight: 600;
    color: #1D2939;
    padding: 10px 14px;
    cursor: pointer;
    transition: 0.2s;
    text-align: center;
  }
  
  .customer-portal .channels-status-filter li:not(:last-child) {
    border-right: 1px solid #D0D5DD;
  }
  
  .customer-portal .channels-status-filter li:hover {
    background: #D0D5DD;
  }
  
  .customer-portal .channels-status-filter li.active {
    background: #F9FAFB;
    cursor: inherit;
    pointer-events: none;
  }
  
  .customer-portal .channels-status-filter li.active:hover {
    background: #F9FAFB;
  }
  
  .customer-portal .channels-search {
    display: flex;
    align-items: center;
    background: #FFFFFF;
    padding: 9px 14px;
    border-radius: 8px;
    border: 1px solid #D0D5DD;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
  }
  
  .customer-portal .channels-search svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
    fill: #000;
    margin-right: 8px;
  }
  
  .customer-portal .channels-search input {
    font-size: 16px;
    line-height: 150%;
    color: #101828;
    width: 342px;
  }
  
  .customer-portal .channels-table {
    border-top: 1px solid #EAECF0;
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  
  .customer-portal .channels-table::-webkit-scrollbar {
    display: none;
  }
  
  .customer-portal .channels-table-top {
    background: #FCFCFD;
    border-bottom: 1px solid #EAECF0;
  }
  
  .customer-portal .channels-table-top .channels-table-row {
    padding: 12px 0;
  }
  
  .customer-portal .channels-table-top .channels-table-cell {
    user-select: none;
  }
  
  .customer-portal .channels-table-top .channels-table-cell[data-sort-direction=asc] svg,
  .customer-portal .channels-table-top .channels-table-cell[data-sort-direction=desc] svg {
    display: block;
  }
  
  .customer-portal .channels-table-top .channels-table-cell[data-sort-direction=asc] svg {
    transform: rotate(-180deg);
  }
  
  .customer-portal .channels-table-top .channels-table-cell p {
    font-size: 12px;
    line-height: 150%;
    color: #475467;
    margin: 0;
  }
  
  .customer-portal .channels-table-top .channels-table-cell svg {
    display: none;
    width: 16px;
    height: 16px;
    fill: #000;
    margin-left: 4px;
  }
  
  .customer-portal .channels-table-body {
    display: flex;
    flex-direction: column;
  }
  
  .customer-portal .channels-table-body .channels-table-row {
    padding: 16px 0;
  }
  
  .customer-portal .channels-table-row {
    display: grid;
    grid-template-columns: 1fr 1.15fr 150px 150px;
  }
  
  .customer-portal .channels-table-row:not(:last-child) {
    border-bottom: 1px solid #EAECF0;
  }
  
  .customer-portal .channels-table-cell {
    font-size: 14px;
    line-height: 143%;
    padding: 0px 24px;
    display: flex;
    align-items: center;
  }
  
  .customer-portal .channels-table-cell.-conversations > span {
    font-weight: 500;
    color: #344054;
    text-align: right;
    min-width: 30px;
  }
  
  .customer-portal .channels-table-cell.-conversations .badge {
    margin-left: 8px;
  }
  
  .customer-portal .channels-table-cell.-last-use {
    color: #475467;
  }
  
  .customer-portal .channels-table .channel-item {
    display: flex;
  }
  
  .customer-portal .channels-table .channel-item-ico {
    width: 40px;
    height: 40px;
    min-width: 40px;
    overflow: hidden;
    border-radius: 50%;
    background: var(--accent-color);
    margin-right: 12px;
  }
  
  .customer-portal .channels-table .channel-item-ico svg {
    width: 100%;
    height: 100%;
    fill: #fff;
  }
  
  .customer-portal .channels-table .channel-item-name {
    font-weight: 500;
    color: #101828;
  }
  
  .customer-portal .channels-table .channel-item-platform {
    color: #475467;
  }
  
  .customer-portal .channels-table-progressbar {
    width: 100%;
    height: 8px;
    background: #EAECF0;
    border-radius: 4px;
  }
  
  .customer-portal .channels-table-progressbar div {
    background: var(--accent-color);
    width: 0;
    height: 100%;
    border-radius: 4px;
  }
  
  .customer-portal .channels-table-select-all {
    cursor: pointer;
    user-select: none;
    background: #fff;
    border: 1px solid #D0D5DD;
    border-radius: 6px;
    width: 20px;
    height: 20px;
    min-width: 20px;
    transition: border-color 0.2s, background-color 0.2s;
  }
  
  .customer-portal .channels-table-select-all:not(.-all, .-some):hover {
    border-color: #184ABC;
    background: rgba(24, 74, 188, 0.1);
  }
  
  .customer-portal .channels-table-select-all.-all {
    border-color: #184ABC;
    background: rgba(24, 74, 188, 0.1) url(../img/icons/check.svg) no-repeat center/70%;
  }
  
  .customer-portal .channels-table-select-all.-some {
    border-color: #184ABC;
    background: rgba(24, 74, 188, 0.1) url(../img/icons/minus.svg) no-repeat center/70%;
  }
  
  .customer-portal .channels-table-select-all,
  .customer-portal .channels-table .checkbox {
    margin-right: 12px;
  }
  
  .customer-portal .channels-bottom {
    display: flex;
    align-items: center;
    padding: 12px 24px 16px;
    border-top: 1px solid #EAECF0;
  }
  
  .customer-portal .channels-bottom p {
    font-size: 14px;
    line-height: 143%;
    font-weight: 500;
    color: #344054;
    margin-bottom: 0;
    margin-right: auto;
  }
  
  .customer-portal .channels-bottom .btn:not(:last-child) {
    margin-right: 12px;
  }
  
  .billing {
    overflow: hidden;
  }
  
  .billing h2 {
    margin-bottom: 63px;
  }
  
  .billing .stat-card {
    margin-bottom: 24px;
  }
  
  .billing-history-top {
    padding: 26px 24px;
  }
  
  .billing-history-table {
    border-top: 1px solid #EAECF0;
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  
  .billing-history-table::-webkit-scrollbar {
    display: none;
  }
  
  .billing-history-table-top {
    background: #FCFCFD;
    border-bottom: 1px solid #EAECF0;
  }
  
  .billing-history-table-top .billing-history-table-row {
    padding: 13px 0;
  }
  
  .billing-history-table-top .billing-history-table-cell {
    user-select: none;
    font-size: 12px;
    line-height: 150%;
    color: #475467;
    font-weight: 500;
  }
  
  .billing-history-table-body {
    display: flex;
    flex-direction: column;
  }
  
  .billing-history-table-body .billing-history-table-row {
    padding: 16px 0;
  }
  
  .billing-history-table-row {
    display: grid;
    align-items: center;
    grid-template-columns: 110px 1fr 170px 110px;
  }
  
  .billing-history-table-row:not(:last-child) {
    border-bottom: 1px solid #EAECF0;
  }
  
  .billing-history-table-cell {
    font-size: 14px;
    line-height: 143%;
    padding: 0px 24px;
    display: flex;
    flex-direction: column;
    color: #475467;
  }
  
  .billing-history-table-cell span {
    font-weight: 500;
    color: #101828;
  }
  
  .billing-history-table-cell a {
    text-decoration-line: underline;
    color: #475467;
    align-self: start;
  }
  
  .billing-history-table-cell a:hover {
    color: #184ABC;
    text-decoration-line: none;
  }
  
  .billing-history-bottom {
    display: flex;
    align-items: center;
    padding: 12px 24px 16px;
    border-top: 1px solid #EAECF0;
  }
  
  .billing-history-bottom p {
    font-size: 14px;
    line-height: 143%;
    font-weight: 500;
    color: #344054;
    margin-bottom: 0;
    margin-right: auto;
  }
  
  .billing-history-bottom .btn:not(:last-child) {
    margin-right: 12px;
  }
  
  .payment-methods {
    margin-top: 44px;
  }
  
  .payment-methods > h5 {
    margin-bottom: 25px;
  }
  
  .payment-methods-inner {
    display: flex;
    align-items: flex-start;
  }
  
  .payment-methods .card {
    padding: 20px 16px 23px;
  }
  
  .payment-methods .card h5 {
    padding-bottom: 20px;
    border-bottom: 1px solid #EAECF0;
  }
  
  .payment-methods-active {
    width: 100%;
    min-width: 390px;
  }
  
  .payment-methods-active ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #EAECF0;
    padding: 16px 0;
  }
  
  .payment-methods-active-ico {
    background: #fff;
    border: 1px solid #F2F4F7;
    border-radius: 4px;
    height: 32px;
    width: 46px;
    min-width: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
  }
  
  .payment-methods-active-ico img {
    max-width: 80%;
    max-height: 80%;
  }
  
  .payment-methods-active-name {
    font-size: 14px;
    line-height: 143%;
    font-weight: 500;
    color: #101828;
  }
  
  .payment-methods-active-info {
    font-size: 14px;
    line-height: 143%;
    color: #475467;
  }
  
  .payment-methods-active-actions {
    display: flex;
    align-items: center;
    margin-left: auto;
    padding-left: 20px;
  }
  
  .payment-methods-active-actions button {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
  }
  
  .payment-methods-active-actions button:not(:last-child) {
    margin-right: 10px;
  }
  
  .payment-methods-active-actions button:hover {
    color: #184ABC;
  }
  
  .payment-methods-active-actions button svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
  }
  
  .payment-methods-active-add {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    line-height: 143%;
    font-weight: 600;
    color: #475467;
    transition: 0.2s;
    margin-top: 20px;
  }
  
  .payment-methods-active-add:hover {
    color: #184ABC;
  }
  
  .payment-methods-active-add svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    margin-right: 8px;
  }
  
  .payment-methods-card {
    margin-left: 24px;
    width: 100%;
  }
  
  .payment-methods-card-form {
    display: grid;
    grid-template-columns: 1fr 112px;
    gap: 16px;
    margin-top: 20px;
  }
  
  .payment-methods-card-form .-card-number {
    position: relative;
  }
  
  .payment-methods-card-form .-card-number .-card-logo {
    background: #fff;
    border: 1px solid #F2F4F7;
    border-radius: 4px;
    height: 24px;
    width: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 36px;
    left: 10px;
  }
  
  .payment-methods-card-form .-card-number .-card-logo img {
    max-width: 80%;
    max-height: 80%;
  }
  
  .payment-methods-card-form .-card-number input {
    padding-left: 52px;
  }
  
  .payment-methods-card-form button {
    grid-column: 2/3;
  }
  
  .support {
    overflow: hidden;
  }
  
  .support h2 {
    margin-bottom: 52px;
  }
  
  .support .row {
    --bs-gutter-y: 24px;
  }
  
  .support-form {
    padding: 16px 16px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 32px;
  }
  
  .support-form-options > span {
    display: block;
    font-size: 14px;
    line-height: 143%;
    font-weight: 500;
    color: #344054;
    margin-bottom: 16px;
  }
  
  .support-form-options ul {
    display: grid;
    gap: 16px 64px;
    grid-auto-flow: column;
    grid-template-rows: 1fr 1fr 1fr;
    justify-items: start;
  }
  
  .support-form .btn {
    margin-top: 20px;
  }
  
  .support-call-us {
    padding: 24px 24px 34px;
    display: flex;
  }
  
  .support-call-us svg {
    width: 24px;
    height: 24px;
    min-width: 24px;
    fill: #184ABC;
  }
  
  .support-call-us-info {
    margin-left: 16px;
    display: flex;
    flex-direction: column;
  }
  
  .support-call-us p {
    color: #101828;
    margin-top: 8px;
    margin-bottom: 0;
  }
  
  .support-call-us a {
    align-self: start;
    margin-top: 20px;
    font-weight: 600;
    color: #184ABC;
  }
  
  .support-call-us a:hover {
    color: #194185;
  }
  
  .checkout-inner {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 40px 45px;
  }
  
  .checkout h4 {
    margin-bottom: 24px;
  }
  
  .checkout-disclaimer {
    font-size: 10px;
    line-height: 16px;
    letter-spacing: 0.01em;
    color: #696969;
  }
  
  .checkout-disclaimer a:hover {
    text-decoration: underline;
  }
  
  .checkout-account {
    padding: 20px 16px 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .checkout-summary {
    padding: 24px 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .checkout-summary-top img {
    display: block;
    margin-bottom: 18px;
  }
  
  .checkout-summary-top p {
    margin-top: 5px;
    font-size: 14px;
    line-height: 143%;
    color: #696969;
  }
  
  .checkout-summary-products li {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    font-size: 14px;
    line-height: 143%;
    color: #000;
    letter-spacing: 0.01em;
  }
  
  .checkout-summary-vat-country {
    font-size: 10px;
    line-height: 16px;
    letter-spacing: 0.01em;
    color: #696969;
    margin-bottom: 6px;
  }
  
  .checkout-summary-vat-country a {
    text-decoration: underline;
    color: #696969;
  }
  
  .checkout-summary-vat-country a:hover {
    text-decoration: none;
    color: #184ABC;
  }
  
  .checkout-summary-vat-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    font-size: 14px;
    line-height: 143%;
  }
  
  .checkout-summary-vat-info span {
    color: #696969;
  }
  
  .checkout-summary-total {
    padding-top: 24px;
    border-top: 1px solid #EAECF0;
  }
  
  .checkout-summary-total-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    line-height: 156%;
    color: #000;
    font-weight: 500;
  }
  
  .checkout-summary-total-info span {
    font-weight: 400;
  }
  
  .checkout-summary-coupon {
    font-size: 10px;
    line-height: 16px;
    letter-spacing: 0.01em;
    color: #696969;
    transition: 0.2s;
    cursor: pointer;
    text-decoration: underline;
    display: inline-block;
    margin-top: 10px;
  }
  
  .checkout-summary-coupon:hover {
    text-decoration: none;
    color: #184ABC;
  }
  
  .checkout-safe-payments {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 143%;
    font-weight: 500;
    color: #696969;
    margin-top: 70px;
  }
  
  .checkout-safe-payments img {
    width: 62px;
    margin-left: 10px;
  }
  
  .checkout-payment-method:not(:last-child) {
    margin-bottom: 24px;
  }
  
  .checkout-payment-method-trigger {
    padding: 17px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .checkout-payment-method-trigger.active svg {
    transform: rotate(-180deg);
  }
  
  .checkout-payment-method-trigger > div {
    display: flex;
    align-items: center;
  }
  
  .checkout-payment-method-trigger p {
    font-size: 16px;
    line-height: 150%;
    font-size: 15px;
    font-weight: 500;
    color: #101828;
    margin: 0;
  }
  
  .checkout-payment-method-trigger img {
    margin-left: 24px;
    margin-right: auto;
    height: 24px;
  }
  
  .checkout-payment-method-trigger svg {
    width: 24px;
    height: 24px;
    fill: #000;
    transition: 0.2s;
    margin-left: 10px;
  }
  
  .checkout-payment-method-dropdown {
    display: none;
  }
  
  .checkout-payment-method-form {
    border-top: 1px solid #EAECF0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 32px;
    padding: 20px 16px;
  }
  
  .checkout-payment-method-form h5,
  .checkout-payment-method-form .checkout-disclaimer,
  .checkout-payment-method-form .btn {
    grid-column: 1/3;
  }
  
  .checkout-payment-method-form .btn {
    margin-top: 4px;
  }
  
  .checkout-payment-method-card .-double {
    display: flex;
    justify-content: space-between;
  }
  
  .checkout-payment-method-card .-card-cvv {
    width: 100%;
    max-width: 108px;
    min-width: 108px;
    margin-right: 32px;
  }
  
  .checkout-ckecklist {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 48px;
  }
  
  .checkout-ckecklist li {
    font-size: 20px;
    line-height: 150%;
    letter-spacing: -0.02em;
    color: #141414;
    display: flex;
    align-items: center;
  }
  
  .checkout-ckecklist li:not(:last-child) {
    margin-right: 48px;
  }
  
  .checkout-ckecklist li:before {
    display: block;
    content: "";
    width: 20px;
    height: 20px;
    background: url(../img/icons/check-in-circle.svg) no-repeat center center/100% 100%;
    margin-right: 10px;
  }
  
  .login {
    text-align: center;
  }
  
  .login-inner {
    max-width: 456px;
    margin: 0 auto;
    padding: 48px;
  }
  
  .login-inner p {
    margin-top: 16px;
    margin-bottom: 0;
  }
  
  .login-inner p a {
    text-decoration: none;
  }
  
  .login-form {
    margin-top: 36px;
  }
  
  .login-form .form-input:not(:last-child) {
    margin-bottom: 16px;
  }
  
  .login-form .btn {
    width: 100%;
  }
  
  .login-alt {
    display: inline-block;
    font-size: 14px;
    line-height: 143%;
    color: #184ABC;
    margin-top: 20px;
  }
  
  .login-alt:hover {
    color: #194185;
  }
  
  .login-via {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 36px;
  }
  
  .login-via .btn.-filled {
    padding: 10px 0;
  }
  
  .login-via .btn.-filled.-blue:not(:hover) {
    background: #1877F2;
  }
  
  .login-via .btn img,
  .login-via .btn svg {
    width: 24px;
    height: 24px;
  }
  
  @media (min-width: 576px) {
    .container-sm,
    .container {
      max-width: 540px;
    }
    .col-sm {
      flex: 1 0 0%;
    }
  
    .row-cols-sm-auto > * {
      flex: 0 0 auto;
      width: auto;
    }
  
    .row-cols-sm-1 > * {
      flex: 0 0 auto;
      width: 100%;
    }
  
    .row-cols-sm-2 > * {
      flex: 0 0 auto;
      width: 50%;
    }
  
    .row-cols-sm-3 > * {
      flex: 0 0 auto;
      width: 33.3333333333%;
    }
  
    .row-cols-sm-4 > * {
      flex: 0 0 auto;
      width: 25%;
    }
  
    .row-cols-sm-5 > * {
      flex: 0 0 auto;
      width: 20%;
    }
  
    .row-cols-sm-6 > * {
      flex: 0 0 auto;
      width: 16.6666666667%;
    }
  
    .col-sm-auto {
      flex: 0 0 auto;
      width: auto;
    }
  
    .col-sm-1 {
      flex: 0 0 auto;
      width: 8.33333333%;
    }
  
    .col-sm-2 {
      flex: 0 0 auto;
      width: 16.66666667%;
    }
  
    .col-sm-3 {
      flex: 0 0 auto;
      width: 25%;
    }
  
    .col-sm-4 {
      flex: 0 0 auto;
      width: 33.33333333%;
    }
  
    .col-sm-5 {
      flex: 0 0 auto;
      width: 41.66666667%;
    }
  
    .col-sm-6 {
      flex: 0 0 auto;
      width: 50%;
    }
  
    .col-sm-7 {
      flex: 0 0 auto;
      width: 58.33333333%;
    }
  
    .col-sm-8 {
      flex: 0 0 auto;
      width: 66.66666667%;
    }
  
    .col-sm-9 {
      flex: 0 0 auto;
      width: 75%;
    }
  
    .col-sm-10 {
      flex: 0 0 auto;
      width: 83.33333333%;
    }
  
    .col-sm-11 {
      flex: 0 0 auto;
      width: 91.66666667%;
    }
  
    .col-sm-12 {
      flex: 0 0 auto;
      width: 100%;
    }
  
    .offset-sm-0 {
      margin-left: 0;
    }
  
    .offset-sm-1 {
      margin-left: 8.33333333%;
    }
  
    .offset-sm-2 {
      margin-left: 16.66666667%;
    }
  
    .offset-sm-3 {
      margin-left: 25%;
    }
  
    .offset-sm-4 {
      margin-left: 33.33333333%;
    }
  
    .offset-sm-5 {
      margin-left: 41.66666667%;
    }
  
    .offset-sm-6 {
      margin-left: 50%;
    }
  
    .offset-sm-7 {
      margin-left: 58.33333333%;
    }
  
    .offset-sm-8 {
      margin-left: 66.66666667%;
    }
  
    .offset-sm-9 {
      margin-left: 75%;
    }
  
    .offset-sm-10 {
      margin-left: 83.33333333%;
    }
  
    .offset-sm-11 {
      margin-left: 91.66666667%;
    }
  
    .g-sm-0,
    .gx-sm-0 {
      --bs-gutter-x: 0;
    }
  
    .g-sm-0,
    .gy-sm-0 {
      --bs-gutter-y: 0;
    }
  
    .g-sm-1,
    .gx-sm-1 {
      --bs-gutter-x: 0.25rem;
    }
  
    .g-sm-1,
    .gy-sm-1 {
      --bs-gutter-y: 0.25rem;
    }
  
    .g-sm-2,
    .gx-sm-2 {
      --bs-gutter-x: 0.5rem;
    }
  
    .g-sm-2,
    .gy-sm-2 {
      --bs-gutter-y: 0.5rem;
    }
  
    .g-sm-3,
    .gx-sm-3 {
      --bs-gutter-x: 1rem;
    }
  
    .g-sm-3,
    .gy-sm-3 {
      --bs-gutter-y: 1rem;
    }
  
    .g-sm-4,
    .gx-sm-4 {
      --bs-gutter-x: 1.5rem;
    }
  
    .g-sm-4,
    .gy-sm-4 {
      --bs-gutter-y: 1.5rem;
    }
  
    .g-sm-5,
    .gx-sm-5 {
      --bs-gutter-x: 3rem;
    }
  
    .g-sm-5,
    .gy-sm-5 {
      --bs-gutter-y: 3rem;
    }
  
    .d-sm-inline {
      display: inline !important;
    }
  
    .d-sm-inline-block {
      display: inline-block !important;
    }
  
    .d-sm-block {
      display: block !important;
    }
  
    .d-sm-grid {
      display: grid !important;
    }
  
    .d-sm-table {
      display: table !important;
    }
  
    .d-sm-table-row {
      display: table-row !important;
    }
  
    .d-sm-table-cell {
      display: table-cell !important;
    }
  
    .d-sm-flex {
      display: flex !important;
    }
  
    .d-sm-inline-flex {
      display: inline-flex !important;
    }
  
    .d-sm-none {
      display: none !important;
    }
  
    .flex-sm-fill {
      flex: 1 1 auto !important;
    }
  
    .flex-sm-row {
      flex-direction: row !important;
    }
  
    .flex-sm-column {
      flex-direction: column !important;
    }
  
    .flex-sm-row-reverse {
      flex-direction: row-reverse !important;
    }
  
    .flex-sm-column-reverse {
      flex-direction: column-reverse !important;
    }
  
    .flex-sm-grow-0 {
      flex-grow: 0 !important;
    }
  
    .flex-sm-grow-1 {
      flex-grow: 1 !important;
    }
  
    .flex-sm-shrink-0 {
      flex-shrink: 0 !important;
    }
  
    .flex-sm-shrink-1 {
      flex-shrink: 1 !important;
    }
  
    .flex-sm-wrap {
      flex-wrap: wrap !important;
    }
  
    .flex-sm-nowrap {
      flex-wrap: nowrap !important;
    }
  
    .flex-sm-wrap-reverse {
      flex-wrap: wrap-reverse !important;
    }
  
    .justify-content-sm-start {
      justify-content: flex-start !important;
    }
  
    .justify-content-sm-end {
      justify-content: flex-end !important;
    }
  
    .justify-content-sm-center {
      justify-content: center !important;
    }
  
    .justify-content-sm-between {
      justify-content: space-between !important;
    }
  
    .justify-content-sm-around {
      justify-content: space-around !important;
    }
  
    .justify-content-sm-evenly {
      justify-content: space-evenly !important;
    }
  
    .align-items-sm-start {
      align-items: flex-start !important;
    }
  
    .align-items-sm-end {
      align-items: flex-end !important;
    }
  
    .align-items-sm-center {
      align-items: center !important;
    }
  
    .align-items-sm-baseline {
      align-items: baseline !important;
    }
  
    .align-items-sm-stretch {
      align-items: stretch !important;
    }
  
    .align-content-sm-start {
      align-content: flex-start !important;
    }
  
    .align-content-sm-end {
      align-content: flex-end !important;
    }
  
    .align-content-sm-center {
      align-content: center !important;
    }
  
    .align-content-sm-between {
      align-content: space-between !important;
    }
  
    .align-content-sm-around {
      align-content: space-around !important;
    }
  
    .align-content-sm-stretch {
      align-content: stretch !important;
    }
  
    .align-self-sm-auto {
      align-self: auto !important;
    }
  
    .align-self-sm-start {
      align-self: flex-start !important;
    }
  
    .align-self-sm-end {
      align-self: flex-end !important;
    }
  
    .align-self-sm-center {
      align-self: center !important;
    }
  
    .align-self-sm-baseline {
      align-self: baseline !important;
    }
  
    .align-self-sm-stretch {
      align-self: stretch !important;
    }
  
    .order-sm-first {
      order: -1 !important;
    }
  
    .order-sm-0 {
      order: 0 !important;
    }
  
    .order-sm-1 {
      order: 1 !important;
    }
  
    .order-sm-2 {
      order: 2 !important;
    }
  
    .order-sm-3 {
      order: 3 !important;
    }
  
    .order-sm-4 {
      order: 4 !important;
    }
  
    .order-sm-5 {
      order: 5 !important;
    }
  
    .order-sm-last {
      order: 6 !important;
    }
  
    .m-sm-0 {
      margin: 0 !important;
    }
  
    .m-sm-1 {
      margin: 0.25rem !important;
    }
  
    .m-sm-2 {
      margin: 0.5rem !important;
    }
  
    .m-sm-3 {
      margin: 1rem !important;
    }
  
    .m-sm-4 {
      margin: 1.5rem !important;
    }
  
    .m-sm-5 {
      margin: 3rem !important;
    }
  
    .m-sm-auto {
      margin: auto !important;
    }
  
    .mx-sm-0 {
      margin-right: 0 !important;
      margin-left: 0 !important;
    }
  
    .mx-sm-1 {
      margin-right: 0.25rem !important;
      margin-left: 0.25rem !important;
    }
  
    .mx-sm-2 {
      margin-right: 0.5rem !important;
      margin-left: 0.5rem !important;
    }
  
    .mx-sm-3 {
      margin-right: 1rem !important;
      margin-left: 1rem !important;
    }
  
    .mx-sm-4 {
      margin-right: 1.5rem !important;
      margin-left: 1.5rem !important;
    }
  
    .mx-sm-5 {
      margin-right: 3rem !important;
      margin-left: 3rem !important;
    }
  
    .mx-sm-auto {
      margin-right: auto !important;
      margin-left: auto !important;
    }
  
    .my-sm-0 {
      margin-top: 0 !important;
      margin-bottom: 0 !important;
    }
  
    .my-sm-1 {
      margin-top: 0.25rem !important;
      margin-bottom: 0.25rem !important;
    }
  
    .my-sm-2 {
      margin-top: 0.5rem !important;
      margin-bottom: 0.5rem !important;
    }
  
    .my-sm-3 {
      margin-top: 1rem !important;
      margin-bottom: 1rem !important;
    }
  
    .my-sm-4 {
      margin-top: 1.5rem !important;
      margin-bottom: 1.5rem !important;
    }
  
    .my-sm-5 {
      margin-top: 3rem !important;
      margin-bottom: 3rem !important;
    }
  
    .my-sm-auto {
      margin-top: auto !important;
      margin-bottom: auto !important;
    }
  
    .mt-sm-0 {
      margin-top: 0 !important;
    }
  
    .mt-sm-1 {
      margin-top: 0.25rem !important;
    }
  
    .mt-sm-2 {
      margin-top: 0.5rem !important;
    }
  
    .mt-sm-3 {
      margin-top: 1rem !important;
    }
  
    .mt-sm-4 {
      margin-top: 1.5rem !important;
    }
  
    .mt-sm-5 {
      margin-top: 3rem !important;
    }
  
    .mt-sm-auto {
      margin-top: auto !important;
    }
  
    .me-sm-0 {
      margin-right: 0 !important;
    }
  
    .me-sm-1 {
      margin-right: 0.25rem !important;
    }
  
    .me-sm-2 {
      margin-right: 0.5rem !important;
    }
  
    .me-sm-3 {
      margin-right: 1rem !important;
    }
  
    .me-sm-4 {
      margin-right: 1.5rem !important;
    }
  
    .me-sm-5 {
      margin-right: 3rem !important;
    }
  
    .me-sm-auto {
      margin-right: auto !important;
    }
  
    .mb-sm-0 {
      margin-bottom: 0 !important;
    }
  
    .mb-sm-1 {
      margin-bottom: 0.25rem !important;
    }
  
    .mb-sm-2 {
      margin-bottom: 0.5rem !important;
    }
  
    .mb-sm-3 {
      margin-bottom: 1rem !important;
    }
  
    .mb-sm-4 {
      margin-bottom: 1.5rem !important;
    }
  
    .mb-sm-5 {
      margin-bottom: 3rem !important;
    }
  
    .mb-sm-auto {
      margin-bottom: auto !important;
    }
  
    .ms-sm-0 {
      margin-left: 0 !important;
    }
  
    .ms-sm-1 {
      margin-left: 0.25rem !important;
    }
  
    .ms-sm-2 {
      margin-left: 0.5rem !important;
    }
  
    .ms-sm-3 {
      margin-left: 1rem !important;
    }
  
    .ms-sm-4 {
      margin-left: 1.5rem !important;
    }
  
    .ms-sm-5 {
      margin-left: 3rem !important;
    }
  
    .ms-sm-auto {
      margin-left: auto !important;
    }
  
    .p-sm-0 {
      padding: 0 !important;
    }
  
    .p-sm-1 {
      padding: 0.25rem !important;
    }
  
    .p-sm-2 {
      padding: 0.5rem !important;
    }
  
    .p-sm-3 {
      padding: 1rem !important;
    }
  
    .p-sm-4 {
      padding: 1.5rem !important;
    }
  
    .p-sm-5 {
      padding: 3rem !important;
    }
  
    .px-sm-0 {
      padding-right: 0 !important;
      padding-left: 0 !important;
    }
  
    .px-sm-1 {
      padding-right: 0.25rem !important;
      padding-left: 0.25rem !important;
    }
  
    .px-sm-2 {
      padding-right: 0.5rem !important;
      padding-left: 0.5rem !important;
    }
  
    .px-sm-3 {
      padding-right: 1rem !important;
      padding-left: 1rem !important;
    }
  
    .px-sm-4 {
      padding-right: 1.5rem !important;
      padding-left: 1.5rem !important;
    }
  
    .px-sm-5 {
      padding-right: 3rem !important;
      padding-left: 3rem !important;
    }
  
    .py-sm-0 {
      padding-top: 0 !important;
      padding-bottom: 0 !important;
    }
  
    .py-sm-1 {
      padding-top: 0.25rem !important;
      padding-bottom: 0.25rem !important;
    }
  
    .py-sm-2 {
      padding-top: 0.5rem !important;
      padding-bottom: 0.5rem !important;
    }
  
    .py-sm-3 {
      padding-top: 1rem !important;
      padding-bottom: 1rem !important;
    }
  
    .py-sm-4 {
      padding-top: 1.5rem !important;
      padding-bottom: 1.5rem !important;
    }
  
    .py-sm-5 {
      padding-top: 3rem !important;
      padding-bottom: 3rem !important;
    }
  
    .pt-sm-0 {
      padding-top: 0 !important;
    }
  
    .pt-sm-1 {
      padding-top: 0.25rem !important;
    }
  
    .pt-sm-2 {
      padding-top: 0.5rem !important;
    }
  
    .pt-sm-3 {
      padding-top: 1rem !important;
    }
  
    .pt-sm-4 {
      padding-top: 1.5rem !important;
    }
  
    .pt-sm-5 {
      padding-top: 3rem !important;
    }
  
    .pe-sm-0 {
      padding-right: 0 !important;
    }
  
    .pe-sm-1 {
      padding-right: 0.25rem !important;
    }
  
    .pe-sm-2 {
      padding-right: 0.5rem !important;
    }
  
    .pe-sm-3 {
      padding-right: 1rem !important;
    }
  
    .pe-sm-4 {
      padding-right: 1.5rem !important;
    }
  
    .pe-sm-5 {
      padding-right: 3rem !important;
    }
  
    .pb-sm-0 {
      padding-bottom: 0 !important;
    }
  
    .pb-sm-1 {
      padding-bottom: 0.25rem !important;
    }
  
    .pb-sm-2 {
      padding-bottom: 0.5rem !important;
    }
  
    .pb-sm-3 {
      padding-bottom: 1rem !important;
    }
  
    .pb-sm-4 {
      padding-bottom: 1.5rem !important;
    }
  
    .pb-sm-5 {
      padding-bottom: 3rem !important;
    }
  
    .ps-sm-0 {
      padding-left: 0 !important;
    }
  
    .ps-sm-1 {
      padding-left: 0.25rem !important;
    }
  
    .ps-sm-2 {
      padding-left: 0.5rem !important;
    }
  
    .ps-sm-3 {
      padding-left: 1rem !important;
    }
  
    .ps-sm-4 {
      padding-left: 1.5rem !important;
    }
  
    .ps-sm-5 {
      padding-left: 3rem !important;
    }
  
    .support-form .-email,
    .support-form .-phone,
    .support-form .-message,
    .support-form .btn {
      grid-column: 1/3;
    }
  
    .support-form-options {
      grid-column: 1/3;
    }
  }
  
  @media (min-width: 768px) {
    .container-md,
    .container-sm,
    .container {
      max-width: 720px;
    }
      
    .col-md {
      flex: 1 0 0%;
    }
  
    .row-cols-md-auto > * {
      flex: 0 0 auto;
      width: auto;
    }
  
    .row-cols-md-1 > * {
      flex: 0 0 auto;
      width: 100%;
    }
  
    .row-cols-md-2 > * {
      flex: 0 0 auto;
      width: 50%;
    }
  
    .row-cols-md-3 > * {
      flex: 0 0 auto;
      width: 33.3333333333%;
    }
  
    .row-cols-md-4 > * {
      flex: 0 0 auto;
      width: 25%;
    }
  
    .row-cols-md-5 > * {
      flex: 0 0 auto;
      width: 20%;
    }
  
    .row-cols-md-6 > * {
      flex: 0 0 auto;
      width: 16.6666666667%;
    }
  
    .col-md-auto {
      flex: 0 0 auto;
      width: auto;
    }
  
    .col-md-1 {
      flex: 0 0 auto;
      width: 8.33333333%;
    }
  
    .col-md-2 {
      flex: 0 0 auto;
      width: 16.66666667%;
    }
  
    .col-md-3 {
      flex: 0 0 auto;
      width: 25%;
    }
  
    .col-md-4 {
      flex: 0 0 auto;
      width: 33.33333333%;
    }
  
    .col-md-5 {
      flex: 0 0 auto;
      width: 41.66666667%;
    }
  
    .col-md-6 {
      flex: 0 0 auto;
      width: 50%;
    }
  
    .col-md-7 {
      flex: 0 0 auto;
      width: 58.33333333%;
    }
  
    .col-md-8 {
      flex: 0 0 auto;
      width: 66.66666667%;
    }
  
    .col-md-9 {
      flex: 0 0 auto;
      width: 75%;
    }
  
    .col-md-10 {
      flex: 0 0 auto;
      width: 83.33333333%;
    }
  
    .col-md-11 {
      flex: 0 0 auto;
      width: 91.66666667%;
    }
  
    .col-md-12 {
      flex: 0 0 auto;
      width: 100%;
    }
  
    .offset-md-0 {
      margin-left: 0;
    }
  
    .offset-md-1 {
      margin-left: 8.33333333%;
    }
  
    .offset-md-2 {
      margin-left: 16.66666667%;
    }
  
    .offset-md-3 {
      margin-left: 25%;
    }
  
    .offset-md-4 {
      margin-left: 33.33333333%;
    }
  
    .offset-md-5 {
      margin-left: 41.66666667%;
    }
  
    .offset-md-6 {
      margin-left: 50%;
    }
  
    .offset-md-7 {
      margin-left: 58.33333333%;
    }
  
    .offset-md-8 {
      margin-left: 66.66666667%;
    }
  
    .offset-md-9 {
      margin-left: 75%;
    }
  
    .offset-md-10 {
      margin-left: 83.33333333%;
    }
  
    .offset-md-11 {
      margin-left: 91.66666667%;
    }
  
    .g-md-0,
    .gx-md-0 {
      --bs-gutter-x: 0;
    }
  
    .g-md-0,
    .gy-md-0 {
      --bs-gutter-y: 0;
    }
  
    .g-md-1,
    .gx-md-1 {
      --bs-gutter-x: 0.25rem;
    }
  
    .g-md-1,
    .gy-md-1 {
      --bs-gutter-y: 0.25rem;
    }
  
    .g-md-2,
    .gx-md-2 {
      --bs-gutter-x: 0.5rem;
    }
  
    .g-md-2,
    .gy-md-2 {
      --bs-gutter-y: 0.5rem;
    }
  
    .g-md-3,
    .gx-md-3 {
      --bs-gutter-x: 1rem;
    }
  
    .g-md-3,
    .gy-md-3 {
      --bs-gutter-y: 1rem;
    }
  
    .g-md-4,
    .gx-md-4 {
      --bs-gutter-x: 1.5rem;
    }
  
    .g-md-4,
    .gy-md-4 {
      --bs-gutter-y: 1.5rem;
    }
  
    .g-md-5,
    .gx-md-5 {
      --bs-gutter-x: 3rem;
    }
  
    .g-md-5,
    .gy-md-5 {
      --bs-gutter-y: 3rem;
    }
  
    .d-md-inline {
      display: inline !important;
    }
  
    .d-md-inline-block {
      display: inline-block !important;
    }
  
    .d-md-block {
      display: block !important;
    }
  
    .d-md-grid {
      display: grid !important;
    }
  
    .d-md-table {
      display: table !important;
    }
  
    .d-md-table-row {
      display: table-row !important;
    }
  
    .d-md-table-cell {
      display: table-cell !important;
    }
  
    .d-md-flex {
      display: flex !important;
    }
  
    .d-md-inline-flex {
      display: inline-flex !important;
    }
  
    .d-md-none {
      display: none !important;
    }
  
    .flex-md-fill {
      flex: 1 1 auto !important;
    }
  
    .flex-md-row {
      flex-direction: row !important;
    }
  
    .flex-md-column {
      flex-direction: column !important;
    }
  
    .flex-md-row-reverse {
      flex-direction: row-reverse !important;
    }
  
    .flex-md-column-reverse {
      flex-direction: column-reverse !important;
    }
  
    .flex-md-grow-0 {
      flex-grow: 0 !important;
    }
  
    .flex-md-grow-1 {
      flex-grow: 1 !important;
    }
  
    .flex-md-shrink-0 {
      flex-shrink: 0 !important;
    }
  
    .flex-md-shrink-1 {
      flex-shrink: 1 !important;
    }
  
    .flex-md-wrap {
      flex-wrap: wrap !important;
    }
  
    .flex-md-nowrap {
      flex-wrap: nowrap !important;
    }
  
    .flex-md-wrap-reverse {
      flex-wrap: wrap-reverse !important;
    }
  
    .justify-content-md-start {
      justify-content: flex-start !important;
    }
  
    .justify-content-md-end {
      justify-content: flex-end !important;
    }
  
    .justify-content-md-center {
      justify-content: center !important;
    }
  
    .justify-content-md-between {
      justify-content: space-between !important;
    }
  
    .justify-content-md-around {
      justify-content: space-around !important;
    }
  
    .justify-content-md-evenly {
      justify-content: space-evenly !important;
    }
  
    .align-items-md-start {
      align-items: flex-start !important;
    }
  
    .align-items-md-end {
      align-items: flex-end !important;
    }
  
    .align-items-md-center {
      align-items: center !important;
    }
  
    .align-items-md-baseline {
      align-items: baseline !important;
    }
  
    .align-items-md-stretch {
      align-items: stretch !important;
    }
  
    .align-content-md-start {
      align-content: flex-start !important;
    }
  
    .align-content-md-end {
      align-content: flex-end !important;
    }
  
    .align-content-md-center {
      align-content: center !important;
    }
  
    .align-content-md-between {
      align-content: space-between !important;
    }
  
    .align-content-md-around {
      align-content: space-around !important;
    }
  
    .align-content-md-stretch {
      align-content: stretch !important;
    }
  
    .align-self-md-auto {
      align-self: auto !important;
    }
  
    .align-self-md-start {
      align-self: flex-start !important;
    }
  
    .align-self-md-end {
      align-self: flex-end !important;
    }
  
    .align-self-md-center {
      align-self: center !important;
    }
  
    .align-self-md-baseline {
      align-self: baseline !important;
    }
  
    .align-self-md-stretch {
      align-self: stretch !important;
    }
  
    .order-md-first {
      order: -1 !important;
    }
  
    .order-md-0 {
      order: 0 !important;
    }
  
    .order-md-1 {
      order: 1 !important;
    }
  
    .order-md-2 {
      order: 2 !important;
    }
  
    .order-md-3 {
      order: 3 !important;
    }
  
    .order-md-4 {
      order: 4 !important;
    }
  
    .order-md-5 {
      order: 5 !important;
    }
  
    .order-md-last {
      order: 6 !important;
    }
  
    .m-md-0 {
      margin: 0 !important;
    }
  
    .m-md-1 {
      margin: 0.25rem !important;
    }
  
    .m-md-2 {
      margin: 0.5rem !important;
    }
  
    .m-md-3 {
      margin: 1rem !important;
    }
  
    .m-md-4 {
      margin: 1.5rem !important;
    }
  
    .m-md-5 {
      margin: 3rem !important;
    }
  
    .m-md-auto {
      margin: auto !important;
    }
  
    .mx-md-0 {
      margin-right: 0 !important;
      margin-left: 0 !important;
    }
  
    .mx-md-1 {
      margin-right: 0.25rem !important;
      margin-left: 0.25rem !important;
    }
  
    .mx-md-2 {
      margin-right: 0.5rem !important;
      margin-left: 0.5rem !important;
    }
  
    .mx-md-3 {
      margin-right: 1rem !important;
      margin-left: 1rem !important;
    }
  
    .mx-md-4 {
      margin-right: 1.5rem !important;
      margin-left: 1.5rem !important;
    }
  
    .mx-md-5 {
      margin-right: 3rem !important;
      margin-left: 3rem !important;
    }
  
    .mx-md-auto {
      margin-right: auto !important;
      margin-left: auto !important;
    }
  
    .my-md-0 {
      margin-top: 0 !important;
      margin-bottom: 0 !important;
    }
  
    .my-md-1 {
      margin-top: 0.25rem !important;
      margin-bottom: 0.25rem !important;
    }
  
    .my-md-2 {
      margin-top: 0.5rem !important;
      margin-bottom: 0.5rem !important;
    }
  
    .my-md-3 {
      margin-top: 1rem !important;
      margin-bottom: 1rem !important;
    }
  
    .my-md-4 {
      margin-top: 1.5rem !important;
      margin-bottom: 1.5rem !important;
    }
  
    .my-md-5 {
      margin-top: 3rem !important;
      margin-bottom: 3rem !important;
    }
  
    .my-md-auto {
      margin-top: auto !important;
      margin-bottom: auto !important;
    }
  
    .mt-md-0 {
      margin-top: 0 !important;
    }
  
    .mt-md-1 {
      margin-top: 0.25rem !important;
    }
  
    .mt-md-2 {
      margin-top: 0.5rem !important;
    }
  
    .mt-md-3 {
      margin-top: 1rem !important;
    }
  
    .mt-md-4 {
      margin-top: 1.5rem !important;
    }
  
    .mt-md-5 {
      margin-top: 3rem !important;
    }
  
    .mt-md-auto {
      margin-top: auto !important;
    }
  
    .me-md-0 {
      margin-right: 0 !important;
    }
  
    .me-md-1 {
      margin-right: 0.25rem !important;
    }
  
    .me-md-2 {
      margin-right: 0.5rem !important;
    }
  
    .me-md-3 {
      margin-right: 1rem !important;
    }
  
    .me-md-4 {
      margin-right: 1.5rem !important;
    }
  
    .me-md-5 {
      margin-right: 3rem !important;
    }
  
    .me-md-auto {
      margin-right: auto !important;
    }
  
    .mb-md-0 {
      margin-bottom: 0 !important;
    }
  
    .mb-md-1 {
      margin-bottom: 0.25rem !important;
    }
  
    .mb-md-2 {
      margin-bottom: 0.5rem !important;
    }
  
    .mb-md-3 {
      margin-bottom: 1rem !important;
    }
  
    .mb-md-4 {
      margin-bottom: 1.5rem !important;
    }
  
    .mb-md-5 {
      margin-bottom: 3rem !important;
    }
  
    .mb-md-auto {
      margin-bottom: auto !important;
    }
  
    .ms-md-0 {
      margin-left: 0 !important;
    }
  
    .ms-md-1 {
      margin-left: 0.25rem !important;
    }
  
    .ms-md-2 {
      margin-left: 0.5rem !important;
    }
  
    .ms-md-3 {
      margin-left: 1rem !important;
    }
  
    .ms-md-4 {
      margin-left: 1.5rem !important;
    }
  
    .ms-md-5 {
      margin-left: 3rem !important;
    }
  
    .ms-md-auto {
      margin-left: auto !important;
    }
  
    .p-md-0 {
      padding: 0 !important;
    }
  
    .p-md-1 {
      padding: 0.25rem !important;
    }
  
    .p-md-2 {
      padding: 0.5rem !important;
    }
  
    .p-md-3 {
      padding: 1rem !important;
    }
  
    .p-md-4 {
      padding: 1.5rem !important;
    }
  
    .p-md-5 {
      padding: 3rem !important;
    }
  
    .px-md-0 {
      padding-right: 0 !important;
      padding-left: 0 !important;
    }
  
    .px-md-1 {
      padding-right: 0.25rem !important;
      padding-left: 0.25rem !important;
    }
  
    .px-md-2 {
      padding-right: 0.5rem !important;
      padding-left: 0.5rem !important;
    }
  
    .px-md-3 {
      padding-right: 1rem !important;
      padding-left: 1rem !important;
    }
  
    .px-md-4 {
      padding-right: 1.5rem !important;
      padding-left: 1.5rem !important;
    }
  
    .px-md-5 {
      padding-right: 3rem !important;
      padding-left: 3rem !important;
    }
  
    .py-md-0 {
      padding-top: 0 !important;
      padding-bottom: 0 !important;
    }
  
    .py-md-1 {
      padding-top: 0.25rem !important;
      padding-bottom: 0.25rem !important;
    }
  
    .py-md-2 {
      padding-top: 0.5rem !important;
      padding-bottom: 0.5rem !important;
    }
  
    .py-md-3 {
      padding-top: 1rem !important;
      padding-bottom: 1rem !important;
    }
  
    .py-md-4 {
      padding-top: 1.5rem !important;
      padding-bottom: 1.5rem !important;
    }
  
    .py-md-5 {
      padding-top: 3rem !important;
      padding-bottom: 3rem !important;
    }
  
    .pt-md-0 {
      padding-top: 0 !important;
    }
  
    .pt-md-1 {
      padding-top: 0.25rem !important;
    }
  
    .pt-md-2 {
      padding-top: 0.5rem !important;
    }
  
    .pt-md-3 {
      padding-top: 1rem !important;
    }
  
    .pt-md-4 {
      padding-top: 1.5rem !important;
    }
  
    .pt-md-5 {
      padding-top: 3rem !important;
    }
  
    .pe-md-0 {
      padding-right: 0 !important;
    }
  
    .pe-md-1 {
      padding-right: 0.25rem !important;
    }
  
    .pe-md-2 {
      padding-right: 0.5rem !important;
    }
  
    .pe-md-3 {
      padding-right: 1rem !important;
    }
  
    .pe-md-4 {
      padding-right: 1.5rem !important;
    }
  
    .pe-md-5 {
      padding-right: 3rem !important;
    }
  
    .pb-md-0 {
      padding-bottom: 0 !important;
    }
  
    .pb-md-1 {
      padding-bottom: 0.25rem !important;
    }
  
    .pb-md-2 {
      padding-bottom: 0.5rem !important;
    }
  
    .pb-md-3 {
      padding-bottom: 1rem !important;
    }
  
    .pb-md-4 {
      padding-bottom: 1.5rem !important;
    }
  
    .pb-md-5 {
      padding-bottom: 3rem !important;
    }
  
    .ps-md-0 {
      padding-left: 0 !important;
    }
  
    .ps-md-1 {
      padding-left: 0.25rem !important;
    }
  
    .ps-md-2 {
      padding-left: 0.5rem !important;
    }
  
    .ps-md-3 {
      padding-left: 1rem !important;
    }
  
    .ps-md-4 {
      padding-left: 1.5rem !important;
    }
  
    .ps-md-5 {
      padding-left: 3rem !important;
    }
  
    .hero {
      padding: 24px 0 64px;
    }
  
    .portal-options {
      padding: 0 0 48px;
    }
  
    .portal-options-card-top .btn {
      font-size: 18px;
    }
  
    .services {
      padding: 48px 0px 80px;
    }
  
    .billing {
      padding-top: 55px;
    }
  
    .support {
      padding-top: 50px;
    }
  
    .checkout {
      padding-top: 64px;
    }
  
    .checkout .row {
      --bs-gutter-x: 45px;
    }
  
    .login {
      padding: 100px 0px 110px;
    }
  }
  
  @media (min-width: 992px) {
    .container-lg,
    .container-md,
    .container-sm,
    .container {
      max-width: 960px;
    }

    .form-field-group-align {
      width: 49%;
    }
  
    .col-lg {
      flex: 1 0 0%;
    }
  
    .row-cols-lg-auto > * {
      flex: 0 0 auto;
      width: auto;
    }
  
    .row-cols-lg-1 > * {
      flex: 0 0 auto;
      width: 100%;
    }
  
    .row-cols-lg-2 > * {
      flex: 0 0 auto;
      width: 50%;
    }
  
    .row-cols-lg-3 > * {
      flex: 0 0 auto;
      width: 33.3333333333%;
    }
  
    .row-cols-lg-4 > * {
      flex: 0 0 auto;
      width: 25%;
    }
  
    .row-cols-lg-5 > * {
      flex: 0 0 auto;
      width: 20%;
    }
  
    .row-cols-lg-6 > * {
      flex: 0 0 auto;
      width: 16.6666666667%;
    }
  
    .col-lg-auto {
      flex: 0 0 auto;
      width: auto;
    }
  
    .col-lg-1 {
      flex: 0 0 auto;
      width: 8.33333333%;
    }
  
    .col-lg-2 {
      flex: 0 0 auto;
      width: 16.66666667%;
    }
  
    .col-lg-3 {
      flex: 0 0 auto;
      width: 25%;
    }
  
    .col-lg-4 {
      flex: 0 0 auto;
      width: 33.33333333%;
    }
  
    .col-lg-5 {
      flex: 0 0 auto;
      width: 41.66666667%;
    }
  
    .col-lg-6 {
      flex: 0 0 auto;
      width: 50%;
    }
  
    .col-lg-7 {
      flex: 0 0 auto;
      width: 58.33333333%;
    }
  
    .col-lg-8 {
      flex: 0 0 auto;
      width: 66.66666667%;
    }
  
    .col-lg-9 {
      flex: 0 0 auto;
      width: 75%;
    }
  
    .col-lg-10 {
      flex: 0 0 auto;
      width: 83.33333333%;
    }
  
    .col-lg-11 {
      flex: 0 0 auto;
      width: 91.66666667%;
    }
  
    .col-lg-12 {
      flex: 0 0 auto;
      width: 100%;
    }
  
    .offset-lg-0 {
      margin-left: 0;
    }
  
    .offset-lg-1 {
      margin-left: 8.33333333%;
    }
  
    .offset-lg-2 {
      margin-left: 16.66666667%;
    }
  
    .offset-lg-3 {
      margin-left: 25%;
    }
  
    .offset-lg-4 {
      margin-left: 33.33333333%;
    }
  
    .offset-lg-5 {
      margin-left: 41.66666667%;
    }
  
    .offset-lg-6 {
      margin-left: 50%;
    }
  
    .offset-lg-7 {
      margin-left: 58.33333333%;
    }
  
    .offset-lg-8 {
      margin-left: 66.66666667%;
    }
  
    .offset-lg-9 {
      margin-left: 75%;
    }
  
    .offset-lg-10 {
      margin-left: 83.33333333%;
    }
  
    .offset-lg-11 {
      margin-left: 91.66666667%;
    }
  
    .g-lg-0,
    .gx-lg-0 {
      --bs-gutter-x: 0;
    }
  
    .g-lg-0,
    .gy-lg-0 {
      --bs-gutter-y: 0;
    }
  
    .g-lg-1,
    .gx-lg-1 {
      --bs-gutter-x: 0.25rem;
    }
  
    .g-lg-1,
    .gy-lg-1 {
      --bs-gutter-y: 0.25rem;
    }
  
    .g-lg-2,
    .gx-lg-2 {
      --bs-gutter-x: 0.5rem;
    }
  
    .g-lg-2,
    .gy-lg-2 {
      --bs-gutter-y: 0.5rem;
    }
  
    .g-lg-3,
    .gx-lg-3 {
      --bs-gutter-x: 1rem;
    }
  
    .g-lg-3,
    .gy-lg-3 {
      --bs-gutter-y: 1rem;
    }
  
    .g-lg-4,
    .gx-lg-4 {
      --bs-gutter-x: 1.5rem;
    }
  
    .g-lg-4,
    .gy-lg-4 {
      --bs-gutter-y: 1.5rem;
    }
  
    .g-lg-5,
    .gx-lg-5 {
      --bs-gutter-x: 3rem;
    }
  
    .g-lg-5,
    .gy-lg-5 {
      --bs-gutter-y: 3rem;
    }
  
    .d-lg-inline {
      display: inline !important;
    }
  
    .d-lg-inline-block {
      display: inline-block !important;
    }
  
    .d-lg-block {
      display: block !important;
    }
  
    .d-lg-grid {
      display: grid !important;
    }
  
    .d-lg-table {
      display: table !important;
    }
  
    .d-lg-table-row {
      display: table-row !important;
    }
  
    .d-lg-table-cell {
      display: table-cell !important;
    }
  
    .d-lg-flex {
      display: flex !important;
    }
  
    .d-lg-inline-flex {
      display: inline-flex !important;
    }
  
    .d-lg-none {
      display: none !important;
    }
  
    .flex-lg-fill {
      flex: 1 1 auto !important;
    }
  
    .flex-lg-row {
      flex-direction: row !important;
    }
  
    .flex-lg-column {
      flex-direction: column !important;
    }
  
    .flex-lg-row-reverse {
      flex-direction: row-reverse !important;
    }
  
    .flex-lg-column-reverse {
      flex-direction: column-reverse !important;
    }
  
    .flex-lg-grow-0 {
      flex-grow: 0 !important;
    }
  
    .flex-lg-grow-1 {
      flex-grow: 1 !important;
    }
  
    .flex-lg-shrink-0 {
      flex-shrink: 0 !important;
    }
  
    .flex-lg-shrink-1 {
      flex-shrink: 1 !important;
    }
  
    .flex-lg-wrap {
      flex-wrap: wrap !important;
    }
  
    .flex-lg-nowrap {
      flex-wrap: nowrap !important;
    }
  
    .flex-lg-wrap-reverse {
      flex-wrap: wrap-reverse !important;
    }
  
    .justify-content-lg-start {
      justify-content: flex-start !important;
    }
  
    .justify-content-lg-end {
      justify-content: flex-end !important;
    }
  
    .justify-content-lg-center {
      justify-content: center !important;
    }
  
    .justify-content-lg-between {
      justify-content: space-between !important;
    }
  
    .justify-content-lg-around {
      justify-content: space-around !important;
    }
  
    .justify-content-lg-evenly {
      justify-content: space-evenly !important;
    }
  
    .align-items-lg-start {
      align-items: flex-start !important;
    }
  
    .align-items-lg-end {
      align-items: flex-end !important;
    }
  
    .align-items-lg-center {
      align-items: center !important;
    }
  
    .align-items-lg-baseline {
      align-items: baseline !important;
    }
  
    .align-items-lg-stretch {
      align-items: stretch !important;
    }
  
    .align-content-lg-start {
      align-content: flex-start !important;
    }
  
    .align-content-lg-end {
      align-content: flex-end !important;
    }
  
    .align-content-lg-center {
      align-content: center !important;
    }
  
    .align-content-lg-between {
      align-content: space-between !important;
    }
  
    .align-content-lg-around {
      align-content: space-around !important;
    }
  
    .align-content-lg-stretch {
      align-content: stretch !important;
    }
  
    .align-self-lg-auto {
      align-self: auto !important;
    }
  
    .align-self-lg-start {
      align-self: flex-start !important;
    }
  
    .align-self-lg-end {
      align-self: flex-end !important;
    }
  
    .align-self-lg-center {
      align-self: center !important;
    }
  
    .align-self-lg-baseline {
      align-self: baseline !important;
    }
  
    .align-self-lg-stretch {
      align-self: stretch !important;
    }
  
    .order-lg-first {
      order: -1 !important;
    }
  
    .order-lg-0 {
      order: 0 !important;
    }
  
    .order-lg-1 {
      order: 1 !important;
    }
  
    .order-lg-2 {
      order: 2 !important;
    }
  
    .order-lg-3 {
      order: 3 !important;
    }
  
    .order-lg-4 {
      order: 4 !important;
    }
  
    .order-lg-5 {
      order: 5 !important;
    }
  
    .order-lg-last {
      order: 6 !important;
    }
  
    .m-lg-0 {
      margin: 0 !important;
    }
  
    .m-lg-1 {
      margin: 0.25rem !important;
    }
  
    .m-lg-2 {
      margin: 0.5rem !important;
    }
  
    .m-lg-3 {
      margin: 1rem !important;
    }
  
    .m-lg-4 {
      margin: 1.5rem !important;
    }
  
    .m-lg-5 {
      margin: 3rem !important;
    }
  
    .m-lg-auto {
      margin: auto !important;
    }
  
    .mx-lg-0 {
      margin-right: 0 !important;
      margin-left: 0 !important;
    }
  
    .mx-lg-1 {
      margin-right: 0.25rem !important;
      margin-left: 0.25rem !important;
    }
  
    .mx-lg-2 {
      margin-right: 0.5rem !important;
      margin-left: 0.5rem !important;
    }
  
    .mx-lg-3 {
      margin-right: 1rem !important;
      margin-left: 1rem !important;
    }
  
    .mx-lg-4 {
      margin-right: 1.5rem !important;
      margin-left: 1.5rem !important;
    }
  
    .mx-lg-5 {
      margin-right: 3rem !important;
      margin-left: 3rem !important;
    }
  
    .mx-lg-auto {
      margin-right: auto !important;
      margin-left: auto !important;
    }
  
    .my-lg-0 {
      margin-top: 0 !important;
      margin-bottom: 0 !important;
    }
  
    .my-lg-1 {
      margin-top: 0.25rem !important;
      margin-bottom: 0.25rem !important;
    }
  
    .my-lg-2 {
      margin-top: 0.5rem !important;
      margin-bottom: 0.5rem !important;
    }
  
    .my-lg-3 {
      margin-top: 1rem !important;
      margin-bottom: 1rem !important;
    }
  
    .my-lg-4 {
      margin-top: 1.5rem !important;
      margin-bottom: 1.5rem !important;
    }
  
    .my-lg-5 {
      margin-top: 3rem !important;
      margin-bottom: 3rem !important;
    }
  
    .my-lg-auto {
      margin-top: auto !important;
      margin-bottom: auto !important;
    }
  
    .mt-lg-0 {
      margin-top: 0 !important;
    }
  
    .mt-lg-1 {
      margin-top: 0.25rem !important;
    }
  
    .mt-lg-2 {
      margin-top: 0.5rem !important;
    }
  
    .mt-lg-3 {
      margin-top: 1rem !important;
    }
  
    .mt-lg-4 {
      margin-top: 1.5rem !important;
    }
  
    .mt-lg-5 {
      margin-top: 3rem !important;
    }
  
    .mt-lg-auto {
      margin-top: auto !important;
    }
  
    .me-lg-0 {
      margin-right: 0 !important;
    }
  
    .me-lg-1 {
      margin-right: 0.25rem !important;
    }
  
    .me-lg-2 {
      margin-right: 0.5rem !important;
    }
  
    .me-lg-3 {
      margin-right: 1rem !important;
    }
  
    .me-lg-4 {
      margin-right: 1.5rem !important;
    }
  
    .me-lg-5 {
      margin-right: 3rem !important;
    }
  
    .me-lg-auto {
      margin-right: auto !important;
    }
  
    .mb-lg-0 {
      margin-bottom: 0 !important;
    }
  
    .mb-lg-1 {
      margin-bottom: 0.25rem !important;
    }
  
    .mb-lg-2 {
      margin-bottom: 0.5rem !important;
    }
  
    .mb-lg-3 {
      margin-bottom: 1rem !important;
    }
  
    .mb-lg-4 {
      margin-bottom: 1.5rem !important;
    }
  
    .mb-lg-5 {
      margin-bottom: 3rem !important;
    }
  
    .mb-lg-auto {
      margin-bottom: auto !important;
    }
  
    .ms-lg-0 {
      margin-left: 0 !important;
    }
  
    .ms-lg-1 {
      margin-left: 0.25rem !important;
    }
  
    .ms-lg-2 {
      margin-left: 0.5rem !important;
    }
  
    .ms-lg-3 {
      margin-left: 1rem !important;
    }
  
    .ms-lg-4 {
      margin-left: 1.5rem !important;
    }
  
    .ms-lg-5 {
      margin-left: 3rem !important;
    }
  
    .ms-lg-auto {
      margin-left: auto !important;
    }
  
    .p-lg-0 {
      padding: 0 !important;
    }
  
    .p-lg-1 {
      padding: 0.25rem !important;
    }
  
    .p-lg-2 {
      padding: 0.5rem !important;
    }
  
    .p-lg-3 {
      padding: 1rem !important;
    }
  
    .p-lg-4 {
      padding: 1.5rem !important;
    }
  
    .p-lg-5 {
      padding: 3rem !important;
    }
  
    .px-lg-0 {
      padding-right: 0 !important;
      padding-left: 0 !important;
    }
  
    .px-lg-1 {
      padding-right: 0.25rem !important;
      padding-left: 0.25rem !important;
    }
  
    .px-lg-2 {
      padding-right: 0.5rem !important;
      padding-left: 0.5rem !important;
    }
  
    .px-lg-3 {
      padding-right: 1rem !important;
      padding-left: 1rem !important;
    }
  
    .px-lg-4 {
      padding-right: 1.5rem !important;
      padding-left: 1.5rem !important;
    }
  
    .px-lg-5 {
      padding-right: 3rem !important;
      padding-left: 3rem !important;
    }
  
    .py-lg-0 {
      padding-top: 0 !important;
      padding-bottom: 0 !important;
    }
  
    .py-lg-1 {
      padding-top: 0.25rem !important;
      padding-bottom: 0.25rem !important;
    }
  
    .py-lg-2 {
      padding-top: 0.5rem !important;
      padding-bottom: 0.5rem !important;
    }
  
    .py-lg-3 {
      padding-top: 1rem !important;
      padding-bottom: 1rem !important;
    }
  
    .py-lg-4 {
      padding-top: 1.5rem !important;
      padding-bottom: 1.5rem !important;
    }
  
    .py-lg-5 {
      padding-top: 3rem !important;
      padding-bottom: 3rem !important;
    }
  
    .pt-lg-0 {
      padding-top: 0 !important;
    }
  
    .pt-lg-1 {
      padding-top: 0.25rem !important;
    }
  
    .pt-lg-2 {
      padding-top: 0.5rem !important;
    }
  
    .pt-lg-3 {
      padding-top: 1rem !important;
    }
  
    .pt-lg-4 {
      padding-top: 1.5rem !important;
    }
  
    .pt-lg-5 {
      padding-top: 3rem !important;
    }
  
    .pe-lg-0 {
      padding-right: 0 !important;
    }
  
    .pe-lg-1 {
      padding-right: 0.25rem !important;
    }
  
    .pe-lg-2 {
      padding-right: 0.5rem !important;
    }
  
    .pe-lg-3 {
      padding-right: 1rem !important;
    }
  
    .pe-lg-4 {
      padding-right: 1.5rem !important;
    }
  
    .pe-lg-5 {
      padding-right: 3rem !important;
    }
  
    .pb-lg-0 {
      padding-bottom: 0 !important;
    }
  
    .pb-lg-1 {
      padding-bottom: 0.25rem !important;
    }
  
    .pb-lg-2 {
      padding-bottom: 0.5rem !important;
    }
  
    .pb-lg-3 {
      padding-bottom: 1rem !important;
    }
  
    .pb-lg-4 {
      padding-bottom: 1.5rem !important;
    }
  
    .pb-lg-5 {
      padding-bottom: 3rem !important;
    }
  
    .ps-lg-0 {
      padding-left: 0 !important;
    }
  
    .ps-lg-1 {
      padding-left: 0.25rem !important;
    }
  
    .ps-lg-2 {
      padding-left: 0.5rem !important;
    }
  
    .ps-lg-3 {
      padding-left: 1rem !important;
    }
  
    .ps-lg-4 {
      padding-left: 1.5rem !important;
    }
  
    .ps-lg-5 {
      padding-left: 3rem !important;
    }
  
    .header-nav {
      width: 100%;
      margin-left: 44px;
    }
  
    .header-nav .container {
      padding: 0;
      max-width: 100%;
    }
  
    .header .hamburger {
      display: none;
    }
  
    .checkout-account-wrap {
      grid-row: 1/2;
    }
  
    .checkout-summary-wrap {
      align-self: start;
      top: 100px;
      position: sticky;
      grid-row: 1/3;
    }
  
    .checkout-payment-methods-wrap {
      grid-row: 2/3;
    }
  }
  
  @media (min-width: 1170px) {
    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
      max-width: 1140px;
    }
    .row {
      flex-direction: row!important;
    }
    .col-xl {
      flex: 1 0 0%;
    }
  
    .row-cols-xl-auto > * {
      flex: 0 0 auto;
      width: auto;
    }
  
    .row-cols-xl-1 > * {
      flex: 0 0 auto;
      width: 100%;
    }
  
    .row-cols-xl-2 > * {
      flex: 0 0 auto;
      width: 50%;
    }
  
    .row-cols-xl-3 > * {
      flex: 0 0 auto;
      width: 33.3333333333%;
    }
  
    .row-cols-xl-4 > * {
      flex: 0 0 auto;
      width: 25%;
    }
  
    .row-cols-xl-5 > * {
      flex: 0 0 auto;
      width: 20%;
    }
  
    .row-cols-xl-6 > * {
      flex: 0 0 auto;
      width: 16.6666666667%;
    }
  
    .col-xl-auto {
      flex: 0 0 auto;
      width: auto;
    }
  
    .col-xl-1 {
      flex: 0 0 auto;
      width: 8.33333333%;
    }
  
    .col-xl-2 {
      flex: 0 0 auto;
      width: 16.66666667%;
    }
  
    .col-xl-3 {
      flex: 0 0 auto;
      width: 25%;
    }
  
    .col-xl-4 {
      flex: 0 0 auto;
      width: 33.33333333%;
    }
  
    .col-xl-5 {
      flex: 0 0 auto;
      width: 41.66666667%;
    }
  
    .col-xl-6 {
      flex: 0 0 auto;
      width: 50%;
    }
  
    .col-xl-7 {
      flex: 0 0 auto;
      width: 58.33333333%;
    }
  
    .col-xl-8 {
      flex: 0 0 auto;
      width: 66.66666667%;
    }
  
    .col-xl-9 {
      flex: 0 0 auto;
      width: 75%;
    }
  
    .col-xl-10 {
      flex: 0 0 auto;
      width: 83.33333333%;
    }
  
    .col-xl-11 {
      flex: 0 0 auto;
      width: 91.66666667%;
    }
  
    .col-xl-12 {
      flex: 0 0 auto;
      width: 100%;
    }
  
    .offset-xl-0 {
      margin-left: 0;
    }
  
    .offset-xl-1 {
      margin-left: 8.33333333%;
    }
  
    .offset-xl-2 {
      margin-left: 16.66666667%;
    }
  
    .offset-xl-3 {
      margin-left: 25%;
    }
  
    .offset-xl-4 {
      margin-left: 33.33333333%;
    }
  
    .offset-xl-5 {
      margin-left: 41.66666667%;
    }
  
    .offset-xl-6 {
      margin-left: 50%;
    }
  
    .offset-xl-7 {
      margin-left: 58.33333333%;
    }
  
    .offset-xl-8 {
      margin-left: 66.66666667%;
    }
  
    .offset-xl-9 {
      margin-left: 75%;
    }
  
    .offset-xl-10 {
      margin-left: 83.33333333%;
    }
  
    .offset-xl-11 {
      margin-left: 91.66666667%;
    }
  
    .g-xl-0,
    .gx-xl-0 {
      --bs-gutter-x: 0;
    }
  
    .g-xl-0,
    .gy-xl-0 {
      --bs-gutter-y: 0;
    }
  
    .g-xl-1,
    .gx-xl-1 {
      --bs-gutter-x: 0.25rem;
    }
  
    .g-xl-1,
    .gy-xl-1 {
      --bs-gutter-y: 0.25rem;
    }
  
    .g-xl-2,
    .gx-xl-2 {
      --bs-gutter-x: 0.5rem;
    }
  
    .g-xl-2,
    .gy-xl-2 {
      --bs-gutter-y: 0.5rem;
    }
  
    .g-xl-3,
    .gx-xl-3 {
      --bs-gutter-x: 1rem;
    }
  
    .g-xl-3,
    .gy-xl-3 {
      --bs-gutter-y: 1rem;
    }
  
    .g-xl-4,
    .gx-xl-4 {
      --bs-gutter-x: 1.5rem;
    }
  
    .g-xl-4,
    .gy-xl-4 {
      --bs-gutter-y: 1.5rem;
    }
  
    .g-xl-5,
    .gx-xl-5 {
      --bs-gutter-x: 3rem;
    }
  
    .g-xl-5,
    .gy-xl-5 {
      --bs-gutter-y: 3rem;
    }
  
    .d-xl-inline {
      display: inline !important;
    }
  
    .d-xl-inline-block {
      display: inline-block !important;
    }
  
    .d-xl-block {
      display: block !important;
    }
  
    .d-xl-grid {
      display: grid !important;
    }
  
    .d-xl-table {
      display: table !important;
    }
  
    .d-xl-table-row {
      display: table-row !important;
    }
  
    .d-xl-table-cell {
      display: table-cell !important;
    }
  
    .d-xl-flex {
      display: flex !important;
    }
  
    .d-xl-inline-flex {
      display: inline-flex !important;
    }
  
    .d-xl-none {
      display: none !important;
    }
  
    .flex-xl-fill {
      flex: 1 1 auto !important;
    }
  
    .flex-xl-row {
      flex-direction: row !important;
    }
  
    .flex-xl-column {
      flex-direction: column !important;
    }
  
    .flex-xl-row-reverse {
      flex-direction: row-reverse !important;
    }
  
    .flex-xl-column-reverse {
      flex-direction: column-reverse !important;
    }
  
    .flex-xl-grow-0 {
      flex-grow: 0 !important;
    }
  
    .flex-xl-grow-1 {
      flex-grow: 1 !important;
    }
  
    .flex-xl-shrink-0 {
      flex-shrink: 0 !important;
    }
  
    .flex-xl-shrink-1 {
      flex-shrink: 1 !important;
    }
  
    .flex-xl-wrap {
      flex-wrap: wrap !important;
    }
  
    .flex-xl-nowrap {
      flex-wrap: nowrap !important;
    }
  
    .flex-xl-wrap-reverse {
      flex-wrap: wrap-reverse !important;
    }
  
    .justify-content-xl-start {
      justify-content: flex-start !important;
    }
  
    .justify-content-xl-end {
      justify-content: flex-end !important;
    }
  
    .justify-content-xl-center {
      justify-content: center !important;
    }
  
    .justify-content-xl-between {
      justify-content: space-between !important;
    }
  
    .justify-content-xl-around {
      justify-content: space-around !important;
    }
  
    .justify-content-xl-evenly {
      justify-content: space-evenly !important;
    }
  
    .align-items-xl-start {
      align-items: flex-start !important;
    }
  
    .align-items-xl-end {
      align-items: flex-end !important;
    }
  
    .align-items-xl-center {
      align-items: center !important;
    }
  
    .align-items-xl-baseline {
      align-items: baseline !important;
    }
  
    .align-items-xl-stretch {
      align-items: stretch !important;
    }
  
    .align-content-xl-start {
      align-content: flex-start !important;
    }
  
    .align-content-xl-end {
      align-content: flex-end !important;
    }
  
    .align-content-xl-center {
      align-content: center !important;
    }
  
    .align-content-xl-between {
      align-content: space-between !important;
    }
  
    .align-content-xl-around {
      align-content: space-around !important;
    }
  
    .align-content-xl-stretch {
      align-content: stretch !important;
    }
  
    .align-self-xl-auto {
      align-self: auto !important;
    }
  
    .align-self-xl-start {
      align-self: flex-start !important;
    }
  
    .align-self-xl-end {
      align-self: flex-end !important;
    }
  
    .align-self-xl-center {
      align-self: center !important;
    }
  
    .align-self-xl-baseline {
      align-self: baseline !important;
    }
  
    .align-self-xl-stretch {
      align-self: stretch !important;
    }
  
    .order-xl-first {
      order: -1 !important;
    }
  
    .order-xl-0 {
      order: 0 !important;
    }
  
    .order-xl-1 {
      order: 1 !important;
    }
  
    .order-xl-2 {
      order: 2 !important;
    }
  
    .order-xl-3 {
      order: 3 !important;
    }
  
    .order-xl-4 {
      order: 4 !important;
    }
  
    .order-xl-5 {
      order: 5 !important;
    }
  
    .order-xl-last {
      order: 6 !important;
    }
  
    .m-xl-0 {
      margin: 0 !important;
    }
  
    .m-xl-1 {
      margin: 0.25rem !important;
    }
  
    .m-xl-2 {
      margin: 0.5rem !important;
    }
  
    .m-xl-3 {
      margin: 1rem !important;
    }
  
    .m-xl-4 {
      margin: 1.5rem !important;
    }
  
    .m-xl-5 {
      margin: 3rem !important;
    }
  
    .m-xl-auto {
      margin: auto !important;
    }
  
    .mx-xl-0 {
      margin-right: 0 !important;
      margin-left: 0 !important;
    }
  
    .mx-xl-1 {
      margin-right: 0.25rem !important;
      margin-left: 0.25rem !important;
    }
  
    .mx-xl-2 {
      margin-right: 0.5rem !important;
      margin-left: 0.5rem !important;
    }
  
    .mx-xl-3 {
      margin-right: 1rem !important;
      margin-left: 1rem !important;
    }
  
    .mx-xl-4 {
      margin-right: 1.5rem !important;
      margin-left: 1.5rem !important;
    }
  
    .mx-xl-5 {
      margin-right: 3rem !important;
      margin-left: 3rem !important;
    }
  
    .mx-xl-auto {
      margin-right: auto !important;
      margin-left: auto !important;
    }
  
    .my-xl-0 {
      margin-top: 0 !important;
      margin-bottom: 0 !important;
    }
  
    .my-xl-1 {
      margin-top: 0.25rem !important;
      margin-bottom: 0.25rem !important;
    }
  
    .my-xl-2 {
      margin-top: 0.5rem !important;
      margin-bottom: 0.5rem !important;
    }
  
    .my-xl-3 {
      margin-top: 1rem !important;
      margin-bottom: 1rem !important;
    }
  
    .my-xl-4 {
      margin-top: 1.5rem !important;
      margin-bottom: 1.5rem !important;
    }
  
    .my-xl-5 {
      margin-top: 3rem !important;
      margin-bottom: 3rem !important;
    }
  
    .my-xl-auto {
      margin-top: auto !important;
      margin-bottom: auto !important;
    }
  
    .mt-xl-0 {
      margin-top: 0 !important;
    }
  
    .mt-xl-1 {
      margin-top: 0.25rem !important;
    }
  
    .mt-xl-2 {
      margin-top: 0.5rem !important;
    }
  
    .mt-xl-3 {
      margin-top: 1rem !important;
    }
  
    .mt-xl-4 {
      margin-top: 1.5rem !important;
    }
  
    .mt-xl-5 {
      margin-top: 3rem !important;
    }
  
    .mt-xl-auto {
      margin-top: auto !important;
    }
  
    .me-xl-0 {
      margin-right: 0 !important;
    }
  
    .me-xl-1 {
      margin-right: 0.25rem !important;
    }
  
    .me-xl-2 {
      margin-right: 0.5rem !important;
    }
  
    .me-xl-3 {
      margin-right: 1rem !important;
    }
  
    .me-xl-4 {
      margin-right: 1.5rem !important;
    }
  
    .me-xl-5 {
      margin-right: 3rem !important;
    }
  
    .me-xl-auto {
      margin-right: auto !important;
    }
  
    .mb-xl-0 {
      margin-bottom: 0 !important;
    }
  
    .mb-xl-1 {
      margin-bottom: 0.25rem !important;
    }
  
    .mb-xl-2 {
      margin-bottom: 0.5rem !important;
    }
  
    .mb-xl-3 {
      margin-bottom: 1rem !important;
    }
  
    .mb-xl-4 {
      margin-bottom: 1.5rem !important;
    }
  
    .mb-xl-5 {
      margin-bottom: 3rem !important;
    }
  
    .mb-xl-auto {
      margin-bottom: auto !important;
    }
  
    .ms-xl-0 {
      margin-left: 0 !important;
    }
  
    .ms-xl-1 {
      margin-left: 0.25rem !important;
    }
  
    .ms-xl-2 {
      margin-left: 0.5rem !important;
    }
  
    .ms-xl-3 {
      margin-left: 1rem !important;
    }
  
    .ms-xl-4 {
      margin-left: 1.5rem !important;
    }
  
    .ms-xl-5 {
      margin-left: 3rem !important;
    }
  
    .ms-xl-auto {
      margin-left: auto !important;
    }
  
    .p-xl-0 {
      padding: 0 !important;
    }
  
    .p-xl-1 {
      padding: 0.25rem !important;
    }
  
    .p-xl-2 {
      padding: 0.5rem !important;
    }
  
    .p-xl-3 {
      padding: 1rem !important;
    }
  
    .p-xl-4 {
      padding: 1.5rem !important;
    }
  
    .p-xl-5 {
      padding: 3rem !important;
    }
  
    .px-xl-0 {
      padding-right: 0 !important;
      padding-left: 0 !important;
    }
  
    .px-xl-1 {
      padding-right: 0.25rem !important;
      padding-left: 0.25rem !important;
    }
  
    .px-xl-2 {
      padding-right: 0.5rem !important;
      padding-left: 0.5rem !important;
    }
  
    .px-xl-3 {
      padding-right: 1rem !important;
      padding-left: 1rem !important;
    }
  
    .px-xl-4 {
      padding-right: 1.5rem !important;
      padding-left: 1.5rem !important;
    }
  
    .px-xl-5 {
      padding-right: 3rem !important;
      padding-left: 3rem !important;
    }
  
    .py-xl-0 {
      padding-top: 0 !important;
      padding-bottom: 0 !important;
    }
  
    .py-xl-1 {
      padding-top: 0.25rem !important;
      padding-bottom: 0.25rem !important;
    }
  
    .py-xl-2 {
      padding-top: 0.5rem !important;
      padding-bottom: 0.5rem !important;
    }
  
    .py-xl-3 {
      padding-top: 1rem !important;
      padding-bottom: 1rem !important;
    }
  
    .py-xl-4 {
      padding-top: 1.5rem !important;
      padding-bottom: 1.5rem !important;
    }
  
    .py-xl-5 {
      padding-top: 3rem !important;
      padding-bottom: 3rem !important;
    }
  
    .pt-xl-0 {
      padding-top: 0 !important;
    }
  
    .pt-xl-1 {
      padding-top: 0.25rem !important;
    }
  
    .pt-xl-2 {
      padding-top: 0.5rem !important;
    }
  
    .pt-xl-3 {
      padding-top: 1rem !important;
    }
  
    .pt-xl-4 {
      padding-top: 1.5rem !important;
    }
  
    .pt-xl-5 {
      padding-top: 3rem !important;
    }
  
    .pe-xl-0 {
      padding-right: 0 !important;
    }
  
    .pe-xl-1 {
      padding-right: 0.25rem !important;
    }
  
    .pe-xl-2 {
      padding-right: 0.5rem !important;
    }
  
    .pe-xl-3 {
      padding-right: 1rem !important;
    }
  
    .pe-xl-4 {
      padding-right: 1.5rem !important;
    }
  
    .pe-xl-5 {
      padding-right: 3rem !important;
    }
  
    .pb-xl-0 {
      padding-bottom: 0 !important;
    }
  
    .pb-xl-1 {
      padding-bottom: 0.25rem !important;
    }
  
    .pb-xl-2 {
      padding-bottom: 0.5rem !important;
    }
  
    .pb-xl-3 {
      padding-bottom: 1rem !important;
    }
  
    .pb-xl-4 {
      padding-bottom: 1.5rem !important;
    }
  
    .pb-xl-5 {
      padding-bottom: 3rem !important;
    }
  
    .ps-xl-0 {
      padding-left: 0 !important;
    }
  
    .ps-xl-1 {
      padding-left: 0.25rem !important;
    }
  
    .ps-xl-2 {
      padding-left: 0.5rem !important;
    }
  
    .ps-xl-3 {
      padding-left: 1rem !important;
    }
  
    .ps-xl-4 {
      padding-left: 1.5rem !important;
    }
  
    .ps-xl-5 {
      padding-left: 3rem !important;
    }
  }
  
  @media (min-width: 1280px) {
    .container-xxl,
    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
      max-width: 1240px;
    }
  
    .col-xxl {
      flex: 1 0 0%;
    }
  
    .row-cols-xxl-auto > * {
      flex: 0 0 auto;
      width: auto;
    }
  
    .row-cols-xxl-1 > * {
      flex: 0 0 auto;
      width: 100%;
    }
  
    .row-cols-xxl-2 > * {
      flex: 0 0 auto;
      width: 50%;
    }
  
    .row-cols-xxl-3 > * {
      flex: 0 0 auto;
      width: 33.3333333333%;
    }
  
    .row-cols-xxl-4 > * {
      flex: 0 0 auto;
      width: 25%;
    }
  
    .row-cols-xxl-5 > * {
      flex: 0 0 auto;
      width: 20%;
    }
  
    .row-cols-xxl-6 > * {
      flex: 0 0 auto;
      width: 16.6666666667%;
    }
  
    .col-xxl-auto {
      flex: 0 0 auto;
      width: auto;
    }
  
    .col-xxl-1 {
      flex: 0 0 auto;
      width: 8.33333333%;
    }
  
    .col-xxl-2 {
      flex: 0 0 auto;
      width: 16.66666667%;
    }
  
    .col-xxl-3 {
      flex: 0 0 auto;
      width: 25%;
    }
  
    .col-xxl-4 {
      flex: 0 0 auto;
      width: 33.33333333%;
    }
  
    .col-xxl-5 {
      flex: 0 0 auto;
      width: 41.66666667%;
    }
  
    .col-xxl-6 {
      flex: 0 0 auto;
      width: 50%;
    }
  
    .col-xxl-7 {
      flex: 0 0 auto;
      width: 58.33333333%;
    }
  
    .col-xxl-8 {
      flex: 0 0 auto;
      width: 66.66666667%;
    }
  
    .col-xxl-9 {
      flex: 0 0 auto;
      width: 75%;
    }
  
    .col-xxl-10 {
      flex: 0 0 auto;
      width: 83.33333333%;
    }
  
    .col-xxl-11 {
      flex: 0 0 auto;
      width: 91.66666667%;
    }
  
    .col-xxl-12 {
      flex: 0 0 auto;
      width: 100%;
    }
  
    .offset-xxl-0 {
      margin-left: 0;
    }
  
    .offset-xxl-1 {
      margin-left: 8.33333333%;
    }
  
    .offset-xxl-2 {
      margin-left: 16.66666667%;
    }
  
    .offset-xxl-3 {
      margin-left: 25%;
    }
  
    .offset-xxl-4 {
      margin-left: 33.33333333%;
    }
  
    .offset-xxl-5 {
      margin-left: 41.66666667%;
    }
  
    .offset-xxl-6 {
      margin-left: 50%;
    }
  
    .offset-xxl-7 {
      margin-left: 58.33333333%;
    }
  
    .offset-xxl-8 {
      margin-left: 66.66666667%;
    }
  
    .offset-xxl-9 {
      margin-left: 75%;
    }
  
    .offset-xxl-10 {
      margin-left: 83.33333333%;
    }
  
    .offset-xxl-11 {
      margin-left: 91.66666667%;
    }
  
    .g-xxl-0,
    .gx-xxl-0 {
      --bs-gutter-x: 0;
    }
  
    .g-xxl-0,
    .gy-xxl-0 {
      --bs-gutter-y: 0;
    }
  
    .g-xxl-1,
    .gx-xxl-1 {
      --bs-gutter-x: 0.25rem;
    }
  
    .g-xxl-1,
    .gy-xxl-1 {
      --bs-gutter-y: 0.25rem;
    }
  
    .g-xxl-2,
    .gx-xxl-2 {
      --bs-gutter-x: 0.5rem;
    }
  
    .g-xxl-2,
    .gy-xxl-2 {
      --bs-gutter-y: 0.5rem;
    }
  
    .g-xxl-3,
    .gx-xxl-3 {
      --bs-gutter-x: 1rem;
    }
  
    .g-xxl-3,
    .gy-xxl-3 {
      --bs-gutter-y: 1rem;
    }
  
    .g-xxl-4,
    .gx-xxl-4 {
      --bs-gutter-x: 1.5rem;
    }
  
    .g-xxl-4,
    .gy-xxl-4 {
      --bs-gutter-y: 1.5rem;
    }
  
    .g-xxl-5,
    .gx-xxl-5 {
      --bs-gutter-x: 3rem;
    }
  
    .g-xxl-5,
    .gy-xxl-5 {
      --bs-gutter-y: 3rem;
    }
  
    .d-xxl-inline {
      display: inline !important;
    }
  
    .d-xxl-inline-block {
      display: inline-block !important;
    }
  
    .d-xxl-block {
      display: block !important;
    }
  
    .d-xxl-grid {
      display: grid !important;
    }
  
    .d-xxl-table {
      display: table !important;
    }
  
    .d-xxl-table-row {
      display: table-row !important;
    }
  
    .d-xxl-table-cell {
      display: table-cell !important;
    }
  
    .d-xxl-flex {
      display: flex !important;
    }
  
    .d-xxl-inline-flex {
      display: inline-flex !important;
    }
  
    .d-xxl-none {
      display: none !important;
    }
  
    .flex-xxl-fill {
      flex: 1 1 auto !important;
    }
  
    .flex-xxl-row {
      flex-direction: row !important;
    }
  
    .flex-xxl-column {
      flex-direction: column !important;
    }
  
    .flex-xxl-row-reverse {
      flex-direction: row-reverse !important;
    }
  
    .flex-xxl-column-reverse {
      flex-direction: column-reverse !important;
    }
  
    .flex-xxl-grow-0 {
      flex-grow: 0 !important;
    }
  
    .flex-xxl-grow-1 {
      flex-grow: 1 !important;
    }
  
    .flex-xxl-shrink-0 {
      flex-shrink: 0 !important;
    }
  
    .flex-xxl-shrink-1 {
      flex-shrink: 1 !important;
    }
  
    .flex-xxl-wrap {
      flex-wrap: wrap !important;
    }
  
    .flex-xxl-nowrap {
      flex-wrap: nowrap !important;
    }
  
    .flex-xxl-wrap-reverse {
      flex-wrap: wrap-reverse !important;
    }
  
    .justify-content-xxl-start {
      justify-content: flex-start !important;
    }
  
    .justify-content-xxl-end {
      justify-content: flex-end !important;
    }
  
    .justify-content-xxl-center {
      justify-content: center !important;
    }
  
    .justify-content-xxl-between {
      justify-content: space-between !important;
    }
  
    .justify-content-xxl-around {
      justify-content: space-around !important;
    }
  
    .justify-content-xxl-evenly {
      justify-content: space-evenly !important;
    }
  
    .align-items-xxl-start {
      align-items: flex-start !important;
    }
  
    .align-items-xxl-end {
      align-items: flex-end !important;
    }
  
    .align-items-xxl-center {
      align-items: center !important;
    }
  
    .align-items-xxl-baseline {
      align-items: baseline !important;
    }
  
    .align-items-xxl-stretch {
      align-items: stretch !important;
    }
  
    .align-content-xxl-start {
      align-content: flex-start !important;
    }
  
    .align-content-xxl-end {
      align-content: flex-end !important;
    }
  
    .align-content-xxl-center {
      align-content: center !important;
    }
  
    .align-content-xxl-between {
      align-content: space-between !important;
    }
  
    .align-content-xxl-around {
      align-content: space-around !important;
    }
  
    .align-content-xxl-stretch {
      align-content: stretch !important;
    }
  
    .align-self-xxl-auto {
      align-self: auto !important;
    }
  
    .align-self-xxl-start {
      align-self: flex-start !important;
    }
  
    .align-self-xxl-end {
      align-self: flex-end !important;
    }
  
    .align-self-xxl-center {
      align-self: center !important;
    }
  
    .align-self-xxl-baseline {
      align-self: baseline !important;
    }
  
    .align-self-xxl-stretch {
      align-self: stretch !important;
    }
  
    .order-xxl-first {
      order: -1 !important;
    }
  
    .order-xxl-0 {
      order: 0 !important;
    }
  
    .order-xxl-1 {
      order: 1 !important;
    }
  
    .order-xxl-2 {
      order: 2 !important;
    }
  
    .order-xxl-3 {
      order: 3 !important;
    }
  
    .order-xxl-4 {
      order: 4 !important;
    }
  
    .order-xxl-5 {
      order: 5 !important;
    }
  
    .order-xxl-last {
      order: 6 !important;
    }
  
    .m-xxl-0 {
      margin: 0 !important;
    }
  
    .m-xxl-1 {
      margin: 0.25rem !important;
    }
  
    .m-xxl-2 {
      margin: 0.5rem !important;
    }
  
    .m-xxl-3 {
      margin: 1rem !important;
    }
  
    .m-xxl-4 {
      margin: 1.5rem !important;
    }
  
    .m-xxl-5 {
      margin: 3rem !important;
    }
  
    .m-xxl-auto {
      margin: auto !important;
    }
  
    .mx-xxl-0 {
      margin-right: 0 !important;
      margin-left: 0 !important;
    }
  
    .mx-xxl-1 {
      margin-right: 0.25rem !important;
      margin-left: 0.25rem !important;
    }
  
    .mx-xxl-2 {
      margin-right: 0.5rem !important;
      margin-left: 0.5rem !important;
    }
  
    .mx-xxl-3 {
      margin-right: 1rem !important;
      margin-left: 1rem !important;
    }
  
    .mx-xxl-4 {
      margin-right: 1.5rem !important;
      margin-left: 1.5rem !important;
    }
  
    .mx-xxl-5 {
      margin-right: 3rem !important;
      margin-left: 3rem !important;
    }
  
    .mx-xxl-auto {
      margin-right: auto !important;
      margin-left: auto !important;
    }
  
    .my-xxl-0 {
      margin-top: 0 !important;
      margin-bottom: 0 !important;
    }
  
    .my-xxl-1 {
      margin-top: 0.25rem !important;
      margin-bottom: 0.25rem !important;
    }
  
    .my-xxl-2 {
      margin-top: 0.5rem !important;
      margin-bottom: 0.5rem !important;
    }
  
    .my-xxl-3 {
      margin-top: 1rem !important;
      margin-bottom: 1rem !important;
    }
  
    .my-xxl-4 {
      margin-top: 1.5rem !important;
      margin-bottom: 1.5rem !important;
    }
  
    .my-xxl-5 {
      margin-top: 3rem !important;
      margin-bottom: 3rem !important;
    }
  
    .my-xxl-auto {
      margin-top: auto !important;
      margin-bottom: auto !important;
    }
  
    .mt-xxl-0 {
      margin-top: 0 !important;
    }
  
    .mt-xxl-1 {
      margin-top: 0.25rem !important;
    }
  
    .mt-xxl-2 {
      margin-top: 0.5rem !important;
    }
  
    .mt-xxl-3 {
      margin-top: 1rem !important;
    }
  
    .mt-xxl-4 {
      margin-top: 1.5rem !important;
    }
  
    .mt-xxl-5 {
      margin-top: 3rem !important;
    }
  
    .mt-xxl-auto {
      margin-top: auto !important;
    }
  
    .me-xxl-0 {
      margin-right: 0 !important;
    }
  
    .me-xxl-1 {
      margin-right: 0.25rem !important;
    }
  
    .me-xxl-2 {
      margin-right: 0.5rem !important;
    }
  
    .me-xxl-3 {
      margin-right: 1rem !important;
    }
  
    .me-xxl-4 {
      margin-right: 1.5rem !important;
    }
  
    .me-xxl-5 {
      margin-right: 3rem !important;
    }
  
    .me-xxl-auto {
      margin-right: auto !important;
    }
  
    .mb-xxl-0 {
      margin-bottom: 0 !important;
    }
  
    .mb-xxl-1 {
      margin-bottom: 0.25rem !important;
    }
  
    .mb-xxl-2 {
      margin-bottom: 0.5rem !important;
    }
  
    .mb-xxl-3 {
      margin-bottom: 1rem !important;
    }
  
    .mb-xxl-4 {
      margin-bottom: 1.5rem !important;
    }
  
    .mb-xxl-5 {
      margin-bottom: 3rem !important;
    }
  
    .mb-xxl-auto {
      margin-bottom: auto !important;
    }
  
    .ms-xxl-0 {
      margin-left: 0 !important;
    }
  
    .ms-xxl-1 {
      margin-left: 0.25rem !important;
    }
  
    .ms-xxl-2 {
      margin-left: 0.5rem !important;
    }
  
    .ms-xxl-3 {
      margin-left: 1rem !important;
    }
  
    .ms-xxl-4 {
      margin-left: 1.5rem !important;
    }
  
    .ms-xxl-5 {
      margin-left: 3rem !important;
    }
  
    .ms-xxl-auto {
      margin-left: auto !important;
    }
  
    .p-xxl-0 {
      padding: 0 !important;
    }
  
    .p-xxl-1 {
      padding: 0.25rem !important;
    }
  
    .p-xxl-2 {
      padding: 0.5rem !important;
    }
  
    .p-xxl-3 {
      padding: 1rem !important;
    }
  
    .p-xxl-4 {
      padding: 1.5rem !important;
    }
  
    .p-xxl-5 {
      padding: 3rem !important;
    }
  
    .px-xxl-0 {
      padding-right: 0 !important;
      padding-left: 0 !important;
    }
  
    .px-xxl-1 {
      padding-right: 0.25rem !important;
      padding-left: 0.25rem !important;
    }
  
    .px-xxl-2 {
      padding-right: 0.5rem !important;
      padding-left: 0.5rem !important;
    }
  
    .px-xxl-3 {
      padding-right: 1rem !important;
      padding-left: 1rem !important;
    }
  
    .px-xxl-4 {
      padding-right: 1.5rem !important;
      padding-left: 1.5rem !important;
    }
  
    .px-xxl-5 {
      padding-right: 3rem !important;
      padding-left: 3rem !important;
    }
  
    .py-xxl-0 {
      padding-top: 0 !important;
      padding-bottom: 0 !important;
    }
  
    .py-xxl-1 {
      padding-top: 0.25rem !important;
      padding-bottom: 0.25rem !important;
    }
  
    .py-xxl-2 {
      padding-top: 0.5rem !important;
      padding-bottom: 0.5rem !important;
    }
  
    .py-xxl-3 {
      padding-top: 1rem !important;
      padding-bottom: 1rem !important;
    }
  
    .py-xxl-4 {
      padding-top: 1.5rem !important;
      padding-bottom: 1.5rem !important;
    }
  
    .py-xxl-5 {
      padding-top: 3rem !important;
      padding-bottom: 3rem !important;
    }
  
    .pt-xxl-0 {
      padding-top: 0 !important;
    }
  
    .pt-xxl-1 {
      padding-top: 0.25rem !important;
    }
  
    .pt-xxl-2 {
      padding-top: 0.5rem !important;
    }
  
    .pt-xxl-3 {
      padding-top: 1rem !important;
    }
  
    .pt-xxl-4 {
      padding-top: 1.5rem !important;
    }
  
    .pt-xxl-5 {
      padding-top: 3rem !important;
    }
  
    .pe-xxl-0 {
      padding-right: 0 !important;
    }
  
    .pe-xxl-1 {
      padding-right: 0.25rem !important;
    }
  
    .pe-xxl-2 {
      padding-right: 0.5rem !important;
    }
  
    .pe-xxl-3 {
      padding-right: 1rem !important;
    }
  
    .pe-xxl-4 {
      padding-right: 1.5rem !important;
    }
  
    .pe-xxl-5 {
      padding-right: 3rem !important;
    }
  
    .pb-xxl-0 {
      padding-bottom: 0 !important;
    }
  
    .pb-xxl-1 {
      padding-bottom: 0.25rem !important;
    }
  
    .pb-xxl-2 {
      padding-bottom: 0.5rem !important;
    }
  
    .pb-xxl-3 {
      padding-bottom: 1rem !important;
    }
  
    .pb-xxl-4 {
      padding-bottom: 1.5rem !important;
    }
  
    .pb-xxl-5 {
      padding-bottom: 3rem !important;
    }
  
    .ps-xxl-0 {
      padding-left: 0 !important;
    }
  
    .ps-xxl-1 {
      padding-left: 0.25rem !important;
    }
  
    .ps-xxl-2 {
      padding-left: 0.5rem !important;
    }
  
    .ps-xxl-3 {
      padding-left: 1rem !important;
    }
  
    .ps-xxl-4 {
      padding-left: 1.5rem !important;
    }
  
    .ps-xxl-5 {
      padding-left: 3rem !important;
    }
  
    .support .row {
      --bs-gutter-x: 45px;
    }
  }

  @media (min-width: 1500px) {

    .container-xxl,
    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
      max-width: 1400px;
    }
     
    
  }
  
  @media (max-width: 1279px) {
    .services-list {
      gap: 20px 25px;
    }
  
    .checkout-payment-method-card .-card-cvv {
      margin-right: 22px;
    }
  }
  
  @media (max-width: 1169px) {
    .services p {
      max-width: 80%;
    }
  
    .services-block {
      padding: 24px 25px 30px;
    }
  
    .services-list {
      grid-template-columns: 1fr;
    }
  
    .payment-methods-active {
      min-width: 360px;
    }
  
    .checkout-payment-method-card .-double {
      grid-column: 1/3;
    }
  
    .checkout-payment-method-card .-card-cvv {
      margin: 0;
      max-width: calc(50% - 16px);
    }
  
    .checkout-payment-method-card .-postal-code {
      width: calc(50% - 16px);
    }
  }
  
  @media (max-width: 991px) {
    .header-nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #141414;
      z-index: 910;
      margin: 0;
      padding: 90px 0 20px;
      visibility: hidden;
      transform: translateX(100%);
      transition: 0.4s;
      overflow: auto;
    }
  
    .header-nav .container {
      min-height: 100%;
      flex-direction: column;
      align-items: stretch;
    }
  
    .header-nav ul {
      display: block;
      margin: auto;
      width: 100%;
    }
  
    .header-nav ul li {
      flex-wrap: wrap;
      justify-content: space-between;
      border-bottom: 1px solid #344054;
      padding-bottom: 12px;
    }
  
    .header-nav ul li:not(:last-child) {
      margin-right: 0;
      margin-bottom: 12px;
    }
  
    .header-nav ul li a {
      font-size: 20px;
      line-height: 150%;
    }
  
    .header-actions {
      justify-content: center;
    }
  
    .header-btn {
      margin-top: 30px;
    }
  
    .popup {
      padding: 0;
    }
  
    .popup-datepicker .popup-inner {
      max-width: 658px;
    }
  
    .popup-datepicker-bottom {
      margin: 0;
      width: 100%;
    }
  
    .portal-options-items {
      grid-template-columns: 1fr;
    }
  
    .customer-portal .channels-search input {
      width: 280px;
    }
  
    .customer-portal .channels-table-inner {
      min-width: 950px;
    }
  
    .payment-methods-inner {
      display: block;
    }
  
    .payment-methods-active {
      min-width: auto;
    }
  
    .payment-methods-card {
      margin-left: 0;
      margin-top: 16px;
    }
  
    .checkout-inner {
      grid-template-columns: 1fr;
    }
  
    .checkout-safe-payments {
      margin-top: 30px;
      margin-bottom: 40px;
    }
  }
  
  @media (max-width: 991px) and (max-width: 767px) {
    .header-nav ul li a {
      font-size: 18px;
    }
  }
  
  @media (max-width: 767px) {
   
    h1 {
      font-size: 42px;
    }
  
    h2 {
      font-size: 24px;
    }
  
    h3 {
      font-size: 20px;
    }
  
    h4 {
      font-size: 18px;
    }
  
    p {
      margin-bottom: 15px;
    }
  
    section {
      padding: 40px 0;
    }
  
    .stat-card {
      padding: 16px;
    }
  
    .stat-card-number {
      font-size: 24px;
    }
  
    .header.-single {
      padding: 16px 0;
    }
  
    .header-logo img {
      width: 150px;
    }
  
    .header-nav {
      padding: 73px 0 15px;
    }
  
    .header-nav ul li a {
      font-size: 16px;
    }
  
    .header-nav ul li a {
      font-size: 20px;
      line-height: 150%;
    }
  
    .sub-header-inner {
      align-items: initial;
      flex-direction: column-reverse;
    }
  
    .sub-header-menu {
      margin-top: 12px;
    }
  
    .sub-header-search {
      width: 100%;
    }
  
    .sub-header-search input {
      width: 100%;
    }
  
    .footer {
      padding: 20px 0px 30px;
    }
  
    .footer-main {
      flex-direction: column;
    }
  
    .footer-logo img {
      width: 150px;
    }
  
    .footer-contacts {
      margin-top: 30px;
    }
  
    .footer-bottom {
      margin-top: 40px;
      flex-direction: column;
    }
  
    .footer-bottom > p,
    .footer-bottom a {
      text-align: center;
      line-height: 150%;
    }
  
    .footer-bottom span {
      display: none;
    }
  
    .footer-bottom > a {
      margin-top: 20px;
    }
  
    .popup-datepicker .popup-inner {
      max-width: 330px;
    }
  
    .popup-datepicker-bottom {
      display: block;
    }
  
    .popup-datepicker-inputs .form-input {
      max-width: 100%;
      width: 100%;
    }
  
    .popup-datepicker-inputs span {
      margin: 0px 8px;
    }
  
    .popup-datepicker-actions {
      justify-content: space-between;
      margin-top: 10px;
    }
  
    .popup-datepicker-actions .btn {
      width: calc(50% - 12px);
    }
  
    .popup-datepicker-actions .btn:not(:last-child) {
      margin-right: 0;
    }
  
    .hero p {
      font-size: 16px;
    }
  
    .portal-options {
      padding-top: 0;
    }
  
    .portal-options-items {
      gap: 16px;
    }
  
    .portal-options-card {
      padding: 16px;
    }
  
    .portal-options-card-top {
      margin-bottom: 15px;
      flex-wrap: wrap;
    }
  
    .portal-options-card-ico {
      padding: 8px;
      margin-right: 10px;
    }
  
    .portal-options-card-ico svg {
      width: 22px;
      height: 22px;
    }
  
    .services p {
      font-size: 16px;
    }
  
    .services p {
      max-width: 100%;
      margin-bottom: 20px;
    }
  
    .services .row {
      --bs-gutter-y: 16px;
    }
  
    .services-block {
      padding: 20px;
    }
  
    .services-block-top {
      margin-bottom: 15px;
      padding-bottom: 15px;
    }
  
    .services-block-top img {
      width: 22px;
      min-width: 22px;
    }
  
    .services-block h3 {
      margin-left: 10px;
    }
  
    .services-list {
      gap: 15px;
    }
  
    .services-list li a {
      font-size: 16px;
    }
  
    .customer-portal-date {
      margin-top: 20px;
    }
  
    .customer-portal-main {
      margin-top: 25px;
    }
  
    .customer-portal-main .row {
      --bs-gutter-x: 15px;
      --bs-gutter-y: 16px;
    }
  
    .customer-portal .channels-top {
      padding: 16px;
    }
  
    .customer-portal .channels-actions {
      padding: 10px 16px;
      flex-direction: column-reverse;
    }
  
    .customer-portal .channels-status-filter {
      width: 100%;
    }
  
    .customer-portal .channels-status-filter li {
      width: 100%;
    }
  
    .customer-portal .channels-search {
      width: 100%;
      margin-bottom: 10px;
    }
  
    .customer-portal .channels-search input {
      width: 100%;
    }
  
    .customer-portal .channels-table-inner {
      min-width: 800px;
    }
  
    .customer-portal .channels-table-row {
      grid-template-columns: 1fr 1.15fr 100px 120px;
    }
  
    .customer-portal .channels-table-cell {
      padding: 0px 16px;
    }
  
    .customer-portal .channels-bottom {
      padding: 10px 16px;
    }
  
    .customer-portal .channels-bottom .btn:not(:last-child) {
      margin-right: 10px;
    }
  
    .billing h2 {
      margin-bottom: 25px;
    }
  
    .billing .stat-card {
      margin-bottom: 20px;
    }
  
    .billing-history-top {
      padding: 16px;
    }
  
    .billing-history-table-row {
      grid-template-columns: 100px 1.15fr 130px 100px;
    }
  
    .billing-history-table-cell {
      padding: 0px 16px;
    }
  
    .billing-history-bottom {
      padding: 10px 16px;
    }
  
    .billing-history-bottom .btn:not(:last-child) {
      margin-right: 10px;
    }
  
    .payment-methods {
      margin-top: 30px;
    }
  
    .payment-methods > h5 {
      margin-bottom: 20px;
    }
  
    .payment-methods .card {
      padding: 16px;
    }
  
    .payment-methods .card h5 {
      padding-bottom: 15px;
    }
  
    .payment-methods-active ul li {
      padding: 12px 0;
    }
  
    .payment-methods-active-ico {
      margin-right: 10px;
    }
  
    .payment-methods-active-actions {
      padding-left: 8px;
    }
  
    .payment-methods-active-actions button:not(:last-child) {
      margin-right: 8px;
    }
  
    .payment-methods-active-actions button svg {
      width: 20px;
      height: 20px;
    }
  
    .payment-methods-active-add {
      margin-top: 16px;
    }
  
    .payment-methods-card-form {
      margin-top: 15px;
    }
  
    .support h2 {
      margin-bottom: 25px;
    }
  
    .support .row {
      --bs-gutter-y: 20px;
    }
  
    .support-form {
      padding: 16px;
      gap: 16px;
    }
  
    .support-form-options > span {
      margin-bottom: 12px;
    }
  
    .support-form-options ul {
      grid-template-columns: 1fr;
      grid-template-rows: auto;
      grid-auto-flow: initial;
    }
  
    .support-form .btn {
      margin-top: 15px;
    }
  
    .support-call-us {
      padding: 16px;
    }
  
    .support-call-us svg {
      width: 20px;
      min-width: 20px;
      height: 20px;
    }
  
    .support-call-us-info {
      margin-left: 12px;
    }
  
    .support-call-us a {
      margin-top: 15px;
    }
  
    .checkout-inner {
      gap: 30px;
    }
  
    .checkout h4 {
      margin-bottom: 20px;
    }
  
    .checkout-account {
      padding: 16px;
      gap: 15px;
    }
  
    .checkout-summary {
      padding: 16px;
      gap: 15px;
    }
  
    .checkout-summary-total {
      padding-top: 15px;
    }
  
    .checkout-summary-total-info {
      font-size: 16px;
    }
  
    .checkout-summary-coupon {
      margin-top: 8px;
    }
  
    .checkout-safe-payments {
      margin-top: 20px;
      margin-bottom: 30px;
    }
  
    .checkout-safe-payments img {
      width: 52px;
      margin-left: 8px;
    }
  
    .checkout-payment-method:not(:last-child) {
      margin-bottom: 20px;
    }
  
    .checkout-payment-method-trigger {
      padding: 16px;
    }
  
    .checkout-payment-method-trigger img {
      height: 18px;
      margin-left: 15px;
    }
  
    .checkout-payment-method-form {
      padding: 16px;
      gap: 15px;
      grid-template-columns: 1fr;
    }
  
    .checkout-payment-method-form h5,
    .checkout-payment-method-form .checkout-disclaimer,
    .checkout-payment-method-form .btn {
      grid-column: 1/2;
    }
  
    .checkout-payment-method-card .-double {
      grid-column: 1/2;
    }
  
    .checkout-payment-method-card .-card-cvv {
      max-width: 108px;
      margin-right: 15px;
    }
  
    .checkout-payment-method-card .-postal-code {
      width: 100%;
    }
  
    .checkout-ckecklist {
      flex-direction: column;
      margin-top: 30px;
    }
  
    .checkout-ckecklist li {
      font-size: 18px;
    }
  
    .checkout-ckecklist li:not(:last-child) {
      margin-right: 0;
      margin-bottom: 15px;
    }
  
    .login-inner {
      padding: 32px 16px;
    }
  
    .login-inner p {
      margin-top: 8px;
    }
  
    .login-form {
      margin-top: 20px;
    }
  
    .login-form .form-input:not(:last-child) {
      margin-bottom: 12px;
    }
  
    .login-alt {
      margin-top: 15px;
    }
  
    .login-via {
      margin-top: 20px;
    }
  
    .login-via .btn img,
    .login-via .btn svg {
      width: 22px;
      height: 22px;
    }
  }
  
  @media (max-width: 767px) and (max-width: 767px) {
    .header-nav ul li a {
      font-size: 18px;
    }
  }
  
  @media (max-width: 575px) {
    .container {
      padding: 0px 16px;
      margin-top: 10px;
      margin-bottom: 25px;
    }
  
    .footer-contacts {
      flex-direction: column;
    }
  
    .footer-contacts li:not(:last-child) {
      margin-right: 0;
      margin-bottom: 15px;
    }
  
    .portal-options-card-top .btn {
      width: 100%;
      margin-left: 0;
      margin-top: 10px;
    }
  
    .customer-portal .channels-top .btn {
      width: 100%;
      margin-top: 10px;
    }
  
    .billing-history-table-inner {
      min-width: 500px;
    }
  
    .payment-methods-card-form {
      grid-template-columns: 1fr 1fr;
    }
  
    .payment-methods-card-form .-card-name {
      grid-column: 1/3;
    }
  
    .payment-methods-card-form .-card-number {
      grid-column: 1/3;
    }
  
    .payment-methods-card-form .-card-expiry {
      grid-column: 1/2;
      grid-row: 3/4;
    }
  
    .payment-methods-card-form .-card-cvv {
      grid-column: 2/3;
    }
  
    .payment-methods-card-form button {
      grid-column: 1/3;
    }
  
    .support-form {
      grid-template-columns: 1fr;
    }
  
    .checkout-payment-method-trigger > div {
      display: block;
    }
  
    .checkout-payment-method-trigger > div img {
      margin-left: 0;
      margin-top: 8px;
      height: 20px;
    }
  
    .checkout-payment-method-card .-double {
      display: block;
    }
  
    .checkout-payment-method-card .-card-cvv {
      max-width: 100%;
      margin-right: 0;
      margin-bottom: 15px;
    }
  }
  
  @media print {
    .d-print-inline {
      display: inline !important;
    }
  
    .d-print-inline-block {
      display: inline-block !important;
    }
  
    .d-print-block {
      display: block !important;
    }
  
    .d-print-grid {
      display: grid !important;
    }
  
    .d-print-table {
      display: table !important;
    }
  
    .d-print-table-row {
      display: table-row !important;
    }
  
    .d-print-table-cell {
      display: table-cell !important;
    }
  
    .d-print-flex {
      display: flex !important;
    }
  
    .d-print-inline-flex {
      display: inline-flex !important;
    }
  
    .d-print-none {
      display: none !important;
    }
  }
  
  @media (pointer: coarse) {
    p a:hover {
      text-decoration: underline;
    }
  
    .btn.-filled.-blue:hover {
      background: #184ABC;
    }
  
    .btn.-filled.-orange:hover {
      background: #DC6803;
    }
  
    .btn.-filled.-black:hover {
      background: #000;
      color: #fff;
    }
  
    .btn.-bordered.-gray:hover {
      background: #fff;
    }
  
    .btn:not(.-filled, .-bordered).-blue:hover {
      color: #184ABC;
    }
  
    .form-input .custom-select-dropdown ul li:hover {
      background: transparent;
    }
  
    .checkbox:hover div {
      background: #fff;
      border-color: #D0D5DD;
    }
  
    .header-nav ul li:hover {
      color: #F2F4F7;
    }
  
    .header-btn:hover {
      color: #fff;
    }
  
    .sub-header-menu li a:hover {
      color: #fff;
    }
  
    .footer-contacts li a:hover {
      color: #fff;
    }
  
    .footer-bottom > a:hover {
      color: #9E9E9E;
      text-decoration: underline;
    }
  
    .services-list li a:hover {
      color: #475467;
    }
  
    .customer-portal-date:hover {
      background: #fff;
    }
  
    .customer-portal .channels-status-filter li:hover {
      background: transparent;
    }
  
    .customer-portal .channels-status-filter li.active:hover {
      background: #F9FAFB;
    }
  
    .customer-portal .channels-table-select-all:not(.-all, .-some):hover {
      background: #fff;
      border-color: #D0D5DD;
    }
  
    .billing-history-table-cell a:hover {
      color: #475467;
      text-decoration-line: underline;
    }
  
    .payment-methods-active-actions button:hover {
      color: #000;
    }
  
    .payment-methods-active-add:hover {
      color: #475467;
    }
  
    .support-call-us a:hover {
      color: #184ABC;
    }
  
    .checkout-disclaimer a:hover {
      text-decoration: none;
    }
  
    .checkout-summary-vat-country a:hover {
      text-decoration: underline;
      color: #696969;
    }
  
    .checkout-summary-coupon:hover {
      text-decoration: underline;
      color: #696969;
    }
  
    .login-alt:hover {
      color: #184ABC;
    }
  }
  /*# sourceMappingURL=bundle.min.css.map */
  

button:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.form-select {
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  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 5 6 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.375rem;
  transition:
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.nav {
  --bs-nav-link-padding-x: 1rem;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: var(--bs-link-color);
  --bs-nav-link-hover-color: var(--bs-link-hover-color);
  --bs-nav-link-disabled-color: #6c757d;
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.nav-link {
  display: block;
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  font-size: var(--bs-nav-link-font-size);
  font-weight: var(--bs-nav-link-font-weight);
  color: var(--bs-nav-link-color);
  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) {
  .nav-link {
    transition: none;
  }
}
.nav-link:focus,
.nav-link:hover {
  color: var(--bs-nav-link-hover-color);
}
.nav-link.disabled {
  color: var(--bs-nav-link-disabled-color);
  pointer-events: none;
  cursor: default;
}
.nav-tabs {
  --bs-nav-tabs-border-width: 1px;
  --bs-nav-tabs-border-color: #dee2e6;
  --bs-nav-tabs-border-radius: 0.375rem;
  --bs-nav-tabs-link-hover-border-color: #e9ecef #e9ecef #dee2e6;
  --bs-nav-tabs-link-active-color: #495057;
  --bs-nav-tabs-link-active-bg: #fff;
  --bs-nav-tabs-link-active-border-color: #dee2e6 #dee2e6 #fff;
  border-bottom: var(--bs-nav-tabs-border-width) solid
    var(--bs-nav-tabs-border-color);
}
.nav-tabs .nav-link {
  margin-bottom: calc(var(--bs-nav-tabs-border-width) * -1);
  background: 0 0;
  border: var(--bs-nav-tabs-border-width) solid transparent;
  border-top-left-radius: var(--bs-nav-tabs-border-radius);
  border-top-right-radius: var(--bs-nav-tabs-border-radius);
}
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  isolation: isolate;
  border-color: var(--bs-nav-tabs-link-hover-border-color);
}
.nav-tabs .nav-link.disabled,
.nav-tabs .nav-link:disabled {
  color: var(--bs-nav-link-disabled-color);
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: var(--bs-nav-tabs-link-active-color);
  background-color: var(--bs-nav-tabs-link-active-bg);
  border-color: var(--bs-nav-tabs-link-active-border-color);
}
.nav-tabs .dropdown-menu {
  margin-top: calc(var(--bs-nav-tabs-border-width) * -1);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.nav-pills {
  --bs-nav-pills-border-radius: 0.375rem;
  --bs-nav-pills-link-active-color: #fff;
  --bs-nav-pills-link-active-bg: #0d6efd;
}
.nav-pills .nav-link {
  background: 0 0;
  border: 0;
  border-radius: var(--bs-nav-pills-border-radius);
}
.nav-pills .nav-link:disabled {
  color: var(--bs-nav-link-disabled-color);
  background-color: transparent;
  border-color: transparent;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: var(--bs-nav-pills-link-active-color);
  background-color: var(--bs-nav-pills-link-active-bg);
}
.nav-fill .nav-item,
.nav-fill > .nav-link {
  flex: 1 1 auto;
  text-align: center;
}
.nav-justified .nav-item,
.nav-justified > .nav-link {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}
.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  width: 100%;
}
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.card {
  --bs-card-spacer-y: 1rem;
  --bs-card-spacer-x: 1rem;
  --bs-card-title-spacer-y: 0.5rem;
  --bs-card-border-width: 1px;
  --bs-card-border-color: var(--bs-border-color-translucent);
  --bs-card-border-radius: 0.375rem;
  --bs-card-box-shadow: ;
  --bs-card-inner-border-radius: calc(0.375rem - 1px);
  --bs-card-cap-padding-y: 0.5rem;
  --bs-card-cap-padding-x: 1rem;
  --bs-card-cap-bg: rgba(0, 0, 0, 0.03);
  --bs-card-cap-color: ;
  --bs-card-height: ;
  --bs-card-color: ;
  --bs-card-bg: #fff;
  --bs-card-img-overlay-padding: 1rem;
  --bs-card-group-margin: 0.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: var(--bs-card-height);
  word-wrap: break-word;
  background-color: var(--bs-card-bg);
  background-clip: border-box;
  /* border: var(--bs-card-border-width) solid var(--bs-card-border-color); */
  /* border-radius: var(--bs-card-border-radius); */
  border-radius: 12px;
  background: #fff;
  border: 1px solid #EAECF0;
  box-shadow: 0px 1px 3px rgba(16, 24, 40, 0.1), 0px 1px 2px rgba(16, 24, 40, 0.06);
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}
.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}
.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: var(--bs-card-inner-border-radius);
  border-top-right-radius: var(--bs-card-inner-border-radius);
}
.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
}
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}
.card-body {
  flex: 1 1 auto;
  padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
  color: var(--bs-card-color);
}
.card-title {
  margin-bottom: var(--bs-card-title-spacer-y);
}
.card-subtitle {
  margin-top: calc(-0.5 * var(--bs-card-title-spacer-y));
  margin-bottom: 0;
}
.card-text:last-child {
  margin-bottom: 0;
}
.card-link + .card-link {
  margin-left: var(--bs-card-spacer-x);
}
.card-header {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  margin-bottom: 0;
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color);
}
.card-header:first-child {
  border-radius: var(--bs-card-inner-border-radius)
    var(--bs-card-inner-border-radius) 0 0;
}
.card-footer {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-top: var(--bs-card-border-width) solid var(--bs-card-border-color);
}
.card-footer:last-child {
  border-radius: 0 0 var(--bs-card-inner-border-radius)
    var(--bs-card-inner-border-radius);
}
.card-header-tabs {
  margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
  margin-bottom: calc(-1 * var(--bs-card-cap-padding-y));
  margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
  border-bottom: 0;
}
.card-header-tabs .nav-link.active {
  background-color: var(--bs-card-bg);
  border-bottom-color: var(--bs-card-bg);
}
.card-header-pills {
  margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
  margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
}
.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: var(--bs-card-img-overlay-padding);
  border-radius: var(--bs-card-inner-border-radius);
}
.card-img,
.card-img-bottom,
.card-img-top {
  width: 100%;
}
.card-img,
.card-img-top {
  border-top-left-radius: var(--bs-card-inner-border-radius);
  border-top-right-radius: var(--bs-card-inner-border-radius);
}
.card-img,
.card-img-bottom {
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
}
.card-group > .card {
  margin-bottom: var(--bs-card-group-margin);
}
@media (min-width: 576px) {
  .card-group {
    display: flex;
    flex-flow: row wrap;
  }
  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-header,
  .card-group > .card:not(:last-child) .card-img-top {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-footer,
  .card-group > .card:not(:last-child) .card-img-bottom {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-header,
  .card-group > .card:not(:first-child) .card-img-top {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-footer,
  .card-group > .card:not(:first-child) .card-img-bottom {
    border-bottom-left-radius: 0;
  }
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}
.h1,
h1 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  .h1,
  h1 {
    font-size: 2.5rem;
  }
}
.h2,
h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  .h2,
  h2 {
    font-size: 2rem;
  }
}
.h3,
h3 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  .h3,
  h3 {
    font-size: 1.75rem;
  }
}
.h4,
h4 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  .h4,
  h4 {
    font-size: 1.5rem;
  }
}
.h5,
h5 {
  font-size: 1.25rem;
}
.h6,
h6 {
  font-size: 1rem;
}

.border {
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}
.border-0 {
  border: 0 !important;
}
.border-top {
  border-top: var(--bs-border-width) var(--bs-border-style)
    var(--bs-border-color) !important;
}
.border-top-0 {
  border-top: 0 !important;
}
.border-end {
  border-right: var(--bs-border-width) var(--bs-border-style)
    var(--bs-border-color) !important;
}
.border-end-0 {
  border-right: 0 !important;
}
.border-bottom {
  border-bottom: var(--bs-border-width) var(--bs-border-style)
    var(--bs-border-color) !important;
}
.border-bottom-0 {
  border-bottom: 0 !important;
}
.border-start {
  border-left: var(--bs-border-width) var(--bs-border-style)
    var(--bs-border-color) !important;
}
.border-start-0 {
  border-left: 0 !important;
}
.border-primary {
  --bs-border-opacity: 1;
  border-color: rgba(
    var(--bs-primary-rgb),
    var(--bs-border-opacity)
  ) !important;
}
.border-secondary {
  --bs-border-opacity: 1;
  border-color: rgba(
    var(--bs-secondary-rgb),
    var(--bs-border-opacity)
  ) !important;
}
.border-success {
  --bs-border-opacity: 1;
  border-color: rgba(
    var(--bs-success-rgb),
    var(--bs-border-opacity)
  ) !important;
}
.border-info {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
}
.border-warning {
  --bs-border-opacity: 1;
  border-color: rgba(
    var(--bs-warning-rgb),
    var(--bs-border-opacity)
  ) !important;
}
.border-danger {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
}
.border-light {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
}
.border-dark {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
}
.border-white {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
}
.border-1 {
  --bs-border-width: 1px;
}
.border-2 {
  --bs-border-width: 2px;
}
.border-3 {
  --bs-border-width: 3px;
}
.border-4 {
  --bs-border-width: 4px;
}
.border-5 {
  --bs-border-width: 5px;
}
.border-opacity-10 {
  --bs-border-opacity: 0.1;
}
.border-opacity-25 {
  --bs-border-opacity: 0.25;
}
.border-opacity-50 {
  --bs-border-opacity: 0.5;
}
.border-opacity-75 {
  --bs-border-opacity: 0.75;
}
.border-opacity-100 {
  --bs-border-opacity: 1;
}

.accordion {
  --bs-accordion-color: #000;
  --bs-accordion-bg: #fff;
  --bs-accordion-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;
  --bs-accordion-border-color: var(--bs-border-color);
  --bs-accordion-border-width: 1px;
  --bs-accordion-border-radius: 0.375rem;
  --bs-accordion-inner-border-radius: calc(0.375rem - 1px);
  --bs-accordion-btn-padding-x: 1.25rem;
  --bs-accordion-btn-padding-y: 1rem;
  --bs-accordion-btn-color: var(--bs-body-color);
  --bs-accordion-btn-bg: var(--bs-accordion-bg);
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='var%28--bs-body-color%29'%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");
  --bs-accordion-btn-icon-width: 1.25rem;
  --bs-accordion-btn-icon-transform: rotate(-180deg);
  --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
  --bs-accordion-btn-active-icon: 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");
  --bs-accordion-btn-focus-border-color: #86b7fe;
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --bs-accordion-body-padding-x: 1.25rem;
  --bs-accordion-body-padding-y: 1rem;
  --bs-accordion-active-color: #0c63e4;
  --bs-accordion-active-bg: #e7f1ff;
}
.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  font-size: 1rem;
  color: var(--bs-accordion-btn-color);
  text-align: left;
  background-color: var(--bs-accordion-btn-bg);
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: var(--bs-accordion-transition);
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    transition: none;
  }
}
.accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: var(--bs-accordion-active-bg);
  box-shadow: inset 0 calc(var(--bs-accordion-border-width) * -1) 0
    var(--bs-accordion-border-color);
}
.accordion-button:not(.collapsed)::after {
  background-image: var(--bs-accordion-btn-active-icon);
  transform: var(--bs-accordion-btn-icon-transform);
}
.accordion-button::after {
  flex-shrink: 0;
  width: var(--bs-accordion-btn-icon-width);
  height: var(--bs-accordion-btn-icon-width);
  margin-left: auto;
  content: "";
  background-image: var(--bs-accordion-btn-icon);
  background-repeat: no-repeat;
  background-size: var(--bs-accordion-btn-icon-width);
  transition: var(--bs-accordion-btn-icon-transition);
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button::after {
    transition: none;
  }
}
.accordion-button:hover {
  z-index: 2;
}
.accordion-button:focus {
  z-index: 3;
  border-color: var(--bs-accordion-btn-focus-border-color);
  outline: 0;
  box-shadow: var(--bs-accordion-btn-focus-box-shadow);
}
.accordion-header {
  margin-bottom: 0 !important;
}
.accordion-item {
  color: var(--bs-accordion-color);
  background-color: var(--bs-accordion-bg);
  border: var(--bs-accordion-border-width) solid
    var(--bs-accordion-border-color);
}
.accordion-item:first-of-type {
  border-top-left-radius: var(--bs-accordion-border-radius);
  border-top-right-radius: var(--bs-accordion-border-radius);
}
.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: var(--bs-accordion-inner-border-radius);
  border-top-right-radius: var(--bs-accordion-inner-border-radius);
}
.accordion-item:not(:first-of-type) {
  border-top: 0;
}
.accordion-item:last-of-type {
  border-bottom-right-radius: var(--bs-accordion-border-radius);
  border-bottom-left-radius: var(--bs-accordion-border-radius);
}
.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
  border-bottom-left-radius: var(--bs-accordion-inner-border-radius);
}
.accordion-item:last-of-type .accordion-collapse {
  border-bottom-right-radius: var(--bs-accordion-border-radius);
  border-bottom-left-radius: var(--bs-accordion-border-radius);
}
.accordion-body {
  padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
}
.accordion-flush .accordion-collapse {
  border-width: 0;
}
.accordion-flush .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}
.accordion-flush .accordion-item:first-child {
  border-top: 0;
}
.accordion-flush .accordion-item:last-child {
  border-bottom: 0;
}
.accordion-flush .accordion-item .accordion-button {
  border-radius: 0;
}
.collapse:not(.show) {
  display: none;
}
.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing.collapse-horizontal {
    transition: none;
  }
}
.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}