.form-section {
  position: relative;
}
.form-section .form-on-submit {
  display: none;
}
.form-section.submitted .form-on-submit {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.form-section.in-progress .form-on-submit > * {
  display: none;
}
.form-section.in-progress .form-content {
  opacity: .5;
}
.form-section.success .form-content,
.form-section.failed .form-content {
  visibility: hidden;
}
.form-section.success .error-msg,
.form-section.failed .thank-you {
  display: none;
}

.ln-popup {
  margin-top: 2px;
  background: #fff;
  border: 1px solid #DCDCDC;
  text-align: left;
}
.ln-header {
  font-size: 15px;
  font-weight: bold;
  padding: .6em 1em .8em;
}
.ln-results {
  border-top: 1px solid #DCDCDC;
  border-bottom: 1px solid #DCDCDC;
  max-height: 200px;
  overflow-y: auto;
  padding: 8px 0;
}
.ln-results::-webkit-scrollbar {
  width: 7px;
}
.ln-results::-webkit-scrollbar-thumb {
  background-color: gray;
}
.ln-company {
  cursor: pointer;
  font-size: 13px;
  color: #777;
  padding: 4px 1rem 4px;
}
.ln-company:hover {
  background: #eee;
}
.ln-company h4 {
  font-size: 15px;
  margin: 0 0 4px;
  color: #383d68;
}
.ln-footer {
  cursor: pointer;
  color: #167450;
  padding: 1em;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}
.ln-footer:hover {
  background: #eee;
}
.ln-footer span::before {
  content: "My business is not in this\00A0list";
}

html,
body {
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
.sep,
.sep-x,
.sep-y {
  color: transparent;
  user-select: none;
  pointer-events: none;
}
.sep-x {
  max-height: 8px;
  overflow-y: hidden;
}

body.mobile-menu-active {
  overflow: hidden;
}
#mobile-menu {
  position: fixed;
  top: 55px;
  bottom: 0;
  width: 100vw;
  left: -100vw;
  z-index: 999;
  transition: left 500ms;
}
#mobile-menu.active {
  left: 0;
}

.video {
  display: inline-block;
  position: relative;
  line-height: 0;
}
.lp-video {
  width: 100%;
  overflow: hidden;
  cursor: pointer;
}
.lp-video > video {
  width: 100%;
}
.lp-video.active > div {
  display: none;
}
.play-icon {
  display: inline-block;
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  width: 66px;
  height: 66px;
  margin-top: -33px;
  margin-left: -33px;
  border: none;
  border-radius: 33px;
  box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.08);
  background: #ffffff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 8'%3E%3Cpath fill='%23317153' d='M0 0L6 4L0 8Z'/%3E%3C/svg%3E") 57% center no-repeat;
  background-size: 18px;
}

.expandable {
  max-height: 200px;
  transition: max-height 0.5s linear;
  overflow-y: hidden;
}
.expandable.collapsed,
.collapsed .expandable,
.accordion > div:not(.active) .expandable {
  max-height: 0 !important;
}
.collapsed .hide-on-collapse {
  display: none;
}

.cq-Editable-dom > .cq-block,
.cq-Editable-dom.cq-block {
  display: block !important;
  height: auto !important;
}
.cq-Editable-dom > .cq-iblock,
.cq-Editable-dom.cq-iblock {
  display: inline-block !important;
}
.cq-Editable-dom > .cq-flex,
.cq-Editable-dom.cq-flex {
  display: flex !important;
}
.cq-Editable-dom > .cq-visible,
.cq-Editable-dom.cq-visible {
  visibility: visible !important;
}
.cq-Editable-dom > .cq-static,
.cq-Editable-dom.cq-static {
  position: static !important;
}
.cq-Editable-dom > .cq-h-auto,
.cq-Editable-dom.cq-h-auto {
  height: auto !important;
}
.cq-Editable-dom > .cq-mt-0,
.cq-Editable-dom.cq-mt-0 {
  margin-top: 0 !important;
}
.cq-Editable-dom > .cq-o-1,
.cq-Editable-dom.cq-o-1 {
  opacity: 1 !important;
}
.cq-Editable-dom .cq,
.cq-Editable-dom .cq-container > div {
  display: block !important;
  visibility: visible !important;
  position: static !important;
  height: auto !important;
}
.cq-Editable-dom dialog {
  position: static;
  display: block;
}

.cq-Editable-dom .step {
  display: block !important;
}
.cq-Editable-dom input[type=file] {
  height: auto !important;
  width: auto !important;
}

html {
  background-color: #f5f5f8;
  font-size: 16px;
  font-family: Open Sans, sans-serif;
  color: #6c7599;
  scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #383d68;
  margin: 0;
}
h1.larger {
  font-size: 3em;
}
p {
  line-height: 1.5;
}
p.smaller {
  font-size: 14px;
}
span.smaller {
  font-size: 12px;
}
span.darker {
  color: #383d68;
}
.hilite {
  color: #00e091;
}
a,
.link {
  text-decoration: none;
  color: #004EFF;
}
a:hover,
.link:hover {
  text-decoration: underline;
}
a.btn {
  display: inline-block;
}
.shadow-lg {
  box-shadow: 0 0 30px rgba(10, 21, 47, 0.08);
}
.page-content-wrapper {
  background-color: #f5f5f8;
  padding: 32px 64px;
  min-height: 100vh;
}
.logo-image {
  display: inline-block;
  width: 113px;
  height: 48px;
}
.logo-image img {
  max-width: 100%;
  max-height: 100%;
}
.card-image {
  display: inline-block;
  margin: 32px 0 40px;
}
.card-image img {
  width: 180px;
}
.card-image-size {
  display: inline-block;
  margin: 0px;
}
.card-image-size img {
  width: 180px;
}
.promo_images_wrapper .card-image-size {
  margin: 0px;
}
@media (min-width: 1200px) {
  .promo_images_wrapper .card-image-size {
    margin: 0px;
  }
}
.sidebar .promo_images_wrapper div:has(.promo-card) {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 0 20px 0;
}
.promo-card {
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  background-color: #45B7E9;
}
.promo-card .stripe {
  position: relative;
  bottom: 0;
  background-color: #60c1eb;
  transform-origin: bottom left;
}
.promo-card .stripe_one {
  width: 100%;
  height: 53px;
  transform: skewY(46deg);
  top: 49px;
}
.promo-card .stripe_two {
  width: 254%;
  height: 26px;
  transform: skewY(44deg);
  top: -47px;
}
.promo-card .stripe_three {
  width: 359%;
  height: 13px;
  transform: skewY(43deg);
  bottom: 157px;
  left: -41px;
}
.promo-card .stripe_four {
  width: 311%;
  height: 7px;
  transform: skewY(42deg);
  bottom: 165px;
  left: 0px;
}
.promo-card .util-p-white {
  z-index: 13;
  position: absolute;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px 0 20px;
}
.promo-card .util-p-white p {
  color: #fff;
  margin: 0px;
}
@media (min-width: 300px) and (max-width: 600px) {
  .sidebar .promo_images_wrapper {
    display: flex;
  }
  .sidebar .promo_images_wrapper div:has(.promo-card) {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .sidebar .promo_images_wrapper .promo-card {
    width: 230px;
    height: 171px;
  }
}
.w-100 {
  width: 100%;
}
@media (min-width: 601px) and (max-width: 1200px) {
  .align-center {
    width: fit-content;
  }
  .align-center .card-image-size {
    bottom: 7px;
    position: relative;
  }
  .sidebar .promo_images_wrapper div:has(.promo-card) {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
  .sidebar .promo_images_wrapper .promo-card {
    width: 100%;
    height: 122px;
  }
}
@media (min-width: 601px) and (max-width: 640px) {
  .sidebar .promo_images_wrapper .promo-card {
    height: 156px;
  }
}
@media (min-width: 1200px) {
  .promo-card {
    height: 167px;
  }
}
.container,
.top-section > div {
  margin: 0 1.5rem;
}
@media (min-width: 480px) {
  .container,
  .top-section > div {
    margin: 0 5vw;
  }
}
.top-section {
  padding: 2.5rem 0;
}
.page {
  max-width: 900px;
  min-height: 800px;
  margin: 0 auto;
  background-color: white;
  padding: 64px 80px;
}
.header {
  max-width: 890px;
  margin: 0 auto 10px;
}
.footer {
  max-width: 890px;
  margin: 0 auto;
}
.cq-Editable-dom .sidebar-wrapper {
  position: absolute;
  min-height: 800px;
}
.cq-Editable-dom .page-content-wrapper {
  min-height: 800px;
}
.ln-popup {
  z-index: 99;
}
.lh-sm p {
  line-height: 1.25;
}
.lh-4 {
  line-height: 2rem;
}
@media (max-width: 1200px) {
  #help-phone {
    position: absolute;
    right: 64px;
    top: 38px;
  }
  .logo-image {
    position: absolute;
    left: 64px;
    top: 38px;
  }
  .btn {
    width: 100%;
  }
}
@media (max-width: 820px) {
  #help-phone .help-text {
    display: none;
  }
  .page {
    padding: 48px 60px;
  }
}
@media (max-width: 767px) {
  .mobile-hidden {
    display: none;
  }
  h1 {
    font-size: 1.75em;
  }
  h1.larger {
    font-size: 2em;
  }
}
@media (max-width: 575px) {
  .page-content-wrapper {
    padding: 12px 8px 12px 0;
  }
  .logo-image {
    left: 20px;
    top: 18px;
  }
  #help-phone {
    right: 20px;
    top: 18px;
  }
  .page {
    padding: 32px 25px;
  }
  .footer {
    padding-left: 20px;
    padding-right: 10px;
  }
}
@media (min-width: 1200px) {
  .page-content-wrapper {
    margin-left: 384px;
  }
  .card-image {
    margin: 30px 0 48px;
  }
  .card-image img {
    border-radius: .25rem;
    width: 100%;
  }
  .card-image-size {
    margin: 30px 0 48px;
  }
  .card-image-size img {
    border-radius: .25rem;
    width: 100%;
  }
}
.break-word {
  word-break: break-word;
}
.p-1 {
  padding: 0.5rem;
}
.p-2 {
  padding: 1rem;
}
.p-3 {
  padding: 1.5rem;
}
.p-4 {
  padding: 2rem;
}
@media (min-width: 768px) {
  .md_p-1 {
    padding: 0.5rem;
  }
  .md_p-2 {
    padding: 1rem;
  }
  .md_p-3 {
    padding: 1.5rem;
  }
  .md_p-4 {
    padding: 2rem;
  }
}
.updateDetails {
  display: none;
}
.updateDetails.show {
  display: block;
}
.orange {
  color: #ff6e40;
}
.pdf-container {
  width: 100%;
  height: 400px;
  position: relative;
}
.pdf-canvas-container {
  width: 100%;
  height: 300px;
  overflow: auto;
  background-color: #282828;
  border: 1px solid #282828;
}
.pdf-header {
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  position: sticky;
  top: 0;
  background-color: #3c3c3c;
}
.pdf-header button {
  background-color: transparent !important;
  text-transform: none !important;
  min-width: 20px !important;
  padding: 0.5rem !important;
}

.sidebar {
  max-width: 900px;
  margin: 0 auto;
  padding: 64px 80px 0;
}
.steps-container {
  counter-reset: steps;
}
.step-heading {
  counter-increment: steps;
}
.step-heading::before {
  content: counter(steps);
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: #e3e3ef;
  color: white;
  font-size: .75rem;
  padding: 4px 0 0 8px;
  transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  border-radius: 5px;
}
.step-heading p {
  display: inline-block;
  padding-left: 10px;
  font-size: .875rem;
  font-weight: 600;
  color: #c2c4d6;
  margin: .7em 0;
}
.active .step-heading::before {
  background-color: #004EFF;
}
.done .step-heading::before {
  background-color: #00e091;
  border-radius: 50%;
  transition: none;
  content: "\2714";
}
.semi-done .step-heading::before {
  background-color: #004EFF;
  border-radius: 5px;
}
.active .step-heading p {
  color: #383d68;
}
.step-details {
  display: none;
  cursor: pointer;
  font-size: 14px;
  padding-left: 35px;
  margin: -5px 0 0;
  background: url(../../../content/dam/e2e-apps/media/edit.116f1111.svg) 4px 4px no-repeat;
}
.step-details p {
  margin: 0;
}
.done .step-details {
  display: block;
}
.semi-done .step-details {
  display: block;
}
.step-details.disabled {
  pointer-events: none;
  color: #c2c4d6;
  background-image: none;
}
@media (max-width: 1200px) {
  .steps-container {
    display: flex;
    justify-content: space-between;
  }
  .step-heading {
    text-align: center;
  }
  .step-heading::before {
    display: block;
    margin: 0 auto;
    padding-left: 0;
  }
  .step-heading p {
    padding: 0;
    font-size: 10px;
    text-transform: uppercase;
  }
  .step-details {
    color: transparent;
    overflow: hidden;
    width: 24px;
    height: 24px;
    margin: 0 auto;
    background-position: center top;
  }
  .step-details.disabled {
    display: none;
  }
}
@media (max-width: 768px) {
  .editing .steps-container {
    margin-top: 80px;
  }
  .editing .card-image {
    display: none;
  }
}
@media (max-width: 576px) {
  .sidebar {
    padding: 32px 8px 6px;
  }
  .customStep {
    margin: 0 8px;
  }
}
@media (min-width: 1200px) {
  .sidebar {
    height: 100%;
    padding: 38px 64px 32px;
  }
  .sidebar-wrapper {
    position: fixed;
    width: 384px;
    min-height: 100vh;
    background: #fff;
  }
  .step-heading p {
    width: 85%;
  }
  .active .step-heading::after {
    content: url(../../../content/dam/e2e-apps/media/greaterthan_step.4798bbaf.svg);
  }
}

@media (min-width: 768px) {
  .form-fields {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-content: flex-start;
  }
  .form-fields .md_w-50 {
    width: 48%;
  }
}
@media (min-width: 1200px) {
  .form-fields .xl_w-25 {
    width: 23%;
  }
  .form-fields .xl_w-50 {
    width: 48%;
  }
}
.form-fields .collapse-btn {
  cursor: pointer;
}
.form-fields .collapse-btn img {
  transform: translateY(-5px);
}
.form-fields.collapsed {
  border-bottom: 2px solid #ccc;
  margin-bottom: 1em;
}
.form-fields.collapsed .collapse-btn img {
  transform: translateY(-5px) rotate(180deg);
}
.fields-group .collapse-btn {
  cursor: pointer;
}
.fields-group .collapse-btn img {
  transform: translateY(-5px);
}
.fields-group.collapsed {
  border-bottom: 2px solid #ccc;
  margin-bottom: 1em;
}
.fields-group.collapsed .collapse-btn img {
  transform: translateY(-5px) rotate(180deg);
}
.text-input {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-bottom: 34px;
  font-size: 16px;
}
.text-input input,
.text-input select {
  appearance: none;
  border: none;
  font-size: 16px;
  width: 100%;
  padding: 22px 0 6px;
  color: #000;
  background-color: #fff;
  border-bottom: 2px solid #e3e3ef;
  transition: border-bottom-color 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}
.text-input input.date {
  background: url(../../../content/dam/e2e-apps/calendar.svg) no-repeat 98% 88%;
  background-size: 24px 24px;
}
.text-input input:disabled {
  color: rgba(0, 0, 0, 0.38);
  cursor: default;
}
.text-input select:disabled {
  color: rgba(0, 0, 0, 0.38);
  cursor: default;
}
.text-input.greyed > input {
  background-color: #f2f2f2;
}
.text-input.has-focus input,
.text-input.has-focus select {
  outline: none;
  border-bottom-color: #004eff;
}
.text-input.has-error:has(.errorfield) input,
.text-input.has-error:has(.errorfield) select {
  outline: none;
  border-bottom-color: #ff6e40;
}
.text-input > span {
  position: absolute;
  pointer-events: none;
  user-select: none;
  letter-spacing: 0.1px;
  color: #6c7599;
  font-size: 16px;
  left: 0px;
  top: 22px;
  right: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: 0.2s ease;
}
.text-input.has-focus > span,
.text-input.has-content > span {
  top: 0;
  left: 0;
  font-size: 11px;
  transition: 0.2s ease;
}
.text-input.dropdown::after {
  content: "";
  pointer-events: none;
  position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 52 32' height='18'%3E%3Cpath d='M 5 6 h 18 l -9 9 z' fill='%236c7599' stroke='none'%3E%3C/path%3E%3C/svg%3E");
  top: 28px;
  right: 2px;
  width: 18px;
  height: 18px;
  background-position: contain;
  background-repeat: no-repeat;
}
.text-input > .datebtn {
  appearance: none;
  border: none;
  cursor: pointer;
  position: absolute;
  right: 6px;
  bottom: 6px;
  min-width: 24px;
  width: 24px;
  height: 24px;
  background: url(../../../content/dam/e2e-apps/calendar.svg) no-repeat;
}
.text-input > .calendar {
  position: absolute;
  width: 100%;
  min-width: 285px;
  left: 0;
  top: 50px;
  z-index: 9;
}
.text-input.dollar::before {
  position: absolute;
  content: "$";
  bottom: 14%;
}
.text-input.dollar > input {
  padding-left: 20px;
}
.text-input.dollar > span {
  padding-left: 20px;
}
.disabled {
  opacity: 1;
  color: rgba(0, 0, 0, 0.38);
  cursor: default;
  user-select: none;
}
button,
.btn {
  cursor: pointer;
  color: #fff;
  background-color: #00e091;
  min-width: 152px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  padding: 9px 16px;
  text-align: center;
}
button.disabled {
  background-color: #e3e3ef;
}
.btn-blue {
  background-color: #004eff;
}
.btn-red {
  background-color: #f26964;
}
.btn-continue > span::after {
  display: inline-block;
  width: 18px;
  height: 9px;
  content: ' ';
  background: url("../../../content/dam/e2e-apps/media/greaterthan.ef4b683b.svg") center right no-repeat;
  background-size: auto 100%;
}
.checkbox {
  position: relative;
  display: flex;
  align-items: flex-start;
  cursor: pointer;
}
.checkbox > input {
  appearance: none;
  display: inline-block;
  border: 1.7px solid #cecece;
  border-radius: 3px;
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  margin: 2.5px 12px 11px 0;
  vertical-align: middle;
  transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}
.checkbox > input:hover {
  border-color: #004eff;
}
.checkbox > input:checked {
  border-color: #004eff;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 13'%3E%3Cpath d='M 3 6.875 L 5.573 9.183 L 10.188 4' stroke='%23004eff' stroke-width='1.1' fill='none'/%3E%3C/svg%3E");
}
.checkbox > input[type='radio'] {
  border: none;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  margin: 1px 10px 11px 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='%231e4df5'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z'%3E%3C/path%3E%3C/svg%3E");
}
.checkbox > input[type='radio']:checked {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='%231e4df5'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z'%3E%3C/path%3E%3Cpath d='M8.465 8.465C9.37 7.56 10.62 7 12 7C14.76 7 17 9.24 17 12C17 13.38 16.44 14.63 15.535 15.535C14.63 16.44 13.38 17 12 17C9.24 17 7 14.76 7 12C7 10.62 7.56 9.37 8.465 8.465Z'%3E%3C/path%3E%3C/svg%3E");
}
.checkbox p {
  margin: 0;
}
.checkbox .errorfield {
  top: -38px;
  right: -12px;
  max-width: 300px;
}
.checkbox.switch > input {
  width: 40px;
  height: 20px;
  flex: none;
  appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 26px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: left center;
  transition: background-position 0.15s ease-in-out;
}
.checkbox.switch > input:focus {
  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.25);
}
.checkbox.switch > input:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
  background-position: right center;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
.checkbox-content {
  position: relative;
  top: -1px;
}
.checked > span::after {
  background: url("../../../content/dam/e2e-apps/media/Icon-Check.895935b1.svg") top right no-repeat;
  padding-right: 20px;
  padding-top: 2px;
}
.required > span::after {
  content: " *";
  color: #ff6e40;
}
.required.has-content > span::after {
  color: #6c7599;
}
.errorfield,
.warnfld {
  position: absolute;
  z-index: 1;
  top: -26px;
  right: 0;
  max-width: 250px;
  padding: .4rem .5rem;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  background-color: #ff6e40;
  box-shadow: 0 3px 16px rgba(56, 61, 104, 0.10196078);
}
.errorfield::after,
.warnfld::after {
  content: " ";
  position: absolute;
  right: 6px;
  bottom: -6px;
  border: 6px solid transparent;
  border-top-color: #ff6e40;
  border-bottom: none;
}
.errorfield:empty,
.warnfld:empty {
  display: none;
}
.warnfld {
  background-color: #f6c012;
}
.warnfld::after {
  border-top-color: #f6c012;
}
.error-bottom:has(.errorfield) {
  flex-wrap: wrap;
}
.error-bottom:has(.errorfield:empty) {
  flex-wrap: nowrap;
}
.error-bottom > :nth-child(2) {
  flex: 1 1 85%;
}
.error-bottom .errorfield {
  position: static;
  background-color: transparent;
  box-shadow: none;
  color: #ff6e40;
  font-weight: 600;
  min-width: 200px;
  max-width: 800px;
  margin-left: 25px;
}
.error-bottom .errorfield::after {
  content: none;
}
.card-auth-phone {
  display: flex;
}
@media (max-width: 600px) {
  .card-auth-phone {
    flex-direction: column;
  }
}
.card-auth-phone .errorfield {
  top: auto;
  bottom: 30px;
}
.btn-transparent {
  background-color: transparent;
  cursor: pointer;
  font-weight: 700;
  font-size: 11px;
  padding: 0;
  min-width: auto;
  color: #004eff;
}
.btn-transparent > span::before {
  display: inline-block;
  content: ' ';
  background-repeat: no-repeat;
}
.btn-transparent.add > span::before {
  width: 34px;
  height: 28px;
  margin-bottom: -10px;
  background-image: url("../../../content/dam/e2e-apps/media/add-icon.2c0527f1.svg");
}
.btn-transparent.remove > span::before {
  width: 28px;
  height: 25px;
  margin-bottom: -10px;
  background-image: url("../../../content/dam/e2e-apps/media/remove-icon.5799cf1e.svg");
}
.btn-transparent.edit > span::before {
  width: 24px;
  height: 22px;
  margin-bottom: -10px;
  background-image: url("../../../content/dam/e2e-apps/media/edit.116f1111.svg");
}
dialog .btn-delete {
  background-color: #ff6e40;
}
dialog .btn-delete:hover {
  background-color: #ec592c;
}
dialog .btn-cancel {
  background-color: transparent;
  color: inherit;
}
dialog .btn-cancel:hover {
  background-color: rgba(0, 0, 0, 0.04);
}
.text-input:has(:autofill) > span {
  top: 0;
  left: 0;
  font-size: 11px;
}
input:autofill,
select:autofill {
  background-clip: text;
  -webkit-background-clip: text;
  transition: background-color 5000s ease-in-out 0s;
}
.zero-height {
  margin: 0;
  pointer-events: none;
}
.zero-height > input,
.zero-height span {
  height: 0px;
  width: 0px;
  visibility: hidden;
}
@media (max-width: 759px) {
  .mobile-reverse {
    flex-direction: column-reverse;
  }
  .align-mobile-image {
    display: flex;
    justify-content: center;
  }
}
div[data-name=OwnerInfoTC] label.checkbox {
  pointer-events: none;
}
div[data-name=OwnerInfoTC] label > input[type=checkbox],
div[data-name=OwnerInfoTC] a,
div[data-name=OwnerInfoTC] span.link {
  pointer-events: all;
}
.surcharge {
  top: 48px;
}
@media only screen and (max-width: 420px) and (min-width: 344px) {
  .surcharge {
    top: 70px;
  }
}
@media only screen and (max-width: 610px) and (min-width: 573px) {
  .surcharge {
    top: 70px;
  }
}
.formWrapper {
  border: 1px solid #eae4e4;
  margin: auto;
  width: 79%;
  margin: 46px auto;
  padding: 55px 24px;
  border-radius: 20px;
}
.blue-btn {
  border: 1px solid #374bfc;
  color: #374bfc;
  background-color: #d1d6fe;
  padding: 8px 16px;
}
.blue-text {
  color: #374bfc;
}
.blue-btn-back ::before {
  content: " < ";
  border: 2px solid #374bfc;
  font-size: 15px;
  font-weight: bolder;
  border-radius: 50px;
  padding: 3px 4px 3px 6px;
  margin-right: 8px;
}
.paymentOptionIcons {
  background-color: #37b0ea;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  border-radius: 20px;
  box-shadow: 0 0px 1px 5px #37b0ea42;
}
.helperText {
  bottom: -154px;
  margin-left: 0px;
}
.realtime .helperText {
  bottom: -89px;
}
.setBannerWidth {
  max-width: 900px;
  margin: 0 auto;
}

.tooltip-icon {
  display: inline-block;
  position: relative;
  min-width: 16px;
  height: 16px;
  cursor: pointer;
  background: transparent url("../../../content/dam/e2e-apps/media/info.be763462.svg") no-repeat center center;
}
.tooltip-icon > div {
  position: absolute;
  right: 0;
  bottom: 28px;
  z-index: 9;
  min-width: 220px;
}
.tooltip-icon > div.tooltipDisplayDown {
  top: 29px;
  bottom: auto;
}
.tooltip-icon.input-info {
  position: absolute;
  top: 25px;
  right: 1px;
}
.tooltip-icon.card-info {
  position: absolute;
  top: 5px;
  left: 200px;
}
.nat-steps .tooltip-icon.input-info {
  position: absolute;
  top: 16px;
  right: 12px;
}
.tooltip-icon.in-text {
  left: 16px;
}
@media (max-width: 768px) {
  .tooltip-icon.in-text {
    left: -10px;
    top: 6px;
  }
}
.tooltip-box {
  background-color: #fff;
  font-size: 12px;
  border-radius: 4px;
  max-width: 250px;
  box-shadow: 0 3px 16px rgba(56, 61, 104, 0.10196078);
  padding: 12px;
  font-family: Roboto, sans-serif;
}
.tooltip-box.arrow-bottom::after {
  content: " ";
  position: absolute;
  right: 6px;
  bottom: -6px;
  border: 6px solid transparent;
  border-top-color: #fff;
  border-bottom: none;
}
.tooltip-box.tooltipDisplayDown::after {
  top: -6px;
  transform: rotate(176deg);
  bottom: auto;
}

.modal {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.10196078);
  border-radius: 8px;
  border-style: none;
  color: #6c7599;
}
.modal::backdrop {
  background-color: rgba(0, 0, 0, 0.5);
}
.modal.transparent {
  box-shadow: none;
  border: none;
}
.modal.transparent:focus-visible {
  outline: none;
}
body:has(dialog[open]) {
  overflow: hidden;
}

.calendar {
  display: inline-block;
  font-family: Roboto, "Open Sans", Arial, sans-serif;
  background-color: #fff;
  color: #212121;
  box-shadow: 0 3px 16px rgba(56, 61, 104, 0.10196078);
  border-radius: 4px;
}
.calendar > div {
  min-width: 285px;
  margin: 0 auto;
}
.dp-header {
  color: #fff;
  background: #004EFF;
  border-radius: 4px 4px 0 0;
  padding: 14px 20px;
}
.dp-h1 {
  font-size: 32px;
  line-height: 40px;
}
.dp-pickyear {
  display: inline-block;
  color: #87aeff;
  font-size: 14px;
  cursor: pointer;
}
.mode-years .dp-h1 {
  color: #87aeff;
}
.mode-years .dp-pickyear {
  color: #ffffff;
}
.dp-pickday {
  position: relative;
  padding: 5px 16px;
  font-size: 14px;
  cursor: default;
  user-select: none;
  text-align: center;
}
.dp-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 2em;
  padding: 12px 2px 4px;
}
.dp-title {
  color: #212121;
  font-size: 16px;
  height: 28px;
  padding: 0 16px;
  line-height: 28px;
  text-transform: capitalize;
}
.dp-next,
.dp-prev {
  box-sizing: content-box;
  font-size: 0;
  padding: 2px;
  cursor: pointer;
  width: 24px;
  height: 24px;
  border-radius: 50%;
}
.dp-next:hover,
.dp-prev:hover {
  background: #f5f5f5;
}
.dp-week,
.dp-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.dp-week > div,
.dp-days > div {
  width: 36px;
  height: 36px;
  line-height: 36px;
}
.dp-week {
  color: #a1a1a1;
  font-size: 12px;
}
.dp-day {
  cursor: pointer;
  border-radius: 50%;
}
.dp-day:hover {
  background: #f5f5f5;
}
.dp-day.active {
  color: #fff;
  background: #004EFF;
}
.dp-day-out {
  color: #eee;
  pointer-events: none;
}
.dp-years {
  display: none;
  position: absolute;
  z-index: 1;
  background: #fff;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 8px 16px;
  box-sizing: border-box;
  grid-template-columns: 1fr 1fr 1fr;
}
.dp-years > div {
  cursor: pointer;
  margin: 0 auto;
  line-height: 40px;
  font-size: 16px;
}
.dp-years > div:hover,
.dp-years > div.active {
  color: #004eff;
}
.dp-years > div.active {
  font-size: 20px;
}
.dp-years > div:hover,
.dp-years > div.active {
  font-weight: 600;
}
.mode-years .dp-years {
  display: grid;
}
.dp-scroll {
  overflow-y: auto;
}
.dp-scroll::-webkit-scrollbar {
  width: 8px;
}
.dp-scroll:hover::-webkit-scrollbar-thumb {
  background-color: #D0E0F0;
}
.dp-scroll::-webkit-scrollbar-thumb {
  cursor: pointer;
  background-color: white;
  border-radius: 3px;
  border: 2px solid white;
}
.dp-scroll::-webkit-scrollbar-thumb:active,
.dp-scroll::-webkit-scrollbar-thumb:hover {
  background-color: gray;
}

@media (min-width: 768px) {
  .cardsetup .subtitle {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-content: flex-start;
  }
  .cardsetup .subtitle .md_w-65 {
    width: 65%;
  }
  .cardsetup .subtitle .md_w-35 {
    width: 35%;
  }
}
.setup-header {
  border-bottom: 1.3px solid #d7d7da;
  margin-bottom: 16px;
}
.setup-header h3 {
  font-size: 16px;
  line-height: 25px;
}
.setup-header p {
  font-size: 14px;
  line-height: 1.5;
  margin-top: 0;
}
.setup-row.first > div:last-child {
  visibility: hidden;
}
@media (max-width: 767px) {
  .data-table {
    position: relative;
  }
  .data-table .btn-add {
    position: absolute;
    bottom: 12px;
    right: 25px;
  }
  .setup-row {
    background: #fff;
    position: relative;
    padding: 12px 16px 24px;
    border-radius: 5px;
    margin-top: 44px;
    margin-bottom: 24px;
  }
  .setup-row > div:first-child {
    position: absolute;
    top: -44px;
    left: 5px;
  }
  .setup-row > div:last-child {
    position: absolute;
    top: 16px;
    right: 16px;
  }
  .setup-row .text-input {
    margin-bottom: 4px;
  }
  .setup-row .driver-prompts,
  .setup-row .purchase-type,
  .setup-row .vehicle-type {
    width: 100% !important;
  }
  .setup-row select {
    padding-right: 24px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
@media (min-width: 768px) {
  .setup-row > div {
    display: inline-block;
    width: 20%;
    padding-right: 8px;
    margin: 0;
  }
  .setup-row > div:first-child {
    width: 7% !important;
  }
  .setup-row > div:first-child p {
    padding: 0;
    font-size: 12px;
    margin: 0.7em 0;
  }
  .setup-row > div:last-child {
    width: 8% !important;
    padding-right: 0;
    text-align: right;
  }
  .setup-row > div:last-child img {
    position: relative;
    top: 3px;
  }
  .setup-row.titles {
    font-size: 12px;
    font-weight: 600;
    line-height: 20px;
  }
  .setup-row.titles > div {
    padding-left: 4px;
  }
  .setup-row.titles > div p {
    margin: .3em 0 .7em !important;
  }
  .setup-row.drivers > div {
    width: 26.65%;
  }
  .setup-row.pins > div {
    width: 40%;
  }
  .setup-row .text-input,
  .setup-row .tbl-input {
    position: relative;
    margin-bottom: 0;
  }
  .setup-row .text-input > input,
  .setup-row .tbl-input > input,
  .setup-row .text-input > select,
  .setup-row .tbl-input > select {
    width: 100%;
    font-size: 16px;
    appearance: none;
    border: none;
    padding: 4px;
    color: #383d68;
    background-color: transparent;
    text-overflow: ellipsis;
  }
  .setup-row .text-input > input:focus,
  .setup-row .tbl-input > input:focus,
  .setup-row .text-input > select:focus,
  .setup-row .tbl-input > select:focus {
    background-color: white;
    outline: 1px solid #004eff;
  }
  .setup-row .text-input.dropdown::after,
  .setup-row .tbl-input.dropdown::after {
    display: none;
  }
  .setup-row .text-input > span,
  .setup-row .tbl-input > span {
    display: none;
  }
  .setup-row .text-input.has-error:has(.errorfield) input,
  .setup-row .tbl-input.has-error:has(.errorfield) input,
  .setup-row .text-input.has-error:has(.errorfield) select,
  .setup-row .tbl-input.has-error:has(.errorfield) select {
    outline: 1px solid #ff6e40;
  }
}
.whiteBg {
  background: url(../../../content/dam/e2e-apps/media/Groupblank.b1aa0be6.svg);
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.toggle-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 1rem 0;
}
@media (max-width: 768px) {
  .toggle-container {
    flex-direction: column-reverse;
    align-items: center;
  }
}
.cardsetup-msg-wrapper {
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .cardsetup-msg-wrapper {
    margin-top: 0;
  }
}
.toggle {
  cursor: pointer;
}
.toggle a {
  color: #00e091;
}
.toggle :hover {
  text-decoration: none;
}
.paymentOptionHeader {
  margin-bottom: 10px;
}
.listBulletStylingBlue ul {
  margin: 0px;
  font-size: 12px;
}
.needHelpVerbiage {
  display: none;
}
.needHelpText .needHelpVerbiage {
  display: block;
}
.comparisionLink {
  display: none;
}
.showComparisionLink .comparisionLink {
  display: block;
}
label.pin-disabled.readonly {
  background-color: #f5f5f5;
  cursor: not-allowed;
  opacity: 0.8;
  pointer-events: none;
}
label.pin-disabled.readonly input {
  background-color: #f5f5f5;
  border-color: #ddd;
  color: #888888	;
  cursor: not-allowed;
}
.pin-disabled:hover {
  border-color: #ddd;
  box-shadow: none;
}

/*****************************************************
LESS compilation failed due a JavaScript error!

Input: /apps/e2e-apps/clientlibs/clientlib-site/css/treatments.less
Error: OperationError: Operation on an invalid type in /apps/e2e-apps/clientlibs/clientlib-site/css/treatments.less on line 7, column 2:
6 	--otp-gap: 1.25;
7 	--_otp-bgsz: calc(var(--otp-ls) + 1ch);
8 	--_otp-digit: 0;


(uncompiled LESS src is included below)
*****************************************************/


.text-input .otpInput {
	--otp-digits: 6;
	--otp-ls: 2ch;
	--otp-gap: 1.25;
	--_otp-bgsz: calc(var(--otp-ls) + 1ch);
	--_otp-digit: 0;
	all: unset;
	background:
		linear-gradient(90deg, var(--otp-bg, #BBB) calc(var(--otp-gap) * var(--otp-ls)), transparent 0),
		linear-gradient(90deg, var(--otp-bg, #EEE) calc(var(--otp-gap) * var(--otp-ls)), transparent 0);
	background-position: calc(var(--_otp-digit) * var(--_otp-bgsz)) 0, 0 0;
	background-repeat: no-repeat, repeat-x;
	background-size: var(--_otp-bgsz) 100%;
	caret-color: var(--otp-cc, #222);
	caret-shape: block;
	clip-path: inset(0% calc(var(--otp-ls) / 2) 0% 0%);
	font-family: ui-monospace, monospace;
	font-size: var(--otp-fz, 2em);
	inline-size: calc(var(--otp-digits) * var(--_otp-bgsz));
	letter-spacing: var(--otp-ls);
	padding-block: var(--otp-pb, 1ch);
	padding-inline-start: calc(((var(--otp-ls) - 1ch) / 2) * var(--otp-gap));
}

.grey-box {
  border: 2px solid #e3e3ef;
  background-color: #f4f4f6;
  border-radius: 4px;
}

.frame-locked {
  pointer-events: none;
  opacity: 0.5;
}

.pis-1 {
  padding-inline-start: 1rem;
}
.pis-0 {
  padding-inline-start: 0;
}
.code {
  font-family: monospace;
  unicode-bidi: isolate;
  white-space: pre;
}
.pdi-container-body {
	display: flex;
	@media only screen and (max-width: 600px) {
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
  }
.pdi-body-box-1 {
	flex-basis: 66.66%;
	@media only screen and (max-width: 600px) {
	  flex-basis: 100%;
	}
}
.pdi-body-box-2 {
	flex-basis: 33.33%;
	@media only screen and (max-width: 600px) {
	  flex-basis: 100%;
	}
}
.cso-selected{
	border: 1px solid #004eff;
	box-shadow: 0 10px 20px rgba(32,72,161,.2);
	background: #f3f6fd 0 0 no-repeat padding-box;
}
.onfido-container-body{
	flex-direction: column;
	img {
		width: 100%;
	}
	@media (min-width: 700px) {
		display: flex;
		flex-flow: row wrap;
		justify-content: space-between;
		align-content: flex-start;

		.md_w-50 { width: 48%; }
	}
}
.connect-card {
  background-image: url(../../../content/dam/comdatatrucking/FleetImage.png);
  background-repeat: no-repeat;
  background-position: 100%;
  background-size: cover;
  min-height: 460px;
  color: #fff;
}
.connect-card h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: normal;
}
.connect-card .content {
  max-width: 400px;
  padding: 52px 28px 72px 30px;
  background-color: #276e8a;
  opacity: .9;
}
.connect-card .lighter {
  color: #37b0ea;
}
.connect-card p.larger {
  font-size: 1.1rem;
}
.tc-document-heading {
  background-color: #004eff;
  width: 100%;
  display: inline-block;
  margin: 16px 0;
  color: #fff;
  padding: 4px;
  font-weight: 700;
}

.cardholder-dropdown.options {
  min-height: 49px;
  border-bottom: 2px solid #e3e3ef;
  max-height: max-content;
}
.cardholder-dropdown.options p {
  margin: 0;
}
.cardholder-dropdown.options > div {
  display: none;
}
.cardholder-dropdown.options > div.active,
.cardholder-dropdown.options.active > div {
  display: block;
}
.cardholder-dropdown.options.active {
  position: relative;
  box-shadow: 0 3px 16px rgba(56, 61, 104, 0.10196078);
  border: none;
  top: 10px;
  width: 100%;
  background-color: white;
  margin-top: 35px;
  max-height: 250px;
  overflow-y: auto;
}
.cardholder-dropdown.options > div:hover {
  background-color: #eeeeee;
}
.addAddressOption {
  display: none;
}
.dropdown.expanded .addAddressOption {
  background-color: #fff;
  display: block;
  position: sticky;
  bottom: 0px;
  padding: 10px;
  text-align: center;
  margin-top: 0.5rem;
  border: 1px solid #eeeeee;
  box-shadow: 0 4px 10px -2px rgba(56, 61, 104, 0.1);
  cursor: pointer;
  color: #58bee8;
  font-weight: bold;
}

.hidden,
.private {
  display: none !important;
}
.flex {
  display: flex;
}
.grid {
  display: grid;
}
.block {
  display: block;
}
.inline {
  display: inline;
}
.inline-block {
  display: inline-block;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.pointer {
  cursor: pointer;
}
.w-100 {
  width: 100%;
}
.h-100 {
  height: 100%;
}
.lh-0 {
  line-height: 0;
}
.align-left {
  text-align: left;
}
.align-right {
  text-align: right;
}
.align-center {
  text-align: center;
}
.float-left {
  float: left;
}
.float-right {
  float: right;
}
.float-none {
  float: none;
}
.clear-both {
  clear: both;
}
.flow-column {
  grid-auto-flow: column;
}
.uppercase {
  text-transform: uppercase;
}
.nowrap {
  white-space: nowrap;
}
.cols-2 {
  columns: 2;
}
.row {
  flex-direction: row;
}
.column {
  flex-direction: column;
}
.space-between {
  justify-content: space-between;
}
.space-around {
  justify-content: space-around;
}
.justify-center {
  justify-content: center;
}
.justify-start {
  justify-content: flex-start;
}
.justify-end {
  justify-content: flex-end;
}
.items-center {
  align-items: center;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.reverse {
  flex-direction: row-reverse;
}
.flex-nowrap {
  flex-wrap: nowrap;
}
.flex-wrap {
  flex-wrap: wrap;
}
.mt-0,
.my-0 {
  margin-top: 0;
}
.mb-0,
.my-0 {
  margin-bottom: 0;
}
.mt-1,
.my-1 {
  margin-top: 0.5rem;
}
.mb-1,
.my-1 {
  margin-bottom: 0.5rem;
}
.mt-2,
.my-2 {
  margin-top: 1rem;
}
.mb-2,
.my-2 {
  margin-bottom: 1rem;
}
.mt-3,
.my-3 {
  margin-top: 1.5rem;
}
.mb-3,
.my-3 {
  margin-bottom: 1.5rem;
}
.mt-4,
.my-4 {
  margin-top: 2rem;
}
.mb-4,
.my-4 {
  margin-bottom: 2rem;
}
.mt-5,
.my-5 {
  margin-top: 2.5rem;
}
.mb-5,
.my-5 {
  margin-bottom: 2.5rem;
}
.mt-6,
.my-6 {
  margin-top: 3rem;
}
.mb-6,
.my-6 {
  margin-bottom: 3rem;
}
.mt-7,
.my-7 {
  margin-top: 3.5rem;
}
.mb-7,
.my-7 {
  margin-bottom: 3.5rem;
}
.mt-8,
.my-8 {
  margin-top: 4rem;
}
.mb-8,
.my-8 {
  margin-bottom: 4rem;
}
.ml-auto,
.mx-auto {
  margin-left: auto;
}
.mr-auto,
.mx-auto {
  margin-right: auto;
}
.ml-0,
.mx-0 {
  margin-left: 0;
}
.mr-0,
.mx-0 {
  margin-right: 0;
}
.ml-1,
.mx-1 {
  margin-left: 0.5rem;
}
.mr-1,
.mx-1 {
  margin-right: 0.5rem;
}
.ml-2,
.mx-2 {
  margin-left: 1rem;
}
.mr-2,
.mx-2 {
  margin-right: 1rem;
}
.ml-3,
.mx-3 {
  margin-left: 1.5rem;
}
.mr-3,
.mx-3 {
  margin-right: 1.5rem;
}
.ml-4,
.mx-4 {
  margin-left: 2rem;
}
.mr-4,
.mx-4 {
  margin-right: 2rem;
}
.ml-5,
.mx-5 {
  margin-left: 2.5rem;
}
.mr-5,
.mx-5 {
  margin-right: 2.5rem;
}
.ml-6,
.mx-6 {
  margin-left: 3rem;
}
.mr-6,
.mx-6 {
  margin-right: 3rem;
}
.ml-7,
.mx-7 {
  margin-left: 3.5rem;
}
.mr-7,
.mx-7 {
  margin-right: 3.5rem;
}
.ml-8,
.mx-8 {
  margin-left: 4rem;
}
.mr-8,
.mx-8 {
  margin-right: 4rem;
}
.pt-0,
.py-0 {
  padding-top: 0;
}
.pb-0,
.py-0 {
  padding-bottom: 0;
}
.pt-1,
.py-1 {
  padding-top: 0.5rem;
}
.pb-1,
.py-1 {
  padding-bottom: 0.5rem;
}
.pt-2,
.py-2 {
  padding-top: 1rem;
}
.pb-2,
.py-2 {
  padding-bottom: 1rem;
}
.pt-3,
.py-3 {
  padding-top: 1.5rem;
}
.pb-3,
.py-3 {
  padding-bottom: 1.5rem;
}
.pt-4,
.py-4 {
  padding-top: 2rem;
}
.pb-4,
.py-4 {
  padding-bottom: 2rem;
}
.pt-5,
.py-5 {
  padding-top: 2.5rem;
}
.pb-5,
.py-5 {
  padding-bottom: 2.5rem;
}
.pt-6,
.py-6 {
  padding-top: 3rem;
}
.pb-6,
.py-6 {
  padding-bottom: 3rem;
}
.pt-7,
.py-7 {
  padding-top: 3.5rem;
}
.pb-7,
.py-7 {
  padding-bottom: 3.5rem;
}
.pt-8,
.py-8 {
  padding-top: 4rem;
}
.pb-8,
.py-8 {
  padding-bottom: 4rem;
}
.pl-0,
.px-0 {
  padding-left: 0;
}
.pr-0,
.px-0 {
  padding-right: 0;
}
.pl-1,
.px-1 {
  padding-left: 0.5rem;
}
.pr-1,
.px-1 {
  padding-right: 0.5rem;
}
.pl-2,
.px-2 {
  padding-left: 1rem;
}
.pr-2,
.px-2 {
  padding-right: 1rem;
}
.pl-3,
.px-3 {
  padding-left: 1.5rem;
}
.pr-3,
.px-3 {
  padding-right: 1.5rem;
}
.pl-4,
.px-4 {
  padding-left: 2rem;
}
.pr-4,
.px-4 {
  padding-right: 2rem;
}
.pl-5,
.px-5 {
  padding-left: 2.5rem;
}
.pr-5,
.px-5 {
  padding-right: 2.5rem;
}
.pl-6,
.px-6 {
  padding-left: 3rem;
}
.pr-6,
.px-6 {
  padding-right: 3rem;
}
.pl-7,
.px-7 {
  padding-left: 3.5rem;
}
.pr-7,
.px-7 {
  padding-right: 3.5rem;
}
.pl-8,
.px-8 {
  padding-left: 4rem;
}
.pr-8,
.px-8 {
  padding-right: 4rem;
}
.pt-5p,
.py-5p {
  padding-top: 5%;
}
.pb-5p,
.py-5p {
  padding-bottom: 5%;
}
.pl-5p,
.px-5p {
  padding-left: 5%;
}
.pr-5p,
.px-5p {
  padding-right: 5%;
}
.pt-10p,
.py-10p {
  padding-top: 10%;
}
.pb-10p,
.py-10p {
  padding-bottom: 10%;
}
.pl-10p,
.px-10p {
  padding-left: 10%;
}
.pr-10p,
.px-10p {
  padding-right: 10%;
}
@media (max-width: 1199px) {
  .hide_xl {
    display: none;
  }
  .no-border_xl {
    border-style: none;
  }
}
@media (max-width: 991px) {
  .hide_lg {
    display: none;
  }
  .no-border_lg {
    border-style: none;
  }
}
@media (max-width: 767px) {
  .hide_md {
    display: none;
  }
  .no-border_md {
    border-style: none;
  }
  .h-50vw_md {
    height: 50vw;
  }
  .mx-0_md {
    margin-left: 0;
    margin-right: 0;
  }
  .px-0_md {
    padding-left: 0;
    padding-right: 0;
  }
  .pt-0_md {
    padding-top: 0;
  }
  .pb-0_md {
    padding-bottom: 0;
  }
  .items-center_md {
    align-items: center;
  }
}
@media (max-width: 575px) {
  .hide_sm {
    display: none;
  }
  .no-border_sm {
    border-style: none;
  }
  .mx-0_sm {
    margin-left: 0;
    margin-right: 0;
  }
  .px-0_sm {
    padding-left: 0;
    padding-right: 0;
  }
  .pt-0_sm {
    padding-top: 0;
  }
  .pb-0_sm {
    padding-bottom: 0;
  }
}
@media (min-width: 576px) {
  .sm_hidden {
    display: none !important;
  }
  .sm_flex {
    display: flex;
  }
  .sm_grid {
    display: grid;
  }
  .sm_block {
    display: block;
  }
  .sm_cols-2 {
    columns: 2;
  }
  .sm_cols-3 {
    columns: 3;
  }
  .sm_row {
    flex-direction: row;
  }
  .sm_align-left {
    text-align: left;
  }
  .sm_align-right {
    text-align: right;
  }
  .sm_align-center {
    text-align: center;
  }
  .sm_float-right {
    float: right;
  }
  .sm_float-left {
    float: left;
  }
  .sm_float-none {
    float: none;
  }
  .sm_clear-both {
    clear: both;
  }
  .sm_mt-0,
  .sm_my-0 {
    margin-top: 0;
  }
  .sm_mb-0,
  .sm_my-0 {
    margin-bottom: 0;
  }
  .sm_mt-1,
  .sm_my-1 {
    margin-top: 0.5rem;
  }
  .sm_mb-1,
  .sm_my-1 {
    margin-bottom: 0.5rem;
  }
  .sm_mt-2,
  .sm_my-2 {
    margin-top: 1rem;
  }
  .sm_mb-2,
  .sm_my-2 {
    margin-bottom: 1rem;
  }
  .sm_mt-3,
  .sm_my-3 {
    margin-top: 1.5rem;
  }
  .sm_mb-3,
  .sm_my-3 {
    margin-bottom: 1.5rem;
  }
  .sm_mt-4,
  .sm_my-4 {
    margin-top: 2rem;
  }
  .sm_mb-4,
  .sm_my-4 {
    margin-bottom: 2rem;
  }
  .sm_mt-5,
  .sm_my-5 {
    margin-top: 2.5rem;
  }
  .sm_mb-5,
  .sm_my-5 {
    margin-bottom: 2.5rem;
  }
  .sm_mt-6,
  .sm_my-6 {
    margin-top: 3rem;
  }
  .sm_mb-6,
  .sm_my-6 {
    margin-bottom: 3rem;
  }
  .sm_mt-7,
  .sm_my-7 {
    margin-top: 3.5rem;
  }
  .sm_mb-7,
  .sm_my-7 {
    margin-bottom: 3.5rem;
  }
  .sm_mt-8,
  .sm_my-8 {
    margin-top: 4rem;
  }
  .sm_mb-8,
  .sm_my-8 {
    margin-bottom: 4rem;
  }
  .sm_ml-0,
  .sm_mx-0 {
    margin-left: 0;
  }
  .sm_mr-0,
  .sm_mx-0 {
    margin-right: 0;
  }
  .sm_ml-1,
  .sm_mx-1 {
    margin-left: 0.5rem;
  }
  .sm_mr-1,
  .sm_mx-1 {
    margin-right: 0.5rem;
  }
  .sm_ml-2,
  .sm_mx-2 {
    margin-left: 1rem;
  }
  .sm_mr-2,
  .sm_mx-2 {
    margin-right: 1rem;
  }
  .sm_ml-3,
  .sm_mx-3 {
    margin-left: 1.5rem;
  }
  .sm_mr-3,
  .sm_mx-3 {
    margin-right: 1.5rem;
  }
  .sm_ml-4,
  .sm_mx-4 {
    margin-left: 2rem;
  }
  .sm_mr-4,
  .sm_mx-4 {
    margin-right: 2rem;
  }
  .sm_ml-5,
  .sm_mx-5 {
    margin-left: 2.5rem;
  }
  .sm_mr-5,
  .sm_mx-5 {
    margin-right: 2.5rem;
  }
  .sm_ml-6,
  .sm_mx-6 {
    margin-left: 3rem;
  }
  .sm_mr-6,
  .sm_mx-6 {
    margin-right: 3rem;
  }
  .sm_ml-7,
  .sm_mx-7 {
    margin-left: 3.5rem;
  }
  .sm_mr-7,
  .sm_mx-7 {
    margin-right: 3.5rem;
  }
  .sm_ml-8,
  .sm_mx-8 {
    margin-left: 4rem;
  }
  .sm_mr-8,
  .sm_mx-8 {
    margin-right: 4rem;
  }
  .sm_ml-auto,
  .sm_mx-auto {
    margin-left: auto;
  }
  .sm_mr-auto,
  .sm_mx-auto {
    margin-right: auto;
  }
  .sm_pt-0,
  .sm_py-0 {
    padding-top: 0;
  }
  .sm_pb-0,
  .sm_py-0 {
    padding-bottom: 0;
  }
  .sm_pt-1,
  .sm_py-1 {
    padding-top: 0.5rem;
  }
  .sm_pb-1,
  .sm_py-1 {
    padding-bottom: 0.5rem;
  }
  .sm_pt-2,
  .sm_py-2 {
    padding-top: 1rem;
  }
  .sm_pb-2,
  .sm_py-2 {
    padding-bottom: 1rem;
  }
  .sm_pt-3,
  .sm_py-3 {
    padding-top: 1.5rem;
  }
  .sm_pb-3,
  .sm_py-3 {
    padding-bottom: 1.5rem;
  }
  .sm_pt-4,
  .sm_py-4 {
    padding-top: 2rem;
  }
  .sm_pb-4,
  .sm_py-4 {
    padding-bottom: 2rem;
  }
  .sm_pt-5,
  .sm_py-5 {
    padding-top: 2.5rem;
  }
  .sm_pb-5,
  .sm_py-5 {
    padding-bottom: 2.5rem;
  }
  .sm_pt-6,
  .sm_py-6 {
    padding-top: 3rem;
  }
  .sm_pb-6,
  .sm_py-6 {
    padding-bottom: 3rem;
  }
  .sm_pt-7,
  .sm_py-7 {
    padding-top: 3.5rem;
  }
  .sm_pb-7,
  .sm_py-7 {
    padding-bottom: 3.5rem;
  }
  .sm_pt-8,
  .sm_py-8 {
    padding-top: 4rem;
  }
  .sm_pb-8,
  .sm_py-8 {
    padding-bottom: 4rem;
  }
  .sm_pl-0,
  .sm_px-0 {
    padding-left: 0;
  }
  .sm_pr-0,
  .sm_px-0 {
    padding-right: 0;
  }
  .sm_pl-1,
  .sm_px-1 {
    padding-left: 0.5rem;
  }
  .sm_pr-1,
  .sm_px-1 {
    padding-right: 0.5rem;
  }
  .sm_pl-2,
  .sm_px-2 {
    padding-left: 1rem;
  }
  .sm_pr-2,
  .sm_px-2 {
    padding-right: 1rem;
  }
  .sm_pl-3,
  .sm_px-3 {
    padding-left: 1.5rem;
  }
  .sm_pr-3,
  .sm_px-3 {
    padding-right: 1.5rem;
  }
  .sm_pl-4,
  .sm_px-4 {
    padding-left: 2rem;
  }
  .sm_pr-4,
  .sm_px-4 {
    padding-right: 2rem;
  }
  .sm_pl-5,
  .sm_px-5 {
    padding-left: 2.5rem;
  }
  .sm_pr-5,
  .sm_px-5 {
    padding-right: 2.5rem;
  }
  .sm_pl-6,
  .sm_px-6 {
    padding-left: 3rem;
  }
  .sm_pr-6,
  .sm_px-6 {
    padding-right: 3rem;
  }
  .sm_pl-7,
  .sm_px-7 {
    padding-left: 3.5rem;
  }
  .sm_pr-7,
  .sm_px-7 {
    padding-right: 3.5rem;
  }
  .sm_pl-8,
  .sm_px-8 {
    padding-left: 4rem;
  }
  .sm_pr-8,
  .sm_px-8 {
    padding-right: 4rem;
  }
  .sm_pt-5p,
  .sm_py-5p {
    padding-top: 5%;
  }
  .sm_pb-5p,
  .sm_py-5p {
    padding-bottom: 5%;
  }
  .sm_pl-5p,
  .sm_px-5p {
    padding-left: 5%;
  }
  .sm_pr-5p,
  .sm_px-5p {
    padding-right: 5%;
  }
  .sm_pt-10p,
  .sm_py-10p {
    padding-top: 10%;
  }
  .sm_pb-10p,
  .sm_py-10p {
    padding-bottom: 10%;
  }
  .sm_pl-10p,
  .sm_px-10p {
    padding-left: 10%;
  }
  .sm_pr-10p,
  .sm_px-10p {
    padding-right: 10%;
  }
}
@media (min-width: 768px) {
  .md_hidden {
    display: none !important;
  }
  .md_flex {
    display: flex;
  }
  .md_grid {
    display: grid;
  }
  .md_block {
    display: block;
  }
  .md_cols-2 {
    columns: 2;
  }
  .md_cols-3 {
    columns: 3;
  }
  .md_row {
    flex-direction: row;
  }
  .md_align-left {
    text-align: left;
  }
  .md_align-right {
    text-align: right;
  }
  .md_align-center {
    text-align: center;
  }
  .md_float-right {
    float: right;
  }
  .md_float-left {
    float: left;
  }
  .md_float-none {
    float: none;
  }
  .md_clear-both {
    clear: both;
  }
  .md_mt-0,
  .md_my-0 {
    margin-top: 0;
  }
  .md_mb-0,
  .md_my-0 {
    margin-bottom: 0;
  }
  .md_mt-1,
  .md_my-1 {
    margin-top: 0.5rem;
  }
  .md_mb-1,
  .md_my-1 {
    margin-bottom: 0.5rem;
  }
  .md_mt-2,
  .md_my-2 {
    margin-top: 1rem;
  }
  .md_mb-2,
  .md_my-2 {
    margin-bottom: 1rem;
  }
  .md_mt-3,
  .md_my-3 {
    margin-top: 1.5rem;
  }
  .md_mb-3,
  .md_my-3 {
    margin-bottom: 1.5rem;
  }
  .md_mt-4,
  .md_my-4 {
    margin-top: 2rem;
  }
  .md_mb-4,
  .md_my-4 {
    margin-bottom: 2rem;
  }
  .md_mt-5,
  .md_my-5 {
    margin-top: 2.5rem;
  }
  .md_mb-5,
  .md_my-5 {
    margin-bottom: 2.5rem;
  }
  .md_mt-6,
  .md_my-6 {
    margin-top: 3rem;
  }
  .md_mb-6,
  .md_my-6 {
    margin-bottom: 3rem;
  }
  .md_mt-7,
  .md_my-7 {
    margin-top: 3.5rem;
  }
  .md_mb-7,
  .md_my-7 {
    margin-bottom: 3.5rem;
  }
  .md_mt-8,
  .md_my-8 {
    margin-top: 4rem;
  }
  .md_mb-8,
  .md_my-8 {
    margin-bottom: 4rem;
  }
  .md_ml-0,
  .md_mx-0 {
    margin-left: 0;
  }
  .md_mr-0,
  .md_mx-0 {
    margin-right: 0;
  }
  .md_ml-1,
  .md_mx-1 {
    margin-left: 0.5rem;
  }
  .md_mr-1,
  .md_mx-1 {
    margin-right: 0.5rem;
  }
  .md_ml-2,
  .md_mx-2 {
    margin-left: 1rem;
  }
  .md_mr-2,
  .md_mx-2 {
    margin-right: 1rem;
  }
  .md_ml-3,
  .md_mx-3 {
    margin-left: 1.5rem;
  }
  .md_mr-3,
  .md_mx-3 {
    margin-right: 1.5rem;
  }
  .md_ml-4,
  .md_mx-4 {
    margin-left: 2rem;
  }
  .md_mr-4,
  .md_mx-4 {
    margin-right: 2rem;
  }
  .md_ml-5,
  .md_mx-5 {
    margin-left: 2.5rem;
  }
  .md_mr-5,
  .md_mx-5 {
    margin-right: 2.5rem;
  }
  .md_ml-6,
  .md_mx-6 {
    margin-left: 3rem;
  }
  .md_mr-6,
  .md_mx-6 {
    margin-right: 3rem;
  }
  .md_ml-7,
  .md_mx-7 {
    margin-left: 3.5rem;
  }
  .md_mr-7,
  .md_mx-7 {
    margin-right: 3.5rem;
  }
  .md_ml-8,
  .md_mx-8 {
    margin-left: 4rem;
  }
  .md_mr-8,
  .md_mx-8 {
    margin-right: 4rem;
  }
  .md_ml-auto,
  .md_mx-auto {
    margin-left: auto;
  }
  .md_mr-auto,
  .md_mx-auto {
    margin-right: auto;
  }
  .md_pt-0,
  .md_py-0 {
    padding-top: 0;
  }
  .md_pb-0,
  .md_py-0 {
    padding-bottom: 0;
  }
  .md_pt-1,
  .md_py-1 {
    padding-top: 0.5rem;
  }
  .md_pb-1,
  .md_py-1 {
    padding-bottom: 0.5rem;
  }
  .md_pt-2,
  .md_py-2 {
    padding-top: 1rem;
  }
  .md_pb-2,
  .md_py-2 {
    padding-bottom: 1rem;
  }
  .md_pt-3,
  .md_py-3 {
    padding-top: 1.5rem;
  }
  .md_pb-3,
  .md_py-3 {
    padding-bottom: 1.5rem;
  }
  .md_pt-4,
  .md_py-4 {
    padding-top: 2rem;
  }
  .md_pb-4,
  .md_py-4 {
    padding-bottom: 2rem;
  }
  .md_pt-5,
  .md_py-5 {
    padding-top: 2.5rem;
  }
  .md_pb-5,
  .md_py-5 {
    padding-bottom: 2.5rem;
  }
  .md_pt-6,
  .md_py-6 {
    padding-top: 3rem;
  }
  .md_pb-6,
  .md_py-6 {
    padding-bottom: 3rem;
  }
  .md_pt-7,
  .md_py-7 {
    padding-top: 3.5rem;
  }
  .md_pb-7,
  .md_py-7 {
    padding-bottom: 3.5rem;
  }
  .md_pt-8,
  .md_py-8 {
    padding-top: 4rem;
  }
  .md_pb-8,
  .md_py-8 {
    padding-bottom: 4rem;
  }
  .md_pl-0,
  .md_px-0 {
    padding-left: 0;
  }
  .md_pr-0,
  .md_px-0 {
    padding-right: 0;
  }
  .md_pl-1,
  .md_px-1 {
    padding-left: 0.5rem;
  }
  .md_pr-1,
  .md_px-1 {
    padding-right: 0.5rem;
  }
  .md_pl-2,
  .md_px-2 {
    padding-left: 1rem;
  }
  .md_pr-2,
  .md_px-2 {
    padding-right: 1rem;
  }
  .md_pl-3,
  .md_px-3 {
    padding-left: 1.5rem;
  }
  .md_pr-3,
  .md_px-3 {
    padding-right: 1.5rem;
  }
  .md_pl-4,
  .md_px-4 {
    padding-left: 2rem;
  }
  .md_pr-4,
  .md_px-4 {
    padding-right: 2rem;
  }
  .md_pl-5,
  .md_px-5 {
    padding-left: 2.5rem;
  }
  .md_pr-5,
  .md_px-5 {
    padding-right: 2.5rem;
  }
  .md_pl-6,
  .md_px-6 {
    padding-left: 3rem;
  }
  .md_pr-6,
  .md_px-6 {
    padding-right: 3rem;
  }
  .md_pl-7,
  .md_px-7 {
    padding-left: 3.5rem;
  }
  .md_pr-7,
  .md_px-7 {
    padding-right: 3.5rem;
  }
  .md_pl-8,
  .md_px-8 {
    padding-left: 4rem;
  }
  .md_pr-8,
  .md_px-8 {
    padding-right: 4rem;
  }
  .md_pt-5p,
  .md_py-5p {
    padding-top: 5%;
  }
  .md_pb-5p,
  .md_py-5p {
    padding-bottom: 5%;
  }
  .md_pl-5p,
  .md_px-5p {
    padding-left: 5%;
  }
  .md_pr-5p,
  .md_px-5p {
    padding-right: 5%;
  }
  .md_pt-10p,
  .md_py-10p {
    padding-top: 10%;
  }
  .md_pb-10p,
  .md_py-10p {
    padding-bottom: 10%;
  }
  .md_pl-10p,
  .md_px-10p {
    padding-left: 10%;
  }
  .md_pr-10p,
  .md_px-10p {
    padding-right: 10%;
  }
}
@media (min-width: 992px) {
  .lg_hidden {
    display: none !important;
  }
  .lg_flex {
    display: flex;
  }
  .lg_grid {
    display: grid;
  }
  .lg_block {
    display: block;
  }
  .lg_cols-2 {
    columns: 2;
  }
  .lg_cols-3 {
    columns: 3;
  }
  .lg_row {
    flex-direction: row;
  }
  .lg_align-left {
    text-align: left;
  }
  .lg_align-right {
    text-align: right;
  }
  .lg_align-center {
    text-align: center;
  }
  .lg_float-right {
    float: right;
  }
  .lg_float-left {
    float: left;
  }
  .lg_float-none {
    float: none;
  }
  .lg_clear-both {
    clear: both;
  }
  .lg_mt-0,
  .lg_my-0 {
    margin-top: 0;
  }
  .lg_mb-0,
  .lg_my-0 {
    margin-bottom: 0;
  }
  .lg_mt-1,
  .lg_my-1 {
    margin-top: 0.5rem;
  }
  .lg_mb-1,
  .lg_my-1 {
    margin-bottom: 0.5rem;
  }
  .lg_mt-2,
  .lg_my-2 {
    margin-top: 1rem;
  }
  .lg_mb-2,
  .lg_my-2 {
    margin-bottom: 1rem;
  }
  .lg_mt-3,
  .lg_my-3 {
    margin-top: 1.5rem;
  }
  .lg_mb-3,
  .lg_my-3 {
    margin-bottom: 1.5rem;
  }
  .lg_mt-4,
  .lg_my-4 {
    margin-top: 2rem;
  }
  .lg_mb-4,
  .lg_my-4 {
    margin-bottom: 2rem;
  }
  .lg_mt-5,
  .lg_my-5 {
    margin-top: 2.5rem;
  }
  .lg_mb-5,
  .lg_my-5 {
    margin-bottom: 2.5rem;
  }
  .lg_mt-6,
  .lg_my-6 {
    margin-top: 3rem;
  }
  .lg_mb-6,
  .lg_my-6 {
    margin-bottom: 3rem;
  }
  .lg_mt-7,
  .lg_my-7 {
    margin-top: 3.5rem;
  }
  .lg_mb-7,
  .lg_my-7 {
    margin-bottom: 3.5rem;
  }
  .lg_mt-8,
  .lg_my-8 {
    margin-top: 4rem;
  }
  .lg_mb-8,
  .lg_my-8 {
    margin-bottom: 4rem;
  }
  .lg_ml-0,
  .lg_mx-0 {
    margin-left: 0;
  }
  .lg_mr-0,
  .lg_mx-0 {
    margin-right: 0;
  }
  .lg_ml-1,
  .lg_mx-1 {
    margin-left: 0.5rem;
  }
  .lg_mr-1,
  .lg_mx-1 {
    margin-right: 0.5rem;
  }
  .lg_ml-2,
  .lg_mx-2 {
    margin-left: 1rem;
  }
  .lg_mr-2,
  .lg_mx-2 {
    margin-right: 1rem;
  }
  .lg_ml-3,
  .lg_mx-3 {
    margin-left: 1.5rem;
  }
  .lg_mr-3,
  .lg_mx-3 {
    margin-right: 1.5rem;
  }
  .lg_ml-4,
  .lg_mx-4 {
    margin-left: 2rem;
  }
  .lg_mr-4,
  .lg_mx-4 {
    margin-right: 2rem;
  }
  .lg_ml-5,
  .lg_mx-5 {
    margin-left: 2.5rem;
  }
  .lg_mr-5,
  .lg_mx-5 {
    margin-right: 2.5rem;
  }
  .lg_ml-6,
  .lg_mx-6 {
    margin-left: 3rem;
  }
  .lg_mr-6,
  .lg_mx-6 {
    margin-right: 3rem;
  }
  .lg_ml-7,
  .lg_mx-7 {
    margin-left: 3.5rem;
  }
  .lg_mr-7,
  .lg_mx-7 {
    margin-right: 3.5rem;
  }
  .lg_ml-8,
  .lg_mx-8 {
    margin-left: 4rem;
  }
  .lg_mr-8,
  .lg_mx-8 {
    margin-right: 4rem;
  }
  .lg_ml-auto,
  .lg_mx-auto {
    margin-left: auto;
  }
  .lg_mr-auto,
  .lg_mx-auto {
    margin-right: auto;
  }
  .lg_pt-0,
  .lg_py-0 {
    padding-top: 0;
  }
  .lg_pb-0,
  .lg_py-0 {
    padding-bottom: 0;
  }
  .lg_pt-1,
  .lg_py-1 {
    padding-top: 0.5rem;
  }
  .lg_pb-1,
  .lg_py-1 {
    padding-bottom: 0.5rem;
  }
  .lg_pt-2,
  .lg_py-2 {
    padding-top: 1rem;
  }
  .lg_pb-2,
  .lg_py-2 {
    padding-bottom: 1rem;
  }
  .lg_pt-3,
  .lg_py-3 {
    padding-top: 1.5rem;
  }
  .lg_pb-3,
  .lg_py-3 {
    padding-bottom: 1.5rem;
  }
  .lg_pt-4,
  .lg_py-4 {
    padding-top: 2rem;
  }
  .lg_pb-4,
  .lg_py-4 {
    padding-bottom: 2rem;
  }
  .lg_pt-5,
  .lg_py-5 {
    padding-top: 2.5rem;
  }
  .lg_pb-5,
  .lg_py-5 {
    padding-bottom: 2.5rem;
  }
  .lg_pt-6,
  .lg_py-6 {
    padding-top: 3rem;
  }
  .lg_pb-6,
  .lg_py-6 {
    padding-bottom: 3rem;
  }
  .lg_pt-7,
  .lg_py-7 {
    padding-top: 3.5rem;
  }
  .lg_pb-7,
  .lg_py-7 {
    padding-bottom: 3.5rem;
  }
  .lg_pt-8,
  .lg_py-8 {
    padding-top: 4rem;
  }
  .lg_pb-8,
  .lg_py-8 {
    padding-bottom: 4rem;
  }
  .lg_pl-0,
  .lg_px-0 {
    padding-left: 0;
  }
  .lg_pr-0,
  .lg_px-0 {
    padding-right: 0;
  }
  .lg_pl-1,
  .lg_px-1 {
    padding-left: 0.5rem;
  }
  .lg_pr-1,
  .lg_px-1 {
    padding-right: 0.5rem;
  }
  .lg_pl-2,
  .lg_px-2 {
    padding-left: 1rem;
  }
  .lg_pr-2,
  .lg_px-2 {
    padding-right: 1rem;
  }
  .lg_pl-3,
  .lg_px-3 {
    padding-left: 1.5rem;
  }
  .lg_pr-3,
  .lg_px-3 {
    padding-right: 1.5rem;
  }
  .lg_pl-4,
  .lg_px-4 {
    padding-left: 2rem;
  }
  .lg_pr-4,
  .lg_px-4 {
    padding-right: 2rem;
  }
  .lg_pl-5,
  .lg_px-5 {
    padding-left: 2.5rem;
  }
  .lg_pr-5,
  .lg_px-5 {
    padding-right: 2.5rem;
  }
  .lg_pl-6,
  .lg_px-6 {
    padding-left: 3rem;
  }
  .lg_pr-6,
  .lg_px-6 {
    padding-right: 3rem;
  }
  .lg_pl-7,
  .lg_px-7 {
    padding-left: 3.5rem;
  }
  .lg_pr-7,
  .lg_px-7 {
    padding-right: 3.5rem;
  }
  .lg_pl-8,
  .lg_px-8 {
    padding-left: 4rem;
  }
  .lg_pr-8,
  .lg_px-8 {
    padding-right: 4rem;
  }
  .lg_pt-5p,
  .lg_py-5p {
    padding-top: 5%;
  }
  .lg_pb-5p,
  .lg_py-5p {
    padding-bottom: 5%;
  }
  .lg_pl-5p,
  .lg_px-5p {
    padding-left: 5%;
  }
  .lg_pr-5p,
  .lg_px-5p {
    padding-right: 5%;
  }
  .lg_pt-10p,
  .lg_py-10p {
    padding-top: 10%;
  }
  .lg_pb-10p,
  .lg_py-10p {
    padding-bottom: 10%;
  }
  .lg_pl-10p,
  .lg_px-10p {
    padding-left: 10%;
  }
  .lg_pr-10p,
  .lg_px-10p {
    padding-right: 10%;
  }
}
@media (min-width: 1200px) {
  .xl_hidden {
    display: none !important;
  }
  .xl_flex {
    display: flex;
  }
  .xl_grid {
    display: grid;
  }
  .xl_cols-2 {
    columns: 2;
  }
  .xl_cols-3 {
    columns: 3;
  }
  .xl_row {
    flex-direction: row;
  }
  .xl_float-right {
    float: right;
  }
  .xl_float-left {
    float: left;
  }
  .xl_float-none {
    float: none;
  }
  .xl_clear-both {
    clear: both;
  }
  .xl_mr-1\/4 {
    margin-right: 25%;
  }
  .xl_mt-0,
  .xl_my-0 {
    margin-top: 0;
  }
  .xl_mb-0,
  .xl_my-0 {
    margin-bottom: 0;
  }
  .xl_mt-1,
  .xl_my-1 {
    margin-top: 0.5rem;
  }
  .xl_mb-1,
  .xl_my-1 {
    margin-bottom: 0.5rem;
  }
  .xl_mt-2,
  .xl_my-2 {
    margin-top: 1rem;
  }
  .xl_mb-2,
  .xl_my-2 {
    margin-bottom: 1rem;
  }
  .xl_mt-3,
  .xl_my-3 {
    margin-top: 1.5rem;
  }
  .xl_mb-3,
  .xl_my-3 {
    margin-bottom: 1.5rem;
  }
  .xl_mt-4,
  .xl_my-4 {
    margin-top: 2rem;
  }
  .xl_mb-4,
  .xl_my-4 {
    margin-bottom: 2rem;
  }
  .xl_mt-5,
  .xl_my-5 {
    margin-top: 2.5rem;
  }
  .xl_mb-5,
  .xl_my-5 {
    margin-bottom: 2.5rem;
  }
  .xl_mt-6,
  .xl_my-6 {
    margin-top: 3rem;
  }
  .xl_mb-6,
  .xl_my-6 {
    margin-bottom: 3rem;
  }
  .xl_mt-7,
  .xl_my-7 {
    margin-top: 3.5rem;
  }
  .xl_mb-7,
  .xl_my-7 {
    margin-bottom: 3.5rem;
  }
  .xl_mt-8,
  .xl_my-8 {
    margin-top: 4rem;
  }
  .xl_mb-8,
  .xl_my-8 {
    margin-bottom: 4rem;
  }
  .xl_ml-0,
  .xl_mx-0 {
    margin-left: 0;
  }
  .xl_mr-0,
  .xl_mx-0 {
    margin-right: 0;
  }
  .xl_ml-1,
  .xl_mx-1 {
    margin-left: 0.5rem;
  }
  .xl_mr-1,
  .xl_mx-1 {
    margin-right: 0.5rem;
  }
  .xl_ml-2,
  .xl_mx-2 {
    margin-left: 1rem;
  }
  .xl_mr-2,
  .xl_mx-2 {
    margin-right: 1rem;
  }
  .xl_ml-3,
  .xl_mx-3 {
    margin-left: 1.5rem;
  }
  .xl_mr-3,
  .xl_mx-3 {
    margin-right: 1.5rem;
  }
  .xl_ml-4,
  .xl_mx-4 {
    margin-left: 2rem;
  }
  .xl_mr-4,
  .xl_mx-4 {
    margin-right: 2rem;
  }
  .xl_ml-5,
  .xl_mx-5 {
    margin-left: 2.5rem;
  }
  .xl_mr-5,
  .xl_mx-5 {
    margin-right: 2.5rem;
  }
  .xl_ml-6,
  .xl_mx-6 {
    margin-left: 3rem;
  }
  .xl_mr-6,
  .xl_mx-6 {
    margin-right: 3rem;
  }
  .xl_ml-7,
  .xl_mx-7 {
    margin-left: 3.5rem;
  }
  .xl_mr-7,
  .xl_mx-7 {
    margin-right: 3.5rem;
  }
  .xl_ml-8,
  .xl_mx-8 {
    margin-left: 4rem;
  }
  .xl_mr-8,
  .xl_mx-8 {
    margin-right: 4rem;
  }
  .xl_ml-auto,
  .xl_mx-auto {
    margin-left: auto;
  }
  .xl_mr-auto,
  .xl_mx-auto {
    margin-right: auto;
  }
  .xl_pt-0,
  .xl_py-0 {
    padding-top: 0;
  }
  .xl_pb-0,
  .xl_py-0 {
    padding-bottom: 0;
  }
  .xl_pt-1,
  .xl_py-1 {
    padding-top: 1rem;
  }
  .xl_pb-1,
  .xl_py-1 {
    padding-bottom: 1rem;
  }
  .xl_pt-2,
  .xl_py-2 {
    padding-top: 2rem;
  }
  .xl_pb-2,
  .xl_py-2 {
    padding-bottom: 2rem;
  }
  .xl_pt-3,
  .xl_py-3 {
    padding-top: 3rem;
  }
  .xl_pb-3,
  .xl_py-3 {
    padding-bottom: 3rem;
  }
  .xl_pt-4,
  .xl_py-4 {
    padding-top: 4rem;
  }
  .xl_pb-4,
  .xl_py-4 {
    padding-bottom: 4rem;
  }
  .xl_pt-5,
  .xl_py-5 {
    padding-top: 5rem;
  }
  .xl_pb-5,
  .xl_py-5 {
    padding-bottom: 5rem;
  }
  .xl_pt-6,
  .xl_py-6 {
    padding-top: 6rem;
  }
  .xl_pb-6,
  .xl_py-6 {
    padding-bottom: 6rem;
  }
  .xl_pt-7,
  .xl_py-7 {
    padding-top: 7rem;
  }
  .xl_pb-7,
  .xl_py-7 {
    padding-bottom: 7rem;
  }
  .xl_pt-8,
  .xl_py-8 {
    padding-top: 8rem;
  }
  .xl_pb-8,
  .xl_py-8 {
    padding-bottom: 8rem;
  }
  .xl_pl-0,
  .xl_px-0 {
    padding-left: 0;
  }
  .xl_pr-0,
  .xl_px-0 {
    padding-right: 0;
  }
  .xl_pl-1,
  .xl_px-1 {
    padding-left: 1rem;
  }
  .xl_pr-1,
  .xl_px-1 {
    padding-right: 1rem;
  }
  .xl_pl-2,
  .xl_px-2 {
    padding-left: 2rem;
  }
  .xl_pr-2,
  .xl_px-2 {
    padding-right: 2rem;
  }
  .xl_pl-3,
  .xl_px-3 {
    padding-left: 3rem;
  }
  .xl_pr-3,
  .xl_px-3 {
    padding-right: 3rem;
  }
  .xl_pl-4,
  .xl_px-4 {
    padding-left: 4rem;
  }
  .xl_pr-4,
  .xl_px-4 {
    padding-right: 4rem;
  }
  .xl_pl-5,
  .xl_px-5 {
    padding-left: 5rem;
  }
  .xl_pr-5,
  .xl_px-5 {
    padding-right: 5rem;
  }
  .xl_pl-6,
  .xl_px-6 {
    padding-left: 6rem;
  }
  .xl_pr-6,
  .xl_px-6 {
    padding-right: 6rem;
  }
  .xl_pl-7,
  .xl_px-7 {
    padding-left: 7rem;
  }
  .xl_pr-7,
  .xl_px-7 {
    padding-right: 7rem;
  }
  .xl_pl-8,
  .xl_px-8 {
    padding-left: 8rem;
  }
  .xl_pr-8,
  .xl_px-8 {
    padding-right: 8rem;
  }
}

