/* font setting */
.price, #results article h3, .filter-block h4 {
	font-family: 'pt_sans_captionbold', Arial, Helvetica, sans-serif;
	font-weight: normal;
	text-transform: uppercase;
	}


/* content */
header > .wrapper 				{ position: relative; } 

#breadcrumb						{ grid-area: breadcrumb; }
aside							{ grid-area: sidebar; }
#content 						{ grid-area: content; }


/* basket */
.basket-wrapper {
	position: absolute;
	display: inline-flex;
	right: 20px;
	bottom: 18px;
	}

.basket-wrapper div 			{ margin-left: 1px; padding: 4px 10px; }
.basket-wrapper div span		{ display: block; }
.basket-wrapper div span::before {
	content: '';
	font-family: 'Font Awesome 5 Solid';
	font-size: 0.9em;
	margin-right: 10px;
	}

.basket-cost 					{ background-color: #95c126; }
.basket-amount 					{ background-color: #11467a; color: #fff; cursor: pointer; }

.basket-wrapper .basket-cost span::before { content: '\f153'; }
.basket-wrapper .basket-amount span::before { content: '\f07a'; }

.basket-sidebar:before {
	content: "";
	display: none;
	background: rgba(0, 0, 0, 0.6);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10;
	}

.basket-sidebar.basket-sidebar-open:before {
	display: block;
	}
	  
.basket-sidebar-open .basket-container {
	transform: translate(0%, 0);
	right: 0px;
	}
	  
.basket-container {
	background: #fff;
	position: fixed;
	right: 0px;
	top: 0%;
	z-index: 11;
	width: 360px;
	height: 100vh;
	padding: 20px;
	transform: translate(100%, 0);
	transition: transform 0.3s ease-out;
	}

.basket-body {
	height: calc(100vh - 138px);
	margin-bottom: 18px;
	overflow-y: scroll;
	}

.basket-body::-webkit-scrollbar {
	width: 8px;
	}

.basket-body::-webkit-scrollbar-thumb {
	background: #999;
	border-radius: 20px;
	}

.basket-body::-webkit-scrollbar-track {
	background: #eee;
	border-radius: 20px;
	}


.basket-sidebar	h1 { 
	border-bottom: 2px solid #31303a;
	font-family: 'ralewaysemibold', Arial, Helvetica, sans-serif;	
	font-weight: normal;
	font-size: 1.6em; 
	text-transform: uppercase;
	padding-bottom: 5px;
	}

.basket-sidebar article {
	border-bottom: 1px solid #eee; 
	margin-bottom: 18px;
	padding-bottom: 18px;
	}

.basket-sidebar article h3		{ margin-bottom: 0px; }

.basket-sidebar .button {
	border: 0px;
	color: #fff;
	padding: 3px 10px;
	}

.basket-close {
	color: transparent;
	width: 24px;
	float: right;
	cursor: pointer;
	}

.basket-close::before {
	content: '\f00d';
	font-family: 'Font Awesome 5 Solid';
	font-size: 1.4em;
	color: #31303a;
	}


#content > .addtobasket-container { 
	border: 1px solid #95c126;
	width: 25%; 
	margin-bottom: 18px;
	padding: 20px;
	margin-left: 20px;
	float: right;
	/* display: inline-flex;
	flex-wrap: wrap; */
}

#content > .addtobasket-container hr {
	background: none;
	border: 0px;
	border-top: 1px solid #eee;
	margin-bottom: 18px;
}

#content > .addtobasket-container .price {
	font-size: 1.5em;
	color: #95c126;
	/* width: 35%; */
	margin-bottom: 18px;
	}

#content > .addtobasket-container .document-type {
	/* width: 60%; */
	/* margin-bottom: 18px; */
	margin-left: 10px;
	margin-right: 5px;
	display: inline-block;
	vertical-align: middle;
	}

article > .addtobasket-container			{ display: flex; margin-top: 10px; }

article > .addtobasket-container .price {
	font-size: 1.5em;
	color: #95c126;
	flex-grow: 1;
}

.add-button {
	position: relative;
	border: 0px;
	width: 100%;
	flex-grow: 2;
	color: #fff;
	height: 36px;
	/* padding-left: 36px; */
	overflow: hidden;
	}

/* .add-button::before {
	position: absolute;
	content: '\f07a';
	font-family: 'Font Awesome 5 Solid';
	font-size: 1.2em;
	color: #fff;
	transform: translateY(-50%);
	top: 50%;
	left: 6px;
} */




/* --------------------------------------- */
/* mediaqueries css */
/* --------------------------------------- */
@media only screen and (max-width: 960px) {

}

@media only screen and (max-width: 480px) {

} 

/* print */
@media print {

}	