/* ==========================================================
   STEP 1
   HEADER SEMIORA STYLE
   Untuk Theme Sanguline
========================================================== */

/* Background Website */

body{
    background:#f3f3f3;
    font-family:"Open Sans", Arial, sans-serif;
    color:#333;
}

/* ==========================================================
   HEADER
========================================================== */

.pkp_structure_head{
    background:#8b1e2d;
    background-image:
        linear-gradient(
            rgba(139,30,45,.85),
            rgba(139,30,45,.85)
        ),
        url("https://images.unsplash.com/photo-1518998053901-5348d3961a04?auto=format&fit=crop&w=1600&q=80");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    border-bottom:5px solid #cfa94d;
}

/* ==========================================================
   HEADER WRAPPER FULL WIDTH
========================================================== */

.pkp_head_wrapper{
    width:100% !important;
    max-width:none !important;
    margin:0 !important;
    padding:0 !important;
}


/* ==========================================================
   SITE NAME / BANNER AREA
========================================================== */

.pkp_site_name_wrapper{
    width:100% !important;
    max-width:none !important;
    padding:0 !important;
    margin:0 !important;
}


/* Hilangkan batas container OJS */

.pkp_site_name{
    width:100% !important;
    margin:0 !important;
    padding:0 !important;
}


/* ==========================================================
   FULL CENTER BANNER
========================================================== */

.journal_banner{
    width:100% !important;
    height:250px; /* tinggi banner, bisa diubah */
    overflow:hidden;
    display:flex;
    justify-content:center;
    align-items:center;
}


.journal_banner a{
    display:block;
    width:100%;
    height:100%;
}


.journal_banner img{

    width:100% !important;
    height:100% !important;

    object-fit:cover;
    object-position:center center;

    display:block;

}

/* ==========================================================
   SEARCH
========================================================== */

.pkp_search_input{
    border:none;
    border-radius:25px;
}

.pkp_search_button{
    background:#cfa94d;
    color:#fff;
    border:none;
}

/* ==========================================================
   USER MENU
========================================================== */

.pkp_navigation_user a{
    color:#fff !important;
    transition:.3s;
}

.pkp_navigation_user a:hover{
    color:#ffd369 !important;
}

/* ==========================================================
   STEP 2
   NAVIGATION SEMIORA STYLE
==========================================================*/

/* ==========================================================
   NAVIGATION BACKGROUND
========================================================== */

.pkp_site_nav_menu,
.pkp_navigation_primary_wrapper,
.pkp_navigation_primary{
    background:#fff;
    border-bottom:4px solid #c7a349;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
}

/* ==========================================================
   MENU CONTAINER
========================================================== */

.pkp_navigation_primary > li{
    position:relative;
    margin:0 6px;
}

/* ==========================================================
   MENU LINK
========================================================== */

.pkp_navigation_primary > li > a{
    display:block;
    padding:18px 14px;

    color:#444;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.5px;

    transition:color .3s ease;
}

/* ==========================================================
   HOVER & ACTIVE
========================================================== */

.pkp_navigation_primary > li > a:hover,
.pkp_navigation_primary > li.current > a,
.pkp_navigation_primary > li.current_page_item > a{
    color:#8b1e2d;
}

/* ==========================================================
   UNDERLINE ANIMATION
========================================================== */

.pkp_navigation_primary > li::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:0;

    width:0;
    height:3px;

    background:#8b1e2d;

    transform:translateX(-50%);
    transition:width .3s ease;
}

.pkp_navigation_primary > li:hover::after,
.pkp_navigation_primary > li.current::after,
.pkp_navigation_primary > li.current_page_item::after{
    width:80%;
}

/* ==========================================================
   DROPDOWN
========================================================== */

.pkp_navigation_primary ul{
    background:#fff;
    border:none;
    border-radius:8px;
    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.12);
}

/* ==========================================================
   DROPDOWN LINK
========================================================== */

.pkp_navigation_primary ul li a{
    display:block;

    padding:12px 18px;

    color:#444;

    transition:all .25s ease;
}

.pkp_navigation_primary ul li a:hover{
    background:#8b1e2d;
    color:#fff;
}

/* ==========================================================
   STICKY MENU
========================================================== */

.pkp_navigation_primary_wrapper{
    position:sticky;
    top:0;
    z-index:999;
}

/* ==========================================================
   MOBILE
========================================================== */

@media (max-width:768px){

    .pkp_navigation_primary_wrapper{
        position:relative;
    }

    .pkp_navigation_primary > li{
        margin:0;
    }

    .pkp_navigation_primary > li > a{
        padding:14px 18px;
    }

}

/* ==========================================================
   STEP 3
   HOMEPAGE / CONTENT AREA
   SEMIORA STYLE
==========================================================*/

/* ==========================================================
   WEBSITE BACKGROUND
========================================================== */

body{
    background:#efefef;
}

/* ==========================================================
   CONTENT WRAPPER
========================================================== */

.pkp_structure_content,
.page_index_journal .homepage_content,
.obj_issue_toc{
    max-width:1280px;
    margin:30px auto;
}

/* ==========================================================
   CONTENT CARD
========================================================== */

.page,
.page_index_journal,
.obj_issue_toc{
    background:#fff;
    border-radius:12px;
    box-shadow:0 5px 18px rgba(0,0,0,.08);
    padding:30px;
}

/* ==========================================================
   MAIN CONTENT
========================================================== */

.pkp_structure_main{
    padding-right:30px;
}

.pkp_structure_sidebar{
    padding-left:20px;
}

/* ==========================================================
   SECTION TITLE
========================================================== */

h1,
h2,
h3,
h4{
    color:#8b1e2d;
    font-weight:700;
    margin-bottom:18px;
}

h2::after{
    content:"";
    display:block;
    width:70px;
    height:3px;
    margin-top:10px;
    background:#c7a349;
}

/* ==========================================================
   LINK
========================================================== */

a{
    color:#8b1e2d;
    text-decoration:none;
    transition:color .3s ease;
}

a:hover{
    color:#b34747;
}

/* ==========================================================
   CURRENT ISSUE
========================================================== */

.current_issue,
.obj_issue_summary{
    background:#fff;
    border:1px solid #ececec;
    border-radius:10px;
    padding:20px;
    margin-bottom:25px;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.current_issue:hover,
.obj_issue_summary:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}

/* ==========================================================
   ISSUE COVER
========================================================== */

.current_issue img,
.obj_issue_summary img{
    display:block;
    width:100%;
    border-radius:8px;
}

/* ==========================================================
   ARTICLE SUMMARY
========================================================== */

.item.summary{
    padding:18px 0;
    border-bottom:1px solid #ececec;
}

.item.summary:last-child{
    border-bottom:none;
}

/* ==========================================================
   ARTICLE TITLE
========================================================== */

.title a{
    color:#333;
    font-size:20px;
    font-weight:700;
    line-height:1.5;
}

.title a:hover{
    color:#8b1e2d;
}

/* ==========================================================
   META
========================================================== */

.authors{
    color:#777;
    font-size:14px;
}

.doi{
    color:#999;
    font-size:13px;
}

.meta{
    color:#888;
    font-size:13px;
}

/* ==========================================================
   PDF BUTTON
========================================================== */

.galley_link,
.obj_galley_link{
    display:inline-block;
    padding:8px 18px;

    background:#8b1e2d;
    color:#fff !important;

    border-radius:5px;
    font-weight:600;

    transition:background .3s ease;
}

.galley_link:hover,
.obj_galley_link:hover{
    background:#6b1422;
}

/* ==========================================================
   GENERAL BUTTON
========================================================== */

button,
.cmp_button,
.btn{
    background:#8b1e2d;
    color:#fff;

    border:none;
    border-radius:6px;

    transition:background .3s ease;
}

button:hover,
.cmp_button:hover,
.btn:hover{
    background:#6b1422;
}

/* ==========================================================
   PAGINATION
========================================================== */

.cmp_pagination a{
    display:inline-block;
    margin:2px;
    padding:8px 12px;

    border-radius:4px;
}

.cmp_pagination .current{
    background:#8b1e2d;
    color:#fff;
}

/* ==========================================================
   STEP 4
   SIDEBAR SEMIORA STYLE
========================================================== */

/* ==========================================================
   SIDEBAR
========================================================== */

.pkp_structure_sidebar{
    padding-left:25px;
}

/* ==========================================================
   WIDGET
========================================================== */

.pkp_block{
    background:#fff;
    border:1px solid #e8e8e8;
    border-radius:10px;
    overflow:hidden;

    margin-bottom:25px;

    box-shadow:0 5px 15px rgba(0,0,0,.08);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.pkp_block:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 30px rgba(0,0,0,.12);
}

/* ==========================================================
   WIDGET TITLE
========================================================== */

.pkp_block .title{
    background:#8b1e2d;
    color:#fff;

    padding:14px 18px;

    font-size:15px;
    font-weight:700;
    letter-spacing:.8px;
    text-transform:uppercase;

    border-bottom:3px solid #c7a349;
}

/* ==========================================================
   WIDGET CONTENT
========================================================== */

.pkp_block .content{
    padding:18px;
    background:#fff;
}

/* ==========================================================
   LINK
========================================================== */

.pkp_block a{
    color:#444;
    text-decoration:none;
    transition:all .25s ease;
}

.pkp_block a:hover{
    color:#8b1e2d;
    padding-left:6px;
}

/* ==========================================================
   LIST
========================================================== */

.pkp_block ul{
    list-style:none;
    margin:0;
    padding:0;
}

.pkp_block li{
    padding:10px 0;
    border-bottom:1px solid #ededed;
}

.pkp_block li:last-child{
    border-bottom:none;
}

/* ==========================================================
   FORM
========================================================== */

.pkp_block input[type="text"],
.pkp_block input[type="password"],
.pkp_block input[type="email"]{
    width:100%;
    padding:10px;

    border:1px solid #ddd;
    border-radius:6px;

    margin-bottom:10px;
    box-sizing:border-box;
}

.pkp_block button{
    width:100%;
    padding:10px;
    margin-top:10px;

    background:#8b1e2d;
    color:#fff;

    border:none;
    border-radius:6px;

    transition:background .3s ease;
}

.pkp_block button:hover{
    background:#6b1422;
}

/* ==========================================================
   IMAGE
========================================================== */

.pkp_block img{
    display:block;
    max-width:100%;
    height:auto;

    border-radius:8px;

    transition:transform .3s ease;
}

.pkp_block img:hover{
    transform:scale(1.03);
}

/* ==========================================================
   INFORMATION BLOCK
========================================================== */

.pkp_block_information li{
    padding:12px 0;
}

/* ==========================================================
   DEVELOPED BY / WEB FEED
========================================================== */

.pkp_block_developed_by p,
.pkp_block_web_feed p{
    color:#666;
    font-size:13px;
}

/* ==========================================================
   STATISTICS
========================================================== */

.pkp_block_statistics{
    text-align:center;
}

.pkp_block_statistics strong{
    display:block;
    font-size:22px;
    color:#8b1e2d;
}

.pkp_block_statistics span{
    font-size:13px;
    color:#777;
}

/* ==========================================================
   STEP 5
   PROFESSIONAL FINISH
==========================================================*/

/* ==========================================================
   ARTICLE LIST
========================================================== */

.obj_article_summary{
    background:#fff;
    border:1px solid #ececec;
    border-radius:10px;
    padding:20px;
    margin-bottom:20px;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.obj_article_summary:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 28px rgba(0,0,0,.12);
}

.obj_article_summary .title{
    margin-bottom:12px;
    font-size:22px;
    line-height:1.5;
}

.obj_article_summary .title a{
    color:#222;
    font-weight:700;
}

.obj_article_summary .title a:hover{
    color:#8b1e2d;
}

.obj_article_summary .authors{
    margin-bottom:10px;
    color:#666;
    font-size:14px;
}

.obj_article_summary .pages{
    color:#999;
}

.obj_article_summary .doi{
    color:#777;
}

/* ==========================================================
   PDF BUTTON
========================================================== */

.obj_galley_link,
.galley_link{
    display:inline-block;
    padding:10px 18px;

    background:#8b1e2d;
    color:#fff !important;

    border-radius:6px;
    font-weight:600;
    letter-spacing:.3px;

    transition:background .3s ease;
}

.obj_galley_link:hover,
.galley_link:hover{
    background:#661320;
}

/* ==========================================================
   ISSUE COVER
========================================================== */

.obj_issue_summary img{
    display:block;
    width:100%;
    border-radius:10px;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
}

/* ==========================================================
   ANNOUNCEMENT
========================================================== */

.cmp_announcements{
    background:#fff;
    border-radius:10px;
    padding:25px;
    box-shadow:0 5px 18px rgba(0,0,0,.08);
}

/* ==========================================================
   LOGIN & REGISTER
========================================================== */

.page_login form,
.page_register form{
    background:#fff;
    padding:30px;
    border-radius:10px;
    box-shadow:0 5px 18px rgba(0,0,0,.08);
}

input,
select,
textarea{
    border:1px solid #ddd;
    border-radius:6px;
}

input:focus,
select:focus,
textarea:focus{
    outline:none;
    border-color:#8b1e2d;
    box-shadow:0 0 8px rgba(139,30,45,.2);
}

/* ==========================================================
   TABLE
========================================================== */

table{
    width:100%;
    background:#fff;
    border-collapse:collapse;
}

table th{
    background:#8b1e2d;
    color:#fff;
}

table th,
table td{
    padding:10px;
    border:1px solid #ececec;
}

/* ==========================================================
   BREADCRUMB
========================================================== */

.cmp_breadcrumbs{
    margin-bottom:25px;
    padding:12px 20px;

    background:#fafafa;
    border-radius:8px;
}

/* ==========================================================
   FOOTER
========================================================== */

.pkp_structure_footer{
    margin-top:60px;
    padding:40px;

    background:#8b1e2d;
    color:#fff;

    border-top:5px solid #c7a349;
}

.pkp_structure_footer a{
    color:#ffd369;
}

.pkp_structure_footer a:hover{
    color:#fff;
}

/* ==========================================================
   SCROLLBAR
========================================================== */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#efefef;
}

::-webkit-scrollbar-thumb{
    background:#8b1e2d;
    border-radius:20px;
}

/* ==========================================================
   MOBILE
========================================================== */

@media (max-width:768px){

    .pkp_structure_main{
        padding-right:0;
    }

    .pkp_structure_sidebar{
        padding-left:0;
        margin-top:30px;
    }

    .page,
    .page_index_journal{
        padding:15px;
    }

    .pkp_site_name a{
        font-size:28px;
    }

}

/* ==========================================================
   PREMIUM CARD EFFECT
========================================================== */

.page,
.pkp_block,
.obj_article_summary,
.obj_issue_summary{
    overflow:hidden;
}

.page::before{
    content:"";
    display:block;

    height:5px;
    margin:-30px -30px 25px;

    background:linear-gradient(90deg,#8b1e2d,#c7a349);
}

/* ==========================================================
   HILANGKAN PADDING DEFAULT SANGULINE
========================================================== */

.pkp_structure_head .container{
    width:100% !important;
    max-width:100% !important;
 
}