.filtro-store-locator{
	background-color: #fff;
	padding:20px 40px;
}
.content-filtri{
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
}
.box-filtro{
	width: 100%;
	flex: 0 0 20%;
	padding: 0 5px;
}
.box-filtro-10{
	flex: 0 0 9%;
}
.box-filtro label{
	text-transform: uppercase;
	font-weight: 500;
	color: #000;
	font-size: 12px;
}
.box-filtro .field-filtro{
	margin-top: 0px;
	background-color: #f7f7f7;
	border:none;
	width: 100%;
}
.btn.btn-accent.btn-lg.btn-filtro{
	height: 38px;
    line-height: 0px;
    font-size: 12px !important;
    width: 100%;
	background-color: #af1426 !important;
	border-color: #af1426 !important;
}
.lista-saloni{
	display: flex;
	flex-wrap: wrap;
}
.col-md-3{
	width: 100%;
	flex: 0 0 33.333333%;
}
.box-salone{
	width: 90%;
    margin: 0;
    padding: 30px;
    background-color: #fff;
	min-height: 240px;
    margin-bottom: 40px;
}
.box-salone h3{
	margin-top: 0;
    font-size: 18px !important;
    color: #000;
    font-weight: 800;
    font-family: Urbanist !important;
	margin-bottom: 20px;
}
.box-salone p{
	font-size: 14px;
    margin-top: 0px;
}
.box-salone hr{
	border-color: #af1426 !important;
}
.info-box-salone{
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}
.info-box-salone span{
	margin-right: 8px;
}
#map{
	width: 100%;
	height: 600px;
}
.mappa-store.invia-informazioni{
	display: flex;
	flex-wrap: wrap;
}
.box-richiesta-info-store{
	display: none;
}
.mappa-store.invia-informazioni .box-richiesta-info-store{
	display: block;
    width: 100%;
    flex: 0 0 29%;
    margin-right: 1%;
	background-color: #fff;
	padding: 40px;
	border: 2px solid #788a4d;
}
.mappa-store.invia-informazioni #map{
	flex: 0 0 70%;
}
#titolo-richiesta{
	margin-top: 0px;
    font-family: Urbanist !important;
    font-weight: 800;
    font-size: 30px;
}
#desc-richiesta{
	font-size: 18px;
    margin-bottom: 20px;
}
.box-richiesta{
	margin-bottom: 20px;
}
.box-richiesta label{
	text-transform: uppercase;
    font-weight: 500;
    color: #000;
    font-size: 12px;
}
.box-richiesta .field-richiesta{
	margin-top: 0px;
    background-color: #f7f7f7;
    border: none;
    width: 100%;
}
.btn.btn-accent.btn-lg.btn-richiesta{
	background-color: #788a4d !important;
    border-color: #788a4d !important;
    font-size: 12px !important;
    line-height: 12px !important;
}
.box-loader-store{
	display: none;
	position: fixed !important;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color:#000000d6;
	z-index: 9999999;
	justify-content: center;
	align-items: center;
}
.loader {
	width: 48px;
	height: 48px;
	border: 3px solid #FFF;
	border-radius: 50%;
	display: inline-block;
	position: relative;
	box-sizing: border-box;
	animation: rotation 1s linear infinite;
}
.loader::after {
	content: '';
	box-sizing: border-box;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 56px;
	height: 56px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-bottom-color: #af1426;
}

@keyframes rotation {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}