.pkp_brand_footer{
    display: none;
}

/* ASTEEC: keep homepage banner below header (default theme uses negative margin overlay) */
.pkp_page_index .homepage_image {
    margin-top: 0 !important;
}

/* ASTEEC: bring sidebar Quick Menu closer to header bottom edge */
@media (min-width: 992px) {
    .pkp_structure_content.has_sidebar {
        padding-top: 0.5rem;
    }

    .pkp_structure_sidebar > .pkp_block:first-child {
        padding-top: 0.35rem;
        padding-bottom: 1rem;
    }

    .pkp_structure_sidebar > .pkp_block:first-child .content {
        margin-top: 0;
    }
}

/* ASTEEC: justify issue description text on Archives page */
.page_issue_archive .obj_issue_summary .description,
.page_issue_archive .obj_issue_summary .description p {
    text-align: justify;
}

/* ASTEEC: justify Current Issue description on homepage */
.page_index_journal .current_issue .description,
.page_index_journal .current_issue .description p,
.pkp_page_index .obj_issue_toc .description,
.pkp_page_index .obj_issue_toc .description p {
    text-align: justify;
}

/* ASTEEC: justify issue/volume description on issue view page */
.pkp_page_issue.pkp_op_view .obj_issue_toc .description,
.pkp_page_issue.pkp_op_view .obj_issue_toc .description p {
    text-align: justify;
}

/* ASTEEC: justify article abstract text */
.pkp_page_article .obj_article_details .item.abstract,
.pkp_page_article .obj_article_details .item.abstract p {
    text-align: justify;
}

/* ASTEEC: justify article keywords text */
.pkp_page_article .obj_article_details .item.keywords,
.pkp_page_article .obj_article_details .item.keywords .value {
    text-align: justify;
}

/* ASTEEC: justify About the Journal description */
.pkp_page_about .page_about,
.pkp_page_about .page_about p,
.page_about,
.page_about p {
    text-align: justify;
}

/* ASTEEC: justify homepage About the Journal block */
.page_index_journal .homepage_about,
.page_index_journal .homepage_about p,
.pkp_page_index .homepage_about,
.pkp_page_index .homepage_about p {
    text-align: justify;
}


/* ASTEEC: hide author role labels (Author, etc.) on article view — show name + affiliation only */
.pkp_page_article .obj_article_details .authors .userGroup {
    display: none !important;
}

/* ASTEEC: custom PDF galley icon — taller button so icon has breathing room */
.obj_galley_link.pdf {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 2.5em;
    padding: 0.55em 1em !important;
    line-height: 1.2;
    box-sizing: border-box;
}

.obj_galley_link.pdf:before {
    display: none !important;
    content: none !important;
}

.obj_galley_link.pdf .galley_pdf_icon {
    display: inline-block !important;
    width: 20px !important;
    height: 20px !important;
    object-fit: contain;
    flex: 0 0 20px;
    vertical-align: middle;
    transition: filter 0.15s ease;
}

/* Match PDF text: icon turns white on hover/focus */
.obj_galley_link.pdf:hover .galley_pdf_icon,
.obj_galley_link.pdf:focus .galley_pdf_icon {
    filter: brightness(0) invert(1);
}

/* ASTEEC: auth buttons — pill style (login green / register yellow) */
@keyframes asteec-btn-shimmer {
    0% { left: -120%; }
    100% { left: 120%; }
}

.pkp_page_login .page_login .buttons,
.pkp_page_user.pkp_op_register .page_register .buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    float: none;
}

.pkp_page_login .page_login .buttons button,
.pkp_page_login .page_login .buttons a,
.pkp_page_user.pkp_op_register .page_register .buttons button,
.pkp_page_user.pkp_op_register .page_register .buttons a {
    float: none !important;
    margin: 0 !important;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 8.5rem;
    padding: 0.7rem 1.6rem !important;
    border: none !important;
    border-radius: 999px !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none !important;
    color: #fff !important;
    line-height: 1.2 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
    z-index: 0;
}

.pkp_page_login .page_login .buttons button:hover,
.pkp_page_login .page_login .buttons a:hover,
.pkp_page_user.pkp_op_register .page_register .buttons button:hover,
.pkp_page_user.pkp_op_register .page_register .buttons a:hover,
.pkp_page_login .page_login .buttons button:focus,
.pkp_page_login .page_login .buttons a:focus,
.pkp_page_user.pkp_op_register .page_register .buttons button:focus,
.pkp_page_user.pkp_op_register .page_register .buttons a:focus {
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
    outline: none;
}

/* Login = green */
.pkp_page_login .page_login .buttons button.submit,
.pkp_page_user.pkp_op_register .page_register .buttons a.login {
    background: #2ecc71 !important;
}

.pkp_page_login .page_login .buttons button.submit:hover,
.pkp_page_login .page_login .buttons button.submit:focus,
.pkp_page_user.pkp_op_register .page_register .buttons a.login:hover,
.pkp_page_user.pkp_op_register .page_register .buttons a.login:focus {
    background: #27ae60 !important;
    filter: brightness(1.03);
}

/* Register = yellow/gold */
.pkp_page_login .page_login .buttons a.register,
.pkp_page_user.pkp_op_register .page_register .buttons button.submit {
    background: #f1c40f !important;
}

.pkp_page_login .page_login .buttons a.register:hover,
.pkp_page_login .page_login .buttons a.register:focus,
.pkp_page_user.pkp_op_register .page_register .buttons button.submit:hover,
.pkp_page_user.pkp_op_register .page_register .buttons button.submit:focus {
    background: #e0b40a !important;
    filter: brightness(1.03);
}

/* Moving white sheen on hover (login + register) */
.pkp_page_login .page_login .buttons button.submit::after,
.pkp_page_login .page_login .buttons a.register::after,
.pkp_page_user.pkp_op_register .page_register .buttons button.submit::after,
.pkp_page_user.pkp_op_register .page_register .buttons a.login::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 55%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.55) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-20deg);
    pointer-events: none;
    z-index: 1;
}

.pkp_page_login .page_login .buttons button.submit:hover::after,
.pkp_page_login .page_login .buttons a.register:hover::after,
.pkp_page_user.pkp_op_register .page_register .buttons button.submit:hover::after,
.pkp_page_user.pkp_op_register .page_register .buttons a.login:hover::after,
.pkp_page_login .page_login .buttons button.submit:focus::after,
.pkp_page_login .page_login .buttons a.register:focus::after,
.pkp_page_user.pkp_op_register .page_register .buttons button.submit:focus::after,
.pkp_page_user.pkp_op_register .page_register .buttons a.login:focus::after {
    animation: asteec-btn-shimmer 0.75s ease;
}

/* ASTEEC: elegant centered login card */
.pkp_page_login .pkp_structure_sidebar {
    display: none !important;
}

.pkp_page_login .pkp_structure_content.has_sidebar {
    display: block !important;
    padding-top: 2rem;
    padding-bottom: 3rem;
}

.pkp_page_login .pkp_structure_main {
    float: none !important;
    width: 100% !important;
    max-width: 440px;
    margin: 0 auto !important;
    padding: 0 !important;
}

.pkp_page_login .pkp_structure_main:before,
.pkp_page_login .pkp_structure_main:after {
    display: none !important;
}

.pkp_page_login .page_login {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    padding: 2.5rem 2.25rem 2rem;
    text-align: center;
}

.pkp_page_login .page_login .cmp_breadcrumbs {
    display: none;
}

.pkp_page_login .page_login > p {
    display: none;
}

.pkp_page_login .page_login .login_heading,
.pkp_page_login .page_login h1 {
    margin: 0 0 1.75rem;
    text-align: center;
    font-size: 1.75rem;
    font-weight: 600;
    color: #333333;
    letter-spacing: 0.01em;
}

.pkp_page_login .page_login .login,
.pkp_page_login .page_login form.login {
    max-width: none !important;
    margin: 0 auto;
    text-align: center;
}

.pkp_page_login .page_login fieldset.fields {
    margin: 0;
    padding: 0;
    border: 0;
}

.pkp_page_login .page_login .fields > div {
    padding-bottom: 0.95rem !important;
    text-align: center;
}

.pkp_page_login .page_login .fields label {
    display: block;
    width: 100%;
}

.pkp_page_login .page_login .fields .label {
    display: none; /* placeholders used via attr; keep asterisks out of elegant UI */
}

.pkp_page_login .page_login .fields input[type="text"],
.pkp_page_login .page_login .fields input[type="email"],
.pkp_page_login .page_login .fields input[type="password"] {
    width: 100% !important;
    max-width: none !important;
    height: 3rem !important;
    padding: 0 1.35rem !important;
    border: 1px solid #dddddd !important;
    border-radius: 999px !important;
    background: #fff !important;
    box-shadow: none !important;
    text-align: left;
    font-size: 0.95rem !important;
    line-height: 3rem !important;
    color: #333 !important;
}

.pkp_page_login .page_login .fields input:focus {
    border-color: #2ecc71 !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.15) !important;
}

.pkp_page_login .page_login .remember {
    text-align: center;
    margin: 0.15rem 0 0.85rem;
    padding-bottom: 0 !important;
}

.pkp_page_login .page_login .remember label {
    display: inline-flex !important;
    align-items: center;
    gap: 0.4rem;
    justify-content: center;
    font-size: 0.9rem;
    color: #666;
    cursor: pointer;
}

.pkp_page_login .page_login .remember .label {
    display: inline !important;
    font-weight: 400;
    color: #666;
}

.pkp_page_login .page_login .buttons {
    display: flex !important;
    justify-content: center;
    float: none !important;
    margin: 0.35rem 0 0.9rem !important;
}

.pkp_page_login .page_login .buttons button.submit {
    width: 100%;
    min-width: 0 !important;
    float: none !important;
    margin: 0 !important;
}

.pkp_page_login .page_login .buttons a.register {
    display: none !important;
}

.pkp_page_login .page_login .login_help_links {
    display: block;
    text-align: center;
    margin-top: 0.25rem;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #888888;
}

.pkp_page_login .page_login .login_help_links a {
    color: #888888;
    text-decoration: none;
}

.pkp_page_login .page_login .login_help_links a:hover,
.pkp_page_login .page_login .login_help_links a:focus {
    color: #555555;
    text-decoration: underline;
}

.pkp_page_login .page_login .pkp_form_error {
    text-align: center;
    margin-bottom: 1rem;
}

/* ASTEEC: elegant centered register card (aligned with login) */
.pkp_page_user.pkp_op_register .pkp_structure_sidebar {
    display: none !important;
}

.pkp_page_user.pkp_op_register .pkp_structure_content.has_sidebar {
    display: block !important;
    padding-top: 2rem;
    padding-bottom: 3rem;
}

.pkp_page_user.pkp_op_register .pkp_structure_main {
    float: none !important;
    width: 100% !important;
    max-width: 760px;
    margin: 0 auto !important;
    padding: 0 !important;
}

.pkp_page_user.pkp_op_register .pkp_structure_main:before,
.pkp_page_user.pkp_op_register .pkp_structure_main:after {
    display: none !important;
}

.pkp_page_user.pkp_op_register .page_register {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    padding: 2.5rem 2.75rem 2.25rem;
    text-align: center;
}

.pkp_page_user.pkp_op_register .page_register .cmp_breadcrumbs,
.pkp_page_user.pkp_op_register .page_register > p {
    display: none;
}

.pkp_page_user.pkp_op_register .page_register .register_heading,
.pkp_page_user.pkp_op_register .page_register h1 {
    margin: 0 0 1.5rem;
    text-align: center;
    font-size: 1.75rem;
    font-weight: 600;
    color: #333333;
    letter-spacing: 0.01em;
}

.pkp_page_user.pkp_op_register .page_register form.register {
    margin: 0 auto;
    text-align: center;
}

.pkp_page_user.pkp_op_register .page_register fieldset {
    margin: 0 0 1.1rem;
    padding: 0;
    border: 0;
    text-align: center;
}

.pkp_page_user.pkp_op_register .page_register fieldset legend {
    display: block;
    width: 100%;
    margin: 0 0 0.85rem;
    padding: 0;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    color: #555;
}

.pkp_page_user.pkp_op_register .page_register .fields {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 0.85rem;
    margin: 0;
}

.pkp_page_user.pkp_op_register .page_register .fields > div {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    padding-bottom: 0 !important;
    text-align: center;
}


.pkp_page_user.pkp_op_register .page_register .fields label {
    display: block;
    width: 100%;
}

.pkp_page_user.pkp_op_register .page_register .fields .label {
    display: none;
}

.pkp_page_user.pkp_op_register .page_register .fields input[type="text"],
.pkp_page_user.pkp_op_register .page_register .fields input[type="email"],
.pkp_page_user.pkp_op_register .page_register .fields input[type="password"],
.pkp_page_user.pkp_op_register .page_register .fields select {
    width: 100% !important;
    max-width: none !important;
    height: 3rem !important;
    padding: 0 1.25rem !important;
    border: 1px solid #dddddd !important;
    border-radius: 999px !important;
    background: #fff !important;
    box-shadow: none !important;
    text-align: left;
    font-size: 0.95rem !important;
    line-height: 3rem !important;
    color: #333 !important;
}

.pkp_page_user.pkp_op_register .page_register .fields select {
    appearance: none;
    -webkit-appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #999 50%), linear-gradient(135deg, #999 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(1.35rem), calc(100% - 12px) calc(1.35rem);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 2.2rem !important;
}

.pkp_page_user.pkp_op_register .page_register .fields input:focus,
.pkp_page_user.pkp_op_register .page_register .fields select:focus {
    border-color: #f1c40f !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(241, 196, 15, 0.18) !important;
}

/* Consent checkboxes: readable, left-aligned inside centered card */
.pkp_page_user.pkp_op_register .page_register fieldset.consent {
    text-align: left;
    margin-top: 0.35rem;
}

.pkp_page_user.pkp_op_register .page_register fieldset.consent .fields > div,
.pkp_page_user.pkp_op_register .page_register fieldset.consent .optin {
    width: 100%;
    text-align: left;
}

.pkp_page_user.pkp_op_register .page_register fieldset.consent label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.88rem;
    line-height: 1.45;
    color: #555;
    text-align: left;
    cursor: default;
}

.pkp_page_user.pkp_op_register .page_register fieldset.consent .label,
.pkp_page_user.pkp_op_register .page_register fieldset.consent label > span:not(.pkp_screen_reader) {
    display: inline;
}

.pkp_page_user.pkp_op_register .page_register .buttons {
    display: flex !important;
    justify-content: center;
    float: none !important;
    margin: 0.85rem 0 0.75rem !important;
}

.pkp_page_user.pkp_op_register .page_register .buttons button.submit {
    width: 100%;
    min-width: 0 !important;
    float: none !important;
    margin: 0 !important;
}

.pkp_page_user.pkp_op_register .page_register .buttons a.login {
    display: none !important;
}

.pkp_page_user.pkp_op_register .page_register .register_help_links {
    display: block;
    text-align: center;
    margin-top: 0.15rem;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #888888;
}

.pkp_page_user.pkp_op_register .page_register .register_help_links a {
    color: #888888;
    text-decoration: none;
}

.pkp_page_user.pkp_op_register .page_register .register_help_links a:hover,
.pkp_page_user.pkp_op_register .page_register .register_help_links a:focus {
    color: #555555;
    text-decoration: underline;
}

.pkp_page_user.pkp_op_register .page_register .pkp_form_error,
.pkp_page_user.pkp_op_register .page_register #formErrors {
    text-align: center;
}

/* ASTEEC: register single data grid — efficient 2-col fields */
.pkp_page_user.pkp_op_register .page_register fieldset.register_data {
    margin-bottom: 0.85rem;
}

.pkp_page_user.pkp_op_register .page_register fieldset.register_data legend {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #333;
}

.pkp_page_user.pkp_op_register .page_register fieldset.login {
    display: none !important; /* legacy login fieldset removed from template */
}

.pkp_page_user.pkp_op_register .page_register fieldset.register_data .fields {
    gap: 0.7rem 0.85rem;
}

@media (min-width: 640px) {
    .pkp_page_user.pkp_op_register .page_register fieldset.register_data .fields > div {
        width: calc(50% - 0.425rem);
        flex: 0 0 calc(50% - 0.425rem);
    }
}

/* ASTEEC: footer layout — balanced columns, white text on header colour */
.pkp_structure_footer_wrapper.asteec_footer,
.asteec_footer.pkp_structure_footer_wrapper {
    color: #ffffff;
}

.asteec_footer .asteec_footer_inner.pkp_structure_footer,
.asteec_footer .pkp_structure_footer {
    width: min(1160px, calc(100% - 2rem)) !important;
    max-width: 1160px;
    margin: 0 auto !important;
    padding: 2.25rem 0 1.25rem !important;
    text-align: left !important;
    color: #ffffff;
}

.asteec_footer_main {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem 3rem;
    padding-bottom: 1.75rem;
}

.asteec_footer_brand {
    flex: 1 1 260px;
    max-width: 360px;
}

.asteec_footer_brand_link {
    display: inline-block;
    text-decoration: none !important;
    color: inherit !important;
}

.asteec_footer_brand_link:hover,
.asteec_footer_brand_link:focus {
    text-decoration: none !important;
    opacity: 0.92;
}

.asteec_footer_brand_link:hover .asteec_footer_title,
.asteec_footer_brand_link:focus .asteec_footer_title,
.asteec_footer_brand_link:hover .asteec_footer_tagline,
.asteec_footer_brand_link:focus .asteec_footer_tagline {
    color: #ffffff !important;
    text-decoration: none !important;
}

.asteec_footer_brand_text {
    display: flex;
    flex-direction: column;
}

.asteec_footer_brand_row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.asteec_footer_logo {
    display: block;
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex: 0 0 48px;
}

.asteec_footer_title {
    display: block;
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    letter-spacing: 0.02em;
}

.asteec_footer_tagline {
    margin-top: 0.15rem;
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

.asteec_footer_mission {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
}

.asteec_footer_journal.pkp_footer_content,
.asteec_footer .pkp_footer_content {
    flex: 1 1 320px;
    max-width: 640px;
    padding: 0 !important;
    text-align: left !important;
    color: #fff !important;
    font-size: 1.02rem;
    line-height: 1.6;
}

.asteec_footer .pkp_footer_content p,
.asteec_footer .pkp_footer_content strong,
.asteec_footer .pkp_footer_content span {
    color: #fff !important;
}

.asteec_footer .pkp_footer_content a {
    color: #fff !important;
    text-decoration: underline;
}

/* Soften hit-counter visual noise in footer */
.asteec_footer .pkp_footer_content img {
    display: inline-block;
    margin-top: 0.5rem;
    max-height: 28px;
    width: auto;
    vertical-align: middle;
    opacity: 0.9;
}

.asteec_footer_bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.92);
}

.asteec_footer_copy {
    color: rgba(255, 255, 255, 0.92);
}

.asteec_footer_links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.asteec_footer_links a {
    color: rgba(255, 255, 255, 0.92) !important;
    text-decoration: none !important;
}

.asteec_footer_links a:hover,
.asteec_footer_links a:focus {
    color: #fff !important;
    text-decoration: underline !important;
}

.asteec_footer .pkp_brand_footer {
    display: none !important;
}

@media (max-width: 767px) {
    .asteec_footer_main {
        flex-direction: column;
        gap: 1.5rem;
    }
    .asteec_footer_brand,
    .asteec_footer_journal.pkp_footer_content {
        max-width: none;
    }
    .asteec_footer_bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ASTEEC: soft white gradient on header/footer — tone down sharp blue */
.pkp_structure_head {
    background-image: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.34) 0%,
        rgba(255, 255, 255, 0.18) 35%,
        rgba(255, 255, 255, 0.08) 70%,
        rgba(255, 255, 255, 0.03) 100%
    ) !important;
    background-blend-mode: soft-light;
}

.pkp_structure_footer_wrapper,
.pkp_structure_footer_wrapper.asteec_footer {
    background-image: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.30) 0%,
        rgba(255, 255, 255, 0.16) 40%,
        rgba(255, 255, 255, 0.07) 75%,
        rgba(255, 255, 255, 0.02) 100%
    ) !important;
    background-blend-mode: soft-light;
}


/* ASTEEC: site homepage — centered journal list (site-chrome-v4) */

/* Site header: hide brand; keep original journal-page nav font size */
body.is_site_context .pkp_structure_head .pkp_site_name_wrapper {
    display: none !important;
}

body.is_site_context .pkp_structure_head {
    background-color: #091FE0 !important;
    background-image: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.34) 0%,
        rgba(255, 255, 255, 0.18) 35%,
        rgba(255, 255, 255, 0.08) 70%,
        rgba(255, 255, 255, 0.03) 100%
    ) !important;
    background-blend-mode: soft-light;
}

body.is_site_context .pkp_structure_head .pkp_head_wrapper {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    max-width: 1160px !important;
    min-height: 3.75rem !important;
    margin: 0 auto !important;
    padding: 0.75rem 1.25rem !important;
    box-sizing: border-box !important;
}

body.is_site_context .pkp_structure_head .pkp_site_nav_menu {
    display: block !important;
    width: 100% !important;
    position: static !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
}

body.is_site_context .pkp_structure_head .pkp_navigation_primary_row,
body.is_site_context .pkp_structure_head .pkp_navigation_primary_wrapper,
body.is_site_context .pkp_structure_head .pkp_site_nav_toggle {
    display: none !important;
}

body.is_site_context .pkp_structure_head .pkp_head_wrapper {
    min-height: 0 !important;
    padding-top: 0.65rem !important;
    padding-bottom: 0.65rem !important;
}

/* Center main column on site pages */
.pkp_structure_content.is_site_home_width,
body.is_site_context .pkp_structure_content {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    padding-top: 2rem !important;
    padding-bottom: 2.5rem !important;
}

body.is_site_context .pkp_structure_main,
.pkp_structure_content.is_site_home_width .pkp_structure_main {
    float: none !important;
    width: min(920px, calc(100% - 2rem)) !important;
    max-width: 920px !important;
    margin: 0 auto !important;
    padding: 0 0 2rem !important;
}

body.is_site_context .pkp_structure_main:before,
body.is_site_context .pkp_structure_main:after,
.pkp_structure_content.is_site_home_width .pkp_structure_main:before,
.pkp_structure_content.is_site_home_width .pkp_structure_main:after {
    display: none !important;
    content: none !important;
}

body.is_site_context .pkp_structure_sidebar {
    display: none !important;
}

/* About blurb */
.asteec_site_home .asteec_site_about {
    margin: 0 0 1.75rem;
    font-size: 1.05rem;
    line-height: 1.65;
    color: #222;
}

.asteec_site_home .asteec_site_about p {
    margin: 0;
}

/* Journal list — centered cards */
.asteec_journal_list_head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem 1rem;
    margin-bottom: 0.85rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}

/* Homepage journal search — pill with blue icon button */
.asteec_journal_search {
    display: flex;
    align-items: stretch;
    width: 100%;
    margin: 0 0 1.35rem;
    padding: 0;
    border: 1.5px solid #9aa4e8;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(20, 40, 120, 0.12);
    overflow: hidden;
    box-sizing: border-box;
}

.asteec_journal_search_input {
    flex: 1 1 auto;
    min-width: 0;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 0.85rem 1.25rem !important;
    font-size: 1.05rem !important;
    line-height: 1.3 !important;
    color: #3a3f7a !important;
    border-radius: 0 !important;
}

.asteec_journal_search_input::placeholder {
    color: #6b73b3;
    opacity: 1;
}

.asteec_journal_search_btn {
    flex: 0 0 3.4rem;
    width: 3.4rem;
    border: none;
    margin: 0;
    padding: 0;
    background: #091FE0;
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.asteec_journal_search_btn .fa {
    font-size: 1.15rem;
    line-height: 1;
    color: #ffffff;
}

.asteec_journal_search_btn:hover,
.asteec_journal_search_btn:focus {
    background: #0718c2;
    outline: none;
}

.asteec_journal_search_empty {
    margin: 0.5rem 0 1rem;
    color: #666;
    font-size: 1.02rem;
}

.asteec_journal_list_title {
    margin: 0 !important;
    font-size: 1.65rem !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    color: #111;
}

.asteec_journal_list_meta {
    margin: 0;
    font-size: 1.02rem;
    color: #444;
}

.asteec_journal_cards {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.asteec_journal_card {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem 2rem;
    margin: 0 !important;
    padding: 1.6rem 0 1.7rem !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.16);
    background: transparent !important;
}

.asteec_journal_card_body {
    flex: 1 1 auto;
    min-width: 0;
}

.asteec_journal_card_title {
    margin: 0 0 0.65rem !important;
    font-size: 1.55rem !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
}

.asteec_journal_card_title a {
    color: #0b1fd0 !important;
    text-decoration: none !important;
}

.asteec_journal_card_title a:hover {
    color: #0918b0 !important;
    text-decoration: none !important;
}

.asteec_journal_card_desc {
    margin: 0 0 1rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #333;
}

/* Pill outline buttons — View Journal / Current Issue */
.asteec_journal_card_links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.asteec_journal_card_links li {
    margin: 0 !important;
    padding: 0 !important;
}

.asteec_journal_card_links a {
    display: inline-block;
    box-sizing: border-box;
    padding: 0.55rem 1.55rem;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.25;
    color: #2ec6f2 !important;
    background: transparent !important;
    border: 2.5px solid #2ec6f2 !important;
    border-radius: 999px !important;
    text-decoration: none !important;
    white-space: nowrap;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.asteec_journal_card_links a:hover,
.asteec_journal_card_links a:focus {
    color: #ffffff !important;
    background: #2ec6f2 !important;
    text-decoration: none !important;
}

.asteec_journal_card_cover {
    flex: 0 0 118px;
    width: 118px;
}

.asteec_journal_card_cover img {
    display: block;
    width: 118px;
    height: auto;
    max-height: 160px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

/* Footer layout — original journal font sizes */
.asteec_footer .asteec_footer_main--balanced {
    display: grid;
    grid-template-columns: minmax(260px, 1.15fr) minmax(240px, 0.9fr);
    gap: 2rem 1.25rem;
    align-items: start;
    padding-bottom: 1.75rem;
}

body.is_site_context .asteec_footer .asteec_footer_contact_col {
    justify-self: start;
    margin-left: -0.5rem;
    max-width: 28rem;
}

.asteec_footer .asteec_footer_heading {
    margin: 0 0 0.75rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
}

.asteec_footer .asteec_footer_info_list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.asteec_footer .asteec_footer_info_list li {
    margin: 0 0 0.55rem;
    font-size: 1.02rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
}

.asteec_footer .asteec_footer_info_list a {
    color: #fff !important;
    text-decoration: none !important;
}

.asteec_footer .asteec_footer_info_list a:hover {
    text-decoration: underline !important;
}

.asteec_footer .asteec_footer_label {
    display: inline-block;
    min-width: 4.6rem;
    margin-right: 0.35rem;
    font-weight: 600;
}

@media (max-width: 767px) {
    body.is_site_context .pkp_structure_head .pkp_head_wrapper {
        justify-content: center;
        min-height: 3rem;
        padding: 0.5rem 1rem !important;
    }
    .asteec_journal_card {
        flex-direction: column-reverse;
    }
    .asteec_journal_card_cover,
    .asteec_journal_card_cover img {
        width: 100px;
    }
    .asteec_journal_card_title {
        font-size: 1.35rem !important;
    }
    .asteec_footer .asteec_footer_main--balanced {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}


/* ASTEEC: realtime register username/email status */
.page_register .register_field_status {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.9rem;
    line-height: 1.35;
    min-height: 1.2em;
}
.page_register .register_field_status.is_checking {
    color: #666;
}
.page_register .register_field_status.is_ok {
    color: #1b7a3d;
}
.page_register .register_field_status.is_error {
    color: #c62828;
    font-weight: 600;
}
.page_register input.register_field_invalid {
    border-color: #c62828 !important;
    box-shadow: 0 0 0 1px rgba(198, 40, 40, 0.25);
}
.page_register input.register_field_ok {
    border-color: #1b7a3d !important;
}


/* ASTEEC: hide Register in journal + site headers (single-account model) site-header-bar-v6 */
.pkp_structure_head #navigationUser > li > a[href*="/user/register"],
body.is_site_context .pkp_structure_head #navigationUser > li > a[href*="/user/register"],
.navbar #navigationUser > li > a[href*="/user/register"] {
    display: none !important;
}
.pkp_structure_head #navigationUser > li:has(> a[href*="/user/register"]),
body.is_site_context .pkp_structure_head #navigationUser > li:has(> a[href*="/user/register"]) {
    display: none !important;
}

/* ASTEEC: header Login pills + Home (journal + site homepage) */
/* Journal header: Login right-aligned */
body:not(.is_site_context) .pkp_structure_head .pkp_head_wrapper {
    position: relative;
}

body:not(.is_site_context) .pkp_structure_head .pkp_navigation_user_wrapper {
    position: absolute !important;
    top: 0.75rem !important;
    right: 0 !important;
    left: auto !important;
    transform: none !important;
    margin: 0 !important;
    padding: 0 1.25rem 0 0 !important;
    text-align: right !important;
    z-index: 1000;
    width: auto !important;
    max-width: none !important;
    border: none !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
}

body:not(.is_site_context) .pkp_structure_head #navigationUser {
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    text-align: right !important;
}

body:not(.is_site_context) .pkp_structure_head #navigationUser > li {
    margin: 0 !important;
    float: none !important;
}

body:not(.is_site_context) .pkp_structure_head #navigationUser > li > a[href*="/login"]:not([href*="signOut"]):not([href*="lostPassword"]) {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    height: 2.35rem !important;
    margin: 0 !important;
    padding: 0 1.15rem !important;
    color: #ffffff !important;
    background: transparent !important;
    border: 2px solid #ffffff !important;
    border-radius: 999px !important;
    line-height: 1 !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    box-shadow: none !important;
    transition: background-color 0.15s ease, color 0.15s ease;
}

body:not(.is_site_context) .pkp_structure_head #navigationUser > li > a[href*="/login"]:not([href*="signOut"]):not([href*="lostPassword"]):hover,
body:not(.is_site_context) .pkp_structure_head #navigationUser > li > a[href*="/login"]:not([href*="signOut"]):not([href*="lostPassword"]):focus {
    color: #091FE0 !important;
    background: #ffffff !important;
    border-color: #ffffff !important;
    text-decoration: none !important;
}

/* Site homepage: Home icon left, Login pill right — no stacking */
body.is_site_context .pkp_structure_head .pkp_navigation_user_wrapper {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    max-width: none !important;
    height: 2.35rem !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    box-sizing: border-box !important;
    z-index: 1000;
}

body.is_site_context .pkp_structure_head .asteec_header_home {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 2.1rem !important;
    height: 2.1rem !important;
    margin: 0 auto 0 0 !important;
    padding: 0 !important;
    color: #ffffff !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    text-decoration: none !important;
    line-height: 1 !important;
}

body.is_site_context .pkp_structure_head .asteec_header_home .fa {
    font-size: 1.35rem !important;
    line-height: 1 !important;
    color: #ffffff !important;
}

body.is_site_context .pkp_structure_head .asteec_header_home:hover,
body.is_site_context .pkp_structure_head .asteec_header_home:focus {
    color: #ffffff !important;
    background: transparent !important;
    opacity: 0.85;
    text-decoration: none !important;
}

body.is_site_context .pkp_structure_head #navigationUser {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    height: 2.35rem !important;
    margin: 0 0 0 auto !important;
    padding: 0 !important;
    list-style: none !important;
    float: none !important;
}

body.is_site_context .pkp_structure_head #navigationUser > li {
    display: flex !important;
    align-items: center !important;
    height: 2.35rem !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
}

body.is_site_context .pkp_structure_head #navigationUser > li > a[href*="/login"]:not([href*="signOut"]):not([href*="lostPassword"]) {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    height: 2.35rem !important;
    min-height: 2.35rem !important;
    margin: 0 !important;
    padding: 0 1.15rem !important;
    color: #ffffff !important;
    background: transparent !important;
    border: 2px solid #ffffff !important;
    border-radius: 999px !important;
    line-height: 1 !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    box-shadow: none !important;
    transition: background-color 0.15s ease, color 0.15s ease;
}

body.is_site_context .pkp_structure_head #navigationUser > li > a[href*="/login"]:not([href*="signOut"]):not([href*="lostPassword"]):hover,
body.is_site_context .pkp_structure_head #navigationUser > li > a[href*="/login"]:not([href*="signOut"]):not([href*="lostPassword"]):focus {
    color: #091FE0 !important;
    background: #ffffff !important;
    border-color: #ffffff !important;
    text-decoration: none !important;
}

@media (max-width: 767px) {
    body:not(.is_site_context) .pkp_structure_head .pkp_navigation_user_wrapper {
        top: 0.55rem !important;
        right: 0 !important;
        padding-right: 0.75rem !important;
    }
    body.is_site_context .pkp_structure_head .pkp_head_wrapper {
        padding: 0.65rem 0.75rem !important;
        min-height: 3.25rem !important;
    }
    body.is_site_context .pkp_structure_head #navigationUser > li > a[href*="/login"]:not([href*="signOut"]):not([href*="lostPassword"]) {
        padding: 0 0.85rem !important;
    }
}


/* ASTEEC AJAX page-hit odometer (footer) — under email */
.asteec_hit_wrap {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: auto;
	margin: 0.5rem 0 0.25rem;
}
.asteec_footer_journal .asteec_hit_wrap,
.asteec_footer_hit_li .asteec_hit_wrap {
	margin-top: 0.45rem;
}
.asteec_footer_hit_li {
	list-style: none;
	margin: 0.35rem 0 0;
	padding: 0;
}
/* Hide leftover external free-hit-counter images in pageFooter */
.asteec_footer .pkp_footer_content img[src*="optistats"],
.asteec_footer .pkp_footer_content img[src*="freecounter"],
.asteec_footer .pkp_footer_content a[title="IJICOM"] {
	display: none !important;
}
.asteec-hit-counter {
	display: inline-flex;
	flex-direction: row;
	gap: 3px;
	line-height: 1;
	min-height: 1.85rem;
}
.asteec-hit-digit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.7rem;
	height: 1.85rem;
	box-sizing: border-box;
	border: 1px solid #ffffff;
	color: #ffffff;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: 700;
	font-size: 1.15rem;
	letter-spacing: 0;
	background-color: #1a4fb8;
	background-image:
		radial-gradient(circle at 20% 30%, rgba(255,255,255,0.22) 0, transparent 42%),
		radial-gradient(circle at 80% 70%, rgba(0,0,40,0.35) 0, transparent 45%),
		radial-gradient(circle at 50% 50%, rgba(90,160,255,0.35) 0, transparent 55%),
		repeating-linear-gradient(
			135deg,
			rgba(255,255,255,0.06) 0 1px,
			transparent 1px 3px
		),
		linear-gradient(180deg, #3d7fe0 0%, #1e56c4 45%, #0f3d9a 100%);
	text-shadow: 0 1px 1px rgba(0,0,40,0.45);
	user-select: none;
}
.asteec-hit-digit.asteec-hit-placeholder {
	opacity: 0.45;
}
.asteec-hit-counter.is-ready .asteec-hit-digit {
	opacity: 1;
}
@media (max-width: 767px) {
	.asteec-hit-digit {
		width: 1.45rem;
		height: 1.6rem;
		font-size: 1rem;
	}
}

/* ASTEEC: site homepage hit counter under mission text */
.asteec_footer_brand .asteec_hit_wrap--mission {
	display: flex;
	justify-content: flex-start;
	margin: 0.85rem 0 0;
}



/* ASTEEC: site homepage — remove nested dark-blue header container */
body.is_site_context .pkp_structure_head .pkp_site_nav_menu,
body.is_site_context .pkp_structure_head .pkp_head_wrapper,
body.is_site_context .pkp_structure_head .pkp_navigation_user_wrapper,
body.is_site_context .pkp_structure_head #navigationUserWrapper {
    background: transparent !important;
    background-image: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

body.is_site_context .pkp_structure_head .pkp_site_nav_menu {
    position: static !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

body.is_site_context .pkp_structure_head .pkp_head_wrapper {
    max-width: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0.65rem 1.5rem !important;
    min-height: 0 !important;
    box-sizing: border-box !important;
}

body.is_site_context .pkp_structure_head .pkp_navigation_user_wrapper {
    max-width: 1160px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* ASTEEC: logged-in account icon + dropdown panel (journals + proceedings) */

/* Allow dropdown to escape header / nav wrappers */
body .pkp_structure_head,
body .pkp_structure_head .pkp_head_wrapper,
body .pkp_structure_head .pkp_navigation_user_wrapper,
body .pkp_structure_head #navigationUserWrapper,
body .pkp_structure_head #navigationUser,
body.is_site_context .pkp_structure_head .pkp_head_wrapper,
body.is_site_context .pkp_structure_head .pkp_navigation_user_wrapper,
body.is_site_context .pkp_structure_head #navigationUser,
body:not(.is_site_context) .pkp_structure_head .pkp_navigation_user_wrapper,
body:not(.is_site_context) .pkp_structure_head #navigationUser {
	overflow: visible !important;
}

/* Account item anchors the dropdown at the top-right icon */
#navigationUser.pkp_navigation_user > li.asteec_account_item {
	position: relative !important;
	display: inline-flex !important;
	align-items: center !important;
	height: auto !important;
	min-height: 2.35rem;
	overflow: visible !important;
	float: none !important;
}

/* Hide theme caret/arrow beside account icon */
#navigationUser.pkp_navigation_user > li.asteec_account_item > a.asteec_account_trigger[aria-haspopup]:after,
#navigationUser.pkp_navigation_user > li.asteec_account_item > a.asteec_account_trigger:after,
.pkp_nav_list > li.asteec_account_item > a[aria-haspopup]:after {
	display: none !important;
	content: none !important;
	width: 0 !important;
	height: 0 !important;
	margin: 0 !important;
	border: 0 !important;
}

#navigationUser.pkp_navigation_user > li.asteec_account_item > a.asteec_account_trigger {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	position: relative;
	min-width: 2.4rem;
	min-height: 2.4rem;
	padding: 0.2rem 0.35rem !important;
	line-height: 1 !important;
	color: #ffffff !important;
	background: transparent !important;
	border: none !important;
	border-radius: 999px !important;
	text-decoration: none !important;
	box-sizing: border-box;
}

#navigationUser.pkp_navigation_user > li.asteec_account_item > a.asteec_account_trigger:hover,
#navigationUser.pkp_navigation_user > li.asteec_account_item > a.asteec_account_trigger:focus {
	color: #ffffff !important;
	background: rgba(255, 255, 255, 0.14) !important;
	outline: none !important;
}

#navigationUser .asteec_account_icon {
	font-size: 1.55rem !important;
	line-height: 1 !important;
	color: inherit !important;
}

#navigationUser .asteec_account_task_count {
	position: absolute;
	top: -0.15rem;
	right: -0.2rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 1.15rem;
	height: 1.15rem;
	padding: 0 0.28rem;
	border-radius: 999px;
	background: #ff3b4a;
	color: #ffffff !important;
	font-size: 0.68rem;
	font-weight: 700;
	line-height: 1;
	box-shadow: 0 0 0 2px rgba(9, 31, 224, 0.35);
	z-index: 1;
}

#navigationUser.pkp_navigation_user > li.asteec_account_item > a.asteec_account_trigger .task_count {
	display: none !important;
}

/*
 * Dropdown panel — right-aligned under the account icon (like reference).
 * Overrides theme left:-9999px / left:0 / translate3d so the list is fully visible.
 */
#navigationUser.pkp_navigation_user > li.asteec_account_item > ul.asteec_account_dropdown,
#navigationUser.pkp_navigation_user > li.asteec_account_item > ul.dropdown-menu,
#navigationUser.pkp_navigation_user > li.asteec_account_item > ul {
	display: none;
	position: absolute !important;
	top: calc(100% + 0.45rem) !important;
	right: 0 !important;
	left: auto !important;
	transform: none !important;
	will-change: auto !important;
	list-style: none !important;
	margin: 0 !important;
	padding: 0.7rem 0.55rem !important;
	min-width: 15rem;
	width: max-content;
	max-width: min(18rem, calc(100vw - 1rem));
	border: none !important;
	border-radius: 0.85rem !important;
	background-color: #091FE0 !important;
	background-image: none !important;
	box-shadow: 0 14px 32px rgba(5, 15, 90, 0.38) !important;
	text-align: left !important;
	z-index: 3000 !important;
	overflow: visible !important;
}

/* Click-only: never open on hover / focus-within / bootstrap .show */
#navigationUser.pkp_navigation_user > li.asteec_account_item:hover:not(.is-open) > ul,
#navigationUser.pkp_navigation_user > li.asteec_account_item:focus-within:not(.is-open) > ul,
#navigationUser.pkp_navigation_user > li.asteec_account_item.show:not(.is-open) > ul,
#navigationUser.pkp_navigation_user > li.asteec_account_item:not(.is-open) > ul.show {
	display: none !important;
}

/* Open only when JS adds .is-open on the account li */
#navigationUser.pkp_navigation_user > li.asteec_account_item.is-open > ul,
#navigationUser.pkp_navigation_user > li.asteec_account_item.is-open > ul.asteec_account_dropdown,
#navigationUser.pkp_navigation_user > li.asteec_account_item.is-open > ul.dropdown-menu,
#navigationUser li.asteec_account_item.is-open > ul {
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
	position: absolute !important;
	top: calc(100% + 0.25rem) !important;
	right: 0 !important;
	left: auto !important;
	transform: none !important;
	will-change: auto !important;
	z-index: 4000 !important;
	pointer-events: auto !important;
	clip: auto !important;
	max-height: none !important;
	overflow: visible !important;
}

/* Explicitly defeat theme left:-9999px while open */
#navigationUser.pkp_nav_list > li.asteec_account_item.is-open > ul,
.pkp_nav_list > li.asteec_account_item.is-open > ul {
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
	left: auto !important;
	right: 0 !important;
	transform: none !important;
	z-index: 4000 !important;
}

#navigationUser.pkp_navigation_user > li.asteec_account_item > ul > li {
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
	display: block !important;
	width: 100% !important;
	height: auto !important;
	min-height: 0 !important;
}

#navigationUser.pkp_navigation_user > li.asteec_account_item > ul a.asteec_account_dropdown_link,
#navigationUser.pkp_navigation_user > li.asteec_account_item > ul a {
	display: flex !important;
	align-items: center !important;
	gap: 0.85rem;
	width: 100%;
	box-sizing: border-box;
	margin: 0.1rem 0 !important;
	padding: 0.78rem 1rem !important;
	border-radius: 0.55rem !important;
	border-left: none !important;
	color: #ffffff !important;
	background: transparent !important;
	border: none !important;
	font-size: 1rem !important;
	font-weight: 500 !important;
	line-height: 1.3 !important;
	text-decoration: none !important;
	white-space: nowrap;
}

#navigationUser.pkp_navigation_user > li.asteec_account_item > ul a:hover,
#navigationUser.pkp_navigation_user > li.asteec_account_item > ul a:focus,
#navigationUser.pkp_navigation_user > li.asteec_account_item > ul a:active {
	color: #ffffff !important;
	background: #0616b0 !important;
	outline: none !important;
	text-decoration: none !important;
}

#navigationUser .asteec_user_menu_icon {
	flex: 0 0 1.25rem;
	width: 1.25rem;
	text-align: center;
	font-size: 1.1rem !important;
	line-height: 1 !important;
	color: #ffffff !important;
	opacity: 0.97;
}

#navigationUser .asteec_user_menu_label {
	flex: 1 1 auto;
	min-width: 0;
	color: inherit !important;
}

#navigationUser.pkp_navigation_user > li.asteec_account_item > ul a .task_count {
	display: none !important;
}

@media (max-width: 991px) {
	body .pkp_structure_head .pkp_navigation_user_wrapper {
		display: flex !important;
		align-items: center;
		justify-content: flex-end;
		gap: 0.5rem;
		padding-right: 0.75rem !important;
		z-index: 1001;
		overflow: visible !important;
	}

	#navigationUser.pkp_navigation_user {
		display: flex !important;
		align-items: center !important;
		margin: 0 !important;
		padding: 0 !important;
		border: none !important;
		overflow: visible !important;
	}

	#navigationUser.pkp_navigation_user > li.asteec_account_item > a.asteec_account_trigger {
		min-width: 2.75rem;
		min-height: 2.75rem;
		padding: 0.35rem !important;
	}

	#navigationUser .asteec_account_icon {
		font-size: 1.75rem !important;
	}

	#navigationUser.pkp_navigation_user > li.asteec_account_item > ul,
	#navigationUser.pkp_navigation_user > li.asteec_account_item.is-open > ul {
		right: 0 !important;
		left: auto !important;
		top: calc(100% + 0.4rem) !important;
		transform: none !important;
		min-width: 15rem;
		max-width: calc(100vw - 1.25rem);
		padding: 0.7rem 0.55rem !important;
	}

	#navigationUser.pkp_navigation_user > li.asteec_account_item > ul a {
		padding: 0.85rem 1rem !important;
		font-size: 1.05rem !important;
	}
}

@media (max-width: 767px) {
	body.is_site_context .pkp_structure_head .pkp_navigation_user_wrapper,
	body:not(.is_site_context) .pkp_structure_head .pkp_navigation_user_wrapper {
		top: 0.45rem !important;
		right: 0.25rem !important;
		left: auto !important;
		transform: none !important;
		width: auto !important;
		max-width: none !important;
		padding-right: 0.5rem !important;
		overflow: visible !important;
	}

	#navigationUser.pkp_navigation_user > li.asteec_account_item > a.asteec_account_trigger {
		min-width: 2.85rem;
		min-height: 2.85rem;
	}
}


/* asteec-account-click-only-guard: defeat theme > li:hover ul for account menu */
.pkp_navigation_user > li.asteec_account_item:not(.is-open) > ul,
.pkp_navigation_user > li.asteec_account_item:hover:not(.is-open) > ul,
.pkp_navigation_user > li.asteec_account_item:focus-within:not(.is-open) > ul,
body .pkp_structure_head .pkp_navigation_user > li.asteec_account_item:hover:not(.is-open) > ul,
.pkp_nav_list > li.asteec_account_item:not(.is-open) > ul,
.pkp_nav_list > li.asteec_account_item:hover:not(.is-open) > ul {
	display: none !important;
	visibility: hidden !important;
	opacity: 0 !important;
	left: auto !important;
	right: 0 !important;
	transform: none !important;
	pointer-events: none !important;
}
