/**
 * Footer
 */

footer {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	background: var(--nirak-footer-bg);
	color: var(--nirak-footer-text);
}

.linklist {
	margin-bottom: -6px;
	transition: all 1s linear;
	padding-top: 3px;
}

footer .about-footer {
	opacity: 1;
	left: 0;

	-webkit-transition: all 1s linear;
	transition: all 1s linear;
	vertical-align: baseline;
	position: relative;
}

footer a,
footer a:active,
footer a:visited {
	color: var(--nirak-footer-text);
	text-decoration: dashed;
}

footer .about-footer a {
	font-family: var(--nirak-brand-font-family), cursive;
	font-size: 0.9rem;
	line-height: 1rem;
}

footer a:hover,
footer a:active {
	color: var(--nirak-footer-link);
	text-decoration: none;
}

@media (min-width: 768px) {
	.about-footer,
	.social-footer {
		padding-top: 10px;
	}
}

footer .social-footer {
	display: block;
	z-index: 10;
	padding-bottom: 10px;
	opacity: 1;
	-webkit-transition: all 1s linear;
	transition: all 1s linear;
}

footer .social-footer a {
	display: inline-block;
	font-size: 18px;
	color: var(--nirak-footer-text);
	background: var(--nirak-footer-bg);
	border: 1px solid var(--nirak-footer-text);
	width: 30px;
	height: 30px;
	line-height: 30px;
	margin-left: 3px;
	margin-right: 1px;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
	border-radius: 2px;
}

footer .social-footer a:hover {
	background-color: var(--nirak-footer-link);
	color: var(--nirak-footer-bg);
}

body.light .social-footer a {
	border-color: #444;
	color: #444;
}

footer > .container {
	padding-right: 15px;
	padding-left: 15px;
}