/* normalize fonts */
body {
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* remove blue highlight on mobile tap */
* { -webkit-tap-highlight-color: transparent; }
/* fluid typography */
html { font-size: calc(0.625rem + 0.42vw); }
@media screen and (max-width:991px) { html { font-size: 1rem } }
@media screen and (min-width:1440px) { html { font-size: 1rem } }
/* setup */
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  vertical-align: middle;
}
img,
video {
  height: auto;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
button {
	border: none;
  padding: 0;
  background-color: unset;
}
.spacer * { padding: 0 }
.w-richtext > :first-child {margin-top: 0}
.w-richtext > :last-child {margin-bottom: 0}
/* 
* Custom styles 
*/
/* utilities */
[hide], .css, .js {
	display: none;
}
[pointer="off"] {
	pointer-events: none;
}
[pointer="on"] {
	pointer-events: auto;
}
[color-inherit] {
	color: inherit;
}
[inline-flex] {
	display: inline-flex;
}
/* elements only detectable by screen readers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
/* gradients */
/* make sure to use background-image */
[gradient="1"] {
  background-image: linear-gradient(135deg, var(--_themes---gradient-1--start-color) 0%, var(--_themes---gradient-1--end-color) 100%);
}
[gradient="2"] {
	background-image: linear-gradient(135deg, var(--_themes---gradient-2--start-color) 0%, var(--_themes---gradient-2--end-color) 100%);
}
/* shadows */
[shadow] { 
	box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}
[shadow="lg"] { 
	box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}
[shadow="xl"] { 
	box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}
.d-none { display: none; }
.d-block { display: block; }
.collapse:not(.show) {
    display: none;
}
.text-center { text-align: center; }
.lookup_faq_wrap .link_text {
  color: var(--_themes---primary-color);
  text-decoration: underline;
}
.pagination {
  display: ruby!important;
  gap: 0.5em;
}
/*Menu navigation*/
/* hidden by default */
.nav_dropdown_list {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    border-radius: var(--_radius---border_radius_16);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 1000;
}

/* show on hover */
.nav_dropdown:hover .nav_dropdown_list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
}
.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}
.modal.fade.zoom-out.show .modal-dialog, .modal.show .modal-dialog {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.modal-header:after, .modal-header:before {
    content: none;
    display: none;
}
/* ONLY apply on mobile (collapsed state) */
@media (max-width: 991px) {

    /* override Webflow display:none */
    .w-nav[data-collapse='medium'] .w-nav-menu {
        display: block !important;
    }

    /* collapsed state */
    .nav_menu.w-nav-menu {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
        transition: 
            max-height 0.4s ease,
            opacity 0.3s ease,
            transform 0.3s ease;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        z-index: 999;
    }

    /* open state */
    .nav_menu.w-nav-menu.w--open {
        max-height: 600px;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    /* CRITICAL: override horizontal layout */
    .nav_menu_layout {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 16px;
        padding: 20px;
    }

    /* Stack left + right sections */
    .nav_menu_left,
    .nav_menu_right {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    /* Make buttons full width */
    .nav_button_wrap,
    .button {
        width: 100%;
    }

    /* Optional: improve spacing */
    .nav_link {
        width: 100%;
        display: block;
    }
}
.navbar a{
  text-decoration: none;
}
footer a{
  text-decoration: none;
  color: inherit;
}
.navbar a:hover{
  text-decoration: none;
}
footer a:hover{
  text-decoration: none;
  color: inherit;
}