:root {
	--color-dark: rgb(176, 184, 204);
	--color-light: rgb(210, 223, 255);
	--color-button: rgb(59, 90, 169);
	--color-button-hover: #1c3576;
	--color-button-active: rgb(0, 0, 0);
	--color-background-container: rgb(255, 255, 255);
}

body {
	font-family: sans-serif;
	margin: 0;
	padding: 0;
	background-color: var(--color-light);
}

h2 {
	margin-bottom: 0;
}
h3 {
	margin: 0;
}

hr {
	margin-bottom: 1.5em;
}

a {
	text-decoration: none;
	
}

button, select {
	font-size: 1em;
}

textarea {
	width: calc(100% - 1.5em);
	resize: vertical;
	padding: 0.5em;
	font: inherit;
	white-space: pre;
	height: 8em;
}

select {
	text-align: center;
}

input {
	font: inherit;
}

.header {
	position: relative;
}

.container {
	width: auto;
	min-width: 500px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 2em 3em;

	box-shadow: 0px 20px 20px -25px rgb(0, 0, 0);
	background-color: var(--color-background-container);
}


.sticky {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	z-index: 100;
}

/* RESULTS */

.outer-container {
	position: relative;
}

.panel-container {
	position: fixed;
	top: 6rem;
	left: 0;

	width: calc(50% - 6em);
	min-width: calc(500px - 6em);
	max-width: calc(900px - 6em);
	height: calc(100% - 8rem);
	padding: 0 3em 2em 3em;

	box-shadow: 0px 20px 20px -25px rgb(0, 0, 0);
	background-color: var(--color-background-container);

	overflow: auto;
}

.results-container {
	position: absolute;
	top: 6rem;
	left: min(max(50%, 500px), 900px);

	width: calc(100% - min(max(50%, 500px), 900px) - 6em);
	padding: 0 3em 2em 3em;

	/* box-shadow: 0px 20px 20px -25px rgb(0, 0, 0);
	background-color: var(--color-background-container); */
}

.results-header {
	padding-top: 2em;
	top: 5rem;
	background-color: var(--color-background-container);
}

.results-header-panel {
	position: fixed;
	padding: 2em 3em 0 3em;
	width: calc(100% - 6em);
	height: 5rem;
	background-color: var(--color-background-container);
}

/* RESULTS */


.rounded-corners {
	border-radius: 1em;
}

.grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); /*this */
	gap: 2em;
}

.search-option {
	padding: 1em 0 2em 0;
	position: relative;
	height: fit-content;
}

.options {
	position: relative;
}

.section {
	position: relative;
	margin: 2em 0;
	min-height: 2em;
}

.centered-elements {
	display: flex;
	justify-content: center;
	align-items: center;
}
.center {
	margin: 0 auto;
	width: fit-content;
	text-align: center;
}
.left {
	position: absolute;
	left: 0;
}
.right {
	position: absolute;
	right: 0;
}
.flex-row {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.flex-row-center {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-evenly;
	align-items: center;
}
.flex-col-center {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.button, .button-square, .button-small, .button-big, .button-fit, .button-full-width, .button-not {
	background-color: var(--color-button);
	border: none;
	color: white;
	border-radius: 1em;
	padding: 0 0.5em;
	height: 2em;
	overflow: hidden;
	
	display: inline-flex;
    align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.1s ease-in-out;
}

.button {
	width: 11em;
}
.button-square {
	width: 2em;
}
.button-small {
	width: 7em;
}
.button-big {
	width: 15em;
}
.button-tall {
	height: 3em;
}
.button-fit {
	width: fit-content;
}
.button-full-width {
	width: 100%;
	justify-content: left;
	padding-left: 1em;
}
.button-not {
	width: 3em;
	opacity: 0.25;
	user-select: none;
	padding: 0;
}
.button-not.active {
	opacity: 1;
}

.button:hover, .button-square:hover, .button-small:hover, .button-big:hover, .button-fit:hover, .button-full-width:hover, .button-not:hover {
	background-color: var(--color-button-hover);
}

.button-explanation {
	background-color: var(--color-button);
	border: none;
	color: white;
	border-radius: 1em;
	padding: 0.4em;
	margin: 0 0.4em;
	display: inline-flex;
	width: fit-content;
	text-align: center;
	justify-content: center;
	vertical-align: center;
}

.complex-option:hover{
	background-color: var(--color-button);
}

.file-upload-button {
	height: 4em;
}
input[type="file"] {
	display: none;
}
select {
	scale: 1.1;
}

#date-from, #date-to {
	width: 4em;
	margin: 0 0.5em;
	background-color: white;
	border: none;
}

#field_options {
	position:relative;
	width: 100%;
	overflow-x: auto;
	padding: 2em 0;
	background-color: var(--color-light);
}
.search-field {
	display: grid;
	grid-template-columns: 7em 7em 11em 15em 2em;
	grid-gap: 2em;
	padding: 0.5em;
}
.complex-inst {
	grid-column: 1;
}
.complex-textid {
	grid-column: 2;
}
.complex-option {
	grid-column: 3;
}
.complex-text {
	grid-column: 4;
}
.complex-trash {
	grid-column: 5;
}

.complex-textid{
	width: 4em;
	text-align: center;
}
.complex-text, .search-selection {
	width: 15em;
	text-align: center;
}

.cell {
	margin: auto;
	padding: 0;
	height: 2em;
}


.two-cols {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 3em;
}

.results-button {
	margin: 0.5em;
}

.accordion {
	margin-top: 1em;
}
.panel {
	margin: 1em 0;
	margin-top: -1em;
	padding: 1em;
	background-color: var(--color-light);
	border-radius: 0 0 1em 1em;
}

#back_button {
	position: absolute;
	top: 0;
	left: 0;
}

.results-title {
	display: inline-block;
	margin: 0.1em;
}

.journal-info-ul {
	margin-top: 0;
}
.journal-info-p {
	margin-bottom: 0.3em;
}

.slider {
	width: 100%;
	max-width: 20em;
	text-align: center;
}

#remove-repeated-div {
	max-width: 220px;
	margin-top: 0.5em;
}

.search-selection {
	position: fixed;
	z-index: 999;
	background-color: white;
	min-height: 2em;
	max-height: 10em;
	overflow-y: auto;

	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.search-selection > div, .search-selection > button {
	margin: 0.5em;
}

.search-options {
	width: 70%;
	text-align: left;
}
.search-item {
	display: block;
}
.search-options-button {
	display: block;
	margin: 0.5em 0;
}

.button-show-options {
	position: absolute;
	display: none;
}

.explanation-list {
	max-width: 65em;
	margin: 0;
}
.explanation-list > li {
	margin: 0.6em 0;
}

.warning {
	font-style: italic;
	margin-bottom: 1em;
}


.inst-021018s57 {
	color: rgb(23, 23, 222);
}
.inst-051escj72 {
	color: rgb(139, 23, 222);
}
.inst-04pp8hn57 {
	color: rgb(210, 22, 22);
}
.inst-02tyrky19 {
	color: rgb(62, 122, 21);
}
.inst-01jsq2704 {
	color: rgb(255, 136, 0);
}
.inst-029pk6x14 {
	color: rgb(42, 100, 120);
}
.inst-00fbnyb24 {
	color: rgb(169, 131, 7);
}
.inst-02nkxrq89 {
	color: rgb(234, 137, 154);
}
.inst-03zga2b32 {
	color: rgb(155, 17, 30);
}

.not-absolute {
	position: relative !important;
}


.footer-top {
	margin-top: 0;
	position: relative;
	padding: 25px 25px;
	background-color: #E1F6F9;
	font-size: 12px;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
}

.footer-top .logo-eu {
	width: 100px;
	height: auto;
	margin-left: 20px;
	margin-top: -7px;
}

.footer-top-content{
	display: flex;
	text-align: justify;
	vertical-align: middle;
	-webkit-box-pack: center;
	justify-content: center;
	width: 33%;
	user-select: none;
}

.footer-top-logos {
	margin-top: 0;
	position: relative;
	padding: 25px 25px;
	background-color: #1A1A1A;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-top-logos a{
	color: #1A1A1A;
	user-select: none;
	transition: opacity 0.1s ease-in-out;
}

.footer-top-logos a:hover {
	opacity: 0.5;
}

.footer-top-logos img{
	width: 130px;
	height: auto;
	margin-top: 10px;
}

.footer-top-logos2 {
	margin-top: 0;
	position: relative;
	padding: 25px 425px;
	background-color: #1A1A1A;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-top-logos2 a {
	color: #1A1A1A;
	user-select: none;
	transition: opacity 0.1s ease-in-out;
}

.footer-top-logos2 a:hover {
	opacity: 0.6;
}

.footer-top-logos2 img {
	width: 130px;
	height: auto;
	margin-top: 10px;
}

.footer-top-logos3 {
	margin-top: 0;
	position: relative;
	padding: 10px 25px;
	background-color: #1A1A1A;
	/* display: flex;
	justify-content: space-between;
	align-items: center; */
	user-select: none;
	font-family: inherit;
}

.footer-top-logos3 p{
	color: #fff;
	font-size: 12px;
	text-align: center;
}

.footer-top-logos4 {
	margin-top: 0;
	position: relative;
	padding: 20px 450px;
	background-color: #1A1A1A;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-top-logos4 a {
	color: #1A1A1A;
	user-select: none;
	transition: opacity 0.1s ease-in-out;
}

.footer-top-logos4 a:hover {
	opacity: 0.6;
}

.footer-top-logos4 img {
	width: 100px;
	height: auto;
	margin-top: 10px;
}

.footer-top-logos3 a{
	color: var(--color-light);
	text-emphasis: bold;
}

.search-selection_example {
	width: 15em;
}

.search-selection_example {
	border-width: 2px;
	border-style: solid;
	border-color: rgb(59, 90, 169);
	border-radius: 2%;
	position: relative;
	z-index: 999;
	background-color: white;
	min-height: 2em;
	max-height: 10em;
	overflow-y: auto;

	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.search-selection_example > div, .search-selection_example > button {
	margin: 0.5em;
}

.search-options_example {
	width: 70%;
	text-align: left;
}

.footer-top-logos4_tc {
	margin-top: 0;
	position: relative;
	padding: 15px 100px;
	background-color: #1A1A1A;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-top-logos4_tc a {
	color: #1A1A1A;
	user-select: none;
	transition: opacity 0.1s ease-in-out;
}

.footer-top-logos4_tc a:hover {
	opacity: 0.6;
}

.footer-top-logos4_tc img {
	width: 100px;
	height: auto;
	margin-top: 10px;
}

.merge-container{
	margin-top: -40px;
	border-radius: 8px;
	border-color: rgb(59, 90, 169);
	background-color: rgba(255, 232, 195, 0);
	padding-left: 20px;
	padding-right: 20px;
	width: auto;
	height: auto;
	vertical-align: center;
}

@media (max-width: 1500px) {
	.merge-container {
	  margin-top: -70px;
	}
  }

.merge-disc{
	margin-left: 200px;
	text-align:center;
}

.disc-max-authors{
	margin-top: 20px;
	margin-bottom: -10px;
	border-radius: 8px;
	background-color: rgb(255,232,195);
	width: auto;
	height: auto;
	vertical-align: center;
	text-align: center;
}

.filler-flex-col{
	height: 3em;
}

@media (max-width: 1500px) {
	.filler-flex-col {
	  height: 0em;
	}
  }

a.paper-link-a, a.paper-link-a:visited{
	font-size: 16px;
	color: #38559f;
}

p.paper{
	line-height: 150%;
	font-size: 14px;
}

img.doi-icon{
	vertical-align: center;
	user-select: none;
}