.b-region-static {
	position: relative;
	display: block;
	background: rgba(255, 255, 255, 0.5);
	border-radius: 5px;
	transition: 0.3s;
	overflow: hidden;
	border: 1px solid #ececec;
	padding: 15px 0;
}

.b-region-static .regions-static__title {
	background: #fff;
	border-radius: 5px;
	padding: 12px 55px 12px 24px;
	font-size: 20px;
	cursor: pointer;
	list-style: none;
	font-weight: 700;
	transition: .3s;
}

.b-region-static .regions-static__title::before {
	content: '';
	position: absolute;
	display: block;
	width: 25px;
	height: 25px;
	right: 22px;
	top: 25px;
	border: 1px solid #005fcb;
	border-radius: 3px;

}

.b-region-static .regions-static__title::after {
	position: absolute;
	right: 30px;
	top: 30px;
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border-right: 2px solid #005fcb;
	border-bottom: 2px solid #005fcb;
	transform: rotate(45deg);
	transform-origin: center;
	transition: .3s;
}

.b-region-static .regions-static__title.open::after {
	transform: rotate(-135deg);
	top: 34px;
}

.b-region-static .regions-static__title:hover::before {
	background: #005fcb;
}

.b-region-static .regions-static__title:hover::after {
	border-color: #fff;
}

.b-region-static .regions-static__inner {
	display: none;
	padding: 12px 24px 30px;
}

.b-region-static .regions-static__inner-info {
	margin-bottom: 20px;
}


.b-region-static .regions-static__loader {
	padding: 40px 20px;
	text-align: center;
	color: #666;
}

.b-region-static .regions-static__search {
	margin-bottom: 20px;
}

.b-region-static .regions-static__search input {
	border: 1px solid #ededed;
	height: 40px;
	width: 100%;
	padding: 0 10px;
	margin: 0 0 10px 0;
	border-radius: 0;
	font-size: 13px;
	color: #000000;
	transition: border .2s ease;
}

.b-region-static .regions-static__search input:hover {
	border-color: rgba(0, 95, 203, 0.2);
}

.b-region-static .regions-static__search input:focus {
	border-color: rgba(0, 95, 203, 0.2);
	box-shadow: 0 2px 10px 0 rgba(0, 95, 203, 0.2);
}

.b-region-static .spinner {
	width: 32px;
	height: 32px;
	border: 3px solid #f0f0f0;
	border-top-color: #007bff;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin: 0 auto 12px;
}

.b-region-static .regions-static__list-inner {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
}

.b-region-static .regions-static__city {
	padding: 10px 17px;
	box-sizing: border-box;
	border: 1px solid #ededed;
	text-align: center;
	display: block;
	font-size: 16px;
	text-decoration: none;
	cursor: pointer;
	transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}

.b-region-static .regions-static__city:hover {
	border-color: rgba(0, 95, 203, 0.2);
	box-shadow: 0 2px 10px 0 rgba(0, 95, 203, 0.2);
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.b-region-static .regions-static__empty {
	padding: 40px 20px;
	text-align: center;
	color: #999;
	font-style: italic;
}

.b-region-static .regions-static__head-main {
	font-weight: 600;
}

@media (max-width: 1239px) {
	.b-region-static .regions-static__list-inner {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
@media (max-width: 767px) {
	.b-region-static .regions-static__list-inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (max-width: 460px) {
	.b-region-static .regions-static__list-inner {
		grid-template-columns: repeat(1	, minmax(0, 1fr));
	}
}