@main: #2c8185;
@highlight: #da3c3b;
@main_dark: @main - #151515;
@highlight_dark: @highlight - #151515;

@yellow: #dfac33;
@green: #93a940;
@red: #da3c3b;

@light: #ffffff;
@dark: #545454;
@white: #ffffff;
@black: #000000;

@base_font_size: 15px;
@h5_font_size: @base_font_size + 1;
@h4_font_size: @base_font_size + 3;
@h3_font_size: @base_font_size + 9;
@h2_font_size: @base_font_size + 14;
@h1_font_size: @base_font_size + 18;


* {-webkit-print-color-adjust:exact;}

/* Remove href from prints */
body a[href]:after, a[href^="tel"]:after, a[href^="mailto"]:after {content: "" !important;}

img { page-break-inside: avoid; }


.border-radius (@radius: 5px) {
    -webkit-border-radius: @radius;
    -moz-border-radius: @radius;
    border-radius: @radius;
}

.transition (@prop: all, @time: 0.15s, @ease: ease-in-out) {
    -webkit-transition: @prop @time @ease;
    -moz-transition: @prop @time @ease;
    -o-transition: @prop @time @ease;
    -ms-transition: @prop @time @ease;
    transition: @prop @time @ease;
}

.scale (@prop: 1.0) {
	transform: scale(@prop);
	-moz-transform: scale(@prop);
	-webkit-transform: scale(@prop);
}

.box-shadow (@x: 0px, @y: 3px, @blur: 5px, @alpha: 0.5) {
    -webkit-box-shadow: @x @y @blur rgba(0, 0, 0, @alpha);
    -moz-box-shadow: @x @y @blur rgba(0, 0, 0, @alpha);
    box-shadow: @x @y @blur rgba(0, 0, 0, @alpha);
}

.box-shadow-white (@x: 0px, @y: 3px, @blur: 5px, @alpha: 0.5) {
    -webkit-box-shadow: @x @y @blur rgba(255, 255, 255, @alpha);
    -moz-box-shadow: @x @y @blur rgba(255, 255, 255, @alpha);
    box-shadow: @x @y @blur rgba(255, 255, 255, @alpha);
}

.text-shadow (@x: 0px, @y: 3px, @blur: 5px, @alpha: 0.5) {
    -webkit-text-shadow: @x @y @blur rgba(0, 0, 0, @alpha);
    -moz-text-shadow: @x @y @blur rgba(0, 0, 0, @alpha);
    text-shadow: @x @y @blur rgba(0, 0, 0, @alpha);
}

.text-shadow-white (@x: 0px, @y: 3px, @blur: 5px, @alpha: 0.5) {
    -webkit-text-shadow: @x @y @blur rgba(255, 255, 255, @alpha);
    -moz-text-shadow: @x @y @blur rgba(255, 255, 255, @alpha);
    text-shadow: @x @y @blur rgba(255, 255, 255, @alpha);
}

.gradient (@origin: top, @start: @main, @stop: @highlight) {
    background-color: @start;
    background-image: -webkit-linear-gradient(@origin, @start, @stop);
    background-image: -moz-linear-gradient(@origin, @start, @stop);
    background-image: -o-linear-gradient(@origin, @start, @stop);
    background-image: -ms-linear-gradient(@origin, @start, @stop);
    background-image: linear-gradient(@origin, @start, @stop);
}

.background (@pos1: 0, @pos2: 0) {
	background-image: url('../images/images_sprite.png');
	background-repeat: no-repeat;
	background-position: @pos1 @pos2;
}

.clear {
	clear: both;
}

.clearfix {
	*zoom: 1;
		
	&:after {
		content: "";
		display: table;
		clear: both;
	}
}


/*** General Styles ***/


html body {
	font-size: @base_font_size;
	font-family: Tahoma, Arial, sans-serif;
	font-weight: 500;
	color: @dark;
	background: @light;
	-webkit-font-smoothing: antialiased;
}

body {

	h1, h2, h3, h4, h5, h6 {
		margin: 15px 0 15px 0;
		font-family: 'Exo', Tahoma, Arial, sans-serif;
		
		&:first-child { margin-top: 0; }
		&:last-child { margin-bottom: 0; }
	}

	h5 { font-size: @h5_font_size; font-weight: 300; }
	h4 { font-size: @h4_font_size; font-weight: 300; }
	h3 { font-size: @h3_font_size; font-weight: 300; }
	h2 { font-size: @h2_font_size; font-weight: 300; }
	h1 { font-size: @h1_font_size; font-weight: 300; }
	
	b, strong {
		font-weight: 700;
	}

	p {
		margin: 0 0 15px 0;
		padding: 0;
		
		&:last-child { margin: 0; }
	}
	
	small {
		color: inherit !important;
	}

	ul, ol {
		margin: 0 0 15px 0;
		padding: 0 0 0 20px;
		
		&:last-child { margin-bottom: 0; }
		
		& > li {
			margin-bottom: 3px;
			
			&:last-child {
				margin-bottom: 0;
			}
		}
	}

	a {
		color: @highlight;
		text-decoration: none;
	}

	a:hover {
		color: @highlight_dark;
	}

	blockquote {
		display: block;
		margin: 30px 0;
		padding: 0 20px;
		color: @main;
		font-weight: 300;
		font-size: @base_font_size + 7;
		font-family: 'Exo', Tahoma, Arial, sans-serif;
		line-height: normal;
		border: none;
		background: none;
		
		&:first-child { margin-top: 0; }
		&:last-child { margin-bottom: 0; }
	}

	#content_holder {
		
	}

	img { max-width: 100%; height: auto; }

	img.alignright { float:right; margin:0 0 1em 1em; }
	img.alignleft { float:left; margin:0 1em 1em 0; }
	img.aligncenter { display: block; margin-left: auto; margin-right: auto; }
	.alignright { float:right; }
	.alignleft { float:left; }
	.aligncenter { display: block; margin-left: auto; margin-right: auto; }
}

.container {
	width: auto !important;
}

.button_holder {
	display: none;
}

.alert_box {
	padding: 20px;
	background: #f5f5f5;
}

.spacer {
	display: none;
}

/*
.icon_circle {
	position: relative;
	display: block;
	text-align: center;
	border: 2px solid transparent;
	background: transparent;
	box-sizing: content-box;
	.border-radius(50%);
	.transition;
	
	&.display_type_block { display: block; }
	&.display_type_inline { display: inline-block; vertical-align: top; }
	
	&.circle_size_tiny {	
		width: 35px;
		height: 35px;
		
		.glyphicons, .mg_icons {
			font-size: 18px;
			
			&:before {
				line-height: 35px !important;
			}
		}
	}
	&.circle_size_small {	
		width: 43px;
		height: 43px;
		
		.glyphicons, .mg_icons {
			font-size: 21px;
			
			&:before {
				line-height: 43px !important;
			}
		}
	}
	&.circle_size_medium {
		width: 65px;
		height: 65px;
		
		.glyphicons, .mg_icons {
			font-size: 30px;
			
			&:before {
				line-height: 65px !important;
			}
		}
	}
	&.circle_size_large {
		width: 110px;
		height: 110px;
		
		.glyphicons, .mg_icons {
			font-size: 40px;
			
			&:before {
				line-height: 110px !important;
			}
		}
	}
}
*/

.icon_circle {
	vertical-align: middle !important;
}

/*** Header ***/

#header {
	width: 100% !important;
	padding: 10px 0 15px 0;
	border-bottom: 1px solid #cccccc;
	margin: 0 0 30px 0;
	
	.logo_holder {
		width: 30%;
		float: left;
	}
	
	.header_euro_holder {
		width: 50%;
		float: right;
	}
	
	#logo {
		
	}
	
	#euro_financed {
		padding: 15px 0 0 0;
		color: #1f1f1f;
		.clearfix;
		
		.euro_text {
			padding-right: 75px;
			font-size: @base_font_size - 4;
			line-height: @base_font_size;
			
			p, strong {			
				color: #666666 !important;
			}
		}
		
		.euro_flag {
			display: block;
			float: right;
			margin-top: 3px;
		}
	}
}

/*** Main Slider ***/


.slider_holder {
	margin: 0 0 30px 0;
	min-height: 0 !important;
	
	.slider {
		min-height: 0 !important;
	}
	
	.slick-track {
		width: 100% !important;
		transform: none !important;
		-moz-transform: none !important;
		-webkit-transform: none !important;
	}
	
	.slick-slide {
		width: 100% !important;
		height: auto !important;
		transform: none !important;
		-moz-transform: none !important;
		-webkit-transform: none !important;
		text-align: left !important;
		padding: 20px 0;
		border-bottom: 20px;
		border-bottom: 1px solid #dddddd;
		
		&.slick-cloned {
			display: none !important;
		}
		
		p, h1, h2, h3, h4, h5 {
			text-align: left !important;
			margin-bottom: 0 !important;
			
			&:last-child {
				margin-bottom: 0;
			}
			
			&:first-child {
				margin-top: 0;
			}
		}
	}
	
	button, .slick-dots, .slider_arrow {
		display: none !important;
	}
}


/*** Content ***/


#content_holder,
#footer_holder,
#bottom_content {

	.container-fluid {
		padding-left: 0;
		padding-right: 0;
		border-bottom: 1px solid #cccccc;
		margin-bottom: 20px;
		
		&>.container {
			
			&>.row {
			
				&>div {
					margin-bottom: 20px;
					/* page-break-inside: avoid; */
				}
			}
		}
	}
	
	.custom_col {
		float: left;
		padding: 0 15px;
		margin: 0 0 0 0;
	}
	
	.row {
		
	}
	
	.center_column {
		width: 100%;
		text-align: center !important;
	}
	
	.mymail-form  {
		text-align: center !important;
	}
}

#leading_icons {
	
	.custom_col {
		font-size: @base_font_size - 2;
		
		h4 { font-size: @h4_font_size - 2; }
		h5 { font-size: @h5_font_size - 2; }
	}
}

#latest_news {
	
	.single_news_holder {
		
		&:nth-child(2n+1) {
			clear: left;
		}
	}
	
	.single_news {
		display: block;
		margin-bottom: 20px;
		page-break-inside: avoid;
		
		.news_image_holder {
			margin-bottom: 15px;
		}
		
		.news_link {
			display: none;
		}
	}
	
	.equal_height {
		height: auto !important;
	}
}

#references {
	border: none;
	margin-bottom: 0 !important;
	border-bottom: none !important;
}

.reference_gallery {
	.clearfix;
	height: auto !important;
	
	.single_ref {
		position: static !important;
		height: auto !important;
		padding: 20px 0;
		margin-bottom: 0;
		width: 25%;
		float: left;
		text-align: center;
		font-size: @base_font_size - 2;
		
		&:nth-child(4n+1) {
			clear: left;
		}
	
		.ref_background {
			display: none !important;
		}
		
		h3, h4, h5 { margin-top: 0; margin-bottom: 10px; }
		
		h3 { font-size: @h3_font_size - 2; }
		h4 { font-size: @h4_font_size - 2; }
		h5 { font-size: @h5_font_size - 2; }
	}
}

#staff_members_slider {
	display: block !important;
	.slider_arrow {
		display: none !important;
	}
}

#events_calendar_row {
	.clearfix;
	
	#events_row_details {
		float: left;
		width: 45%;
		height: auto !important;
		
		.featured_event {
			height: auto !important;
		}
		
		.date {
			color: #666666 !important;
			margin-bottom: 5px;
		}
		
		h4 {
			margin-top: 0;
		}
	}
	
	#events_row_list {
		float: right;
		width: 45%;
		
		.events_list {
			
			.single_event {
				margin-bottom: 15px;
				
				&:last-child {
					margin-bottom: 0;
				}
				
				h4 {
					margin-bottom: 0;
				}
				
				p {
					color: #666666 !important;
				}
				
				br {
					display: none;
				}
			}
		}
	}
}

#one-stop-shop {
	
	.container {
		
		&>.row {
			
			&>div {
				width: auto !important;
				float: none;
			}
		}
	}
	
	.one_stop_shop_image {
		display: none !important;
	}
}

#posts_list {
	
	.single_post {
		margin-bottom: 20px;
		padding-bottom: 20px;
		border-bottom: 1px solid #cccccc;
		.clearfix;
		
		&:last-child {
			margin-bottom: 0;
			padding-bottom: 0;
			border-bottom: 0;
		}
		
		.image_column {
			float: left;
			width: 20%;
		}
		
		.single_post_text {
			width: 75%;
			float: left;
		}
		
		.post_date {
			color: #666666;
		}
	}
}

#publications {
	margin-top: 30px;
	clear: both;
	.clearfix;
	
	.single_publication_holder {
		margin-bottom: 20px;
		page-break-inside: avoid;
		
		&:nth-child(2n+1) {
			clear: left;
		}
		
		.single_publication {
			padding: 0 20px;
			text-align: center;
			display: block;
		}
		
		.pub_image_holder {
			margin-bottom: 15px;
		}
		
		.equal_height {
			height: auto !important;
		}
		
		.text_overlay_holder {
			display: none;
		}
		
		.pub_icons {
			display: none;
		}
	}
}

#partners_map_holder {
	position: relative;
	display: inline-block;
	padding-bottom: 20px;
	
	.partner_pin {
		margin: -10px 0 0 -10px;
		position: absolute;
		top: 0;
		left: 0;
		display: block;
		text-align: center;
		font-size: @base_font_size - 4;
		font-weight: bold;
		border-bottom: 1px solid transparent;
		.transition;
		
		span {
			color: @yellow;
		}
		
		img {
			display: inline-block;
			position: relative;
			left: 13px;
			
			&.selected_pin {
				display: none;
			}
		}
		
		&.active {
		
			&:hover {
				cursor: default;
			}
		}
		
		&:hover {
			cursor: pointer;
			z-index: 2;
			border-color: @light;
		}
		
		&[data-country=".austria"]			{ top: 49%; left: 53%; }
		&[data-country=".belgium"] 			{ top: 39%; left: 30.5%; }
		&[data-country=".bulgaria"] 			{ top: 61%; left: 72%; }
		&[data-country=".croatia"] 			{ top: 61%; left: 57%; }
		&[data-country=".cyprus"] 			{ top: 76%; left: 91%; }
		&[data-country=".czech-republic"] 	{ top: 41%; left: 50%; }
		&[data-country=".denmark"] 			{ top: 16%; left: 43.5%; }
		&[data-country=".estonia"] 			{ top: 6%; left: 69%; }
		&[data-country=".finland"] 			{ top: -1%; left: 64%; }
		&[data-country=".france"] 			{ top: 56%; left: 29%; }
		&[data-country=".germany"] 			{ top: 38%; left: 43%; }
		&[data-country=".greece"] 			{ top: 74%; left: 69%; }
		&[data-country=".hungary"] 			{ top: 50%; left: 61%; }
		&[data-country=".ireland"] 			{ top: 25%; left: 9%; }
		&[data-country=".italy"] 				{ top: 65%; left: 49%; }
		&[data-country=".latvia"] 				{ top: 14%; left: 70%; }
		&[data-country=".lithuania"] 			{ top: 21%; left: 66%; }
		&[data-country=".luxembourg"] 		{ top: 42%; left: 34%; }
		&[data-country=".malta"] 				{ top: 86%; left: 54%; }
		&[data-country=".netherlands"] 		{ top: 32%; left: 35.5%; }
		&[data-country=".poland"] 			{ top: 32%; left: 61%; }
		&[data-country=".portugal"] 			{ top: 76%; left: 0%; }
		&[data-country=".romania"] 			{ top: 50%; left: 70%; }
		&[data-country=".slovakia"] 			{ top: 44%; left: 60%; }
		&[data-country=".slovenia"] 			{ top: 55.5%; left: 51.5%; }
		&[data-country=".spain"] 				{ top: 76%; left: 13%; }
		&[data-country=".sweden"] 			{ top: 12%; left: 51%; }
		&[data-country=".united-kingdom"] { top: 29%; left: 19%; }
	}
}

#partners_filters {
	display: none;
}

#partners_list {
	display: none;
}

#partners_details {
	display: block !important;
	
	.partner_details_lightbox {
		margin-bottom: 20px;
		padding-bottom: 20px;
		border-bottom: 1px solid #cccccc;
		clear: both;
		.clearfix;
		
		&:last-child {
			margin-bottom: 0;
			padding-bottom: 0;
			border-bottom: 0;
		}
		
		.partner_details_inner {
			.clearfix;
			
			.partner_details_header {
				margin: 0 0 15px 0;
				
				h4 {
					margin: 0;
					font-size: @h2_font_size;
				}
			}
			
			.partner_details_left {
				float: left;
				
				img {
					display: block;
					margin: 0 20px 15px 0;
				}
			}
			
			.partner_details_right {
				
				h2 { font-size: @h2_font_size - 4; }
				h3 { font-size: @h3_font_size - 4; }
				h4 { font-size: @h3_font_size - 2; }
				
				p { font-size: @base_font_size - 2; }
			}
		}
	}
}

.vfbp-form {
	margin: 0 -15px;
	
	input[type="submit"],
	button[type="submit"] {
		display: none;
	}
}


/*** Sidebar ***/
#sidebar {
	display: none;
}

/*** Footer ***/
#footer_holder {
	display: none !important;
}

/*** Hiding stuff ***/
#scroll_top, #lead_image, #newsletter_row, #homepage_logos, #slider_animation_controls, #menu_row, #cookie_assistant_container, #cookies_notification, #login_area_holder, #tab_navigation, #mobile_menu, #main_menu, #hamburger, .reference_filters, .button_holder {
	display: none !important;
}