/**
 * @file styles/eries-custom-style.css
 *
 * Copyright (c) 2021 Dominik Bláha Czech University of Life Sciences Prague
 * Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
 *
 * @brief Custom components for ERIES journal
 * have to use hardcoded sizes because cannot reach the less variables
 */

.pkp_page_index .additional_content {
	padding-top: 2.143rem;
	padding-bottom: 2.143rem;
	/* margin-left: -0.714rem;
	margin-right: -0.714rem; */

	@media (min-width: 480px) {
		padding-top: 1.43rem;
		padding-bottom: 1.43rem;
		/* margin-left: -1.43rem;
		margin-right: -1.43rem; */
	}

	@media (min-width: 992px) {
		padding-top: 2.143rem;
		padding-bottom: 2.143rem;
		/* margin-left: -2.143rem;
		margin-right: -2.143rem; */
	}
}
 
 /* Buttons */
.cmp_button_full {
	font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen-Sans", "Ubuntu", "Cantarell", "Helvetica Neue", sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	background: #1e6fb8;
	color: #fff;
	border: none;

	display: inline-block;
	padding: 0 1em;
	border-radius: 3px;
	box-shadow: inset 0 -1em 1em rgba(0, 0, 0, 0.1);
	font-size: 0.93rem;
	line-height: calc(2.143rem - 2px); /* account for border */
	text-decoration: none;

	margin-top: 0.714rem;
	margin-bottom: 0.714rem;
}

.cmp_button_full:hover, .cmp_button_full:focus, .cmp_button_full:active {
	box-shadow: inset 0 -1em 1em rgba(0, 0, 0, 0.1);
	background: #f7bc4a;
	color: #fff;
}

/* hide additional description on home page load */
#descriptionMore {
	display: none;
}

/* white background on header */
.pkp_structure_head {
	background-color:#fff;
}
.pkp_site_name_wrapper {
	background-color:#fff;
}
.pkp_site_nav_toggle {
	background-color:#ed1c24;
}
.pkp_navigation_user li a {
	color: rgba(0,0,0,0.54);
}
@media (min-width: 480px) {
	.pkp_navigation_user li a {
		color: #fff;
	}
}
@media (min-width: 992px){
	.pkp_navigation_user li a {
		color: rgba(0,0,0,0.54);
	}
}

.pkp_navigation_user a:hover {
	color: #ed1c24;
}