@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@400;500;600;700&family=Source+Serif+4:opsz,wght@8..60,400;8..60,500;8..60,600;8..60,700&display=swap");

:root {
  --ff-primary: "Outfit", sans-serif;
  --ff-secundary: "Inter", sans-serif;
  --ff-source: "Source Serif 4";
}

html,
body {
  font-family: var(--ff-primary);
  font-size: 1rem;
}

body.green {
  background-color: #244d4d;
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.pkp_structure_page {
  background-color: #fff;
}

/* Inicio contenedor del contenido de la pagina, entre el header y footer */
.pkp_structure_content.container {
  display: grid;
  grid-template-columns: 1fr 255px;
  padding: 2rem 0rem;
  /* gap: 1.5rem; */
}

.pkp_structure_content.none {
  display: initial;
}

.container {
  width: 1200px;
  padding: 0;
}

/* Fin contenedor del contenido de la pagina, entre el header y footer */

/*1 /////////////////////////// */

/* Inicio contenidor central */
.pkp_structure_main {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  padding: 0rem 2rem 0 0;
  width: 100%;
}

/* Fin contenidor central */

/*1 /////////////////////////// */

/* Inicio Header */

/* Inicio contenedor principal */
.navbar {
  margin-bottom: 0;
}

.navbar.navbar-default {
  background-color: #fff;
  /* border-bottom: 1px solid #e2e2e2; */
  border: 0;
  border-bottom: 1px solid #244d4d59;
}

.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus,
.header_view .navbar-nav > .open > a,
.header_view .navbar-nav > .open > a:hover,
.header_view .navbar-nav > .open > a:focus {
  background-color: transparent;
  opacity: 0.7;
}

/* Fin contenedor principal */

/* Inicio contendor de menu superior e inferior */
.container-fluid {
  padding: 0;
}

/* Inicio menu superior */
.container-fluid:nth-child(1) {
  /* border-bottom: 1px solid #e2e2e2; */
  border-bottom: 1px solid #244d4d59;
}

.row nav ul#navigationUser {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1rem;
}

.row nav ul#navigationUser::before,
.row nav ul#navigationUser::after {
  display: none;
}

#navigationUser li:not(.menu-item-25) a {
  color: #020202;
  font-family: var(--ff-primary);
  font-size: 0.9rem;
  text-transform: capitalize;
  font-weight: 400;
  letter-spacing: 0;
}

.nav-pills > li.menu-item-25 {
  flex: 2;
}

.nav-pills > li.menu-item-25 {
  display: flex;
  flex-direction: row-reverse;
  gap: 1rem;
  align-items: center;
  justify-content: start;
}

.nav-pills > li.menu-item-25 a {
  padding: 0;
  width: max-content;
}

#navigationUser .menu-item-25 > a {
  display: none;
}

.navbar-header {
  /* width: 7rem; */
}

.navbar-header .site-name {
  width: 100%;
}

.navbar-header .site-name a {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.navbar-header .site-name a img {
  width: 4rem;
  height: 100%;
}

.nav-pills > li > a > .badge {
  display: none;
}

/* Fin menu superior */

/* Inicio menu inferior */

.navbar-default .navbar-nav > li > a {
  color: white;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--ff-secundary);
  font-size: 0.875rem;
  padding: 18px 0;
  transition: all 0.4s ease;
  position: relative;
}

.navbar-default .navbar-nav li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  border-bottom: 3px solid #244d4d;
  transition: all 0.4s ease;
}

.navbar-default .navbar-nav li > a:hover,
button.btn-default[type="submit"]:hover {
  opacity: 0.7;
  color: #cbcbcb;
  background-color: transparent;
}

/* .navbar-default .navbar-nav li > a:hover::after{
  width: 100%;
} */

.row,
.container-fluid:nth-child(2) > nav {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.container-fluid:nth-child(2) {
  background-color: #244d4d;
}

/* Inicio contenedor lista de opciones */
.navbar-collapse {
  padding: 0;
  background-color: #244d4d;
}

#main-navigation {
  display: flex;
  align-items: center;
  gap: 1rem;
}

#main-navigation::before {
  display: none;
}

.navbar-nav > li > .dropdown-menu,
.open > .dropdown-menu {
  padding: 1rem;
  border-radius: 8px;
  background-color: #fff;
  border: 0;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.09);
  transform: translateY(10%);
}

.navbar-form .form-control {
  display: inline-block;
  width: auto;
  vertical-align: middle;
  width: 300px;
}

.navbar-form.navbar-left {
  padding: 0;
}

.form-group input[type="search"] {
  visibility: hidden;
}

button.btn-default[type="submit"] {
  background-color: transparent;
  border: 0;
  color: white;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Fin contenedor lista de opciones */
/* Fin menu inferior */

/*ul.dropdown-menu {
  background-color: #773141;
}*/

.dropdown-menu > li > a {
  color: white;
}

/*.dropdown-menu > li > a {
  color: white;
}*/

ul.dropdown-menu a {
  color: #020202;
  font-family: var(--ff-primary);
  padding: 4px 0;
}

/* Fin Header */

/*1 /////////////////////////// */

/* Inicio footer */
/*footer.footer {
  background-color: #f50000;
  color: white;
}*/

footer[role="contentinfo"] {
  background-color: white;
  padding: 0;
  margin: 0;
}

footer[role="contentinfo"] .container .row {
  margin: 0;
  width: 100%;
  max-width: initial;
}

footer[role="contentinfo"] .container {
  margin: 0;
  width: 100%;
}

footer p {
  margin: 0;
}

footer .col-md-10 {
  margin: 0;
  width: 100%;
  padding: 0;
}

footer .col-md-10 .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.footer__top {
  border-top: 1px solid #e2e2e2;
  border-bottom: 1px solid #e2e2e2;
  background-color: #244d4d;
}

.footer__top-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.footer__logo {
  color: white;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer__logo:is(:hover, :focus) {
  color: #cccccc;
  text-decoration: none;
}

.footer__logo strong {
  font-weight: 600;
}

.footer__middle-body {
  padding: 2rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
}

.footer__subtitle {
  font-family: Inter;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1.125rem;
  color: #020202;
}

.footer__list {
  display: grid;
  gap: 0.5rem;
}

.footer__link {
  cursor: pointer;
  color: #5f5f64;
  font-family: "Inter";
  font-size: 0.875rem;
}

.footer__link:hover {
  text-decoration: underline;
}

.footer__bottom {
  border-top: 1px solid #e2e2e2;
}

.footer__bottom-body {
  padding: 2rem 0;
  text-align: center;
}

.footer__bottom-body p {
  font-size: 0.875rem;
  color: rgba(153, 153, 153, 0.8);
}

.footer__terms {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.col-md-2 {
  display: none;
}

.col-md-2 {
  display: none;
}

button.footer__btn {
  background-color: transparent;
  border: 0;
  color: black;
}

.footer__btn i {
  font-size: 1.25rem;
}

/* Fin footer */

/*1 /////////////////////////// */

/* Inicio barra lateral */
.pkp_structure_sidebar {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  /*right: initial;*/
  width: 100%;
  border-left: 1px solid #e2e2e2;
  padding: 0rem 0rem 0rem 1.7rem;
}

.pkp_block {
  border: 0;
  margin-bottom: 2.5rem;
  /*box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.300);*/
}

.pkp_block .title {
  background-color: white;
  color: #244d4d;
  font-family: var(--ff-secundary);
  font-size: 1.5rem;
  font-weight: 500;
  border-bottom: 1px solid #e2e2e2;
  margin-bottom: 0;
  padding: 0.7rem 1rem 1.5rem 1rem;
}

.pkp_block .content {
  padding: 0;
}

.pkp_block .content ul li {
  padding: 0;
  display: flex;
  flex-direction: column;
  border-top: initial;
  border-bottom: 2px solid #e2e2e2;
}

.pkp_block .content ul li:nth-last-child(1) {
  border-bottom: 1px solid #e2e2e2;
}

.pkp_block .content ul li a {
  width: 100%;
  padding: 0.7rem 1rem;
  text-decoration: none;
  transition: background-color 0.2s ease-out;
}

.pkp_block .content ul li a:hover {
  background-color: #f4f4f4;
  color: black;
}

/*Inicio btn submit*/
.block_make_submission .content {
  display: flex;
  justify-content: center;
}

.pkp_block.block_make_submission a,
.download a {
  color: white;
  border: 0;
  background-color: #244d4d;
  font-size: 1rem;
  padding: 0.7rem 0;
  border-radius: 0;
  text-decoration: none;
  transition: background-color 0.2s ease-out;
}

.pkp_block.block_make_submission a:hover,
.download a:hover {
  background-color: #1a3a3a;
}

/*Btn en ingles*/

#customblock-submit-btn-aside .content p {
  display: flex;
  justify-content: center;
  margin: 0;
}

#customblock-submit-btn-aside .content p a {
  color: white;
  border: 0;
  background-color: #244d4d;
  font-size: 1rem;
  padding: 0.6rem 0;
  width: 100%;
  border-radius: 0.2rem;
  font-family: var(--ff-secundary);
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s ease-out;
}

#customblock-submit-btn-aside .content p a:hover {
  background-color: #1a3a3a;
}

/*Fin btn submit*/

/*.pkp_block .title {
  color: white;
}*/

/*.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item,
.pkp_block ul li {
  border-radius: 0;
}*/

/*.list-group-item,
.pkp_block ul li {
  border: 1px solid #773141;
}*/

/*.pkp_block .title {
  background-color: #773141;
}*/

/*.list-group-item,
.pkp_block ul li {
  margin-bottom: 2px;
  border: none;
}*/

/*.pkp_block .title {
  color: white;
}*/

/*.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item,
.pkp_block ul li {
  border-radius: 0;
}*/

/*.list-group-item,
.pkp_block ul li {
  border: 1px solid #800000;
}*/

/*.panel-default,
.pkp_block {
  border-color: #773141;
}*/

/*.panel-body,
.pkp_block .content {
  padding: 20px;
  border: none;
}*/
/* Fin barra lateral */

/*1 /////////////////////////// */

/* Inicio registro y login  */
.pkp_structure_page.transparent {
  background-color: transparent;
}

/* Inicio login */
.login__title {
  font-size: 2.75rem;
  font-family: var(--ff-source);
  font-weight: 700;
  margin: 0 0 0.75rem;
}

/* Registration form: 2-column grid for identity fields */
.identity .fields {
  display: grid;
  column-gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

/* Login form: single-column layout (override the 2-col grid) */
.page_login .cmp_form.login .fields {
  display: block;
}

/* Login form: proper width and spacing */
.page_login .cmp_form.login {
  max-width: 24em;
}

.page_login .cmp_form.login .username,
.page_login .cmp_form.login .password {
  margin-bottom: 1rem;
}

.page_login .cmp_form.login input[type="text"],
.page_login .cmp_form.login input[type="password"] {
  display: block;
  width: 100%;
}

.page_login .cmp_form.login .password a {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.875rem;
}

:is(.optin-privacy, .optin-email, .form-group.optin) label,
.reviewer legend,
.optin-privacy a {
  font-size: 0.875rem;
  margin-bottom: 0;
  font-weight: 500;
}

/* Fin login */

/* Inicio registro */
.register {
  width: 90%;
  max-width: 600px;
  padding: 2rem;
  background: #fff;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.15);
}

.register__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  border: 0;
}

.buttons {
  display: flex;
  gap: 1rem;
}

.registerForm__input {
  width: 100%;
  height: 44px;
  border: 1px solid #ccc;
  font-family: "Inter";
  padding: 0.5rem;
  transition: all 0.4s ease;
  border-radius: 0;
  display: inline-block;
  margin-top: 0.5rem;
}

.registerForm__label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 400;
  font-family: var(--ff-secundary);
}

.register__title,
.register__text {
  font-family: "Source Serif 4";
}

/* Fin registro */
/* fin registro y login  */

/*1 /////////////////////////// */

/*Inicio sections text*/
.page_index_journal .additional_content {
  padding: 0;
  margin: 0 0 6rem 0;
}

.page-header,
.page_information h1:nth-child(2) {
  display: none;
}

.page_article .page-header {
  display: block;
  font-family: var(--ff-source);
}

.article-abstract p {
  font-family: var(--ff-source);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  text-align: left;
  margin-bottom: 0.4rem;
  color: #374151;
  text-align: justify;
  margin-top: 0.5rem;
}

.section__text--container h1,
h2,
.section__text--subtitle,
.page_register_complete h1,
.page_message h1 {
  text-transform: capitalize;
  font-family: var(--ff-source);
  font-weight: 500;
  line-height: 34px;
  margin: 0;
}

.section__text--title {
  font-size: 2.3rem;
  color: #244d4d;
}

.section__text--subtitle {
  margin-top: 3rem;
  margin-bottom: 1rem;
}

/*.section__text--container h3 {
  color: #5F5F64;
  margin-block: 1.5rem 0.5rem;
}*/

.section__text--division {
  border: 0;
  border-bottom: 1px solid #e2e2e2;
  margin: 1.5rem 0;
}

.section__text--content {
  padding: 0 1rem;
}

.section__text--content > p,
.section__text--content span,
.author_guidelines > p > span,
.copyright-notice > p,
.page_register_complete > p {
  font-family: var(--ff-source);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  text-align: left;
  margin-bottom: 0.4rem;
  color: #374151;
}

/*
.section__text--content > p > strong{
  color: #244D4D;
  font-family: var(--ff-source);
  font-weight: 700;
}
*/

/*
.section__text--content > h3{
  color: black;
  font-size: 1.25rem;
}*/

/*.section__text--content > ul, .author_guidelines > ul,.copyright-notice > ul{
  list-style: disc inside;
  font-size: 1rem;
  color: #374151;
  line-height: 1.7;
  font-family: var(--ff-source);
  margin-bottom: 1.125rem;
  margin-left: 2.5rem;
}*/
/*
.section__text--content li{
  list-style-position: outside;
}*/

.section__text--content ul {
  list-style-position: outside;
  font-size: 1rem;
  color: #374151;
  line-height: 1.7;
  font-family: var(--ff-source);
  margin-bottom: 1.125rem;
}

.section__text--content .list-1 {
  margin-left: 1.5rem;
}

.section__text--content h3 {
  color: #374151;
  font-weight: bold;
  display: flex;
  justify-content: flex-start;
  gap: 0.3rem;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.section__text--content h3 img {
  margin-top: -0.3rem;
}

.section__text--content a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
}

.section__text--content a img {
  height: 15px;
  width: 15px;
}

.ebm__name {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  margin-block: 1rem 0.5rem;
}

.ebm__name h3 {
  margin-block: initial;
}

.section__text--content .p-1 {
  color: #374151;
}
/*
.list__editorial--members p strong{
  display: flex;
  align-items: center;
}

.list__editorial--members p{
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #374151;
  font-size: 1.5rem
}
*/

.author_guidelines > p:first-of-type {
  margin-bottom: 1.5rem;
}

.author_guidelines > p > strong,
.copyright-notice p > strong {
  color: black;
  font-size: 1.25rem;
  font-weight: 500;
  font-family: var(--ff-source);
}

/*
.section__text--content > ul > li > strong,  .author_guidelines > ul > li > span > strong, .author_guidelines > ul > li > strong, .copyright-notice > ul > li > strong{
  font-weight: 600;
  color: #17e0e0;
}
*/
.submission_checklist {
  font-family: var(--ff-source);
}
.submission_checklist span {
  font-size: 1rem;
}

/*Inicio Contacto*/
.pkp_structure_main .page_contact h1,
h3 {
  text-transform: capitalize;
  font-family: var(--ff-source);
  font-weight: 500;
  line-height: 34px;
  margin: 0;
}

.pkp_structure_main .page_contact h1 {
  font-size: 2.3rem;
  border-bottom: 1px solid #e2e2e2;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  color: #244d4d;
}

.pkp_structure_main .page_contact h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.pkp_structure_main .page_contact .address,
.name,
.affiliation,
.phone .value,
.email a {
  color: #5f5f64;
  font-family: var(--ff-source);
  font-size: 1rem;
  padding: 0 1rem;
  font-weight: 400;
  line-height: 28px;
  margin: 0;
  margin-bottom: 0.4rem;
}

.page_contact .address,
.name,
.affiliation,
.phone .value,
.email a {
  line-height: normal;
  padding: 0;
}

.pkp_structure_main .page_contact .phone,
.email {
  margin-bottom: 0.4rem;
}

.pkp_structure_main .page_contact .contact.support {
  margin-top: 1.8rem;
}

.pkp_structure_main .page_contact .phone .value {
  padding: 0 0.4rem;
}

.pkp_structure_main .page_contact .phone .label::after {
  content: ":";
}

.pkp_structure_main .page_contact .phone .label {
  color: #5f5f64;
  font-family: var(--ff-source);
  font-size: 1.2rem;
  padding: 0 0 0 1rem;
  text-align: justify;
  font-weight: 500;
  line-height: 28px;
}

/*Fin Contacto*/
/*Fin sections text*/

/*1 /////////////////////////// */

/* Inicio slider */
.slider {
  padding: 10rem 0;
  background: linear-gradient(
      0deg,
      rgba(24, 61, 61, 0.92) 0%,
      rgba(24, 61, 61, 0.92) 100%
    ),
    url("https://epicartsagency.com/wp-content/uploads/2021/10/paginas-de-canciones-sin-copyright.jpg")
      no-repeat center;
  background-size: cover;
  color: white;
}

.slider .container-slider {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.slider__item-subtitle {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1575rem;
  text-transform: uppercase;
}

.slider__item-title {
  font-family: Inter;
  font-size: clamp(1.25rem, 3vw, 2.125rem);
  line-height: 1.4;
  font-weight: 600;
  text-align: center;
  margin: 1rem 0;
  text-transform: capitalize;
}

.slider__item-author {
  color: white;
  font-family: Inter;
  font-size: 0.875rem;
  font-style: italic;
  font-weight: 400;
}

.slider__body {
  width: 100%;
  overflow: hidden;
}

/* Fin slider */

/*1 /////////////////////////// */

a {
  color: black;
}

p {
  font-size: 18px;
  color: rgb(39, 38, 38);
}

a {
  color: black;
  font-size: 17px;
}

.alert-info {
  box-shadow: 8px 10px 10px rgba(0, 0, 0, 0.445);
}

.btn:not(.read-more) {
  padding: 0.75rem 1.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.875rem;
  border: 0;
  transition: opacity 0.4s ease;
  border-radius: 0;
}

.btn-primary:not(.read-more) {
  background-color: #244d4d;
  color: white;
}

.btn-default {
  background: rgba(36, 77, 77, 0.16);
  color: black;
}

img.img-responsive {
  height: 400px;
  width: 1000px;
}

.breadcrumb {
  background-color: white;
}

.media-body {
  padding-top: 20px;
  padding-left: 20px;
  background-color: white;
}

.description {
  font-size: 30px;
}

.published {
  font-size: 18px;
}

.heading.row {
  background-color: white;
}

a.btn.btn-primary.read-more {
  margin-top: 30px;
  background-color: transparent;
  color: #5f5f64;
  border: 0;
  margin-left: auto;
  display: block;
  width: max-content;
}


/* Ocultar el botón en la seccion Inicio */
.current_issue .galley-link.btn.btn-primary.pdf {
  display: none;
}

/* Mantener visible el botón en la segunda sección Current Issue */
.page_issue .galley-link.btn.btn-primary.pdf {
  display: inline-block; /* o el valor que prefieras */
}


a.btn.btn-primary.read-more:hover {
  text-decoration: underline;
}

a.block_make_submission_link {
  width: 300px;
}

.nav > li.menu-item-9 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media screen and (width >=768px) {
  .footer__terms {
    justify-content: flex-start;
  }

  .footer__bottom-body {
    text-align: left;
  }
}

a.block_make_submission_link {
  width: 100%;
}

.thumbnail {
  width: 33.33%;
}

.cmp_form.login,
.pkp_form.login,
.pkp_form.register {
  width: 90%;
  max-width: 500px;
  padding: 2rem;
  background: #fff;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.09);
}

.pkp_form.register {
  max-width: 600px;
}

.cmp_form.login input[type="text"],
.cmp_form.login input[type="password"],
.pkp_form.login input {
  width: 100%;
  height: 44px;
  border: 1px solid #ccc;
  font-family: var(--ff-secundary);
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  border-radius: 0;
}

.cmp_form.login .label,
.pkp_form.login .label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.cmp_form.login .username,
.cmp_form.login .password {
  margin-bottom: 1rem;
}

.cmp_form.login .remember {
  margin-bottom: 1rem;
}

.cmp_form.login .remember .label {
  display: inline;
  font-weight: 400;
}

.cmp_form.login :is(button[type="submit"], .register-button),
.pkp_form.login :is(button[type="submit"], .register-button) {
  padding: 0.75rem 1.25rem;
  text-transform: uppercase;
  font-family: var(--ff-secundary);
  letter-spacing: 2px;
  border-radius: 0;
}

.cmp_form.login button[type="submit"],
.pkp_form.login button[type="submit"] {
  background-color: #244d4d;
  color: white;
}

.cmp_form.login .register-button,
.pkp_form.login .register-button {
  background: rgba(36, 77, 77, 0.16);
  color: black;
}

.cmp_form.login .buttons,
.pkp_form.login .buttons {
  display: flex;
  gap: 0.75rem;
}

.form-group label {
  width: 100%;
}

.form-group {
  margin-bottom: 10px;
}

.footer__middle-body ul {
  list-style: none;
}

.cmp_breadcrumbs {
  display: none;
}

.current_issue .page-header,
.current_issue .current_issue_title,
.current_issue .issue-toc .heading {
  display: none;
}

.alert .alert-info {
}

.alert-info {
  box-shadow: initial;
  color: #000000;
  background-color: transparent;
  border-color: transparent;
  font-family: var(--ff-source);
  padding: 0;
}

.alert-info a {
  font-family: var(--ff-source);
  color: #244d4d;
  font-weight: 500;
}

.lead.description {
  text-align: left;
  color: #5f5f64;
  font-size: 1rem;
  color: var(--ff-source);
  max-width: 700px;
  line-height: 1.6;
}

@media screen and (width >=1024px) {
  .lead.description {
    color: #5f5f64;
  }
}

.list-group {
  line-height: 1.5;
  list-style: inside;
  max-width: 700px;
  display: grid;
  gap: 0.75rem;
}

.list-group-item {
  display: list-item;
  padding: 0;
  border: 0;
  font-size: 0.9375rem;
  color: #5f5f64;
  list-style: initial outside;
}

.list-group-item .glyphicon {
  display: none;
}

.section__text--title--mod {
  text-transform: capitalize;
  font-family: var(--ff-source);
  font-weight: 500;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e2e2e2;
  margin: 0 0 1.25rem;
}

.lostPassword {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #244d4d;
}

.lostPassword .pkp_structure_content {
  display: block;
  padding: 2rem;
  gap: 0;
  background: white;
  max-width: 600px;
}

.lostPassword .pkp_structure_content label {
  font-size: 1rem;
  display: inline-block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.lostPassword .pkp_structure_content input {
  height: 44px;
}

.lostPassword .pkp_structure_content .buttons {
  margin-top: 1.5rem;
}

.lostPassword .pkp_structure_content .alert {
  padding: 0;
}

.input-group {
  border-collapse: initial;
  display: flex;
}

.input-group .input-group-btn {
  width: max-content;
  white-space: initial;
}

.input-group .input-group-btn input[type="submit"] {
  width: 100%;
  display: block;
}

.search-advanced .row {
  display: flex;
  margin: 0;
  width: 100%;
}

.search-advanced .col-md-6 {
  padding: 0;
}

.search-advanced .col-md-6:first-of-type {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 60%;
}

.search-advanced legend {
  font-family: var(--ff-source);
  font-weight: 500;
  font-size: 2rem;
  padding: 0 0 1rem;
}

.search-results h2 {
  text-align: center;
  margin-top: 2rem;
}

.search-results + .cmp_notification {
  text-align: center;
}

.search-advanced .form-group select {
  height: 34px;
  border: 1px solid #ccc;
}

.search-advanced .form-group label {
  font-size: 0.875rem;
  font-weight: 400;
}
.pkp_page_index .media-list {
  display: none;
}

.pkp_page_issue .media-heading > a {
  color: #000;
  font-family: var(--ff-source);
  font-size: 1.875rem;
  font-weight: 600;
}
.pkp_page_issue .media-heading > a + .series {
  color: #5f5f64;
  font-size: 0.875rem;
  font-weight: 400;
  font-family: var(--ff-source);
  margin: 0.125rem 0 0.75rem;
}
.pkp_page_issue .media-body > .description p {
  color: #5f5f64;
  font-family: var(--ff-source);
  font-size: 1rem;
  font-weight: 400;
}
.pkp_page_issue .media-left {
  display: none;
}
.pkp_page_issue .media-body {
  padding: 2rem 0;
  border-bottom: 1px solid #e7e7e7;
}
.pkp_page_issue .media {
  margin: 0;
}
.pkp_op_view .description {
  color: #5f5f64;
  font-family: var(--ff-source);
  font-size: 1.25rem;
  font-weight: 400;
}

.pkp_op_view .thumbnail {
  display: none;
}

.pkp_op_view .issue-details {
  padding: 2rem 0;
}
.pkp_op_view .heading {
  max-width: 1600px;
  padding: 0;
  width: 100%;
}
.pkp_op_view .issue-toc {
  max-width: 1600px;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column-reverse;
}
.pkp_op_view .media-body,
.pkp_op_view .media-body p {
  text-align: center;
}
.pkp_op_view .authors {
  margin-bottom: 1.5rem;
}

.pkp_op_view .article-summary .media-body,
.pkp_op_view .article-summary .media-body .pages {
  text-align: left;
}
.pkp_op_view .article-summary .media-body .pages {
  margin: 0.25rem 0 1.5rem;
}
.pkp_op_view .article-summary .media-body .authors {
  margin: 0;
  font-family: var(--ff-source);
  color: #5f5f64;
}

.issue__header {
  padding: 2rem 0 2.5rem;
  text-align: center;
  border-bottom: 1px solid #e7e7e7;
}

.issue__header p:first-child {
  text-align: center;
  color: #244d4d;
  font-family: var(--ff-secundary);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.16px;
}
.issue__header h1 {
  color: #000;
  font-family: var(--ff-source);
  font-size: 2rem;
  font-weight: 500;
  margin: 1rem 0;
}
.issue__header p:last-child {
  text-align: center;
}

/* ocultar  for libreries */
.block_information ul li:last-of-type {
  display: none;
}

.nav > li > a > img.logo__image {
  width: 90%;
  max-width: 90px;
}
.homepage-image .img-responsive {
  display: none;
}

.aside__image {
  width: 100%;
  margin-bottom: 2rem;
}

.home__btn {
  position: absolute;
  top: 2rem;
  left: 2rem;
  color: white;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.home__btn:hover {
  color: white;
}

/* REGISTO COMPLETADO */
.page_register_complete h1,
.page_message h1 {
  color: #244d4d;
  margin-bottom: 1rem;
}

.page_register_complete ul {
  margin-top: 1rem;
  line-height: 1.7;
}

.page_register_complete a {
  color: #5f5f64;
}
.page_message .description {
  font-size: 1rem;
  color: #5f5f64;
}
