.buttons-wrapper {
	text-align: center;
	padding: 0 10px 10px;
}


.news-item {
	/* border-bottom: 1px solid #e7f2f4; */
	padding-bottom: 0.7em;
}

.news-item a {
	display: flex;
	flex-direction: row;
	text-decoration: none;
	width: 100%;
}


.news-item .date {
	padding: 3px 15px;
	font-size: 17px;
	color: #0f3759;
	background: #eaf1f5;
	border-radius: 14px;
	font-weight: 200;
	text-decoration: none;
	border: none;
	/* font-size: 90%; */
	width: max-content;
	display: inline-block;
	flex-shrink: 1;
}

.news-item .img-box {
	width: 90px;
	display: inline-block;
	/* float: left; */
	margin-right: 1rem;
	/* margin-bottom: 1rem; */
	flex-shrink: 0;
}

.news-item .img-box img {
	max-width: 100%;
	max-height: 100%;
}

.list-item.news-item h4 {
	line-height: 23px;
	margin-bottom: 1rem;
	font-weight: normal;
	font-size: 18px;
	color: #000000;
}

.list-item.news-item .img-box + .inner-content {
	padding-bottom: 1rem;
}

.list-item.news-item .img-box + .inner-content,
.list-item.news-item .img-box + .inner-content .small-info,
.list-item.news-item .img-box + .inner-content .inner-box,
.list-item.news-item .img-box + .inner-content .date-box {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.news-item:last-of-type {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: 0;
}


.form-wrapper {
	padding: 1.75rem;
	background-color: var(--light-gray);
	border-radius: 15px;
}


.tag-search-form {
	position: relative;
	display: flex;
	width: 100%;
	justify-content: stretch;
}

.tag-search-form .tag-form__cell {
	display: block;
	vertical-align: top;
	position: relative;
}

.tag-search-form .tag-form__cell_field {
	flex-grow: 1;
}

@media screen and (max-width: 700px) {
	.tag-search-form .tag-search {
		background-image: url("../../../../share/images/search.png");
		background-position: center;
		background-repeat: no-repeat;
		font-size: 0;
	}
}

.action-labels-wrapper {
	display: flex;
	justify-content: center;
	gap: 2rem;
}

.rubrics {
	margin-top: 4rem;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}


.rubrics:after {
	content: "";
}


.rubrics__item {
	position: relative;
	display: inline-block;
	vertical-align: top;
	text-align: center;
	/* flex-basis: 23%; */
	flex-basis: 26%;
	border-radius: 50%;
	overflow: hidden;
	cursor: pointer;
	margin-bottom: 2rem;
	aspect-ratio: 1;
}

.rubrics:after {
	flex-basis: 23%;
}


@media screen and (max-width: 900px) {

	.rubrics:after,
	.rubrics__item {
		flex-basis: 31%;
	}
}

@media screen and (max-width: 700px) {

	.rubrics:after,
	.rubrics__item {
		flex-basis: 44%;
	}
}

.rubrics__front {
	width: 100%;
	height: 100%;
}

.rubrics__curtain {
	position: absolute;
	display: block;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	opacity: 0;
	transition: opacity .2s;
	background: var(--light);
	border: 15px solid var(--cyan);
}


.rubrics__inner:hover .rubrics__curtain {
	opacity: 1;
}

.rubrics__inner {
	display: block;
	text-decoration: none;
	border-radius: 50%;
	border: 15px solid var(--cyan);
	background-color: var(--white-blue);
	width: 100%;
	height: 100%;
	box-sizing: border-box;
}

.rubrics__item--img {
	margin-top: 10%;
	display: inline-block;
	max-width: 80px;
	max-height: 80px;
	width: 30%;
	filter: hue-rotate(135deg);
}


@media screen and (min-width: 1200px) {
	.rubrics__item--img {
		margin-top: 17%;
	}
}

@media screen and (max-width: 1024px) {
	.rubrics__item--img {
		margin-top: 15%;
	}
}

@media screen and (max-width: 900px) {
	.rubrics__item--img {
		margin-top: 20%;
	}
}

@media screen and (max-width: 700px) {
	.rubrics__item--img {
		margin-top: 20%;
	}
}

@media screen and (max-width: 500px) {
	.rubrics__item--img {
		display: none;
	}
}

.rubrics__item--label {
	margin-top: 10%;
	display: inline-block;
	width: 100%;
	padding: 0 15px;
	color: var(--text-primary);
	text-transform: uppercase;
	font-weight: 700;
	font-size: 1.125rem;
	word-break: break-word;
	box-sizing: border-box;
}

@media screen and (min-width: 1200px) {
	.rubrics__item--label {
		margin-top: 15%;
		transform: translateY(-40%);
		padding: 0 20px;
	}
}

@media screen and (max-width: 1024px) {
	.rubrics__item--label {
		margin-top: 7%;
	}
}

@media screen and (max-width: 900px) {
	.rubrics__item--label {
		margin-top: 5%;
	}
}

@media screen and (max-width: 500px) {
	.rubrics__item--label {
		margin-top: 50%;
		transform: translateY(-50%);
		font-size: 1rem;
	}
}

.rubrics__item--hover {
	display: block;
	position: absolute;
	width: 100%;
	top: 50%;
	transform: translateY(-50%);
	color: var(--text-primary);
	text-align: center;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 1.375rem;

	padding: 0 20px;
	word-break: break-word;
	box-sizing: border-box;
	mix-blend-mode: hard-light;
}


@media screen and (max-width: 1024px) {
	.rubrics__item--hover {
		font-size: 16px;
	}
}

.rubrics__item--cnt {
	display: block;
	margin-top: 10px;
	color: var(--blue);
}


.disposers {
	padding: 1rem 2rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 800px) {
	.disposers {
		grid-template-columns: 1fr;
	}

}


.disposer__item {
	margin: 1rem 0;
}

.disposer__link .disposer__label {
	color: var(--text-primary);
	text-decoration: none;
}

a.disposer__link:hover {
	text-decoration: underline;
}

.disposer__label {
	position: relative;
	display: block;
	width: 100%;
	font-weight: 500;
	font-size: 1.1rem;
	box-sizing: border-box;
}

.disposer__label:hover {
	text-decoration: none;
}

.disposer__label--text {
	max-width: calc(100% - 5rem);
	display: inline-block;
	text-decoration: inherit;
}

.disposer__label--count {
	position: absolute;
	top: 0;
	right: 1.5rem;
	color: #ffffff;
	background-color: #17a2b8;
	min-width: 30px;
	min-height: 30px;
	border-radius: 30px;
	text-align: center;
	padding-top: 2px;
	padding-left: 5px;
	padding-right: 5px;
	font-size: 17px;
	font-weight: 500;
	margin-right: 10px;
}

.disposers-table {
	margin-top: 40px;
}

.disposer-cell__item {
	display: inline-block;
	vertical-align: top;
	width: 100%;
	margin-bottom: 10px;
}

.disposer-cell__link {
	text-decoration: none;
}

.disposer-cell__link .disposer-cell__label {
	color: var(--blue);
	text-decoration: underline;
}

.disposer-cell__label {
	position: relative;
	display: block;
	width: 100%;
	text-decoration: none;
	font: 700 17px var(--font-family-primary), sans;
	color: #000;
	padding: 13px 80px 13px 20px;
	box-sizing: border-box;
	border: 2px solid var(--light-gray);
}

.disposer-cell__label:hover {
	text-decoration: none;
}

.disposer-cell__label--count {
	position: absolute;
	top: 13px;
	right: 20px;
	color: var(--blue);
}

.division-list-wrapper {
	margin-top: 50px;
	width: 300px;
	float: left;
}