﻿/*
	Theme Name: Bileph
	Theme URI: https://www.stilogolab.com/
	Description: Theme web Stílogo Lab
	Version: 1.0
	Author: Stílogo Lab S.L
	Tags: HTML5, CSS3, Responsive

*/


/*! Fonts 

	Open Sans 400, 700. DM Serif Display 400
*/

/* open-sans-regular - latin */
@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	src: url('fonts/open-sans-v40-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* open-sans-italic - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 400;
	src: url('fonts/open-sans-v40-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* open-sans-700 - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 700;
	src: url('fonts/open-sans-v40-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* open-sans-700italic - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 700;
	src: url('fonts/open-sans-v40-latin-700italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }

/* dm-serif-display-regular - latin */
@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'DM Serif Display';
	font-style: normal;
	font-weight: 400;
	src: url('fonts/dm-serif-display-v15-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* dm-serif-display-italic - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'DM Serif Display';
	font-style: italic;
	font-weight: 400;
	src: url('fonts/dm-serif-display-v15-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }



/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
*, *:after, *:before {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    outline: none;
}

img {
	max-width: 100%;
}

html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{
	text-decoration: none;
	background-color:transparent}
	a:visited{
		
	}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}[hidden],template{display:none}


/*------------------------------------*\
    MAIN
\*------------------------------------*/


/* Definición de variables */
:root {
	--color-main-text: #313131;
	--color-primario: rgb(113, 117, 105); /* Color primario */
	--color-secundario: rgb(134, 87, 43); /* Color secundario */
	--color-terciario: #ada294; /* Color terciario */
	--color-cuaternario: #e4e3e0; /* Color cuaternario */
	--color-quintario: #e4e3e0; /* Color quinario */
	--color-sextario: #3c3c3c; /* Color sexto */
	--color-septenario: #fd7e14; /* Color septenario */
	--color-octavario: #ffc107; /* Color octavario */
}

::selection {
	color: #fff;
	background-color: var(--color-terciario);
	border-radius: 10px;
}
  

body {
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	color: var(--color-sextario);
	background: #e4e3e0;
	line-height: 1.3;
}

a {
	color: var(--color-main-text);
}

.wrapper {
	max-width: 1920px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 3rem;
	padding-right: 3rem;
}

h1 {
	font-family: 'DM Serif Display';
	font-weight: 400;
	line-height: 1;
}

.animated {
	-o-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;

 }


 .btn-main {
	background-color: var(--color-primario);
	color: #fff;
	border: 1px solid var(--color-primario);
	padding: 0.3rem 1rem 0.4rem;
	font-size: 1.2rem;
	font-weight: 700;
	cursor: pointer;
	border-radius: 4px;
 }

 .btn-main:hover {
	background-color: var(--color-secundario);
	border: 1px solid var(--color-secundario);
 }


 .btn-secondary {
	background-color: var(--color-terciario);
	color: #fff;
	border: 1px solid var(--color-terciario);
	padding: 0.3rem 1rem 0.4rem;
	font-size: 1.2rem;
	font-weight: 700;
	cursor: pointer;
	border-radius: 4px;

 }

 .btn-secondary:hover {
	background-color: var(--color-secundario);
	border: 1px solid var(--color-secundario);
 }


 .btn-tertiary {
	color: var(--color-main-text);
	text-decoration: underline;
	background-color: transparent;
	border: 0;
	padding: 0.3rem 1rem 0.4rem;
	font-size: 1.2rem;
	cursor: pointer;
 }

 .btn-tertiary:hover {
	color: var(--color-secundario);
 }

 

/* header */

header.main {
	display: flex;
	align-items: center;
	padding-top: 1.5rem;
	padding-bottom: 2.5rem;
	background-color: var(--color-primario);
	position: relative;
}

header.main .icon-menu {
	display: none;
}

header.main nav ul {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
}

header.main nav ul li {
	text-transform: uppercase;

}

header.main nav ul li a {
	padding: 0.3rem 0.6rem;
	margin: 0 0.3rem;
	color: #fff;
	border-radius: 4px;
	text-wrap: nowrap;
}


header.main nav .current-menu-item a {
	background-color: var(--color-secundario);
}

header.main nav ul li a:hover {
	text-transform: uppercase;
	padding: 0.3rem 0.6rem;
	margin: 0 0.3rem;
	background-color: var(--color-terciario);

}

header a.logo {
	flex-grow: 1;
}

header picture.logo > img {
	width: 160px;
}

header picture.admin-key {
	margin-left: 0.5rem;
}

header picture.admin-key > img {
	width: 20px;
	margin-bottom: -6px;
}

header.main h1 {
	font-size: 1.5rem;
	color: var(--color-cuaternario);
}
header.main .ripped {
	position: absolute;
	right: 0;
	left: 0;
	width: 100%;
	bottom: 0;
	height: 15%;
}

#menu-item-165 a {
	color: var(--color-secundario);
	text-decoration: underline;
}

#icon-menu {
	display: none;
}


/*------------------------------------*\
    HOME
\*------------------------------------*/

body.home header.main {
	background-color: var(--color-primario);
	padding-top: 2.5rem;
	padding-bottom: 2.5rem;
	justify-content: center;
	background-color: transparent;
	position: absolute;
    z-index: 3;
    width: 100%;

}

body.home header.main .logo-mobile { 
	display: none;
}

main#home {

}

main#home section.hero {
	position: relative;
	background-color: var(--color-primario);
	text-align: center;
	padding-top: 3rem;
	padding-bottom: 5rem ;
	padding-top: 10rem;
	z-index: 1;
}

main#home section.hero::before {
    content: "";
    background-image: url(img/clotilde_500.jpeg);
    background-position: top center;
    background-size: cover;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    opacity: 0.2;
	mix-blend-mode: multiply;
	z-index: -1;
}

main#home section.hero h1 {
	color: var(--color-cuaternario);
	font-size: 3.5rem;
	max-width: 750px;
	margin: 1rem auto;
	padding: 0 3rem;
}

main#home section.hero h1::after {
    display: block;
    content: '';
    width: 75px;
    height: 1px;
    background-color: var(--color-cuaternario);
    margin: 35px auto;
}
main#home section.hero h2 {
	color: #2a2a2a;
	font-weight: 400;
	max-width: 400px;
	margin: 0 auto;
}

main#home section.hero .ripped {
	width: 100%;
	bottom: 0;
	left: 0;
	position: absolute;
}

main#home section.hero .search {
	font-size: 1.2em;
	padding: 3rem;
	color: var(--color-cuaternario);
}

main#home section.hero .search button {
	background-color: transparent;
    border: 0;
}


main#home section.hero .search button img {
	width: 25px;
}


main#home section.hero .search-input {
	background-color: transparent;
    border: 0;
	color: #fff;
}


main#home section.hero [type="search"]::-webkit-search-cancel-button {
	-webkit-appearance: none;
	appearance: none;
	height: 10px;
	width: 10px;
	background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE2LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCINCgkgd2lkdGg9IjEyMy4wNXB4IiBoZWlnaHQ9IjEyMy4wNXB4IiB2aWV3Qm94PSIwIDAgMTIzLjA1IDEyMy4wNSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMTIzLjA1IDEyMy4wNTsiDQoJIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGc+DQoJPHBhdGggZD0iTTEyMS4zMjUsMTAuOTI1bC04LjUtOC4zOTljLTIuMy0yLjMtNi4xLTIuMy04LjUsMGwtNDIuNCw0Mi4zOTlMMTguNzI2LDEuNzI2Yy0yLjMwMS0yLjMwMS02LjEwMS0yLjMwMS04LjUsMGwtOC41LDguNQ0KCQljLTIuMzAxLDIuMy0yLjMwMSw2LjEsMCw4LjVsNDMuMSw0My4xbC00Mi4zLDQyLjVjLTIuMywyLjMtMi4zLDYuMSwwLDguNWw4LjUsOC41YzIuMywyLjMsNi4xLDIuMyw4LjUsMGw0Mi4zOTktNDIuNGw0Mi40LDQyLjQNCgkJYzIuMywyLjMsNi4xLDIuMyw4LjUsMGw4LjUtOC41YzIuMy0yLjMsMi4zLTYuMSwwLTguNWwtNDIuNS00Mi40bDQyLjQtNDIuMzk5QzEyMy42MjUsMTcuMTI1LDEyMy42MjUsMTMuMzI1LDEyMS4zMjUsMTAuOTI1eiIvPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPC9zdmc+DQo=);
	background-size: 10px 10px;
	filter: invert(100%);

  }

main#home section.hero .search-input::placeholder {
	opacity: 0.5;
	color: #fff;
	font-size: 0.8em;
  }

main#home section.intro {
	padding: 5rem 3rem;
}
main#home section.intro .logos {
    display: flex;
    justify-content: center;
	align-items: center;
}

main#home section.intro .logos img,
main#home section.intro .logos svg {
	max-width: 350px;
	width: 100%;
}

main#home section.intro .logos .logo-generalitat {
	padding: 0.5rem 1.5rem;
}

main#home section.intro .text {
	font-size: 1.3rem;
	max-width: 750px;
	margin: 1rem auto;
	padding: 2rem 3rem;
	text-align: center;
}

main#home section.intro .text span {
	color: var(--color-secundario);
	font-weight: 700;
}

main#home section.intro .logos svg {
	padding: 1.5rem;
	max-height: 100px;
}

main#home section.intro .logo-linpeprensa {

}

main#home section.intro .logo-contactpress {

}

main#home section.intro .logo-giel {

}

main#home section.intro .logo-universitat-valencia {

}


main#home #module-summary {
	display: flex;
	justify-content: center;
}

main#home #module-summary  > div {
	background-color: var(--color-primario);
	color: #e4e3e0;
	aspect-ratio: 1;
	padding: 30px;
	border-radius: 50%;
	max-width: 250px;
	width: 90%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
	margin: 10px;
	text-align: center;
}

main#home #module-summary .number {
	font-family: 'DM Serif Display';
	font-weight: 400;
	line-height: 1;
	font-size: 5rem;
    margin: -20px 0 10px 0;
	width: 100%;
}

main#home #module-summary small {
	text-wrap: balance;
	font-size: 1em;
	font-weight: 700;
}

main#home #module-summary > div:nth-child(2) {
	background-color:var(--color-terciario);
}

main#home #module-summary > div:nth-child(2) .number {
	font-size: 2rem;
	margin: -10px 0 10px 0;
}



main#home #module-summary > div:nth-child(3) {
	background-color:var(--color-terciario);

}


#module-search {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	position: relative;
	align-items: center;
	margin: 6rem 0;
	overflow: hidden;
}

#module-search .text {
	text-align: right;
    padding: 0 3rem;
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
}

#module-search .text h3 {
	font-size: 3rem;
	margin: 0 0 1rem 0;
	font-family: 'DM Serif Display';
	font-weight: 400;
	line-height: 1;
	max-width: 450px;
}

#module-search .text h3::after {
	display: block;
    content: '';
    width: 75px;
    height: 1px;
    background-color: var(--color-secundario);
    margin: 35px 0 35px auto;
}

#module-search .text p {
	font-size: 0.9em;
	max-width: 450px;
}


#module-search img {
	max-width: 550px;
	padding: 0 3rem;
	scale: 1.1;

}

#module-search .image {
	display: block;
	width: 50%;
	height: 100%;
	background-color: var(--color-terciario);
	
}






#module-categories {
	position: relative;
	display: flex;
	justify-content: center;
	background-color: #fff;
	padding: 3rem 0;
	display: none;
}

#module-categories .text {
	text-align: right;
    padding: 0 3rem;
    width: 50%;
}

#module-categories .text h3 {
	color: var(--color-secundario);
	font-size: 3rem;
	margin: 0 0 1rem 0;
	font-family: 'DM Serif Display';
	font-weight: 400;
	line-height: 1;
	max-width: 450px;
}




/* Añadir registro */
.new-tag .select2-results__option--selectable {
	position: relative;
}
.new-tag .select2-results__options > .select2-results__option--selectable:nth-child(1)::after {
	content: 'Nuevo término';
    padding: 2px 10px;
    font-size: 0.8em;
    color: #fff;
    display: block;
    position: absolute;
    top: 6px;
    right: 10px;
    border-radius: 3px;
}


.new-tag .select2-results__options > .select2-results__option--highlighted.select2-results__option--selectable:nth-child(1) {
	background-color: rgb(118, 152, 58);
	cursor: pointer;
}

.new-tag.new-text .select2-results__options > .select2-results__option--selectable:nth-child(1)::after {
	content: 'Nunca utilizado';
}

  

#add-edit-register {
	padding-top: 3rem;
}

#add-edit-register > article {
	display: flex;
}

#add-edit-register article form {
	width: 70%;
}

#add-edit-register article form h1 span {
	color: var(--color-secundario);
}

#add-edit-register article aside {
	width: 30%;
	padding-left: 3rem;
	margin-top: 5rem;
}

#add-edit-register article aside a {
	color: #fff;
	text-decoration: underline;
}


#add-edit-register article aside a:hover {
	color:var(--color-main-text);
}

#add-edit-register article aside  .btn-main {
	background-color: var(--color-cuaternario);
	color: var(--color-secundario);
	margin-bottom: 1rem;
	text-wrap: balance;
}

#add-edit-register article aside .btn-main:hover {
	background-color: var(--color-terciario);
	border: 1px solid var(--color-terciario);

	color: #fff;
}

#add-edit-register article aside .btn-tertiary {
	font-size: 1rem;
	padding: 0;
	color: #fff;
	text-wrap: balance;
	text-align: left;
}

#add-edit-register article aside .btn-tertiary:hover {
	color: var(--color-main-text);
}


#add-edit-register article aside .container {
	background-color: var(--color-primario);
	color: #fff;
	padding: 40px;
	position: sticky;
	top: 3rem;
	border-radius: 4px;
}

#add-edit-register article aside h2 {
	margin: 0 0 0.3rem 0;
    font-size: 1.3em;
    line-height: 1.1;
}

#add-edit-register article aside .data {
	margin: 2rem 0;
}

#add-edit-register article aside .data > div {
	margin: 0 0 0.8rem 0.5rem;
}

#add-edit-register article aside .data .label {
	font-weight: 700;
	margin-bottom: 0;
	color: var(--color-main-text);
}

#add-edit-register article aside .data p {
	margin: 0;
}

#add-edit-register form .select2 {
	width:100%!important;
}
	


#add-edit-register form > div,
#add-edit-register form fieldset > div {
	margin-bottom: 15px;
}

#add-edit-register form label {
	display: inline-block;
	margin-bottom: 5px;
}

#add-edit-register .real-textarea { 
	resize: vertical; 
	field-sizing:content;
}

#add-edit-register input,
#add-edit-register .real-textarea {
	width: 100%;
	background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
	color: #444;
	padding: 4px 8px;

}

#add-edit-register form .descriptor {
	font-size: 0.8rem;
	padding: 4px 0;
	color: var(--color-sextario);
}

#add-edit-register form .btn-legend {
	width: 17px;
    height: 17px;
    margin-left: 3px;
    margin-bottom: -2px;
	cursor: pointer;
}

#add-edit-register form .legend {
	font-size: 0.8rem;
	padding: 4px 0;
	color: var(--color-sextario);
	display: none;
	background-color: #ffffffb5;
    padding: 1px 10px;
    border-radius: 4px;
    border: 1px solid #d8cccc;
    margin-bottom: 10px;
}

#add-edit-register form label > span {
	color: red;
}

#add-edit-register #div_register_repositoriobiblioteca_url {
	display: none;
}

#add-edit-register #div_register_repositoriobiblioteca_url.active {
	display: block;
}

#add-edit-register fieldset {
	margin-bottom: 1.5rem;
	padding-top: 1rem;
	border: 1px solid #fff;
}

#add-edit-register fieldset legend {
	font-size: 1rem;
}

#add-edit-register .buttons {
	margin-top: 2rem;	
}

#add-edit-register article aside a.btn-delete {
	display: block;
color: #fff;
border-radius: 4px;
margin: 1rem 0 0 0;
transition: color 0.3s ease;
&:hover {
	color: #ffbbbb;
}
}



#registers {

}

#registers h1 {
	display: inline-block;
}

#registers h1 .number {
    display: inline-block;
    color: var(--color-secundario);
    margin-left: 5px;
	font-style: italic;
}

#registers section.registers {
	padding-top: 4rem;
	padding-bottom: 4rem;

}

#registers section.registers h2 {
	color: var(--color-secundario);
	font-size: 2.5rem;
	margin: 0 0 1rem 0;
	font-family: 'DM Serif Display';
	font-weight: 400;
	line-height: 1;
	text-wrap: balance;
}

#registers section.registers h3 {
	color: var(--color-main-text);
	font-size: 1.3rem;
	margin: 0 0 0.2rem 0;
}

#registers section.registers .data {
	display: flex;
}

#registers section.registers .data > div {
	position: relative;
	margin-right: 0.6rem;
	padding-right: 0.6rem;
}

/*
#registers section.registers .data > div:not(:nth-child(3))::after {
	display: block;
	content: '·';
	position: absolute;
    right: -3px;
	top: 1px;
} 
*/

#registers article {
	border-bottom: 1px dotted var(--color-terciario);
	padding-top: 2rem;
	padding-bottom: 2rem;
	padding-left: 2.5rem;
}

#registers article:first-of-type {
	border-top: 1px dotted var(--color-terciario);
}
#registers-draft .pagination,
#registers .pagination {
	padding: 40px 0;
	text-align: center;
}

#registers-draft .pagination .page-numbers,
#registers .pagination .page-numbers {
	margin: 0 0.1rem;
}
#registers-draft .pagination .page-numbers.current,
#registers .pagination .page-numbers.current {
	font-weight: 700;
    color: var(--color-secundario);
}

#registers-draft .pagination a.page-numbers:hover,
#registers .pagination a.page-numbers:hover {
	text-decoration: underline;
}



.message {
	padding: 40px 0;
	border-radius: 4px;
	font-weight: bold;
}

.message.success {
	margin-top: 3rem;
	padding: 10px 20px;
	background-color: #6bb47d;
	color: #fff;
}


#register { 
	padding: 4rem 0;
}

#register .entry-content {
	display: grid;
	grid-template-columns: 1fr 5fr;
	grid-template-rows: min-content min-content min-content min-content;
	gap: 1.5em 2em;
	grid-auto-flow: row;
	padding-left: 2rem;

}

#register .entry-content .label {
	text-align: right;
	color: var(--color-primario);
    font-weight: 700;
}

#register .entry-content > div ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

#register .entry-content > div a{
	text-decoration: underline;
}

#register .entry-content > div a:hover {
	color: var(--color-secundario);
}

#register .btn-back {
    margin-right: 1rem;
}

#register .btn-back:hover {
	text-decoration: underline;
}

#register header {
	border-bottom: 1px dotted var(--color-terciario);
	padding-bottom: 2rem;
    margin: 0 0 2rem 0;

}

#register header h1 {
	color: var(--color-secundario);
    font-size: 3rem;
    margin: 0 0 1rem 0;
    font-family: 'DM Serif Display';
    font-weight: 400;
    line-height: 1;
	text-wrap: balance;
}

#register header h2 {
	margin-bottom: 0.2rem;
	font-size: 1.6rem;
}

#register header .inline {
	font-size: 1.4rem;
	margin-bottom: 0;
	margin: 1rem 0 0 0;
}







#registers-draft {

}

#registers-draft section.registers {
	padding-bottom: 4rem;

}

#registers-draft h1 {
	margin: 3rem 0 2rem 0 ;
}

#registers-draft section.registers h2 {
	color: var(--color-secundario);
	font-size: 1.8rem;
	margin: 0 0 1rem 0;
	font-family: 'DM Serif Display';
	font-weight: 400;
	line-height: 1;
}

#registers-draft section.registers h3 {
	color: var(--color-main-text);
	font-size: 1.1rem;
	margin: 0 0 0.2rem 0;
}

#registers-draft section.registers .data {
	display: flex;
}

#registers-draft section.registers .data > div {
	position: relative;
	margin-right: 0.6rem;
	padding-right: 0.6rem;
}

/*

#registers-draft section.registers .data > div:not(:nth-child(3))::after {
	display: block;
	content: '·';
	position: absolute;
    right: -3px;
	top: 1px;
} 

*/

#registers-draft article {
	border-bottom: 1px dotted var(--color-terciario);
	padding-top: 1rem;
	padding-bottom: 1rem;
	padding-left: 2.5rem;
	display: flex;
	align-items: center;
}

#registers-draft article:first-of-type {
	border-top: 1px dotted var(--color-terciario);
}

#registers-draft article .entry-content {
	flex-grow: 1;
}

#registers-draft article .edit{
	padding: 2rem;
}




#advanced-search {
	padding-top: 3rem;
}

#advanced-search > article {
	display: flex;
}

#advanced-search article form {
	width: 70%;
}

#advanced-search article form h1 span {
	color: var(--color-secundario);
}

#advanced-search article aside {
	width: 30%;
	padding-left: 3rem;
	margin-top: 1.5rem;
}

#advanced-search article aside .container {
    background-color: var(--color-primario);
    color: #fff;
    padding: 40px;
    position: sticky;
    top: 3rem;
    border-radius: 4px;
}

#advanced-search input:not([type="submit"]),
#advanced-search select {
    width: 100%;
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
    color: #444;
    padding: 4px 8px;
}

#advanced-search form label {
    display: block;
    margin-bottom: 5px;
}

#advanced-search form > div, 
#advanced-search form fieldset > div {
    margin-bottom: 15px;
}


#advanced-search form .flex {
	display: flex;
}

#advanced-search form .yon {
	width: 200px;
}







#summary {
	padding: 40px 0;

}


#summary .nregisters {
	display: flex;
	justify-content: space-around;
	text-align: center;
	align-items: center;
	margin-bottom: 70px;
}

#summary .nregisters > div {
	background-color: var(--color-primario);
	color: #e4e3e0;
	aspect-ratio: 1;
	padding: 30px;
	border-radius: 50%;
	max-width: 250px;
	width: 90%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
	margin: 10px;
}

#summary .nregisters > div:nth-child(1) {
	background-color:var(--color-secundario);
}


#summary .nregisters > div:nth-child(3) {
	background-color:var(--color-terciario);

}

#summary .nregisters .number {
	font-family: 'DM Serif Display';
	font-weight: 400;
	line-height: 1;
	font-size: 4rem;
    margin: 0 0 10px 0;
	width: 100%;
}

#summary .nregisters small {
	text-wrap: balance;
	font-size: 1em;
	font-weight: 700;
}

#summary .grid-editores {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: min-content min-content min-content min-content;
	grid-auto-flow: row;
}

#summary .grid-editores > div {
	padding: 10px;
}

#summary .grid-editores div:nth-child(6n+4),
#summary .grid-editores div:nth-child(6n+5),
#summary .grid-editores div:nth-child(6n+6) {
    background-color: #71756912;
}

#summary .grid-editores .header:nth-child(2),
#summary .grid-editores .header:nth-child(3),
#summary .grid-editores div:nth-child(3n+2),
#summary .grid-editores div:nth-child(3n) {
    text-align: center;
}


#summary .grid-editores .header {
	font-weight: 700;
}


/* general */

section.registers article.hovered {
	background-color: rgb(173 162 148 / 13%);
}
    

#team h1 {
	font-size: 3.5em;
	color: var(--color-secundario);
}

#team .member a:hover .icon-link {
	display: inline-block;

}

#team .icon-link {
	display: none;
	width: 20px;
	position: absolute;
	margin: 12px 8px;
}


#team .text {
	max-width: 750px;
	font-size: 1.2em;
	margin-bottom: 6rem;
}

#team .team-grid {
	display: flex;
	flex-wrap: wrap;
}

#team .team-grid .member {
	max-width: 300px;
	padding: 0 3rem 5rem 0;
}

#team .team-grid .member .image {
	max-width: 70%;
	margin-bottom: 1.6rem;
	position: relative;
}

#team .team-grid .member .image img {
	position: relative;
	z-index: 1;
}

#team .team-grid .member .name {
	text-wrap: balance;
	font-size: 1.5em;
	line-height: 1.1;
	font-family: 'DM Serif Display';
    font-weight: 400;
	margin-bottom: 0.5rem;
	color: var(--color-secundario);
}


#team .team-grid .member .university {
}

#team .team-grid .member .position {
	color: var(--color-primario);

}

#team .team-grid .member .image::before {
    display: block;
    content: '';
    height: calc(100% + 2rem);
    position: absolute;
    width: 70%;
    background-color: rgb(157 144 126 / 35%);
    padding: 0;
    margin-top: -1.1rem;
	z-index: ;
}


@media only screen and (max-width:768px) {
	#team h1 {
		font-size: 2.7em;
	}

	#team .text {
		font-size: 1.1em;
	}

	#team .team-grid .member .name {
		font-size: 1.3em;
	}

	#team .team-grid {
		justify-content: center;
	}

	#team .team-grid .member {
		max-width: 200px;
		padding: 0 2rem 5rem 0;
	}
}






#projects h1 {
    font-size: 3.5em;
    color: var(--color-secundario);
}

#projects {

}

#projects section {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 4rem;
}

#projects article {
	width: 70%;
	padding-right: 4rem;
}

#projects aside {
	width: 30%;
}

#projects .subtitle {
	text-transform: uppercase;
	font-size: 1.6em;
}

#projects .subtitle::after {
	content: '';
    display: block;
    width: 70px;
    height: 1px;
    background-color: var(--color-secundario);
    margin: 1rem 0 2rem 0;
}

#projects .intro {
	font-size: 1.2em;
}

#projects .intro span {
	color: var(--color-primario);
	font-size: 0.8em;
}

#projects .content {
	font-size: 0.9em;
	line-height: 1.4;
}

#projects section .logos {
    display: flex;
    justify-content: start;
    align-items: center;
}

#projects section .logos img,
#projects section .logos svg {
    padding: 1.5rem 0;
    max-height: 109px;
    width: 200px;
    max-width: 350px;
    margin-right: 4rem;

}



#projects aside h3 {
	color: var(--color-primario);
	margin-bottom: 0.5em;
}

#projects aside .title {
	color: var(--color-primario);
	margin: 0.8rem 0;

}


#projects aside .members {
	padding-left: 0.6rem;
}

#projects aside .members .member {
	display: flex;
	margin-bottom: 1rem;
}
 
#projects aside .members .member .image {

}

#projects aside .members .member .image .mask {
	overflow: hidden;
	width: 40px;
	height: 40px;
	border-radius: 50%;
}


#projects aside .members .member .data {
	padding-left: 0.5em;
}

#projects aside .members .member .university {
	color: var(--color-secundario);
	font-size: 0.8em;
}

#projects aside .keywords {
	padding-top: 0.5em;
}

@media only screen and (max-width:768px) {

	#projects section {
		flex-wrap: wrap;
	}

	#projects article {
		width: 100%;
		padding-right: 0;
	}

	#projects aside {
		width: 100%;
	}
}




svg {
	width: 40px;
}

#top-line,
#bottom-line,
#middle-line {
	transform-box: fill-box;
	transform-origin: center;
}

header.main.active svg {
	#top-line {
		animation: down-rotate 0.6s ease-out both;
	}
	#bottom-line {
		animation: up-rotate 0.6s ease-out both;
	}
	#middle-line {
		animation: hide 0.6s ease-out forwards;
	}
}

@keyframes up-rotate {
	0% {
		animation-timing-function: cubic-bezier(0.16, -0.88, 0.97, 0.53);
		transform: translateY(0px);
	}
	30% {
		transform-origin: center;
		animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
		transform: translateY(-10px);
	}
	100% {
		transform-origin: center;
		transform: translateY(-10px) rotate(45deg) scale(0.9);
	}
}

@keyframes down-rotate {
	0% {
		animation-timing-function: cubic-bezier(0.16, -0.88, 0.97, 0.53);
		transform: translateY(0px);
	}
	30% {
		transform-origin: center;
		animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
		transform: translateY(10px);
	}
	100% {
		transform-origin: center;
		transform: translateY(10px) rotate(-45deg) scale(0.9);
	}
}

@keyframes hide {
	29% {
		opacity: 1;
	}
	30% {
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}





@media only screen and (max-width:1200px) {
	
	header.main nav ul,
	#menu-user-logged nav.usuario-logueado ul {
		font-size: 0.9em;
	}

	header.main h1 {
		font-size: 1.2em;
	}
}


@media only screen and (max-width:980px) {



	#icon-menu {
		display: block;
	}

	header.main.active #icon-menu {
		order: 1;
		margin: 0 auto;
	}

	header.main.active .logo,
	header.main.active .logo-mobile {
		order: 2;
	}

	header.main.active nav.main {
		order: 3;
	}


	header.main.active {
		background-color: rgba(87, 90, 81, 0.98) !important;
		width: 100%;
		height: 100%;
		position: fixed !important;
		z-index: 9999999;
		display: block;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		display: flex;
		flex-wrap: wrap;
		align-content: center;
		display: flex;
        justify-content: center;
	}

	body.home header.main.active .logo-mobile,
	header.main.active  h1 {
		color: var(--color-cuaternario);
		font-size: 1.5rem;
		max-width: 750px;
		margin: 1rem auto;
		/* padding: 0 3rem; */
		padding: 0;

		text-align: center;
		display: block;
		font-family: 'DM Serif Display';
		font-weight: 400;
		line-height: 1;
		text-wrap: balance;
		margin-bottom: 2rem;
	}

	header.main nav.main{
		display: none;
	} 

	header.main.active nav.main {
		display: block;

	}


	header.main.active nav ul {
		flex-wrap: wrap;
		align-content: center;
		margin-bottom: 3rem;
	}
	
	header.main.active nav ul li {
		width: 100%;
		text-align: center;
		padding: 0.5rem;
	}

	header.main.active .ripped {
		display: none;
	}
	
	header.main .icon-menu {
		display: block;
	}


}


@media only screen and (max-width:768px) {
	
	.wrapper {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	header.main h1 {
		text-wrap: balance;
		font-size: 1.2rem;
		padding-right: 1rem;
	}




	main#home section.hero {
		padding-top: 5rem;
		padding-bottom: 2rem;
	}

	main#home section.hero .search {
		padding: 2rem;
	}

	main#home section.hero h1 {
		font-size: 2.5rem;
	}

	main#home section.hero h2 {
		max-width: 350px;
		text-wrap: pretty;
		font-size: 1.3em;
	}

	main#home section.intro .logos {
		flex-wrap: wrap;
	}

	main#home section.intro {
		padding: 2rem 1rem;
	}


	#module-search .text {
		text-align: left;
	}

	#module-search .text h3 {
		font-size: 1.8rem;
		margin-bottom: 0;
	}

	#module-search .text h3::after {
		margin: 25px auto 15px 0;
	}

	
	#module-search > div{
		width: 100% !important;
	}

	#module-search img {
		max-width: 550px;
		padding: 0 3rem;
		scale: 1;
		width: 100%;
	}




	#registers section.registers {
		padding-top: 1rem;
		padding-bottom: 1rem;
	}

	#registers section.registers h1 {
		font-size: 1.6rem;
	}

	#registers section.registers h2 {
		font-size: 1.5rem;
	}

	#registers section.registers .data {
		flex-wrap: wrap;
	}

	#registers section.registers .data > div {
		width: 1000%;
	}

	#registers section.registers .data > div::after {
		display: none !important;
	}

	#registers article {
		padding-top: 1rem;
		padding-bottom: 1rem;
		padding-left: 1.5rem;
	}

	#registers section.registers h3 {
		font-size: 1.1rem;
	}




	#register {
		padding: 2rem 0;
	}

	#register header h1 {
		font-size: 2.2rem;
	}

	#register header h2 {
		font-size: 1.3rem;
	}

	#register header .inline {
		font-size: 1.1rem;
	}


}




@media only screen and (max-width:550px) {
    #register .entry-content {
		grid-template-columns: 1fr;
		padding-left: 0rem;
		gap: 0.5em 2em;
	}

	#register .entry-content .label {
		text-align: left;
		margin-top: 1rem;

	}


	
}




/*------------------------------------*\
    Footer
\*------------------------------------*/

footer.main {
	color: var(--color-main-text);
	display: flex;
	padding-top: 2rem;
	padding-bottom: 2rem;
	align-items: center;
}

footer.main a:hover {
    text-decoration: underline;
    text-decoration-color: var(--color-quintario);
}

footer.main #menu-footer {
	font-size: 0.8em;
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
}

footer.main #menu-footer li:not(:last-of-type) {
	padding-right: 10px;
	margin-right: 10px;
	border-right: 1px solid var(--color-quintario);
}


footer.main .copyright {
	font-size: 0.8em;
	margin-right: 20px;
}

footer.main nav.footer {
	margin-right: 20px;
}


footer.main .footer-logo {
	display: flex;
	align-items: center;
	margin-left: auto;

}
footer.main .footer-logo-text {
	font-size: 0.7em;
	margin-right: 10px; 
}



footer.main .footer-logo img {
	width: 70px;
	min-width: 70px;

}
@media only screen and (max-width:550px) {

	footer.main {
		flex-direction: column;
		gap: 2rem;
	}
}