#ajax-filter .filter-title {
	margin: 0 0 15px;
	font-weight: 500;
	font-size: 24px;
	line-height: 32px;
}
#ajax-filter ul.filter-form {
    list-style: none;
    margin: 0 0 30px;
    padding: 0 0 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #444658;
}
#ajax-filter ul.filter-form li {
  position: relative;
	margin: 0;
}
#ajax-filter ul.filter-form li:before {
	content: none;
}
#ajax-filter ul.filter-form li input[type=radio] {
    position: absolute;
    opacity: 0;
    visibility: hidden;
}
#ajax-filter ul.filter-form .active label {
	cursor: pointer;
	background: #44465899;
	opacity: 1;
	color: #fff;
}
#ajax-filter ul.filter-form .active label:hover,
#ajax-filter ul.filter-form .active.current label {
    background: #444658;
    color: #fff;
}
#ajax-filter ul.filter-form label {
    background: 0 0;
    padding-top: 8px;
    padding-bottom: 8px;
    color: #333;
    font-weight: 500;
    text-transform: uppercase;
    opacity: .7;
	padding: 8px 12px;
	font-size: 18px;
	line-height: 24px;
	transition: all .3s ease;
	border-radius: 4px;
	display: block;
    min-width: 40px;
    text-align: center;
}
.list-locations-wrap {
	position: relative
}
.loading-post {
	display: none;
	z-index: 2;
	background: rgba(255,255,255,.5)
}
.loading-post {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0
}
.loading-post .icon {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 40px;
	height: 40px;
	background: url('../images/loading-icon.gif') center center no-repeat;
	background-size: cover;
}
.list-locations {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
.list-locations .group {
    width: 33.33%;
    padding: 0 15px;
    margin-bottom: 40px;
}
.list-locations .heading {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 5px;
}
.list-locations .heading:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    background: #efefef;
    bottom: 0;
    left: 0
}
.list-locations .heading:after {
    content: '';
    position: absolute;
    width: 35px;
    height: 4px;
    background: #444658;
    bottom: 0;
    left: 0;
    z-index: 2
}
.list-locations .list.more {
    margin-top: 10px;
    display: none
}
.list-locations .group .btn {
    color: #cb3333;
    margin-top: 20px;
    display: inline-block;
    font-weight: 500
}
.list-locations .group .btn:hover {
    text-decoration: underline;
}
.list-locations .open .btn {
    display: none;
}
.list-locations .group .list-inner {
	display: flex;
	flex-wrap: wrap;
	row-gap: 10px;
	margin-left: -15px;
	margin-right: -15px
}
.list-locations .group .item {
	width: 50%;
	padding-left: 15px;
	padding-right: 15px
}
.list-locations .group a {
	color: #333;
	transition: all .3s ease
}
.list-locations .group a:hover {
	color: #cb3333
}
.list-locations .alphabet-title {
	font-size: 32px;
	line-height: 48px;
	font-style: italic;
	margin: 0;
}
@media screen and (max-width: 1024px) {
    .list-locations .group {
        width: 50%
    }
}
@media screen and (max-width: 639px) {
    .list-locations .group {
        width: 100%
    }
}