/**
 *
 * Open Journal Systems
 * Copyright (c) 2013-2016 Simon Fraser University Library
 * Copyright (c) 2003-2016 John Willinsky
 * Copyright (c) themeOJS.com | IDPublishing | PT. Penerbit Jurnal Indonesia
 * Designed For Jurnal UNIVERSALIA (2025) Oleh Ahlal Kamal 085285123236
 * Theme: Universalia Blue-Teal Modern
 *
 **/

@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Open+Sans:wght@400;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

/* ===================== GLOBAL ===================== */

*,
*:before,
*:after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  height: 100%;
  font-family: 'Open Sans', tahoma, geneva, sans-serif;
  background-color: #e8f4fd;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(21,101,192,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0,137,123,0.08) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231565C0' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-attachment: fixed;
  background-size: auto;
}

/* ===================== HEADER ===================== */

.pkp_structure_head {
  background: linear-gradient(135deg, #0d1b2e 0%, #1565C0 60%, #0288D1 100%);
  box-shadow: 0 3px 15px rgba(0,0,0,0.3);
  position: relative;
}

.pkp_structure_head::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,213,79,0.05);
  pointer-events: none;
}

.pkp_structure_head::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FFD54F 0%, #FFEE58 50%, #FFD54F 100%);
}

.pkp_site_name {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin: 0 !important;
}

.pkp_site_name > a {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.pkp_site_name .is_img img {
  max-height: 100% !important;
  max-width: 100% !important;
}

.pkp_site_name_wrapper {
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin: 0 !important;
}

/* ===================== NAVIGATION ===================== */

.pkp_navigation_primary_row {
  background: linear-gradient(90deg, #0a1e3e 0%, #1565C0 100%);
  text-align: center;
  font-weight: bold;
  padding-left: 2.143rem;
  padding-right: 2.143rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.pkp_navigation_primary_row .pkp_navigation_primary_wrapper ul li,
.pkp_navigation_primary_row .pkp_navigation_primary_wrapper ul li a {
  font-family: 'Open Sans', tahoma, geneva, sans-serif;
  color: #ffffff !important;
  font-weight: 600 !important;
  font-size: 13px;
  letter-spacing: 0.3px;
}

.pkp_navigation_primary_row .pkp_navigation_primary_wrapper ul li {
  padding: 0 !important;
  margin: 0 !important;
}

.pkp_navigation_primary_row .pkp_navigation_primary_wrapper ul li a {
  margin: 0 !important;
  padding: 0 15px !important;
  line-height: 42px !important;
  transition: all 0.25s ease;
  position: relative;
}

.pkp_navigation_primary_row .pkp_navigation_primary_wrapper ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 2px;
  background: #FFD54F;
  transition: all 0.3s ease;
}

.pkp_navigation_primary_row .pkp_navigation_primary_wrapper ul li a:hover::after {
  left: 10%;
  right: 10%;
}

.pkp_navigation_primary_row .pkp_navigation_primary_wrapper ul li a:hover {
  background: rgba(255,255,255,0.12) !important;
  border-radius: 4px !important;
  color: #FFD54F !important;
}

.pkp_navigation_primary_row .pkp_navigation_primary_wrapper ul li ul {
  background: #0a1e3e !important;
  border-radius: 0 0 8px 8px !important;
  border-top: 2px solid #FFD54F;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.pkp_navigation_primary_row .pkp_navigation_primary_wrapper ul li ul li {
  border-bottom: solid 1px rgba(255,255,255,0.08) !important;
}

.pkp_navigation_primary_row .pkp_navigation_primary_wrapper ul li ul li:last-child {
  border-bottom: none !important;
}

.pkp_navigation_user_wrapper {
  top: 0;
  right: 0;
  padding-right: 30px;
}

.pkp_site_nav_toggle {
  background-color: #1565C0;
}

/* ===================== SEARCH ===================== */

.pkp_search.pkp_search_desktop {
  color: #ffffffcc;
  transition: color 0.2s;
}

.pkp_search.pkp_search_desktop:hover {
  color: #FFD54F;
}

/* ===================== PAGE STRUCTURE ===================== */

.pkp_structure_page {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
  padding-bottom: 20px !important;
}

#headerNavigationContainer {
  max-height: 200% !important;
}

/* ===================== SIDEBAR BLOCKS ===================== */

.pkp_block {
  font-size: 14px;
  line-height: 20px;
  overflow: hidden;
  border-radius: 10px !important;
  background: white !important;
  box-shadow: 0 4px 16px rgba(21,101,192,0.10);
  padding: 0 !important;
  margin: 0px 0px 18px !important;
  border: 1px solid rgba(21,101,192,0.08);
  transition: box-shadow 0.3s ease;
}

.pkp_block:hover {
  box-shadow: 0 6px 24px rgba(21,101,192,0.18);
}

.pkp_block .title {
  width: 100%;
  background: linear-gradient(90deg, #0a1e3e 0%, #1565C0 100%);
  height: 42px;
  font-size: 13px;
  color: #fff;
  padding-top: 12px;
  margin-bottom: 0px !important;
  border-bottom: 3px solid #FFD54F;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: left;
  padding-left: 14px;
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
}

.pkp_block .content {
  background-color: #f8fbff;
  padding: 0;
  margin: 0px;
  display: block;
}

.pkp_block .content ul li {
  padding: 2px 0;
  background-color: #f8fbff;
  padding-left: 10px;
}

.pkp_block li {
  border-radius: 0;
  position: relative;
  background-color: #fff;
  display: block;
}

.pkp_block ul > li a {
  color: #1565C0;
  padding: 0.5rem 0.75rem;
  display: flex;
  font-size: 13px;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.pkp_block ul > li a:hover {
  text-decoration: none;
  background-color: #e8f4fd;
  border-left: 3px solid #0288D1;
  color: #0a1e3e;
  padding-left: 1rem;
}

/* ===================== ARTICLE LIST (TOC) ===================== */

.obj_issue_toc .articles > li {
  margin-bottom: 18px;
  background: #ffffff;
  padding: 1.25rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(21,101,192,0.08);
  border-left: 4px solid #0288D1;
  border-bottom: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.obj_issue_toc .articles > li::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, transparent 60%, rgba(2,136,209,0.05) 100%);
}

.obj_issue_toc .articles > li:hover {
  box-shadow: 0 6px 24px rgba(21,101,192,0.15);
  border-left: 4px solid #FFD54F;
  transform: translateY(-2px);
}

.obj_article_summary .title a {
  color: #0a1e3e !important;
  font-family: 'Merriweather', serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.2s;
}

.obj_article_summary .title a:hover {
  color: #1565C0 !important;
}

.obj_article_summary .authors {
  color: #0288D1;
  font-size: 13px;
  font-weight: 600;
  margin-top: 6px;
}

.obj_article_summary .abstract {
  color: #444;
  font-size: 13px;
  line-height: 1.7;
  margin-top: 8px;
  text-align: justify;
}

/* ===================== ARTICLE DETAIL ===================== */

/* Judul */
.obj_article_details h1.page_title {
  font-family: 'Merriweather', serif;
  color: #0d1f3c;
  font-size: 21px;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  padding-bottom: 0.9rem;
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, #1565C0 0%, #0288D1 55%, #00897B 100%) 1;
  text-align: left;
}

/* Container Utama */
.obj_article_details .authors {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
    align-items: stretch;
}

/* Kotak Penulis Individual */
.obj_article_details .author_item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 12px 15px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease;
}

.obj_article_details .author_item:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Nama Penulis */
.obj_article_details .name {
    font-size: 14px;
    font-weight: 700;
    color: #1e3a8a; /* Biru Gelap Profesional */
    margin-bottom: 3px;
    display: block;
}

/* Afiliasi */
.obj_article_details .affiliation {
    font-size: 11px;
    color: #64748b;
    line-height: 1.4;
    font-style: normal; /* Lebih modern tanpa italic berlebih */
    margin: 0;
}

/* Abstract box */
.obj_article_details .article_abstract {
  background: linear-gradient(135deg, #F0F7FF 0%, #E8F8F5 100%);
  border: 1px solid rgba(21,101,192,0.10);
  border-radius: 14px;
  padding: 20px 22px;
  margin: 0.5rem 0 1.4rem;
  font-size: 13.5px;
  line-height: 1.9;
  text-align: justify;
  color: #1a2e4a;
  position: relative;
  box-shadow: 0 3px 14px rgba(21,101,192,0.07);
  font-style: italic;
  overflow: hidden;
}

.obj_article_details .article_abstract::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 14px 14px 0 0;
  background: linear-gradient(90deg, #1565C0, #0288D1, #00897B);
}

/* ===================== UPDATED KEYWORDS SECTION ===================== */

.obj_article_details .keywords {
background: #ffffff;
border: 1px solid #e2e8f0;
border-left: 4px solid #1565C0; /* Garis aksen kiri agar konsisten dengan kartu artikel */
border-radius: 8px;
padding: 14px 18px;
margin: 20px 0;
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 10px;
box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}

.obj_article_details .keywords .label {
background: transparent; /* Menghapus gradient yang berat agar lebih clean /
color: #0f172a;
padding: 0;
border-radius: 0;
font-size: 12px;
font-weight: 800; / Teks tebal dan tegas */
text-transform: uppercase;
letter-spacing: 0.05em;
display: flex;
align-items: center;
}

.obj_article_details .keywords .label::after {
content: ":";
margin-right: 5px;
}

.obj_article_details .keywords .value {
display: flex;
flex-wrap: wrap;
gap: 6px;
}

.obj_article_details .keywords .value a {
background: #f1f5f9; /* Warna abu-abu sangat muda /
color: #475569;
padding: 5px 14px;
border-radius: 6px; / Sudut sedikit membulat, lebih modern dari pill-style */
font-size: 12px;
font-weight: 600;
display: inline-block;
border: 1px solid #e2e8f0;
transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
text-decoration: none;
}

.obj_article_details .keywords .value a:hover {
background: #1565C0;
color: #ffffff;
border-color: #1565C0;
transform: translateY(-2px); /* Efek melayang saat di-hover */
box-shadow: 0 4px 12px rgba(21,101,192,0.2);
}

/* ---- REFERENCES ---- */
/* Wrapper referensi - hapus padding/list default OJS */
.obj_article_details .references {
  padding-left: 0 !important;
  list-style: none !important;
  margin: 0 !important;
}

/* Setiap item referensi â€” p atau li */
.obj_article_details .references p,
.obj_article_details .references li {
  font-size: 13px !important;
  line-height: 1.8 !important;
  color: #2d3748 !important;
  text-align: justify !important;
  padding: 9px 14px 9px 25px !important;
  margin: 0 0 7px 0 !important;
  border-left: 3px solid #CBE1F5 !important;
  border-radius: 0 8px 8px 0 !important;
  background: #FAFCFF !important;
  transition: border-left-color 0.2s ease, background 0.2s ease !important;
  list-style: none !important;
  display: block !important;
}

.obj_article_details .references p:hover,
.obj_article_details .references li:hover {
  border-left-color: #0288D1 !important;
  background: #EEF7FF !important;
}

/* Link DOI di dalam referensi */
.obj_article_details .references a,
.obj_article_details .references p a,
.obj_article_details .references li a {
  color: #0288D1 !important;
  font-size: 12px !important;
  word-break: break-all !important;
  text-decoration: none !important;
}

.obj_article_details .references a:hover,
.obj_article_details .references p a:hover,
.obj_article_details .references li a:hover {
  text-decoration: underline !important;
  color: #1565C0 !important;
}

/* Sidebar entry details */
.obj_article_details .entry_details {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(21,101,192,0.10);
  box-shadow: 0 3px 16px rgba(21,101,192,0.08);
  overflow: hidden;
  margin-bottom: 14px;
}

.obj_article_details .entry_details h2 {
  font-size: 9.5px !important;
  font-weight: 800 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: #94a3b8 !important;
  background: #F8FAFF !important;
  border-bottom: 1px solid rgba(21,101,192,0.08) !important;
  padding: 9px 13px !important;
  margin: 0 !important;
  border-radius: 0 !important;
  display: block !important;
}

.obj_article_details .entry_details h2::before {
  display: none !important;
}

.obj_article_details .entry_details .value {
  font-size: 13px;
  font-weight: 600;
  color: #0d1f3c;
  padding: 10px 13px;
  border-bottom: 1px solid rgba(21,101,192,0.06);
  text-align: left;
}

.obj_article_details .entry_details .value:last-child {
  border-bottom: none;
}

.obj_article_details .entry_details .value a {
  color: #0288D1;
  text-decoration: none;
}

.obj_article_details .entry_details .value a:hover {
  color: #1565C0;
  text-decoration: underline;
}

/* Galley panel */
.obj_article_details .galleys_links {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(21,101,192,0.10);
  box-shadow: 0 3px 16px rgba(21,101,192,0.08);
  padding: 14px;
  margin-bottom: 14px;
}

/* License */
.obj_article_details .license {
  background: #F8FAFF;
  border-radius: 10px;
  border: 1px solid rgba(21,101,192,0.10);
  padding: 11px 13px;
  font-size: 12px;
  color: #4a5568;
  line-height: 1.7;
}

.obj_article_details .license a {
  color: #0288D1;
}

/* Section badge di sidebar */
.obj_article_details .entry_details .section .value {
  display: block;
}

.obj_article_details .entry_details .section .value a {
  display: inline-block;
  background: #EEF4FF;
  color: #1565C0 !important;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 13px;
  border-radius: 99px;
  border: 1px solid rgba(21,101,192,0.18);
  text-decoration: none !important;
}

/* ===================== GALLEY LINKS (PDF, HTML) ===================== */

.obj_galley_link {
  display: flex; 
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 60%;
  background: linear-gradient(135deg, #1565C0 0%, #0288D1 100%);
  color: #ffffff !important;
  padding: 11px 18px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none !important;
  margin-bottom: 6px;
  transition: all 0.28s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 4px 16px rgba(21,101,192,0.30);
  letter-spacing: 0.9px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.obj_galley_link::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}

.obj_galley_link:hover::after {
  left: 140%;
}

.obj_galley_link:hover {
  background: linear-gradient(135deg, #0d3d8e 0%, #0277BD 100%);
  box-shadow: 0 7px 22px rgba(21,101,192,0.42);
  transform: translateY(-2px);
  color: #FFD54F !important;
}

/* ===================== HOMEPAGE ===================== */

.homepage_image {
  display: inline-block;
  width: 28%;
  margin-left: 0px;
  float: right;
}

.homepage_image img {
  margin: 70px 0px 0px -20px;
  width: 300px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(21,101,192,0.2);
}

.homepage_about {
  display: inline-block;
  width: 100%;
}

.current_issue {
  display: block;
}

/* ===================== EDITORIAL TEAM ===================== */

.editorial-list {
  position: relative;
}

.editorial-list li {
  margin-bottom: 1.125rem;
  background: #f8fbff;
  border-radius: 8px;
  padding: 0.75rem;
  border: 1px solid rgba(21,101,192,0.08);
  transition: box-shadow 0.2s;
}

.editorial-list li:hover {
  box-shadow: 0 4px 14px rgba(21,101,192,0.12);
}

.editorial-list .img-profile {
  position: absolute;
  width: 95px;
  height: 105px;
  border: 2px solid #0288D1;
  padding: .5rem;
  border-radius: 6px;
}

.editorial-list .img-profile .imgthumb {
  width: 80px;
  height: 90px;
  overflow: hidden;
  margin: 0 auto;
  object-fit: fill;
}

.editorial-list .img-profile img {
  width: 100%;
  height: 100%;
}

.team-content {
  margin-left: 100px;
  min-height: 130px;
}

.team-content .ico-label {
  width: 18px;
  height: 18px;
  margin-right: .5rem;
  color: #0288D1;
}

.team-aff ul li {
  margin-bottom: 0;
}

.team-aff ul li .tm_label {
  display: inline-block;
  width: 80px;
  color: #1565C0;
  font-weight: 600;
}

.team-aff ul li .ico-label {
  width: 18px;
  height: 18px;
  margin-right: .5rem;
}

/* ===================== FOOTER ===================== */

.pkp_structure_footer_wrapper {
  background: linear-gradient(135deg, #0a1e3e 0%, #1565C0 100%);
  border-top: 3px solid #FFD54F;
  margin-top: 30px;
}

.pkp_footer_content {
  float: left;
  width: 70%;
  padding-top: 20px;
  padding-bottom: 20px;
  color: rgba(255,255,255,0.8);
  font-size: 13px;
}

.pkp_footer_content a {
  color: #FFD54F;
  text-decoration: none;
}

.pkp_footer_content a:hover {
  text-decoration: underline;
}

.pkp_brand_footer {
  float: right;
  width: 30%;
  padding-bottom: 10px;
  padding-top: 20px;
}

/* ===================== DROPDOWN MENU ===================== */

.dropdown {
  position: relative;
}

.dropdown a {
  text-decoration: none;
}

.dropdown [data-toggle="dropdown"] {
  display: block;
  color: #fff;
  background: #1565C0;
  box-shadow: 0 1px 0 #0a1e3e inset, 0 -1px 0 #0a1e3e inset;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
  padding: 10px;
  transition: background 0.2s;
}

.dropdown [data-toggle="dropdown"]:hover {
  background: #0288D1;
}

.dropdown [data-toggle="dropdown"]:before {
  position: absolute;
  display: block;
  content: "\25BC";
  font-size: 0.7em;
  color: #FFD54F;
  top: 13px;
  right: 10px;
  transition: transform 0.6s;
}

.dropdown > .dropdown-menu {
  max-height: 0;
  overflow: hidden;
  list-style: none;
  padding: 0;
  margin: 0;
  transform: scaleY(0);
  transform-origin: 50% 0%;
  transition: max-height 0.6s ease-out;
  animation: hideAnimation 0.4s ease-out;
  background: #0a1e3e;
  border-top: 2px solid #FFD54F;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.dropdown > .dropdown-menu li {
  padding: 0;
}

.dropdown > input[type="checkbox"] {
  opacity: 0;
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.dropdown > input[type="checkbox"]:checked ~ .dropdown-menu {
  max-height: 9999px;
  display: block;
  transform: scaleY(1);
  animation: showAnimation 0.5s ease-in-out;
  transition: max-height 2s ease-in-out;
}

.dropdown > input[type="checkbox"]:checked + a[data-toggle="dropdown"]:before {
  transform: rotate(-180deg);
}

/* ===================== MCD MENU ===================== */

.container > ul {
  list-style: none;
}

.mcd-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #fff;
  border-radius: 10px;
  width: 250px;
  box-shadow: 0 4px 16px rgba(21,101,192,0.12);
}

.mcd-menu li {
  position: relative;
}

.mcd-menu li a {
  display: block;
  text-decoration: none;
  padding: 12px 20px;
  color: #0a1e3e;
  text-align: left;
  height: 36px;
  position: relative;
  border-bottom: 1px solid #e8f4fd;
  transition: all 0.2s;
}

.mcd-menu li a i {
  float: left;
  font-size: 20px;
  margin: 0 10px 0 0;
  color: #0288D1;
}

.mcd-menu li a p {
  float: left;
  margin: 0;
}

.mcd-menu li a strong {
  display: block;
  text-transform: uppercase;
  color: #1565C0;
}

.mcd-menu li a small {
  display: block;
  font-size: 10px;
  color: #888;
}

.mcd-menu li:hover > a {
  color: #1565C0;
  background: #e8f4fd;
  border-left: 3px solid #FFD54F;
}

.mcd-menu li a.active {
  position: relative;
  color: #1565C0;
  border: 0;
  box-shadow: 0 0 5px #ddd;
  border-left: 4px solid #1565C0;
  border-right: 4px solid #1565C0;
  margin: 0 -4px;
  background: #e8f4fd;
}

.mcd-menu li a.active:before {
  content: "";
  position: absolute;
  top: 42%;
  left: 0;
  border-left: 5px solid #1565C0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.mcd-menu li a.active:after {
  content: "";
  position: absolute;
  top: 42%;
  right: 0;
  border-right: 5px solid #1565C0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.mcd-menu li ul,
.mcd-menu li ul li ul {
  position: absolute;
  height: auto;
  min-width: 200px;
  padding: 0;
  margin: 0;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all 300ms linear;
  z-index: 1000;
  left: 280px;
  top: 0;
  border-left: 4px solid #1565C0;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 8px 20px rgba(21,101,192,0.15);
}

.mcd-menu li ul:before {
  content: "";
  position: absolute;
  top: 25px;
  left: -9px;
  border-right: 5px solid #1565C0;
  border-bottom: 5px solid transparent;
  border-top: 5px solid transparent;
}

.mcd-menu li:hover > ul,
.mcd-menu li ul li:hover > ul {
  display: block;
  opacity: 1;
  visibility: visible;
  left: 250px;
}

.mcd-menu li ul li a {
  padding: 10px;
  text-align: left;
  border: 0;
  border-bottom: 1px solid #e8f4fd;
  height: auto;
  color: #0a1e3e;
}

.mcd-menu li ul li a:hover {
  color: #1565C0;
  background: #e8f4fd;
}

.mcd-menu li ul li a i {
  font-size: 16px;
  display: inline-block;
  margin: 0 10px 0 0;
  color: #0288D1;
}

/* ===================== LAYOUT HELPERS ===================== */

.column2 {
  float: left;
  width: 33%;
  padding: 10px;
}

.row2:after {
  content: "";
  display: table;
  clear: both;
}

/* ===================== JOURNALS LIST (homepage multi-journal) ===================== */

.journals ul .body .description a {
  display: inline;
  color: #1565C0;
}

/* ===================== ANIMATIONS ===================== */

@keyframes showAnimation {
  0% { transform: scaleY(0.1); }
  40% { transform: scaleY(1.04); }
  60% { transform: scaleY(0.98); }
  80% { transform: scaleY(1.02); }
  100% { transform: scaleY(1); }
}

@keyframes hideAnimation {
  0% { transform: scaleY(1); }
  60% { transform: scaleY(0.98); }
  80% { transform: scaleY(1.02); }
  100% { transform: scaleY(0); }
}

/* ===================== RESPONSIVE ===================== */

@media screen and (max-width: 600px) {
  .column2 { width: 100%; }
  .homepage_about { width: 100%; }
}

@media (max-width: 991px) {
  .homepage_about { margin-top: 30px; }
}

@media (max-width: 360px) {
  .homepage_image {
    width: 90%;
    margin: 0;
  }
  .homepage_about { margin-top: 0px; }
}

@media only screen and (min-width: 1200px) {
  .container { width: 1210px; }
}

@media only screen and (min-width: 960px) and (max-width: 1199px) {
  .container { width: 1030px; }
  .mcd-menu { margin-left: 10px; }
}

@media only screen and (min-width: 768px) and (max-width: 959px) {
  .container { width: 682px; }
  .mcd-menu { width: 200px; }
  .mcd-menu li a { height: 30px; }
  .mcd-menu li a i { font-size: 22px; }
  .mcd-menu li a strong { font-size: 12px; }
  .mcd-menu li a small { font-size: 10px; }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .container { width: 428px; margin: 0 auto; }
  .mcd-menu { width: 50px; }
  .mcd-menu li a { position: relative; padding: 12px 16px; height: 20px; }
  .mcd-menu li a small,
  .mcd-menu li a strong { display: none; }
  .mcd-menu li a:hover strong,
  .mcd-menu li a.active strong {
    display: block;
    font-size: 10px;
    padding: 3px 0;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #1565C0;
    color: #fff;
    min-width: 100%;
    text-transform: lowercase;
    font-weight: 400;
    text-align: center;
  }
  .mcd-menu li .search { display: none; }
}

@media only screen and (max-width: 479px) {
  .container { width: 320px; margin: 0 auto; }
  .mcd-menu { width: 50px; }
  .mcd-menu li a { position: relative; padding: 12px 16px; height: 20px; }
  .mcd-menu li a small,
  .mcd-menu li a strong { display: none; }
  .mcd-menu li a:hover strong,
  .mcd-menu li a.active strong {
    display: block;
    font-size: 10px;
    padding: 3px 0;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #1565C0;
    color: #fff;
    min-width: 100%;
    font-weight: 400;
    text-align: center;
  }
  .mcd-menu li .search { display: none; }
}

/* rata kiri kanan abstract */
.obj_article_details .abstract {
    text-align: justify;
    font-size: 13px !important;
  line-height: 1.8 !important;
  color: #2d3748 !important;
  text-align: justify !important;
  padding: 9px 14px 9px 25px !important;
  margin: 0 0 7px 0 !important;
  border-left: 3px solid #CBE1F5 !important;
  border-radius: 0 8px 8px 0 !important;
  background: #FAFCFF !important;
  transition: border-left-color 0.2s ease, background 0.2s ease !important;
  list-style: none !important;
  display: block !important;
}
