.services-list h3,
.services-list h4 {
	margin: 0;
}

.services-list h3 {
	font-size: 22px;
	padding-bottom: 10px;
}

.services-list h4 {
	font-weight: normal;
	margin-top: 5px;
	margin-bottom: 6px;
	font-size: 18px;
	color: #1a74b9;
}

.services-list > .row {
	padding: 20px 0;
}

.services-list > .row:nth-child(odd) {
	background-color: #e5f1ff;
}

.services-list ul {
	list-style: none;
	padding: 0;
}

.services-list li {
	padding-left: 2.1em;
	text-indent: -1.1em;
	margin-bottom: 0.7em;
}

.services-list li:before {
	content: "\25cf";
	color: #1a74b9;
	margin-right: 0.5em;
}

.services-list a {
	color: #3a3a3a;
}

a.no-service {
	pointer-events: none;
	cursor: default;
	color: #BDBDBD;
}

.services-selector h2 {
	display: inline-block;
	color: #fff;
	font-size: 30px;
	text-shadow: 1px 2px 5px #557998;
	font-weight: normal;
	margin: 20px 0;
}
.delimiter-left, .delimiter-right {
	position: relative;
}
.delimiter-left:before, .delimiter-right:before {
	content: '';
	height: 100%;
	width: 1px;
	background-color: #c8dceb;
	position: absolute;
}

.delimiter-left:before {
	left: 0;
}
.delimiter-right:before {
	right: 0;
}

@media (max-width: 991px) {
	.services-selector h2 {
		font-size: 28px;
	}
}

@media (max-width: 768px) {
	.delimiter-left:before, .delimiter-right:before {
		display: none;
	}
}

@media (max-width: 374px) {
	.services-selector h2 {
		font-size: 24px;
	}
}


.widgets-area {
	display: flex;
	flex-wrap: wrap;
	padding: 0;
	background-image: linear-gradient(#EBF6FE, #D9EEFD);
}
.widgets-area__loading-msg {
	display: none;
	margin-left: auto;
	padding: 12px 15px 0 0;
	text-transform: uppercase;
}
.widgets-area--loading {
	height: 120px;
	background-image:
			repeating-linear-gradient(
					-55deg,
					#E9F5FF,
					#ECF6FF 1rem,
					#DEF0FF 1rem,
					#DEF0FF 2rem
			);
	background-size: 200% 200%;
	animation: barberpole 10s linear infinite;
}
.widgets-area--loading .widgets-area__loading-msg {
	display: block;
	color: #7193BD;
}
.widget-card {
	padding: 1.5rem;
	width: 20%;
	box-sizing: border-box;
	animation: fadein 0.5s;
	background: linear-gradient(#A0D3FF, #6ABBFF);
	border-left: #FFF solid 1px;
	border-top: #fff solid 1px;
	margin-bottom: -1px;
	margin-left: -1px;
	flex-grow: 1;
}
.widget-card:first-of-type {
	margin-left: 0;
	border-left: 0;
}
.widget-card, .widget-card:hover, .widget-card:focus{
	text-decoration: none;
}
.widget-card__title {
	font-size: 1.55rem;
	font-weight: 600;
	color: #387CB4;
	margin-bottom: 5px;
}
.widget-card__value {
	flex-basis: 20%;
	color: #FFFEFC;
	font-size: 2rem;
	line-height: 41px;
	height: 41px;
	overflow: hidden;
	text-overflow: ellipsis;
}
.widget-card__value--with-unit::after {
	content: '\20BD';
	padding: 0 0 0 1.2rem;
}
.widget-card__title, .widget-card__value {
	text-align: center;
}
.windget-card__longVal {
	max-width: 100%;
}
.windget-card__twoLines .widget-card__value {
	line-height: 20px;
	font-size: 18px;
}
.windget-card__longVal .widget-card__value {
	font-size: 14px;
	white-space: normal;
	line-height: 1;
}

@keyframes barberpole {
	100% {
		background-position: 50% 50%;
	}
}
@keyframes fadein {
	from {opacity: 0;}
	to {opacity: 1;}
}

@media (max-width: 426px) {
	.widget-card {
		flex-direction: row;
		width: 100%;
		height: 80px;
	}
	.widget-card__title {
		text-align: left;
	}
	.widget-card__value {
		text-align: right;
	}
	.windget-card__longVal .widget-card__title {
		flex-basis: 50%;
	}
	.windget-card__longVal .widget-card__value {
		white-space: nowrap;
		flex-basis: 50%;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.widget-card:first-of-type {
		margin-left: -1px;
	}
	.windget-card__twoLines .widget-card__value {
		font-size: 14px;
		line-height: 41px;
	}
}
@media (max-width: 1024px) and (min-width: 426px) {
	.widget-card {
		width: 50%;
	}
}