:root {
	--info-item-height: 150px;
	--light-main-color: #f8f6d0;
	--dark-main-color: #005757;
	--rwd-table-th-bg: #2ea265;
	--rwd-table-tr-odd-bg: #b2d6ca;
	--rwd-table-tr-even-bg: #fff;
	--rwd-table-xch-th-bg: #e86433;
	--rwd-table-xch-tr-odd-bg: #f5b8a6;
	--rwd-table-xch-tr-even-bg: #fff;
	--rwd-table-game-th-bg: #3c5361;
	--rwd-table-game-tr-odd-bg: #8aa2ac;
	--rwd-table-game-tr-even-bg: #fff;
	--rwd-table-org-th-bg: #fff;
	--rwd-table-org-tr-odd-bg: #f2f2f2;
	--rwd-table-org-tr-even-bg: #fff;
}

::-webkit-scrollbar {
	width: 10px;
	height: 1px;
}

::-webkit-scrollbar-track {
	background: #fcd812;
}

::-webkit-scrollbar-thumb {
	background-color: #3bbc62;
	border-radius: 10px;
}

.table-striped {
	border-radius: 20px;
	overflow: hidden;
}
.table-striped thead tr {
	background: var(--rwd-table-th-bg);
	font-weight: 600;
}
.table-striped thead tr th {
	font-size: 20px;
	color: #fff;
	background-color: unset;
}
.table-striped tbody tr {
	font-weight: 600;
	color: #222;
}
.table-striped tbody tr:nth-of-type(even) {
	background-color: var(--rwd-table-tr-even-bg);
}
.table-striped tbody tr:nth-of-type(odd) {
	background-color: var(--rwd-table-tr-odd-bg);
}
.table-striped tbody tr td {
	background-color: unset;
}
.table-striped tbody tr:nth-of-type(odd) td {
	border: 1px solid var(--rwd-table-tr-odd-bg);
}
.table-striped tbody tr:nth-of-type(odd) td:nth-of-type(1) {
	border-left: none;
}
.table-striped tbody tr:nth-of-type(odd) td:nth-last-of-type(1) {
	border-right: none;
}
.table-striped.xch thead tr {
	background: var(--rwd-table-xch-th-bg);
}
.table-striped.xch tbody tr:nth-of-type(even) {
	background-color: var(--rwd-table-xch-tr-even-bg);
}
.table-striped.xch tbody tr:nth-of-type(odd) {
	background-color: var(--rwd-table-xch-tr-odd-bg);
}
.table-striped.xch tbody tr:nth-of-type(odd) td {
	border: 1px solid var(--rwd-table-xch-tr-odd-bg);
}
.table-striped.game thead tr {
	background: var(--rwd-table-game-th-bg);
}
.table-striped.game tbody tr:nth-of-type(even) {
	background-color: var(--rwd-table-game-tr-even-bg);
}
.table-striped.game tbody tr:nth-of-type(odd) {
	background-color: var(--rwd-table-game-tr-odd-bg);
}
.table-striped.game tbody tr:nth-of-type(odd) td {
	border: 1px solid var(--rwd-table-game-tr-odd-bg);
}
.table-striped.org thead tr {
	background: var(--rwd-table-org-th-bg);
}
.table-striped.org thead tr th {
	color: #222;
}
.table-striped.org tbody tr:nth-of-type(even) {
	background-color: var(--rwd-table-org-tr-even-bg);
}
.table-striped.org tbody tr:nth-of-type(odd) {
	background-color: var(--rwd-table-org-tr-odd-bg);
}
.table-striped.org tbody tr:nth-of-type(odd) td {
	border: 1px solid var(--rwd-table-org-tr-odd-bg);
}

html {
	scroll-behavior: smooth;
	box-sizing: border-box;
	padding: 0; margin: 0; line-height: 1;
	font-size: 1.2em;
}
*, *::before, *::after {
	box-sizing: inherit;
}
body {
	background-color: var(--light-main-color);
}
header {
	background-color: #bae5ff;
}
ol, ul {
	list-style: none;
}
.nav-item a.nav-link {
	font-size: 1.2rem;
	font-weight: 600;
}
::placeholder {
	color: #50ad5c !important;
	opacity: .5 !important;
}
:-ms-input-placeholder {
	color: #50ad5c !important;
	opacity: .5 !important;
}
::-ms-input-placeholder {
	color: #50ad5c !important;
	opacity: .5 !important;
}
.two_color_bg {
	background: linear-gradient(to bottom,
			#fcf9f7 0%,
			#fcf9f7 20%,
			#efe9dc 20%,
			#efe9dc 100%);
}
.three_color_bg {
	background: linear-gradient(to bottom,
	#fcf9f7 0%,
	#fcf9f7 20%,
	#efe9dc 20%,
	#efe9dc 80%,
	#fcf9f7 80%,
	#fcf9f7 100%);
}
.three_color_bg_fix {
	background: linear-gradient(to bottom,
	#fcf9f7 0,
	#fcf9f7 100px,
	#efe9dc 100px,
	#efe9dc 90%,
	#fcf9f7 90%,
	#fcf9f7 100%);
}
.dropdown:hover>.dropdown-menu {
	display: block;
}
.dropdown>.dropdown-toggle:active {
	pointer-events: none;
}
.dropdown:hover>.dropdown-menu {
	background-color: #e3dac6;
	color: #000;
}
.store_info_list {
	width: 45%;
	height: var(--info-item-height);
	background-color: #fff;
	padding: 20px;
	margin: 30px 0;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-shadow: 0px 5px 5px 0px rgba(171, 171, 171, 1);
}
.store_info_list:nth-of-type(odd) {
	border-top-right-radius: calc(var(--info-item-height) / 2);
	border-bottom-right-radius: calc(var(--info-item-height) / 2);
}
.store_info_list:nth-of-type(even) {
	border-top-left-radius: calc(var(--info-item-height) / 2);
	border-bottom-left-radius: calc(var(--info-item-height) / 2);
}
.store_info_list .div_content {
	flex-grow: 1;
	font-size: 1.5rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	order: 2;
}
.store_info_list .thumb_img {
	width: calc(var(--info-item-height) * 0.8);
	aspect-ratio: 1;
	background-color: #cc9432;
	border-radius: 50%;
	overflow: hidden;
}
.store_info_list:nth-of-type(odd) .thumb_img {
	order: 3;
}
.store_info_list:nth-of-type(even) .thumb_img {
	order: 1;
}
.store_info_list .div_content>i {
	font-size: 2rem;
}
.dialog_border {
	width: max-content;
	background-color: #dcd6b6;
	padding: 20px 40px;
	border-radius: 30px;
	position: relative;
	color: #222;
	font-weight: 600;
	text-align: justify;
}
.dialog_border:before {
	position: absolute;
	content: "";
	width: 30px;
	height: 30px;
	background-color: #dcd6b6;
	transform: rotateZ(45deg) skew(-30deg, -30deg);
	z-index: -1;
	left: -10px;
}
@media screen and (max-width: 768px) {
	.store_info_list {
		gap: 20px;
		width: 80%;
		height: var(--info-item-height) / 2;
	}
	.store_info_list:nth-of-type(odd) {
		border-top-right-radius: calc(var(--info-item-height) / 2);
		border-bottom-right-radius: calc(var(--info-item-height) / 2);
	}
	.store_info_list:nth-of-type(even) {
		border-radius: 0 calc(var(--info-item-height) / 2) calc(var(--info-item-height) / 2) 0;
	}
	.store_info_list:nth-of-type(even) .thumb_img {
		order: 3;
	}
	.store_info_list .div_content {
		width: 90%;
		justify-content: flex-end;
		font-size: 1.2rem;
	}
	.store_info_list .thumb_img {
		width: calc(var(--info-item-height) * 0.5);
	}
	.dialog_border {
		padding: 15px;
	}
	.dialog_border:before {
		top: 33%;
	}

	footer ul.list.list-icons.list-icons-sm {
		font-size: .8rem !important;
	}
}

@media screen and (min-width: 768px) {
	.campus_slide_wrapper {
		margin-top: 80px;
	}
}
.campus_slide_wrapper {
	margin-top: 50px;
}
.splide.is-initialized,
.splide.is-rendered {
	visibility: visible;
}
.splide {
	visibility: hidden;
	position: relative;
}
@media (min-width: 768px) {
	.campus {
		margin-top: 200px;
		--plusMinus: 1235px;
	}
}
.campus {
	overflow-x: clip;
	overflow-y: clip;
	margin-top: 80px;
	margin-right: calc(var(--plusMinus)* -1);
	margin-left: calc(var(--plusMinus)* -1);
	padding-right: var(--plusMinus);
	padding-left: var(--plusMinus);
	border-radius: 50%;
	--plusMinus: 700px;
}
.splide_track {
	overflow-x: clip;
	overflow-y: visible;
}
.splide_track {
	overflow: hidden;
	position: relative;
	z-index: 0;
}
.splide_list {
	display: flex !important;
	margin: 0 !important;
	padding: 0 !important;
	height: 100%;
	backface-visibility: hidden;
}
.p-top_slide_list {
	will-change: transform;
}
.splide_slide {
	flex-shrink: 0;
	box-sizing: border-box;
	position: relative;
	margin: 0;
	list-style-type: none !important;
	backface-visibility: hidden;
}
.top a {
	text-decoration: none;
	color: #000;
}
.campus_slide_inner {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
}
@media (min-width: 768px) {
	.campus_slide_img_wrapper {
		aspect-ratio: 27 / 36;
	}
}

.campus_slide_img_bg,
.img_mask {
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: 0 0;
	mask-position: 0 0;
	-webkit-mask-size: 100%;
	mask-size: 100%;
}
.campus_slide_desc {
	margin: 20px 0;
}
.campus_slide_desc *:not(i) {
	color: #222;
}
.campus_slide_desc i {
	color: #009752;
}
@media (min-width: 768px) {
	.campus_slide_img_bg {
		aspect-ratio: 27 / 36;
	}
	.campus_slide_item {
		width: 270px !important;
		margin: 20px;
	}
	.p-splide-slide_controllers {
		margin-top: 38px;
	}
}
@media screen and (max-width: 768px) {
	.campus_slide_item {
		padding: 20px;
	}
	#footer_container {
		padding: 10px 80px;
	}
}
.campus_slide_img_bg {
	position: absolute;
	z-index: -1;
	top: 5px;
	right: -5px;
	width: 100%;
	/* background: linear-gradient(90deg, hsl(302deg, 52%, 61%) 0%, hsl(10deg, 25%, 75%) 20%, hsl(190deg, 15%, 77%) 43%, hsl(334deg, 50%, 84%) 60%, hsl(48deg, 45%, 79%) 79%, hsl(203deg, 46%, 83%) 100%); */
	background-color: #b7b6b6;
	aspect-ratio: 24 / 32;
}
.pickup_item_inner .pickup_img_cont,
.pickup_item_inner .campus_slide_img,
.campus_slide_inner .pickup_img_cont,
.campus_slide_inner .campus_slide_img {
	transition: transform 0.22s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	transform: translate(0px, 0px) rotate(0deg);
	transform-origin: 0% 70%;
}
.campus_slide_img {
	width: 100%;
	height: 100%;
}

.p-splide-slide_controllers_wrapper {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}
.p-splide-slide_controllers {
	display: inline-block;
	position: relative;
	margin: 0 auto;
	width: 80%;
	min-width: 300px;
	min-height: 40px;
}
.p-splide-slide_arrows {
	display: flex;
	justify-content: space-between;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: calc(100% - 30px);
	height: 40px;
}
.campus_slide_wrapper .p-splide-slide_arrow {
	background-color: #fff;
}
.p-splide-slide_prev {
	transform: scaleX(-1);
}
.p-splide-slide_arrow {
	display: grid;
	overflow: hidden;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	transition: filter 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
	background-color: #f2f2f2;
	place-content: center;
}
.p-splide-slide_pagination {
	margin: 0 auto;
	min-width: 130px;
	min-height: 40px;
	-moz-column-gap: 20px;
	column-gap: 20px;
	padding-inline: 70px;
	row-gap: 10px;
}
.splide__pagination {
	display: flex;
	align-items: center;
	-ms-flex-align: center;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0;
	pointer-events: none;
}
.p-splide-slide_pagination li {
	position: relative;
	width: 10px;
	height: 10px;
}
.splide__pagination li {
	display: inline-block;
	margin: 0;
	list-style-type: none;
	pointer-events: auto;
	line-height: 1;
}
.splide__pagination__page.is-active {
	background: #777;
}
.cw {
	color: #fff;
}
.cr {
	color: #f00;
}
.cp {
	cursor: pointer;
}
.input-group-prepend .input-group-text {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}
.input-group-append .input-group-text {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}
.tool_tip {
	position: relative;
}
.tool_tip .tool_tip_text {
	display: none;
	background-color: black;
	color: #fff;
	text-align: center;
	border-radius: 6px;
	padding: 5px 10px;
	position: absolute;
	bottom: -4rem;
	z-index: 1;
}
.tool_tip:hover .tool_tip_text {
	display: block;
}
.pd-0 {
	padding: 0 !important;
}
.limiter {
	width: 100%;
	margin: 0 auto;
}
.container-login100 {
	width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 15px;
}
.wrap-login100 {
	width: 390px;
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	padding: 7px 55px 33px 55px;
	box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
	-o-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
	-ms-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
}
.login100-form {
	width: 100%;
}
.wrap-input100 {
	width: 100%;
	position: relative;
	border-bottom: 2px solid #adadad;
	margin-bottom: 37px;
}
.login100-form-title {
	display: block;
	font-size: 30px;
	color: #333333;
	line-height: 1.2;
	text-align: center;
}
input {
	outline: none;
	border: none;
	margin: 0;
}
.input100 {
	font-family: Poppins-Regular;
	color: #555555;
	line-height: 1.2;
	display: block;
	width: 100%;
	height: 45px;
	background: transparent;
	padding: 0 5px;
}
.focus-input100 {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	pointer-events: none;
}
.focus-input100::before {
	content: "";
	display: block;
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
	transition: all 0.4s;
	background: #6a7dfe;
	background: -webkit-linear-gradient(left, #21d4fd, #b721ff);
	background: -o-linear-gradient(left, #21d4fd, #b721ff);
	background: -moz-linear-gradient(left, #21d4fd, #b721ff);
	background: linear-gradient(left, #21d4fd, #b721ff);
}
.focus-input100::after {
	font-family: Poppins-Regular;
	font-size: 15px;
	color: #999999;
	line-height: 1.2;
	content: attr(data-placeholder);
	display: block;
	width: 100%;
	position: absolute;
	top: 16px;
	left: 0px;
	padding-left: 5px;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
	transition: all 0.4s;
}
.input100:focus+.focus-input100::after {
	top: -15px;
}
.input100:focus+.focus-input100::before {
	width: 100%;
}
.has-val.input100+.focus-input100::after {
	top: -15px;
}
.has-val.input100+.focus-input100::before {
	width: 100%;
}
.progress-wrap {
	position: fixed;
	right: 50px;
	bottom: 50px;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	border-radius: 50px;
	box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}
.progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.progress-wrap::after {
	position: absolute;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: '\f062';
	text-align: center;
	line-height: 46px;
	font-size: 18px;
	color: #1f2029;
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 1;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}
.lightScrollIcon::after {
	color: #ecedf3 !important;
}
.progress-wrap:hover::after {
	opacity: 0;
}
.progress-wrap::before {
	position: absolute;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: '\f062';
	text-align: center;
	line-height: 46px;
	font-size: 18px;
	opacity: 0;
	background-image: linear-gradient(298deg, #da2c4d, #f8ab37);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 2;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}
.progress-wrap:hover::before {
	opacity: 1;
}
.progress-wrap svg path {
	fill: none;
}
.progress-wrap svg.progress-circle path {
	stroke: #1f2029;
	stroke-width: 4;
	box-sizing: border-box;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}
#award_title {
	width: 100%;
	padding: 40px;
	border-radius: 2vw;
	border: 0.2vw solid #8e7a69;
	background-color: #fff;
	filter: drop-shadow(0.3vw 0.4vw 0 #8e7a69);
}
.bar_icon {
	background: #fff;
	border: 0.22vw solid #8e7a69 !important;
	margin-bottom: 0.2vw;
	cursor: pointer;
	position: relative;
	filter: none !important;
	border-radius: 9999px;
	width: 100%;
	height: 6vw;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: .35s all ease;
	color: #8e7a69;
}
.bar_icon.on_status {
	background: #8e7a69;
	color: #fff;
}
.bar_icon:hover {
	background: #8e7a69;
	color: #fff;
}
.bar_icon span {
	display: block;
	position: absolute;
	top: 50%;
	right: 1.1vw;
	width: 3.7vw;
	height: 3.7vw;
	border-radius: 100%;
	transform: translateY(-50%);
	background: #8e7a69;
	transition: .35s all ease;
}
.bar_icon.on_status span {
	background-color: #fff;
}
.bar_icon:hover span {
	background-color: #fff;
}
.bar_icon span:before {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	content: "";
	width: 0.22vw;
	height: 48%;
	background: #fff;
	transition: .35s all ease;
}
.bar_icon span:after {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	content: "";
	width: 48%;
	height: 0.22vw;
	background: #fff;
	transition: .35s all ease;
}
.bar_icon.on_status span:before {
	background-color: #8e7a69;
	transform: translate(-50%, -50%) rotate(90deg);
}
.bar_icon.on_status span:after {
	background-color: #8e7a69;
}
.bar_icon:hover span:before {
	background-color: #8e7a69;
}
.bar_icon:hover span:after {
	background-color: #8e7a69;
}
.bar_icon p {
	transition: .35s all ease;
	font-weight: 700;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
ol.gradient-list>li::before,
ol.gradient-list>li {
	box-shadow: 0.25rem 0.25rem 0.6rem rgba(0, 0, 0, 0.05), 0 0.5rem 1.125rem rgba(75, 0, 0, 0.05);
}
ol.gradient-list {
	counter-reset: gradient-counter;
	list-style: none;
	margin: 1.75rem 0;
	padding-left: 1rem;
}
ol.gradient-list>li {
	background: white;
	border-radius: 0 0.5rem 0.5rem 0.5rem;
	counter-increment: gradient-counter;
	margin-top: 1rem;
	min-height: 3rem;
	padding: 1rem 1rem 1rem 3rem;
	position: relative;
	color: #222 !important;
}
ol.gradient-list>li::before,
ol.gradient-list>li::after {
	background: linear-gradient(135deg, #222 0%, #888 100%);
	border-radius: 50%;
	content: "";
	height: 3rem;
	left: -1rem;
	overflow: hidden;
	position: absolute;
	top: -1rem;
	width: 3rem;
}
ol.gradient-list>li::before {
	align-items: flex-end;
	content: counter(gradient-counter);
	color: #fff;
	display: flex;
	font: 900 1.5em/1 "Montserrat";
	justify-content: center;
	align-items: center;
	padding: 0.125em 0.25em;
	z-index: 1;
}
ol.gradient-list>li:nth-child(10n+1):before {
	background: linear-gradient(135deg, rgba(34, 34, 34, 0.2) 0%, rgba(136, 136, 136, 0.2) 100%);
}
ol.gradient-list>li:nth-child(10n+2):before {
	background: linear-gradient(135deg, rgba(34, 34, 34, 0.4) 0%, rgba(136, 136, 136, 0.4) 100%);
}
ol.gradient-list>li:nth-child(10n+3):before {
	background: linear-gradient(135deg, rgba(34, 34, 34, 0.6) 0%, rgba(136, 136, 136, 0.6) 100%);
}
ol.gradient-list>li:nth-child(10n+4):before {
	background: linear-gradient(135deg, rgba(34, 34, 34, 0.8) 0%, rgba(136, 136, 136, 0.8) 100%);
}
ol.gradient-list>li:nth-child(10n+5):before {
	background: linear-gradient(135deg, #222 0%, #888 100%);
}
ol.gradient-list>li:nth-child(10n+6):before {
	background: linear-gradient(135deg, rgba(34, 34, 34, 0.8) 0%, rgba(136, 136, 136, 0.8) 100%);
}
ol.gradient-list>li:nth-child(10n+7):before {
	background: linear-gradient(135deg, rgba(34, 34, 34, 0.6) 0%, rgba(136, 136, 136, 0.6) 100%);
}
ol.gradient-list>li:nth-child(10n+8):before {
	background: linear-gradient(135deg, rgba(34, 34, 34, 0.4) 0%, rgba(136, 136, 136, 0.4) 100%);
}
ol.gradient-list>li:nth-child(10n+9):before {
	background: linear-gradient(135deg, rgba(34, 34, 34, 0.2) 0%, rgba(136, 136, 136, 0.2) 100%);
}
ol.gradient-list>li:nth-child(10n+10):before {
	background: linear-gradient(135deg, rgba(34, 34, 34, 0) 0%, rgba(136, 136, 136, 0) 100%);
}
ol.gradient-list>li+li {
	margin-top: 2rem;
}
ol.custom-ol {
    list-style: none;
    counter-reset: item;
    padding-left: 0;
}
ol.custom-ol > li {
    counter-increment: item;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    text-align: justify;
    font-size: 1.2rem;
    color: #fff;
}
ol.custom-ol > li::before {
    content: counter(item);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2em;
    height: 2em;
    min-width: 2em;
    min-height: 2em;
    font-weight: bold;
    background-color: white;
    color: black;
    border: 2px solid black;
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
}
ol.custom-ol > li > div > ol {
    counter-reset: item;
    margin-top: 1rem;
}
ol.custom-ol > li > div > ul {
    list-style: none;
    padding-left: 2.5em;
}
ol.custom-ol > li > div > ul > li {
    position: relative;
    padding-left: 2em;
}
ol.custom-ol > li > div > ul > li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    top: 0.1em;
    font-size: 1.2em;
}
.portfolio .single-portfolio-item .overlay {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	transform: translate(-50%, -50%);
	background: #054047;
	color: #ffffff;
	opacity: 0;
	transition: all .3s ease-in-out;
}
.portfolio .single-portfolio-item .overlay a {
	font-size: 20px;
	position: absolute;
	text-decoration: none;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #ffffff;
	transition: all .3s ease-in-out;
}
.portfolio .single-portfolio-item .overlay a:hover {
	font-size: 25px;
}
.portfolio .single-portfolio-item:hover .overlay {
	width: 40%;
	height: unset;
	aspect-ratio: 1;
	border-radius: 50%;
	opacity: .8;
}
.ddr {
	border-radius: 20px;
	overflow: hidden;
}
@media screen and (max-width: 1024px) {
	#award_title {
		padding: 20px;
	}
}
@media screen and (max-width: 991px) {
	#award_title {
		padding: 10px;
	}
	.bar_icon {
		height: 10vw;
	}
	.bar_icon span {
		right: 1.5vw;
		width: 6vw;
		height: 6vw;
	}
	.tool_tip:hover .tool_tip_text, .tool_tip_text {
		display: none !important;
	}
}
/***** radio *****/
.radio_container {
	--s: 18px;
	--g: 10px;
	--c: #585654;
	display: grid;
	grid-auto-rows: 1fr;
	gap: var(--g);
	position: relative;
}
.radio_container:before {
	content: "";
	position: absolute;
	height: calc(var(--s) / 2);
	left: calc(var(--s) / 4 + var(--_x, 0px));
	top: calc(var(--s) / 4);
	background: var(--c);
	border-radius: 50%;
	aspect-ratio: 1;
	transition: 0.4s, left cubic-bezier(0.1, -2000, 0.7, -2000) 0.4s;
}
.radio_container label {
	display: inline-flex;
	line-height: var(--s);
	align-items: center;
	gap: 10px;
	cursor: pointer;
}
.radio_container input {
	height: var(--s);
	aspect-ratio: 1;
	border: calc(var(--s) / 8) solid var(--_c, #585654);
	border-radius: 50%;
	outline-offset: calc(var(--s) / 10);
	padding: calc(var(--s) / 8);
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	font-size: inherit;
	margin: 0;
	transition: 0.3s;
}
.radio_container input:checked {
	--_c: var(--c);
}
.radio_container:not(:has(input:checked)):before {
	--_i: -1;
	opacity: 0;
}
.radio_container:has(input:checked):before {
	opacity: 1;
	transform: translateY(calc(var(--_i) * (var(--s) + var(--g))));
}
.radio_container:has(label:nth-child(1) input:checked):before {
	--_i: 0;
	--_x: 0.02px;
}
.radio_container:has(label:nth-child(2) input:checked):before {
	--_i: 1;
	--_x: 0.04px;
}
.radio_container:has(label:nth-child(3) input:checked):before {
	--_i: 2;
	--_x: 0.06px;
}
.radio_container:has(label:nth-child(4) input:checked):before {
	--_i: 3;
	--_x: 0.08px;
}
.radio_container:has(label:nth-child(5) input:checked):before {
	--_i: 4;
	--_x: 0.1px;
}
/* and so on ..*/
.radio_container input:disabled {
	background: linear-gradient(#939393, #000, #000) 50%/100% 20% no-repeat content-box;
	opacity: 0.5;
	cursor: not-allowed;
}
.checkbox-wrapper-19 {
	box-sizing: border-box;
	--background-color: #fff;
	--checkbox-height: 25px;
}
@-moz-keyframes dothabottomcheck-19 {
	0% {
		height: 0;
	}
	100% {
		height: calc(var(--checkbox-height) / 2);
	}
}
@-webkit-keyframes dothabottomcheck-19 {
	0% {
		height: 0;
	}
	100% {
		height: calc(var(--checkbox-height) / 2);
	}
}
@keyframes dothabottomcheck-19 {
	0% {
		height: 0;
	}
	100% {
		height: calc(var(--checkbox-height) / 2);
	}
}
@keyframes dothatopcheck-19 {
	0% {
		height: 0;
	}
	50% {
		height: 0;
	}
	100% {
		height: calc(var(--checkbox-height) * 1.2);
	}
}
@-webkit-keyframes dothatopcheck-19 {
	0% {
		height: 0;
	}
	50% {
		height: 0;
	}
	100% {
		height: calc(var(--checkbox-height) * 1.2);
	}
}
@-moz-keyframes dothatopcheck-19 {
	0% {
		height: 0;
	}
	50% {
		height: 0;
	}
	100% {
		height: calc(var(--checkbox-height) * 1.2);
	}
}
.checkbox-wrapper-19 input[type=checkbox] {
	display: none;
}
.checkbox-wrapper-19 .check-box {
	height: var(--checkbox-height);
	width: var(--checkbox-height);
	background-color: transparent;
	border: calc(var(--checkbox-height) * .1) solid #000;
	border-radius: 5px;
	position: relative;
	display: inline-block;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-moz-transition: border-color ease 0.2s;
	-o-transition: border-color ease 0.2s;
	-webkit-transition: border-color ease 0.2s;
	transition: border-color ease 0.2s;
	cursor: pointer;
}
.checkbox-wrapper-19 .check-box::before,
.checkbox-wrapper-19 .check-box::after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	position: absolute;
	height: 0;
	width: calc(var(--checkbox-height) * .2);
	background-color: #34b93d;
	display: inline-block;
	-moz-transform-origin: left top;
	-ms-transform-origin: left top;
	-o-transform-origin: left top;
	-webkit-transform-origin: left top;
	transform-origin: left top;
	border-radius: 5px;
	content: " ";
	-webkit-transition: opacity ease 0.5s;
	-moz-transition: opacity ease 0.5s;
	transition: opacity ease 0.5s;
}
.checkbox-wrapper-19 .check-box::before {
	top: calc(var(--checkbox-height) * .72);
	left: calc(var(--checkbox-height) * .41);
	box-shadow: 0 0 0 calc(var(--checkbox-height) * .05) var(--background-color);
	-moz-transform: rotate(-135deg);
	-ms-transform: rotate(-135deg);
	-o-transform: rotate(-135deg);
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
}
.checkbox-wrapper-19 .check-box::after {
	top: calc(var(--checkbox-height) * .37);
	left: calc(var(--checkbox-height) * .05);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.checkbox-wrapper-19 input[type=checkbox]:checked + .check-box,
.checkbox-wrapper-19 .check-box.checked {
	border-color: #34b93d;
}
.checkbox-wrapper-19 input[type=checkbox]:checked + .check-box::after,
.checkbox-wrapper-19 .check-box.checked::after {
	height: calc(var(--checkbox-height) / 2);
	-moz-animation: dothabottomcheck-19 0.2s ease 0s forwards;
	-o-animation: dothabottomcheck-19 0.2s ease 0s forwards;
	-webkit-animation: dothabottomcheck-19 0.2s ease 0s forwards;
	animation: dothabottomcheck-19 0.2s ease 0s forwards;
}
.checkbox-wrapper-19 input[type=checkbox]:checked + .check-box::before,
.checkbox-wrapper-19 .check-box.checked::before {
	height: calc(var(--checkbox-height) * 1.2);
	-moz-animation: dothatopcheck-19 0.4s ease 0s forwards;
	-o-animation: dothatopcheck-19 0.4s ease 0s forwards;
	-webkit-animation: dothatopcheck-19 0.4s ease 0s forwards;
	animation: dothatopcheck-19 0.4s ease 0s forwards;
}
.form-floating > .bi-calendar-date + .datepicker_input + label {
	padding-left: 3.5rem;
	z-index: 3;
}
.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus, .pagination .page-item.active .page-link {
	background-color: var(--dark-main-color) !important;
	border-color: var(--dark-main-color);
}
.f_img {
	width: 100%; max-width: 400px; margin-bottom: 20px;
}
.f_img.f2 {
	max-width: 200px;
}
.f_img.f3 {
	max-width: 274px;
}
.f_img.f4 {
	max-width: 180px;
}
@media screen and (max-width: 768px) {
	.f_img.f2 {
		max-width: 150px;
	}
	.f_img.f3 {
		max-width: 250px;
	}
	.f_img.f4 {
		max-width: 130px;
	}
}
.scroll-fade-up {
	position: absolute;
	bottom: -10%;
	left: 2%;
	width: 100%;
	max-width: 230px;
	object-fit: cover;
	z-index: 10;
	opacity: 1;
	transform: translateY(100px);
	transition: transform 1s ease-out;
}
.scroll-fade-up.active {
	transform: translateY(0);
}
.scroll-fade-left {
	z-index: 10;
	display: block;
	opacity: 1;
	transform: translateX(200%);
	transition: transform 1s ease-out;
	width: 100%;
	object-fit: cover;
}
.scroll-fade-left.active {
	transform: translateX(0);
}
.scroll-fade-left-u50 {
	z-index: 10;
	opacity: 0;
	visibility: hidden;
	transform: translate(200%, -50%);
	transition: transform 2s ease-out;
	width: 100%;
	object-fit: cover;
}
.scroll-fade-left-u50.active {
	transform: translate(0, -50%);
	opacity: 1;
	visibility: visible;
}
.scroll-fade-right-u50 {
	z-index: 10;
	display: block;
	opacity: 1;
	transform: translate(-200%, -50%);
	transition: transform 2s ease-out;
	width: 100%;
	object-fit: cover; max-width: 700px; margin: 50px auto 0;
}
.scroll-fade-right-u50.active {
	transform: translate(0, -50%);
}
@media screen and (max-width: 991px) {
	.scroll-fade-right-u50 {
		transform: translateX(-200%);
		transition: transform 2s ease-out;
		width: 100%;
		object-fit: cover;
		max-width: 150px;
		margin: 50px auto 0;
	}
	.scroll-fade-right-u50.active {
		transform: translateX(0);
	}
	.scroll-fade-left-u50 {
		transform: translateX(200%);
		transition: transform 2s ease-out;
		width: 100%;
		object-fit: cover;
	}
	.scroll-fade-left-u50.active {
		transform: translateX(0);
	}
	.table.table-no-more,
	.table.table-no-more thead,
	.table.table-no-more tbody,
	.table.table-no-more tr,
	.table.table-no-more th,
	.table.table-no-more td {
		display: block;
	}

	.table.table-no-more thead tr {
		left: -9999px;
		position: absolute;
		top: -9999px;
	}

	.table.table-no-more tr {
		border-bottom: 1px solid #DDD;
	}

	.table.table-no-more td {
		border: none;
		position: relative;
		padding-left: 40%;
		text-align: left;
		white-space: normal;
	}

	.table.table-no-more td:before {
		content: attr(data-title);
		font-weight: bold;
		left: 6px;
		padding-right: 10px;
		position: absolute;
		text-align: left;
		top: 8px;
		white-space: nowrap;
		width: 35%;
	}

	.table.table-no-more.table-bordered td {
		border-bottom: 1px solid #dedede;
	}

	.table.table-no-more.table-sm td:before {
		top: 5px;
	}
}
.j-board {
	background-color: #fff; width: 100%; padding: 20px; border-radius: 20px; border: 1px solid #222; text-align: justify;
}
.select2-container .select2-selection--single {
	height: auto;
}
.select2-container--default .select2-selection--single {
	padding: 4px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 36px;
}
.page-link {
	color: var(--dark-main-color);
}
.cp {
	cursor: pointer;
}
.ack_button_holder {
	position: absolute; top: 0; width: 100%; display: flex; gap: 20px; justify-content: center; margin-bottom: 50px;
}
.pure_ack_btn {
	padding: 10px 40px;
	border-radius: 40px;
	background-color: #fff;
	border: 2px solid #ece475;
	cursor: pointer;
	transform: translateY(-50%);
	position: relative;
}
.pure_ack_btn.ack {
	background-color: #ece475;
}
.pure_ack_btn.ack:before {
	position: absolute;
	content: "";
	background-color: #ece475;
	border-color: #ece475;
	transform: translateY(-50%) rotate(45deg);
	left: 50%;
	top: 100%;
	width: 20px;
	height: 20px;
}
.pure_ack_content {
	padding: 10px; position: relative;
	margin-top: 30px;
}
.ack_btn {
	padding: 10px 40px;
	border-radius: 40px;
	background-color: #fff;
	border: 2px solid #ece475;
	position: absolute;
	top: 0;
	left: 50%;
	cursor: pointer;
}
.ack_btn:nth-of-type(1) {
	transform: translate(-105%, -50%);
}
.ack_btn:nth-of-type(2) {
	transform: translate(5%, -50%);
}
.ack_btn.ack {
	background-color: #ece475;
	position: relative;
	width: max-content;
	transform: translateY(-150%)
}
.ack_btn.ack:before {
	position: absolute;
	content: "";
	background-color: #ece475;
	border-color: #ece475;
	transform: translateY(-50%) rotate(45deg);
	left: 50%;
	top: 100%;
	width: 20px;
	height: 20px;
}
.ack_btn:nth-of-type(1).ack {
	transform: translate(-105%, -90%);
}
.ack_btn:nth-of-type(2).ack {
	transform: translate(5%, -90%);
}
.ack_content {
	padding: 10px; position: relative;
}
@media screen and (max-width: 768px) {
	.ack_btn {
		padding: 5px 10px;
		border-radius: 20px;
	}
	.ack_btn:nth-of-type(1) {
		transform: translate(-103%, -50%);
	}
	.ack_btn:nth-of-type(2) {
		transform: translate(3%, -50%);
	}
	.ack_btn:nth-of-type(1).ack {
		transform: translate(-103%, -100%);
	}
	.ack_btn:nth-of-type(2).ack {
		transform: translate(3%, -100%);
	}
	.pure_ack_btn {
		padding: 5px 10px;
		border-radius: 20px;
	}
	.container {
		padding-left: 10px !important;
		padding-right: 10px !important;
	}
	.ack_content {
		padding: 0;
	}
}
.xch_btn {
	margin: 10px auto;
	display: block;
	text-align: center !important;
}
.xch_btn .x_btn {
	transition: all .15s cubic-bezier(0.55, 0.05, 0.22, 0.99) 0s;
	transition-property: transform, background, box-shadow;
	box-sizing: border-box;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	position: relative;
	padding: 15px 30px;
	border: #000 solid 1px;
	border-radius: 2.5rem;
	background: #b1e166;
	color: #222 !important;
	line-height: 1.5;
	text-decoration: none;
	box-shadow: 0 5px 0 #428200;
	cursor: pointer;
}
.xch_btn .x_btn:not(.not_arrow):hover {
	transform: translateY(5px);
	box-shadow: none;
}
.xch_btn .x_btn.not_arrow {
	cursor: not-allowed;
	color: #fff !important;
	background: #efb453;
	box-shadow: 0 5px 0 #624a33;
}

a {
	text-decoration: none;
}

.org-list {
	list-style: none;
	padding: 0;
	margin: 0;
	max-width: 100%;
}

.org-list li {
	display: flex;
	align-items: flex-start;
	margin-bottom: 0.5rem;
	flex-wrap: wrap;
}

.org-list .label {
	font-weight: 600;
	color: #222;
	text-align: right;
	margin-right: 0.5em;
	white-space: nowrap;
}

.org-list .content {
	flex: 1;
	color: #222;
	font-weight: 600;
}

.org-list a {
	color: #222;
	text-decoration: none;
}

.org-list img {
	width: 2rem;
	margin-left: 0.5rem;
	vertical-align: middle;
}

@media (max-width: 576px) {
	.org-list .label {
		min-width: 5em;
	}

	.org-list img {
		width: 1.5rem;
	}
}