@font-face{
    font-family: 'Inter';
    src: url("fonts/Inter/Inter-Regular.ttf");
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.5em;
    font-weight: 400;
    color: black;
}


/* ------helpers---------*/

a {
    color:#6089c6;
    text-decoration: none;
    opacity: 1;
}

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

[class^="icon-"], [class*=" icon-"] {
  padding-right: 5px;
}


.wrapp {
  box-sizing: border-box;
  max-width: 1200px;
  margin: 0 auto;
}

.img-responsive {
    height: auto;
    max-width: 100%;
}

.hidden,
.oculto{
    display: none;
}

.visible{
    display: block !important;
}

.pkp_screen_reader {
    display: none;
}


/* ------Forms---------*/

.cmp_form fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

.cmp_form fieldset > div {
    margin-bottom: 1rem;
}

.cmp_form fieldset legend {
    display: none;
}

.cmp_form label,
.cmp_form .label {
    display: block;
    margin-bottom: .5rem;
}

.cmp_form .checkbox label,
.cmp_form .checkbox .label {
    display: inline-block !important;
    font-size: .875rem;
}

.cmp_form input {
    line-height: normal;
    padding: .5rem;
    border-radius: 0;
    border: 1px solid #74829d;
    width: 96.5%;
}

.cmp_form .checkbox input {
    width: auto;
}

.cmp_form button,
.pkp_search button {
    display: inline-block;
    box-sizing: border-box;
    padding: .5rem .75rem;
    border: 1px solid #0F5DA3;
    background: #0F5DA3;
    color: white;
    font-size: 1rem;
    transition: background-color, 0.15s;
    margin-top: 1rem;
    margin-right: 1rem;
}

.cmp_form button:hover,
.pkp_search button:hover {
    background: #03273B;
}

.cmp_form label .form-link {
    display: block;
    font-size: .875rem;
}

.pkp_search input {
    line-height: normal;
    padding: 0.625rem;
    border-radius: 0;
    border: 1px solid #74829d;

}

/* ------Botóns---------*/

.btn {
  display: inline-block;
  box-sizing: border-box;
  padding: .5rem .75rem;;
  border: 1px solid #0F5DA3;
  background: #0F5DA3;
  color: white;
  font-size: 1rem;
  line-height: 1.2em;
  transition: background-color, 0.15s;
}

.btn:hover {
    background: #03273B;
}

.btn-small {
    padding: .25rem .5rem;
    border: 1px solid #d7e3f4;
    background: #d7e3f4;
    color: black;
}

.btn-small:hover {
    background: #6089c6;
    border: 1px solid #6089c6;
    color: white;
}

.btn-secondary {
    border: 1px solid #d7e3f4;
    background: #d7e3f4;
    color: #000;
}

.btn-secondary:hover {
    background: #03273B;
    border: 1px solid #03273B;
    color: white;
}

.tag {
  display: inline-block;
  box-sizing: border-box;
  padding: 0.25rem .35rem;
  background: #0F5DA3;
  color: white;
  font-size: 0.8125rem;
  transition: background-color, 0.15s;
  margin-top: .25rem;
  margin-right: .15rem;
  line-height: 1em;
}

.form-select {
    display: inline-block;
    width: auto;
    background-color: #0F5DA3;
    padding: .5rem 1.25rem .5rem .5rem;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: white;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right .5rem center;
    background-size: 16px 12px;
    border: 1px solid #6089c6;
    border-radius: 0;
    appearance: none;
}

/* ------breadcrumbs---------*/

.breadcrumbs-list {
    margin: 0;
    margin-top: 2rem;
    list-style: none;
    font-size: .8rem;
    color: #74829d;
}

.breadcrumbs-list li {
    display: inline-block;
}

.breadcrumbs-list li a:hover {
    color: #74829d;
}


/* ------cabeceira---------*/

.header-main {
    background: #03273B;
    margin-right: auto;
    margin-left: auto;
}

.header-main-inner-wrapper {
    padding: 1rem 2rem;
}

.header-main-inner-wrapper #navigationUser{
    gap: 0.3rem;
    display: block;
}

.header-main-inner-wrapper #navigationUser li{
    display: inline-block;
    box-sizing: border-box;
    padding: .5rem;
    border: 1px solid #3d5e71;
    background: #03273B;
    color: white;
    font-size: 0.875rem;
    transition: background-color, 0.15s;
}

.show-submenu-user{
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    width: 150px;
    border: 1px solid #3d5e71;
    border-top: 3px solid #3d5e71;
    border-right: 3px solid #3d5e71;
    z-index: 999;
    text-align: right;
}

.menuitem_lang::before{
    content: "\f0d7";
    font-family: 'icomoon';
}

.menuitem_lang .show-submenu-user{
    width: 100%;
}

.menuitem_lang,
.menuitem_lang li a{
    text-transform: uppercase !important;
}

.header-main-inner-wrapper #navigationUser li a{
    text-transform: capitalize;
}

.header-main-inner-wrapper #navigationUser li:hover {
    background: #0F5DA3;
}

.header-main-inner-wrapper #navigationUser li:hover > a{
    color: white;
}

.menu-main {
    background: #03273B;
    padding: 0 1rem;
}

.menu-main .isActive {
    background-color: #6089c6;
}

.menu-list {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    margin: 0;
}

.menu-list>li{
    padding: .5rem 1rem;
    color: white;
    text-transform: uppercase;
    font-size: .875rem;
    text-align: left;
    position: relative;
}

.menu-list li a{
    color: white;
    text-transform: uppercase;
    font-size: .875rem;
    text-align: left;
    position: relative;
}

.menu-list > li:hover{
    background-color: #6089c6;
    color: white;

}

.menu-list > li:hover > a{
    color: white;
}

.show-menu-responsive{
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 45px;
    left: 0;
    width: 100%;
    background-color: #03273B;
}

.submenu{
    display: none;
}

.show-submenu{
    display: block !important;
    position: absolute;
    top: 40px;
    left: 0;
    width: 300px;
    background-color: #6089c6;
}

.show-submenu-responsive{
    display: block !important;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    //background-color: #6089c6;
    //padding-left: 1rem;
}

.show-submenu-responsive li{
    padding: 0.3rem 1rem;
}

.show-submenu-responsive li:hover{
    background-color: #03273B;
}

.show-submenu li{
    padding: 0.25rem 0.5rem;
    border-bottom: 1.5px solid transparent;
}

.show-submenu li,
.show-submenu li a{
    color: white;
}

.show-submenu li:hover{
    background-color: #03273B;
}

.buscador{
    //padding: 0.5rem 3rem;
    border-left: 1px solid #3d5e71;
    border-right: 1px solid #3d5e71;
    //border: 1px solid red;
}

.buscador a{
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.lupa{
    background-image: url(../img/lupa.png);
    height: 25px;
    width: 25px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    right: 0;
}

/* ------botón menú móvil + menú móvil---------*/
@media all and (max-width: 1000px){
    .menu-main #navigationPrimary{
        display: none;
    }

    .menu-main{
        position: relative;
    }

    .show-submenu{
        width: 100%;
    }

    .buscador{
        border: none;
    }
}

@media all and (min-width: 1000px){
    .container-boton{
        display: none !important;
    }
}

.container-boton{
    //border: 1px solid red;
}

.container-boton button{
    border: none;
}

.container-boton .menu-icon:after,
.container-boton .menu-icon:before,
.container-boton .menu-icon span {
    display: block;
    position: absolute;
    top: 50%;
    background-color: white;
    width: 0.6em;
    height: .15rem;
    border-radius: 0;
}

.container-boton .menu-icon {
    font-size: 3rem;
    height: 3rem;
    display: inline-block;
    position: relative;
    background-color: white;
    padding: 0;
    outline: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    touch-action: manipulation;
    cursor: pointer;
    align-self: flex-end;
    transition: 0.4s ease;
}

.container-boton .menu-icon span {
    margin-top: -.11rem;
}

.container-boton .menu-icon:before {
    content: "";
    margin-top: -.8rem;
}

.container-boton .menu-icon:after {
    content: "";
    margin-top: 0.6rem;
}

/* ------intro index page---------*/
.text-presentation {
    background: url('../img/img-main.jpg') center center;
    background-size: cover;
    padding: 2rem;
}

.text-presentation .text {
    text-align: center;
    margin: 0 auto;
}

.text-presentation .text p {
    color:  white;
    font-weight: 300;
    font-size: 1.5rem;
    line-height: 1.25em;
    font-weight: 200;
}

.text-presentation .btn {
    width: 200px;
    font-weight: 200;
    font-size: 1.15rem;
}


/* ------header page---------*/


.header-page {
    background: #0F5DA3;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.header-page .breadcrumbs-list {
    margin-top: 0;
    color: white;
}

.header-page .breadcrumbs-list li a {
    color: #a6bcdd;
}

.header-page h1 {
    font-size: 3rem;
    line-height: 1.2em;
    font-weight: 200;
    color: white;
}

.header-page p {
    color: white;
}

/* ------listaxe libros---------*/
.empty{
    padding: 3rem 0;
}

.obj_monograph_summary{
    margin-bottom: 2rem;
}

.card-list {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.card-list > h1 {
    font-size: 1.1rem;
    line-height: 1.2em;
    font-weight: 500;
    text-transform: uppercase;
}


.card-book {
    border: 1px solid #e1e5f2;
    height: 100%;
}

.card-book .img-book-wrapper {
    display: flex;
    justify-content:center;
    padding: 2rem;
    background: #f4f4f4;
}

.card-book .header-book {
    padding: 1rem;
}

.card-book .header-book .title-book {
    font-size: 1.1rem;
    line-height: 1.2em;
    font-weight: 500;
}

.card-book .header-book .title-book a {
    color: #0F5DA3;
}

.card-book .header-book .author-book {
    font-size: .85rem;
    line-height: 1.1em;
    font-weight: 400;
}

.card-book .header-book .info-book {
    font-size: .75rem;
    line-height: 1.1em;
    color: #74829d;
}

.card-book .header-book .info-book::before {
    content: '';
    width: 50px;
    color: #6089c6;
    background: #6089c6;
    height: 1px;
    display: block;
    margin-bottom: 0.5rem;
    padding: 1px;
    margin-top: .5rem;
}



/* ------Ficha de autor/a---------*/

.file-author {
    margin-top: 1rem;
    margin-bottom: 4rem;
}

.file-author .header-author .name-author {
    font-size: 2rem;
    line-height: 1.2em;
    font-weight: 500;
    color: black;
    margin-top: 0;
}

.file-author .header-author .info-author {
    font-size: 1.1rem;
    line-height: 1.1em;
    font-weight: 400;
    margin: .5rem 0 2rem 0;
    color: #74829d;
}
.file-author .header-author .mail-author,
.file-author .header-author .orcid,
.file-author .header-author .mail{
    font-size: .85rem;
    line-height: 1.1em;
    font-weight: 400;
    margin: .5rem 0;
    color: #74829d;
    position: relative;
}

.file-author .header-author .mail-author a,
.file-author .header-author .orcid a,
.file-author .header-author .mail a{
    color: #74829d;
}

.file-author .header-author .mail-author{
    padding-left: 1.2rem;
}

.file-author .header-author .mail-author::before{
    content: "\f0e0";
    left: 0;
    top: 0;
    position: absolute;
    font-family: 'icomoon';
    color: #0F5DA3;
}

.file-author .header-author a[href*="orcid.org"] {
    position: relative;
    padding-left: 1.2rem;
}

.file-author .header-author a[href*="orcid.org"]:before {
    display: inline-block;
    content: " ";
    width: 16px;
    height: 16px;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../img/orcid.svg);
    background-repeat: no-repeat;
}

.card-book.is-horizontal {
    display: flex;
}

.card-book.is-horizontal .img-book-wrapper {
    padding: 0;
}


/* ------Ficha de libros---------*/

.file-book {
    margin-top: 1rem;
    margin-bottom: 4rem;
}

.file-book .header-book .title-book {
    font-size: 2rem;
    line-height: 1.2em;
    font-weight: 500;
    color: black;
    margin-top: 1rem;
}

.file-book .img-book-wrapper {
    display: flex;
    justify-content:center;
    padding: 2rem;
    background: #f4f4f4;
}

.file-book .header-book {
    margin-bottom: 2rem;
}

.file-book .header-book .author-book,
.file-book .header-book .info-author {
    font-size: 1rem;
    line-height: 1.1em;
    font-weight: 400;
    margin: .5rem 0;
}


.file-book .header-book .author-book {
    margin-bottom: .25rem;
    margin-top: 1rem;
}

.file-book .header-book .info-author {
    color: #74829d;
    font-size: .85rem;
}

.file-book .info-book p {
    font-size: .85rem;
    line-height: 1.1em;
    font-weight: 400;
    margin: 1rem 0 0 0;
}

.file-book .info-book p span {
    display: block;
    margin-top: .25rem;
    color: #74829d;
}

.file-book .info-book ul {
    margin-top: .25rem;
    color: #74829d;
}

.file-book .info-book ul li {
    font-size: .85rem;
    line-height: 1.1em;
    font-weight: 400;
}

.metrics-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 2px;
    max-width: 100%;
    margin-top: 1rem;
}

.metrics-wrapper div {
    padding: 24px 12px 12px;
    background: #6089c6;
    color: white;
    text-align: center;
    font-size: 2em;
    font-weight: bold;
}

.metrics-wrapper span {
    font-size: .8rem;
    display: block;
    font-weight: 300;
}

/*tabs*/

.tabs-container {
    max-width: 100%;
    margin: 50px auto 2rem auto;
}

.tabs {
    display: flex;
}

.tabs li:not(:last-child) {
    margin-right: 7px;
}

.tabs li {
    display: block;
    position: relative;
    top: 4px;
    padding: 10px 25px;
    border-radius: 2px 2px 0 0;
    background: #f4f4f4;
    transition: all 0.1s ease-in-out;
    font-size: .85rem;
    text-transform: uppercase;
    color: black;
    cursor: pointer;
}

.tabs li.selected,
.tabs li a:hover {
    top: 2px;
    border: 1px solid #74829d;
    border-bottom: 1px solid white;
    z-index: 100;
    background: white;
}

.tabs-content {
    position: relative;
    z-index: 2;
    padding: 25px;
    border-radius: 0 4px 4px 4px;
    background: white;
    border-top: 1px solid #74829d;
}

.tabs-content .citation_display #citationOutput{
    margin-bottom: 1.5rem;
}

.tabs-content .citation_display .citation_formats ul{
    margin: 2rem 0 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tabs-content .citation_display .citation_formats ul li a{
    color: black;
}

.tabs-content .citation_display .citation_formats ul li a:visited{
    color: black;
}

.tabs-content .citation_display .citation_formats ul li:hover>a{
    color: white;
}



/* -------------------páxina libro---------------- */
.page_book .galerada-monografia-completa{
    gap: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}


.page_book .galerada-monografia-completa .pub_format_single,
.page_book .galerada-monografia-completa .pub_format_remote{
    display: flex;
    width: 100%;
}

.page_book .galerada-monografia-completa .pub_format_single::before,
.page_book .galerada-monografia-completa .pub_format_remote::after {
    width: 60px;
    height: auto;
    background-color: #03273B;
    content: "\f0da";
    color: white;
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'icomoon';
}

.page_book .galerada-monografia-completa .pub_format_single .btn,
.page_book .galerada-monografia-completa .pub_format_remote .btn {
    width: 100%;
    display: inline-block;
}

.page_book .galerada-monografia-completa .pub_format_remote .btn-secondary {
    font-size: 0.875rem;
}


/*chapter list*/

aside.chapters{
    padding-bottom: 2rem;
    padding-top: 2rem;
    background: #f4f4f4;
}

/*chapter book*/
.chapters .pkp_screen_reader{
    display: block;
}

.chapter-book {
    border: 1px solid #e1e5f2;
    margin-bottom: 2rem;
    padding: 1rem;
    background: white;
}

.chapter-book .header-chapter-book .title-chapter-book {
    font-size: 1.1rem;
    line-height: 1.2em;
    font-weight: 400;
    color: black;
}

.chapter-book .header-chapter-book .info-chapter-book {
    font-size: .8rem;
    line-height: 1.1em;
    font-weight: 400;
    margin: .5rem 0;
    color: #74829d;
}

.chapter-book .header-chapter-book .info-chapter-book li {
    display: inline-block;
}

.chapter-book .btn-group {
    margin-top: 1rem;
}

/*compartir*/
.compartir{
    margin: 2rem 0;
}

.compartir .theme-white .shariff-button{
    border: 2px solid #03273B !important;
    border-radius: 50%;
}

.compartir .theme-white .shariff-button a{
    color: #03273B !important;
}

.compartir .theme-white .share_text{
    display: none !important;
}

.compartir .shariff .fab,
.compartir .shariff .fas{
    font-size: 18px !important;
}

.compartir .shariff .orientation-horizontal.button-style-standard li{
    min-width: 35px !important;
    max-width: 35px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px;
}

.compartir .shariff .theme-white .shariff-button:hover {
    background-color: #03273B;
}

.compartir .shariff .theme-white .shariff-button:hover > a{
    color: white !important;
    background-color: transparent;
}


/*pages*/

.page_login .title,
.page_register .title,
.page_lost_password .title,
.page_search .title,
.page_about .title,
.page_editorial_team .title,
.page_masthead .title,
.page_submissions .title,
.page_contact .title,
.page_contact .title,
.page_announcements .title {
    letter-spacing: -0.075rem;
    font-weight: 300;
    color: #0F5DA3;
}

.page_login .inner-wrapper,
.page_register .inner-wrapper,
.page_lost_password .inner-wrapper {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 0;
}


.page_about .inner-wrapper,
.page_editorial_team .inner-wrapper,
.page_privacy .inner-wrapper,
.page_submissions .inner-wrapper,
.page_contact .inner-wrapper,
.page_masthead .inner-wrapper,
.page_announcements .inner-wrapper,
.page_announcement .inner-wrapper {
    width: 100%;
    max-width: 700px;
    padding: 0;
}


/* ------page_book---------*/


.page_book .header-book .categories {
    margin-top: 1rem;
}

.page_book .header-book .categories ul {
    display: flex;
}

/* ------page_search---------*/
.page_search .cmp_monographs_list{
    margin-top: 2rem;
}

/* ------page_announcements---------*/


.page_announcements .cmp_announcements li {
    border-top: 1px dotted;
    margin-top: 2rem;
}

.page_announcements .cmp_announcements li:first-child {
    border-top: 0;
}

.obj_announcement_summary h2 {
    margin-bottom: 1rem;
}

.obj_announcement_summary h2 a:hover {
    color: #03273B;
}

.obj_announcement_summary .date,
.obj_announcement_full .date {
    color: #74829d;
    font-size: .8rem;
}

.obj_announcement_summary .read_more {
    margin-top: -.5rem;
    position: relative;
    display: block;
    text-decoration: underline;
}

.obj_announcement_summary .read_more:hover {
    color: #03273B;
}


/* ------footer---------*/
.pkp_op_book footer{
    margin-top: 0;
}

footer {
    background: #03273B;
    padding-top: 2rem;
    margin-top: 2rem;
}


footer .info-contact {
    color: white;
}

footer .info-contact .title-info-contact {
    font-size: 1rem;
    line-height: 1em;
    font-weight: 400;
}

footer .info-contact .direccion > p,
footer .info-contact .email{
    padding-left: 1.5rem;
    position: relative;
}

footer .info-contact .direccion>div{
    width: 15px;
    height: 15px;
    background-image: url(../img/location-pin.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
}

footer .info-contact .email::before{
    content: "\f0e0";
    left: 0;
    top: 0;
    position: absolute;
    font-family: 'icomoon';
}

footer .info-contact .email a{
    color: white;
}

footer .info-contact .email a:visited{
    color: white;
}

footer .info-contact .email a:hover{
    color: #6089c6;
}

footer .info-contact p, .info-contact ul {
    font-size: .85rem;
    color: white;
}

footer .social-list {
    margin: 0;
    list-style: none;
}

footer .social-list li {
    display: inline-block;
    font-size: 2rem;
}


.sub-footer {
    margin-top: 1rem;
    padding-top: .25rem;
    padding-bottom: .25rem;
    border-top: 1px solid #24354f;
    text-align: center;
}

.sub-footer p {
    font-size: 0.8125rem;
    color: white;
}


/* ---- page pdf viewer ------ */
body.iframeViewer {
    height: 100vh;
    display: flex;
    flex-direction: column;
}
body.iframeViewer .pkp_structure_page {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
}
body.iframeViewer .pkp_structure_page header {
    width: 100%;
}

body.iframeViewer main,
#pdfCanvasContainer,
#htmlContainer
{
    height: 100%;
}
#pdfCanvasContainer iframe,
#htmlContainer iframe
{
    height: 100%;
    margin-left:auto;
    margin-right:auto;
    border:none;
}


/* ------media queries---------*/


@media screen and (min-width: 980px) {
    .text-presentation {
        padding: 8rem 2rem;
    }

    .text-presentation .text {
        width: 80%;
    }
}

@media screen and (min-width: 800px) {
    .page_login .inner-wrapper,
    .page_register .inner-wrapper,
    .page_lost_password .inner-wrapper {
        padding: 2rem 3rem;
        border: 1px solid #74829d;
        margin-top: 3rem;
        margin-bottom: 3rem;
    }

    .page_about .inner-wrapper,
    .page_editorial_team .inner-wrapper,
    .page_privacy .inner-wrapper,
    .page_submissions .inner-wrapper,
    .page_contact .inner-wrapper,
    .page_masthead .inner-wrapper,
    .page_announcements .inner-wrapper,
    .page_announcement .inner-wrapper {
        padding: 2rem 3rem;
        border: 1px solid #74829d;
        margin-top: 3rem;
        margin-bottom: 3rem;
    }


    .file-book,
    .file-author {
        margin-top: 4rem;
        margin-bottom: 4rem;
    }

    .file-book .header-book .title-book {
        margin-top: 0;
    }

    .tabs-container {
        margin-bottom: 0;
    }
}

@media screen and (min-width: 480px) {

}


