﻿div#layout-footer {
	background-color: var(--default-primary-color);
	padding: 81px 0 50px;
	/*border-top: 3px solid #83b719;*/
	width: 100% !important;
}

.zone-footer {
	background-color: var(--default-primary-color);
}

#layout-footer footer {
	padding-left: 5%;
	padding-right: 5%;
	max-width: 1920px;
	margin: 0px auto;
	padding: 81px 0 50px;
}

.sansac-footer {
	background-color: var(--default-primary-color);
	height: fit-content;
	padding: 10px;
	margin: 0 auto 0 auto !important;
	width: 1170px;
}

@media screen and (max-width: 1170px) {
	.sansac-footer {
		width: 100%;
	}
}

.footer-text {
	color: white;
}
/*
@media screen and (max-width: 768px) {
	.footer-info {
		display: none;
	}
}*/



/* SOCIAL LINKS */
.site-link {
	color: var(--default-primary-color);
}
.site-links {
	text-align: right;
	font-size: 20px;
}

.email-link {
	color: var(--default-primary-color);
}

.internal-link {
	color: var(--default-primary-color);
}

.newsletter {
	color: var(--default-primary-color);
}

.socials ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	list-style: none outside none;
}

.socials li {
	margin-right: 32px;
}

.socials a {
	position: relative;
	display: block;
	width: 53px;
	height: 53px;
	background-color: #666;
	border-radius: 50%;
	-webkit-transition: -webkit-box-shadow .3s;
	transition: -webkit-box-shadow .3s;
	-o-transition: box-shadow .3s;
	transition: box-shadow .3s;
	transition: box-shadow .3s,-webkit-box-shadow .3s;
}

	.socials a i {
		position: absolute;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%,-50%);
		-ms-transform: translate(-50%,-50%);
		transform: translate(-50%,-50%);
	}

.socials a:hover {
	-webkit-box-shadow: 3px 3px 5px rgba(0,0,0,.25);
	box-shadow: 3px 3px 5px rgba(0,0,0,.25);
}



/* NAV-FOOTER */

.nav-footer a {
	text-decoration: none;
	font-size: 16px;
	font-weight: 600;
	-webkit-transition: color .4s;
	-o-transition: color .4s;
	transition: color .4s;
	color: #000000;
}

.nav-footer a:hover {
	color: #FFFFFF;
}

.nav-footer li {
	margin-bottom: 16px;
}

.footer .footer__foot a:hover {
	color: #FFFFFF;
}

.btn-standard {
	background-color: var(--default-primary-color);
	color: #FFFFFF;
	border-color: #FFFFFF;
}

.btn-standard:hover {
	background-color: transparent;
	border-color: #FFFFFF;
	text-decoration: underline;
}

.form-control:focus {
	border-color: #FFFFFF;
}

.logo-footer {
	width: 100%;
	height: 80px;
	float: left;
	background-repeat: no-repeat !important;
	background: url(../../../../Media/Default/Default/logo-systemstod.png);
}


/* 
	RESPONSIVENESS

	px limit matching Orchard.Layouts/Styles/default-grid.css 
	//Patrik 
*/

@media (max-width: 767px) {
	.sansac-footer > .span-6 {
		width: 100% !important;
	}

	.sansac-footer > .span-3 {
		width: 100% !important;
	}
	.sansac-footer > .cell:first-of-type{
		padding-left: 10px !important;
	}
	.sansac-footer > .cell:last-of-type {
		padding-right: 10px !important;
	}
	.sansac-footer > .cell{
		padding-bottom: 20px !important;
	}
	.sansac-footer > .site-links{
		text-align: left;
	}
}

