.emergency-number-list {
	margin-bottom: 2.2rem;
}

.emergency-number-list__title {
	margin-bottom: 1.8rem;
	color: #00205c;
}

.emergency-number-list__title h3 {
	text-transform: uppercase;
	color: currentColor;
	font-size: 28px!important;
}

.emergency-number-list__item {
	display: flex;
	justify-content: space-between;
	margin-bottom: 0.4rem;
}

.swReset .emergency-number-list__item a{
	color: inherit!important;
	font-family: 'Helvetica Neue LT W05_75 Bold',serif;
	font-size: 1em;
	text-decoration: none!important;
}

.lp-card {
	background-color: #fff;
	-webkit-box-shadow: 0 0 10px 0 #d8d8d8;
	-moz-box-shadow: 0 0 10px 0 #d8d8d8;
	box-shadow: 0 0 10px 0 #d8d8d8;
	padding: 20px;
}

.emergency-number-list__loader {
	border: 8px solid #f3f3f3;
	border-radius: 50%;
	border-top: 8px solid #00205c;
	width: 50px;
	height: 50px;
	-webkit-animation: cardLoaderSpin 2s linear infinite; /* Safari */
	animation: cardLoaderSpin 2s linear infinite;
	margin: 4rem auto;
}



@-webkit-keyframes cardLoaderSpin {
	0% {
		-webkit-transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
	}
}

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