.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);
}


.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%;
    /* height: 200px; */
    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: 0.75rem 0;
}

.disposer__link .disposer__label {
	color: var(--text-primary);
	text-decoration: underline;
}

.disposer__label {
	position: relative;
	display: block;
	width: 100%;
	font-weight:  700;
	font-size: 1.2rem;
	box-sizing: border-box;
}

.disposer__label:hover {
	text-decoration: none;
}

.disposer__label--text {
	max-width: calc(100% - 3rem);
	display: inline-block;
	text-decoration: inherit;
}

.disposer__label--count {
	position: absolute;
	top: 0;
	right: 1.5rem;
	color: var(--blue);
}

.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;
}


.fsgroup_sysmessage {
	background-color: #fff2ee;
	border: solid #efe2d2 1px;
	padding: 0px 7px 14px 14px;
	margin-bottom: 20px;
}

.fsgroup_sysmessage legend {
	color: #b73727;
	font-weight: bold;
	padding: 7px;
}


.buttons-wrapper {
	background-color: var(--light-gray);
	text-align: center;
	padding: 25px;
	border-radius: 15px;
}

.buttons-wrapper .link-button:visited,
.buttons-wrapper .link-button {
	display: inline-block;
	font: 600 18px/24px var(--font-family-primary), sans-serif;
	padding: 8px 28px;
	text-decoration: none;
	margin: 10px 4px 10px;
}

.buttons-wrapper .link-button + .link-button {
}

.buttons-wrapper .link-button.green {
	background-color: var(--blue);
}

.buttons-wrapper .link-button:hover.green {
	background-color: var(--blue-hover);
	color: white;
}

.buttons-wrapper .link-button.red {
	background-color: var(--blue);
	max-width: 395px;
}

.buttons-wrapper .link-button:hover.red {
	background-color: var(--blue-hover);
	color: white;
}

.innerpage-content-wrapper .content-sub-header {
	font: bold 20px var(--font-family-primary), sans-serif;
	margin: 40px 10px 25px 10px;
	text-align: center;
}


.top-quote {
	margin-bottom: 0;
}


.pet-link-wrapper {
	margin-bottom: 30px;
}

.innerpage-content-wrapper .pet-link:hover,
.innerpage-content-wrapper .pet-link:visited,
.innerpage-content-wrapper .pet-link {
	display: block;
	color: black;
	text-decoration: none;
}

/*
.innerpage-content-wrapper .pet-link:hover{
    box-shadow: 0 0 15px rgba(0,0,0,.3);
}*/
.pet-link .description {
	padding: 15px 15px;
	border: 3px solid #E7E8EC;
	border-bottom: none;
}

.pet-link .status-bar {
	background-color: #E7E8EC;
	color: var(--text-dark);
}

.innerpage-content-wrapper .pet-link:hover .description {
	border-color: #E9EABC;
}

.innerpage-content-wrapper .pet-link:hover .status-bar {
	background-color: #F1F3C1;
}

.pet-link .title {
	display: block;
	margin: 0;
}

.pet-link .title span {
	font: 20px/1.1em var(--font-family-primary), sans-serif;
	color: var(--blue-hover);
}


.pet-link .status {
	display: inline-block;
	margin-right: 20px;
	background: var(--yellow);
	color: var(--text-dark);
}

.pet-link .status.moderation {
	background-color: var(--light-blue);
	color: white;
}

.pet-link .status.accepted {
	background-color: var(--green);
	color: #E7E8EC;
}

.pet-link .status.declined {
	background-color: var(--red);
	color: #E7E8EC;
}


.pet-link .status.arrowed {
	position: relative;
	margin-right: 35px;
}

.pet-link .status.arrowed:before,
.pet-link .status.arrowed:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 50%;
	left: 0;
	background: inherit;
	z-index: 1;
	margin: 0;
	display: block;
}

.pet-link .status.arrowed:before {
	top: 1px;
	-webkit-transform: skewX(35deg);
	transform: skewX(35deg);
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
}

.pet-link .status.arrowed:after {
	bottom: 0px;
	-webkit-transform: skewX(-35deg);
	transform: skewX(-35deg);
	-webkit-transform-origin: 0 100%;
	transform-origin: 0 100%;
}


.pet-link .status.arrowed b {
	display: inline-block;
	position: relative;
	z-index: 2;
	color: inherit;
	padding: 10px 10px 8px 20px;
	line-height: 1.1em;
	font-weight: 500;
	font-size: 16px;
}


.pet-link .date-wrapper {
	display: inline-block;

}

.pet-link .date-wrapper b {
	display: inline-block;

}

.pet-link .date-wrapper .separator {
	display: inline-block;
	font-weight: 700;
	padding: 0 10px;
}

.pet-link .cnt {
	display: block;
	font-size: 17px;
	margin-top: 0.25em;
	margin-bottom: 0.25em;
}


.field_set {
	position: relative;
	display: inline-block;
	width: 100%;
	padding: 22px 0 15px;
}

.field_set.big-margin-bottom {
}

.field_set.no-padding-bottom {
	padding-bottom: 0;
}

.field-title {
	font: 400 16px "opensans", sans-serif;
	width: 260px;
	max-width: 100%;
	text-align: right;
	margin: 7px 25px 0 0;
	float: left;
	min-height: 1px;
	position: relative;
}

.field-title span {
	color: #ff7e00;
	font-size: 25px;
	position: absolute;
	top: -5px;
	right: -15px;
}

.input-block {
	max-width: 410px;
	width: 100%;
	float: left;
}

.input-block input[type="text"] {
	width: 100%;
	box-sizing: border-box;
	border: 2px solid #adadad;
	padding: 7px 16px;
	font-size: 19px;
}

.input-block textarea {
	width: 100%;
	max-width: 100%;
	min-width: 100%;
	box-sizing: border-box;
	border: 2px solid #adadad;
	padding: 9px 16px;
	font-size: 16px;
	resize: vertical;
	overflow: auto;
	height: 100px;
	min-height: 80px;
	max-height: 300px;
}


.input-button {
	margin: 20px 0 0 0;
	text-align: center;
}

.pass-form .input-button {
	margin: 35px 0 0 0;
}

.input-button button {
	display: inline-block;
	cursor: pointer;
	outline: none;
	background: var(--blue-hover);
	box-sizing: border-box;
	border: none;
	border-radius: 0;
	padding: 8px 18px 9px;
	font: 400 16px roboto, sans-serif;
	color: #fff;
	box-shadow: none;
	text-shadow: none;
	text-transform: uppercase;
}

input-button button:hover {
	background-color: var(--blue);
	color: white;
}


.inline-button {
	margin-top: 20px;
	margin-right: 20px;

}


@media (max-width: 800px) {

	.field-title {
		/* width: auto; */
		text-align: left;
		margin: 0px 25px 11px 0px;
	}

}


@media (max-width: 700px) {


	.input-block {
		max-width: none;
	}


}
.message-block svg {
	fill: #e0e3e7;
	display: inline;
	margin-right: 12px;
	width: 36px;
	height: 32px;
}
