.inner:not(.dropdown-menu .inner) {
    max-width: 1495px;
    margin: 0 auto;
}

.sr_only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* header */
#header {
    border-bottom: 1px solid #dfdfdf;
}

#header .inner {
    display: flex;
    justify-content: space-between;
    padding: 23px 18px 0;
    align-items: flex-start;
}

#header .left {
    display: flex;
    align-items: center;
    padding-top: 3px;

}

#header .left .logo {
    text-align: center;
    font-size: 18.97px;
    font-weight: 700;
    line-height: 1.3;
    padding-right: 21px;
    position: relative;
}

#header .left .logo::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    width: 1px;
    height: calc(100% - 10px);
    background: #efefef;

}

#header .left .logo span {
    font-size: 12.98px;
    color: #797979;
    display: block;
    font-weight: 400;
    letter-spacing: -0.4px;
}

#header .left p {
    color: #2a3fff;
    font-size: 18.97px;
    font-weight: 700;
    padding-left: 21px;
}

#header .nav ul.hd-nav {
    display: flex;
    gap: 5px;
}

#header .nav ul.hd-nav li>a {
    font-size: 17px;
    display: block;
    width: 100%;
    height: 100%;
    border: 1px solid #dfdfdf;
    border-radius: 10px 10px 0 0;
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border-bottom: 0;
}

#header .nav ul.hd-nav li.active>a {
    color: #fff;
    background: #2a3fff;
}

@media(max-width:1024px) {
    .inner {
        padding: 0 20px;
    }

    #header .inner {
        padding: 14px 20px 0;
    }

    #header .left .logo {
        display: flex;
        align-items: baseline;
        gap: 5px;
    }

    #header .nav ul.hd-nav li>a {
        font-size: 16px;
        width: 96px;
        height: 48px;
    }

    #header .left {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 0;
        padding-bottom: 12px;
        gap: 5px;
    }

    #header .left p {
        font-size: 16.97px;
    }

    #header .left .logo,
    #header .left p {
        padding: 0;
    }

    #header .left .logo::before {
        display: none;
    }

    #header .inner {
        align-items: flex-end;
    }
}


#loadingOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: none;
    z-index: 9999;
}

#loadingOverlay .loader-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 24px 32px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    min-width: 260px;
    font-size: 14px;
    line-height: 1.5;
}

#loadingOverlay .spinner {
    border: 4px solid #eee;
    border-top: 4px solid #4a8df8;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin: 0 auto 12px;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.analysis-btn.is-loading {
    opacity: 0.7;
    cursor: not-allowed;
}