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

.pkp_site_name_wrapper {
  padding-left: 0;
  padding-right: 0;
}
/* .pkp_navigation_user_wrapper {top: 0; right: 0; padding-right:30px;} */
.pkp_brand_footer {
  display: none;
}

/* Navigation For Register and Login */
ul#navigationUser > li.profile {
  border-radius: 5px;
}

ul#navigationUser > li.profile > a:hover {
  color: #ffde59;
}

/* ul#navigationUser > li:first-child > a::before {
  content: '<span class="fa fa-user-circle-o"></span>&nbsp; Register';
} */

/* Navigation Primary */

.pkp_nav_list > li {
  background: none;
}

.pkp_nav_list > li > a {
  color: white;
  font-weight: bold;
}

.pkp_navigation_primary > li > a {
  border-bottom: 3px solid transparent;
}

.pkp_navigation_primary > li > a:hover {
  color: #ffde59;
}

.pkp_navigation_primary > li:first-child a {
  margin-left: 0.5em;
}

.pkp_navigation_primary > li:last-child a {
  margin-right: 0.5em;
}

.pkp_navigation_user > li:last-child > a {
  margin-right: 0;
}

.pkp_navigation_user .task_count {
  top: 0.1rem;
  background: #ff4d4d;
}

/* @media (min-width: 992px) {
} */

/* Navigation Sub Primary */
.pkp_navigation_primary ul a {
  margin-right: 0 !important;
}

#pkpDropdown3::before {
  content: "Howdy,";
}

.dropdown-menu {
  left: 0 !important;
}

.pkp_navigation_search_wrapper a {
  color: white;
}

/* Header */
.pkp_structure_head {
  background-color: transparent;
  border-bottom: none;
}

.pkp_head_wrapper {
  background-color: #ffffff;
  border-bottom: 1px solid #ddd;
}

.pkp_structure_content {
  background: white;
}

.pkp_structure_footer_wrapper {
  background: transparent;
}

.pkp_footer_content {
  background: #f9f9f9;
}

.pkp_site_nav_menu {
  background: #13613d;
}

.pkp_site_name .is_img {
  margin-bottom: 0;
}

/* .php_structure_page {
    width: 80vw;
} */

/* .pkp_structure_head, .pkp_structure_content, .pkp_structure_footer {
    box-shadow: 0 0px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
} */

/* Content Homepage */
@media only screen and (max-width: 600px) {
  .hide-small {
    display: none;
  }
}

@media (min-width: 601px) {
  .show-small {
    display: none;
  }
}

/* Custom Block Tools */
#customblock-tools img {
  max-width: unset;
  width: 70%;
}

#customblock-journal-template img {
  max-width: unset;
  width: 70%;
  border-radius: 3px;
}

/* Team */
.flag-img {
  max-width: unset;
  width: 50px;
}

/* Animation */
.dropdown {
  position: relative;
}
.dropdown a {
  text-decoration: none;
}
.dropdown [data-toggle="dropdown"] {
  display: block;
  color: white;
  background: #4682b4;
  -moz-box-shadow: 0 1px 0 #1f3a93 inset, 0 -1px 0 #1f3a93 inset;
  -webkit-box-shadow: 0 1px 0 #1f3a93 inset, 0 -1px 0 #1f3a93 inset;
  box-shadow: 0 1px 0 #1f3a93 inset, 0 -1px 0 #1f3a93 inset;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
  padding: 10px;
}
.dropdown [data-toggle="dropdown"]:hover {
  background: #cd3d2e;
}
.dropdown [data-toggle="dropdown"]:before {
  position: absolute;
  display: block;
  content: "\25BC";
  font-size: 0.7em;
  color: #fff;
  top: 13px;
  right: 10px;
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -moz-transition: -moz-transform 0.6s;
  -o-transition: -o-transform 0.6s;
  -webkit-transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
}
.dropdown > .dropdown-menu {
  max-height: 0;
  overflow: hidden;
  list-style: none;
  padding: 0;
  margin: 0;
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -moz-transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  -webkit-transform-origin: 50% 0%;
  transform-origin: 50% 0%;
  -moz-transition: max-height 0.6s ease-out;
  -o-transition: max-height 0.6s ease-out;
  -webkit-transition: max-height 0.6s ease-out;
  transition: max-height 0.6s ease-out;
  animation: hideAnimation 0.4s ease-out;
  -moz-animation: hideAnimation 0.4s ease-out;
  -webkit-animation: hideAnimation 0.4s ease-out;
}
.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;
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  animation: showAnimation 0.5s ease-in-out;
  -moz-animation: showAnimation 0.5s ease-in-out;
  -webkit-animation: showAnimation 0.5s ease-in-out;
  -moz-transition: max-height 2s ease-in-out;
  -o-transition: max-height 2s ease-in-out;
  -webkit-transition: max-height 2s ease-in-out;
  transition: max-height 2s ease-in-out;
}
.dropdown > input[type="checkbox"]:checked + a[data-toggle="dropdown"]:before {
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
  -moz-transition: -moz-transform 0.6s;
  -o-transition: -o-transform 0.6s;
  -webkit-transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
}

/* Desktop View */
@media only screen and (min-width: 992px) {
  .pkp_site_name .is_img img {
    max-height: 200px !important;
  }
  .show-on-mobile {
    display: none;
  }
}

/* Mobile View */
@media only screen and (max-width: 991px) {
  .pkp_nav_list > li > ul > li > a {
    color: white;
    margin-left: 1.5em;
  }
  .pkp_navigation_primary > li a {
    margin-left: 0.5em;
  }
  .pkp_navigation_search_wrapper, .pkp_navigation_user_wrapper {
    margin-left: 0.5em;
  }
  .pkp_nav_list > li {
    background: transparent;
  }
  .pkp_navigation_user .task_count {
    top: 0;
    background: #ff4d4d !important;
  }
}

.dropdown-customblock {
    padding: 10px;
    border-bottom: 1px solid #aaa;
    background: #2e2458 !important;
    color: #fbfcfc;
}

.dropdown-customblock-item {
    padding: 10px !important;
    border-bottom: 1px solid #aaa; 
    background: #e6e2e2; 
    color: #fbfcfc;
}

.dropdown-customblock-item a {
    color: #6e45f3;
}

.dropdown-customblock-item a:hover {
    color: #170c47;
}

body {
  font-family: 'Montserrat', montserrat; text-align: justify;
}


/* === GLOBAL FONT === */
body, .pkp_structure_sidebar {
    font-family: Montserrat, sans-serif !important;
}

.sidebar-hover {
  width: 100%;
  font-family: Montserrat, sans-serif;
  margin-top: 20px;
  box-sizing: border-box;
}

.sidebar-hover .title {
  width: 100%;
  background-color: #fff4e5;
  color: #4c2c20;
  font-weight: bold;
  text-align: center;
  padding: 12px 10px;
  text-transform: uppercase;
  border-bottom: 2px solid #ffde59;
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.sidebar-hover ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-hover ul li {
  margin: 0;
  padding: 0;
  line-height: 1;
}

.sidebar-hover ul li a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  background-color: #4c2c20;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border-bottom: 1px solid #fff; /* garis putih tipis antar menu */
  box-sizing: border-box;
  transition: background-color 0.3s;
}

.sidebar-hover ul li:last-child a {
  border-bottom: none; /* hapus garis di menu terakhir */
}

.sidebar-hover ul li a:hover {
  background-color: #b16028;
}

/* Font Awesome Ikon Putih */
.sidebar-hover ul li a::before {
  display: inline-block;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #ffffff;
  font-size: 15px;
  margin-right: 8px;
  min-width: 16px;
  text-align: center;
}

/* Ikon Berdasarkan Urutan */
.sidebar-hover ul li:nth-child(1) a::before { content: "\f015"; } /* fa-house */
.sidebar-hover ul li:nth-child(2) a::before { content: "\f02d"; } /* fa-book-open */
.sidebar-hover ul li:nth-child(3) a::before { content: "\f0c0"; } /* fa-users */
.sidebar-hover ul li:nth-child(4) a::before { content: "\f4fc"; } /* fa-user-check */
.sidebar-hover ul li:nth-child(5) a::before { content: "\f00c"; } /* fa-check */
.sidebar-hover ul li:nth-child(6) a::before { content: "\f044"; font-weight: 400; } /* fa-pen-to-square */
.sidebar-hover ul li:nth-child(7) a::before { content: "\f0e0"; font-weight: 400; } /* fa-envelope */
.sidebar-hover ul li:nth-child(8) a::before { content: "\f09c"; } /* fa-unlock-alt */
.sidebar-hover ul li:nth-child(9) a::before { content: "\f1d8"; } /* fa-paper-plane */
.sidebar-hover ul li:nth-child(10) a::before { content: "\f080"; } /* fa-chart-bar */
.sidebar-hover ul li:nth-child(11) a::before { content: "\f09d"; font-weight: 400; } /* fa-credit-card */

.sidebar-hover ul,
.sidebar-hover ul li,
.sidebar-hover ul li a {
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-sizing: border-box !important;
  line-height: 1 !important;
  gap: 0 !important;
}

/* Styling sidebar menu */
.sidebar-hover ul li a {
  display: flex !important;
  align-items: center !important;
  background-color: #4c2c20 !important;
  color: #fff !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  text-decoration: none !important;
  border-bottom: 1px solid #fff !important;
  padding: 12px 14px !important;
  transition: background-color 0.3s !important;
  min-height: unset !important;
}

/* Hapus border bawah di menu terakhir */
.sidebar-hover ul li:last-child a {
  border-bottom: none !important;
}

/* Hover */
.sidebar-hover ul li a:hover {
  background-color: #b16028 !important;
}

/* Font Awesome Ikon */
.sidebar-hover ul li a::before {
  display: inline-block !important;
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  color: #fff !important;
  font-size: 18px !important;
  margin-right: 10px !important;
  min-width: 18px !important;
  text-align: center !important;
}

/* Mapping ikon */
.sidebar-hover ul li:nth-child(1) a::before { content: "\f015"; } /* Home */
.sidebar-hover ul li:nth-child(2) a::before { content: "\f02d"; } /* Book Open */
.sidebar-hover ul li:nth-child(3) a::before { content: "\f0c0"; } /* Users */
.sidebar-hover ul li:nth-child(4) a::before { content: "\f4fc"; } /* User Check */
.sidebar-hover ul li:nth-child(5) a::before { content: "\f00c"; } /* Check */
.sidebar-hover ul li:nth-child(6) a::before { content: "\f044"; font-weight:400 !important;} /* Pen to square */
.sidebar-hover ul li:nth-child(7) a::before { content: "\f0e0"; font-weight:400 !important;} /* Envelope */
.sidebar-hover ul li:nth-child(8) a::before { content: "\f09c"; } /* Unlock Alt */
.sidebar-hover ul li:nth-child(9) a::before { content: "\f1d8"; } /* Paper Plane */
.sidebar-hover ul li:nth-child(10) a::before { content: "\f080"; } /* Chart Bar */
.sidebar-hover ul li:nth-child(11) a::before { content: "\f09d"; font-weight:400 !important;} /* Credit Card */
