/******************
    User custom CSS
    ---------------

    In this file you can add your own custom CSS
    It will be loaded last, so you can override any other property.
    Also, it will never be updated. So if you inheritate a core template and just add here some CSS, you'll still benefit of all the updates
*/

/* font-awesome overrides */
.fa:before {
    margin-right: 3px;
}
/* bootstrap overrides */
a, a:hover, a:focus {
    color: #005953;
}
.form-control:focus {
    border-color: #005953;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(0, 89, 83,.6)
}
/* the f* is this?! */
#bottomScripts {
    background-color: #005953;
}
.progress-bar,
.btn-primary {
    background-color: #005953;
}
.btn-primary:hover {
    background-color: #00847b;
}
.btn-primary {
    border-color: #00847b;
}
.text-primary,
.text-info,
.ls-print,
.ls-print:hover,
.ls-return,
.ls-return:hover {
    color: #005953;
}

.ls-answers tbody .answertext {
    text-align: left;
}



.ef-uk-icon-lift {
    position: relative;
    top: -1px;
}
.uk-icon.ef-uk-big-icon-fix {
    margin-right: 2px;
}

/* nav bar */
.navbar-header, .logo-container, .navbar-brand {
    display: inline-block;
}
.navbar-brand.logo-container > h1 {
    display: inline-block;
    margin-top: 19px;
}
.ef-logo {
    float: left;
}

/* footer */
a[href^="http"]:not(.uk-icon-button):after {
	display: inline-block;
	width: 14px;
	height: 10px;
	position: relative;
	left: 3px;
	content: " ";
	background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+DQo8cGF0aCBpZD0iUmVubm11dHplbCIgZD0ibTUuODgwNDc3LDQuODE0MTg3bC01LjE0Mjc2MSwwbDAsOC4xMjAxNDlsOC4xMjAxNTEsMGwwLC01LjE0Mjc2bS0yLjcwNjcxNywtNy4wMzc0NjRsMCwxLjM1MzM1OGwxLjM1MzM1OCwxLjM1MzM1OGwtNC4wNjAwNzUsNC4wNjAwNzVsMi43MDY3MTcsMi43MDY3MTZsNC4wNjAwNzUsLTQuMDYwMDc0bDEuMzUzMzU5LDEuMzUzMzU4bDEuMzUzMzU3LDBsMCwtNi43NjY3OTFsLTYuNzY2NzkxLDB6IiBzdHJva2U9IiM2NjYiIGZpbGw9InRyYW5zcGFyZW50Ii8+DQo8L3N2Zz4=');
	background-repeat: no-repeat;
	background-size: contain;
}
footer p,
footer a {
	color: #666;
}
footer a:hover {
    color: #666;
}
footer .uk-button-group a {
	background-color: #333;
}
footer .uk-button-group a:hover {
	background-color: #333;
}
footer {
	text-align: center;
	background-color: rgb(12,12,12);
}
footer h3 {
    color: #666;
}
footer section {
	position: relative;
	display: inline-block;
	vertical-align: top;
	padding: 30px 20px;
	text-align: left;
}
footer section ~ section:before {
	display: inline-block;
	position: absolute;
	top: 30px;
	left: -2px;
	height: 150px;
	content: " ";
	border-left: 1px solid #333;
	vertical-align: middle;
}
footer .uk-button-group a ~ a{
	margin-left: 6px;
}
@media(max-width: 1250px) {
	footer {
		text-align: left;
	}
}

/* make footer stick to bottom as suggested by LimeSurvey */
body {
     padding-bottom: 0; /* no bottom padding, footer should be bottom aligned */
     padding-top: 60px;/* now is redefine in JS to fit any title length */
     flex-direction: column; /* article, then footer */
     display: flex; /* flex, to extend the content to full size */
     min-height: 100vh; /* full height, to bottom-align footer */
}
body > article {
    flex: 1; /* the main article should use as much space as possible */
}