.vertical-center {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 75vh;
  /* Ajusta la altura según tus necesidades */
}

#vd_original_login {
  position: fixed !important;
  margin-top: 10px;
  margin: 0;
  right: 0;
  top: 0;
  /* Cambiamos 'bottom' por 'top' */
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#vd_original {
  position: fixed !important;
  margin: 0;
  right: 0;
  top: 95px;
  /* Cambiamos 'bottom' por 'top' */
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contenido {
  position: fixed;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  color: #f1f1f1;
  width: 100%;
  padding: 20px;
}

.contenido_central {
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 20px 40px 20px 40px;
  border-radius: 10px;
}

.capa {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
  /* Cambia el valor 0.5 según la opacidad deseada */
}

.pointer {
  cursor: pointer !important;
}

.bg-principal {
  background-repeat: no-repeat;
  background-size: cover;
}

.img-logo {
  width: 100px;
}

.ancho-completo {
  width: calc(90vw - 300px);
}

.ancho-completo2 {
  min-width: 25vw;
}

.btn-azul {
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  background-color: #f6a414;
  color: #fff;
}

.btn-azul:hover {
  background-color: #027dff;
}

.text-azul {
  color: #003966;
}

.btn-azul-left {
  background-color: #0b5796;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
}

.btn-azul-right {
  background-color: #2575d6;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}


.ancho-completo {
  width: calc(90vw - 300px);
}

.ancho-completo2 {
  min-width: 90vw;
}

/* SM */
@media (min-width: 576px) {
  .bg-principal {
    background-repeat: no-repeat;
    background-size: cover;
  }

  .img-logo {
    width: 200px;
  }

  .contenido_central {
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 20px 60px 20px 60px;
    border-radius: 10px;
  }


  .ancho-completo {
    width: calc(90vw - 300px);
  }

  .ancho-completo2 {
    min-width: 25vw;
  }

}

/* MD */
@media (min-width: 768px) {
  .bg-principal {
    background-repeat: no-repeat;
    background-size: cover;
  }

  .img-logo {
    width: 200px;
  }

  .contenido_central {
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 20px 60px 20px 60px;
    border-radius: 10px;
  }


  .ancho-completo {
    width: calc(90vw - 300px);
  }

  .ancho-completo2 {
    min-width: 60vw;
  }
}

/* LG */
@media (min-width: 992px) {
  .bg-principal {
    background-repeat: no-repeat;
    background-size: cover;
  }

  .img-logo {
    width: 200px;
  }

  .contenido_central {
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 20px 60px 20px 60px;
    border-radius: 10px;
  }



  .ancho-completo {
    width: calc(90vw - 300px);
  }

  .ancho-completo2 {
    min-width: 25vw;
  }
}

/* XL */
@media (min-width: 1200px) {
  .bg-principal {
    background-repeat: no-repeat;
    background-size: cover;
  }

  .img-logo {
    width: 300px;
  }

  .contenido_central {
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 20px 60px 20px 60px;
    border-radius: 10px;
  }


  .ancho-completo {
    width: calc(90vw - 300px);
  }

  .ancho-completo2 {
    min-width: 25vw;
  }
}

/* XXL */
@media (min-width: 1540px) {
  .bg-principal {
    background-repeat: no-repeat;
    background-size: cover;

  }

  .img-logo {
    width: 300px;
  }

  .contenido_central {
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 20px 60px 20px 60px;
    border-radius: 10px;
  }
}


@media (min-width: 768px) {
  .float-md-start {
    float: right !important;
  }

  .float-md-end {
    float: left !important;
  }

  .float-md-none {
    float: none !important;
  }

  .opacity-md-0 {
    opacity: 0 !important;
  }

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

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

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

  .opacity-md-85 {
    opacity: 0.85 !important;
  }

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

  .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: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .d-md-none {
    display: none !important;
  }

  .position-md-static {
    position: static !important;
  }

  .position-md-relative {
    position: relative !important;
  }

  .position-md-absolute {
    position: absolute !important;
  }

  .position-md-fixed {
    position: fixed !important;
  }

  .position-md-sticky {
    position: sticky !important;
  }

  .translate-md-middle {
    -webkit-transform: translateX(50%) translateY(-50%) !important;
    -ms-transform: translateX(50%) translateY(-50%) !important;
    transform: translateX(50%) translateY(-50%) !important;
  }

  .translate-md-middle-x {
    -webkit-transform: translateX(50%) !important;
    -ms-transform: translateX(50%) !important;
    transform: translateX(50%) !important;
  }

  .translate-md-middle-y {
    -webkit-transform: translateY(-50%) !important;
    -ms-transform: translateY(-50%) !important;
    transform: translateY(-50%) !important;
  }

  .border-md {
    border: var(--phoenix-border-width) var(--phoenix-border-style) var(--phoenix-border-color) !important;
  }

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

  .border-top-md {
    border-top: var(--phoenix-border-width) var(--phoenix-border-style) var(--phoenix-border-color) !important;
  }

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

  .border-end-md {
    border-left: var(--phoenix-border-width) var(--phoenix-border-style) var(--phoenix-border-color) !important;
  }

  .border-end-md-0 {
    border-left: 0 !important;
  }

  .border-bottom-md {
    border-bottom: var(--phoenix-border-width) var(--phoenix-border-style) var(--phoenix-border-color) !important;
  }

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

  .border-start-md {
    border-right: var(--phoenix-border-width) var(--phoenix-border-style) var(--phoenix-border-color) !important;
  }

  .border-start-md-0 {
    border-right: 0 !important;
  }

  .w-md-15 {
    width: 15% !important;
  }

  .w-md-25 {
    width: 25% !important;
  }

  .w-md-30 {
    width: 30% !important;
  }

  .w-md-50 {
    width: 50% !important;
  }

  .w-md-70 {
    width: 70% !important;
  }

  .w-md-75 {
    width: 75% !important;
  }

  .w-md-100 {
    width: 100% !important;
  }

  .w-md-max-content {
    width: -webkit-max-content !important;
    width: -moz-max-content !important;
    width: max-content !important;
  }

  .w-md-min-content {
    width: -webkit-min-content !important;
    width: -moz-min-content !important;
    width: min-content !important;
  }

  .w-md-auto {
    width: auto !important;
  }

  .vw-md-25 {
    width: 25vw !important;
  }

  .vw-md-50 {
    width: 50vw !important;
  }

  .vw-md-75 {
    width: 75vw !important;
  }

  .vw-md-100 {
    width: 100vw !important;
  }

  .h-md-25 {
    height: 25% !important;
  }

  .h-md-30 {
    height: 30% !important;
  }

  .h-md-50 {
    height: 50% !important;
  }

  .h-md-70 {
    height: 70% !important;
  }

  .h-md-75 {
    height: 75% !important;
  }

  .h-md-100 {
    height: 100% !important;
  }

  .h-md-max-content {
    height: -webkit-max-content !important;
    height: -moz-max-content !important;
    height: max-content !important;
  }

  .h-md-min-content {
    height: -webkit-min-content !important;
    height: -moz-min-content !important;
    height: min-content !important;
  }

  .h-md-auto {
    height: auto !important;
  }

  .vh-md-25 {
    height: 25vh !important;
  }

  .vh-md-50 {
    height: 50vh !important;
  }

  .vh-md-75 {
    height: 75vh !important;
  }

  .vh-md-100 {
    height: 100vh !important;
  }

  .min-vh-md-25 {
    min-height: 25vh !important;
  }

  .min-vh-md-50 {
    min-height: 50vh !important;
  }

  .min-vh-md-75 {
    min-height: 75vh !important;
  }

  .min-vh-md-100 {
    min-height: 100vh !important;
  }

  .flex-md-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }

  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-md-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }

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

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

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

  .justify-content-md-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-md-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .justify-content-md-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }

  .align-items-md-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-md-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-md-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

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

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

  .align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }

  .order-md-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }

  .order-md-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }

  .order-md-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }

  .order-md-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }

  .order-md-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }

  .order-md-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }

  .order-md-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }

  .order-md-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    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: 2rem !important;
  }

  .m-md-6 {
    margin: 2.5rem !important;
  }

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

  .m-md-8 {
    margin: 3.5rem !important;
  }

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

  .m-md-10 {
    margin: 4.5rem !important;
  }

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

  .m-md-12 {
    margin: 6rem !important;
  }

  .m-md-13 {
    margin: 6.5rem !important;
  }

  .m-md-14 {
    margin: 7rem !important;
  }

  .m-md-15 {
    margin: 7.5rem !important;
  }

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

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

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

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

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

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

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

  .mx-md-6 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }

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

  .mx-md-8 {
    margin-left: 3.5rem !important;
    margin-right: 3.5rem !important;
  }

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

  .mx-md-10 {
    margin-left: 4.5rem !important;
    margin-right: 4.5rem !important;
  }

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

  .mx-md-12 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }

  .mx-md-13 {
    margin-left: 6.5rem !important;
    margin-right: 6.5rem !important;
  }

  .mx-md-14 {
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }

  .mx-md-15 {
    margin-left: 7.5rem !important;
    margin-right: 7.5rem !important;
  }

  .mx-md-auto {
    margin-left: auto !important;
    margin-right: 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: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .my-md-6 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

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

  .my-md-8 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }

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

  .my-md-10 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }

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

  .my-md-12 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }

  .my-md-13 {
    margin-top: 6.5rem !important;
    margin-bottom: 6.5rem !important;
  }

  .my-md-14 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }

  .my-md-15 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !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: 2rem !important;
  }

  .mt-md-6 {
    margin-top: 2.5rem !important;
  }

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

  .mt-md-8 {
    margin-top: 3.5rem !important;
  }

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

  .mt-md-10 {
    margin-top: 4.5rem !important;
  }

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

  .mt-md-12 {
    margin-top: 6rem !important;
  }

  .mt-md-13 {
    margin-top: 6.5rem !important;
  }

  .mt-md-14 {
    margin-top: 7rem !important;
  }

  .mt-md-15 {
    margin-top: 7.5rem !important;
  }

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

  .me-md-0 {
    margin-left: 0 !important;
  }

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

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

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

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

  .me-md-5 {
    margin-left: 2rem !important;
  }

  .me-md-6 {
    margin-left: 2.5rem !important;
  }

  .me-md-7 {
    margin-left: 3rem !important;
  }

  .me-md-8 {
    margin-left: 3.5rem !important;
  }

  .me-md-9 {
    margin-left: 4rem !important;
  }

  .me-md-10 {
    margin-left: 4.5rem !important;
  }

  .me-md-11 {
    margin-left: 5rem !important;
  }

  .me-md-12 {
    margin-left: 6rem !important;
  }

  .me-md-13 {
    margin-left: 6.5rem !important;
  }

  .me-md-14 {
    margin-left: 7rem !important;
  }

  .me-md-15 {
    margin-left: 7.5rem !important;
  }

  .me-md-auto {
    margin-left: 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: 2rem !important;
  }

  .mb-md-6 {
    margin-bottom: 2.5rem !important;
  }

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

  .mb-md-8 {
    margin-bottom: 3.5rem !important;
  }

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

  .mb-md-10 {
    margin-bottom: 4.5rem !important;
  }

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

  .mb-md-12 {
    margin-bottom: 6rem !important;
  }

  .mb-md-13 {
    margin-bottom: 6.5rem !important;
  }

  .mb-md-14 {
    margin-bottom: 7rem !important;
  }

  .mb-md-15 {
    margin-bottom: 7.5rem !important;
  }

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

  .ms-md-0 {
    margin-right: 0 !important;
  }

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

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

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

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

  .ms-md-5 {
    margin-right: 2rem !important;
  }

  .ms-md-6 {
    margin-right: 2.5rem !important;
  }

  .ms-md-7 {
    margin-right: 3rem !important;
  }

  .ms-md-8 {
    margin-right: 3.5rem !important;
  }

  .ms-md-9 {
    margin-right: 4rem !important;
  }

  .ms-md-10 {
    margin-right: 4.5rem !important;
  }

  .ms-md-11 {
    margin-right: 5rem !important;
  }

  .ms-md-12 {
    margin-right: 6rem !important;
  }

  .ms-md-13 {
    margin-right: 6.5rem !important;
  }

  .ms-md-14 {
    margin-right: 7rem !important;
  }

  .ms-md-15 {
    margin-right: 7.5rem !important;
  }

  .ms-md-auto {
    margin-right: auto !important;
  }

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

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

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

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

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

  .m-md-n6 {
    margin: -2.5rem !important;
  }

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

  .m-md-n8 {
    margin: -3.5rem !important;
  }

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

  .m-md-n10 {
    margin: -4.5rem !important;
  }

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

  .m-md-n12 {
    margin: -6rem !important;
  }

  .m-md-n13 {
    margin: -6.5rem !important;
  }

  .m-md-n14 {
    margin: -7rem !important;
  }

  .m-md-n15 {
    margin: -7.5rem !important;
  }

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

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

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

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

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

  .mx-md-n6 {
    margin-left: -2.5rem !important;
    margin-right: -2.5rem !important;
  }

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

  .mx-md-n8 {
    margin-left: -3.5rem !important;
    margin-right: -3.5rem !important;
  }

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

  .mx-md-n10 {
    margin-left: -4.5rem !important;
    margin-right: -4.5rem !important;
  }

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

  .mx-md-n12 {
    margin-left: -6rem !important;
    margin-right: -6rem !important;
  }

  .mx-md-n13 {
    margin-left: -6.5rem !important;
    margin-right: -6.5rem !important;
  }

  .mx-md-n14 {
    margin-left: -7rem !important;
    margin-right: -7rem !important;
  }

  .mx-md-n15 {
    margin-left: -7.5rem !important;
    margin-right: -7.5rem !important;
  }

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

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

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

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

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

  .my-md-n6 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }

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

  .my-md-n8 {
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }

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

  .my-md-n10 {
    margin-top: -4.5rem !important;
    margin-bottom: -4.5rem !important;
  }

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

  .my-md-n12 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }

  .my-md-n13 {
    margin-top: -6.5rem !important;
    margin-bottom: -6.5rem !important;
  }

  .my-md-n14 {
    margin-top: -7rem !important;
    margin-bottom: -7rem !important;
  }

  .my-md-n15 {
    margin-top: -7.5rem !important;
    margin-bottom: -7.5rem !important;
  }

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

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

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

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

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

  .mt-md-n6 {
    margin-top: -2.5rem !important;
  }

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

  .mt-md-n8 {
    margin-top: -3.5rem !important;
  }

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

  .mt-md-n10 {
    margin-top: -4.5rem !important;
  }

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

  .mt-md-n12 {
    margin-top: -6rem !important;
  }

  .mt-md-n13 {
    margin-top: -6.5rem !important;
  }

  .mt-md-n14 {
    margin-top: -7rem !important;
  }

  .mt-md-n15 {
    margin-top: -7.5rem !important;
  }

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

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

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

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

  .me-md-n5 {
    margin-left: -2rem !important;
  }

  .me-md-n6 {
    margin-left: -2.5rem !important;
  }

  .me-md-n7 {
    margin-left: -3rem !important;
  }

  .me-md-n8 {
    margin-left: -3.5rem !important;
  }

  .me-md-n9 {
    margin-left: -4rem !important;
  }

  .me-md-n10 {
    margin-left: -4.5rem !important;
  }

  .me-md-n11 {
    margin-left: -5rem !important;
  }

  .me-md-n12 {
    margin-left: -6rem !important;
  }

  .me-md-n13 {
    margin-left: -6.5rem !important;
  }

  .me-md-n14 {
    margin-left: -7rem !important;
  }

  .me-md-n15 {
    margin-left: -7.5rem !important;
  }

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

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

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

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

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

  .mb-md-n6 {
    margin-bottom: -2.5rem !important;
  }

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

  .mb-md-n8 {
    margin-bottom: -3.5rem !important;
  }

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

  .mb-md-n10 {
    margin-bottom: -4.5rem !important;
  }

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

  .mb-md-n12 {
    margin-bottom: -6rem !important;
  }

  .mb-md-n13 {
    margin-bottom: -6.5rem !important;
  }

  .mb-md-n14 {
    margin-bottom: -7rem !important;
  }

  .mb-md-n15 {
    margin-bottom: -7.5rem !important;
  }

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

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

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

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

  .ms-md-n5 {
    margin-right: -2rem !important;
  }

  .ms-md-n6 {
    margin-right: -2.5rem !important;
  }

  .ms-md-n7 {
    margin-right: -3rem !important;
  }

  .ms-md-n8 {
    margin-right: -3.5rem !important;
  }

  .ms-md-n9 {
    margin-right: -4rem !important;
  }

  .ms-md-n10 {
    margin-right: -4.5rem !important;
  }

  .ms-md-n11 {
    margin-right: -5rem !important;
  }

  .ms-md-n12 {
    margin-right: -6rem !important;
  }

  .ms-md-n13 {
    margin-right: -6.5rem !important;
  }

  .ms-md-n14 {
    margin-right: -7rem !important;
  }

  .ms-md-n15 {
    margin-right: -7.5rem !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: 2rem !important;
  }

  .p-md-6 {
    padding: 2.5rem !important;
  }

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

  .p-md-8 {
    padding: 3.5rem !important;
  }

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

  .p-md-10 {
    padding: 4.5rem !important;
  }

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

  .p-md-12 {
    padding: 6rem !important;
  }

  .p-md-13 {
    padding: 6.5rem !important;
  }

  .p-md-14 {
    padding: 7rem !important;
  }

  .p-md-15 {
    padding: 7.5rem !important;
  }

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

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

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

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

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

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

  .px-md-6 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }

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

  .px-md-8 {
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }

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

  .px-md-10 {
    padding-left: 4.5rem !important;
    padding-right: 4.5rem !important;
  }

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

  .px-md-12 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }

  .px-md-13 {
    padding-left: 6.5rem !important;
    padding-right: 6.5rem !important;
  }

  .px-md-14 {
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }

  .px-md-15 {
    padding-left: 7.5rem !important;
    padding-right: 7.5rem !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: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .py-md-6 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

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

  .py-md-8 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

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

  .py-md-10 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }

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

  .py-md-12 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }

  .py-md-13 {
    padding-top: 6.5rem !important;
    padding-bottom: 6.5rem !important;
  }

  .py-md-14 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }

  .py-md-15 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !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: 2rem !important;
  }

  .pt-md-6 {
    padding-top: 2.5rem !important;
  }

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

  .pt-md-8 {
    padding-top: 3.5rem !important;
  }

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

  .pt-md-10 {
    padding-top: 4.5rem !important;
  }

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

  .pt-md-12 {
    padding-top: 6rem !important;
  }

  .pt-md-13 {
    padding-top: 6.5rem !important;
  }

  .pt-md-14 {
    padding-top: 7rem !important;
  }

  .pt-md-15 {
    padding-top: 7.5rem !important;
  }

  .pe-md-0 {
    padding-left: 0 !important;
  }

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

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

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

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

  .pe-md-5 {
    padding-left: 2rem !important;
  }

  .pe-md-6 {
    padding-left: 2.5rem !important;
  }

  .pe-md-7 {
    padding-left: 3rem !important;
  }

  .pe-md-8 {
    padding-left: 3.5rem !important;
  }

  .pe-md-9 {
    padding-left: 4rem !important;
  }

  .pe-md-10 {
    padding-left: 4.5rem !important;
  }

  .pe-md-11 {
    padding-left: 5rem !important;
  }

  .pe-md-12 {
    padding-left: 6rem !important;
  }

  .pe-md-13 {
    padding-left: 6.5rem !important;
  }

  .pe-md-14 {
    padding-left: 7rem !important;
  }

  .pe-md-15 {
    padding-left: 7.5rem !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: 2rem !important;
  }

  .pb-md-6 {
    padding-bottom: 2.5rem !important;
  }

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

  .pb-md-8 {
    padding-bottom: 3.5rem !important;
  }

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

  .pb-md-10 {
    padding-bottom: 4.5rem !important;
  }

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

  .pb-md-12 {
    padding-bottom: 6rem !important;
  }

  .pb-md-13 {
    padding-bottom: 6.5rem !important;
  }

  .pb-md-14 {
    padding-bottom: 7rem !important;
  }

  .pb-md-15 {
    padding-bottom: 7.5rem !important;
  }

  .ps-md-0 {
    padding-right: 0 !important;
  }

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

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

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

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

  .ps-md-5 {
    padding-right: 2rem !important;
  }

  .ps-md-6 {
    padding-right: 2.5rem !important;
  }

  .ps-md-7 {
    padding-right: 3rem !important;
  }

  .ps-md-8 {
    padding-right: 3.5rem !important;
  }

  .ps-md-9 {
    padding-right: 4rem !important;
  }

  .ps-md-10 {
    padding-right: 4.5rem !important;
  }

  .ps-md-11 {
    padding-right: 5rem !important;
  }

  .ps-md-12 {
    padding-right: 6rem !important;
  }

  .ps-md-13 {
    padding-right: 6.5rem !important;
  }

  .ps-md-14 {
    padding-right: 7rem !important;
  }

  .ps-md-15 {
    padding-right: 7.5rem !important;
  }

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

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

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

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

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

  .gap-md-5 {
    gap: 2rem !important;
  }

  .gap-md-6 {
    gap: 2.5rem !important;
  }

  .gap-md-7 {
    gap: 3rem !important;
  }

  .gap-md-8 {
    gap: 3.5rem !important;
  }

  .gap-md-9 {
    gap: 4rem !important;
  }

  .gap-md-10 {
    gap: 4.5rem !important;
  }

  .gap-md-11 {
    gap: 5rem !important;
  }

  .gap-md-12 {
    gap: 6rem !important;
  }

  .gap-md-13 {
    gap: 6.5rem !important;
  }

  .gap-md-14 {
    gap: 7rem !important;
  }

  .gap-md-15 {
    gap: 7.5rem !important;
  }

  .fs-md--3 {
    font-size: 0.512rem !important;
  }

  .fs-md--2 {
    font-size: 0.64rem !important;
  }

  .fs-md--1 {
    font-size: 0.8rem !important;
  }

  .fs-md-0 {
    font-size: 1rem !important;
  }

  .fs-md-1 {
    font-size: 1.25rem !important;
  }

  .fs-md-2 {
    font-size: 1.5625rem !important;
  }

  .fs-md-3 {
    font-size: 1.953125rem !important;
  }

  .fs-md-4 {
    font-size: 2.44140625rem !important;
  }

  .fs-md-5 {
    font-size: 3.0517578125rem !important;
  }

  .fs-md-6 {
    font-size: 3.8146972656rem !important;
  }

  .fs-md-7 {
    font-size: 4.768371582rem !important;
  }

  .lh-md-1 {
    line-height: 1 !important;
  }

  .lh-md-sm {
    line-height: 1.2 !important;
  }

  .lh-md-base {
    line-height: 1.49 !important;
  }

  .lh-md-lg {
    line-height: 1.4 !important;
  }

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

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

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

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

  .rounded-md-top-lg {
    border-top-right-radius: 0.5rem !important;
    border-top-left-radius: 0.5rem !important;
  }

  .rounded-md-top-0 {
    border-top-right-radius: 0 !important;
    border-top-left-radius: 0 !important;
  }

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

  .rounded-md-end-lg {
    border-top-left-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
  }

  .rounded-md-end-0 {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

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

  .rounded-md-bottom-lg {
    border-bottom-left-radius: 0.5rem !important;
    border-bottom-right-radius: 0.5rem !important;
  }

  .rounded-md-bottom-0 {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }

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

  .rounded-md-start-lg {
    border-bottom-right-radius: 0.5rem !important;
    border-top-right-radius: 0.5rem !important;
  }

  .rounded-md-start-0 {
    border-bottom-right-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }

  .max-vh-md-25 {
    max-height: 25vh !important;
  }

  .max-vh-md-50 {
    max-height: 50vh !important;
  }

  .max-vh-md-75 {
    max-height: 75vh !important;
  }

  .max-vh-md-100 {
    max-height: 100vh !important;
  }

  .border-x-md {
    border-right: var(--phoenix-border-width) var(--phoenix-border-style) var(--phoenix-border-color) !important;
    border-left: var(--phoenix-border-width) var(--phoenix-border-style) var(--phoenix-border-color) !important;
  }

  .border-x-md-0 {
    border-right: 0 !important;
    border-left: 0 !important;
  }

  .border-y-md {
    border-top: var(--phoenix-border-width) var(--phoenix-border-style) var(--phoenix-border-color) !important;
    border-bottom: var(--phoenix-border-width) var(--phoenix-border-style) var(--phoenix-border-color) !important;
  }

  .border-y-md-0 {
    border-top: 0 !important;
    border-bottom: 0 !important;
  }

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

@media (min-width: 992px) {
  .float-lg-start {
    float: right !important;
  }

  .float-lg-end {
    float: left !important;
  }

  .float-lg-none {
    float: none !important;
  }

  .opacity-lg-0 {
    opacity: 0 !important;
  }

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

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

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

  .opacity-lg-85 {
    opacity: 0.85 !important;
  }

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

  .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: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .d-lg-none {
    display: none !important;
  }

  .position-lg-static {
    position: static !important;
  }

  .position-lg-relative {
    position: relative !important;
  }

  .position-lg-absolute {
    position: absolute !important;
  }

  .position-lg-fixed {
    position: fixed !important;
  }

  .position-lg-sticky {
    position: sticky !important;
  }

  .translate-lg-middle {
    -webkit-transform: translateX(50%) translateY(-50%) !important;
    -ms-transform: translateX(50%) translateY(-50%) !important;
    transform: translateX(50%) translateY(-50%) !important;
  }

  .translate-lg-middle-x {
    -webkit-transform: translateX(50%) !important;
    -ms-transform: translateX(50%) !important;
    transform: translateX(50%) !important;
  }

  .translate-lg-middle-y {
    -webkit-transform: translateY(-50%) !important;
    -ms-transform: translateY(-50%) !important;
    transform: translateY(-50%) !important;
  }

  .border-lg {
    border: var(--phoenix-border-width) var(--phoenix-border-style) var(--phoenix-border-color) !important;
  }

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

  .border-top-lg {
    border-top: var(--phoenix-border-width) var(--phoenix-border-style) var(--phoenix-border-color) !important;
  }

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

  .border-end-lg {
    border-left: var(--phoenix-border-width) var(--phoenix-border-style) var(--phoenix-border-color) !important;
  }

  .border-end-lg-0 {
    border-left: 0 !important;
  }

  .border-bottom-lg {
    border-bottom: var(--phoenix-border-width) var(--phoenix-border-style) var(--phoenix-border-color) !important;
  }

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

  .border-start-lg {
    border-right: var(--phoenix-border-width) var(--phoenix-border-style) var(--phoenix-border-color) !important;
  }

  .border-start-lg-0 {
    border-right: 0 !important;
  }

  .w-lg-25 {
    width: 25% !important;
  }

  .w-lg-30 {
    width: 30% !important;
  }

  .w-lg-50 {
    width: 50% !important;
  }

  .w-lg-70 {
    width: 70% !important;
  }

  .w-lg-75 {
    width: 75% !important;
  }

  .w-lg-100 {
    width: 100% !important;
  }

  .w-lg-max-content {
    width: -webkit-max-content !important;
    width: -moz-max-content !important;
    width: max-content !important;
  }

  .w-lg-min-content {
    width: -webkit-min-content !important;
    width: -moz-min-content !important;
    width: min-content !important;
  }

  .w-lg-auto {
    width: auto !important;
  }

  .vw-lg-25 {
    width: 25vw !important;
  }

  .vw-lg-50 {
    width: 50vw !important;
  }

  .vw-lg-75 {
    width: 75vw !important;
  }

  .vw-lg-100 {
    width: 100vw !important;
  }

  .h-lg-25 {
    height: 25% !important;
  }

  .h-lg-30 {
    height: 30% !important;
  }

  .h-lg-50 {
    height: 50% !important;
  }

  .h-lg-70 {
    height: 70% !important;
  }

  .h-lg-75 {
    height: 75% !important;
  }

  .h-lg-100 {
    height: 100% !important;
  }

  .h-lg-max-content {
    height: -webkit-max-content !important;
    height: -moz-max-content !important;
    height: max-content !important;
  }

  .h-lg-min-content {
    height: -webkit-min-content !important;
    height: -moz-min-content !important;
    height: min-content !important;
  }

  .h-lg-auto {
    height: auto !important;
  }

  .vh-lg-25 {
    height: 25vh !important;
  }

  .vh-lg-50 {
    height: 50vh !important;
  }

  .vh-lg-75 {
    height: 75vh !important;
  }

  .vh-lg-100 {
    height: 100vh !important;
  }

  .min-vh-lg-25 {
    min-height: 25vh !important;
  }

  .min-vh-lg-50 {
    min-height: 50vh !important;
  }

  .min-vh-lg-75 {
    min-height: 75vh !important;
  }

  .min-vh-lg-100 {
    min-height: 100vh !important;
  }

  .flex-lg-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }

  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-lg-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }

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

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

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

  .justify-content-lg-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .justify-content-lg-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }

  .align-items-lg-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

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

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

  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }

  .order-lg-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }

  .order-lg-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }

  .order-lg-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }

  .order-lg-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }

  .order-lg-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }

  .order-lg-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }

  .order-lg-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }

  .order-lg-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    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: 2rem !important;
  }

  .m-lg-6 {
    margin: 2.5rem !important;
  }

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

  .m-lg-8 {
    margin: 3.5rem !important;
  }

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

  .m-lg-10 {
    margin: 4.5rem !important;
  }

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

  .m-lg-12 {
    margin: 6rem !important;
  }

  .m-lg-13 {
    margin: 6.5rem !important;
  }

  .m-lg-14 {
    margin: 7rem !important;
  }

  .m-lg-15 {
    margin: 7.5rem !important;
  }

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

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

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

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

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

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

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

  .mx-lg-6 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }

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

  .mx-lg-8 {
    margin-left: 3.5rem !important;
    margin-right: 3.5rem !important;
  }

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

  .mx-lg-10 {
    margin-left: 4.5rem !important;
    margin-right: 4.5rem !important;
  }

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

  .mx-lg-12 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }

  .mx-lg-13 {
    margin-left: 6.5rem !important;
    margin-right: 6.5rem !important;
  }

  .mx-lg-14 {
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }

  .mx-lg-15 {
    margin-left: 7.5rem !important;
    margin-right: 7.5rem !important;
  }

  .mx-lg-auto {
    margin-left: auto !important;
    margin-right: 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: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .my-lg-6 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

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

  .my-lg-8 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }

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

  .my-lg-10 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }

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

  .my-lg-12 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }

  .my-lg-13 {
    margin-top: 6.5rem !important;
    margin-bottom: 6.5rem !important;
  }

  .my-lg-14 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }

  .my-lg-15 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !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: 2rem !important;
  }

  .mt-lg-6 {
    margin-top: 2.5rem !important;
  }

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

  .mt-lg-8 {
    margin-top: 3.5rem !important;
  }

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

  .mt-lg-10 {
    margin-top: 4.5rem !important;
  }

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

  .mt-lg-12 {
    margin-top: 6rem !important;
  }

  .mt-lg-13 {
    margin-top: 6.5rem !important;
  }

  .mt-lg-14 {
    margin-top: 7rem !important;
  }

  .mt-lg-15 {
    margin-top: 7.5rem !important;
  }

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

  .me-lg-0 {
    margin-left: 0 !important;
  }

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

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

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

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

  .me-lg-5 {
    margin-left: 2rem !important;
  }

  .me-lg-6 {
    margin-left: 2.5rem !important;
  }

  .me-lg-7 {
    margin-left: 3rem !important;
  }

  .me-lg-8 {
    margin-left: 3.5rem !important;
  }

  .me-lg-9 {
    margin-left: 4rem !important;
  }

  .me-lg-10 {
    margin-left: 4.5rem !important;
  }

  .me-lg-11 {
    margin-left: 5rem !important;
  }

  .me-lg-12 {
    margin-left: 6rem !important;
  }

  .me-lg-13 {
    margin-left: 6.5rem !important;
  }

  .me-lg-14 {
    margin-left: 7rem !important;
  }

  .me-lg-15 {
    margin-left: 7.5rem !important;
  }

  .me-lg-auto {
    margin-left: 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: 2rem !important;
  }

  .mb-lg-6 {
    margin-bottom: 2.5rem !important;
  }

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

  .mb-lg-8 {
    margin-bottom: 3.5rem !important;
  }

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

  .mb-lg-10 {
    margin-bottom: 4.5rem !important;
  }

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

  .mb-lg-12 {
    margin-bottom: 6rem !important;
  }

  .mb-lg-13 {
    margin-bottom: 6.5rem !important;
  }

  .mb-lg-14 {
    margin-bottom: 7rem !important;
  }

  .mb-lg-15 {
    margin-bottom: 7.5rem !important;
  }

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

  .ms-lg-0 {
    margin-right: 0 !important;
  }

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

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

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

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

  .ms-lg-5 {
    margin-right: 2rem !important;
  }

  .ms-lg-6 {
    margin-right: 2.5rem !important;
  }

  .ms-lg-7 {
    margin-right: 3rem !important;
  }

  .ms-lg-8 {
    margin-right: 3.5rem !important;
  }

  .ms-lg-9 {
    margin-right: 4rem !important;
  }

  .ms-lg-10 {
    margin-right: 4.5rem !important;
  }

  .ms-lg-11 {
    margin-right: 5rem !important;
  }

  .ms-lg-12 {
    margin-right: 6rem !important;
  }

  .ms-lg-13 {
    margin-right: 6.5rem !important;
  }

  .ms-lg-14 {
    margin-right: 7rem !important;
  }

  .ms-lg-15 {
    margin-right: 7.5rem !important;
  }

  .ms-lg-auto {
    margin-right: auto !important;
  }

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

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

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

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

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

  .m-lg-n6 {
    margin: -2.5rem !important;
  }

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

  .m-lg-n8 {
    margin: -3.5rem !important;
  }

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

  .m-lg-n10 {
    margin: -4.5rem !important;
  }

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

  .m-lg-n12 {
    margin: -6rem !important;
  }

  .m-lg-n13 {
    margin: -6.5rem !important;
  }

  .m-lg-n14 {
    margin: -7rem !important;
  }

  .m-lg-n15 {
    margin: -7.5rem !important;
  }

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

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

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

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

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

  .mx-lg-n6 {
    margin-left: -2.5rem !important;
    margin-right: -2.5rem !important;
  }

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

  .mx-lg-n8 {
    margin-left: -3.5rem !important;
    margin-right: -3.5rem !important;
  }

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

  .mx-lg-n10 {
    margin-left: -4.5rem !important;
    margin-right: -4.5rem !important;
  }

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

  .mx-lg-n12 {
    margin-left: -6rem !important;
    margin-right: -6rem !important;
  }

  .mx-lg-n13 {
    margin-left: -6.5rem !important;
    margin-right: -6.5rem !important;
  }

  .mx-lg-n14 {
    margin-left: -7rem !important;
    margin-right: -7rem !important;
  }

  .mx-lg-n15 {
    margin-left: -7.5rem !important;
    margin-right: -7.5rem !important;
  }

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

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

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

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

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

  .my-lg-n6 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }

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

  .my-lg-n8 {
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }

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

  .my-lg-n10 {
    margin-top: -4.5rem !important;
    margin-bottom: -4.5rem !important;
  }

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

  .my-lg-n12 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }

  .my-lg-n13 {
    margin-top: -6.5rem !important;
    margin-bottom: -6.5rem !important;
  }

  .my-lg-n14 {
    margin-top: -7rem !important;
    margin-bottom: -7rem !important;
  }

  .my-lg-n15 {
    margin-top: -7.5rem !important;
    margin-bottom: -7.5rem !important;
  }

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

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

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

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

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

  .mt-lg-n6 {
    margin-top: -2.5rem !important;
  }

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

  .mt-lg-n8 {
    margin-top: -3.5rem !important;
  }

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

  .mt-lg-n10 {
    margin-top: -4.5rem !important;
  }

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

  .mt-lg-n12 {
    margin-top: -6rem !important;
  }

  .mt-lg-n13 {
    margin-top: -6.5rem !important;
  }

  .mt-lg-n14 {
    margin-top: -7rem !important;
  }

  .mt-lg-n15 {
    margin-top: -7.5rem !important;
  }

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

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

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

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

  .me-lg-n5 {
    margin-left: -2rem !important;
  }

  .me-lg-n6 {
    margin-left: -2.5rem !important;
  }

  .me-lg-n7 {
    margin-left: -3rem !important;
  }

  .me-lg-n8 {
    margin-left: -3.5rem !important;
  }

  .me-lg-n9 {
    margin-left: -4rem !important;
  }

  .me-lg-n10 {
    margin-left: -4.5rem !important;
  }

  .me-lg-n11 {
    margin-left: -5rem !important;
  }

  .me-lg-n12 {
    margin-left: -6rem !important;
  }

  .me-lg-n13 {
    margin-left: -6.5rem !important;
  }

  .me-lg-n14 {
    margin-left: -7rem !important;
  }

  .me-lg-n15 {
    margin-left: -7.5rem !important;
  }

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

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

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

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

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

  .mb-lg-n6 {
    margin-bottom: -2.5rem !important;
  }

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

  .mb-lg-n8 {
    margin-bottom: -3.5rem !important;
  }

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

  .mb-lg-n10 {
    margin-bottom: -4.5rem !important;
  }

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

  .mb-lg-n12 {
    margin-bottom: -6rem !important;
  }

  .mb-lg-n13 {
    margin-bottom: -6.5rem !important;
  }

  .mb-lg-n14 {
    margin-bottom: -7rem !important;
  }

  .mb-lg-n15 {
    margin-bottom: -7.5rem !important;
  }

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

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

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

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

  .ms-lg-n5 {
    margin-right: -2rem !important;
  }

  .ms-lg-n6 {
    margin-right: -2.5rem !important;
  }

  .ms-lg-n7 {
    margin-right: -3rem !important;
  }

  .ms-lg-n8 {
    margin-right: -3.5rem !important;
  }

  .ms-lg-n9 {
    margin-right: -4rem !important;
  }

  .ms-lg-n10 {
    margin-right: -4.5rem !important;
  }

  .ms-lg-n11 {
    margin-right: -5rem !important;
  }

  .ms-lg-n12 {
    margin-right: -6rem !important;
  }

  .ms-lg-n13 {
    margin-right: -6.5rem !important;
  }

  .ms-lg-n14 {
    margin-right: -7rem !important;
  }

  .ms-lg-n15 {
    margin-right: -7.5rem !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: 2rem !important;
  }

  .p-lg-6 {
    padding: 2.5rem !important;
  }

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

  .p-lg-8 {
    padding: 3.5rem !important;
  }

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

  .p-lg-10 {
    padding: 4.5rem !important;
  }

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

  .p-lg-12 {
    padding: 6rem !important;
  }

  .p-lg-13 {
    padding: 6.5rem !important;
  }

  .p-lg-14 {
    padding: 7rem !important;
  }

  .p-lg-15 {
    padding: 7.5rem !important;
  }

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

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

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

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

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

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

  .px-lg-6 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }

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

  .px-lg-8 {
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }

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

  .px-lg-10 {
    padding-left: 4.5rem !important;
    padding-right: 4.5rem !important;
  }

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

  .px-lg-12 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }

  .px-lg-13 {
    padding-left: 6.5rem !important;
    padding-right: 6.5rem !important;
  }

  .px-lg-14 {
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }

  .px-lg-15 {
    padding-left: 7.5rem !important;
    padding-right: 7.5rem !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: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .py-lg-6 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

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

  .py-lg-8 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

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

  .py-lg-10 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }

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

  .py-lg-12 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }

  .py-lg-13 {
    padding-top: 6.5rem !important;
    padding-bottom: 6.5rem !important;
  }

  .py-lg-14 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }

  .py-lg-15 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !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: 2rem !important;
  }

  .pt-lg-6 {
    padding-top: 2.5rem !important;
  }

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

  .pt-lg-8 {
    padding-top: 3.5rem !important;
  }

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

  .pt-lg-10 {
    padding-top: 4.5rem !important;
  }

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

  .pt-lg-12 {
    padding-top: 6rem !important;
  }

  .pt-lg-13 {
    padding-top: 6.5rem !important;
  }

  .pt-lg-14 {
    padding-top: 7rem !important;
  }

  .pt-lg-15 {
    padding-top: 7.5rem !important;
  }

  .pe-lg-0 {
    padding-left: 0 !important;
  }

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

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

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

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

  .pe-lg-5 {
    padding-left: 2rem !important;
  }

  .pe-lg-6 {
    padding-left: 2.5rem !important;
  }

  .pe-lg-7 {
    padding-left: 3rem !important;
  }

  .pe-lg-8 {
    padding-left: 3.5rem !important;
  }

  .pe-lg-9 {
    padding-left: 4rem !important;
  }

  .pe-lg-10 {
    padding-left: 4.5rem !important;
  }

  .pe-lg-11 {
    padding-left: 5rem !important;
  }

  .pe-lg-12 {
    padding-left: 6rem !important;
  }

  .pe-lg-13 {
    padding-left: 6.5rem !important;
  }

  .pe-lg-14 {
    padding-left: 7rem !important;
  }

  .pe-lg-15 {
    padding-left: 7.5rem !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: 2rem !important;
  }

  .pb-lg-6 {
    padding-bottom: 2.5rem !important;
  }

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

  .pb-lg-8 {
    padding-bottom: 3.5rem !important;
  }

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

  .pb-lg-10 {
    padding-bottom: 4.5rem !important;
  }

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

  .pb-lg-12 {
    padding-bottom: 6rem !important;
  }

  .pb-lg-13 {
    padding-bottom: 6.5rem !important;
  }

  .pb-lg-14 {
    padding-bottom: 7rem !important;
  }

  .pb-lg-15 {
    padding-bottom: 7.5rem !important;
  }

  .ps-lg-0 {
    padding-right: 0 !important;
  }

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

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

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

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

  .ps-lg-5 {
    padding-right: 2rem !important;
  }

  .ps-lg-6 {
    padding-right: 2.5rem !important;
  }

  .ps-lg-7 {
    padding-right: 3rem !important;
  }

  .ps-lg-8 {
    padding-right: 3.5rem !important;
  }

  .ps-lg-9 {
    padding-right: 4rem !important;
  }

  .ps-lg-10 {
    padding-right: 4.5rem !important;
  }

  .ps-lg-11 {
    padding-right: 5rem !important;
  }

  .ps-lg-12 {
    padding-right: 6rem !important;
  }

  .ps-lg-13 {
    padding-right: 6.5rem !important;
  }

  .ps-lg-14 {
    padding-right: 7rem !important;
  }

  .ps-lg-15 {
    padding-right: 7.5rem !important;
  }

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

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

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

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

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

  .gap-lg-5 {
    gap: 2rem !important;
  }

  .gap-lg-6 {
    gap: 2.5rem !important;
  }

  .gap-lg-7 {
    gap: 3rem !important;
  }

  .gap-lg-8 {
    gap: 3.5rem !important;
  }

  .gap-lg-9 {
    gap: 4rem !important;
  }

  .gap-lg-10 {
    gap: 4.5rem !important;
  }

  .gap-lg-11 {
    gap: 5rem !important;
  }

  .gap-lg-12 {
    gap: 6rem !important;
  }

  .gap-lg-13 {
    gap: 6.5rem !important;
  }

  .gap-lg-14 {
    gap: 7rem !important;
  }

  .gap-lg-15 {
    gap: 7.5rem !important;
  }

  .fs-lg--3 {
    font-size: 0.512rem !important;
  }

  .fs-lg--2 {
    font-size: 0.64rem !important;
  }

  .fs-lg--1 {
    font-size: 0.8rem !important;
  }

  .fs-lg-0 {
    font-size: 1rem !important;
  }

  .fs-lg-1 {
    font-size: 1.25rem !important;
  }

  .fs-lg-2 {
    font-size: 1.5625rem !important;
  }

  .fs-lg-3 {
    font-size: 1.953125rem !important;
  }

  .fs-lg-4 {
    font-size: 2.44140625rem !important;
  }

  .fs-lg-5 {
    font-size: 3.0517578125rem !important;
  }

  .fs-lg-6 {
    font-size: 3.8146972656rem !important;
  }

  .fs-lg-7 {
    font-size: 4.768371582rem !important;
  }

  .lh-lg-1 {
    line-height: 1 !important;
  }

  .lh-lg-sm {
    line-height: 1.2 !important;
  }

  .lh-lg-base {
    line-height: 1.49 !important;
  }

  .lh-lg-lg {
    line-height: 1.4 !important;
  }

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

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

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

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

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

  .rounded-lg-top-0 {
    border-top-right-radius: 0 !important;
    border-top-left-radius: 0 !important;
  }

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

  .rounded-lg-end-lg {
    border-top-left-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
  }

  .rounded-lg-end-0 {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

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

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

  .rounded-lg-bottom-0 {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }

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

  .rounded-lg-start-lg {
    border-bottom-right-radius: 0.5rem !important;
    border-top-right-radius: 0.5rem !important;
  }

  .rounded-lg-start-0 {
    border-bottom-right-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }

  .max-vh-lg-25 {
    max-height: 25vh !important;
  }

  .max-vh-lg-50 {
    max-height: 50vh !important;
  }

  .max-vh-lg-75 {
    max-height: 75vh !important;
  }

  .max-vh-lg-100 {
    max-height: 100vh !important;
  }

  .border-x-lg {
    border-right: var(--phoenix-border-width) var(--phoenix-border-style) var(--phoenix-border-color) !important;
    border-left: var(--phoenix-border-width) var(--phoenix-border-style) var(--phoenix-border-color) !important;
  }

  .border-x-lg-0 {
    border-right: 0 !important;
    border-left: 0 !important;
  }

  .border-y-lg {
    border-top: var(--phoenix-border-width) var(--phoenix-border-style) var(--phoenix-border-color) !important;
    border-bottom: var(--phoenix-border-width) var(--phoenix-border-style) var(--phoenix-border-color) !important;
  }

  .border-y-lg-0 {
    border-top: 0 !important;
    border-bottom: 0 !important;
  }

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

@media (min-width: 1200px) {
  .float-xl-start {
    float: right !important;
  }

  .float-xl-end {
    float: left !important;
  }

  .float-xl-none {
    float: none !important;
  }

  .opacity-xl-0 {
    opacity: 0 !important;
  }

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

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

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

  .opacity-xl-85 {
    opacity: 0.85 !important;
  }

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

  .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: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .d-xl-none {
    display: none !important;
  }

  .position-xl-static {
    position: static !important;
  }

  .position-xl-relative {
    position: relative !important;
  }

  .position-xl-absolute {
    position: absolute !important;
  }

  .position-xl-fixed {
    position: fixed !important;
  }

  .position-xl-sticky {
    position: sticky !important;
  }

  .translate-xl-middle {
    -webkit-transform: translateX(50%) translateY(-50%) !important;
    -ms-transform: translateX(50%) translateY(-50%) !important;
    transform: translateX(50%) translateY(-50%) !important;
  }

  .translate-xl-middle-x {
    -webkit-transform: translateX(50%) !important;
    -ms-transform: translateX(50%) !important;
    transform: translateX(50%) !important;
  }

  .translate-xl-middle-y {
    -webkit-transform: translateY(-50%) !important;
    -ms-transform: translateY(-50%) !important;
    transform: translateY(-50%) !important;
  }

  .border-xl {
    border: var(--phoenix-border-width) var(--phoenix-border-style) var(--phoenix-border-color) !important;
  }

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

  .border-top-xl {
    border-top: var(--phoenix-border-width) var(--phoenix-border-style) var(--phoenix-border-color) !important;
  }

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

  .border-end-xl {
    border-left: var(--phoenix-border-width) var(--phoenix-border-style) var(--phoenix-border-color) !important;
  }

  .border-end-xl-0 {
    border-left: 0 !important;
  }

  .border-bottom-xl {
    border-bottom: var(--phoenix-border-width) var(--phoenix-border-style) var(--phoenix-border-color) !important;
  }

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

  .border-start-xl {
    border-right: var(--phoenix-border-width) var(--phoenix-border-style) var(--phoenix-border-color) !important;
  }

  .border-start-xl-0 {
    border-right: 0 !important;
  }

  .w-xl-25 {
    width: 25% !important;
  }

  .w-xl-30 {
    width: 30% !important;
  }

  .w-xl-50 {
    width: 50% !important;
  }

  .w-xl-70 {
    width: 70% !important;
  }

  .w-xl-75 {
    width: 75% !important;
  }

  .w-xl-100 {
    width: 100% !important;
  }

  .w-xl-max-content {
    width: -webkit-max-content !important;
    width: -moz-max-content !important;
    width: max-content !important;
  }

  .w-xl-min-content {
    width: -webkit-min-content !important;
    width: -moz-min-content !important;
    width: min-content !important;
  }

  .w-xl-auto {
    width: auto !important;
  }

  .vw-xl-25 {
    width: 25vw !important;
  }

  .vw-xl-50 {
    width: 50vw !important;
  }

  .vw-xl-75 {
    width: 75vw !important;
  }

  .vw-xl-100 {
    width: 100vw !important;
  }

  .h-xl-25 {
    height: 25% !important;
  }

  .h-xl-30 {
    height: 30% !important;
  }

  .h-xl-50 {
    height: 50% !important;
  }

  .h-xl-70 {
    height: 70% !important;
  }

  .h-xl-75 {
    height: 75% !important;
  }

  .h-xl-100 {
    height: 100% !important;
  }

  .h-xl-max-content {
    height: -webkit-max-content !important;
    height: -moz-max-content !important;
    height: max-content !important;
  }

  .h-xl-min-content {
    height: -webkit-min-content !important;
    height: -moz-min-content !important;
    height: min-content !important;
  }

  .h-xl-auto {
    height: auto !important;
  }

  .vh-xl-25 {
    height: 25vh !important;
  }

  .vh-xl-50 {
    height: 50vh !important;
  }

  .vh-xl-75 {
    height: 75vh !important;
  }

  .vh-xl-100 {
    height: 100vh !important;
  }

  .min-vh-xl-25 {
    min-height: 25vh !important;
  }

  .min-vh-xl-50 {
    min-height: 50vh !important;
  }

  .min-vh-xl-75 {
    min-height: 75vh !important;
  }

  .min-vh-xl-100 {
    min-height: 100vh !important;
  }

  .flex-xl-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }

  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-xl-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }

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

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

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

  .justify-content-xl-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .justify-content-xl-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }

  .align-items-xl-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

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

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

  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }

  .order-xl-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }

  .order-xl-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }

  .order-xl-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }

  .order-xl-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }

  .order-xl-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }

  .order-xl-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }

  .order-xl-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }

  .order-xl-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    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: 2rem !important;
  }

  .m-xl-6 {
    margin: 2.5rem !important;
  }

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

  .m-xl-8 {
    margin: 3.5rem !important;
  }

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

  .m-xl-10 {
    margin: 4.5rem !important;
  }

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

  .m-xl-12 {
    margin: 6rem !important;
  }

  .m-xl-13 {
    margin: 6.5rem !important;
  }

  .m-xl-14 {
    margin: 7rem !important;
  }

  .m-xl-15 {
    margin: 7.5rem !important;
  }

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

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

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

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

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

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

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

  .mx-xl-6 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }

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

  .mx-xl-8 {
    margin-left: 3.5rem !important;
    margin-right: 3.5rem !important;
  }

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

  .mx-xl-10 {
    margin-left: 4.5rem !important;
    margin-right: 4.5rem !important;
  }

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

  .mx-xl-12 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }

  .mx-xl-13 {
    margin-left: 6.5rem !important;
    margin-right: 6.5rem !important;
  }

  .mx-xl-14 {
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }

  .mx-xl-15 {
    margin-left: 7.5rem !important;
    margin-right: 7.5rem !important;
  }

  .mx-xl-auto {
    margin-left: auto !important;
    margin-right: 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: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .my-xl-6 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

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

  .my-xl-8 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }

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

  .my-xl-10 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }

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

  .my-xl-12 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }

  .my-xl-13 {
    margin-top: 6.5rem !important;
    margin-bottom: 6.5rem !important;
  }

  .my-xl-14 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }

  .my-xl-15 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !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: 2rem !important;
  }

  .mt-xl-6 {
    margin-top: 2.5rem !important;
  }

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

  .mt-xl-8 {
    margin-top: 3.5rem !important;
  }

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

  .mt-xl-10 {
    margin-top: 4.5rem !important;
  }

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

  .mt-xl-12 {
    margin-top: 6rem !important;
  }

  .mt-xl-13 {
    margin-top: 6.5rem !important;
  }

  .mt-xl-14 {
    margin-top: 7rem !important;
  }

  .mt-xl-15 {
    margin-top: 7.5rem !important;
  }

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

  .me-xl-0 {
    margin-left: 0 !important;
  }

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

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

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

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

  .me-xl-5 {
    margin-left: 2rem !important;
  }

  .me-xl-6 {
    margin-left: 2.5rem !important;
  }

  .me-xl-7 {
    margin-left: 3rem !important;
  }

  .me-xl-8 {
    margin-left: 3.5rem !important;
  }

  .me-xl-9 {
    margin-left: 4rem !important;
  }

  .me-xl-10 {
    margin-left: 4.5rem !important;
  }

  .me-xl-11 {
    margin-left: 5rem !important;
  }

  .me-xl-12 {
    margin-left: 6rem !important;
  }

  .me-xl-13 {
    margin-left: 6.5rem !important;
  }

  .me-xl-14 {
    margin-left: 7rem !important;
  }

  .me-xl-15 {
    margin-left: 7.5rem !important;
  }

  .me-xl-auto {
    margin-left: 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: 2rem !important;
  }

  .mb-xl-6 {
    margin-bottom: 2.5rem !important;
  }

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

  .mb-xl-8 {
    margin-bottom: 3.5rem !important;
  }

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

  .mb-xl-10 {
    margin-bottom: 4.5rem !important;
  }

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

  .mb-xl-12 {
    margin-bottom: 6rem !important;
  }

  .mb-xl-13 {
    margin-bottom: 6.5rem !important;
  }

  .mb-xl-14 {
    margin-bottom: 7rem !important;
  }

  .mb-xl-15 {
    margin-bottom: 7.5rem !important;
  }

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

  .ms-xl-0 {
    margin-right: 0 !important;
  }

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

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

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

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

  .ms-xl-5 {
    margin-right: 2rem !important;
  }

  .ms-xl-6 {
    margin-right: 2.5rem !important;
  }

  .ms-xl-7 {
    margin-right: 3rem !important;
  }

  .ms-xl-8 {
    margin-right: 3.5rem !important;
  }

  .ms-xl-9 {
    margin-right: 4rem !important;
  }

  .ms-xl-10 {
    margin-right: 4.5rem !important;
  }

  .ms-xl-11 {
    margin-right: 5rem !important;
  }

  .ms-xl-12 {
    margin-right: 6rem !important;
  }

  .ms-xl-13 {
    margin-right: 6.5rem !important;
  }

  .ms-xl-14 {
    margin-right: 7rem !important;
  }

  .ms-xl-15 {
    margin-right: 7.5rem !important;
  }

  .ms-xl-auto {
    margin-right: auto !important;
  }

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

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

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

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

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

  .m-xl-n6 {
    margin: -2.5rem !important;
  }

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

  .m-xl-n8 {
    margin: -3.5rem !important;
  }

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

  .m-xl-n10 {
    margin: -4.5rem !important;
  }

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

  .m-xl-n12 {
    margin: -6rem !important;
  }

  .m-xl-n13 {
    margin: -6.5rem !important;
  }

  .m-xl-n14 {
    margin: -7rem !important;
  }

  .m-xl-n15 {
    margin: -7.5rem !important;
  }

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

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

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

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

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

  .mx-xl-n6 {
    margin-left: -2.5rem !important;
    margin-right: -2.5rem !important;
  }

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

  .mx-xl-n8 {
    margin-left: -3.5rem !important;
    margin-right: -3.5rem !important;
  }

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

  .mx-xl-n10 {
    margin-left: -4.5rem !important;
    margin-right: -4.5rem !important;
  }

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

  .mx-xl-n12 {
    margin-left: -6rem !important;
    margin-right: -6rem !important;
  }

  .mx-xl-n13 {
    margin-left: -6.5rem !important;
    margin-right: -6.5rem !important;
  }

  .mx-xl-n14 {
    margin-left: -7rem !important;
    margin-right: -7rem !important;
  }

  .mx-xl-n15 {
    margin-left: -7.5rem !important;
    margin-right: -7.5rem !important;
  }

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

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

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

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

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

  .my-xl-n6 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }

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

  .my-xl-n8 {
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }

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

  .my-xl-n10 {
    margin-top: -4.5rem !important;
    margin-bottom: -4.5rem !important;
  }

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

  .my-xl-n12 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }

  .my-xl-n13 {
    margin-top: -6.5rem !important;
    margin-bottom: -6.5rem !important;
  }

  .my-xl-n14 {
    margin-top: -7rem !important;
    margin-bottom: -7rem !important;
  }

  .my-xl-n15 {
    margin-top: -7.5rem !important;
    margin-bottom: -7.5rem !important;
  }

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

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

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

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

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

  .mt-xl-n6 {
    margin-top: -2.5rem !important;
  }

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

  .mt-xl-n8 {
    margin-top: -3.5rem !important;
  }

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

  .mt-xl-n10 {
    margin-top: -4.5rem !important;
  }

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

  .mt-xl-n12 {
    margin-top: -6rem !important;
  }

  .mt-xl-n13 {
    margin-top: -6.5rem !important;
  }

  .mt-xl-n14 {
    margin-top: -7rem !important;
  }

  .mt-xl-n15 {
    margin-top: -7.5rem !important;
  }

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

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

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

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

  .me-xl-n5 {
    margin-left: -2rem !important;
  }

  .me-xl-n6 {
    margin-left: -2.5rem !important;
  }

  .me-xl-n7 {
    margin-left: -3rem !important;
  }

  .me-xl-n8 {
    margin-left: -3.5rem !important;
  }

  .me-xl-n9 {
    margin-left: -4rem !important;
  }

  .me-xl-n10 {
    margin-left: -4.5rem !important;
  }

  .me-xl-n11 {
    margin-left: -5rem !important;
  }

  .me-xl-n12 {
    margin-left: -6rem !important;
  }

  .me-xl-n13 {
    margin-left: -6.5rem !important;
  }

  .me-xl-n14 {
    margin-left: -7rem !important;
  }

  .me-xl-n15 {
    margin-left: -7.5rem !important;
  }

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

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

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

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

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

  .mb-xl-n6 {
    margin-bottom: -2.5rem !important;
  }

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

  .mb-xl-n8 {
    margin-bottom: -3.5rem !important;
  }

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

  .mb-xl-n10 {
    margin-bottom: -4.5rem !important;
  }

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

  .mb-xl-n12 {
    margin-bottom: -6rem !important;
  }

  .mb-xl-n13 {
    margin-bottom: -6.5rem !important;
  }

  .mb-xl-n14 {
    margin-bottom: -7rem !important;
  }

  .mb-xl-n15 {
    margin-bottom: -7.5rem !important;
  }

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

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

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

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

  .ms-xl-n5 {
    margin-right: -2rem !important;
  }

  .ms-xl-n6 {
    margin-right: -2.5rem !important;
  }

  .ms-xl-n7 {
    margin-right: -3rem !important;
  }

  .ms-xl-n8 {
    margin-right: -3.5rem !important;
  }

  .ms-xl-n9 {
    margin-right: -4rem !important;
  }

  .ms-xl-n10 {
    margin-right: -4.5rem !important;
  }

  .ms-xl-n11 {
    margin-right: -5rem !important;
  }

  .ms-xl-n12 {
    margin-right: -6rem !important;
  }

  .ms-xl-n13 {
    margin-right: -6.5rem !important;
  }

  .ms-xl-n14 {
    margin-right: -7rem !important;
  }

  .ms-xl-n15 {
    margin-right: -7.5rem !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: 2rem !important;
  }

  .p-xl-6 {
    padding: 2.5rem !important;
  }

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

  .p-xl-8 {
    padding: 3.5rem !important;
  }

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

  .p-xl-10 {
    padding: 4.5rem !important;
  }

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

  .p-xl-12 {
    padding: 6rem !important;
  }

  .p-xl-13 {
    padding: 6.5rem !important;
  }

  .p-xl-14 {
    padding: 7rem !important;
  }

  .p-xl-15 {
    padding: 7.5rem !important;
  }

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

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

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

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

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

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

  .px-xl-6 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }

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

  .px-xl-8 {
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }

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

  .px-xl-10 {
    padding-left: 4.5rem !important;
    padding-right: 4.5rem !important;
  }

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

  .px-xl-12 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }

  .px-xl-13 {
    padding-left: 6.5rem !important;
    padding-right: 6.5rem !important;
  }

  .px-xl-14 {
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }

  .px-xl-15 {
    padding-left: 7.5rem !important;
    padding-right: 7.5rem !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: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .py-xl-6 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

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

  .py-xl-8 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

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

  .py-xl-10 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }

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

  .py-xl-12 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }

  .py-xl-13 {
    padding-top: 6.5rem !important;
    padding-bottom: 6.5rem !important;
  }

  .py-xl-14 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }

  .py-xl-15 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !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: 2rem !important;
  }

  .pt-xl-6 {
    padding-top: 2.5rem !important;
  }

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

  .pt-xl-8 {
    padding-top: 3.5rem !important;
  }

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

  .pt-xl-10 {
    padding-top: 4.5rem !important;
  }

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

  .pt-xl-12 {
    padding-top: 6rem !important;
  }

  .pt-xl-13 {
    padding-top: 6.5rem !important;
  }

  .pt-xl-14 {
    padding-top: 7rem !important;
  }

  .pt-xl-15 {
    padding-top: 7.5rem !important;
  }

  .pe-xl-0 {
    padding-left: 0 !important;
  }

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

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

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

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

  .pe-xl-5 {
    padding-left: 2rem !important;
  }

  .pe-xl-6 {
    padding-left: 2.5rem !important;
  }

  .pe-xl-7 {
    padding-left: 3rem !important;
  }

  .pe-xl-8 {
    padding-left: 3.5rem !important;
  }

  .pe-xl-9 {
    padding-left: 4rem !important;
  }

  .pe-xl-10 {
    padding-left: 4.5rem !important;
  }

  .pe-xl-11 {
    padding-left: 5rem !important;
  }

  .pe-xl-12 {
    padding-left: 6rem !important;
  }

  .pe-xl-13 {
    padding-left: 6.5rem !important;
  }

  .pe-xl-14 {
    padding-left: 7rem !important;
  }

  .pe-xl-15 {
    padding-left: 7.5rem !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: 2rem !important;
  }

  .pb-xl-6 {
    padding-bottom: 2.5rem !important;
  }

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

  .pb-xl-8 {
    padding-bottom: 3.5rem !important;
  }

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

  .pb-xl-10 {
    padding-bottom: 4.5rem !important;
  }

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

  .pb-xl-12 {
    padding-bottom: 6rem !important;
  }

  .pb-xl-13 {
    padding-bottom: 6.5rem !important;
  }

  .pb-xl-14 {
    padding-bottom: 7rem !important;
  }

  .pb-xl-15 {
    padding-bottom: 7.5rem !important;
  }

  .ps-xl-0 {
    padding-right: 0 !important;
  }

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

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

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

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

  .ps-xl-5 {
    padding-right: 2rem !important;
  }

  .ps-xl-6 {
    padding-right: 2.5rem !important;
  }

  .ps-xl-7 {
    padding-right: 3rem !important;
  }

  .ps-xl-8 {
    padding-right: 3.5rem !important;
  }

  .ps-xl-9 {
    padding-right: 4rem !important;
  }

  .ps-xl-10 {
    padding-right: 4.5rem !important;
  }

  .ps-xl-11 {
    padding-right: 5rem !important;
  }

  .ps-xl-12 {
    padding-right: 6rem !important;
  }

  .ps-xl-13 {
    padding-right: 6.5rem !important;
  }

  .ps-xl-14 {
    padding-right: 7rem !important;
  }

  .ps-xl-15 {
    padding-right: 7.5rem !important;
  }

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

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

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

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

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

  .gap-xl-5 {
    gap: 2rem !important;
  }

  .gap-xl-6 {
    gap: 2.5rem !important;
  }

  .gap-xl-7 {
    gap: 3rem !important;
  }

  .gap-xl-8 {
    gap: 3.5rem !important;
  }

  .gap-xl-9 {
    gap: 4rem !important;
  }

  .gap-xl-10 {
    gap: 4.5rem !important;
  }

  .gap-xl-11 {
    gap: 5rem !important;
  }

  .gap-xl-12 {
    gap: 6rem !important;
  }

  .gap-xl-13 {
    gap: 6.5rem !important;
  }

  .gap-xl-14 {
    gap: 7rem !important;
  }

  .gap-xl-15 {
    gap: 7.5rem !important;
  }

  .fs-xl--3 {
    font-size: 0.512rem !important;
  }

  .fs-xl--2 {
    font-size: 0.64rem !important;
  }

  .fs-xl--1 {
    font-size: 0.8rem !important;
  }

  .fs-xl-0 {
    font-size: 1rem !important;
  }

  .fs-xl-1 {
    font-size: 1.25rem !important;
  }

  .fs-xl-2 {
    font-size: 1.5625rem !important;
  }

  .fs-xl-3 {
    font-size: 1.953125rem !important;
  }

  .fs-xl-4 {
    font-size: 2.44140625rem !important;
  }

  .fs-xl-5 {
    font-size: 3.0517578125rem !important;
  }

  .fs-xl-6 {
    font-size: 3.8146972656rem !important;
  }

  .fs-xl-7 {
    font-size: 4.768371582rem !important;
  }

  .lh-xl-1 {
    line-height: 1 !important;
  }

  .lh-xl-sm {
    line-height: 1.2 !important;
  }

  .lh-xl-base {
    line-height: 1.49 !important;
  }

  .lh-xl-lg {
    line-height: 1.4 !important;
  }

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

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

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

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

  .rounded-xl-top-lg {
    border-top-right-radius: 0.5rem !important;
    border-top-left-radius: 0.5rem !important;
  }

  .rounded-xl-top-0 {
    border-top-right-radius: 0 !important;
    border-top-left-radius: 0 !important;
  }

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

  .rounded-xl-end-lg {
    border-top-left-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
  }

  .rounded-xl-end-0 {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

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

  .rounded-xl-bottom-lg {
    border-bottom-left-radius: 0.5rem !important;
    border-bottom-right-radius: 0.5rem !important;
  }

  .rounded-xl-bottom-0 {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }

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

  .rounded-xl-start-lg {
    border-bottom-right-radius: 0.5rem !important;
    border-top-right-radius: 0.5rem !important;
  }

  .rounded-xl-start-0 {
    border-bottom-right-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }

  .max-vh-xl-25 {
    max-height: 25vh !important;
  }

  .max-vh-xl-50 {
    max-height: 50vh !important;
  }

  .max-vh-xl-75 {
    max-height: 75vh !important;
  }

  .max-vh-xl-100 {
    max-height: 100vh !important;
  }

  .border-x-xl {
    border-right: var(--phoenix-border-width) var(--phoenix-border-style) var(--phoenix-border-color) !important;
    border-left: var(--phoenix-border-width) var(--phoenix-border-style) var(--phoenix-border-color) !important;
  }

  .border-x-xl-0 {
    border-right: 0 !important;
    border-left: 0 !important;
  }

  .border-y-xl {
    border-top: var(--phoenix-border-width) var(--phoenix-border-style) var(--phoenix-border-color) !important;
    border-bottom: var(--phoenix-border-width) var(--phoenix-border-style) var(--phoenix-border-color) !important;
  }

  .border-y-xl-0 {
    border-top: 0 !important;
    border-bottom: 0 !important;
  }

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

@media (min-width: 1540px) {
  .float-xxl-start {
    float: right !important;
  }

  .float-xxl-end {
    float: left !important;
  }

  .float-xxl-none {
    float: none !important;
  }

  .opacity-xxl-0 {
    opacity: 0 !important;
  }

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

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

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

  .opacity-xxl-85 {
    opacity: 0.85 !important;
  }

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

  .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: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-xxl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .d-xxl-none {
    display: none !important;
  }

  .position-xxl-static {
    position: static !important;
  }

  .position-xxl-relative {
    position: relative !important;
  }

  .position-xxl-absolute {
    position: absolute !important;
  }

  .position-xxl-fixed {
    position: fixed !important;
  }

  .position-xxl-sticky {
    position: sticky !important;
  }

  .translate-xxl-middle {
    -webkit-transform: translateX(50%) translateY(-50%) !important;
    -ms-transform: translateX(50%) translateY(-50%) !important;
    transform: translateX(50%) translateY(-50%) !important;
  }

  .translate-xxl-middle-x {
    -webkit-transform: translateX(50%) !important;
    -ms-transform: translateX(50%) !important;
    transform: translateX(50%) !important;
  }

  .translate-xxl-middle-y {
    -webkit-transform: translateY(-50%) !important;
    -ms-transform: translateY(-50%) !important;
    transform: translateY(-50%) !important;
  }

  .border-xxl {
    border: var(--phoenix-border-width) var(--phoenix-border-style) var(--phoenix-border-color) !important;
  }

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

  .border-top-xxl {
    border-top: var(--phoenix-border-width) var(--phoenix-border-style) var(--phoenix-border-color) !important;
  }

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

  .border-end-xxl {
    border-left: var(--phoenix-border-width) var(--phoenix-border-style) var(--phoenix-border-color) !important;
  }

  .border-end-xxl-0 {
    border-left: 0 !important;
  }

  .border-bottom-xxl {
    border-bottom: var(--phoenix-border-width) var(--phoenix-border-style) var(--phoenix-border-color) !important;
  }

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

  .border-start-xxl {
    border-right: var(--phoenix-border-width) var(--phoenix-border-style) var(--phoenix-border-color) !important;
  }

  .border-start-xxl-0 {
    border-right: 0 !important;
  }

  .w-xxl-25 {
    width: 25% !important;
  }

  .w-xxl-30 {
    width: 30% !important;
  }

  .w-xxl-50 {
    width: 50% !important;
  }

  .w-xxl-70 {
    width: 70% !important;
  }

  .w-xxl-75 {
    width: 75% !important;
  }

  .w-xxl-100 {
    width: 100% !important;
  }

  .w-xxl-max-content {
    width: -webkit-max-content !important;
    width: -moz-max-content !important;
    width: max-content !important;
  }

  .w-xxl-min-content {
    width: -webkit-min-content !important;
    width: -moz-min-content !important;
    width: min-content !important;
  }

  .w-xxl-auto {
    width: auto !important;
  }

  .vw-xxl-25 {
    width: 25vw !important;
  }

  .vw-xxl-50 {
    width: 50vw !important;
  }

  .vw-xxl-75 {
    width: 75vw !important;
  }

  .vw-xxl-100 {
    width: 100vw !important;
  }

  .h-xxl-25 {
    height: 25% !important;
  }

  .h-xxl-30 {
    height: 30% !important;
  }

  .h-xxl-50 {
    height: 50% !important;
  }

  .h-xxl-70 {
    height: 70% !important;
  }

  .h-xxl-75 {
    height: 75% !important;
  }

  .h-xxl-100 {
    height: 100% !important;
  }

  .h-xxl-max-content {
    height: -webkit-max-content !important;
    height: -moz-max-content !important;
    height: max-content !important;
  }

  .h-xxl-min-content {
    height: -webkit-min-content !important;
    height: -moz-min-content !important;
    height: min-content !important;
  }

  .h-xxl-auto {
    height: auto !important;
  }

  .vh-xxl-25 {
    height: 25vh !important;
  }

  .vh-xxl-50 {
    height: 50vh !important;
  }

  .vh-xxl-75 {
    height: 75vh !important;
  }

  .vh-xxl-100 {
    height: 100vh !important;
  }

  .min-vh-xxl-25 {
    min-height: 25vh !important;
  }

  .min-vh-xxl-50 {
    min-height: 50vh !important;
  }

  .min-vh-xxl-75 {
    min-height: 75vh !important;
  }

  .min-vh-xxl-100 {
    min-height: 100vh !important;
  }

  .flex-xxl-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }

  .flex-xxl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-xxl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-xxl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-xxl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-xxl-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }

  .flex-xxl-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }

  .flex-xxl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }

  .flex-xxl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }

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

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

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

  .justify-content-xxl-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-xxl-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-xxl-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-xxl-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-xxl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .justify-content-xxl-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }

  .align-items-xxl-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-xxl-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-xxl-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-xxl-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-xxl-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-xxl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-xxl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-xxl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-xxl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-xxl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-xxl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-xxl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

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

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

  .align-self-xxl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-xxl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-xxl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }

  .order-xxl-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }

  .order-xxl-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }

  .order-xxl-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }

  .order-xxl-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }

  .order-xxl-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }

  .order-xxl-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }

  .order-xxl-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }

  .order-xxl-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    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: 2rem !important;
  }

  .m-xxl-6 {
    margin: 2.5rem !important;
  }

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

  .m-xxl-8 {
    margin: 3.5rem !important;
  }

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

  .m-xxl-10 {
    margin: 4.5rem !important;
  }

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

  .m-xxl-12 {
    margin: 6rem !important;
  }

  .m-xxl-13 {
    margin: 6.5rem !important;
  }

  .m-xxl-14 {
    margin: 7rem !important;
  }

  .m-xxl-15 {
    margin: 7.5rem !important;
  }

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

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

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

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

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

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

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

  .mx-xxl-6 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }

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

  .mx-xxl-8 {
    margin-left: 3.5rem !important;
    margin-right: 3.5rem !important;
  }

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

  .mx-xxl-10 {
    margin-left: 4.5rem !important;
    margin-right: 4.5rem !important;
  }

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

  .mx-xxl-12 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }

  .mx-xxl-13 {
    margin-left: 6.5rem !important;
    margin-right: 6.5rem !important;
  }

  .mx-xxl-14 {
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }

  .mx-xxl-15 {
    margin-left: 7.5rem !important;
    margin-right: 7.5rem !important;
  }

  .mx-xxl-auto {
    margin-left: auto !important;
    margin-right: 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: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .my-xxl-6 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

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

  .my-xxl-8 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }

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

  .my-xxl-10 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }

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

  .my-xxl-12 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }

  .my-xxl-13 {
    margin-top: 6.5rem !important;
    margin-bottom: 6.5rem !important;
  }

  .my-xxl-14 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }

  .my-xxl-15 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !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: 2rem !important;
  }

  .mt-xxl-6 {
    margin-top: 2.5rem !important;
  }

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

  .mt-xxl-8 {
    margin-top: 3.5rem !important;
  }

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

  .mt-xxl-10 {
    margin-top: 4.5rem !important;
  }

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

  .mt-xxl-12 {
    margin-top: 6rem !important;
  }

  .mt-xxl-13 {
    margin-top: 6.5rem !important;
  }

  .mt-xxl-14 {
    margin-top: 7rem !important;
  }

  .mt-xxl-15 {
    margin-top: 7.5rem !important;
  }

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

  .me-xxl-0 {
    margin-left: 0 !important;
  }

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

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

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

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

  .me-xxl-5 {
    margin-left: 2rem !important;
  }

  .me-xxl-6 {
    margin-left: 2.5rem !important;
  }

  .me-xxl-7 {
    margin-left: 3rem !important;
  }

  .me-xxl-8 {
    margin-left: 3.5rem !important;
  }

  .me-xxl-9 {
    margin-left: 4rem !important;
  }

  .me-xxl-10 {
    margin-left: 4.5rem !important;
  }

  .me-xxl-11 {
    margin-left: 5rem !important;
  }

  .me-xxl-12 {
    margin-left: 6rem !important;
  }

  .me-xxl-13 {
    margin-left: 6.5rem !important;
  }

  .me-xxl-14 {
    margin-left: 7rem !important;
  }

  .me-xxl-15 {
    margin-left: 7.5rem !important;
  }

  .me-xxl-auto {
    margin-left: 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: 2rem !important;
  }

  .mb-xxl-6 {
    margin-bottom: 2.5rem !important;
  }

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

  .mb-xxl-8 {
    margin-bottom: 3.5rem !important;
  }

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

  .mb-xxl-10 {
    margin-bottom: 4.5rem !important;
  }

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

  .mb-xxl-12 {
    margin-bottom: 6rem !important;
  }

  .mb-xxl-13 {
    margin-bottom: 6.5rem !important;
  }

  .mb-xxl-14 {
    margin-bottom: 7rem !important;
  }

  .mb-xxl-15 {
    margin-bottom: 7.5rem !important;
  }

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

  .ms-xxl-0 {
    margin-right: 0 !important;
  }

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

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

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

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

  .ms-xxl-5 {
    margin-right: 2rem !important;
  }

  .ms-xxl-6 {
    margin-right: 2.5rem !important;
  }

  .ms-xxl-7 {
    margin-right: 3rem !important;
  }

  .ms-xxl-8 {
    margin-right: 3.5rem !important;
  }

  .ms-xxl-9 {
    margin-right: 4rem !important;
  }

  .ms-xxl-10 {
    margin-right: 4.5rem !important;
  }

  .ms-xxl-11 {
    margin-right: 5rem !important;
  }

  .ms-xxl-12 {
    margin-right: 6rem !important;
  }

  .ms-xxl-13 {
    margin-right: 6.5rem !important;
  }

  .ms-xxl-14 {
    margin-right: 7rem !important;
  }

  .ms-xxl-15 {
    margin-right: 7.5rem !important;
  }

  .ms-xxl-auto {
    margin-right: auto !important;
  }

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

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

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

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

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

  .m-xxl-n6 {
    margin: -2.5rem !important;
  }

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

  .m-xxl-n8 {
    margin: -3.5rem !important;
  }

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

  .m-xxl-n10 {
    margin: -4.5rem !important;
  }

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

  .m-xxl-n12 {
    margin: -6rem !important;
  }

  .m-xxl-n13 {
    margin: -6.5rem !important;
  }

  .m-xxl-n14 {
    margin: -7rem !important;
  }

  .m-xxl-n15 {
    margin: -7.5rem !important;
  }

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

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

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

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

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

  .mx-xxl-n6 {
    margin-left: -2.5rem !important;
    margin-right: -2.5rem !important;
  }

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

  .mx-xxl-n8 {
    margin-left: -3.5rem !important;
    margin-right: -3.5rem !important;
  }

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

  .mx-xxl-n10 {
    margin-left: -4.5rem !important;
    margin-right: -4.5rem !important;
  }

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

  .mx-xxl-n12 {
    margin-left: -6rem !important;
    margin-right: -6rem !important;
  }

  .mx-xxl-n13 {
    margin-left: -6.5rem !important;
    margin-right: -6.5rem !important;
  }

  .mx-xxl-n14 {
    margin-left: -7rem !important;
    margin-right: -7rem !important;
  }

  .mx-xxl-n15 {
    margin-left: -7.5rem !important;
    margin-right: -7.5rem !important;
  }

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

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

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

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

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

  .my-xxl-n6 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }

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

  .my-xxl-n8 {
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }

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

  .my-xxl-n10 {
    margin-top: -4.5rem !important;
    margin-bottom: -4.5rem !important;
  }

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

  .my-xxl-n12 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }

  .my-xxl-n13 {
    margin-top: -6.5rem !important;
    margin-bottom: -6.5rem !important;
  }

  .my-xxl-n14 {
    margin-top: -7rem !important;
    margin-bottom: -7rem !important;
  }

  .my-xxl-n15 {
    margin-top: -7.5rem !important;
    margin-bottom: -7.5rem !important;
  }

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

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

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

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

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

  .mt-xxl-n6 {
    margin-top: -2.5rem !important;
  }

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

  .mt-xxl-n8 {
    margin-top: -3.5rem !important;
  }

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

  .mt-xxl-n10 {
    margin-top: -4.5rem !important;
  }

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

  .mt-xxl-n12 {
    margin-top: -6rem !important;
  }

  .mt-xxl-n13 {
    margin-top: -6.5rem !important;
  }

  .mt-xxl-n14 {
    margin-top: -7rem !important;
  }

  .mt-xxl-n15 {
    margin-top: -7.5rem !important;
  }

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

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

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

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

  .me-xxl-n5 {
    margin-left: -2rem !important;
  }

  .me-xxl-n6 {
    margin-left: -2.5rem !important;
  }

  .me-xxl-n7 {
    margin-left: -3rem !important;
  }

  .me-xxl-n8 {
    margin-left: -3.5rem !important;
  }

  .me-xxl-n9 {
    margin-left: -4rem !important;
  }

  .me-xxl-n10 {
    margin-left: -4.5rem !important;
  }

  .me-xxl-n11 {
    margin-left: -5rem !important;
  }

  .me-xxl-n12 {
    margin-left: -6rem !important;
  }

  .me-xxl-n13 {
    margin-left: -6.5rem !important;
  }

  .me-xxl-n14 {
    margin-left: -7rem !important;
  }

  .me-xxl-n15 {
    margin-left: -7.5rem !important;
  }

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

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

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

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

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

  .mb-xxl-n6 {
    margin-bottom: -2.5rem !important;
  }

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

  .mb-xxl-n8 {
    margin-bottom: -3.5rem !important;
  }

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

  .mb-xxl-n10 {
    margin-bottom: -4.5rem !important;
  }

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

  .mb-xxl-n12 {
    margin-bottom: -6rem !important;
  }

  .mb-xxl-n13 {
    margin-bottom: -6.5rem !important;
  }

  .mb-xxl-n14 {
    margin-bottom: -7rem !important;
  }

  .mb-xxl-n15 {
    margin-bottom: -7.5rem !important;
  }

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

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

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

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

  .ms-xxl-n5 {
    margin-right: -2rem !important;
  }

  .ms-xxl-n6 {
    margin-right: -2.5rem !important;
  }

  .ms-xxl-n7 {
    margin-right: -3rem !important;
  }

  .ms-xxl-n8 {
    margin-right: -3.5rem !important;
  }

  .ms-xxl-n9 {
    margin-right: -4rem !important;
  }

  .ms-xxl-n10 {
    margin-right: -4.5rem !important;
  }

  .ms-xxl-n11 {
    margin-right: -5rem !important;
  }

  .ms-xxl-n12 {
    margin-right: -6rem !important;
  }

  .ms-xxl-n13 {
    margin-right: -6.5rem !important;
  }

  .ms-xxl-n14 {
    margin-right: -7rem !important;
  }

  .ms-xxl-n15 {
    margin-right: -7.5rem !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: 2rem !important;
  }

  .p-xxl-6 {
    padding: 2.5rem !important;
  }

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

  .p-xxl-8 {
    padding: 3.5rem !important;
  }

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

  .p-xxl-10 {
    padding: 4.5rem !important;
  }

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

  .p-xxl-12 {
    padding: 6rem !important;
  }

  .p-xxl-13 {
    padding: 6.5rem !important;
  }

  .p-xxl-14 {
    padding: 7rem !important;
  }

  .p-xxl-15 {
    padding: 7.5rem !important;
  }

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

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

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

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

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

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

  .px-xxl-6 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }

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

  .px-xxl-8 {
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }

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

  .px-xxl-10 {
    padding-left: 4.5rem !important;
    padding-right: 4.5rem !important;
  }

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

  .px-xxl-12 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }

  .px-xxl-13 {
    padding-left: 6.5rem !important;
    padding-right: 6.5rem !important;
  }

  .px-xxl-14 {
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }

  .px-xxl-15 {
    padding-left: 7.5rem !important;
    padding-right: 7.5rem !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: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .py-xxl-6 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

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

  .py-xxl-8 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

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

  .py-xxl-10 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }

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

  .py-xxl-12 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }

  .py-xxl-13 {
    padding-top: 6.5rem !important;
    padding-bottom: 6.5rem !important;
  }

  .py-xxl-14 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }

  .py-xxl-15 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !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: 2rem !important;
  }

  .pt-xxl-6 {
    padding-top: 2.5rem !important;
  }

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

  .pt-xxl-8 {
    padding-top: 3.5rem !important;
  }

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

  .pt-xxl-10 {
    padding-top: 4.5rem !important;
  }

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

  .pt-xxl-12 {
    padding-top: 6rem !important;
  }

  .pt-xxl-13 {
    padding-top: 6.5rem !important;
  }

  .pt-xxl-14 {
    padding-top: 7rem !important;
  }

  .pt-xxl-15 {
    padding-top: 7.5rem !important;
  }

  .pe-xxl-0 {
    padding-left: 0 !important;
  }

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

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

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

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

  .pe-xxl-5 {
    padding-left: 2rem !important;
  }

  .pe-xxl-6 {
    padding-left: 2.5rem !important;
  }

  .pe-xxl-7 {
    padding-left: 3rem !important;
  }

  .pe-xxl-8 {
    padding-left: 3.5rem !important;
  }

  .pe-xxl-9 {
    padding-left: 4rem !important;
  }

  .pe-xxl-10 {
    padding-left: 4.5rem !important;
  }

  .pe-xxl-11 {
    padding-left: 5rem !important;
  }

  .pe-xxl-12 {
    padding-left: 6rem !important;
  }

  .pe-xxl-13 {
    padding-left: 6.5rem !important;
  }

  .pe-xxl-14 {
    padding-left: 7rem !important;
  }

  .pe-xxl-15 {
    padding-left: 7.5rem !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: 2rem !important;
  }

  .pb-xxl-6 {
    padding-bottom: 2.5rem !important;
  }

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

  .pb-xxl-8 {
    padding-bottom: 3.5rem !important;
  }

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

  .pb-xxl-10 {
    padding-bottom: 4.5rem !important;
  }

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

  .pb-xxl-12 {
    padding-bottom: 6rem !important;
  }

  .pb-xxl-13 {
    padding-bottom: 6.5rem !important;
  }

  .pb-xxl-14 {
    padding-bottom: 7rem !important;
  }

  .pb-xxl-15 {
    padding-bottom: 7.5rem !important;
  }

  .ps-xxl-0 {
    padding-right: 0 !important;
  }

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

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

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

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

  .ps-xxl-5 {
    padding-right: 2rem !important;
  }

  .ps-xxl-6 {
    padding-right: 2.5rem !important;
  }

  .ps-xxl-7 {
    padding-right: 3rem !important;
  }

  .ps-xxl-8 {
    padding-right: 3.5rem !important;
  }

  .ps-xxl-9 {
    padding-right: 4rem !important;
  }

  .ps-xxl-10 {
    padding-right: 4.5rem !important;
  }

  .ps-xxl-11 {
    padding-right: 5rem !important;
  }

  .ps-xxl-12 {
    padding-right: 6rem !important;
  }

  .ps-xxl-13 {
    padding-right: 6.5rem !important;
  }

  .ps-xxl-14 {
    padding-right: 7rem !important;
  }

  .ps-xxl-15 {
    padding-right: 7.5rem !important;
  }

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

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

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

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

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

  .gap-xxl-5 {
    gap: 2rem !important;
  }

  .gap-xxl-6 {
    gap: 2.5rem !important;
  }

  .gap-xxl-7 {
    gap: 3rem !important;
  }

  .gap-xxl-8 {
    gap: 3.5rem !important;
  }

  .gap-xxl-9 {
    gap: 4rem !important;
  }

  .gap-xxl-10 {
    gap: 4.5rem !important;
  }

  .gap-xxl-11 {
    gap: 5rem !important;
  }

  .gap-xxl-12 {
    gap: 6rem !important;
  }

  .gap-xxl-13 {
    gap: 6.5rem !important;
  }

  .gap-xxl-14 {
    gap: 7rem !important;
  }

  .gap-xxl-15 {
    gap: 7.5rem !important;
  }

  .fs-xxl--3 {
    font-size: 0.512rem !important;
  }

  .fs-xxl--2 {
    font-size: 0.64rem !important;
  }

  .fs-xxl--1 {
    font-size: 0.8rem !important;
  }

  .fs-xxl-0 {
    font-size: 1rem !important;
  }

  .fs-xxl-1 {
    font-size: 1.25rem !important;
  }

  .fs-xxl-2 {
    font-size: 1.5625rem !important;
  }

  .fs-xxl-3 {
    font-size: 1.953125rem !important;
  }

  .fs-xxl-4 {
    font-size: 2.44140625rem !important;
  }

  .fs-xxl-5 {
    font-size: 3.0517578125rem !important;
  }

  .fs-xxl-6 {
    font-size: 3.8146972656rem !important;
  }

  .fs-xxl-7 {
    font-size: 4.768371582rem !important;
  }

  .lh-xxl-1 {
    line-height: 1 !important;
  }

  .lh-xxl-sm {
    line-height: 1.2 !important;
  }

  .lh-xxl-base {
    line-height: 1.49 !important;
  }

  .lh-xxl-lg {
    line-height: 1.4 !important;
  }

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

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

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

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

  .rounded-xxl-top-lg {
    border-top-right-radius: 0.5rem !important;
    border-top-left-radius: 0.5rem !important;
  }

  .rounded-xxl-top-0 {
    border-top-right-radius: 0 !important;
    border-top-left-radius: 0 !important;
  }

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

  .rounded-xxl-end-lg {
    border-top-left-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
  }

  .rounded-xxl-end-0 {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

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

  .rounded-xxl-bottom-lg {
    border-bottom-left-radius: 0.5rem !important;
    border-bottom-right-radius: 0.5rem !important;
  }

  .rounded-xxl-bottom-0 {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }

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

  .rounded-xxl-start-lg {
    border-bottom-right-radius: 0.5rem !important;
    border-top-right-radius: 0.5rem !important;
  }

  .rounded-xxl-start-0 {
    border-bottom-right-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }

  .max-vh-xxl-25 {
    max-height: 25vh !important;
  }

  .max-vh-xxl-50 {
    max-height: 50vh !important;
  }

  .max-vh-xxl-75 {
    max-height: 75vh !important;
  }

  .max-vh-xxl-100 {
    max-height: 100vh !important;
  }

  .border-x-xxl {
    border-right: var(--phoenix-border-width) var(--phoenix-border-style) var(--phoenix-border-color) !important;
    border-left: var(--phoenix-border-width) var(--phoenix-border-style) var(--phoenix-border-color) !important;
  }

  .border-x-xxl-0 {
    border-right: 0 !important;
    border-left: 0 !important;
  }

  .border-y-xxl {
    border-top: var(--phoenix-border-width) var(--phoenix-border-style) var(--phoenix-border-color) !important;
    border-bottom: var(--phoenix-border-width) var(--phoenix-border-style) var(--phoenix-border-color) !important;
  }

  .border-y-xxl-0 {
    border-top: 0 !important;
    border-bottom: 0 !important;
  }

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

/* Establece el color inicial del icono */
.on_hover_color {
  color: #16479e;
  font-weight: 500;
  /* Color inicial (puede ser cualquier color) */
  transition: color 0.3s ease;
  /* Agrega una transición suave de 0.3 segundos */
}



/* Cambia el color del icono al pasar el cursor sobre él */
.on_hover_color:hover {
  color: #ffa102;
  /* Nuevo color al pasar el cursor sobre el icono */
}

.link_esp:hover,
.link_esp:active {
  background-color: #fe9c14;
}

.dropdown-menu .nav-link:hover {
  background-color: #fe9c14;
}

@media (min-width: 992px) {

  .navbar-horizontal .navbar-top.navbar-expand-lg .navbar-collapse .navbar-dropdown-caret::after,
  .dual-nav .navbar-top.navbar-expand-lg .navbar-collapse .navbar-dropdown-caret::after,
  .navbar-combo .navbar-top.navbar-expand-lg .navbar-collapse .navbar-dropdown-caret::after {
    display: block;
    background: #fff;
  }
}


.arrow-position-top {
  position: absolute;
  z-index: 9999;
  left: 350px;
  top: 370px;
}

/* Estilos para pantallas Extra Small (xs) */
@media (max-width: 575.98px) {
  .arrow-position-top {
    position: absolute;
    z-index: 9999;
    left: 150px;
    top: 230px;
  }
}

/* Estilos para pantallas Small (sm) y mayores */
@media (min-width: 576px) {
  /* Agrega tus estilos específicos para pantallas sm y mayores aquí */
}

/* Estilos para pantallas Medium (md) y mayores */
@media (min-width: 768px) {
  /* Agrega tus estilos específicos para pantallas md y mayores aquí */
}

/* Estilos para pantallas Large (lg) y mayores */
@media (min-width: 992px) {
  /* Agrega tus estilos específicos para pantallas lg y mayores aquí */
}

/* Estilos para pantallas Extra Large (xl) y mayores */
@media (min-width: 1200px) {
  /* Agrega tus estilos específicos para pantallas xl y mayores aquí */
}

.arrow-position-bottom {
  position: absolute;
  z-index: 9999;
  left: 350px;
  top: 670px;
}




.arrow {
  position: relative;
  width: 190px;
  background: #ffa102;
  height: 50px;
  line-height: 50px;
  margin-bottom: 30px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  z-index: 9999 !important;
  border-radius: 10px;
}

/*top arrow*/

.arrow-top:before {
  position: absolute;
  top: -10px;
  left: 50%;
  margin-left: -10px;
  content: "";
  display: block;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #ffa102;
}

/*bottom arrow*/

.arrow-bottom:after {
  position: absolute;
  bottom: -10px;
  left: 50%;
  margin-left: -10px;
  content: "";
  display: block;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #ffa102;
}

/*right arrow*/

.arrow-right:after {
  content: "";
  position: absolute;
  right: -20px;
  top: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 20px solid #ffa102;
}

/*left arrow*/

.arrow-left:before {
  content: "";
  position: absolute;
  left: -20px;
  top: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-right: 20px solid #ffa102;
}

.nav-link-menu {
  color: #fff;
  font-size: 11px;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: #fff;
  background-color: #fe9c14;

}

.nav-link-menu:hover {
  color: #fff;
  background-color: #fe9c14;
}

.navbar-top {
  background: #fff;
  color: #16479e !important;
}

#menu_principal .nav-item {
  border-right: 1px solid #16479e;
  padding-right: 13px;
}

.footer {
  height: 3rem;
  bottom: inherit;
  border-top: none;
}

.btn-white-new {
  color: white;
  font-size: 16px;
  background-color: #f6a414;
  border-radius: 0;
  box-shadow: 10px 9px 0px -5px rgba(22,71,158,1);
-webkit-box-shadow: 10px 9px 0px -5px rgba(22,71,158,1);
-moz-box-shadow: 10px 9px 0px -5px rgba(22,71,158,1);
}

.btn-white-new:hover {
  color: #f1f1f1;
  background-color: #f6a414;
}

.b-right {
  border-right: 2px solid #fff;
}

.navbar .dropdown-menu {
  overflow: visible;
  left: -33.5625rem;
}

.bg-home {
  background-color: #16479e;
}

.icons-default {
  width: 25px;
}

.icons-default-preinscripcion {
  width: 35px;
  margin-top: 5px;
  margin-right: 5px;
}


.introjs-tooltip {
  background-color: #f6a414 !important;
  color: #fff !important;
  font-weight: bold;
  margin-top: 50px !important;
  min-width: 300px !important;
  border-radius: 14px !important;
  
}


.introjs-tooltiptext {
  padding: 0px 20px 20px 20px !important;
}

.introjs-arrow.top {
  top: -10px;
  left: 10px;
  border-bottom-color: #f6a414 !important;
}
/* 
.introjs-tooltip-title {
  display: none !important;
}

.introjs-tooltipbuttons {
  display: none !important;
} */


.introjs-arrow.top {
  top: -45px !important;
  left: 10px !important;
  border-bottom-color: #f6a414 !important;
}

.introjs-arrow {
  border: 25px solid transparent  !important;
  content: "";
  position: absolute;
}

.introjs-tooltip-header {
  min-height: 1.0em;
}

.introjs-tooltiptext {
  padding-bottom: 0 !important;
}

.introjs-button {
    box-sizing: content-box;
    position: relative;
    outline: none;
    overflow: visible;
    border: none !important;
    text-decoration: none;
    text-shadow: none !important;
    font-size: 14px;
    color: #fff !important;
    white-space: nowrap;
    cursor: pointer;
    padding: .3rem 1rem !important;
    outline: 0;
    background-color: #e28e13 !important;
    border-radius: .2em !important;
    zoom: 1;
    display: inline;
}

.introjs-bullets ul li a.active {
    background: #e28e13 !important;
}

.introjs-button:focus {
    outline: 0 !important;
    text-decoration: none;
    background-color: #eee;
    box-shadow: none !important;
    border: none !important;
    color: #212121;
}

#menu_principal {
  padding-top: 20px;
    padding-bottom: 20px;
}
#menu_principal .nav-link {
    padding: 0;
}
.lista_facultades .nav-link {
    padding: 10px !important;
    color: #00378c !important;
}
.lista_facultades .nav-link:hover {
    background-color: #027dff !important;
    color: #fff !important;
}