/*Footer */
footer{
	background-color: #333333;
	margin-bottom: 0px;
	position: relative;
  	z-index: 1;
}

footer nav.footer_nav div{
	float: left;
	width: 100%;
}
footer nav.footer_nav a{
	float:left;
	text-transform: uppercase;
}
footer nav.footer_nav div + div{
	margin-top: 10px;
}
footer nav.footer_nav .partner a{
	font-family: OpenSans-SB;
	padding: 10px;
	background-color: #CCC;
	color: #333;
}

footer .footer_center{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
footer .footer_logo{
	width: 100px;
	height: 100px;
	margin: auto 0px;
	float: left;
	background-image: url(../../images/autoduder-logo.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
footer a{font-size: 12px;color: #CCCCCC;}
footer a:hover{color: #FFFFFF;text-decoration: none;}

footer .social-media{
	width: 100%;
	float: left;
	display: flex;
	justify-content: center;
	margin-top: 10px;
}
footer .social{
	width: 30px;
    height: 30px;
    float: left;
    margin-right: 0px;
    border-radius: 25px;
    background-image: none !important;
    display: flex;
    justify-content: center;
    align-items: center;
    border:0;
    transition: all 100ms linear;
    font-size: 18px;
}
footer .social + .social{margin-left: 15px;}
footer .social:hover{color: #FDB813;}

footer .footer_right {
	height: 175px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-wrap: wrap;
}
footer .footer_right .phone{
	width: 100%;
	float: right;
	text-align: right;
}

footer .subfooter{
	background: #2c2c2c;
	min-height: 40px;
	padding: 15px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
footer .copyright,
footer .phone,
footer .terms a{
    color: #999999;
    font-size: 12px;
}

footer .terms{text-align: center;}
footer .terms a + a,
footer .terms span + a{border-left: 1px solid #3A3A3A;padding-left: 10px;margin-left: 10px;}

footer .footer_nav,
footer .footer_center,
footer .footer_right{
	padding: 15px;
}

@media (max-width: 767px){
	footer #footer{display: grid;}
	
	footer #footer .footer_nav{order: 2;}
	footer #footer .footer_center{order:1;}
	footer #footer .footer_right{order:3;}

	footer #footer .footer_nav div{
		display: flex;
		justify-content: center;
	}
	
	footer #footer .footer_right{height: auto;}
}