/*
HTML general CSS
*/
html {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	height: 100%;
}

h1, h2, h3, h4, h5, h6, button {
	font-family: "Montserrat", sans-serif
}

body {
	text-align: justify !important;
	background-color: white;
	width: 100%;
	font-family: "Lato", sans-serif;
	font-size: 16px !important;
	table-layout: fixed !important;
}

header {
	font-family: "Montserrat", sans-serif;
	background-repeat: no-repeat;
}

/*Browser-specific CSS*/
::-webkit-input-placeholder {
	font-style: italic;
}

:-moz-placeholder {
	font-style: italic;
}

::-moz-placeholder {
	font-style: italic;
}

:-ms-input-placeholder {
	font-style: italic;
}

/*Override DataTables CSS*/
table.dataTable thead .sorting, table.dataTable thead .sorting_asc,
	table.dataTable thead .sorting_desc, table.dataTable thead .sorting_asc_disabled,
	table.dataTable thead .sorting_desc_disabled {
	background-repeat: no-repeat !important;
	background-position: center left !important;
}

/*Overrid W3CSS classes*/
.w3-bar {
	font-family: "Montserrat", sans-serif !important;
}

/*Custom classes*/

/*HEADER / NAVBAR MENU*/
.header-mainmenu-scroll {
	position: fixed;
	z-index: 1;
	top: 0px;
}

.header-dropdown-scroll {
	top: 50px;
	z-index: 10000;
}

.siteTitle {
	font-size: 68px;
	font-weight: bold;
	text-shadow: 1px 1px 0 #444;
}

.titleMobile {
	font-size: 55px;
	font-weight: bold;
	text-shadow: 1px 1px 0 #444;
}

/*HELP SECTION - MANUAL*/
.manual-section {
	max-height: 60vh;
	width: 100%;
	overflow-y: auto;
	font-size: 16px !important;
}

.image-center {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*MAIN BODY ELEMENTS*/
.wrapper {
	background-color: white;
	margin: 0 auto 0 auto;
	width: 90%;
	float: top;
	overflow: hidden;
}

.form-wrapper {
	margin: 0 auto 0 auto;
	width: 80%;
	float: top;
	overflow: hidden;
	height: 100%;
}

/*FOOTER*/
/*footer*/
.footer {
	font-family: "Montserrat", sans-serif;
	font-size: 15px;
	clear: both;
	height: 60px;
	width: 100%;
	display: table;
	bottom: 0;
	left: 0;
	right: 0;
	text-align: center;
	z-index: -1;
}

.small br {
	height: 40%;
}

/*BUTTON ITEMS*/
.tabButton {
	box-shadow: inset 0px 1px 0px 0px #ffffff;
	background: linear-gradient(to bottom, #ededed 5%, #dfdfdf 100%);
	background-color: #ededed;
	border-radius: 6px;
	border: 1px solid #dcdcdc;
	display: inline-block;
	cursor: pointer;
	color: #777777;
	font-family: Arial;
	font-size: 15px;
	font-weight: bold;
	padding: 6px 18px;
	text-decoration: none;
	text-shadow: 0px 1px 0px #ffffff;
}

.tabButton:hover {
	background: linear-gradient(to bottom, #dfdfdf 5%, #ededed 100%);
	background-color: #dfdfdf;
}

.tabButton:active {
	position: relative;
	top: 1px;
}

/*HIERARCHICAL TREE ELEMENTS FOR ECOSYSTEMS AND PHYLOGENY*/
ul[id^="treeview"]{
	list-style-type: none !important;
	margin: 0;
	padding: 0;
}

.caret {
	cursor: pointer;
	-webkit-user-select: none; /* Safari 3.1+ */
	-moz-user-select: none; /* Firefox 2+ */
	-ms-user-select: none; /* IE 10+ */
	user-select: none;
	color: red;
	list-style-type: none !important;
}

.caret::before {
	content: "\25B6";
	display: inline-block;
	color: red;
	list-style-type: none !important;
}

.caret-down::before {
	-ms-transform: rotate(90deg); /* IE 9 */
	-webkit-transform: rotate(90deg); /* Safari */
	transform: rotate(90deg);
	list-style-type: none !important;
}

.nested {
	display: none;
	list-style-type: none !important;
}

.active {
	display: block;
	list-style-type: none !important;
}

.caret-green {
	cursor: pointer;
	-webkit-user-select: none; /* Safari 3.1+ */
	-moz-user-select: none; /* Firefox 2+ */
	-ms-user-select: none; /* IE 10+ */
	user-select: none;
	color: green;
	list-style-type: none !important;
}

.caret-green::before {
	content: "\25B6";
	display: inline-block;
	color: green;
	list-style-type: none !important;
}

/*CUSTOM CSS FOR ELEMENTS WITH IDs*/

/*Cookie Consent CSS*/
#cookieConsent {
	background-color: rgba(20, 20, 20, 0.8);
	min-height: 26px;
	font-size: 14px;
	color: #ccc;
	line-height: 26px;
	padding: 8px 0 8px 30px;
	font-family: "Trebuchet MS", Helvetica, sans-serif;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	display: none;
	z-index: 9999;
}

#cookieConsent a {
	color: #4B8EE7;
	text-decoration: none;
}

#closeCookieConsent {
	float: right;
	display: inline-block;
	cursor: pointer;
	height: 20px;
	width: 20px;
	margin: -15px 0 0 0;
	font-weight: bold;
}

#closeCookieConsent:hover {
	color: #FFF;
}

#cookieConsent a.cookieConsentOK {
	display: inline-block;
	border-radius: 5px;
	padding: 0 20px;
	cursor: pointer;
	float: right;
	margin: 0 60px 0 10px;
}

#cookieConsent a.cookieConsentOK:hover {
	background-color: #E0C91F;
}

/*SLIDERS CUSTOM CSS*/

/*slider css from jquery ui*/
#slider_seq_length .ui-slider-range {
	background: #607d8b !important
}

#slider_seq_length .ui-slider-handle {
	border-color: black;
	background-color: #9e9e9e !important;
}

#slider_avseq_length .ui-slider-range {
	background: #607d8b !important
}

#slider_avseq_length .ui-slider-handle {
	border-color: black;
	background-color: #9e9e9e !important;
}

#slider_seq_num .ui-slider-range {
	background: #607d8b !important
}

#slider_seq_num .ui-slider-handle {
	border-color: black;
	background-color: #9e9e9e !important;
}

#slider_perc_hab .ui-slider-range {
	background: #607d8b !important
}

#slider_perc_hab .ui-slider-handle {
	border-color: black;
	background-color: #9e9e9e !important;
}

#slider_taxon_num .ui-slider-range {
	background: #607d8b !important
}

#slider_taxon_num .ui-slider-handle {
	border-color: black;
	background-color: #9e9e9e !important;
}

#slider_pdb_conf .ui-slider-range {
	background: #607d8b !important
}

#slider_pdb_conf .ui-slider-handle {
	border-color: black;
	background-color: #9e9e9e !important;
}

#slider_perc_ncbi .ui-slider-range {
	background: #607d8b !important
}

#slider_perc_ncbi .ui-slider-handle {
	border-color: black;
	background-color: #9e9e9e !important;
}

#handle_hab, #handle_ncbi {
	width: 3em;
	height: 1.6em;
	top: 50%;
	margin-top: -.8em;
	text-align: center;
	line-height: 1.6em;
}


.altmetric-embed {
	background-color:transparent !important;
}