@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --blue: #058bc0;
  --blue-light: #058bc0;
  --blue-shade: #def6ff;
  --blue-dark: #006289;
  --jpai-accent: #53ae51;
  --jpai-accent-light: #76cd75;
  --dark: #333333;
  --danger: rgb(200, 31, 31);
  --muted: #e9e9e9;
  --orange-scopus: #f36d20;
  --yellow: #f5af23;
}

/* OVERRIDE */

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
small,
span {
  font-family: "Noto Sans", sans-serif;
}

a {
  color: var(--blue);
  text-decoration: none;
}

body a {
  color: var(--blue);
}

/* Text Size Utilities */

.text-xs {
  font-size: 0.75rem;
  /* 12px */
}

.text-sm {
  font-size: 0.875rem;
  /* 14px */
}

.text-base {
  font-size: 1rem !important;
  /* 16px */
}

.text-lg {
  font-size: 1.125rem !important;
  /* 18px */
}

.text-xl {
  font-size: 1.25rem !important;
  /* 20px */
}

.text-2xl {
  font-size: 1.5rem !important;
  /* 24px */
}

.text-3xl {
  font-size: 1.875rem !important;
  /* 30px */
}

.text-4xl {
  font-size: 2.25rem !important;
  /* 36px */
}

.text-5xl {
  font-size: 3rem !important;
  /* 48px */
}

.text-6xl {
  font-size: 3.75rem !important;
  /* 60px */
}

.text-7xl {
  font-size: 4.5rem !important;
  /* 72px */
}

.text-8xl {
  font-size: 6rem !important;
  /* 96px */
}

.text-9xl {
  font-size: 8rem !important;
  /* 128px */
}

/* Height Utilities */

.h-0 {
  height: 0px !important;
}

.h-1 {
  height: 4px !important;
}

.h-2 {
  height: 8px !important;
}

.h-3 {
  height: 12px !important;
}

.h-4 {
  height: 16px !important;
}

.h-5 {
  height: 20px !important;
}

.h-6 {
  height: 24px !important;
}

.h-8 {
  height: 32px !important;
}

.h-10 {
  height: 40px !important;
}

.h-12 {
  height: 48px !important;
}

.h-16 {
  height: 64px !important;
}

.h-20 {
  height: 80px !important;
}

.h-24 {
  height: 96px !important;
}

.h-32 {
  height: 128px !important;
}

.h-40 {
  height: 160px !important;
}

.h-48 {
  height: 192px !important;
}

.h-56 {
  height: 224px !important;
}

.h-64 {
  height: 256px !important;
}

.h-72 {
  height: 288px !important;
}

.h-80 {
  height: 320px !important;
}

.h-96 {
  height: 384px !important;
}

.h-auto {
  height: auto !important;
}

.h-full {
  height: 100% !important;
}

.h-screen {
  height: 100vh !important;
}

/* Width Utilities */

.w-0 {
  width: 0px !important;
}

.w-1 {
  width: 4px !important;
}

.w-2 {
  width: 8px !important;
}

.w-3 {
  width: 12px !important;
}

.w-4 {
  width: 16px !important;
}

.w-5 {
  width: 20px !important;
}

.w-6 {
  width: 24px !important;
}

.w-8 {
  width: 32px !important;
}

.w-10 {
  width: 40px !important;
}

.w-12 {
  width: 48px !important;
}

.w-16 {
  width: 64px !important;
}

.w-20 {
  width: 80px !important;
}

.w-24 {
  width: 96px !important;
}

.w-32 {
  width: 128px !important;
}

.w-40 {
  width: 160px !important;
}

.w-48 {
  width: 192px !important;
}

.w-56 {
  width: 224px !important;
}

.w-64 {
  width: 256px !important;
}

.w-auto {
  width: auto !important;
}

.w-full {
  width: 100% !important;
}

.w-screen {
  width: 100vw !important;
}

.h-fit {
  width: fit-content !important;
}
/* SPACING UTILITIES */

/* Padding */

.p-0 {
  padding: 0px !important;
}

.p-1 {
  padding: 4px !important;
}

.p-2 {
  padding: 8px !important;
}

.p-3 {
  padding: 12px !important;
}

.p-4 {
  padding: 16px !important;
}

.p-5 {
  padding: 20px !important;
}

.p-6 {
  padding: 24px !important;
}

.p-8 {
  padding: 32px !important;
}

.p-10 {
  padding: 40px !important;
}

.p-12 {
  padding: 48px !important;
}

.p-16 {
  padding: 64px !important;
}

/* Padding X */

.px-0 {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.px-1 {
  padding-left: 4px !important;
  padding-right: 4px !important;
}

.px-2 {
  padding-left: 8px !important;
  padding-right: 8px !important;
}

.px-3 {
  padding-left: 12px !important;
  padding-right: 12px !important;
}

.px-4 {
  padding-left: 16px !important;
  padding-right: 16px !important;
}

.px-5 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.px-6 {
  padding-left: 24px !important;
  padding-right: 24px !important;
}

.px-8 {
  padding-left: 32px !important;
  padding-right: 32px !important;
}

.px-10 {
  padding-left: 40px !important;
  padding-right: 40px !important;
}

.px-12 {
  padding-left: 48px !important;
  padding-right: 48px !important;
}

.px-16 {
  padding-left: 64px !important;
  padding-right: 64px !important;
}

/* Padding Y */

.py-0 {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

.py-1 {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}

.py-2 {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.py-3 {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

.py-4 {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

.py-5 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.py-6 {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

.py-8 {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}

.py-10 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.py-12 {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}

.py-16 {
  padding-top: 64px !important;
  padding-bottom: 64px !important;
}

/* Padding Top */

.pt-0 {
  padding-top: 0px !important;
}

.pt-1 {
  padding-top: 4px !important;
}

.pt-2 {
  padding-top: 8px !important;
}

.pt-3 {
  padding-top: 12px !important;
}

.pt-4 {
  padding-top: 16px !important;
}

.pt-5 {
  padding-top: 20px !important;
}

.pt-6 {
  padding-top: 24px !important;
}

.pt-8 {
  padding-top: 32px !important;
}

.pt-10 {
  padding-top: 40px !important;
}

.pt-12 {
  padding-top: 48px !important;
}

.pt-16 {
  padding-top: 64px !important;
}

/* Padding Right */

.pr-0 {
  padding-right: 0px !important;
}

.pr-1 {
  padding-right: 4px !important;
}

.pr-2 {
  padding-right: 8px !important;
}

.pr-3 {
  padding-right: 12px !important;
}

.pr-4 {
  padding-right: 16px !important;
}

.pr-5 {
  padding-right: 20px !important;
}

.pr-6 {
  padding-right: 24px !important;
}

.pr-8 {
  padding-right: 32px !important;
}

.pr-10 {
  padding-right: 40px !important;
}

.pr-12 {
  padding-right: 48px !important;
}

.pr-16 {
  padding-right: 64px !important;
}

/* Padding Bottom */

.pb-0 {
  padding-bottom: 0px !important;
}

.pb-1 {
  padding-bottom: 4px !important;
}

.pb-2 {
  padding-bottom: 8px !important;
}

.pb-3 {
  padding-bottom: 12px !important;
}

.pb-4 {
  padding-bottom: 16px !important;
}

.pb-5 {
  padding-bottom: 20px !important;
}

.pb-6 {
  padding-bottom: 24px !important;
}

.pb-8 {
  padding-bottom: 32px !important;
}

.pb-10 {
  padding-bottom: 40px !important;
}

.pb-12 {
  padding-bottom: 48px !important;
}

.pb-16 {
  padding-bottom: 64px !important;
}

/* Padding Left */

.pl-0 {
  padding-left: 0px !important;
}

.pl-1 {
  padding-left: 4px !important;
}

.pl-2 {
  padding-left: 8px !important;
}

.pl-3 {
  padding-left: 12px !important;
}

.pl-4 {
  padding-left: 16px !important;
}

.pl-5 {
  padding-left: 20px !important;
}

.pl-6 {
  padding-left: 24px !important;
}

.pl-8 {
  padding-left: 32px !important;
}

.pl-10 {
  padding-left: 40px !important;
}

.pl-12 {
  padding-left: 48px !important;
}

.pl-16 {
  padding-left: 64px !important;
}

/* Margin */

.m-0 {
  margin: 0px !important;
}

.m-1 {
  margin: 4px !important;
}

.m-2 {
  margin: 8px !important;
}

.m-3 {
  margin: 12px !important;
}

.m-4 {
  margin: 16px !important;
}

.m-5 {
  margin: 20px !important;
}

.m-6 {
  margin: 24px !important;
}

.m-8 {
  margin: 32px !important;
}

.m-10 {
  margin: 40px !important;
}

.m-12 {
  margin: 48px !important;
}

.m-16 {
  margin: 64px !important;
}

/* Margin X */

.mx-0 {
  margin-left: 0px !important;
  margin-right: 0px !important;
}

.mx-1 {
  margin-left: 4px !important;
  margin-right: 4px !important;
}

.mx-2 {
  margin-left: 8px !important;
  margin-right: 8px !important;
}

.mx-3 {
  margin-left: 12px !important;
  margin-right: 12px !important;
}

.mx-4 {
  margin-left: 16px !important;
  margin-right: 16px !important;
}

.mx-5 {
  margin-left: 20px !important;
  margin-right: 20px !important;
}

.mx-6 {
  margin-left: 24px !important;
  margin-right: 24px !important;
}

.mx-8 {
  margin-left: 32px !important;
  margin-right: 32px !important;
}

.mx-10 {
  margin-left: 40px !important;
  margin-right: 40px !important;
}

.mx-12 {
  margin-left: 48px !important;
  margin-right: 48px !important;
}

.mx-16 {
  margin-left: 64px !important;
  margin-right: 64px !important;
}

/* Margin Y */

.my-0 {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.my-1 {
  margin-top: 4px !important;
  margin-bottom: 4px !important;
}

.my-2 {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}

.my-3 {
  margin-top: 12px !important;
  margin-bottom: 12px !important;
}

.my-4 {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}

.my-5 {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

.my-6 {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

.my-8 {
  margin-top: 32px !important;
  margin-bottom: 32px !important;
}

.my-10 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

.my-12 {
  margin-top: 48px !important;
  margin-bottom: 48px !important;
}

.my-16 {
  margin-top: 64px !important;
  margin-bottom: 64px !important;
}

/* Margin Top */

.mt-0 {
  margin-top: 0px !important;
}

.mt-1 {
  margin-top: 4px !important;
}

.mt-2 {
  margin-top: 8px !important;
}

.mt-3 {
  margin-top: 12px !important;
}

.mt-4 {
  margin-top: 16px !important;
}

.mt-5 {
  margin-top: 20px !important;
}

.mt-6 {
  margin-top: 24px !important;
}

.mt-8 {
  margin-top: 32px !important;
}

.mt-10 {
  margin-top: 40px !important;
}

.mt-12 {
  margin-top: 48px !important;
}

.mt-16 {
  margin-top: 64px !important;
}

/* Margin Right */

.mr-0 {
  margin-right: 0px !important;
}

.mr-1 {
  margin-right: 4px !important;
}

.mr-2 {
  margin-right: 8px !important;
}

.mr-3 {
  margin-right: 12px !important;
}

.mr-4 {
  margin-right: 16px !important;
}

.mr-5 {
  margin-right: 20px !important;
}

.mr-6 {
  margin-right: 24px !important;
}

.mr-8 {
  margin-right: 32px !important;
}

.mr-10 {
  margin-right: 40px !important;
}

.mr-12 {
  margin-right: 48px !important;
}

.mr-16 {
  margin-right: 64px !important;
}

/* Margin Bottom */

.mb-0 {
  margin-bottom: 0px !important;
}

.mb-1 {
  margin-bottom: 4px !important;
}

.mb-2 {
  margin-bottom: 8px !important;
}

.mb-3 {
  margin-bottom: 12px !important;
}

.mb-4 {
  margin-bottom: 16px !important;
}

.mb-5 {
  margin-bottom: 20px !important;
}

.mb-6 {
  margin-bottom: 24px !important;
}

.mb-8 {
  margin-bottom: 32px !important;
}

.mb-10 {
  margin-bottom: 40px !important;
}

.mb-12 {
  margin-bottom: 48px !important;
}

.mb-16 {
  margin-bottom: 64px !important;
}

/* Margin Left */

.ml-0 {
  margin-left: 0px !important;
}

.ml-1 {
  margin-left: 4px !important;
}

.ml-2 {
  margin-left: 8px !important;
}

.ml-3 {
  margin-left: 12px !important;
}

.ml-4 {
  margin-left: 16px !important;
}

.ml-5 {
  margin-left: 20px !important;
}

.ml-6 {
  margin-left: 24px !important;
}

.ml-8 {
  margin-left: 32px !important;
}

.ml-10 {
  margin-left: 40px !important;
}

.ml-12 {
  margin-left: 48px !important;
}

.ml-16 {
  margin-left: 64px !important;
}

/* Negative Margins */

.-m-1 {
  margin: -4px !important;
}

.-m-2 {
  margin: -8px !important;
}

.-m-3 {
  margin: -12px !important;
}

.-m-4 {
  margin: -16px !important;
}

.-m-5 {
  margin: -20px !important;
}

.-m-6 {
  margin: -24px !important;
}

.-m-8 {
  margin: -32px !important;
}

.-m-10 {
  margin: -40px !important;
}

.-m-12 {
  margin: -48px !important;
}

.-m-16 {
  margin: -64px !important;
}

/* z-index Utilies */

.z-10 {
  z-index: 10 !important;
}

/* Position Utilities */

.top-0 {
  top: 0px !important;
}

.top-1 {
  top: 4px !important;
}

.top-2 {
  top: 8px !important;
}

.top-3 {
  top: 12px !important;
}

.top-4 {
  top: 16px !important;
}

.top-5 {
  top: 20px !important;
}

.top-6 {
  top: 24px !important;
}

.top-8 {
  top: 32px !important;
}

.top-10 {
  top: 40px !important;
}

.top-12 {
  top: 48px !important;
}

.top-16 {
  top: 64px !important;
}

.left-0 {
  left: 0px !important;
}

.left-1 {
  left: 4px !important;
}

.left-2 {
  left: 8px !important;
}

.left-3 {
  left: 12px !important;
}

.left-4 {
  left: 16px !important;
}

.left-5 {
  left: 20px !important;
}

.left-6 {
  left: 24px !important;
}

.left-8 {
  left: 32px !important;
}

.left-10 {
  left: 40px !important;
}

.left-12 {
  left: 48px !important;
}

.left-16 {
  left: 64px !important;
}

.right-0 {
  right: 0px !important;
}

.right-1 {
  right: 4px !important;
}

.right-2 {
  right: 8px !important;
}

.right-3 {
  right: 12px !important;
}

.right-4 {
  right: 16px !important;
}

.right-5 {
  right: 20px !important;
}

.right-6 {
  right: 24px !important;
}

.right-8 {
  right: 32px !important;
}

.right-10 {
  right: 40px !important;
}

.right-12 {
  right: 48px !important;
}

.right-16 {
  right: 64px !important;
}

.bottom-0 {
  bottom: 0px !important;
}

.bottom-1 {
  bottom: 4px !important;
}

.bottom-2 {
  bottom: 8px !important;
}

.bottom-3 {
  bottom: 12px !important;
}

.bottom-4 {
  bottom: 16px !important;
}

.bottom-5 {
  bottom: 20px !important;
}

.bottom-6 {
  bottom: 24px !important;
}

.bottom-8 {
  bottom: 32px !important;
}

.bottom-10 {
  bottom: 40px !important;
}

.bottom-12 {
  bottom: 48px !important;
}

.bottom-16 {
  bottom: 64px !important;
}

/* Position Utilities with !important */

.top-0-important {
  top: 0px !important;
}

.top-1-important {
  top: 4px !important;
}

.top-2-important {
  top: 8px !important;
}

.top-3-important {
  top: 12px !important;
}

.top-4-important {
  top: 16px !important;
}

.top-5-important {
  top: 20px !important;
}

.top-6-important {
  top: 24px !important;
}

.top-8-important {
  top: 32px !important;
}

.top-10-important {
  top: 40px !important;
}

.top-12-important {
  top: 48px !important;
}

.top-16-important {
  top: 64px !important;
}

.left-0-important {
  left: 0px !important;
}

.left-1-important {
  left: 4px !important;
}

.left-2-important {
  left: 8px !important;
}

.left-3-important {
  left: 12px !important;
}

.left-4-important {
  left: 16px !important;
}

.left-5-important {
  left: 20px !important;
}

.left-6-important {
  left: 24px !important;
}

.left-8-important {
  left: 32px !important;
}

.left-10-important {
  left: 40px !important;
}

.left-12-important {
  left: 48px !important;
}

.left-16-important {
  left: 64px !important;
}

.right-0-important {
  right: 0px !important;
}

.right-1-important {
  right: 4px !important;
}

.right-2-important {
  right: 8px !important;
}

.right-3-important {
  right: 12px !important;
}

.right-4-important {
  right: 16px !important;
}

.right-5-important {
  right: 20px !important;
}

.right-6-important {
  right: 24px !important;
}

.right-8-important {
  right: 32px !important;
}

.right-10-important {
  right: 40px !important;
}

.right-12-important {
  right: 48px !important;
}

.right-16-important {
  right: 64px !important;
}

.bottom-0-important {
  bottom: 0px !important;
}

.bottom-1-important {
  bottom: 4px !important;
}

.bottom-2-important {
  bottom: 8px !important;
}

.bottom-3-important {
  bottom: 12px !important;
}

.bottom-4-important {
  bottom: 16px !important;
}

.bottom-5-important {
  bottom: 20px !important;
}

.bottom-6-important {
  bottom: 24px !important;
}

.bottom-8-important {
  bottom: 32px !important;
}

.bottom-10-important {
  bottom: 40px !important;
}

.bottom-12-important {
  bottom: 48px !important;
}

.bottom-16-important {
  bottom: 64px !important;
}

.text-dark {
  color: #333333 !important;
}

.text-blue {
  color: var(--blue) !important;
}

.text-blue-light {
  color: var(--blue-light) !important;
}

.text-blue-shade {
  color: var(--blue-shade) !important;
}

.hover-text-blue:hover {
  color: var(--blue) !important;
}

.hover-text-blue-light:hover {
  color: var(--blue-light) !important;
}

.hover-text-blue-dark:hover {
  color: var(--blue-dark) !important;
}

.hover-border-blue-light:hover {
  border-color: var(--blue-light);
}

.hover-border-0:hover {
  border: solid 1px transparent !important;
}

.hover-background-blue-light:hover {
  background-color: var(--blue-light);
}

.hover-shadow-dark:hover {
  -webkit-box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.75);
  transition: all 0.2s ease;
}

.hover-shadow-dark-small:hover {
  -webkit-box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.75);
  transition: all 0.2s ease;
}

.text-bold {
  font-weight: bold;
}

.radius-0 {
  border-radius: 0px;
}

/* Border Utilities */

.border-b {
  border-bottom: solid 1px #ccc;
}

.border-b-2 {
  border-bottom: solid 4px;
}

.border-b-blue {
  border-color: var(--blue);
}

.border-b-transparent {
  border-bottom: solid 1px transparent;
}

.border-t {
  border-top: solid 1px #ccc;
}

.border-r {
  border-right: solid 1px #ccc;
}

.border-l {
  border-left: solid 1px #ccc;
}

.border-tl-0 {
  border-top-left-radius: 0px !important;
}

.border-bl-0 {
  border-top-left-radius: 0px !important;
}

.border-transparent {
  border: solid 1px transparent;
}

/* OJS STRUCTURE */

.pkp_structure_main:before,
.pkp_structure_main:after {
  width: 0px;
}

.bg-texture {
  background-color: aliceblue !important;
  background-image: url("../assets/images/texture.jpg");
  background-repeat: repeat;
}

@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1140px;
  }
}

@media (min-width: 768px) {
  .pkp_structure_content {
    padding: 20px 0px 10px 0px;
    width: 100%;
  }
  .pkp_structure_main {
    padding-left: 0px;
    padding-right: 0px;
  }
  .pkp_structure_main h1 {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 28px;
  }
}

div.pkp_structure_content.container {
  padding-top: 50px !important;
}

@media screen and (max-width: 1199px) {
  div.pkp_structure_content.container {
    padding-top: 20px !important;
  }
}

.alert {
  border-radius: 0px;
}

input.form-control {
  border-radius: 0;
}

input.form-control:focus {
  border: solid 1px var(--blue);
  box-shadow: unset;
}

input.form-control:focus {
  border-radius: 0;
  box-shadow: solid 2px #eee;
}

.btn {
  border-radius: 0px;
}

.btn:focus {
  border-radius: 0px;
}

.dropdown-toggle::after {
  content: none;
}

/* HEADER */

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

.navbar-brand {
  padding-left: 0px;
}

.navbar-brand-logo img {
  top: 0px !important;
  background-color: transparent !important;
  padding: 0px !important;
}

.jpai-logo {
  height: 36px;
}

.jpai-btn-browse {
  border: 0px;
  outline: none;
}

.jpai-browse {
  height: 60px;
}

@media screen and (max-width: 991px) {
  .jpai-browse {
    height: 40px;
  }
}

.jpai-browse .dropdown.d-flex:hover {
  border-bottom: solid 1px white;
  outline: none;
}

.jpai-browse .dropdown.d-flex,
.jpai-browse .dropdown.d-flex .has-chevron {
  border: 1px solid transparent;
}

.jpai-browse .dropdown.d-flex .has-chevron {
  padding-right: 12px;
}

.jpai-browse .dropdown.d-flex .has-chevron:hover {
  text-decoration: none;
}

#jpaiAnnouncement:hover {
  border: solid 1 px white;
  text-decoration: none;
  border-bottom: solid 1px white;
}

.second-dropdown-menu .btn-blue {
  padding: 5px 18px;
}

.second-dropdown-menu {
  transform: none !important;
  top: 100% !important;
  margin-top: 0 !important;
}

.second-dropdown-menu.show {
  display: block;
  position: absolute;
  z-index: 1032;
}

.jpai-browse a {
  padding: 0px 25px;
  color: white;
  font-size: 14px;
}

.active-no-border:active {
  border-color: transparent !important;
}

.jpai-browse ul.dropdown-menu.show {
  z-index: 1031;
}

/* PRIMARY MENU */

.pkp_site_nav_menu {
  background-color: transparent;
}

ul#navigationPrimary {
  display: inline-flex;
}

li a.index-about,
li a.view-issue-current,
li a.view-article-current,
li a.archive-issue,
li a.view-issue,
li a.view-article,
li a.submissions-about,
li a.editorialTeam-about,
li a.contact-about {
  border-bottom: solid 2px red;
}

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

ul#navigationPrimary li {
  position: relative;
}

ul#navigationPrimary li:hover {
  border-radius: 0 !important;
}

ul#navigationPrimary li a {
  border: none;
  color: var(--dark) !important;
  font-size: 14px;
  font-weight: bold;
  border-bottom: solid 3px transparent;
}

ul#navigationPrimary li a:hover,
ul#navigationPrimary li a:focus {
  text-decoration: none !important;
  border: none;
  color: var(--blue);
  border-bottom: solid 3px var(--blue);
}

@media (min-width: 992px) {
  .pkp_navigation_primary > li:hover ul {
    left: 0px !important;
  }
}

ul#navigationPrimary li a:hover::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--blue);
}

ul#navigationPrimary li ul.dropdown-menu li a {
  width: 100%;
  border-bottom: solid 3px transparent;
  font-weight: normal;
}

ul#navigationPrimary li ul.dropdown-menu li a:hover {
  border-bottom: solid 3px transparent;
  background-color: var(--muted);
  text-decoration: none;
}

ul#navigationPrimary li ul.dropdown-menu li a:hover::after {
  content: none !important;
}

/* NAVBAR MOBILE */

#userMenuMobile #navigationUser {
  display: block;
  height: auto !important;
  z-index: 1032;
}

#userMenuMobile #navigationUser > li:last-child a::before {
  display: none;
}

#userMenuMobile #navigationUser > li a {
  justify-content: start;
  padding: 10px 20px;
}

.mobile-user-icon {
  cursor: pointer;
}

.mobile-user-icon:hover i.fa-user {
  background-color: var(--blue-shade);
  color: white;
}

/* SECOND NAVIGATION */

.second-navigation {
  height: 42px;
  top: 121.38px;
  z-index: 1010;
}

@media screen and (max-width: 768px) {
  .second-navigation {
    top: 49px;
  }
  .second-navigation a {
    font-size: 12px;
  }
}

.second-navigation a {
  padding: 2px 8px;
  color: white;
  font-size: 16px;
  border: solid 1px transparent;
}

.second-navigation a.dropdown-toggle:hover {
  border: solid 1px #eee;
}

.second-navigation a.has-chevron::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M6%209L12%2015L18%209%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 5px;
  border: 0;
  transition: transform 0.3s ease;
}

.second-navigation a.has-chevron.rotate::after {
  transform: rotate(180deg);
}

ul.second-dropdown-menu {
  border: 2px solid rgba(0, 0, 0, 0.2);
  box-shadow: none;
  margin-top: 3px !important;
}

ul.second-dropdown-menu li a.dropdown-item {
  color: var(--blue);
  border-top: solid 1px #ddd;
}

.second-navigation.jpai-browse a {
  padding: 0px 25px;
  color: white !important;
  font-size: 16px;
}

button.jpai-content-alert:hover {
  background-color: #eee;
}

.jpai-browse li a {
  font-size: 14px;
  color: var(--blue);
  padding-top: 10px;
  padding-bottom: 10px;
}

.jpai-browse a:hover {
  text-decoration: underline;
}

.jpai-browse li a:hover {
  color: var(--blue-dark);
  text-decoration: none !important;
}

a.has-chevron::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M6%209L12%2015L18%209%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 5px;
  border: 0;
  transition: transform 0.3s ease;
}

a.has-chevron.rotate::after {
  transform: rotate(180deg);
}

/* POPUP ALERT  */

.jpai-benefits {
  list-style: none;
}

.jpai-benefits li span {
  font-size: 16px;
}

/* SUBHEADER */

.particles-js-canvas-el {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.jpai-homepage-title {
  font-size: 28px !important;
  font-weight: bold;
  margin: 0px !important;
  font-family: "Noto Sans", sans-serif;
}

@media screen and (max-width: 768px) {
  .jpai-openaccess {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}

.jpai-openaccess {
  color: var(--blue);
  font-size: 16px;
}

.jpai-openaccess::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20viewBox%3D%220%200%201792%201792%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20fill%3D%22%23ffa500%22%3E%3Cpath%20d%3D%22M1376%20768q40%200%2068%2028t28%2068v576q0%2040-28%2068t-68%2028h-960q-40%200-68-28t-28-68v-576q0-40%2028-68t68-28h32v-320q0-185%20131.5-316.5t316.5-131.5%20316.5%20131.5%20131.5%20316.5q0%2026-19%2045t-45%2019h-64q-26%200-45-19t-19-45q0-106-75-181t-181-75-181%2075-75%20181v320h736z%22/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 5px;
  margin-top: 2px;
}

.jpai-subheader-container {
  height: 150px;
}

.jpai-subheader-container a {
  font-size: 28px;
  z-index: 10;
  padding-left: 30px;
  margin-top: -30px;
}

.jpai-subheader-container a:hover {
  text-decoration: underline !important;
}

.jpai-bg-header {
  background-image: url("../assets/images/jpai-bg.jpg");
  width: 100%;
  height: auto;
  object-fit: contain;
  background-repeat: no-repeat;
}

.jpai-subheader-belt {
  top: 35px;
  left: 0px;
}

.jpai-subheader-card {
  position: relative;
  margin-top: -30px;
  border: solid 1px #eaeaea;
  z-index: 11;
  border-radius: 2px;
}

.jpai-association img {
  margin-left: 20px;
  height: 42px;
}

#modalContentAlert .modal-title.text-center {
  font-size: 24px;
  font-family: "Noto Sans", sans-serif;
  font-weight: bold;
}

.modal-header {
  border-bottom: 0;
}

.modal-backdrop {
  z-index: unset;
}

.jpai-breadcrumb a {
  font-weight: 600;
  color: white;
  font-size: 13px;
}

.jpai-breadcrumb > a.triangle::before {
  display: inline-block;
  border-style: solid;
  border-width: 5px 0 5px 10px;
  border-color: transparent transparent transparent #ffb3b3;
  content: "";
  margin-right: 5px;
}

nav.cmp_breadcrumbs {
  display: none;
}

/* SECONDARY TITLE */

@media screen and (max-width: 768px) {
  #searchWidget a.h3 {
    margin: 0 auto;
  }
}

/* SEARCH BAR */

#upperSearch {
  padding: 8px 0px;
  top: 73px;
  z-index: 1022;
  border: 0;
  border-left: solid 1px #eee;
}

#upperSearch div.relative.bg-white {
  padding: 10px 0px;
  border-top: solid 1px #bfbfbf;
}

@media screen and (max-width: 991px) {
  #upperSearch div.relative.bg-white {
    top: 8px;
    border-top: none;
  }
}

#upperSearch input.form-control {
  height: 56px;
  border-radius: 5px;
}

#upperSearch .button-search {
  background-color: var(--blue);
  color: white;
  border-radius: 5px;
  height: 56px;
  padding: 15px;
}

#upperSearch .button-search:hover {
  background-color: #850600cf;
}

#upperSearch button.close-search:hover {
  background-color: #eee;
}

#upperSearch button.close-search {
  background-color: white;
  padding: 8px 0px;
  border-radius: 5px;
  height: 56px;
  right: 10px;
  top: 10px;
  padding: 15px;
}

#upperSearchForm {
  height: 60px;
  position: relative;
  top: 0px;
}

#searchBar {
  width: 400px;
}

#searchBar button {
  height: 33px;
}

.form-upper-search,
.form-upper-search::placeholder,
.form-upper-search:focus-visible {
  height: 30px !important;
  background-color: transparent;
  color: white !important;
  font-size: 16px;
  width: 100%;
  border: none;
  border-bottom: solid 1px white !important;
  border-radius: 0;
  outline: none;
}

@media screen and (max-width: 1500px) {
  #upperSearchForm {
    margin-right: 100px;
  }
}

.search-filler {
  background-color: rgb(0 0 0 / 50%);
  height: 100vh;
  width: 100%;
}

form.d-flex {
  border: solid 1px transparent;
  transition: border 0.3s ease;
  box-sizing: border-box;
}

.jpai-search-label {
  box-sizing: border-box;
  border: solid 1px #ccc;
  border-right: 0;
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px !important;
  background-color: #eee;
  padding: 5px;
}

.jpai-search-label:focus-within {
  border: 0px;
}

.jpai-search-input {
  border-top: solid 1px #ccc;
  border-left: solid 1px #ccc;
  border-bottom: solid 1px #ccc;
  border-right: none;
  border-radius: 0px;
  padding: 19px;
}

.jpai-search-input:focus {
  box-shadow: unset;
}

.jpai-btn-search {
  border-top: solid 1px #ccc;
  border-right: solid 1px #ccc;
  border-bottom: solid 1px #ccc;
  border-left: none;
  border-radius: 0px;
}

.jpai-btn-search:hover {
  border-top: solid 1px #aaa;
  border-right: solid 1px #aaa;
  border-bottom: solid 1px #aaa;
  border-left: none;
}

.btn:active:focus {
  outline: none;
}

.btn-outline-jpai {
  border: solid 1px teal;
  padding: 10px;
  border-radius: 2px;
  color: teal;
}

.btn-outline-jpai:hover {
  border: solid 1px teal !important;
  background-color: rgb(239, 255, 255);
  color: teal !important;
}

.btn-jpai {
  padding: 10px;
  border-radius: 2px;
  background-color: teal;
  color: white;
}

.btn-jpai:hover,
.btn-jpai:focus {
  border-color: rgb(0, 104, 104) !important;
  padding: 10px;
  border-radius: 2px;
  background-color: rgb(0, 104, 104) !important;
  color: white !important;
}

.jpai-search-icon {
  height: 26px;
}

.jpai-mobile-search {
  border: solid 1px #ccc;
  height: 40px;
  padding-right: 35px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.jpai-mobile-search:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: solid 1px teal;
}

.pkp_navigation_user_wrapper {
  position: static;
}

/* PROFILE ICON */

#profileDropdown span {
  font-size: 12px;
  color: #333;
}

.nav-link.dropdown-toggle::after {
  display: none;
}

.dropdown-menu {
  padding: 0px;
  box-shadow: 3px 3px #e5e5e5;
  border-radius: 0px;
  border: solid 1px #eee;
}

nav.dropdown-menu {
  border-radius: 0px;
  padding: 0px;
}

#discoverContent > li > a {
  height: 46px;
}

#discoverContent > li > a:hover {
  background-color: #eaeaea;
}

#discoverContent::before {
  content: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg' class='topnavbar-icon'%3E%3Cpath d='M10 19C14.9706 19 19 14.9706 19 10C19 5.02944 14.9706 1 10 1C5.02944 1 1 5.02944 1 10C1 14.9706 5.02944 19 10 19Z' fill='none' stroke='%23333333' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3Cpath d='M13.816 6.18401L11.908 11.908L6.18401 13.816L8.09201 8.09201L13.816 6.18401Z' fill='none' stroke='%23333333' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3C/svg%3E");
  width: 26px;
  margin-top: 5px;
  margin-right: 5px;
  display: inline-block;
  transition: filter 0.3s ease;
  /* Tambahkan transisi untuk efek halus */
}

#discoverContent:hover::before {
  filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(749%)
    hue-rotate(158deg) brightness(94%) contrast(101%);
}

#navigationUserWrapper {
  height: 80px;
}

#navigationUser {
  display: inline-flex;
  margin-bottom: 0;
}

#navigationUser li.dropdown {
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 991px) {
  #navigationUser li.dropdown a.dropdown-toggle {
    color: white;
    background-color: var(--jpai-accent);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
  }
}

#navigationUser > li.dropdown > ul.dropdown-menu-end {
  margin-left: 0px;
  padding-left: 0px;
}

ul.dropdown-menu-end li:last-of-type a:hover {
  background-color: var(--danger) !important;
  color: white !important;
}

#navigationUser > li:last-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#navigationUser > li:first-child a::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-user-plus'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'%3E%3C/path%3E%3Ccircle cx='8.5' cy='7' r='4'%3E%3C/circle%3E%3Cline x1='20' y1='8' x2='20' y2='14'%3E%3C/line%3E%3Cline x1='23' y1='11' x2='17' y2='11'%3E%3C/line%3E%3C/svg%3E");
  margin-top: 5px;
  margin-right: 5px;
  display: inline-block;
}

#navigationUser > li:first-child a:hover::before {
  filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(749%)
    hue-rotate(158deg) brightness(94%) contrast(101%);
}

#navigationUser > li:last-child a::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23333333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-user'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'%3E%3C/path%3E%3Ccircle cx='12' cy='7' r='4'%3E%3C/circle%3E%3C/svg%3E");
  margin-top: 5px;
  margin-right: 5px;
  display: inline-block;
}

#navigationUser > li > a:hover::before {
  filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(749%)
    hue-rotate(158deg) brightness(94%) contrast(101%);
}

#navigationUser > ul > li > ul.dropdown-menu.dropdown-menu-end {
  position: absolute;
  top: 90px;
  right: 0px;
  margin-top: 0px;
}

#navigationUser > ul > li > ul.dropdown-menu.dropdown-menu-end.show {
  border-radius: 5.25px;
  margin-top: 0px;
}

#navigationUser ul.dropdown-menu-end > li a {
  padding: 10px 15px;
  width: 100%;
  font-size: 14px;
  justify-content: left;
}

#navigationUser ul.dropdown-menu-end > li a::before {
  content: "" !important;
}

#navigationUser ul.dropdown-menu-end > li > a > span.badge {
  display: block;
  margin-left: 10px;
  color: white;
  padding: 5px;
  background-color: var(--blue);
  border-radius: 5px;
}

#navigationUser,
ul#navigationUser li {
  width: 100% !important;
  list-style-type: none;
}

ul#navigationUser li a {
  width: 100%;
  border-radius: 0px;
  color: var(--dark);
  font-size: 14px;
  padding: 0px 15px;
  flex: 1 1 auto !important;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
}

ul#navigationUser li a:hover {
  color: var(--blue);
  background-color: #f3f3f3;
}

a.dropdown-submenu::before {
  display: none;
}

.nav-pills > li + li {
  margin-left: unset;
}

#navigationUser > li.dropdown > ul.dropdown-menu.dropdown-menu-end {
  position: absolute;
  top: 48px;
  right: 0px;
  margin-top: 0px;
  z-index: 1021;
}

ul.dropdown-menu.show li a.dropdown-item:active {
  background-color: #eee;
}

.navbar-nav .dropdown-menu {
  position: absolute;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
  width: 150px;
}

a.nav-link.dropdown-toggle {
  padding: 10px;
  word-wrap: break-word;
}

span.badge {
  display: none;
}

.dropdown-menu-browse > li > a {
  border-left: solid 2px transparent;
  color: #333 !important;
}

.dropdown-menu-browse > li > a:hover {
  border-left: solid 2px teal;
}

.jpai-black-link {
  color: #333;
  text-decoration: underline;
  white-space: nowrap;
}

.jpai-black-link:hover {
  color: teal !important;
  text-decoration: underline !important;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .jpai-association {
    display: none;
  }
  .jpai-belt {
    flex-direction: column;
  }
  .jpai-left-belt {
    justify-content: start;
  }
  .jpai-right-belt {
    justify-content: start;
  }
}

/* INDEX JOURNAL BODY*/

body.view-article-current .bg-texture,
body.view-article .bg-texture {
  background-color: white !important;
  background-image: unset;
}

body.view-article-current #jpaiBreadcrumbHome,
body.view-article #jpaiBreadcrumbHome {
  border-bottom: solid 1px #e1e1e1;
}

body.view-article-current #secondNavigation,
body.view-article-current #jpaiParticles,
body.view-article #secondNavigation,
body.view-article #jpaiParticles {
  display: none !important;
}

#journalOverview h4 {
  font-size: 22px;
}

#overviewTab li:first-of-type {
  border-radius: 5px 5px 0px 0px;
}

#overviewTab li a.active {
  position: relative;
}

#overviewTab li a.active:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--blue);
}

.breadcrumb > li + li:before {
  padding: 0 5px;
  color: #ccc;
  content: "/\00a0";
}

h2.media-heading > a.title {
  font-family: "Noto Sans", sans-serif;
  font-weight: 600;
  color: teal;
}

h2.media-heading > a.title:hover {
  text-decoration: underline !important;
}

h2.media-heading > div.series.lead {
  font-size: 16px;
  color: #555 !important;
}

img.jpai-homepage-image {
  width: 150px;
  height: auto;
}

.jpai-description-box {
  padding: 10px;
  border: solid 1px #ccc;
  background-color: #fafafa;
}

div.journal-description p a {
  color: #006acc;
  text-decoration: underline;
}

div.journal-description p a:hover {
  color: teal;
  text-decoration: underline !important;
}

#articlesBySameAuthorList {
  display: none;
}

#similarArticles ul li a {
  margin: 20px 0px !important;
}

#similarArticles ul li a:hover {
  text-decoration: underline !important;
}

.jpai-article-nav li button.nav-link.active {
  border-bottom: solid 2px var(--blue);
  background-color: var(--blue);
  color: white;
}

button.nav-link {
  color: var(--dark);
}

button.nav-link:hover {
  background-color: var(--blue-shade);
}

/* TOC */

.current_issue h3 {
  font-size: 22px;
}

.jpai-current-issue-title {
  font-weight: bold;
  color: teal;
}

div.issue-details > p.published {
  margin-top: 0px !important;
  padding-top: 0px !important;
  margin-bottom: 30px !important;
  color: #666;
}

header.page-header {
  border-bottom: 0px;
}

header.page-header.mb-4 {
  margin-bottom: 0px !important;
  padding-bottom: 5px !important;
}

header.page-header.mb-4 h2 {
  margin-bottom: 0px !important;
  padding-bottom: 0px !important;
  font-weight: normal;
}

/* TOC - Article Summary */

.jpai-article-summary {
  padding: 10px;
  margin: -1px 0px;
  border-bottom: solid 1px #ccc;
}

section.section > div.page-header {
  display: none;
}

.pkp_structure_main h2 {
  font-family: "Montserrat", sans-serif !important;
  font-size: 28px;
  margin-top: 0;
}

.text-pretitle {
  color: #666;
  font-size: 12px;
}

h3.media-heading {
  padding-bottom: 0px !important;
  margin: 0px !important;
}

.jpai-article-title a {
  position: relative;
  font-weight: normal !important;
  font-size: 20px !important;
  color: #333 !important;
  font-family: "Noto Sans", sans-serif !important;
}

.jpai-article-title > a::after {
  content: "";
  position: absolute;
  bottom: 2px;
  right: -17px;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2218%22%20height%3D%2218%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%235b0602%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20class%3D%22feather%20feather-chevron-right%22%3E%3Cpolyline%20points%3D%229%2018%2015%2012%209%206%22/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition:
    transform 0.3s ease,
    right 0.3s ease;
}

.jpai-article-title a:hover::after {
  right: -23px;
}

.jpai-article-title a:hover {
  text-decoration: underline !important;
  color: var(--blue) !important;
}

span.jpai-article-separator {
  color: #ccc !important;
}

.jpai-galley-link {
  border: solid 1px var(--blue) !important;
  background-color: var(--blue-shade) !important;
  color: var(--blue) !important;
  font-size: 12px;
  font-weight: 500;
}

.jpai-galley-link:hover {
  background-color: var(--blue) !important;
  color: #fff !important;
}

.btn-jpai-all-issues {
  background-color: #f65c544a;
  color: var(--blue) !important;
  border: solid 1px var(--blue);
  padding: 5px 10px;
}

.btn-jpai-all-issues:hover {
  background-color: var(--blue);
  color: white !important;
}

@media (max-width: 767px) {
  .jpai-article-btn-group {
    flex-direction: column;
  }
  .d-flex.align-items-center.justify-content-end.w-100 {
    justify-content: flex-start !important;
    margin-top: 5px;
  }
}

a.galley-link.btn.btn-primary.pdf {
  border: solid 1px teal;
  padding: 5px 15px;
  color: teal;
  background-color: rgb(239, 255, 255);
}

a.galley-link.btn.btn-primary.pdf:hover {
  border: solid 1px teal;
  padding: 5px 15px;
  color: white;
  background-color: teal;
}

div.meta > div.authors {
  color: #666;
  font-size: 13px;
}

p.pages {
  color: teal;
  font-size: 13px;
  margin: 0px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.jpai-doi {
  height: 16px;
}

.jpai-doi-link {
  color: var(--blue);
}

.jpai-doi-link:hover {
  color: var(--blue);
  text-decoration: underline !important;
}

.jpai-openaccess-triangle {
  right: 0;
  bottom: 0;
  margin-right: -20px;
  margin-bottom: -5px;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 30px solid var(--jpai-accent);
  transform: rotate(-45deg);
}

.img-openaccess {
  height: 14px;
  bottom: 5px;
  right: 5px;
}

/* UTILITIES */

.hover-cursor-pointer:hover {
  cursor: pointer;
}

.hover-shadow:hover {
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1) !important;
}

.indexing-hover-shadow:hover {
  -webkit-box-shadow: 1px 2px 12px 2px rgba(135, 135, 135, 0.35) !important;
  -moz-box-shadow: 1px 2px 12px 2px rgba(135, 135, 135, 0.35) !important;
  box-shadow: 1px 2px 12px 2px rgba(135, 135, 135, 0.35) !important;
}

.hover-blue:hover {
  color: var(--blue) !important;
}

.hover-bg-light:hover {
  background-color: #f1f1f1 !important;
}

.hover-bg-blue:hover {
  background-color: var(--blue) !important;
}

.hover-bg-accent:hover {
  background-color: var(--jpai-accent) !important;
}

.hover-bg-blue-dark:hover {
  background-color: var(--blue-dark) !important;
}

.hover-bg-blue-light:hover {
  background-color: var(--blue-light) !important;
}

.bg-muted {
  background-color: var(--muted);
}

.text-notosans {
  font-family: "Noto Sans", sans-serif !important;
}

.text-montserrat {
  font-family: "Montserrat", sans-serif !important;
}

.top-0 {
  top: 0px;
}

.right-0 {
  right: 0px;
}

.jpai-bg-light {
  background-color: #f8f9fa;
}

.bg-lighter {
  background-color: #f1f1f1;
}

.bg-blue {
  background-color: var(--blue) !important;
}

.bg-blue-dark {
  background-color: var(--blue-dark) !important;
}

.bg-blue-light {
  background-color: var(--blue-light) !important;
}

.bg-blue-shade {
  background-color: var(--blue-shade) !important;
}

.bg-accent {
  background-color: var(--jpai-accent) !important;
}

.bg-orange {
  background-color: var(--orange-scopus) !important;
}

.bg-gray {
  background-color: gray !important;
}

.hover-bg-yellow:hover {
  background-color: var(--yellow) !important;
}

.hover-bg-orange:hover {
  background-color: var(--orange-scopus) !important;
}

.border-blue {
  border-color: var(--blue) !important;
}

.border-yellow {
  border-color: var(--yellow) !important;
}

.border-gray {
  border-color: gray !important;
}

.border-blue-light {
  border-color: var(--blue-light) !important;
}

.hover-border:hover {
  border: solid 1px;
}

.hover-border-b-white:hover {
  border-bottom: solid 1px white;
}

.text-yellow {
  color: var(--yellow) !important;
}

.text-blue {
  color: var(--blue) !important;
}

.text-gray {
  color: gray !important;
}

.text-lighter {
  color: #db9a97 !important;
}

.hover-text-white:hover {
  color: white !important;
}

.hover-underline-white:hover {
  text-decoration: underline !important;
}

.link-blue {
  color: var(--blue) !important;
}

.link-blue:hover {
  color: var(--blue-light) !important;
}

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

.btn-blue {
  background-color: var(--blue);
  color: white;
}

.btn-accent {
  padding: 5px 15px;
  border: solid 1px white;
  border-radius: 5px;
  background-color: var(--jpai-accent);
}

.btn-accent:hover {
  border: solid 1px transparent;
  border-radius: 5px;
  background-color: var(--jpai-accent-light);
  transition: all 0.3s;
  animation: fadeIn 0.3s fade-in;
}

.btn-dark {
  padding: 5px 15px;
  border: solid 1px white;
  border-radius: 5px;
  background-color: black;
}

.btn-dark:hover {
  border: solid 1px transparent;
  border-radius: 5px;
  background-color: rgb(58, 58, 58);
  transition: all 0.3s;
  animation: fadeIn 0.3s fade-in;
}

.btn-blue:hover {
  background-color: var(--blue-light);
  color: white;
}

.btn-outline-blue {
  outline: 1px solid var(--blue);
  color: var(--blue);
}

.btn-outline-blue:hover {
  background-color: var(--blue);
  color: white;
}

.btn-blue-light {
  background-color: var(--blue-light);
  color: white;
  border: solid 1px var(--blue-dark);
}

.btn-blue-light:hover {
  background-color: var(--blue);
  color: white;
}

.font-medium {
  font-weight: 600;
}

.nowrap {
  white-space: nowrap;
}

.bg-soft-pink {
  background-color: #ffeaea;
}

.grow {
  flex-grow: 1;
}

.top-1 {
  top: 4px;
}

.right-1 {
  right: 4px;
}

.top-2 {
  top: 8px;
}

.right-2 {
  right: 8px;
}

.underline {
  text-decoration: underline;
}

/* CUSTOM BLOCK */

@media screen and (min-width: 768px) {
  .pkp-block {
    width: 100%;
  }
  .pkp_block.block_custom {
    padding-right: 0px;
    padding-left: 0px;
    padding-top: 0rem;
    padding-bottom: 1rem;
    width: 100%;
  }
  .jpai-current-issue-title {
    font-size: 20px;
  }
}

#customblock-jpai-indexing-and-abstracting a img {
  height: 24px;
}

/* UPPER FOOTER */

#upperFooter a {
  color: #fff;
}

#downFooter a {
  color: #fff;
}

.jpai-widget-wrapper p {
  font-size: 16px;
}

.jpai-widget-wrapper ul li a {
  color: #ffbab7 !important;
}

.jpai-widget-list {
  list-style-type: none;
  padding-left: 0rem !important;
}

/* FOOTER */

.shadow-inset-top {
  box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.1);
}

.jpai-logo-wrapper {
  padding-right: 0px !important;
}

.jpai-logo img,
.jpai-links img,
.jpai-sosmed img {
  height: 54px;
  width: auto;
  margin-bottom: 20px;
}

.jpai-logo ul,
.jpai-links ul,
.jpai-sosmed ul {
  padding-left: 0px;
  margin-top: 5px;
}

.jpai-logo ul li a,
.jpai-links ul li a,
.jpai-sosmed ul li a {
  color: #555;
}

.jpai-logo ul li a:hover,
.jpai-links ul li a:hover,
.jpai-sosmed ul li a:hover {
  color: teal;
  text-decoration: underline !important;
}

.jpai-logo ul li,
.jpai-links ul li,
.jpai-sosmed ul li {
  list-style-type: none;
  padding-bottom: 8px;
  margin-left: 0px;
  padding-left: 0px;
  font-size: 12px;
  color: #555 !important;
}

.jpai-footer-subtitle {
  font-size: 18px;
  color: #555;
}

.jpai-attributions {
  padding-top: 20px;
  border-top: solid 1px #ccc;
}

.jpai-attributions a,
p.copyright {
  color: #555;
  font-size: 12px;
}

.jpai-attributions a:hover {
  color: teal;
  text-decoration: underline;
}

p.copyright {
  margin-top: 5px;
}

/* BACK TO TOP */

#back-to-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  cursor: pointer;
  background-color: var(--jpai-accent);
  border: none;
  color: #fff;
  padding: 10px;
}

#back-to-top:hover {
  background-color: var(--jpai-accent-light);
}

#back-to-top svg {
  fill: #fff;
}

/* ARTICLE DETAILS */

.jpai-article-sidebar h3 {
  padding-top: 10px;
}

.scroll-margin-top {
  scroll-margin-top: 50px !important;
}

#jpaiCopyright > div > h1 > strong > span {
  display: none;
}

#jpaiCitationModal .modal-backdrop.fade.show {
  position: relative;
  z-index: 1030;
}

#jpaiCitationModal .modal-content {
  position: relative;
  z-index: 1031;
}

.accordion-body p {
  margin-top: 4px;
  margin-bottom: 4px;
  font-size: 12px;
}

.accordion-body p:empty,
.accordion-body p:has(&nbsp) {
  display: none;
}

div.item.citations-container {
  margin-top: 50px;
}

h1.page-header {
  font-weight: normal;
  font-family: "Open Sans", serif;
}

.article-summary h2 {
  font-family: "Open Sans", serif;
}

span.caret {
  display: none;
}

.list-group {
  border-radius: 0px;
  margin-top: 10px;
}

.list-group-item.doi a {
  word-break: break-word;
  font-size: 12px;
}

div.author strong {
  color: #555;
}

div.article-author-affilitation {
  color: #555;
}

/* ORCID ICON */

.jpai-orcid_icon {
  fill: #a6ce39;
  width: 14px;
  height: 14px;
}

.jpai-orcid_icon .jpai-st0 {
  fill: #a6ce39;
}

.jpai-orcid_icon .jpai-st1 {
  fill: #ffffff;
}

.jpai-author-item {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.jpai-orcid-link {
  display: inline-flex;
  align-items: center;
  margin-left: 5px;
}

/* OVERVIEW */

#overviewTab li.nav-item a {
  background-color: #eee;
  color: var(--blue);
}

#overviewTab li.nav-item a:hover {
  background-color: var(--blue);
  color: white;
}

.rounded {
  border-radius: 5px !important;
}

.rounded-tl {
  border-radius: 5px 0px 0px 0px !important;
}

.rounded-tr {
  border-radius: 0px 5px 0px 0px !important;
}

.rounded-0 {
  border-radius: 0px !important;
}

#overviewContent {
  border: solid 1px #d3d2d2;
  padding: 10px;
}

div.fade-area {
  height: 100px;
  margin-top: -98px;
  margin-bottom: 2px;
  position: relative;
  background: linear-gradient(to bottom, rgba(100, 100, 100, 0) 0, #fff 90%);
}

.aims-cta a {
  color: var(--blue);
  font-size: 16px;
}

.aims-cta a:hover {
  color: var(--blue);
  text-decoration: underline !important;
}

/* SIDEBAR */

.jpai-sidebar {
  padding-right: 0px;
  margin-right: 0px;
}

.jpai-sidebar h2 {
  font-size: 22px;
  font-weight: bold !important;
}

/* ANNOUNCEMENTS / UPDATES */

body.index-announcement .pkp_structure_content,
body.view-announcement .pkp_structure_content {
  margin-top: 24px !important;
  background-color: white;
  margin-bottom: 24px;
}

.pkp_page_index .cmp_announcements {
  border-top: 0;
}

.cmp_announcements .list-group {
  border: solid 1px #808080;
  border-radius: 5px;
}

.cmp_announcements .list-group-header {
  color: white;
  font-size: 16px;
  font-weight: 500;
  background-color: var(--blue);
  padding: 10px;
}

.cmp_announcements .list-group a {
  padding: 10px;
  color: var(--blue);
  font-size: 16px;
  border-bottom: solid 1px #808080;
}

.cmp_announcements .list-group a:hover {
  color: var(--blue-shade);
  text-decoration: underline !important;
}

.page.page_announcements > h1,
.announcement-full .page-header h1 {
  font-family: "Montserrat", sans-serif;
}

.page.page_announcements > p {
  background-color: var(--blue-shade);
  padding: 10px;
  text-align: justify;
}

article.announcement-summary .media-body h2.media-heading a {
  color: #333;
}

.announcement-summary .media-body p img,
.announcement-summary .media-body p strong img,
.announcement-summary .media-body img {
  max-height: 200px;
  text-align: center;
}

/* PAGE - LOGIN */

.text-xl {
  font-size: 2rem !important;
}

.page_login .login {
  max-width: 100%;
}

.jpai-login-username,
.jpai-login-password,
.jpai-forgot-password-email {
  position: relative;
}

.jpai-login-username::before {
  content: "";
  background-image: url("https://icongr.am/fontawesome/envelope.svg?size=128&color=058bc0");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 10px;
  top: 67%;
  transform: translateY(-50%);
}

.jpai-login-password::before {
  content: "";
  background-image: url("https://icongr.am/fontawesome/unlock-alt.svg?size=128&color=058bc0");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 10px;
  top: 70%;
  transform: translateY(-50%);
}

.jpai-forgot-password-email::before {
  content: "";
  background-image: url("https://icongr.am/fontawesome/envelope.svg?size=128&color=871a2d");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.jpai-login-username input,
.jpai-login-password input,
.jpai-forgot-password-email input {
  padding-left: 40px;
}

/* PAGE - LOST PASSWORD */

.page_lost_password .lost_password {
  max-width: 100%;
}

.btn-reset-password {
  background-color: var(--blue) !important;
  padding: 5px 15px !important;
  color: white !important;
}

.btn-reset-password:hover {
  background-color: var(--blue-light) !important;
}

/* PAGE - REGISTER */

.jpai-registration-form-identity label {
  width: 100%;
}

/* PAGE - ABOUT */

.col-12.col-md-9.pr-4 p a {
  color: var(--blue) !important;
}

.col-12.col-md-9.pr-4 p a:hover {
  color: var(--blue-light) !important;
  text-decoration: underline !important;
}

.a2a_kit a span {
  width: 22px;
  line-height: 22px;
  height: 22px;
  background-size: 22px;
  border-radius: 3px;
}

/* PAGE - CURRENT ISSUE */

.jpai-current-issue-title {
  font-size: 16px;
}

/* PAGE - AUTHOR GUIDELINES */

.table2 td {
  padding: 10px;
}

/* PAGE - ARTICLE DETAILS */

.breadcrumb > li + li:before {
  display: inline-block;
  border-style: solid;
  border-width: 5px 0 5px 10px;
  border-color: transparent transparent transparent #ffb3b3;
  content: "";
  margin-left: 10px;
  margin-right: 0px !important;
}

.jpai-citation-modal a.dropdown-item.text-dark.hover-text-blue:active {
  background-color: var(--muted);
}

/* PAGE - SEARCH */

.jpai-searchpage-btn {
  border-radius: 0px !important;
  background-color: var(--blue) !important;
  color: white !important;
  border: var(--blue) !important;
}

.jpai-searchpage-btn:hover {
  background-color: var(--blue-light) !important;
  color: white !important;
}

/* PAGE ABOUT JPAI */

#jpaiPageAccordion button.accordion-button:focus {
  box-shadow: none !important;
}

/* DISPLAY PROPS */

.min-w-100 {
  min-width: 100% !important;
}

@media (min-width: 1367px) {
  .container {
    max-width: 1340px;
  }
}

div.page_editorial_team p a {
  color: var(--blue) !important;
}

div.page_editorial_team p a:hover {
  color: var(--blue-light) !important;
  text-decoration: underline !important;
}

div.page.page_about p a {
  color: var(--blue) !important;
}

div.page.page_about p a:hover {
  color: var(--blue-light) !important;
  text-decoration: underline !important;
}

/* HERO SECTIONS */

#a2apage_dropdown {
  margin-left: -2px;
  margin-top: -1px;
  border: solid 1px white;
  border-radius: 0;
}
