:root {
	--info-item-height: 150px;
	--light-main-color: #b2d8cc;
	--dark-main-color: #8080C0;
	--lighter-main-color: #bbbbde;
	--primary-color: #843ae9;
	--body-bg-color: #f9f5d2;
	--header-bg: #5998d4; /* Header 背景顏色 */
	--footer-bg: #b3cf2b; /* Footer 背景顏色 */
	--index-db-bg: #fbdd1a; /* Index Dashboard 背景顏色 */
	--index-db-border-color: #ef7c14; /* Index Dashboard 外框顏色 */
	--index-db-btn-color: #288dc3; /* Index Dashboard 按鈕顏色 */
	--index-db-btn-border-color: #005ea1; /* Index Dashboard 按鈕外框顏色 */
	--index-pop-btn-color: #fcab08; /* Index 彈跳 - 立即前往按鈕顏色 */
	--index-pop-btn-border-color: #222222; /* Index 彈跳 - 立即前往按鈕外框顏色 */
	--index-pop-btn-shadow-color: #ff530a; /* Index 彈跳 - 立即前往按鈕陰影顏色 */
	--index-pop-bg-color: #fffff; /* Index 彈跳 - 背影顏色 */
	--index-pop-bg-shadow-color: #a0a0a0; /* Index 彈跳 - 背影陰影顏色 */
}

::-webkit-scrollbar {
	width: 3px;
}

::-webkit-scrollbar { width: 2px; height: 2px; }
::-webkit-scrollbar-track { background: var(--light-main-color); }
::-webkit-scrollbar-thumb { background-color: var(--primary-color); border-radius: 2px; border: transparent; }

::placeholder {
	color: var(--light-main-color) !important;
	opacity: 1;
}

:-ms-input-placeholder {
	color: var(--light-main-color) !important;
}

::-ms-input-placeholder {
	color: var(--light-main-color) !important;
}

*, *::before, *::after { box-sizing: border-box; }

*:focus {
	outline: none;
	-webkit-tap-highlight-color: transparent;
	-webket-user-modify: read-write-plaintext-only;
}

*:focus-visible {
	outline: none;
	-webkit-tap-highlight-color: transparent;
	-webket-user-modify: read-write-plaintext-only;
}

ol,
ul {
	list-style: none;
}

body {
	background-color: var(--body-bg-color);
}

header {
	background-color: transparent;
}

.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%);
}
.navbar-toggler {
	padding: 0.25rem 0.5rem;
	border-radius: 0.25rem;
}

.nav-item.dropdown:hover .dropdown-menu > li {
	/*padding: 0 10px;*/
}

.nav-item.dropdown:hover .dropdown-menu > li:hover {
	background-color: #fff;
}

.dropdown-item:hover {
	background-color: transparent;
}

.dropdown-toggle::after {
	display: inline-block;
	margin-left: .255em;
	vertical-align: .255em;
	content: "";
	border-top: .3em solid;
	border-right: .3em solid transparent;
	border-bottom: 0;
	border-left: .3em solid transparent;
}

.nav-link {
	font-size: 1.2rem;
	font-weight: 600;
}

.navbar-nav {
	gap: 2rem;
}

@media (min-width: 992px) {
	a.nav-link dropdown-toggle::after {
		content: "▼";
		font-size: 0.6em;
		vertical-align: middle;
	}
}

@media (max-width: 991px) {
	.navbar-nav {
		gap: unset;
	}
}

.logo-img { height: 40px; }

@media (min-width: 992px) {
	.logo-img {
		height: 60px;
	}
}

@media screen and (max-width: 480px) {
	.logo-img {
		height: 35px;
	}
}

li:has(> .dropdown-item:hover) {
	background-color: #fff3cd;
}

li:has(> .dropdown-item):not(:first-of-type) {
	border-top: 1px solid rgba(0, 0, 0, 0.15); /* 模擬分隔線 */
}

.dropdown-menu {
	padding: 0;
}

.dropdown-item {
	padding: 10px 20px;
}

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;
}

.navbar-toggler {
	background-color: #fff !important;
	border: none !important;
}

.navbar-toggler:focus {
	outline: none;
	box-shadow: none;
}

a.dropdown-item:focus {
	outline: none;
	box-shadow: none;
}

.dropdown-item.active, .dropdown-item:active {
	color: #222;
}

@media screen and (max-width: 768px) {
	header {
		background-color: var(--header-bg);
	}

	.navbar-nav > .custom-nav-item {
		position: relative;
		display: flex;
		align-items: center;
		padding: 10px 0;
		border-bottom: 2px solid rgba(0, 0, 0, .1);
	}

	.navbar-nav > .custom-nav-item>.nav-link {
		position: relative;
		padding-left: 70px;
		width: 100%;
	}

	.nav-link.dropdown-toggle::after {
		/*display: none !important;*/
	}

	.custom-nav-item .nav-link {
		position: relative;
	}

	.custom-nav-item .nav-link::after {
		content: '+';
		position: absolute;
		left: 75%;
		font-size: 20px;
		color: #333;
		transform: translateX(50%);
		display: inline-block;
		border: none
	}

	.custom-nav-item .nav-link.show::after {
		content: '-';
	}

	.nav-link.dropdown-toggle.show .dropdown-menu.show {
		display: block !important;
	}

	.dropdown-menu {
		transform: none !important;
		padding-left: 1rem;
	}

	.dropdown-menu.show {
		width: auto;
		padding-left: 0;
		margin-left: calc(var(--bs-gutter-x) * -0.5);
		margin-right: calc(var(--bs-gutter-x) * -0.5);
		border-radius: 0;
		border: none;
		background-color: var(--header-bg);
	}

	.dropdown-menu.show > li {
		padding-left: 70px;
	}

	.nav-item.dropdown:hover .dropdown-menu > li {
		padding-left: 70px;
		padding-right: 0;
	}

	li.custom-nav-item:has(> .show) {
		display: block;
	}

	li:has(> .dropdown-item):not(:first-of-type) {
		border: none;
	}

	.custom-nav-item:has(.dropdown-menu.show)::after {
		/*content: none;*/
	}

	.dropdown-item {
		font-size: 1.1rem;
	}

	.dropdown-item::after {
		right: 90px;
	}

	.bubble::after {
		right: 40% !important;
	}
}

.top a {
	text-decoration: none;
	color: #000;
}

@media screen and (max-width: 768px) {
	#footer_container {
		padding: 10px 80px;
	}
}

.cw {
	color: #fff;
}

.cr {
	color: #f00;
}

.cp {
	cursor: pointer;
}

.tool_tip {
	position: relative;
	margin: 0;
	padding: 0;
	font-size: 0;
}

.tool_tip .tool_tip_text {
	display: none;
	background-color: black;
	color: #fff;
	text-align: center;
	border-radius: 6px;
	padding: 5px;
	position: absolute;
	z-index: 1;
	bottom: -2rem;
}

.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;
}

.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;
	}
}

/***** 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: 0px;
}

/* 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);
}

.table-no-more {
	border-radius: 30px;
	overflow: hidden;
}

.table-striped thead tr {
	background: var(--light-main-color);
	font-weight: 600;
}

.table-striped thead tr th {
	font-size: 20px;
	color: #fff;
	background-color: unset;
}

.table-striped tbody tr {
	font-weight: 600;
}

.table-striped tbody tr:nth-of-type(even) {
	background: var(--light-main-color);
	color: #fff;
}

.table-striped tbody tr:nth-of-type(even) td {
	background-color: unset;
	color: #fff;
}

.table-striped tbody tr:nth-of-type(odd) td {
	border: 1px solid var(--light-main-color);
}

.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;
}

.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;
}

.index_6 {
	width: 100%;
	position: relative;
	background-color: #fbdd1a;
	border-radius: 30px;
	border: 5px solid #ef7c14;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
}

.index_6 .dashboard_item {
	transform: translateY(-50%);
	display: flex;
	justify-content: center;
	flex-direction: column;
	gap: 20px;
}

.dashboard_item img {
	width: 100%;
	max-width: 200px;
}

.dashboard_item a {
	background-color: #288dc3;
	border-radius: 20px;
	border: 1px solid #005ea1;
	color: #fff;
	padding: 5px 10px;
	text-align: center;
}

.dialog_border {
	width: max-content;
	background-color: #ffcf03;
	padding: 20px 40px;
	border-radius: 30px;
	position: relative;
	color: #222;
	font-weight: 600;
	text-align: justify;
	border: 1px solid #222;
}

.dialog_border:before {
	position: absolute;
	content: "";
	width: 20px;
	height: 20px;
	background-color: #ffcf03;
	transform: rotateZ(45deg) skew(-30deg, -30deg);
	z-index: 1;
	left: -11px;
	border-bottom: 1px solid #222;
	border-left: 1px solid #222;
}

@media screen and (max-width: 768px) {
	.f_img.f2 {
		max-width: 150px;
	}

	.f_img.f3 {
		max-width: 250px;
	}

	.f_img.f4 {
		max-width: 130px;
	}

	.dialog_border {
		padding: 15px;
	}
	.dialog_border:before {
		top: 33%;
	}
}

.play_button {
	background-image: -webkit-linear-gradient(top, #f4f1ee, #fff);
	background-image: linear-gradient(top, #f4f1ee, #fff);
	border-radius: 50%;
	box-shadow: 0 8px 10px 0 rgba(0, 0, 0, .3), inset 0 4px 1px 1px white, inset 0 -3px 1px 1px rgba(204,198,197,.5);
	float: left;
	height: 100px;
	margin: 0 30px 30px 0;
	position: relative;
	width: 100px;
	-webkit-transition: all .1s linear;
	transition: all .1s linear;
	cursor: pointer;
}

.play_button:after {
	color: #862a35;
	content: "";
	display: block;
	font-size: 50px;
	text-decoration: none;
	text-shadow: 0 -1px 1px #bdb5b4, 1px 1px 1px white;
	position: absolute;
}

.play_button.play:after {
	content: "▶︎";
	left: 50%;
	top: 50%;
	position: absolute;
	transform: translate(-50%, -50%);
}


.play_button:hover {
	background-image: -webkit-linear-gradient(top, #fff, #f4f1ee);
	background-image: linear-gradient(top, #fff, #f4f1ee);
	color: #0088cc;
}

.play_button.play:hover:after {
	color: #83d244;
	text-shadow: 0 0 6px #83d244;
}


.play_button:active {
	background-image: -webkit-linear-gradient(top, #efedec, #f7f4f4);
	background-image: linear-gradient(top, #efedec, #f7f4f4);
	box-shadow: 0 3px 5px 0 rgba(0,0,0,.4), inset 0 -3px 1px 1px rgba(204,198,197,.5);
}

.play_button:active:after {
	color: #dbd2d2;
	text-shadow: 0 -1px 1px #bdb5b4, 0 1px 1px white;
}

.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;
}
@media screen and (max-width: 768px) {
	.pure_ack_btn {
		padding: 5px 10px;
		border-radius: 20px;
	}
}

.table-striped.xch thead tr {
	background: var(--primary-color);
}
.table-striped.xch tbody tr:nth-of-type(even) {
	background-color: #fff;
}
.table-striped.xch tbody tr:nth-of-type(odd) {
	background-color: #dec9e2;
}
.table-striped.xch tbody tr:nth-of-type(odd) td {
	border: 1px solid #fff;
}
.table-striped.xch tbody tr td {
	background-color: transparent;
	color: #222;
}

.table-striped.rank thead tr {
	background: #f78b0b;
}
.table-striped.rank tbody tr:nth-of-type(even) {
	background-color: #fff;
}
.table-striped.rank tbody tr:nth-of-type(odd) {
	background-color: #f9e4bb;
}
.table-striped.rank tbody tr:nth-of-type(odd) td {
	border: 1px solid #fff;
}
.table-striped.rank tbody tr td {
	background-color: transparent;
	color: #222;
}