/*
Copyright sanguilmu.com
Design by: Thoha Firdaus
*/

/* =========================================================
   GLOBAL
   ========================================================= */

html {
    scroll-behavior: smooth;
}

body {
    font-family: Tahoma, Geneva, sans-serif;
    color: #333;
    background: #fff;
    line-height: 1.6;
}

a {
    color: #002869;
}

a:hover {
    color: #001A45;
}


/* =========================================================
   SIDEBAR
   ========================================================= */

.kepala {
    color: #fff;
    background: #002869;
    padding: 10px 12px;
    font-family: Arial, sans-serif;
    line-height: 23px;
    border-bottom: 4px solid #001A45;
    font-weight: bold;
    text-align: center;
    border-radius: 6px 6px 0 0;
}

.badan {
    margin-top: -15px;
}

.badan a {
    display: block;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(0, 40, 105, 0.18);
    background: #fff68b;
    color: #002869;
    text-align: center;
    text-decoration: none;
    transition: all 0.25s ease;
}

.badan a:hover {
    background: #fff;
    color: #002869;
    font-weight: bold;
    padding-left: 16px;
}

.pkp_block.block_custom {
    margin-top: -20px;
}


/* =========================================================
   ARTICLE / TABLE OF CONTENT
   ========================================================= */

.obj_article_summary {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.20);
    padding: 20px;
    border-radius: 10px;
    background: #fff68b !important;
    border: 1px solid rgba(0, 40, 105, 0.12);
    transition: all 0.25s ease;
}

.obj_article_summary:hover {
    background: #fff68b !important;
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.24);
}


/* =========================================================
   AUTHORS
   ========================================================= */

.obj_article_summary .meta .authors {
    background: none !important;
    background-image: none !important;
    color: #333 !important;
    font-weight: bold;
    margin-top: 4px;
    padding-bottom: 5px;
    padding-left: 0 !important;
}

/* Font Awesome User Circle */
.obj_article_summary .meta .authors::before {
    content: "\f2bd";
    font-family: FontAwesome;
    color: #002869;
    font-size: 18px;
    margin-right: 8px;
    vertical-align: middle;
}


/* =========================================================
   ABSTRACT
   ========================================================= */

.main_entry .item.abstract {
    text-align: justify;
    line-height: 1.8;
}


/* =========================================================
   HEADER
   ========================================================= */

.pkp_structure_head {
    background:
        linear-gradient(
            rgba(255, 255, 255, 0.90),
            rgba(255, 255, 255, 0.90)
        ),
        url("https://i.ibb.co/6mwh1Q7/background-moderation.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.pkp_site_name_wrapper {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin: 0;
}

.pkp_site_name {
    margin: 0;
}

.pkp_site_name > a {
    padding-top: 0;
    padding-bottom: 0;
}

.pkp_site_name .is_img img {
    display: block;
    max-height: none;
    width: 85%;
    height: auto;
}


/* =========================================================
   PRIMARY NAVIGATION
   ========================================================= */

/*
   WARNA UTAMA MENU
   Navy  : #002869
   Hover : #fff68b
*/

.pkp_navigation_primary_row {
    text-align: center !important;
    background: #002869 !important;
    font-weight: bold !important;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);
}

/* Wrapper menu */

.pkp_navigation_primary_wrapper {
    background: #002869 !important;
}

.pkp_navigation_primary {
    background: #002869 !important;
}

/* UL */

.pkp_navigation_primary_row
.pkp_navigation_primary_wrapper
ul {
    margin: 0 !important;
    padding: 0 !important;
    background: #002869 !important;
}

/* LI */

.pkp_navigation_primary_row
.pkp_navigation_primary_wrapper
ul li {
    margin: 0 !important;
    padding: 0 !important;
    background: #002869 !important;
}

/* SEMUA LINK MENU */

.pkp_navigation_primary_row
.pkp_navigation_primary_wrapper
ul li a,
.pkp_navigation_primary_row
.pkp_navigation_primary_wrapper
ul li a:visited {
    display: block;
    margin: 0 !important;
    padding: 0 15px !important;
    line-height: 40px !important;

    font-family: Tahoma, Geneva, sans-serif !important;
    font-size: 14px;
    color: #fff !important;

    background: #002869 !important;
    font-weight: bold !important;
    text-decoration: none !important;

    transition: all 0.25s ease;
}

/* HOVER */

.pkp_navigation_primary_row
.pkp_navigation_primary_wrapper
ul li a:hover {
    background: #fff68b !important;
    color: #002869 !important;
    border-radius: 0 !important;
}


/* =========================================================
   ACTIVE MENU
   ========================================================= */

/*
   Mencegah menu CURRENT/ABOUT berubah menjadi
   biru muda atau merah karena CSS bawaan OJS.
*/

.pkp_navigation_primary_row
.pkp_navigation_primary_wrapper
ul li.current,
.pkp_navigation_primary_row
.pkp_navigation_primary_wrapper
ul li.active {
    background: #002869 !important;
}

.pkp_navigation_primary_row
.pkp_navigation_primary_wrapper
ul li.current > a,
.pkp_navigation_primary_row
.pkp_navigation_primary_wrapper
ul li.active > a,
.pkp_navigation_primary_row
.pkp_navigation_primary_wrapper
ul li.current > a:visited,
.pkp_navigation_primary_row
.pkp_navigation_primary_wrapper
ul li.active > a:visited {
    background: #002869 !important;
    color: #fff !important;
}

/* Active + hover */

.pkp_navigation_primary_row
.pkp_navigation_primary_wrapper
ul li.current > a:hover,
.pkp_navigation_primary_row
.pkp_navigation_primary_wrapper
ul li.active > a:hover {
    background: #fff68b !important;
    color: #002869 !important;
}


/* =========================================================
   NAVIGATION DROPDOWN
   ========================================================= */

.pkp_navigation_primary_row
.pkp_navigation_primary_wrapper
ul li ul {
    background: #002869 !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.20);
    padding: 0 !important;
}

/* Dropdown LI */

.pkp_navigation_primary_row
.pkp_navigation_primary_wrapper
ul li ul li {
    background: #002869 !important;
    border-bottom: 1px solid rgba(255, 246, 139, 0.30) !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Last item */

.pkp_navigation_primary_row
.pkp_navigation_primary_wrapper
ul li ul li:last-child {
    border-bottom: none !important;
}

/* Dropdown LINK */

.pkp_navigation_primary_row
.pkp_navigation_primary_wrapper
ul li ul li a,
.pkp_navigation_primary_row
.pkp_navigation_primary_wrapper
ul li ul li a:visited {
    display: block !important;
    background: #002869 !important;
    color: #fff !important;
    line-height: 42px !important;
    padding: 0 25px !important;
    font-weight: bold !important;
    border-radius: 0 !important;
}

/* Dropdown HOVER */

.pkp_navigation_primary_row
.pkp_navigation_primary_wrapper
ul li ul li a:hover {
    background: #fff68b !important;
    color: #002869 !important;
    border-radius: 0 !important;
}


/* =========================================================
   DROPDOWN ACTIVE ITEM
   ========================================================= */

.pkp_navigation_primary_row
.pkp_navigation_primary_wrapper
ul li ul li.current,
.pkp_navigation_primary_row
.pkp_navigation_primary_wrapper
ul li ul li.active {
    background: #002869 !important;
}

.pkp_navigation_primary_row
.pkp_navigation_primary_wrapper
ul li ul li.current > a,
.pkp_navigation_primary_row
.pkp_navigation_primary_wrapper
ul li ul li.active > a {
    background: #002869 !important;
    color: #fff !important;
}

.pkp_navigation_primary_row
.pkp_navigation_primary_wrapper
ul li ul li.current > a:hover,
.pkp_navigation_primary_row
.pkp_navigation_primary_wrapper
ul li ul li.active > a:hover {
    background: #fff68b !important;
    color: #002869 !important;
}


/* =========================================================
   SEARCH
   ========================================================= */

.pkp_search.pkp_search_desktop {
    color: #fff !important;
}

.pkp_search.pkp_search_desktop a,
.pkp_search.pkp_search_desktop a:visited {
    color: #fff !important;
    background: transparent !important;
}

.pkp_search.pkp_search_desktop a:hover {
    color: #fff68b !important;
}


/* =========================================================
   MOBILE MENU
   ========================================================= */

.pkp_site_nav_toggle {
    background-color: #002869 !important;
    color: #fff !important;
    border-color: #002869 !important;
}

.pkp_site_nav_toggle:hover {
    background-color: #001A45 !important;
}


/* =========================================================
   FOOTER
   ========================================================= */

.pkp_structure_footer_wrapper {
    background: #fff68b;
    border-bottom: 20px solid #002869;
    border-top: 1px solid rgba(0, 40, 105, 0.15);
}

.pkp_footer_content {
    float: left;
    width: 70%;
    padding-top: 10px;
    padding-bottom: 10px;
}

.pkp_brand_footer {
    float: right;
    width: 20%;
    padding-top: 30px;
    padding-bottom: 10px;
}


/* =========================================================
   FOOTER TEXT
   ========================================================= */

.pkp_structure_footer_wrapper,
.pkp_structure_footer_wrapper a {
    color: #002869;
}

.pkp_structure_footer_wrapper a:hover {
    color: #001A45;
}


/* =========================================================
   BUTTONS
   ========================================================= */

button,
.button,
.cmp_button,
.obj_galley_link {
    background: #002869 !important;
    border-color: #002869 !important;
    color: #fff !important;
}

button:hover,
.button:hover,
.cmp_button:hover,
.obj_galley_link:hover {
    background: #001A45 !important;
    border-color: #001A45 !important;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 768px) {

    .pkp_footer_content {
        float: none;
        width: 100%;
        text-align: center;
    }

    .pkp_brand_footer {
        float: none;
        width: 100%;
        padding-top: 15px;
        text-align: center;
    }

    .obj_article_summary {
        padding: 15px;
        border-radius: 8px;
    }

    .pkp_navigation_primary_row {
        border-radius: 0;
    }

    .pkp_navigation_primary_row
    .pkp_navigation_primary_wrapper
    ul li a {
        line-height: 38px !important;
        padding: 0 10px !important;
    }

    .pkp_navigation_primary_row
    .pkp_navigation_primary_wrapper
    ul li ul li a {
        padding: 0 18px !important;
    }
}


/* =========================================================
   HIDE FOOTER BRAND
   ========================================================= */

.pkp_brand_footer {
    display: none !important;
}
/* =========================================================
   FORCE PRIMARY MENU COLOR
   Mengatasi warna merah bawaan theme OJS
   ========================================================= */

.pkp_navigation_primary,
.pkp_navigation_primary > li,
.pkp_navigation_primary > li > a,
.pkp_navigation_primary > li > a:link,
.pkp_navigation_primary > li > a:visited,
.pkp_navigation_primary > li > a:hover,
.pkp_navigation_primary > li > a:focus,
.pkp_navigation_primary > li > a:active {
    color: #FFFFFF !important;
    background-color: #002869 !important;
    text-shadow: none !important;
}

/* Menu dropdown */

.pkp_navigation_primary > li > ul,
.pkp_navigation_primary > li > ul > li,
.pkp_navigation_primary > li > ul > li > a,
.pkp_navigation_primary > li > ul > li > a:link,
.pkp_navigation_primary > li > ul > li > a:visited {
    color: #FFFFFF !important;
    background-color: #002869 !important;
}

/* Hover menu utama */

.pkp_navigation_primary > li > a:hover,
.pkp_navigation_primary > li > a:focus {
    color: #002869 !important;
    background-color: #fff68b !important;
}

/* Hover dropdown */

.pkp_navigation_primary > li > ul > li > a:hover,
.pkp_navigation_primary > li > ul > li > a:focus {
    color: #002869 !important;
    background-color: #fff68b !important;
}

/* Current / active menu */

.pkp_navigation_primary > li.current > a,
.pkp_navigation_primary > li.active > a,
.pkp_navigation_primary > li.current > a:visited,
.pkp_navigation_primary > li.active > a:visited {
    color: #FFFFFF !important;
    background-color: #002869 !important;
}


/* =========================================================
   FORCE SEARCH COLOR
   ========================================================= */

.pkp_search,
.pkp_search a,
.pkp_search a:link,
.pkp_search a:visited {
    color: #FFFFFF !important;
}

.pkp_search a:hover {
    color: #fff68b !important;
}

/* FINAL OVERRIDE */

#siteNav .pkp_navigation_primary > li > a {
    color: #FFFFFF !important;
    background: #002869 !important;
}

#siteNav .pkp_navigation_primary > li > a:hover {
    color: #002869 !important;
    background: #fff68b !important;
}

#siteNav .pkp_navigation_primary > li > ul > li > a {
    color: #FFFFFF !important;
    background: #002869 !important;
}

#siteNav .pkp_navigation_primary > li > ul > li > a:hover {
    color: #002869 !important;
    background: #fff68b !important;
}

/* =========================================================
   FORCE MENU COLOR - REMOVE RED #7C0201
   ========================================================= */

/* Semua menu utama */
#siteNav .pkp_navigation_primary > li > a,
#siteNav .pkp_navigation_primary > li > a:link,
#siteNav .pkp_navigation_primary > li > a:visited,
#siteNav .pkp_navigation_primary > li > a:active {
    color: #FFFFFF !important;
    background-color: #002869 !important;
}

/* Menu saat hover */
#siteNav .pkp_navigation_primary > li > a:hover,
#siteNav .pkp_navigation_primary > li > a:focus {
    color: #002869 !important;
    background-color: #fff68b !important;
}

/* Menu aktif */
#siteNav .pkp_navigation_primary > li.current > a,
#siteNav .pkp_navigation_primary > li.active > a {
    color: #FFFFFF !important;
    background-color: #002869 !important;
}

/* Dropdown */
#siteNav .pkp_navigation_primary > li > ul {
    background-color: #002869 !important;
}

#siteNav .pkp_navigation_primary > li > ul > li > a,
#siteNav .pkp_navigation_primary > li > ul > li > a:link,
#siteNav .pkp_navigation_primary > li > ul > li > a:visited {
    color: #FFFFFF !important;
    background-color: #002869 !important;
}

/* Dropdown hover */
#siteNav .pkp_navigation_primary > li > ul > li > a:hover {
    color: #002869 !important;
    background-color: #fff68b !important;
}
/* =========================================================
   FINAL OVERRIDE - PRIMARY NAVIGATION
   Menghapus warna merah #7C0201
   ========================================================= */

/* Semua teks menu utama */
html body #siteNav #navigationPrimary li a,
html body #siteNav #navigationPrimary li a:link,
html body #siteNav #navigationPrimary li a:visited,
html body #siteNav #navigationPrimary li a:active {
    color: #FFFFFF !important;
    background-color: #002869 !important;
    text-decoration: none !important;
}

/* Hover */
html body #siteNav #navigationPrimary li a:hover,
html body #siteNav #navigationPrimary li a:focus {
    color: #002869 !important;
    background-color: #fff68b !important;
}

/* Menu utama */
html body .pkp_navigation_primary_row
.pkp_navigation_primary_wrapper
ul.pkp_navigation_primary
> li
> a {
    color: #FFFFFF !important;
    background-color: #002869 !important;
}

/* Hover menu utama */
html body .pkp_navigation_primary_row
.pkp_navigation_primary_wrapper
ul.pkp_navigation_primary
> li
> a:hover {
    color: #002869 !important;
    background-color: #fff68b !important;
}

/* Dropdown */
html body .pkp_navigation_primary_row
.pkp_navigation_primary_wrapper
ul.pkp_navigation_primary
> li
> ul
> li
> a {
    color: #FFFFFF !important;
    background-color: #002869 !important;
}

/* Dropdown hover */
html body .pkp_navigation_primary_row
.pkp_navigation_primary_wrapper
ul.pkp_navigation_primary
> li
> ul
> li
> a:hover {
    color: #002869 !important;
    background-color: #fff68b !important;
}

/* Panah dropdown */
html body #siteNav #navigationPrimary
li[aria-haspopup="true"] > a:after,
html body #siteNav #navigationPrimary
li[aria-haspopup="true"] > a:before {
    color: #FFFFFF !important;
    border-color: #FFFFFF !important;
}

/* =========================================================
   FOOTER - REMOVE OLD RED COLOR
   ========================================================= */

.pkp_structure_footer_wrapper {
    background: #fff68b !important;
    border-bottom: 20px solid #002869 !important;
    border-top: 1px solid rgba(0, 40, 105, 0.15) !important;
}

.pkp_structure_footer_wrapper,
.pkp_structure_footer_wrapper a {
    color: #002869 !important;
}

.pkp_structure_footer_wrapper a:hover {
    color: #001A45 !important;
}

/* =========================================================
   ARTIKEL PILIHAN / MOST READ
   ========================================================= */

.pkp_block.block_most_read {
    margin: 0 0 30px 0 !important;
    padding: 0 !important;
}

.pkp_block.block_most_read .content {
    padding: 0 !important;
}


/* =========================================================
   JUDUL SIDEBAR
   ========================================================= */

.pkp_block.block_most_read .most_read_title {
    margin: 0 0 20px 0 !important;
    padding: 0 0 10px 0 !important;

    color: #002869 !important;
    font-family: Tahoma, Geneva, sans-serif !important;
    font-size: 19px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;

    border-bottom: 3px solid #002869 !important;
}


/* =========================================================
   DAFTAR ARTIKEL
   ========================================================= */

.pkp_block.block_most_read ol.most_read {
    counter-reset: mostread;
    list-style: none !important;

    margin: 0 !important;
    padding: 0 !important;
}


/* =========================================================
   SETIAP ARTIKEL
   ========================================================= */

.pkp_block.block_most_read
.most_read_article {
    counter-increment: mostread;

    position: relative;

    margin: 0 0 16px 0 !important;
    padding: 0 0 16px 34px !important;

    border-bottom: 1px solid rgba(0, 40, 105, 0.12);

    list-style: none !important;
}


/* Nomor ranking */

.pkp_block.block_most_read
.most_read_article::before {
    content: counter(mostread);

    position: absolute;
    left: 0;
    top: 1px;

    width: 23px;
    height: 23px;

    border-radius: 50%;

    background: #002869;
    color: #fff;

    font-family: Tahoma, Geneva, sans-serif;
    font-size: 12px;
    font-weight: bold;

    line-height: 23px;
    text-align: center;
}


/* =========================================================
   JUDUL ARTIKEL
   ========================================================= */

.pkp_block.block_most_read
.most_read_article_title {
    margin: 0 !important;
    padding: 0 !important;
}

.pkp_block.block_most_read
.most_read_article_title a {
    display: block;

    color: #002869 !important;

    font-family: Tahoma, Geneva, sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;

    line-height: 1.55 !important;

    text-decoration: none !important;

    transition: all 0.2s ease;
}


/* Hover judul */

.pkp_block.block_most_read
.most_read_article_title a:hover {
    color: #001A45 !important;
    text-decoration: none !important;
}


/* =========================================================
   JUMLAH PEMBACA
   ========================================================= */

.pkp_block.block_most_read
.most_read_article_journal {
    margin-top: 6px !important;

    color: #777 !important;

    font-family: Tahoma, Geneva, sans-serif !important;
    font-size: 12px !important;

    line-height: 1.4 !important;
}


/* Ikon mata */

.pkp_block.block_most_read
.most_read_article_journal .fa {
    color: #002869 !important;
    font-size: 12px !important;
    margin-right: 4px;
}


/* Angka */

.pkp_block.block_most_read
.most_read_metric {
    color: #555 !important;
    font-weight: 600;
}


/* Tulisan dibaca */

.pkp_block.block_most_read
.most_read_label {
    color: #888 !important;
    margin-left: 2px;
}


/* =========================================================
   ARTIKEL TERAKHIR
   ========================================================= */

.pkp_block.block_most_read
.most_read_article:last-child {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    border-bottom: none !important;
}


/* =========================================================
   HOVER SATU ARTIKEL
   ========================================================= */

.pkp_block.block_most_read
.most_read_article:hover::before {
    background: #fff68b;
    color: #002869;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 768px) {

    .pkp_block.block_most_read
    .most_read_title {
        font-size: 18px !important;
    }

    .pkp_block.block_most_read
    .most_read_article_title a {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }

    .pkp_block.block_most_read
    .most_read_article {
        padding-left: 32px !important;
    }
}

/* =========================================================
   SIDEBAR - MEMBERI RUANG DARI TEPI
   ========================================================= */

.pkp_structure_sidebar {
    padding-left: 20px !important;
    padding-right: 20px !important;
    box-sizing: border-box !important;
}


/* Semua block sidebar */
.pkp_structure_sidebar .pkp_block {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}


/* Judul block sidebar */
.pkp_structure_sidebar .pkp_block .title {
    margin-left: 0 !important;
    margin-right: 0 !important;
}


/* Artikel pilihan */
.pkp_structure_sidebar .pkp_block .obj_article_summary {
    margin-left: 0 !important;
    margin-right: 0 !important;
}


/* =========================================================
   CURRENT ISSUE
   ========================================================= */

.pkp_structure_sidebar .pkp_block:first-child {
    margin-top: 0 !important;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .pkp_structure_sidebar {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

}

/* =========================================================
   REFLEKSI - ADDITIONAL STYLES
   OJS 3.1.2.4
   Warna utama: #002869
   Tambahkan ke bagian paling bawah styleSheet.css
   ========================================================= */

/* ---------- GOOGLE SCHOLAR SIDEBAR ---------- */
.gs-side-button,
.gs-scholar-button,
.gs-profile-button {
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin: 0 0 10px 0;
    padding: 11px 14px;
    background: #002869;
    color: #fff !important;
    border: 1px solid #002869;
    border-radius: 4px;
    text-align: center;
    font-weight: 700;
    text-decoration: none !important;
    line-height: 1.4;
    transition: all .2s ease;
}

.gs-side-button:hover,
.gs-scholar-button:hover,
.gs-profile-button:hover {
    background: #fff;
    color: #002869 !important;
    border-color: #002869;
}

/* Google Scholar custom block */
.gs-scholar,
.gs-google-scholar,
.google-scholar-block {
    margin-bottom: 20px;
}

.gs-scholar-title,
.gs-google-scholar-title,
.google-scholar-title {
    margin: 0 0 12px 0;
    padding: 10px 12px;
    background: #002869;
    color: #fff !important;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    border-radius: 4px 4px 0 0;
}

.gs-scholar-card,
.gs-google-scholar-card,
.google-scholar-card {
    padding: 12px;
    background: #fff;
    border: 1px solid #ddd;
    border-top: 0;
    border-radius: 0 0 4px 4px;
}

/* ---------- ARTICLE TITLE ---------- */
.obj_article_summary h3.title a,
.obj_article_summary .title a {
    color: #002869 !important;
}

.obj_article_summary h3.title a:hover,
.obj_article_summary .title a:hover {
    color: #1b5fa7 !important;
}

/* ---------- AUTHORS ---------- */
.obj_article_summary .authors {
    color: #002869;
    font-weight: 700;
}

.obj_article_summary .authors a {
    color: #002869 !important;
}

/* ---------- AFFILIATION ---------- */
.obj_article_summary .affiliation,
.obj_article_summary .article-affiliation,
.obj_article_summary .affiliations {
    margin-top: 3px;
    color: #555;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 14px;
    font-style: italic;
    line-height: 1.45;
}

/* ---------- PAGE RANGE / PAGE NUMBER ---------- */
.obj_article_summary .pages {
    display: inline-block;
    padding: 4px 8px;
    background: #002869;
    color: #fff !important;
    border-radius: 3px;
    font-size: 12px;
    line-height: 1.2;
}

/* ---------- ANNOUNCEMENTS ---------- */
.cmp_announcements .obj_announcement_summary h4 a,
.cmp_announcements h3 a {
    color: #002869 !important;
}

.cmp_announcements .date {
    color: #777;
}

/* ---------- FOOTER ---------- */
.pkp_structure_footer_wrapper {
    background: #002869 !important;
}

.pkp_structure_footer_wrapper,
.pkp_structure_footer_wrapper a,
.pkp_structure_footer_wrapper p,
.pkp_structure_footer_wrapper li {
    color: #fff !important;
}

.pkp_structure_footer_wrapper a:hover {
    color: #f2c94c !important;
}

/* ---------- SIDEBAR BLOCKS ---------- */
.pkp_block .title {
    color: #002869;
}

.pkp_block .content a {
    color: #002869;
}

.pkp_block .content a:hover {
    color: #1b5fa7;
}

/* ---------- MOBILE ---------- */
@media (max-width: 768px) {
    .gs-side-button,
    .gs-scholar-button,
    .gs-profile-button {
        width: 100%;
    }

    .obj_article_summary .pages {
        margin-top: 5px;
    }
}
/* =========================================================
   GOOGLE SCHOLAR - JURNAL PENDIDIKAN REFLEKSI
   ========================================================= */

#gs-refleksi-widget {
    width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 0 20px 0 !important;
    padding: 18px 15px !important;
    background: #002869 !important;
    color: #ffffff !important;
    border-radius: 6px !important;
}

#gs-refleksi-widget .gs-refleksi-title {
    margin: 0 0 6px 0 !important;
    padding: 0 0 8px 0 !important;
    color: #ffffff !important;
    font-family: Tahoma, Geneva, sans-serif !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    border-bottom: 2px solid #fff68b !important;
}

#gs-refleksi-widget .gs-refleksi-subtitle {
    margin: 0 0 15px 0 !important;
    color: #ffffff !important;
    font-size: 11px !important;
    line-height: 1.4 !important;
}

/* METRICS */

#gs-refleksi-widget .gs-refleksi-metrics {
    display: flex !important;
    width: 100% !important;
    gap: 5px !important;
    margin: 0 0 15px 0 !important;
}

#gs-refleksi-widget .gs-refleksi-item {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    padding: 9px 3px !important;
    text-align: center !important;
    background: rgba(255,255,255,0.10) !important;
    border: 1px solid rgba(255,255,255,0.20) !important;
    border-radius: 3px !important;
    box-sizing: border-box !important;
}

#gs-refleksi-widget .gs-refleksi-item strong {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #ffffff !important;
    font-size: 18px !important;
    line-height: 1.2 !important;
}

#gs-refleksi-widget .gs-refleksi-item span {
    display: block !important;
    margin-top: 4px !important;
    color: #ffffff !important;
    font-size: 9px !important;
    line-height: 1.2 !important;
}

/* GRAFIK */

/* =========================================================
   GOOGLE SCHOLAR - CHART
========================================================= */

#gs-refleksi-widget .gs-refleksi-chart {
    position: relative !important;
    width: 100% !important;
    height: 175px !important;
    margin: 12px 0 14px 0 !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

#gs-refleksi-widget .gs-refleksi-chart svg {
    display: block !important;
    width: 100% !important;
    height: 175px !important;
    overflow: visible !important;
}

#gs-refleksi-widget .gs-chart-loading {
    width: 100% !important;
    height: 175px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: rgba(255,255,255,0.75) !important;
    font-size: 10px !important;
    text-align: center !important;
}
/* TOMBOL */

#gs-refleksi-widget .gs-refleksi-button {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 9px 6px !important;
    margin: 0 !important;
    background: #fff68b !important;
    color: #002869 !important;
    border: 1px solid #fff68b !important;
    border-radius: 3px !important;
    text-align: center !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    text-decoration: none !important;
}

#gs-refleksi-widget .gs-refleksi-button:hover {
    background: #ffffff !important;
    color: #002869 !important;
}