.contact_body > .share_box {
	grid-column: 1 / -1;
}

.altar_view_date {
	display: inline-flex;
	width: fit-content;
	margin: 0 0 12px;
	padding: 4px 8px;
	border-radius: 4px;
	background: var(--second-color);
	color: var(--c-white);
	font: 700 13px/1.2em 'Inter', sans-serif;
	letter-spacing: 0;
}

.compact_form select,
.member_form select {
	height: 44px;
	padding-top: 6px;
	padding-bottom: 6px;
	font-size: 15px;
	line-height: 1.35;
}

.form_notice_card {
	margin: 24px 0;
	padding: 18px 20px;
	border-radius: 8px;
	background: #fff;
	border: 1px solid rgba(54, 92, 166, 0.18);
	box-shadow: 0 10px 24px rgba(20, 43, 80, 0.08);
	color: var(--font-color);
}

.form_notice_card b {
	display: block;
	font-size: 17px;
	line-height: 1.6;
}

.form_notice_card ul {
	margin: 8px 0 0;
	padding-left: 1.25em;
}

.form_notice_card li {
	line-height: 1.7;
}

.form_notice_card.is-success {
	background: rgba(54, 92, 166, 0.08);
	border-color: rgba(54, 92, 166, 0.28);
}

.form_notice_card.is-error {
	background: rgba(177, 57, 52, 0.08);
	border-color: rgba(177, 57, 52, 0.28);
}

.form_notice_overlay {
	position: fixed;
	z-index: 9999;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(0, 0, 0, 0.42);
}

.form_notice_dialog {
	position: relative;
	width: min(420px, 100%);
	padding: 34px 28px 28px;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
	text-align: center;
	color: var(--font-color);
}

.form_notice_close {
	position: absolute;
	top: 10px;
	right: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	color: #6c757d;
	font-size: 26px;
	line-height: 1;
	text-decoration: none;
}

.form_notice_icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	margin-bottom: 14px;
	border-radius: 50%;
	background: var(--second-color);
	color: #fff;
	font-size: 24px;
}

.form_notice_dialog h3 {
	margin: 0 0 10px;
	color: var(--main-color);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.35;
}

.form_notice_dialog p {
	margin: 0;
	font-size: 17px;
	line-height: 1.8;
}

.form_notice_action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 128px;
	height: 42px;
	margin-top: 22px;
	border-radius: 999px;
	background: var(--second-color);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
}

@media only screen and (min-width: 993px) {
	.form_notice_close:hover,
	.form_notice_action:hover {
		opacity: 0.85;
	}
}

.news_box .news_tabs a.active {
	opacity: 1 !important;
}

.news_box .news_panel {
	display: none;
}

.news_box .news_panel.active {
	display: flex;
	animation: newsPanelIn 500ms ease both;
}

.news_box .news_panel .news_empty {
	flex: 0 0 100%;
}

@keyframes newsPanelIn {
	from {
		opacity: 0;
		transform: translateY(8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media only screen and (min-width: 993px) {
	.news_box .news_tabs a:hover {
		opacity: 0.9;
	}
}
