@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/* Font Size */
.fs {
    margin-top: 14px;
    margin-bottom: 14px;
}
.fs:where(:first-child) {
    margin-top: 0;
}
.fs:where(:last-child) {
    margin-bottom: 0;
}
.fs-xxxl {
    font-size: 70px;
    line-height: 1.2;
}
.fs-xxl {
    font-size: 45px;
    line-height: 1.2;
}
.fs-l {
    font-size: 40px;
    line-height: 1.2;
}
.fs-m {
    font-size: 30px;
    line-height: 1.2;
}
@media screen and (max-width: 1439px) {
    .fs-xxxl {
        font-size: 68px;
        line-height: 1.2;
    }
    .fs-xxl {
        font-size: 42px;
        line-height: 1.2;
    }
    .fs-l {
        font-size: 36px;
        line-height: 1.2;
    }
    .fs-m {
        font-size: 28px;
        line-height: 1.2;
    }
}
@media screen and (max-width: 991px) {
    .fs-xxxl {
        font-size: 60px;
        line-height: 1.2;
    }
    .fs-xxl {
        font-size: 40px;
        line-height: 1.2;
    }
    .fs-l {
        font-size: 32px;
        line-height: 1.2;
    }
    .fs-m {
        font-size: 26px;
        line-height: 1.2;
    }
}
@media screen and (max-width: 767px) {
    .fs-xxxl {
        font-size: 50px;
        line-height: 1.2;
    }
    .fs-xxl {
        font-size: 35px;
        line-height: 1.2;
    }
    .fs-l {
        font-size: 28px;
        line-height: 1.2;
    }
    .fs-m {
        font-size: 24px;
        line-height: 1.2;
    }
}
@media screen and (max-width: 479px) {
    .fs-xxxl {
        font-size: 40px;
        line-height: 1.2;
    }
    .fs-xxl {
        font-size: 30px;
        line-height: 1.2;
    }
    .fs-l {
        font-size: 24px;
        line-height: 1.2;
    }
    .fs-m {
        font-size: 20px;
        line-height: 1.2;
    }
}


/* Font Weight */
.fw-normal {
    font-weight: normal;
}
.fw-bold {
    font-weight: bold;
}

.black-text{
    color: var(--black);
}
.blue-text{
    color: var(--blue2);
}

.w--tab-active {
    animation: fadeIn 0.8s ease;
}
.richtext table {
    max-width: 100%;
}
.richtext > p:first-child {
    padding-top: 0;
}
.richtext img {
    max-width: 100%;
    border-radius: 30px;
}
.richtext > img,
.richtext > p > img {
    max-width: 1000px;
}

.richtext .inno_tech_highlight_text{
    color: inherit;
}

.richtext h3{
    padding-top: 18px;
    padding-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.27;
}

@media screen and (max-width: 991px) {
    .richtext > img,
    .richtext > p > img {
        border-radius: 25px;
    }
    .richtext h3{
        padding-top: 15px;
        padding-bottom: 12.5px;
        font-size: 19px;
        line-height: 1.26;
    }
}
@media screen and (max-width: 479px) {
    .richtext > img,
    .richtext > p > img {
        border-radius: 20px;
    }
    .richtext h3{
        padding-top: 12px;
        padding-bottom: 10px;
        font-size: 16px;
        line-height: 1.25;
    }
}
.search_popup_btn.not_available {
    user-select: none;
    pointer-events: none;
}
p > .btn-download:first-child {
    margin-top: 0 !important;
}
.mobile_menu_trigger_btn,
.header_search_btn,
.search_popup_close_btn,
.mobile_menu_btn,
.mobile_menu_2nd_btn,
.mobile_menu_2nd_back_btn {
    cursor: pointer;
    color: var(--black);
    transition: all 0.3s;
    font-weight: normal;
}
.btn-download {
    color: var(--black);
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    justify-content: flex-start;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    line-height: 1.3125;
    position: relative;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-right: calc(32px + 1.5em);
    transition: 0.3s;
    background-color: transparent;
}
.richtext .btn-download {
    margin-top: 25px;
}
.btn-download:hover {
    color: var(--navy);
}
.btn-download::before,
.btn-download::after {
    content: "";
    z-index: 0;
    border: 1px solid var(--grey1);
    border-radius: 99px;
    width: 32px;
    height: 32px;
    position: absolute;
    right: calc(32px - 1.5em);
    transition: 0.3s;
    top: 50%;
    transform: translate(0, -50%);
}
.btn-download::before {
    opacity: 0.8;
    background-image: url("/assets/images/download_icon_navy.svg");
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
}
.btn-download::after {
    opacity: 0;
    background-color: var(--navy);
    background-image: url("/assets/images/download_icon_white.svg");
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
}
.btn-download:hover:before {
    opacity: 0;
}
.btn-download:hover:after {
    opacity: 1;
}
@media screen and (max-width: 991px) {
    .btn-download {
        grid-column-gap: 10px;
        grid-row-gap: 10px;
        font-size: 14.5px;
        line-height: 1.28;
        padding-right: calc(31.5px + 2em);
    }
    .richtext .btn-download {
        margin-top: 20px;
    }
    .btn-download::before,
    .btn-download::after {
        width: 28px;
        height: 28px;
        right: calc(28px - 0.8em);
    }
}
@media screen and (max-width: 479px) {
    .btn-download {
        padding-right: calc(23px + 1.5em);
    }
    .richtext .btn-download {
        margin-top: 15px;
    }
    .btn-download::before,
    .btn-download::after {
        width: 23px;
        height: 23px;
        right: calc(23px - 0.8em);
    }
}
.home_inno_tech_container .inner_intro_highlight_text {
    color: inherit;
}
.home_quick_links_btn {
    color: var(--black);
}
.inner_grid_img_block > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.jot_trigger_btn {
    color: var(--black);
    cursor: pointer;
}
.product_filter_dropdown {
    display: inline-block;
    position: relative;
    text-align: left;
}
.generic_dropdown_toggle {
    position: relative;
    vertical-align: top;
    text-decoration: none;
    user-select: none;
    cursor: pointer;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap;
}
.generic_dropdown_list {
    display: none;
}
.generic_dropdown_list.show {
    position: absolute;
    background-color: var(--white);
    display: block;
    z-index: 3;
    min-width: 100%;
}
.generic_dropdown_link {
    position: relative;
    text-decoration: none;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
    display: block;
    color: var(--black);
}
.contact_git_form_checkbox {
    cursor: pointer;
}
.contact_git_form_checkbox input {
    display: none;
}
.contact_git_form_checkbox input:checked ~ .contact_git_form_checkbox_box {
    border-color: var(--grey1);
    background-color: var(--white);
    background-image: url(/assets/images/form_checkbox_dot.svg);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 70%;
}
.generic_btn {
    padding-left: 0;
    background-color: transparent;
    /* color: inherit; */
    transition: 0.6s ease;
}
.generic_btn:hover {
    color: var(--white);
}
.w-form-done.show,
.w-form-fail.show {
    display: block;
}
.enquiry_popup_container {
    transition: all, opacity 900ms;
    opacity: 0;
    display: none;
}
.enquiry_popup_container.show {
    transition: all, opacity 900ms;
    opacity: 1;
    display: flex;
    animation: fadeIn 0.5s ease;
}
.enquiry_popup_close_btn {
    background-color: transparent;
    transition: 0.6s ease;
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.loading-overlay.active {
    opacity: 1;
    visibility: visible;
}

@keyframes loading_rotate1 {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes loading_rotate2 {
    0% { transform: rotate(120deg); }
    100% { transform: rotate(480deg); }
}

@keyframes loading_rotate3 {
    0% { transform: rotate(240deg); }
    100% { transform: rotate(600deg); }
}

@keyframes loading_dots {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60% { content: '...'; }
    80%, 100% { content: ''; }
}

.loader {
    position: relative;
    width: 64px;
    height: 64px;
}

.loader-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-radius: 50%;
}

.loader-ring-outer {
    border-left-color: var(--blue2);
    border-top-color: var(--blue2);
    border-right-color: var(--blue2);
    animation: loading_rotate1 2s linear infinite;
}

.loader-ring-middle {
    width: 75%;
    height: 75%;
    top: 12.5%;
    left: 12.5%;
    border: 4px solid transparent;
    border-radius: 50%;
    border-top-color: var(--blue2);
    position: absolute;
    animation: loading_rotate2 1.75s linear infinite;
}

.loader-ring-inner {
    width: 50%;
    height: 50%;
    top: 25%;
    left: 25%;
    border: 4px solid transparent;
    border-radius: 50%;
    border-top-color: var(--blue2);
    position: absolute;
    animation: loading_rotate3 1.5s linear infinite;
}

.loader-text {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: var(--black);
    white-space: nowrap;
    user-select: none;
}

.loader-text:after {
    content: '';
    animation: loading_dots 2s linear infinite;
}

.header_right_desktop_btn_current_dot.active{
    opacity: 1;
}
.scrolling_header_container .header_right_desktop_btn.active .header_desktop_hover_ori_text,
.scrolling_header_container .header_right_desktop_btn.active .header_desktop_hover_blue_text{
    color: var(--blue2);
    font-weight: 600;
}