/* ------------------------------------------ imports ----------------------------------------------- */
/**
 * Do not edit directly
 * Generated on Mon, 11 Dec 2023 13:18:35 GMT
 */
/**
 * Do not edit directly
 * Generated on Mon, 11 Dec 2023 13:18:35 GMT
 */
@import "css/scss/ui-global-variables-cssValues.css";
/**
 * Do not edit directly
 * Generated on Mon, 11 Dec 2023 13:18:35 GMT
 */
/**
 * Do not edit directly
 * Generated on Mon, 11 Dec 2023 13:18:35 GMT
 */
/**
 * Do not edit directly
 * Generated on Mon, 11 Dec 2023 13:18:35 GMT
 */
.container-lang-slide {
  z-index: 10;
  transition: transform 0.5s ease;
  transform: translateY(100%); /*  Start off screen  */
  transition-delay: 0s;
  justify-content: center;
  align-items: flex-end;
  position: fixed;
  height: 100%;
  width: 100%;
  gap: 0.5rem;
  overflow: hidden;
  display: flex;
}

.container-lang-slide.collapse.show {
  opacity: 1;
  display: flex !important;
  transform: translateY(0);
}

.container-lang-slide > div:first-child {
  min-height: 600px;
  padding: 16px 0px 256px 0px;
  border-radius: 16px 16px 0px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  width: 100%;
}

.line-lang-slide {
  width: 32px;
  height: 4px;
  background: #C7C7C7;
}

.header-lang-slide {
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  border-bottom: 1px solid #c7c7c7;
}

.header-lang-slide > div:first-child {
  padding: 0px 32px;
  width: 375px;
  display: flex;
  align-items: start;
  flex-grow: 1;
}

.menu-lang-slide {
  padding: 1rem;
  gap: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
}

.title-lang-slide {
  flex-grow: 1;
  text-align: center;
  color: var(--ls-txt-body-default, #4B4B4B);
  font: var(--body-1-medium);
  letter-spacing: -0.01em;
  text-decoration: none;
  font-weight: 500;
}

.item-lang-slide {
  padding: 8px;
  align-self: stretch;
  cursor: pointer;
}

.item-lang-slide > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.item-lang-slide > div:not(.selected) i.la-check {
  display: none;
}

.item-lang-slide > div.selected {
  color: var(--main-color);
  width: 100%;
}
.item-lang-slide > div.selected > h3 {
  color: var(--main-color);
}

/**
 * Do not edit directly
 * Generated on Mon, 11 Dec 2023 13:18:35 GMT
 */
/**
 * Do not edit directly
 * Generated on Mon, 11 Dec 2023 13:18:35 GMT
 */
/**
 * Do not edit directly
 * Generated on Mon, 11 Dec 2023 13:18:35 GMT
 */
.container-mobile {
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px, 16px;
  flex-grow: 1;
  padding: 0px 0px 32px 0px;
  width: 100%;
  height: 100%;
  background: #ffffff;
  position: fixed;
  overflow-y: auto;
  /* transition props */
  z-index: -9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-content: start;
  align-self: stretch;
  padding-bottom: 16px;
}

.mobile-menu.border-bottom {
  border-bottom: 1px solid #c7c7c7;
  margin-bottom: 16px !important;
}

/* custom logic to hide border when no nav items */
.mobile-menu.border-bottom:not(:has(div)) {
  border-bottom: none !important;
  padding-bottom: 0;
}

.container-mobile.collapse.show {
  opacity: 1;
  display: flex !important;
  z-index: 9;
}

.mobile-menu-item {
  display: flex;
  padding: 12px 40px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  cursor: pointer;
  background: var(--ls-field-default, #FFF);
}
.mobile-menu-item:hover {
  background: var(--ls-field-hover-01, #F7F7F7);
}
.mobile-menu-item:active {
  background: var(--ls-field-active-01, #EDEDED);
}
.mobile-menu-item.selected {
  color: var(--main-color) !important;
}
.mobile-menu-item.selected > * {
  color: var(--main-color) !important;
}

.mobile-menu-item.profile {
  display: flex;
  padding: 12px 24px;
  align-items: center;
  align-self: stretch;
  gap: 16px;
  background: #f7f7f7;
  justify-content: start;
  margin-top: -16px;
  height: 78px;
}

.mobile-menu-item.profile > div:first-child {
  display: flex;
  width: 48px;
  padding: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  border-radius: 24px;
  background: linear-gradient(125deg, #F66710 -22.04%, #FFBF98 138.25%);
}

.mobile-menu-item.profile > div:nth-child(1) > h4 {
  color: #ffffff;
}

.mobile-menu-item.profile > div:nth-child(2) > * {
  color: #4b4b4b;
}

.img-profile-mobile-menu {
  height: 100%;
  border-radius: 50%;
  text-align: center;
}

.dark-overlay::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Black with 50% opacity */
  pointer-events: none; /* Allows clicks to pass through */
  transition: opacity 0.5s ease;
  opacity: 0;
  z-index: 9;
}

.dark-overlay.darken::after {
  opacity: 1;
}

.max-z-index {
  z-index: 9999;
}

.btn-mobile-menu-layout {
  display: flex;
  padding: 0px 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}

/**
 * Do not edit directly
 * Generated on Mon, 11 Dec 2023 13:18:35 GMT
 */
/**
 * Do not edit directly
 * Generated on Mon, 11 Dec 2023 13:18:35 GMT
 */
/* ------------------------------------------ Limestone global styles ------------------------------------------*/
@font-face {
  font-family: "ax-la-solid-900";
  src: url("../Content/font/ls/ax-la-solid-900.woff2") format("woff2"), url("../Content/font/ls/ax-la-solid-900.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
.i-01 {
  font: var(--icon-01);
  font-weight: 400;
  color: var(--ls-txt-body-default, #4B4B4B);
}

.i-02 {
  font: var(--icon-02);
  font-weight: 400;
  color: var(--ls-txt-body-default, #4B4B4B);
}

.i-03 {
  font: var(--icon-03);
  font-weight: 400;
  color: var(--ls-txt-body-default, #4B4B4B);
}

.i-04 {
  font: var(--icon-04);
  font-weight: 400;
  color: var(--ls-txt-body-default, #4B4B4B);
}

.i-05 {
  font: var(--icon-05);
  font-weight: 400;
  color: var(--ls-txt-body-default, #4B4B4B);
}

.i-06 {
  font: var(--icon-06);
  font-weight: 400;
  color: var(--ls-txt-body-default, #4B4B4B);
}

.i-07 {
  font: var(--icon-07);
  font-weight: 400;
  color: var(--ls-txt-body-default, #4B4B4B);
}

.i-08 {
  font: var(--icon-08);
  font-weight: 400;
  color: var(--ls-txt-body-default, #4B4B4B);
}

.i-09 {
  font: var(--icon-09);
  font-weight: 400;
  color: var(--ls-txt-body-default, #4B4B4B);
}

.i-10 {
  font: var(--icon-10);
  font-weight: 400;
  color: var(--ls-txt-body-default, #4B4B4B);
}

.i-11 {
  font: var(--icon-11);
  font-weight: 400;
  color: var(--ls-txt-body-default, #4B4B4B);
}

.i-12 {
  font: var(--icon-12);
  font-weight: 400;
  color: var(--ls-txt-body-default, #4B4B4B);
}

.i-13 {
  font: var(--icon-13);
  font-weight: 400;
  color: var(--ls-txt-body-default, #4B4B4B);
}

.i-14 {
  font: var(--icon-14);
  font-weight: 400;
  color: var(--ls-txt-body-default, #4B4B4B);
}

.i-fs-01 {
  font-size: 14px !important;
  line-height: 14px !important;
}

.i-fs-02 {
  font-size: 16px !important;
  line-height: 16px !important;
}

.i-fs-03 {
  font-size: 18px !important;
  line-height: 18px !important;
}

.i-fs-04 {
  font-size: 20px !important;
  line-height: 20px !important;
}

.i-fs-05 {
  font-size: 22px !important;
  line-height: 22px !important;
}

.i-fs-06 {
  font-size: 24px !important;
  line-height: 24px !important;
}

.i-fs-07 {
  font-size: 26px !important;
  line-height: 26px !important;
}

.i-fs-08 {
  font-size: 32px !important;
  line-height: 32px !important;
}

.i-fs-09 {
  font-size: 44px !important;
  line-height: 44px !important;
}

.i-fs-10 {
  font-size: 56px !important;
  line-height: 56px !important;
}

.i-fs-11 {
  font-size: 64px !important;
  line-height: 64px !important;
}

.i-fs-12 {
  font-size: 72px !important;
  line-height: 72px !important;
}

.i-fs-13 {
  font-size: 80px !important;
  line-height: 80px !important;
}

.i-fs-14 {
  font-size: 100px !important;
  line-height: 100px !important;
}

h1 {
  color: var(--ls-txt-body-default, #4B4B4B);
  font: var(--heading-h1);
  letter-spacing: var(--letter-spacing-2);
  font-weight: 500;
  margin-bottom: 0px;
}

h2 {
  color: var(--ls-txt-body-default, #4B4B4B);
  font: var(--heading-h2);
  letter-spacing: var(--letter-spacing-2);
  font-weight: 500;
  margin-bottom: 0px;
}

h3 {
  color: var(--ls-txt-body-default, #4B4B4B);
  font: var(--heading-h3);
  letter-spacing: var(--letter-spacing-2);
  font-weight: 500;
  margin-bottom: 0px;
}

h4 {
  color: var(--ls-txt-body-default, #4B4B4B);
  font: var(--heading-h4);
  letter-spacing: var(--letter-spacing-2);
  font-weight: 500;
  margin-bottom: 0px;
}

h5 {
  color: var(--ls-txt-body-default, #4B4B4B);
  font: var(--heading-h5);
  letter-spacing: var(--letter-spacing-2);
  font-weight: 500;
  margin-bottom: 0px;
}

h6 {
  color: var(--ls-txt-body-default, #4B4B4B);
  font: var(--heading-h6);
  letter-spacing: var(--letter-spacing-4);
  font-weight: 500;
  margin-bottom: 0px;
}

d1 {
  color: var(--ls-txt-body-default, #4B4B4B);
  font: var(--display-d1);
  letter-spacing: var(--letter-spacing-0);
  font-weight: 400;
}

d2 {
  color: var(--ls-txt-body-default, #4B4B4B);
  font: var(--display-d2);
  letter-spacing: var(--letter-spacing-1);
  font-weight: 400;
}

d3 {
  color: var(--ls-txt-body-default, #4B4B4B);
  font: var(--display-d3);
  letter-spacing: var(--letter-spacing-1);
  font-weight: 400;
}

d4 {
  color: var(--ls-txt-body-default, #4B4B4B);
  font: var(--display-d4);
  letter-spacing: var(--letter-spacing-1);
  font-weight: 400;
}

.body-1-regular,
.body-2-regular {
  color: var(--ls-txt-body-default, #4B4B4B);
  font: var(--body-1-regular), var(--body-2-regular);
  letter-spacing: -0.01em;
  font-weight: 400;
}

.body-1-regular-italic,
.body-2-regular-italic {
  color: var(--ls-txt-body-default, #4B4B4B);
  font: var(--body-1-regular-italic), var(--body-2-regular-italic);
  letter-spacing: -0.01em;
  font-weight: 400;
  font-style: italic;
}

.body-1-monospaced,
.body-2-monospaced {
  color: var(--ls-txt-body-default, #4B4B4B);
  font: var(--body-1-monospaced), var(--body-2-monospaced);
  letter-spacing: -0.01em;
  font-weight: 400;
}

.body-1-medium,
.body-2-medium {
  color: var(--ls-txt-body-default, #4B4B4B);
  font: var(--body-1-medium), var(--body-2-medium);
  letter-spacing: -0.01em;
  font-weight: 500;
}

.body-1-semibold,
.body-2-semibold {
  color: var(--ls-txt-body-default, #4B4B4B);
  font: var(--body-1-semibold), var(--body-2-semibold);
  letter-spacing: -0.01em;
  font-weight: 600;
}

.body-1-underline,
.body-2-underline {
  color: var(--ls-txt-body-default, #4B4B4B);
  font: var(--body-1-underline), var(--body-2-underline);
  letter-spacing: -0.01em;
  text-decoration: underline;
  font-weight: 600;
}

.input-label-sm {
  font-weight: 500;
  letter-spacing: -0.01em;
  font: var(--ls-input-label-typ-sm);
}

.input-txt-sm {
  font: var(--ls-input-txt-typ-sm);
  font-weight: 400;
}

.input-hint-sm {
  font: var(--ls-input-hint-typ-sm);
  font-weight: 400;
}

.dropdown-label-sm {
  font: var(--ls-dropdown-label-typ-sm);
  letter-spacing: 0.01em;
}

.input-label-md {
  font-weight: 500;
  letter-spacing: -0.01em;
  font: var(--ls-input-label-typ-md);
}

.input-txt-md {
  font: var(--ls-input-txt-typ-md);
  font-weight: 400;
}

.input-hint-md {
  font: var(--ls-input-hint-typ-md);
  font-weight: 400;
}

.dropdown-label-md {
  font: var(--ls-dropdown-label-typ-md);
  letter-spacing: 0.01em;
}

.input-label-lg {
  font-weight: 500;
  letter-spacing: -0.01em;
  font: var(--ls-input-label-typ-lg);
}

.input-txt-lg {
  font: var(--ls-input-txt-typ-lg);
  font-weight: 400;
}

.input-hint-lg {
  font: var(--ls-input-hint-typ-lg);
  font-weight: 400;
}

.dropdown-label-lg {
  font: var(--ls-dropdown-label-typ-lg);
  letter-spacing: 0.01em;
}

.input-label-default {
  font-weight: 500;
  letter-spacing: 0.01em;
  font: var(--ls-input-label-typ-default);
}

.input-txt-default {
  font: var(--ls-input-txt-typ-default);
  font-weight: 400;
}

.input-hint-default {
  font: var(--ls-input-hint-typ-default);
  font-weight: 400;
}

.dropdown-label-default {
  font: var(--ls-dropdown-label-typ-default);
  letter-spacing: 0.01em;
}

.subtitle-1 {
  font: 500 16px/26px Poppins;
  font-weight: 500;
}

.subtitle-2 {
  font: 400 0.6388888889 Poppins;
  letter-spacing: -0.01em;
  font-weight: 400;
}

.micro-caption {
  font: 600 0.75 Poppins;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

.micro-overline {
  font: 600 11px/16px Poppins;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ------------------------------------------ custom styles ------------------------------------------*/
.container-navbar-default {
  display: flex;
  height: 96px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  background: var(--navbar-bg-color);
  box-shadow: 0px 2px 4px 0px rgba(27, 27, 27, 0.12);
}
@media screen and (max-width: 768px) {
  .container-navbar-default {
    height: 64px;
  }
}
.container-navbar-default > div {
  display: flex;
  padding: 20px;
  justify-content: space-between;
  align-items: center;
  flex: 1 0 0;
}
@media screen and (max-width: 768px) {
  .container-navbar-default > div {
    padding: 0px;
    padding-left: 20px;
  }
}
.container-navbar-default > div > div:first-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-items: center;
  gap: 48px;
}
.container-navbar-default > div > div:first-child > div:first-child {
  /* */
}
.container-navbar-default > div > div:first-child > div:first-child > img.default-ax-img-size {
  width: 147px;
}
.container-navbar-default > div > div:first-child > div:nth-child(2) {
  display: flex;
  height: 96px;
  align-items: flex-end;
  gap: var(--spacing-8, 24px);
}
.container-navbar-default > div > div:first-child > div:nth-child(2) > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  white-space: nowrap;
  color: var(--navbar-item-color) !important;
}
.container-navbar-default > div > div:first-child > div:nth-child(2) > div > * {
  color: var(--ls-txt-body-default, #4B4B4B);
  font: var(--body-1-medium);
  letter-spacing: -0.01em;
  text-decoration: none;
  font-weight: 500;
  color: var(--navbar-item-color) !important;
}
.container-navbar-default > div > div:first-child > div:nth-child(2) > div.active {
  border-bottom: 3px solid var(--navbar-item-active-border);
  color: var(--navbar-item-active-color) !important;
}
.container-navbar-default > div > div:first-child > div:nth-child(2) > div.active > a {
  color: var(--ls-txt-body-default, #4B4B4B);
  font: var(--body-1-semibold);
  letter-spacing: -0.01em;
  text-decoration: none;
  font-weight: 600;
  color: var(--navbar-item-active-color);
}
.container-navbar-default > div > div:first-child > div:nth-child(2) > div:hover {
  border-bottom: 3px solid var(--navbar-item-active-border);
  color: var(--navbar-item-color-hover) !important;
}
.container-navbar-default > div > div:first-child > div:nth-child(2) > div:hover > a {
  color: var(--ls-txt-body-default, #4B4B4B);
  font: var(--body-1-semibold);
  letter-spacing: -0.01em;
  text-decoration: none;
  font-weight: 600;
  color: var(--navbar-item-color-hover) !important;
}
.container-navbar-default > div > div:nth-child(2) {
  display: flex;
  height: inherit;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
  margin-right: -24px;
}
.container-navbar-default > div > div:nth-child(2) > div:nth-child(2) {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  align-self: stretch;
}
.container-navbar-default > div > div:nth-child(2) > div:nth-child(2) > button > div {
  padding-left: 2px;
  padding-right: 2px;
}
@media screen and (max-width: 768px) {
  .container-navbar-default > div > div:nth-child(2) {
    gap: 0px;
    margin-right: 0px;
  }
  .container-navbar-default > div > div:nth-child(2) > div:nth-child(2) {
    display: flex;
    height: 64px;
    padding: var(--spacing-6, 16px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .container-navbar-default > div > div:nth-child(2) > div:nth-child(2) > button {
    padding: unset;
  }
  .container-navbar-default > div > div:nth-child(2) > div:nth-child(2) > button > i {
    font: var(--icon-06);
    font-weight: 400;
    color: var(--ls-txt-body-default, #4B4B4B);
  }
  .container-navbar-default > div > div:nth-child(2) > div:nth-child(3) {
    display: flex;
    height: 64px;
    padding: 0px 16px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 16px;
  }
  .container-navbar-default > div > div:nth-child(2) > div:nth-child(3) > button {
    padding: unset;
  }
  .container-navbar-default > div > div:nth-child(2) > div:nth-child(3) > button > i {
    font: var(--icon-06);
    font-weight: 400;
    color: var(--ls-txt-body-default, #4B4B4B);
  }
}

/* General dropdown menu styles */
.profile-dropdown {
  width: 176px;
  flex-direction: column;
  gap: 8px;
}
.profile-dropdown.show {
  display: flex !important;
}
.profile-dropdown > div:first-child {
  display: flex;
  padding: 4px 8px;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  border-bottom: 1px solid #C7C7C7;
}
.profile-dropdown > div:first-child > div:first-child {
  color: var(--ls-txt-body-default, #4B4B4B);
  font: var(--body-1-regular);
  letter-spacing: -0.01em;
  text-decoration: none;
}
.profile-dropdown > div:first-child > div:nth-child(2) {
  color: var(--ls-txt-body-secondary, #6C6C6C);
  font-family: Poppins;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
}
.profile-dropdown > div:nth-child(2) {
  display: flex;
  padding: 4px 8px;
  align-items: center;
  gap: 8px;
  background: var(--ls-field-default, #FFF);
}
.profile-dropdown > div:nth-child(2):hover {
  background: var(--ls-field-hover-01, #F7F7F7);
}
.profile-dropdown > div:nth-child(2):active {
  background: var(--ls-field-active-01, #EDEDED);
}
.profile-dropdown > div:nth-child(2).selected {
  color: var(--main-color) !important;
}
.profile-dropdown > div:nth-child(2).selected > * {
  color: var(--main-color) !important;
}
.profile-dropdown > div:nth-child(3) {
  display: flex;
  padding: 8px;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.container-navbar-public {
  display: flex;
  height: 64px;
  padding: 0px 20px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  background: var(--navbar-public-bg-color);
}
.container-navbar-public > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1 0 0;
}
.container-navbar-public > div > div:first-child {
  display: flex;
  align-items: center;
  gap: 16px;
  align-self: stretch;
}
.container-navbar-public > div > div:first-child > div:first-child > img.default-ax-img-size {
  width: 147px;
}
.container-navbar-public > div > div:first-child > div:nth-child(2) {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
  align-self: stretch;
}
.container-navbar-public > div > div:first-child > div:nth-child(2) > * {
  color: var(--ls-txt-body-default, #4B4B4B);
  font: var(--body-1-medium);
  letter-spacing: -0.01em;
  text-decoration: none;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .container-navbar-public > div > div:first-child > div:nth-child(2) > * {
    font-size: 12px;
  }
}
.container-navbar-public > div > div:nth-child(2) {
  display: flex;
  height: 40px;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-8, 24px);
}

/* ------------------------------------------------- UI REUSABLES -------------------------------------------- */
.btn-ax-lang-select {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  gap: 4px;
}
.btn-ax-lang-select > div:first-child > button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 4px;
}
.btn-ax-lang-select > div:first-child > button > div:first-child {
  color: var(--ls-txt-body-default, #4B4B4B);
  font: var(--body-1-medium);
  letter-spacing: -0.01em;
  text-decoration: none;
  font-weight: 500;
  color: var(--navbar-item-color) !important;
  border-bottom: none !important;
}
.btn-ax-lang-select > div:first-child > button > div:first-child > * {
  color: var(--ls-txt-body-default, #4B4B4B);
  font: var(--body-1-medium);
  letter-spacing: -0.01em;
  text-decoration: none;
  font-weight: 500;
  color: var(--navbar-item-color) !important;
}
.btn-ax-lang-select > div:first-child > button > div:first-child.active {
  border-bottom: 3px solid var(--navbar-item-active-border);
  color: var(--navbar-item-active-color) !important;
}
.btn-ax-lang-select > div:first-child > button > div:first-child.active > a {
  color: var(--ls-txt-body-default, #4B4B4B);
  font: var(--body-1-semibold);
  letter-spacing: -0.01em;
  text-decoration: none;
  font-weight: 600;
  color: var(--navbar-item-active-color);
}
.btn-ax-lang-select > div:first-child > button > div:first-child:hover {
  border-bottom: 3px solid var(--navbar-item-active-border);
  color: var(--navbar-item-color-hover) !important;
}
.btn-ax-lang-select > div:first-child > button > div:first-child:hover > a {
  color: var(--ls-txt-body-default, #4B4B4B);
  font: var(--body-1-semibold);
  letter-spacing: -0.01em;
  text-decoration: none;
  font-weight: 600;
  color: var(--navbar-item-color-hover) !important;
}
.btn-ax-lang-select > div:first-child > button > * {
  color: var(--navbar-item-color) !important;
  border-bottom: none !important;
}
.btn-ax-lang-select > div:first-child > button > * > * {
  color: var(--ls-txt-body-default, #4B4B4B);
  font: var(--body-1-medium);
  letter-spacing: -0.01em;
  text-decoration: none;
  font-weight: 500;
  color: var(--navbar-item-color) !important;
}
.btn-ax-lang-select > div:first-child > button > *.active {
  border-bottom: 3px solid var(--navbar-item-active-border);
  color: var(--navbar-item-active-color) !important;
}
.btn-ax-lang-select > div:first-child > button > *.active > a {
  color: var(--ls-txt-body-default, #4B4B4B);
  font: var(--body-1-semibold);
  letter-spacing: -0.01em;
  text-decoration: none;
  font-weight: 600;
  color: var(--navbar-item-active-color);
}
.btn-ax-lang-select > div:first-child > button > *:hover {
  border-bottom: 3px solid var(--navbar-item-active-border);
  color: var(--navbar-item-color-hover) !important;
}
.btn-ax-lang-select > div:first-child > button > *:hover > a {
  color: var(--ls-txt-body-default, #4B4B4B);
  font: var(--body-1-semibold);
  letter-spacing: -0.01em;
  text-decoration: none;
  font-weight: 600;
  color: var(--navbar-item-color-hover) !important;
}
.btn-ax-lang-select.public > div:first-child > button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 4px;
}
.btn-ax-lang-select.public > div:first-child > button > div:first-child {
  color: var(--ls-txt-body-default, #4B4B4B);
  font: var(--body-1-medium);
  letter-spacing: -0.01em;
  text-decoration: none;
  font-weight: 500;
  color: var(--navbar-public-item-color) !important;
  border-bottom: none !important;
}
.btn-ax-lang-select.public > div:first-child > button > div:first-child > * {
  color: var(--ls-txt-body-default, #4B4B4B);
  font: var(--body-1-medium);
  letter-spacing: -0.01em;
  text-decoration: none;
  font-weight: 500;
  color: var(--navbar-public-item-color) !important;
}
.btn-ax-lang-select.public > div:first-child > button > div:first-child.active {
  border-bottom: 3px solid var(--navbar-item-active-border);
  color: var(--navbar-public-item-color-hover) !important;
}
.btn-ax-lang-select.public > div:first-child > button > div:first-child.active > a {
  color: var(--ls-txt-body-default, #4B4B4B);
  font: var(--body-1-semibold);
  letter-spacing: -0.01em;
  text-decoration: none;
  font-weight: 600;
  color: var(--navbar-public-item-color-hover);
}
.btn-ax-lang-select.public > div:first-child > button > div:first-child:hover {
  border-bottom: 3px solid var(--navbar-item-active-border);
  color: var(--navbar-public-item-color-hover) !important;
}
.btn-ax-lang-select.public > div:first-child > button > div:first-child:hover > a {
  color: var(--ls-txt-body-default, #4B4B4B);
  font: var(--body-1-semibold);
  letter-spacing: -0.01em;
  text-decoration: none;
  font-weight: 600;
  color: var(--navbar-public-item-color-hover) !important;
}
.btn-ax-lang-select.public > div:first-child > button > * {
  color: var(--navbar-public-item-color) !important;
  border-bottom: none !important;
}
.btn-ax-lang-select.public > div:first-child > button > * > * {
  color: var(--ls-txt-body-default, #4B4B4B);
  font: var(--body-1-medium);
  letter-spacing: -0.01em;
  text-decoration: none;
  font-weight: 500;
  color: var(--navbar-public-item-color) !important;
}
.btn-ax-lang-select.public > div:first-child > button > *.active {
  border-bottom: 3px solid var(--navbar-item-active-border);
  color: var(--navbar-public-item-color-hover) !important;
}
.btn-ax-lang-select.public > div:first-child > button > *.active > a {
  color: var(--ls-txt-body-default, #4B4B4B);
  font: var(--body-1-semibold);
  letter-spacing: -0.01em;
  text-decoration: none;
  font-weight: 600;
  color: var(--navbar-public-item-color-hover);
}
.btn-ax-lang-select.public > div:first-child > button > *:hover {
  border-bottom: 3px solid var(--navbar-item-active-border);
  color: var(--navbar-public-item-color-hover) !important;
}
.btn-ax-lang-select.public > div:first-child > button > *:hover > a {
  color: var(--ls-txt-body-default, #4B4B4B);
  font: var(--body-1-semibold);
  letter-spacing: -0.01em;
  text-decoration: none;
  font-weight: 600;
  color: var(--navbar-public-item-color-hover) !important;
}

.btn-hi-user > * {
  color: var(--navbar-item-color) !important;
  border-bottom: none !important;
}
.btn-hi-user > * > * {
  color: var(--ls-txt-body-default, #4B4B4B);
  font: var(--body-1-medium);
  letter-spacing: -0.01em;
  text-decoration: none;
  font-weight: 500;
  color: var(--navbar-item-color) !important;
}
.btn-hi-user > *.active {
  border-bottom: 3px solid var(--navbar-item-active-border);
  color: var(--navbar-item-active-color) !important;
}
.btn-hi-user > *.active > a {
  color: var(--ls-txt-body-default, #4B4B4B);
  font: var(--body-1-semibold);
  letter-spacing: -0.01em;
  text-decoration: none;
  font-weight: 600;
  color: var(--navbar-item-active-color);
}
.btn-hi-user > *:hover {
  border-bottom: 3px solid var(--navbar-item-active-border);
  color: var(--navbar-item-color-hover) !important;
}
.btn-hi-user > *:hover > a {
  color: var(--ls-txt-body-default, #4B4B4B);
  font: var(--body-1-semibold);
  letter-spacing: -0.01em;
  text-decoration: none;
  font-weight: 600;
  color: var(--navbar-item-color-hover) !important;
}

.no-hover-important:hover {
  color: var(--navbar-public-item-color) !important;
}

.menu-lang-select {
  border-radius: 4px;
  background: var(--ls-layer-01, #FFF);
  box-shadow: 0px 4px 12px 0px rgba(27, 27, 27, 0.2);
  align-self: stretch;
}
.menu-lang-select > a {
  display: flex;
  padding: 7px 16px;
  align-items: center;
  gap: var(--spacing-4, 8px);
  text-decoration: none;
  justify-content: space-between;
  color: var(--ls-txt-body-default, #4B4B4B);
  background: var(--ls-field-default, #FFF);
}
.menu-lang-select > a:hover {
  background: var(--ls-field-hover-01, #F7F7F7);
}
.menu-lang-select > a:active {
  background: var(--ls-field-active-01, #EDEDED);
}
.menu-lang-select > a.selected {
  color: var(--main-color) !important;
}
.menu-lang-select > a.selected > * {
  color: var(--main-color) !important;
}
.menu-lang-select > a:not(.selected) i.la-check {
  display: none;
}
.menu-lang-select > a > div {
  color: var(--ls-txt-body-default, #4B4B4B);
  font: var(--body-1-regular);
  letter-spacing: -0.01em;
  text-decoration: none;
}
.menu-lang-select > a > i {
  font: var(--icon-01);
  font-weight: 400;
  color: var(--ls-txt-body-default, #4B4B4B);
}

.btn-ax-mobile-menu {
  padding: 0px 16px;
}

.self-stretch {
  align-self: stretch !important;
}

/*      COLORS      */
.ls-white {
  color: #ffffff !important;
}

.ls-default {
  color: #4b4b4b;
}

.ls-btn-default {
  color: #ff8034;
}

/*     BUTTONS      */
.btn-sm-ax-primary {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 10px;
  border: none;
  border-radius: 4px;
  flex-shrink: 0;
  text-decoration: none;
  height: var(--ls-btn-h-sm);
  gap: var(--ls-btn-gap-typ-sm);
  background: var(--btn-bg-color);
  color: var(--btn-font-color);
}
.btn-sm-ax-primary > div {
  font-weight: 500;
  align-content: center;
  align-self: center;
  font: var(--ls-btn-typ-sm);
  white-space: nowrap;
}
.btn-sm-ax-primary > i {
  font: var(--icon-03);
  font-weight: 400;
  color: var(--ls-txt-body-default, #4B4B4B);
  color: inherit;
}
.btn-sm-ax-primary:hover {
  background: var(--btn-bg-color-hover);
  color: var(--btn-font-color-hover);
}
.btn-sm-ax-primary:active {
  background: var(--btn-bg-color-hover);
  color: var(--btn-font-color-hover);
}
.btn-sm-ax-primary.light {
  background: var(--ls-btn-c-light-bgc);
  color: var(--ls-btn-c-light-txt-default);
}
.btn-sm-ax-primary.light:hover {
  color: var(--ls-btn-c-light-txt-hover);
}
.btn-sm-ax-primary.light:active {
  color: var(--ls-btn-c-light-txt-active, #F65C00);
}
.btn-sm-ax-primary.dark {
  background: var(--ls-btn-c-dark-bgc-default);
  color: var(--ls-btn-c-dark-txt, #FFF);
}
.btn-sm-ax-primary.dark:hover {
  background: var(--ls-btn-c-dark-bgc-hover);
}
.btn-sm-ax-primary.dark:active {
  background: var(--ls-btn-c-dark-bgc-active, #1B1B1B);
}

.btn-sm-ax-secondrary {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 10px;
  border: none;
  border-radius: 4px;
  flex-shrink: 0;
  text-decoration: none;
  height: var(--ls-btn-h-sm);
  gap: var(--ls-btn-gap-typ-sm);
  border: 1px solid var(--navbar-public-item-color-hover);
  background: var(--ls-btn-secondary-c-primary-bgc);
  color: var(--navbar-public-item-color);
}
.btn-sm-ax-secondrary > div {
  font-weight: 500;
  align-content: center;
  align-self: center;
  font: var(--ls-btn-typ-sm);
  white-space: nowrap;
}
.btn-sm-ax-secondrary > i {
  font: var(--icon-03);
  font-weight: 400;
  color: var(--ls-txt-body-default, #4B4B4B);
  color: inherit;
}
.btn-sm-ax-secondrary:hover {
  color: var(--navbar-public-item-color-hover);
  border: 1px solid var(--navbar-public-item-color-hover);
}
.btn-sm-ax-secondrary:active {
  border: 1px solid var(--ls-btn-secondary-c-primary-bd-active, #F65C00);
  color: var(--ls-btn-secondary-c-primary-txt-active, #F65C00);
}
.btn-sm-ax-secondrary.light {
  background: var(--ls-btn-secondary-c-light-bgc-default);
  color: var(--navbar-public-item-color);
  border: 1px solid var(--navbar-public-item-color);
}
.btn-sm-ax-secondrary.light:hover {
  color: var(--navbar-public-item-color-hover);
  border: 1px solid var(--navbar-public-item-color-hover);
  background: var(--ls-btn-secondary-c-light-bgc-hover, rgba(255, 255, 255, 0.15));
}
.btn-sm-ax-secondrary.light:active {
  color: var(--ls-btn-secondary-c-light-txt-active, #FFF);
  border: 1px solid var(--ls-btn-secondary-c-light-bd-active, #FFF);
  background: var(--ls-btn-secondary-c-light-bgc-active, rgba(255, 255, 255, 0.25));
}
.btn-sm-ax-secondrary.dark {
  border: 1px solid var(--ls-btn-secondary-c-dark-bd-default, #C7C7C7);
  background: var(--ls-btn-secondary-c-dark-bgc, #FFF);
  color: var(--ls-btn-secondary-c-dark-txt-default, #4B4B4B);
}
.btn-sm-ax-secondrary.dark:hover {
  border: 1px solid var(--ls-btn-secondary-c-dark-bd-hover, #4B4B4B);
  color: var(--ls-btn-secondary-c-dark-txt-hover, #4B4B4B);
}
.btn-sm-ax-secondrary.dark:active {
  color: var(--ls-btn-secondary-c-dark-txt-active, #1B1B1B);
  border: 1px solid var(--ls-btn-secondary-c-dark-bd-active, #1B1B1B);
}

.btn-sm-ax-ghost {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 10px;
  border: none;
  border-radius: 4px;
  flex-shrink: 0;
  text-decoration: none;
  height: var(--ls-btn-h-sm);
  gap: var(--ls-btn-gap-typ-sm);
  background: none;
  color: var(--ls-btn-ghost-c-primary-txt-default, #FF8034);
}
.btn-sm-ax-ghost > div {
  font-weight: 500;
  align-content: center;
  align-self: center;
  font: var(--ls-btn-typ-sm);
  white-space: nowrap;
}
.btn-sm-ax-ghost > i {
  font: var(--icon-03);
  font-weight: 400;
  color: var(--ls-txt-body-default, #4B4B4B);
  color: inherit;
}
.btn-sm-ax-ghost:hover {
  background: var(--ls-btn-ghost-c-primary-bgc-hover, rgba(255, 230, 214, 0.4));
  color: var(--ls-btn-ghost-c-primary-txt-hover, #FF8034);
}
.btn-sm-ax-ghost:active {
  background: var(--ls-btn-ghost-c-primary-bgc-active, #FFE6D6);
  color: var(--ls-btn-ghost-c-primary-txt-active, #FF8034);
}
.btn-sm-ax-ghost.light {
  color: var(--ls-btn-ghost-c-light-txt-default, #FFF);
}
.btn-sm-ax-ghost.light:hover {
  background: var(--ls-btn-ghost-c-light-bgc-hover, rgba(255, 255, 255, 0.15));
  color: var(--ls-btn-ghost-c-light-txt-hover, #FFF);
}
.btn-sm-ax-ghost.light:active {
  color: var(--ls-btn-ghost-c-light-txt-active, #FFF);
  background: var(--ls-btn-ghost-c-light-bgc-active, rgba(255, 255, 255, 0.25));
}
.btn-sm-ax-ghost.dark {
  color: var(--ls-btn-ghost-c-dark-txt-default, #4B4B4B);
}
.btn-sm-ax-ghost.dark:hover {
  background: var(--ls-btn-ghost-c-dark-bgc-hover, #EDEDED);
  color: var(--ls-btn-ghost-c-dark-txt-default, #4B4B4B);
}
.btn-sm-ax-ghost.dark:active {
  color: var(--ls-btn-ghost-c-dark-txt-active, #4B4B4B);
  background: var(--ls-btn-ghost-c-dark-bgc-active, #C7C7C7);
}

.btn-md-ax-primary {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 10px;
  border: none;
  border-radius: 4px;
  flex-shrink: 0;
  text-decoration: none;
  height: var(--ls-btn-h-md);
  gap: var(--ls-btn-gap-typ-md);
  background: var(--btn-bg-color);
  color: var(--btn-font-color);
}
.btn-md-ax-primary > div {
  font-weight: 500;
  align-content: center;
  align-self: center;
  font: var(--ls-btn-typ-md);
  white-space: nowrap;
}
.btn-md-ax-primary > i {
  font: var(--icon-04);
  font-weight: 400;
  color: var(--ls-txt-body-default, #4B4B4B);
  color: inherit;
}
.btn-md-ax-primary:hover {
  background: var(--btn-bg-color-hover);
  color: var(--btn-font-color-hover);
}
.btn-md-ax-primary:active {
  background: var(--btn-bg-color-hover);
  color: var(--btn-font-color-hover);
}
.btn-md-ax-primary.light {
  background: var(--ls-btn-c-light-bgc);
  color: var(--ls-btn-c-light-txt-default);
}
.btn-md-ax-primary.light:hover {
  color: var(--ls-btn-c-light-txt-hover);
}
.btn-md-ax-primary.light:active {
  color: var(--ls-btn-c-light-txt-active, #F65C00);
}
.btn-md-ax-primary.dark {
  background: var(--ls-btn-c-dark-bgc-default);
  color: var(--ls-btn-c-dark-txt, #FFF);
}
.btn-md-ax-primary.dark:hover {
  background: var(--ls-btn-c-dark-bgc-hover);
}
.btn-md-ax-primary.dark:active {
  background: var(--ls-btn-c-dark-bgc-active, #1B1B1B);
}

.btn-md-ax-secondrary {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 10px;
  border: none;
  border-radius: 4px;
  flex-shrink: 0;
  text-decoration: none;
  height: var(--ls-btn-h-md);
  gap: var(--ls-btn-gap-typ-md);
  border: 1px solid var(--navbar-public-item-color-hover);
  background: var(--ls-btn-secondary-c-primary-bgc);
  color: var(--navbar-public-item-color);
}
.btn-md-ax-secondrary > div {
  font-weight: 500;
  align-content: center;
  align-self: center;
  font: var(--ls-btn-typ-md);
  white-space: nowrap;
}
.btn-md-ax-secondrary > i {
  font: var(--icon-04);
  font-weight: 400;
  color: var(--ls-txt-body-default, #4B4B4B);
  color: inherit;
}
.btn-md-ax-secondrary:hover {
  color: var(--navbar-public-item-color-hover);
  border: 1px solid var(--navbar-public-item-color-hover);
}
.btn-md-ax-secondrary:active {
  border: 1px solid var(--ls-btn-secondary-c-primary-bd-active, #F65C00);
  color: var(--ls-btn-secondary-c-primary-txt-active, #F65C00);
}
.btn-md-ax-secondrary.light {
  background: var(--ls-btn-secondary-c-light-bgc-default);
  color: var(--navbar-public-item-color);
  border: 1px solid var(--navbar-public-item-color);
}
.btn-md-ax-secondrary.light:hover {
  color: var(--navbar-public-item-color-hover);
  border: 1px solid var(--navbar-public-item-color-hover);
  background: var(--ls-btn-secondary-c-light-bgc-hover, rgba(255, 255, 255, 0.15));
}
.btn-md-ax-secondrary.light:active {
  color: var(--ls-btn-secondary-c-light-txt-active, #FFF);
  border: 1px solid var(--ls-btn-secondary-c-light-bd-active, #FFF);
  background: var(--ls-btn-secondary-c-light-bgc-active, rgba(255, 255, 255, 0.25));
}
.btn-md-ax-secondrary.dark {
  border: 1px solid var(--ls-btn-secondary-c-dark-bd-default, #C7C7C7);
  background: var(--ls-btn-secondary-c-dark-bgc, #FFF);
  color: var(--ls-btn-secondary-c-dark-txt-default, #4B4B4B);
}
.btn-md-ax-secondrary.dark:hover {
  border: 1px solid var(--ls-btn-secondary-c-dark-bd-hover, #4B4B4B);
  color: var(--ls-btn-secondary-c-dark-txt-hover, #4B4B4B);
}
.btn-md-ax-secondrary.dark:active {
  color: var(--ls-btn-secondary-c-dark-txt-active, #1B1B1B);
  border: 1px solid var(--ls-btn-secondary-c-dark-bd-active, #1B1B1B);
}

.btn-md-ax-ghost {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 10px;
  border: none;
  border-radius: 4px;
  flex-shrink: 0;
  text-decoration: none;
  height: var(--ls-btn-h-md);
  gap: var(--ls-btn-gap-typ-md);
  background: none;
  color: var(--ls-btn-ghost-c-primary-txt-default, #FF8034);
}
.btn-md-ax-ghost > div {
  font-weight: 500;
  align-content: center;
  align-self: center;
  font: var(--ls-btn-typ-md);
  white-space: nowrap;
}
.btn-md-ax-ghost > i {
  font: var(--icon-04);
  font-weight: 400;
  color: var(--ls-txt-body-default, #4B4B4B);
  color: inherit;
}
.btn-md-ax-ghost:hover {
  background: var(--ls-btn-ghost-c-primary-bgc-hover, rgba(255, 230, 214, 0.4));
  color: var(--ls-btn-ghost-c-primary-txt-hover, #FF8034);
}
.btn-md-ax-ghost:active {
  background: var(--ls-btn-ghost-c-primary-bgc-active, #FFE6D6);
  color: var(--ls-btn-ghost-c-primary-txt-active, #FF8034);
}
.btn-md-ax-ghost.light {
  color: var(--ls-btn-ghost-c-light-txt-default, #FFF);
}
.btn-md-ax-ghost.light:hover {
  background: var(--ls-btn-ghost-c-light-bgc-hover, rgba(255, 255, 255, 0.15));
  color: var(--ls-btn-ghost-c-light-txt-hover, #FFF);
}
.btn-md-ax-ghost.light:active {
  color: var(--ls-btn-ghost-c-light-txt-active, #FFF);
  background: var(--ls-btn-ghost-c-light-bgc-active, rgba(255, 255, 255, 0.25));
}
.btn-md-ax-ghost.dark {
  color: var(--ls-btn-ghost-c-dark-txt-default, #4B4B4B);
}
.btn-md-ax-ghost.dark:hover {
  background: var(--ls-btn-ghost-c-dark-bgc-hover, #EDEDED);
  color: var(--ls-btn-ghost-c-dark-txt-default, #4B4B4B);
}
.btn-md-ax-ghost.dark:active {
  color: var(--ls-btn-ghost-c-dark-txt-active, #4B4B4B);
  background: var(--ls-btn-ghost-c-dark-bgc-active, #C7C7C7);
}

.btn-xl-ax-primary {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 16px;
  border: none;
  border-radius: 4px;
  flex-shrink: 0;
  text-decoration: none;
  height: var(--ls-btn-h-xl);
  gap: var(--ls-btn-gap-typ-xl);
  background: var(--btn-bg-color);
  color: var(--btn-font-color);
}
.btn-xl-ax-primary > div {
  font-weight: 500;
  align-content: center;
  align-self: center;
  font: var(--ls-btn-typ-xl);
  white-space: nowrap;
}
.btn-xl-ax-primary > i {
  font: var(--icon-06);
  font-weight: 400;
  color: var(--ls-txt-body-default, #4B4B4B);
  color: inherit;
}
.btn-xl-ax-primary:hover {
  background: var(--btn-bg-color-hover);
  color: var(--btn-font-color-hover);
}
.btn-xl-ax-primary:active {
  background: var(--btn-bg-color-hover);
  color: var(--btn-font-color-hover);
}
.btn-xl-ax-primary.light {
  background: var(--ls-btn-c-light-bgc);
  color: var(--ls-btn-c-light-txt-default);
}
.btn-xl-ax-primary.light:hover {
  color: var(--ls-btn-c-light-txt-hover);
}
.btn-xl-ax-primary.light:active {
  color: var(--ls-btn-c-light-txt-active, #F65C00);
}
.btn-xl-ax-primary.dark {
  background: var(--ls-btn-c-dark-bgc-default);
  color: var(--ls-btn-c-dark-txt, #FFF);
}
.btn-xl-ax-primary.dark:hover {
  background: var(--ls-btn-c-dark-bgc-hover);
}
.btn-xl-ax-primary.dark:active {
  background: var(--ls-btn-c-dark-bgc-active, #1B1B1B);
}

.btn-xl-ax-secondrary {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 16px;
  border: none;
  border-radius: 4px;
  flex-shrink: 0;
  text-decoration: none;
  height: var(--ls-btn-h-xl);
  gap: var(--ls-btn-gap-typ-xl);
  border: 1px solid var(--navbar-public-item-color-hover);
  background: var(--ls-btn-secondary-c-primary-bgc);
  color: var(--navbar-public-item-color);
}
.btn-xl-ax-secondrary > div {
  font-weight: 500;
  align-content: center;
  align-self: center;
  font: var(--ls-btn-typ-xl);
  white-space: nowrap;
}
.btn-xl-ax-secondrary > i {
  font: var(--icon-06);
  font-weight: 400;
  color: var(--ls-txt-body-default, #4B4B4B);
  color: inherit;
}
.btn-xl-ax-secondrary:hover {
  color: var(--navbar-public-item-color-hover);
  border: 1px solid var(--navbar-public-item-color-hover);
}
.btn-xl-ax-secondrary:active {
  border: 1px solid var(--ls-btn-secondary-c-primary-bd-active, #F65C00);
  color: var(--ls-btn-secondary-c-primary-txt-active, #F65C00);
}
.btn-xl-ax-secondrary.light {
  background: var(--ls-btn-secondary-c-light-bgc-default);
  color: var(--navbar-public-item-color);
  border: 1px solid var(--navbar-public-item-color);
}
.btn-xl-ax-secondrary.light:hover {
  color: var(--navbar-public-item-color-hover);
  border: 1px solid var(--navbar-public-item-color-hover);
  background: var(--ls-btn-secondary-c-light-bgc-hover, rgba(255, 255, 255, 0.15));
}
.btn-xl-ax-secondrary.light:active {
  color: var(--ls-btn-secondary-c-light-txt-active, #FFF);
  border: 1px solid var(--ls-btn-secondary-c-light-bd-active, #FFF);
  background: var(--ls-btn-secondary-c-light-bgc-active, rgba(255, 255, 255, 0.25));
}
.btn-xl-ax-secondrary.dark {
  border: 1px solid var(--ls-btn-secondary-c-dark-bd-default, #C7C7C7);
  background: var(--ls-btn-secondary-c-dark-bgc, #FFF);
  color: var(--ls-btn-secondary-c-dark-txt-default, #4B4B4B);
}
.btn-xl-ax-secondrary.dark:hover {
  border: 1px solid var(--ls-btn-secondary-c-dark-bd-hover, #4B4B4B);
  color: var(--ls-btn-secondary-c-dark-txt-hover, #4B4B4B);
}
.btn-xl-ax-secondrary.dark:active {
  color: var(--ls-btn-secondary-c-dark-txt-active, #1B1B1B);
  border: 1px solid var(--ls-btn-secondary-c-dark-bd-active, #1B1B1B);
}

.btn-xl-ax-ghost {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 16px;
  border: none;
  border-radius: 4px;
  flex-shrink: 0;
  text-decoration: none;
  height: var(--ls-btn-h-xl);
  gap: var(--ls-btn-gap-typ-xl);
  background: none;
  color: var(--ls-btn-ghost-c-primary-txt-default, #FF8034);
}
.btn-xl-ax-ghost > div {
  font-weight: 500;
  align-content: center;
  align-self: center;
  font: var(--ls-btn-typ-xl);
  white-space: nowrap;
}
.btn-xl-ax-ghost > i {
  font: var(--icon-06);
  font-weight: 400;
  color: var(--ls-txt-body-default, #4B4B4B);
  color: inherit;
}
.btn-xl-ax-ghost:hover {
  background: var(--ls-btn-ghost-c-primary-bgc-hover, rgba(255, 230, 214, 0.4));
  color: var(--ls-btn-ghost-c-primary-txt-hover, #FF8034);
}
.btn-xl-ax-ghost:active {
  background: var(--ls-btn-ghost-c-primary-bgc-active, #FFE6D6);
  color: var(--ls-btn-ghost-c-primary-txt-active, #FF8034);
}
.btn-xl-ax-ghost.light {
  color: var(--ls-btn-ghost-c-light-txt-default, #FFF);
}
.btn-xl-ax-ghost.light:hover {
  background: var(--ls-btn-ghost-c-light-bgc-hover, rgba(255, 255, 255, 0.15));
  color: var(--ls-btn-ghost-c-light-txt-hover, #FFF);
}
.btn-xl-ax-ghost.light:active {
  color: var(--ls-btn-ghost-c-light-txt-active, #FFF);
  background: var(--ls-btn-ghost-c-light-bgc-active, rgba(255, 255, 255, 0.25));
}
.btn-xl-ax-ghost.dark {
  color: var(--ls-btn-ghost-c-dark-txt-default, #4B4B4B);
}
.btn-xl-ax-ghost.dark:hover {
  background: var(--ls-btn-ghost-c-dark-bgc-hover, #EDEDED);
  color: var(--ls-btn-ghost-c-dark-txt-default, #4B4B4B);
}
.btn-xl-ax-ghost.dark:active {
  color: var(--ls-btn-ghost-c-dark-txt-active, #4B4B4B);
  background: var(--ls-btn-ghost-c-dark-bgc-active, #C7C7C7);
}

.btn-default-ax-primary {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 10px;
  border: none;
  border-radius: 4px;
  flex-shrink: 0;
  text-decoration: none;
  height: var(--ls-btn-h-default);
  gap: var(--ls-btn-gap-typ-default);
  background: var(--btn-bg-color);
  color: var(--btn-font-color);
}
.btn-default-ax-primary > div {
  font-weight: 500;
  align-content: center;
  align-self: center;
  font: var(--ls-btn-typ-default);
  white-space: nowrap;
}
.btn-default-ax-primary > i {
  font: var(--icon-05);
  font-weight: 400;
  color: var(--ls-txt-body-default, #4B4B4B);
  color: inherit;
}
.btn-default-ax-primary:hover {
  background: var(--btn-bg-color-hover);
  color: var(--btn-font-color-hover);
}
.btn-default-ax-primary:active {
  background: var(--btn-bg-color-hover);
  color: var(--btn-font-color-hover);
}
.btn-default-ax-primary.light {
  background: var(--ls-btn-c-light-bgc);
  color: var(--ls-btn-c-light-txt-default);
}
.btn-default-ax-primary.light:hover {
  color: var(--ls-btn-c-light-txt-hover);
}
.btn-default-ax-primary.light:active {
  color: var(--ls-btn-c-light-txt-active, #F65C00);
}
.btn-default-ax-primary.dark {
  background: var(--ls-btn-c-dark-bgc-default);
  color: var(--ls-btn-c-dark-txt, #FFF);
}
.btn-default-ax-primary.dark:hover {
  background: var(--ls-btn-c-dark-bgc-hover);
}
.btn-default-ax-primary.dark:active {
  background: var(--ls-btn-c-dark-bgc-active, #1B1B1B);
}

.btn-default-ax-secondrary {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 10px;
  border: none;
  border-radius: 4px;
  flex-shrink: 0;
  text-decoration: none;
  height: var(--ls-btn-h-default);
  gap: var(--ls-btn-gap-typ-default);
  border: 1px solid var(--navbar-public-item-color-hover);
  background: var(--ls-btn-secondary-c-primary-bgc);
  color: var(--navbar-public-item-color);
}
.btn-default-ax-secondrary > div {
  font-weight: 500;
  align-content: center;
  align-self: center;
  font: var(--ls-btn-typ-default);
  white-space: nowrap;
}
.btn-default-ax-secondrary > i {
  font: var(--icon-05);
  font-weight: 400;
  color: var(--ls-txt-body-default, #4B4B4B);
  color: inherit;
}
.btn-default-ax-secondrary:hover {
  color: var(--navbar-public-item-color-hover);
  border: 1px solid var(--navbar-public-item-color-hover);
}
.btn-default-ax-secondrary:active {
  border: 1px solid var(--ls-btn-secondary-c-primary-bd-active, #F65C00);
  color: var(--ls-btn-secondary-c-primary-txt-active, #F65C00);
}
.btn-default-ax-secondrary.light {
  background: var(--ls-btn-secondary-c-light-bgc-default);
  color: var(--navbar-public-item-color);
  border: 1px solid var(--navbar-public-item-color);
}
.btn-default-ax-secondrary.light:hover {
  color: var(--navbar-public-item-color-hover);
  border: 1px solid var(--navbar-public-item-color-hover);
  background: var(--ls-btn-secondary-c-light-bgc-hover, rgba(255, 255, 255, 0.15));
}
.btn-default-ax-secondrary.light:active {
  color: var(--ls-btn-secondary-c-light-txt-active, #FFF);
  border: 1px solid var(--ls-btn-secondary-c-light-bd-active, #FFF);
  background: var(--ls-btn-secondary-c-light-bgc-active, rgba(255, 255, 255, 0.25));
}
.btn-default-ax-secondrary.dark {
  border: 1px solid var(--ls-btn-secondary-c-dark-bd-default, #C7C7C7);
  background: var(--ls-btn-secondary-c-dark-bgc, #FFF);
  color: var(--ls-btn-secondary-c-dark-txt-default, #4B4B4B);
}
.btn-default-ax-secondrary.dark:hover {
  border: 1px solid var(--ls-btn-secondary-c-dark-bd-hover, #4B4B4B);
  color: var(--ls-btn-secondary-c-dark-txt-hover, #4B4B4B);
}
.btn-default-ax-secondrary.dark:active {
  color: var(--ls-btn-secondary-c-dark-txt-active, #1B1B1B);
  border: 1px solid var(--ls-btn-secondary-c-dark-bd-active, #1B1B1B);
}

.btn-default-ax-ghost {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 10px;
  border: none;
  border-radius: 4px;
  flex-shrink: 0;
  text-decoration: none;
  height: var(--ls-btn-h-default);
  gap: var(--ls-btn-gap-typ-default);
  background: none;
  color: var(--ls-btn-ghost-c-primary-txt-default, #FF8034);
}
.btn-default-ax-ghost > div {
  font-weight: 500;
  align-content: center;
  align-self: center;
  font: var(--ls-btn-typ-default);
  white-space: nowrap;
}
.btn-default-ax-ghost > i {
  font: var(--icon-05);
  font-weight: 400;
  color: var(--ls-txt-body-default, #4B4B4B);
  color: inherit;
}
.btn-default-ax-ghost:hover {
  background: var(--ls-btn-ghost-c-primary-bgc-hover, rgba(255, 230, 214, 0.4));
  color: var(--ls-btn-ghost-c-primary-txt-hover, #FF8034);
}
.btn-default-ax-ghost:active {
  background: var(--ls-btn-ghost-c-primary-bgc-active, #FFE6D6);
  color: var(--ls-btn-ghost-c-primary-txt-active, #FF8034);
}
.btn-default-ax-ghost.light {
  color: var(--ls-btn-ghost-c-light-txt-default, #FFF);
}
.btn-default-ax-ghost.light:hover {
  background: var(--ls-btn-ghost-c-light-bgc-hover, rgba(255, 255, 255, 0.15));
  color: var(--ls-btn-ghost-c-light-txt-hover, #FFF);
}
.btn-default-ax-ghost.light:active {
  color: var(--ls-btn-ghost-c-light-txt-active, #FFF);
  background: var(--ls-btn-ghost-c-light-bgc-active, rgba(255, 255, 255, 0.25));
}
.btn-default-ax-ghost.dark {
  color: var(--ls-btn-ghost-c-dark-txt-default, #4B4B4B);
}
.btn-default-ax-ghost.dark:hover {
  background: var(--ls-btn-ghost-c-dark-bgc-hover, #EDEDED);
  color: var(--ls-btn-ghost-c-dark-txt-default, #4B4B4B);
}
.btn-default-ax-ghost.dark:active {
  color: var(--ls-btn-ghost-c-dark-txt-active, #4B4B4B);
  background: var(--ls-btn-ghost-c-dark-bgc-active, #C7C7C7);
}

.tab-content > .active {
  display: block !important;
}

/*# sourceMappingURL=custom-n.css.map */
