@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap');

:root {
	--m-primary: #252525;
	--m-primary-rgb: 37, 37, 37;
	--m-light: #ffffff;
	--m-light-rgb: 255, 255, 255;
	--m-offwhite: #f4f4f4;
	--m-offwhite-rgb: 244, 244, 244;
	--m-offwhite-h: #f4f5f6;
	--m-offwhite-rgb-h: 244, 245, 246;
	--m-border: #d1d4db;
	--m-border-rgb: 209, 212, 219;
	--m-font: "Lato", sans-serif;
	--m-theme: #02647E;
	--m-theme-light: #def2f8;
	--m-theme-light-rgb: 222, 242, 248;
	--m-theme-dark: #015369;
	--m-default: #36287e;
	--m-default-dark: #251a5e;
	--m-danger: #dc3545;
	--m-scrollBar: #45454d;
	--m-neutral: #4E5360;
	
	--step-0: clamp(1.125rem, 1.0815rem + 0.2174vw, 1.25rem);
	--step-1: clamp(1.35rem, 1.2761rem + 0.3696vw, 1.5625rem);
	--step-2: clamp(1.62rem, 1.5041rem + 0.5793vw, 1.9531rem);
	--step-3: clamp(1.944rem, 1.771rem + 0.8651vw, 2.4414rem);
	--step-4: clamp(2.3328rem, 2.0827rem + 1.2504vw, 3.0518rem);
	--step-5: clamp(2.7994rem, 2.4462rem + 1.7658vw, 3.8147rem);
}

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

.scrollY {
	overflow-y: auto;
	overflow-x: hidden;
	min-height: 0;
	-webkit-overflow-scrolling: touch;
	-webkit-overflow-scroll: touch;
	scrollbar-width: thin;
}

body > * {
    scrollbar-width: thin;
	scrollbar-color: #45454d transparent !important;
}

::-webkit-scrollbar {
    width: 5px;
    opacity: 0;
}

::-webkit-scrollbar-thumb {
    background: rgba(111, 133, 147, 0.5) !important;
}

@media screen and (min-width: 768px) {
	@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
		::-webkit-scrollbar {
			width: 4px;
			background: transparent !important;
		}
		::-webkit-scrollbar-thumb {
			border-radius: 8px;
			background: var(--m-scrollBar);
		}
	}
	* {
		scrollbar-color: var(--m-scrollBar) transparent;
		scrollbar-width: thin;
		scrollbar-width: 4px;
	}

	body ::-webkit-scrollbar {
		width: 4px;
		height: 6px;
	}
	body ::-webkit-scrollbar-button {
		width: 0;
		height: 0;
	}
	body ::-webkit-scrollbar-thumb {
		background: var(--m-scrollBar);
		border-radius: 8px;
	}
	@media (hover: hover) {
		body ::-webkit-scrollbar-thumb:hover {
			background: var(--m-scrollBar);
		}
	}
	body ::-webkit-scrollbar-thumb:active {
		background: var(--m-scrollBar);
	}
	body ::-webkit-scrollbar-track {
		background: transparent;
	}
	@media (hover: hover) {
		body ::-webkit-scrollbar-track:hover {
			background: transparent;
		}
	}
	
	body ::-webkit-scrollbar-corner,
	body ::-webkit-scrollbar-track:active {
		background: transparent;
	}
}


body {
	font-family: var(--m-font);
}
body {
	margin: 0;
	color: inherit;
	font-size: 1rem;
	line-height: 1.5rem;
	background-color: #fff;
	color: hsl(255 12% 18%);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

p, li {
	color: var(--primary-color);
	overflow-wrap: break-word;
 	word-break: break-word;
	margin-block-end: 1.25rem;
}
.m-mb-0,
p:last-of-type, li:last-of-type,
p:only-of-type, li:only-of-type {
	margin-block-end: 0;
}

a, .btn, button {
	cursor: pointer;
}

/* Row */
.m-row {
	display: flex;
	flex-wrap: wrap;
	margin-inline: -5px;
}
.m-row > * {
	flex-shrink: 0;
	width: 100%;
	max-width: 100%;
	padding-inline: 5px;
}

/* Col */
[class*=m-col-] {flex:0 0 auto}

@media (min-width: 576px) {
	.m-col-sm-1{width:8.33333%;}
	.m-col-sm-2{width:16.66667%;}
	.m-col-sm-3{width:25%;}
	.m-col-sm-4{width:33.3333%;}
	.m-col-sm-5{width:41.66667%;}
	.m-col-sm-6{width:50%;}
	.m-col-sm-7{width:58.33333%;}
	.m-col-sm-8{width:66.66667%;}
	.m-col-sm-9{width:75%;}
	.m-col-sm-10{width:83.33333%;}
	.m-col-sm-11{width:91.66667%;}
	.m-col-sm-12{width:100%;}
}
@media (min-width: 768px) {
	.m-col-md-1{width:8.33333%;}
	.m-col-md-2{width:16.66667%;}
	.m-col-md-3{width:25%;}
	.m-col-md-4{width:33.3333%;}
	.m-col-md-5{width:41.66667%;}
	.m-col-md-6{width:50%;}
	.m-col-md-7{width:58.33333%;}
	.m-col-md-8{width:66.66667%;}
	.m-col-md-9{width:75%;}
	.m-col-md-10{width:83.33333%;}
	.m-col-md-11{width:91.66667%;}
	.m-col-md-12{width:100%;}
}
@media (min-width: 991px) {
	.m-col-lg-1{width:8.33333%;}
	.m-col-lg-2{width:16.66667%;}
	.m-col-lg-3{width:25%;}
	.m-col-lg-4{width:33.3333%;}
	.m-col-lg-5{width:41.66667%;}
	.m-col-lg-6{width:50%;}
	.m-col-lg-7{width:58.33333%;}
	.m-col-lg-8{width:66.66667%;}
	.m-col-lg-9{width:75%;}
	.m-col-lg-10{width:83.33333%;}
	.m-col-lg-11{width:91.66667%;}
	.m-col-lg-12{width:100%;}
}

@media (max-width: 767.98px) {
	.m-mobile-half {
		width: 50%;
	}
}

/* Line Clamp */
.m-line-clamp {
	display: -webkit-box;
	-webkit-box-orient: vertical;  
	overflow: hidden;
}
.m-line-clamp-1 {
	-webkit-line-clamp: 1;
}
.m-line-clamp-2 {
	-webkit-line-clamp: 2;
}
.m-line-clamp-3 {
	-webkit-line-clamp: 3;
}
.m-line-clamp-4 {
	-webkit-line-clamp: 4;
}

.m-donate-container {
	margin-inline: auto;
	padding-inline: 20px;
	padding-block-start: 2.5rem;
}

@media (min-width: 1000px) {
	.m-donate-container {
		/* max-width: 65rem; */
		max-width: 56.25rem;
		padding-inline: 20px;
	}
}

code {
	color: #c7254e;
	background-color: #f9f2f4;
	border-radius: 4px;
	padding-block: 0.25rem;
	padding-inline: 0.5rem;
}
code, kbd, pre, samp {
 	font-family: var(--m-font);
}

/* Misc */
.d-none {
	display: none !important;
}
.bb1 {
	border-bottom: 1px solid var(--m-border);
}
.bt1 {
	border-top: 1px solid var(--m-border);
}
.m-pointer {
	cursor: pointer !important;
}
.m-position-relative {
	position: relative !important;
}
.m-position-absolute {
	position: absolute !important;
}

/* Text Align */
.text-start {
	text-align: left;
}
.text-center {
	text-align: center;
}
.text-end {
	text-align: right;
}

/* Radius */
.m-radius-sm, .has-radius-sm {
	border-radius: .5rem !important;
}
.m-radius-md, .has-radius-md {
	border-radius: .75rem !important;
}
.m-radius-lg, .has-radius-lg {
	border-radius: 1.25rem !important;
}
.m-radius-xl, .has-radius-xl {
	border-radius: 1.75rem !important;
}
.m-radius-xxl, .has-radius-xxl {
	border-radius: 1.5rem !important;
}
.m-radius-circle, .has-radius-circle {
	border-radius: 50% !important;
}

.w-100, .w-full {
	width: 100%;
}
.m-flex {
	display: flex !important;
}
.m-flex-col {
	flex-direction: column !important;
}
.m-align-start {
	align-items: flex-start !important;
}
.m-align-center {
	align-items: center !important;
}
.m-align-end {
	align-items: flex-end !important;
}
.m-flex-wrap {
	flex-wrap: wrap !important;
}

.m-gap-1 {
	gap: 0.25rem !important;
}
.m-gap-2 {
	gap: 0.5rem !important;
}
.m-gap-3 {
	gap: 0.75rem !important;
}
.m-gap-4 {
	gap: 1rem !important;
}

.m-list-unstyled {
	margin-block: 0;
	padding-left: 0;
	list-style-type: none;
}
.m-list-unstyled-item {
	list-style-type: none;
}

.m-m0 {
	margin: 0 !important;
}
.m-mx-0 {
	margin-inline: 0 !important;
}
.m-my-0 {
	margin-block: 0 !important;
}

.m-p0 {
	padding: 0 !important;
}
.m-px-0 {
	padding-inline: 0 !important;
}
.m-py-0 {
	padding-block: 0 !important;
}


.m-mx-1 {
	margin-inline: 0.25rem !important;
}
.m-mx-auto {
	margin-inline: auto !important;
}

/* Margin Right */
.m-mr-1 {
	margin-inline-end: 0.25rem !important;
}
.m-mr-2 {
	margin-inline-end: 0.5rem !important;
}
.m-mr-3 {
	margin-inline-end: 1rem !important;
}
.m-mr-4 {
	margin-inline-end: 1.5rem !important;
}

/* Margin Left */
.m-ml-1 {
	margin-inline-start: 0.25rem !important;
}
.m-ml-2 {
	margin-inline-start: 0.5rem !important;
}
.m-ml-3 {
	margin-inline-start: 1rem !important;
}
.m-ml-4 {
	margin-inline-start: 1.5rem !important;
}

/* Margin Bottom */
.m-mb-1 {
	margin-block-end: 0.25rem !important;
}
.m-mb-2 {
	margin-block-end: 0.5rem !important;
}
.m-mb-3 {
	margin-block-end: 1rem !important;
}
.m-mb-4 {
	margin-block-end: 1.5rem !important;
}

/* Margin Top */
.m-mt-1 {
	margin-block-start: 0.25rem !important;
}
.m-mt-2 {
	margin-block-start: 0.5rem !important;
}
.m-mt-3 {
	margin-block-start: 1rem !important;
}
.m-mt-4 {
	margin-block-start: 1.5rem !important;
}

/* Padding Top Bottom */
.m-py-1 {
	padding-block: 0.25rem !important;
}
.m-py-2 {
	padding-block: 0.5rem !important;
}
.m-py-3 {
	padding-block: 1rem !important;
}
.m-py-4 {
	padding-block: 1.5rem !important;
}

/* Padding Top */
.m-pt-0 {padding-block-start: 0 !important}
.m-pt-1 {
	padding-block-start: 0.25rem !important;
}
.m-pt-2 {
	padding-block-start: 0.5rem !important;
}
.m-pt-3 {
	padding-block-start: 1rem !important;
}
.m-pt-4 {
	padding-block-start: 1.5rem !important;
}

/* Padding bottom */
.m-pb-0 {padding-block-end: 0 !important}
.m-pb-1 {
	padding-block-end: 0.25rem !important;
}
.m-pb-2 {
	padding-block-end: 0.5rem !important;
}
.m-pb-3 {
	padding-block-end: 1rem !important;
}
.m-pb-4 {
	padding-block-end: 1.5rem !important;
}

.m-p-3 {
	padding: 0.75rem;
}

/* Headers */
.m-heading-1, h1, .h1 {
	font-size: clamp(1.75rem,1.75rem + .75*(100vw - 23.4375rem)/66.5625,1.75rem);
	letter-spacing: -.02em;
	line-height: 1.2;
}
.m-heading-2, h2, .h2 {
	font-size: clamp(1.125rem,1.35rem + .5*(100vw - 23.4375rem)/66.5625,1.35rem);
	letter-spacing: 0;
	line-height: 1.2;
}
.m-heading-3, h3, .h3 {
	font-size: clamp(1.125rem,1.35rem + .5*(100vw - 23.4375rem)/66.5625,1.35rem);
	letter-spacing: 0;
	line-height: 1.2;
}
.m-heading-4, h4, .h4 {
	font-size: clamp(1.125rem,1.35rem + .5*(100vw - 23.4375rem)/66.5625,1.35rem) !important;
	letter-spacing: 0;
	line-height: 1.2;
}
.m-heading-5, h5, .h5 {
	font-size: 1rem !important;
}
.m-fw-regular {
	font-weight: 400 !important;
}
.m-fw-bold {
	font-weight: 700 !important;
}
.m-fw-exbold {
	font-weight: 900 !important;
}

.m-text-muted {
	color: #6f6f6f !important;
}
.m-fs-xs {
	font-size: 0.75rem !important;
}
.m-fs-sm {
	font-size: 0.875rem !important;
}
.m-fs-normal {
	font-size: 1rem !important;
}
.m-fs-md {
	font-size: 1.125rem !important;
}
.m-fs-lg {
	font-size: 1.5rem !important;
}
.m-fs-xl {
	font-size: 2rem !important;
}

.m-meta-list {
	color: currentcolor;
	display: flex;
	flex-wrap: wrap;
}

/* Button Groups */
.m-button-groups {
	display: flex;
	column-gap: 1rem;
}

.m-avtar {
	display: flex;
	flex-shrink: 0;
  	color: #252525;
	align-items: center;
	border: 1px solid #fff;
	border-radius: 50%;
	justify-content: center;
	background-color: #f4f2ec;
}
.m-icon {
	color: inherit;
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
}

.m-top-1px {
	top: 1px !important;
}
.m-top-2px {
	top: 2px !important;
}
.m-top-1pxn {
	top: -1px !important;
}
.m-top-2pxn {
	top: -2px !important;
}

.m-icon-sm,
.m-avtar-sm {
	width: 1rem;
	height: 1rem;
}
.m-icon-md,
.m-avtar-md {
	width: 1.25rem;
	height: 1.25rem;
}
.m-icon-lg,
.m-avtar-lg {
	width: 1.5rem;
	height: 1.5rem;
}
.m-icon-xl,
.m-avtar-xl {
	width: 1.875rem;
	height: 1.875rem;
}

.m-icon-xxl,
.m-avtar-xxl {
	width: 4rem;
	height: 4rem;
	display: flex;
	flex-shrink: 0;
	place-items: center;
	justify-content: center;
}

.m-size-40px {
	display: flex;
	flex-shrink: 0;
	position: relative;
	aspect-ratio: 1;
}
.m-size-40px {
	width: 2.5rem;
	height: 2.5rem;
}
.m-size-50px, .m-avtar-50px {
	width: 3.125rem;
	height: 3.125rem;
}

.m-link-primary {
	color: #02647e;
	position: relative;
	text-decoration: none;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	display: inline-flex;
}
.m-link-primary::before {
	left: 0;
	bottom: -1px;
	position: absolute;
	content: "";
	width: 0;
	height: 1px;
	background-color: currentColor;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
.m-link-primary:hover {
	color: #047e9f;
}
.m-link-primary:hover::before {
	width: 100%;
}

/* */
.m-reaction-dropdown {
	top: 0;
	position: absolute;
	border-radius: 6.25rem;
	height: 0;
	display: flex;
	align-items: center;
	padding-inline: 1rem;
	border-top: 1px solid rgba(var(--m-primary-rgb),0.125);
	box-shadow: 0 .25rem .375rem rgba(var(--m-primary-rgb),0.125);
	opacity: 0;
	overflow: hidden;
	visibility: hidden;
	pointer-events: none;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	-webkit-transform: translateY(100%) scale(1);
	transform: translateY(100%) scale(1);
	background-color: var(--m-light);
}
.m-reaction-dropdown-list {
	margin: 0;
	display: flex;
	column-gap: 1rem;
	align-items: center;
	list-style: none;
	justify-content: space-around;
}
.m-reaction-dropdown-item {
	margin: 0;
	opacity: 0;
	visibility: hidden;
	list-style: none;
 	transform-origin: center bottom 0;
	-webkit-transition: all .6s ease;
	transition: all .6s ease;
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
	pointer-events: none;
}
.m-reaction-dropdown-item:nth-of-type(1) {
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
	-webkit-transform: translateY(120%) scale(1);
	transform: translateY(120%) scale(1);
}
.m-reaction-dropdown-item:nth-of-type(2) {
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s;
	-webkit-transform: translateY(110%) scale(1);
	transform: translateY(110%) scale(1);
}
.m-reaction-dropdown-item:nth-of-type(3) {
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
	-webkit-transform: translateY(100%) scale(1);
	transform: translateY(100%) scale(1);
}
.m-reaction-dropdown-item:nth-of-type(4) {
	-webkit-transition-delay: 0.4s;
	transition-delay: 0.4s;
	-webkit-transform: translateY(90%) scale(1);
	transform: translateY(90%) scale(1);
}
.m-reaction-dropdown-item:nth-of-type(5) {
	-webkit-transition-delay: 0.5s;
	transition-delay: 0.5s;
	-webkit-transform: translateY(80%) scale(1);
	transform: translateY(80%) scale(1);
}
.m-reaction-dropdown-item:nth-of-type(6) {
	-webkit-transition-delay: 0.6s;
	transition-delay: 0.6s;
	-webkit-transform: translateY(70%) scale(1);
	transform: translateY(70%) scale(1);
}
.m-reaction-button {
	width: 2rem;
	height: 2rem;
	flex-shrink: 0;
	border: 0 none;
	cursor: pointer;
	background-color: transparent;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
.m-reaction-button .m-icon-32px {
	width: 2rem;
	height: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.875rem;
	line-height: 2rem;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
.m-reaction-button:hover .m-icon-32px {
	-webkit-transform: scale(1.25);
	transform: scale(1.25);
}
.m-reaction-dropdown.is-reaction-enabled {
	display: flex;
	opacity: 1;
	height: 3rem;
	visibility: visible;
	-webkit-transform: translateY(-3.25rem) scale(1);
	transform: translateY(-3.25rem) scale(1);
	pointer-events: all !important;
	overflow: unset !important;
}
.is-reaction-enabled .m-reaction-dropdown-item {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translateY(0%) scale(1);
	transform: translateY(0%) scale(1);
	pointer-events: all !important;
}

/* Button */
.m-button-outline {
	background-color: #0000;
	border: 1px solid #c0bdb8;
	border-radius: .75rem;
	color: #252525;
	justify-content: center;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
	font-family: var(--m-font);
}
.m-button {
	color: inherit;
	display: flex;
	font-size: 1rem;
	min-height: 3rem;
	font-weight: 700;
	padding-inline: 1.25rem;
	padding-block: .5rem;
	align-items: center;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	justify-content: center;
	font-family: var(--m-font);
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1) !important;
}
.m-secondary-button {
	background-color: #0000;
	border: 1px solid var(--m-border);
	text-decoration: none;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
}
.m-primary-button {
	color: var(--m-light);
	background-color: var(--m-theme);
	border: 1px solid rgba(0, 0, 0, 0.2);
	text-decoration: none;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2) !important;
}
.m-primary-button:hover,
.m-primary-button:focus,
.m-primary-button:active {
	color: var(--m-light);
	background-color: var(--m-theme-dark);
}

.m-default-button {
	color: var(--m-light);
	background-color: var(--m-default);
	border: 1px solid var(--m-border);
	text-decoration: none;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2) !important;
}
.m-default-button:hover,
.m-default-button:focus,
.m-default-button:active {
	color: var(--m-light);
	background-color: var(--m-default-dark);
}

.m-button-full,
.m-secondary-button-full {
	width: 100%;
}
.m-secondary-button-half {
	min-width: 150px;
}


.m-button-outline:hover, .m-secondary-button:hover,
.m-button-outline:focus, .m-secondary-button:focus,
.m-button-outline:active, .m-secondary-button:active {
	background-color: var(--m-offwhite);
}


/* Badge */
.m-badge {
	align-items: center;
	border: 1px solid var(--m-primary-rgb);
	border-radius: 624.9375rem;
	display: inline-flex;
	font-size: .875rem;
	font-weight: 700;
	line-height: 1.3;
	min-height: 1.875rem;
	padding-inline: .5rem;
}
.m-badge-success {
 	color: #02647E;
	background-color: #bce7f2;
}

/* Headings */
.m-donate-section {
	width: 100%;
	display: block;
	/*align-items: flex-start;
	grid-template-rows: auto;
	grid-template-columns: minmax(780px, auto) 1fr;*/
}

.section-heading {
	display: grid;
	gap: 0.75rem;
	margin-bottom: 1.125rem;
}
.section-heading h1 {
	color: var(--primary-color);
	font-size: calc(1.5rem + 8*(100vw - 375px)/777);
  	line-height: 1.2;
	font-weight: 900;
	text-wrap: balance;
}
.section-heading p {
	color: var(--primary-color);
	font-size: 1rem;
}


/* Summary */
.m-donate-summary {
	width: 100%;
	display: flex;
	flex-direction: column;
	/*max-width: 780px;
	padding-inline-end: 2.5rem;*/
	background-color: var(--m-light);
}
.m-donation-banner {
	width: 100%;
	position: relative;
}
.m-donation-banner-hero {
	width: 100%;
	height: 100%;
	display: block;
	overflow: hidden;
	border: 1 solid #c0bdb8;
	border-radius: .75rem;
	padding-top: 35% !important;
	position: relative;	
}
@media (max-width: 576.98px) {
	.m-donation-banner-hero {
		padding-top: 40% !important;
	}
}
@media screen and (min-width: 577px) and (max-width: 767.98px) {
	.m-donation-banner-hero {
		padding-top: 45% !important;
	}
}

.m-donation-banner-hero img {
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
}
.m-donation-meta {
    max-width: 780px;
	margin-block: 1rem;
    position: relative;
}

@media (max-width: 1099.98px) {
	.m-donation-meta,
	.m-donate-summary,
	.m-donate-sidebar,
	.m-donate-container {
		width: 100%;
		max-width: 780px;
		margin-inline: auto;
	}
	.m-donate-sidebar {
		margin-block-start: 2.5rem;
	}
}

.m-donation-protected {
	border-top: 1px solid var(--m-border);
	border-bottom: 1px solid var(--m-border);
}

.m-donation-description {
	width: 100%;
	/*max-width: 780px;*/
    position: relative;
	padding-block: 0.75rem;
}
.m-donation-support {
	padding-block: 1.75rem !important;
}
.m-donation-description .moreContent {
  overflow: hidden;
  max-height: 72px;
}
.m-donation-description .moreContent {
	-webkit-line-clamp: 3;
	display: -webkit-box;
 	-webkit-box-orient: vertical;
}
.m-donation-description .m-more-message {
	left: 0;
	right: 0;
	bottom: 0;
	height: 60px;
	opacity: 1;
	visibility: visible;
	position: absolute;
	pointer-events: none;
	transition: all 100ms ease-in-out;
	background: linear-gradient(transparent 0, #ffffff 100%);
}

/*.m-donation-description *:not(.m-more-message):empty,*/
.m-donation-description p:empty,
.m-donation-description p > br,
.m-donation-description p > br:empty,
.m-donation-description p:has(> br) {
	display: none;
}

.m-donation-description p img,
.m-donation-description p audio, .m-donation-description p video, .m-donation-description p iframe,
.m-donation-description p:has(img),
.m-donation-description p:has(audio),
.m-donation-description p:has(video),
.m-donation-description p:has(iframe) {
	width: 100%;
	display: block !important;
}
.m-donation-description p img {
	width: auto !important;
	max-width: 100% !important;
	margin-inline: auto !important;
}

.m-text-button {
	border: 0 none;
	font-size: 0.938rem;
	align-items: center;
	appearance: none;
	background-color: #0000;
	color: var(--m-theme);
	cursor: pointer;
	display: inline-flex;
	text-decoration: none;
	border-bottom: 1px solid currentColor;
}
.moreContent.showMoreContent {
	display: block !important;
	overflow: unset !important;
	max-height: inherit !important;
}
.hasmoreContent .m-more-message {
	opacity: 1;
	visibility: visible;
}
.showMoreContent .m-more-message {
	display: none !important;
}

.m-donation-extra {
	width: 100%;
	margin-block-start: 2rem;
	padding-block: 1.5rem;
    max-width: 780px;
	border-top: 1px solid var(--m-border);
	border-bottom: 1px solid var(--m-border);
}
.m-donation-extra:not(:first-of-type) {
	margin-block-start: -1px;
}
.m-donation-extra:last-of-type {
	border-bottom: 0 none;
}
.m-donation-extra-wrap h2 {
	margin-bottom: 1.25rem;
}

.m-donation-members {
	column-gap: 1rem;
}
.m-donation-members-organizer {
	flex: 1 1 auto;
}
.m-donation-members-organizer-lockup {
	display: flex;
	column-gap: 1rem;
	align-items: flex-start;
}
.m-donation-members-organizer-lockup-detail {
	width: 100%;
}

.m-donation-description h1, .m-donation-description .h1,
.m-donation-description h2, .m-donation-description .h2,
.m-donation-description h3, .m-donation-description .h3,
.m-donation-description h4, .m-donation-description .h4,
.m-donation-description h5, .m-donation-description .h5,
.m-donation-description h6, .m-donation-description .h6 {
	margin-block-end: 0.938rem;
}
.m-donation-description .section-heading h1, .m-donation-description .section-heading .h1,
.m-donation-description .section-heading h2, .m-donation-description .section-heading .h2,
.m-donation-description .section-heading h3, .m-donation-description .section-heading .h3,
.m-donation-description .section-heading h4, .m-donation-description .section-heading .h4,
.m-donation-description .section-heading h5, .m-donation-description .section-heading .h5,
.m-donation-description .section-heading h6, .m-donation-description .section-heading .h6 {
	margin-block-end: 0;
}
.m-donation-description p,
.m-donation-description ul,
.m-donation-description ol {
	margin-block-end: 0.938rem;
}
.m-donation-description p,
.m-donation-description li {
	font-size: 1rem !important;
}
.m-donation-description ul li,
.m-donation-description ol li {
	margin-block-end: 0.313rem;
}
.m-donation-description p:last-of-type,
.m-donation-description p:only-of-type,
.m-donation-description ul li:last-of-type,
.m-donation-description ol li:last-of-type,
.m-donation-description ul li:only-of-type,
.m-donation-description ol li:only-of-type {
	margin-block-end: 0;
}
.m-donation-description ul,
.m-donation-description ol {
	padding-inline-start: 1.875rem;
}
.m-donation-description .list-unstyled {
	list-style: none;
	padding-inline-start: 1.063rem;
}
.m-donation-description .list-unstyled li {
	gap: .75rem;
	display: grid;
	align-items: flex-start;
	grid-template-columns: 1rem auto;
}
.m-donation-description .list-unstyled li::before {
	content: "";
	width: 16px;
	height: 16px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%2302647E' d='M5.9 15.6c-.4 0-.9-.2-1.1-.6l-4-5C.2 9.3.3 8.3 1 7.7c.3-.2.6-.4 1-.4s.8.2 1.1.4l2.7 2.5s.2.1.3.1c.1 0 .2 0 .3-.1L14.7.6c0-.1.2-.2.3-.2.1 0 .2 0 .3.1.2.2.2.4.1.6L7.1 14.8c-.3.4-.7.7-1.2.7Z'/%3E%3Cpath d='M15.1.9 6.9 14.6c-.2.3-.5.5-.9.5-.3 0-.6-.1-.8-.4l-4-5C.8 9.2.9 8.4 1.4 8c.2-.2.5-.3.7-.3.3 0 .6.1.8.3l2.7 2.5c.2.1.4.2.6.2.2 0 .4-.1.6-.3L15 .9m.1-.9c-.2 0-.5.1-.6.3L6.1 10 3.4 7.5C3 7.2 2.5 7 2 7c-1.2-.1-2 .9-2 2 0 .5.2.9.5 1.2l4 5c.4.5.9.7 1.5.7h.1c.6 0 1.2-.4 1.6-.9l8.2-13.6c.2-.3.1-.8-.2-1.1-.2-.3-.4-.3-.6-.3Z' fill='%2302647E'/%3E%3C/svg%3E");
	background-size: 14px 14px;
	background-repeat: no-repeat;
	background-position: 50%;
	position: relative;
	top: 6px;
}


/* Section */
.m-donation-section {
	padding-block: 4rem;
}
.m-bg-neutral-50 {
	background-color: #fbfaf8 !important;
}
.m-bg-neutral-100 {
	background-color: #e1e0de !important;
}
.m-grid-columns {
	display: grid;
	row-gap: 2rem;
	grid-column-gap: 1rem;
	grid-template-rows: auto;
}
.m-grid-columns-three {
	grid-template-columns: repeat(3,minmax(0,1fr));
}


/* Sidebar */
.m-donate-sidebar {
    width: 100%;
	margin-block-start: 2.125rem;
}
.m-donate-sidebar-wrap {
	/*top: 1rem;*/
	z-index: 15;
	/*overflow: hidden;
	position: sticky;*/
	background-color: var(--m-light);
	border-radius: .75rem;
    box-shadow: 0 .3125rem 1rem -.1875rem #0003;
	margin-bottom: 2.5rem;
	border: 1px solid #0001;
}
.m-donate-sidebar-header {
	display: flex;
	column-gap: 0.75rem;
	align-items: center;
}
.m-donate-sidebar-header-details {
	flex: 1 1 auto;
}
.m-donate-sidebar-header-progress {
	width: 80px;
	height: 80px;
}

.m-donate-sidebar-header,
.m-donate-sidebar-body,
.m-donate-sidebar-footer,
.m-donate-sidebar-body-content {
	width: 100%;
}

.m-donate-sidebar-body {
	flex: 1;
}
@media (min-width: 992px) {
	padding: 0.75rem;
}

.m-donate-sidebar-footer {
	flex: 0;
	display: flex;
	column-gap: 0.75rem;
	padding-block: 1.25rem;
	padding-inline: 1.5rem;
	background-color: var(--m-light);
	/* border-top: 1px solid var(--m-border); */
	border-bottom-left-radius: calc(.75rem - 1px);
	border-bottom-right-radius: calc(.75rem - 1px);
}
.m-donate-sidebar-footer .m-button {
	width: auto;
	max-width: 200px;
	flex: 1 1 auto;
}
.m-donate-sidebar-footer .m-button.m-button-full {
	font-size: 1.25rem;
	font-weight: 800;
	padding-block: 1.25rem;
	/* background-color: #02647E; */
	margin-inline: auto;
}
/*
.m-donate-sidebar-footer .m-button.m-button-full:hover,
.m-donate-sidebar-footer .m-button.m-button-full:focus,
.m-donate-sidebar-footer .m-button.m-button-full:active {
	background-color: #015369;
}
*/

.m-button-prev .m-icon {
	transform: rotate(180deg);
}

.m-donate-sidebar-body-header {
	/*top: 0;
	z-index: 14;
	position: sticky;*/
	z-index: 14;
	background-color: #fff;
	padding: 1.5rem 1.5rem;
	padding-block-end: 1.25rem;
	border-top-left-radius: calc(.75rem - 1px);
	border-top-right-radius: calc(.75rem - 1px);
}

.m-donate-sidebar-body-header.has-recurring {
	z-index: 10;
	margin-block-start: -1.25rem;
	padding-inline: 0;
	/*padding-block-start: 0;*/
}

/*
.m-donate-sidebar-body-content {
	overflow-y: auto;
	max-height: calc(100vh - 150px);
	padding-block: 1.5rem;
}
*/

.m-donate-sidebar-body-content.m-thankyou {
	height: 100vh;
	padding: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	max-height: calc(100vh - 65px);
}
.m-w-350px {
	width: 100%;
	max-width: 350px;
}

.m-donate-sidebar-body-content .m-donation-members-organizer {
	flex: 1;
	margin-block-end: 1rem;
}
.m-donate-sidebar-body-content .m-donation-members-organizer:only-of-type,
.m-donate-sidebar-body-content .m-donation-members-organizer:last-of-type {
	margin-block-end: 0;
}

/*
.m-donate-sidebar-body-content:has:not(.m-checkout-form) legend:first-of-type {
	background-color: #F00 !important;
}
.m-donate-sidebar-body-content > .donations > .m-checkout-form > .m-donate-sidebar-body-header {
	border-radius: 0 !important;
	padding-inline: 0 !important;
}
.m-donate-sidebar-body-content:has(.m-donate-sidebar-body-header) .m-donate-sidebar-body-header.header-donations {
	position: relative;
	padding-top: 0;
	z-index: unset;
}
*/

.m-donate-sidebar-body-content.has-no-pledge .m-checkout-form .m-donate-sidebar-body-header {
	margin-inline: -1.5rem;
}
.m-donate-sidebar-body-header.has-pledge {
	position: relative;
	padding-top: 0;
	z-index: unset;
	padding-inline: 0;
}


#greenLine {
	animation: missioBorder 1160ms linear normal forwards;
}
@keyframes missioBorder {
	0% {
		stroke-dasharray: 0, 226;
		animation-timing-function: cubic-bezier(0.30, 0.01, 0.00, 1.00);
	}
	100% {
		stroke-dasharray: 187.58, 226;
	}
}


/* Forms */
.m-form-set {
	display: flex;
	gap: 1rem;
}
.m-grid-col-1 {
    grid-template-columns: repeat(1, 1fr);
}
.m-grid-col-2 {
    grid-template-columns: repeat(2, 1fr);
}
.m-form-check {
	min-height: 1.5rem;
	margin-bottom: .125rem;
	display: inline-flex;
	place-items: first;
	cursor: pointer;
}
.m-form-check-label {
	cursor: pointer;
	display: inline-block;
}
.m-form-check-input {
	top: 0.188rem;
	width: 1.25rem;
	height: 1.25rem;
	flex-shrink: 0;
	position: relative;
	margin-inline-end: 0.5rem;
	vertical-align: top;
	background-color: #fff;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	border: 2px solid var(--m-border);
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-print-color-adjust: exact;
	color-adjust: exact;
	border-radius: 0.25rem;
	cursor: pointer;
}

.m-form-check-input[type="radio"] {
	border-radius: 50%;
}
.m-form-check-input:checked[type="radio"] {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-3 -3 6 6'%3e%3ccircle r='2' fill='%2302647E'/%3e%3c/svg%3e");
}
.m-form-check-input:checked[type="radio"] {
	background-color: var(--m-light);
	border: 2px solid var(--m-theme);
}
/*
.m-form-check-input:focus {
	box-shadow: 0 0 0 .625rem rgba(var(--m-theme-light-rgb), 0.5) !important;
}
*/

.m-form-check-input:checked[type="checkbox"] {
	background-color: var(--m-theme);
	border: 2px solid var(--m-theme);
}
.m-form-check-input:checked[type="checkbox"] {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23FFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}
/*
.m-form-check-input:checked + .m-form-check-label {
	color: var(--m-theme);
}
*/

/* Select */
.m-form-select, .refineText {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2345454d' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right .75rem center;
	background-size: 0.875rem auto;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	padding-inline-end: 1.875rem !important;
	font-family: var(--m-font) !important;
}

/* Switch */
.m-form-switch .m-form-check-input {
	width: 1.75rem;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
	background-position: left center;
	border-radius: 2rem;
	transition: background-position .15s ease-in-out;
}
.m-form-switch .m-form-check-input:checked {
	background-position: right center;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

fieldset, legend {
	margin: 0;
	padding: 0;
	border: 0 none;
}
.m-donation-list {
	width: 100%;
	display: grid;
	flex-wrap: wrap;
	gap: 0.5rem;
	/* grid-template-columns: repeat(2, 1fr); */
}
.m-donation-list-item {
	width: 100%;
	text-align: left;
	margin-bottom: 0;
	/*max-width: 100px;*/
}

/*
@media (max-width: 576.98px) {
	.m-donation-list-item {
		max-width: calc(33.3333% - 0.5rem);
	}
}
*/

.m-donation-list .m-other-amount {
	width: 100%;
	/*max-width: 200px;*/
}

.m-donation-list-item .m-button {
	gap: 0.5rem;
	height: 100%;
	min-height: 50px;
	flex-direction: row;
	justify-content: flex-start;
	padding-inline: .875rem;
}
.m-donation-list-item .m-button .m-fs-md {
	font-size: 1.25rem !important;
}
.m-donation-list-item .m-button p {
	margin: 0;
	color: #323232;
	text-align: left;
	line-height: 1.4;
}
.m-donation-list-item .m-button p:empty {
	display: none;
}
@media (max-width: 767.98px) {
	.m-donation-list-item .m-button {
		min-height: 40px;
		align-items: flex-start;
	}
	.m-donation-list-item .m-button p {
		font-size: 0.938rem !important;
		-webkit-line-clamp: 2 !important;
	}
	.m-donation-list-item .m-button p,
	.m-donation-list-item .m-button div {
		font-size: 0.938rem !important;
	}
	.m-donation-list-item .m-button div {
		top: 0.063rem;
		position: relative;
	}
}
.m-donation-list-item .m-button.is-selected {
	color: var(--m-dark);
	background-color: #eeeeee;
	border-color: rgba(0,0,0,0.2);
	/* background-color: var(--m-theme-light); */
}
.m-donation-list-item .m-button.is-selected,
.m-donation-list-item .m-button.is-selected p {
	color: var(--m-dark);
}
.m-donation-list-item .m-button .m-fw-normal {
	font-weight: 400 !important;
}

.m-other-amount {
	width: 100%;
	display: flex;
	gap: 0.5rem;
	position: relative;
	align-items: center;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
.m-other-amount:hover,
.m-other-amount:focus-within {
	border-color: var(--m-theme) !important;
}
.m-other-amount .m-currency {
	left: 0.875rem;
	top: 50%;
	z-index: 2;
	height: 2rem;
	font-size: 1.25rem;
	font-weight: 900;
	position: absolute;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.m-other-amount .m-currency small {
	color: #6f6f6f;
	font-weight: 700;
	font-size: 0.75rem;
	line-height: 1.1;
}
.m-form-floating {
	width: 100%;
	position: relative;
}
.m-form-floating .formTextbox,
.m-form-floating .m-form-control {
	width: 100%;
	color: var(--m-dark);
	height: calc(3.25rem + 2px);
	line-height: 1.25;
	padding: 0.675rem;
	background-color: var(--m-light);
	background-clip: padding-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 1px solid var(--m-border);
	border-radius: .5rem;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
	font-size: 0.938rem;
	font-weight: 400;
	font-family: var(--m-font) !important;
}
.m-form-floating .formTextbox:focus,
.m-form-floating .m-form-control:focus {
	border: 1px solid #015369;
	outline-width: 1px !important;
	outline-style: solid !important;
	outline-color: #015369 !important;
}
.m-form-floating:has .formError .formTextbox,
.m-form-floating:has .formError .m-form-control,
.m-form-control.is-invalid,
.was-validated .m-form-control:invalid {
	border-color: var(--m-danger);
	border: 1px solid var(--m-danger);
	outline-width: 1px !important;
	outline-style: solid !important;
	outline-color: var(--m-danger) !important;
}
.m-form-floating .formTextbox::placeholder,
.m-form-floating .m-form-control::placeholder {
	opacity: 0;
}
.m-form-floating label {
	top: 2px;
	left: 0.675rem;
	height: 100%;
	color: #6f6f6f;
	font-size: 0.938rem;
	position: absolute;
	pointer-events: none;
	border: 1px solid transparent;
	transform-origin: 0 0;
	padding: 0.75rem 0;
	background-color: transparent;
	-webkit-transition: opacity .1s ease-in-out,transform .1s ease-in-out;
	transition: opacity .1s ease-in-out,transform .1s ease-in-out;
}
.m-form-floating .formTextbox:focus,
.m-form-floating .formTextbox:not(:placeholder-shown),

.m-form-floating > .m-form-control:focus,
.m-form-floating > .m-form-control:not(:placeholder-shown) {
	padding-top: 1.625rem;
	padding-bottom: .625rem;
}

.m-form-floating > .m-form-control:focus ~ label,
.m-form-floating > .m-form-control:not(:placeholder-shown) ~ label,
.m-form-floating > .m-form-select ~ label,

.m-form-floating > .m-form-control:focus ~ label,
.m-form-floating > .m-form-control:not(:placeholder-shown) ~ label,
.m-form-floating > .m-form-select ~ label {
	opacity: .65;
	-webkit-transform: scale(.85) translateY(-.675rem) translateX(0);
	transform: scale(.85) translateY(-.675rem) translateX(0);
}
.m-currency-badge {
	top: 50%;
	right: 1rem;
	color: var(--m-dark);
	position: absolute;
	align-items: center;
	border-radius: 3.5rem;
	display: inline-flex;
	font-size: 2.75rem;
	font-weight: 900;
	line-height: 1;
	min-height: 1rem;
	padding: .375rem .25rem;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	display: none !important;
	opacity: 0 !important;
}

.m-other-amount .m-form-floating .m-form-control {
	height: calc(4rem + 2px);
	padding-inline-start: 3.25rem;
	padding-inline-end: 0.75rem;
	font-size: 1.125rem;
	color: var(--m-dark);
	font-weight: 400;
}
.m-other-amount .m-form-floating label {
	left: 3.25rem;
	padding: calc(1.25rem - 2px) 0 1.25rem 0;
}
.m-other-amount .m-form-floating > .m-form-control:focus ~ label,
.m-other-amount .m-form-floating > .m-form-control:not(:placeholder-shown) ~ label,
.m-other-amount .m-form-floating > .m-form-select ~ label {
	opacity: .65;
	-webkit-transform: scale(.85) translateY(-.75rem) translateX(0);
	transform: scale(.85) translateY(-.75rem) translateX(0);
}

/* Switches */
.m-switch-wrapper {
	width: 100%;
	max-width: 350px;
	padding: 0.25rem;
	position: relative;
	display: inline-flex;
	border-radius: .5rem;
	margin-block-end: 1rem;
	background-color: var(--m-light);
	border: 1px solid var(--m-border);
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1) !important;
}
.m-switch-wrapper [type="radio"] {
	left: -9999px;
	position: absolute;
}
.m-switch-wrapper [type="radio"]:checked#onetime ~ label[for="onetime"],
.m-switch-wrapper [type="radio"]:checked#recurring ~ label[for="recurring"] {
	color: var(--m-theme-dark);
}
.m-switch-wrapper [type="radio"]:checked#onetime ~ label[for="onetime"]:hover,
.m-switch-wrapper [type="radio"]:checked#recurring ~ label[for="recurring"]:hover {
	background: transparent;
}
.m-switch-wrapper [type="radio"]:checked#onetime + label[for="recurring"] ~ .highlighter {
	-webkit-transform: none;
	-moz-transform: none;
	transform: none;
}
.m-switch-wrapper [type="radio"]:checked#recurring + label[for="onetime"] ~ .highlighter {
	transform: translateX(100%);
}
.m-switch-wrapper label {
	width: 50%;
	font-size: 1rem;
	font-weight: 600;
	z-index: 1;
	line-height: 44px;
	min-width: 100px;
	cursor: pointer;
	border-radius: .5rem;
	text-align: center;
	-webkit-transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}
.m-switch-wrapper label:hover {
	color: var(--m-theme);
}
.m-switch-wrapper .highlighter {
	top: 0.25rem;
	left: 0.25rem;
	position: absolute;
	border-radius: .5rem;
	width: calc(50% - 0.25rem);
	height: calc(100% - 0.5rem);
	background-color: var(--m-theme-light);
	transition: transform 0.25s ease-in-out;
}


/* Right Align */
/*
.m-currency-badge {
	top: 57.5%;
	right: 1rem;
	position: absolute;
	align-items: center;
	border-radius: 3.5rem;
	display: inline-flex;
	font-size: 1.75rem;
	font-weight: 900;
	line-height: 1;
	min-height: 1rem;
	width: 50px;
	padding: .375rem .25rem;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.m-other-amount .m-form-floating .m-form-control {
	height: calc(4rem + 2px);
	padding-inline-start: 3.25rem;
	padding-inline-end: 4.125rem;
	font-size: 1.75rem;
	line-height: 1;
	font-weight: 900;
	text-align: right;
	padding-block-end: 1rem;
}
.m-other-amount .m-form-floating label {
	left: auto;
	right: 4.125rem;
	padding: calc(1.25rem - 2px) 0 1.25rem 0;
}
.m-other-amount .m-form-floating > .m-form-control:focus ~ label,
.m-other-amount .m-form-floating > .m-form-control:not(:placeholder-shown) ~ label,
.m-other-amount .m-form-floating > .m-form-select ~ label {
	opacity: .65;
	-webkit-transform: scale(.85) translateY(-.875rem) translateX(1rem);
	transform: scale(.85) translateY(-.875rem) translateX(1rem);
}
*/

.m-form-text {
	width: 100%;
	font-size: 0.75rem;
	line-height: 1.5;
	display: inline-block;
	margin-block-start: 0.313rem;
}
.m-text-danger {
	color: var(--m-danger);
}

/* Errors */
.m-form-control.is-invalid,
.was-validated .m-form-control:invalid {
	border-color: #dc3545;
	padding-right: calc(1.5em + .75rem);
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right calc(.375em + .1875rem) center;
	background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}


.m-payment {
	width: 100%;
}
.m-payment-wrap {
	width: 100%;
	padding-inline: 1.5rem;
}

.m-payment-form {
	padding: 1.125rem;
	border: 1px solid var(--m-border);
	border-radius: 0.75rem;
}
.m-checkout-form {
	width: 100%;
	padding-inline: 1.5rem;
}
.m-form-group {
	width: 100%;
	margin-block-end: 1rem;
}
.m-form-group.m-mb-0 {
	margin-block-end: 0;
}

.m-payment-wrap .StripeElement {
	margin: 1px;
	border: 1px solid var(--m-border);
	border-radius: .5rem;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
	font-size: 0.938rem;
	font-weight: 400;
	padding: 0.125rem 0.75rem;
	background-color: var(--m-light);
	background-clip: padding-box;
}
.m-payment-wrap .StripeElement.StripeElement--focus,
.m-payment-wrap .StripeElement.StripeElement--invalid {
	outline-width: 1px !important;
	outline-style: solid !important;
}
.m-payment-wrap .StripeElement.StripeElement--focus {
	border: 1px solid var(--m-theme);
	outline-color: var(--m-theme) !important;
}
.m-payment-wrap .StripeElement.StripeElement--invalid {
	border: 1px solid var(--m-danger);
	outline-color: var(--m-danger) !important;
}


/* Date Picker */
.ui-datepicker {
	width: 280px;
	padding: 0.375rem;
	background: var(--m-light);
	background-color: var(--m-light);
	border: 1px solid #c0bdb8;
	border-radius: 0.5rem;
	box-shadow: 0 .3125rem 1rem -.1875rem #0003;
	opacity: 0;
}
.ui-datepicker.active {
 	opacity: 1;
}
.ui-datepicker-header {
	height: 40px;
	padding: 0.25rem;
	margin-bottom: 0.25rem;
	font-family: var(--m-font);
}
.ui-datepicker-header .ui-datepicker-title {
	line-height: 34px;
	text-align: center;
	font-family: var(--m-font);
}
.ui-datepicker-month,
.ui-datepicker-year {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
	border: 0 none;
	background: transparent;
	background-color: transparent;
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--m-primary);
	margin: 0 0.125rem;
	font-family: var(--m-font);
}
.ui-datepicker-prev, .ui-datepicker-next {
	display: flex;
	position: relative;
	place-items: center;
	width: 2rem;
	height: 2rem;
	cursor: pointer;
	text-indent: 9999px;
	overflow: hidden;
	border-radius: 0.25rem;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
}
.ui-datepicker-prev > span, .ui-datepicker-next > span {
	width: 2rem;
	height: 2rem;
	max-width: 2rem;
	max-height: 2rem;
	border-radius: 0.25rem;
}
.ui-datepicker-prev:hover, .ui-datepicker-next:hover {
	color: var(--m-light);
	background: var(--m-theme);
	background-color: var(--m-theme);
}
.ui-datepicker-prev {
 	float: left;
}
.ui-datepicker-prev:after {
	transform: rotate(45deg);
	margin-left: 0.938rem;
}
.ui-datepicker-next {
 	float: right;
}
.ui-datepicker-next::after {
	transform: rotate(-135deg);
	margin-left: 0.813rem;
}
.ui-datepicker-prev::after,
.ui-datepicker-next::after {
	content: "";
	position: absolute;
	display: block;
	width: 0.5rem;
	height: 0.5rem;
	border-left: 2px solid #81848B;
	border-bottom: 2px solid #81848B;
	pointer-events: none;
}
.ui-datepicker-prev::after,
.ui-datepicker-next::after {
	left: -2px;
}
.ui-datepicker-prev:hover::after, .ui-datepicker-next:hover::after {
	border-left: 2px solid var(--m-light);
	border-bottom: 2px solid var(--m-light);
}
.ui-datepicker-calendar {
	width: 100%;
	text-align: center;
}
.ui-datepicker-calendar thead tr th {
	width: 2.5rem;
	padding-bottom: 0.25rem;
}
.ui-datepicker-calendar thead tr th span {
	padding: 0;
	width: 100%;
	color: #8D9298;
	display: block;
	text-align: center;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
}
.ui-datepicker-calendar tbody tr td {
	padding-right: 3px;
	padding-bottom: 3px;
}
.ui-datepicker-calendar tbody tr td:first-of-type {
	padding-left: 3px;
}
.ui-state-default {
	display: block;
	text-decoration: none;
	color: var(--m-primary);
	height: 2rem;
	line-height: 2rem;
	border-radius: 0.25rem;
	font-size: 0.875rem;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
}
.ui-state-default:hover {
	text-decoration: none;
	color: var(--m-light);
	background: var(--m-scrollBar);
	background-color: var(--m-scrollBar);
}
.ui-state-highlight {
	font-weight: 700;
	color: var(--m-theme);
	background: var(--m-theme-light);
	background-color: var(--m-theme-light);
}
.ui-state-highlight:hover {
	font-weight: 700;
	color: var(--m-light);
	background: var(--m-theme-dark);
	background-color: var(--m-theme-dark);
}
.ui-state-active:not(.ui-state-highlight) {
	color: var(--m-light);
	background: var(--m-theme);
	background-color: var(--m-theme);
}
.ui-datepicker-unselectable .ui-state-default {
	color: rgba(0, 0, 0, 0.2);
	pointer-events: none;
}


/* Accordion */
.m-accordion {
	width: 100%;
	overflow: hidden;
	border-radius: .25rem;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
}
.m-accordion-title {
	cursor: pointer;
	background-color: var(--m-light);
	position: relative;
	-webkit-transition: background-color 0.3s ease;
	-moz-transition: background-color 0.3s ease;
	transition: background-color 0.3s ease;
	padding: 1rem 1.25rem;
	font-weight: 700 !important;
	padding-inline-end: 3rem;
}
.m-accordion-title .m-heading-4 {
	font-size: clamp(1.0625rem, 1.0313rem + 0.125vw, 1.125rem) !important;
}
.m-accordion-title:hover {
	background-color: #f1f2f4;
}
.m-accordion-title.is-active {
	background-color: var(--m-theme-light);
}
.m-accordion-title::after {
	top: 1.125rem;
	content: "";
	right: 1.25rem;
	position: absolute;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	width: 1.25rem;
	height: 1.25rem;
	display: grid;
	place-items: center;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'%3E%3C/line%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3C/svg%3E");
	background-size: 1.25rem auto;
	background-repeat: no-repeat;
	background-position: center center;
}
.m-accordion-title.is-active::after {
	content: "";
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2302647E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'%3E%3C/line%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3C/svg%3E");
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}
.m-accordion-item {
	width: 100%;
	border: 1px solid rgba(0,0,0,.125);
}
.m-accordion-item:first-of-type {
	border-top-left-radius: .25rem;
	border-top-right-radius: .25rem;
}
.m-accordion-item:not(:first-of-type) {
	border-top: 0;
}
.m-accordion-item:last-of-type {
	border-bottom-left-radius: .25rem;
	border-bottom-right-radius: .25rem;
}
.m-accordion-item:first-of-type .m-accordion-title {
	border-top-left-radius: calc(.25rem - 1px);
	border-top-right-radius: calc(.25rem - 1px);
}
.m-accordion-item:last-of-type .m-accordion-title {
	border-bottom-left-radius: calc(.25rem - 1px);
	border-bottom-right-radius: calc(.25rem - 1px);
}
.m-accordion-item:last-of-type .m-accordion-title.is-active {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.m-accordion-title.is-active h4,
.m-accordion-title.is-active::after {
	color: var(--m-theme);
}
.m-accordion-content {
	display: none;
	padding: 1.25rem;
	border-top: none;
	background-color: var(--m-light);
}
.m-accordion-item:last-of-type .m-accordion-content {
	border-bottom-left-radius: calc(.25rem - 1px);
	border-bottom-right-radius: calc(.25rem - 1px);
}
.m-accordion-content ol {
	padding-left: 1rem !important;
	list-style: decimal !important;
}
.m-accordion-content p a {
	color: var(--m-theme);
}


/* Mobile Sticky */
.sticky-donate {
	z-index: 4;
	inset: auto 0 0 0;
	width: 100%;
	position: fixed;
	padding: 15px;
	background-color: var(--m-light);
	box-shadow: 0 .3125rem 1rem .1875rem #0003;
  	border-top: 1px solid #0001;
	display: grid;
	place-items: center;
}
.sticky-donate .m-button-full {
	max-width: 450px;
}


/* Gallery Slider */
.m-slider-wrap {
	width: 100%;
	/*max-width: 750px;*/
}
.slider-container {
	width: 100%;
	border-radius: 0.5rem;
}
.slider-container .slider__item {
	position: relative;
	border-radius: 0.5rem;
}
.slider-container .slider__item::before {
	content: "";
	display: block;
	padding-bottom: 35%;
}
@media (max-width: 576.98px) {
	.slider-container .slider__item::before {
		padding-bottom: 45%;
	}
}
@media screen and (min-width: 577px) and (max-width: 767.98px) {
	.slider-container .slider__item::before {
		padding-bottom: 45% !important;
	}
}

.slider-container .slider__caption {
	width: 100%;
	left: 1.875rem;
	right: 1.875rem;
	padding: 0.938rem;
	bottom: 2.5rem;
	border-radius: 0.5rem;
	max-width: calc(100% - 3.75rem);
}
.slider-container .slider__caption:empty {
	display: none;
}
.slider-container .slider-nav {
	z-index: 1;
	bottom: 0.375rem;
}
.slider-container .slider__switch {
	border-radius: 0.375rem;
}
.slider-container .slider__item img {
	inset: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	object-fit: cover;
  	aspect-ratio: 1;
}


/* Modal */
.m-modal {
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	position: fixed;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	transform: scale(1.1);
	background-color: rgba(0, 0, 0, 0.5);
	transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
}
.m-modal-content {
	top: 50%;
	left: 50%;
	width: 780px;
	position: absolute;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background-color: var(--m-light);
	padding: 2rem 2.5rem;
	padding-block-start: 3rem;
	border-radius: 0.5rem;
}
.m-close-button {
	top: 1.25rem;
	right: 1.25rem;
	position: absolute;
	width: 2rem;
	height: 2rem;
	font-size: 1rem;
	line-height: 1;
	padding: 0.25rem;
	text-align: center;
	cursor: pointer;
	display: flex;
	place-items: center;
	border-radius: 0.25rem;
	background-color: var(--m-offwhite);
	color: var(--m-neutral);
	-webkit-transition: color 0.15s ease-in-out;
	-moz-transition: color 0.15s ease-in-out;
	transition: color 0.15s ease-in-out;
}
.m-close-button:hover {
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
}
.m-close-button:hover svg {
	color: var(--m-danger);
}
.m-show-modal {
	opacity: 1;
	visibility: visible;
	transform: scale(1.0);
	transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}
.m-modal-body {
	width: 100%;
	padding-inline: 1.25rem;
}

/* Loader */
.m-loading {
	position: relative;
}
.m-loading::before {
	content: "";
	position: relative;
	display: inline-block;
	vertical-align: -.125em;
	border: .25em solid currentColor;
	border-right-color: transparent;
	border-radius: 50%;
	-webkit-animation: .75s linear infinite spinner-border;
	animation: .75s linear infinite spinner-border;
	width: 1rem;
	height: 1rem;
	border-width: .2em;
}
.m-loading::before {
	margin-inline-end: 0.375rem;
}
/*
.m-loading::after {
	margin-inline-start: 0.375rem;
}
*/

@keyframes spinner-border {
	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}



/* Responsive */
@media screen and (max-width: 576.98px) {
	.ui-datepicker {
		width: 100%;
		max-width: 325px;
	}
	.m-grid-col-2 {
		grid-template-columns: repeat(1, 1fr);
	}
	.m-payment-wrap {
		padding-inline: 0;
	}
	.m-payment-form {
		border: 0 none;
		border-top: 1px solid var(--m-border);
		border-radius: 0;
	}
	.m-checkout-form,
	.m-payment-wrap-inner,
	.m-donate-sidebar-footer,
	.m-donate-sidebar-body-header {
		padding-inline: 1.125rem;
	}
}
@media (max-width: 1099.98px) {
	.m-donate-section {
		display: block;
		grid-template-rows: auto;
		grid-template-columns: 1fr;
	}
	.m-donate-summary {
		padding-inline-end: 0;
	}
	.m-grid-columns-three {
		grid-template-columns: repeat(1,minmax(0,1fr));
  	}
	.m-donation-members-organizer {
		margin-block-end: 1rem;
	}
	.m-donation-members-organizer:only-of-type,
	.m-donation-members-organizer:last-of-type {
		margin-block-end: 0;
	}
}

@media (min-width: 1199.98px) {
	.m-donate-section {
		padding-block-end: 2.5rem;	
	}
}


body.mobile-view {
	padding-block-end: 4.25rem !important;
}

.desktop-view .sticky-donate {
	opacity: 0 !important;
	display: none !important;
	visibility: hidden !important;
}

.mobile-view.is-scrolled .sticky-donate,
.mobile-view.donate-clicked.is-scrolled .sticky-donate {
	opacity: 0 !important;
	display: none !important;
	visibility: hidden !important;
}

.mobile-view.donate-clicked .sticky-donate {
	opacity: 1 !important;
	display: grid !important;
	visibility: visible !important;
}

/* Flyout Menu */
.m-flyout-sidebar {
    top: 0;
    z-index: 1000;
	position: fixed;
    overflow: hidden;
    background-color: var(--m-light);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	right: -400px;
    width: 400px;
    height: 100%;
	border-left: 1px solid #0002;
	box-shadow: 0 .3125rem 1rem -.1875rem #0003;
}
.m-flyout-sidebar-wrap {
	width: 100%;
	overflow-y: auto;
	padding: 1.25rem;
	max-height: calc(100vh - 20px);
}
.m-flyout-overlay {
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    position: fixed;
    background: rgba(0, 0, 0, 0);
	/*backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);*/
	display: none;
}
body.m-faq-enabled {
	overflow: hidden;
}
body.m-faq-enabled .m-flyout-sidebar {
    right: 0;
}
/*
body.m-faq-enabled .m-flyout-overlay {
	display: block;
}
*/
.m-button-close {
	color: #666;
	width: 1.75rem;
	height: 1.75rem;
	font-size: 1.25rem !important;
	border-radius: 0.25rem;
	padding: 0.125rem !important;
	background-color: transparent !important;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
	border: 0 none;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	transform: scale(0);
	display: flex;
	align-items: center;
	justify-content: center;
}
.m-flyout-sidebar .m-button-close {
	top: 1.25rem;
	right: 1.25rem;
	position: absolute;
}
.m-button-close svg {
	width: 1.125rem;
	height: 1.125rem;
	display: block;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
.m-button-close:hover {
	color: #323338;
 	background-color: rgba(0, 0, 0, 0.1) !important;
}
.m-button-close:hover svg {
	-webkit-transform: scale(1.15);
	-moz-transform: scale(1.15);
	transform: scale(1.15);
}
body.m-faq-enabled .m-button-close {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	transform: scale(1);
}

.m-sticky-faq {
	right: 0;
	top: 100px;
	width: 35px;
	height: 84px;
	position: fixed;
	background-color: var(--m-primary);
	border-radius: 0.375rem 0 0 0.375rem;
	box-shadow: 0 .3125rem 1rem -.1875rem #0003;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.m-sticky-faq span {
	border: 0 none;
	cursor: pointer;
	border-radius: 0;
	color: var(--m-light);
	background-color: transparent;
}
.m-sticky-faq span,
.m-sticky-faq span svg {
	width: 15px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--m-light);
}





/* JsSearchbox */
.searchBoxElement{
	margin: 0;
	z-index: 12;
	position: absolute;
	max-height: 200px;
	overflow-x: hidden;
	overflow-y: auto;
	line-height: 20px;
	list-style: none;
	padding: 0.375rem;
	background: var(--m-light);
	background-color: var(--m-light);
	border: 1px solid #c0bdb8;
	border-radius: 0.5rem;
	box-shadow: 0 .3125rem 1rem -.1875rem #0003;
}
.searchBoxElement li {
	width: 100%;
	list-style: none;
	margin-bottom: 0.125rem;
}
.searchBoxElement li > span {
	width: 100%;
	display: block;
	color: var(--m-dark);
	cursor: pointer;
	list-style: none;
	font-size: 0.938rem;
	padding: 0.5rem 0.75rem;
	border-radius: 0.25rem;
	background: var(--m-light);
	background-color: var(--m-light);
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
}
.searchBoxElement li:hover > span,
.searchBoxElement li:focus > span,
.searchBoxElement li:active > span {
	color: var(--m-dark);
	background-color: var(--m-offwhite);
}
.searchBoxElement li.selected > span {
	color: var(--m-light);
	background-color: #015369;
}
.searchBoxElement li > span:empty {
	display: none;
}

/*
@media screen and (min-width: 576px) and (max-width: 640.98px) {
	.m-donation-list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (min-width: 1100px) and (max-width: 1199.98px) {
	.m-donate-section {
		grid-template-columns: minmax(680px, auto) 1fr;
	}
	.m-donate-summary {
		max-width: 680px;
	}
}
*/

#RecurringDonation {
	max-width: 350px;
}

@media (max-width: 767px) {
	.mobile-flex-col {
        flex-direction: column !important;
    }
}

.m-captcha-block{margin-block-start:10px}
.m-captcha-block > span img{width: auto; flex-shrink: 0; height: 36px; max-height: 36px;}
.m-captcha-block > span img{object-fit: cover; border-radius: 0.25rem !important}
.m-captcha-block .m-form-control{height: 36px !important; max-height: 36px !important; max-width: 120px !important; font-size: 0.938rem; padding: 0.25rem 0.5rem !important; border: 1px solid var(--m-border); border-radius: .5rem; box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);}
.m-captcha-block > .btn{width: 36px !important; min-width: 36px; height: 36px !important; flex-shrink: 0; color: #fff !important; display: inline-flex; align-items: center; justify-content: center; padding: 0!important; border: 0 none !important; position: relative !important;  border-radius: 0.25rem !important; background-color: var(--m-danger) !important}
.m-captcha-block .m-form-control:focus {
	border: 1px solid var(--m-theme);
	outline-width: 1px !important;
	outline-style: solid !important;
	outline-color: var(--m-theme) !important;
}

.m-preloader-container {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	position: fixed;
	width: 100%;
	z-index: 9999;
	padding-block: 225px;
	background-color: #fff;
	min-height: calc(100vh - 72px);
}
.m-spinner-border {
	width: 2rem;
	height: 2rem;
	display: inline-block;
	vertical-align: -0.125em;
	border: 0.25em solid #02647e;
	border-right-color: #02647e;
	border-right-color: transparent;
	border-radius: 50%;
	animation: 0.75s linear infinite spinner-border;
}
@media (max-width: 767.98px) {
	.m-preloader-container {
		padding-block: 125px;
	}
}

@keyframes spinner-border {
	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.m-row.w-100 {
	width: calc(100% + 10px);
}
.m-payment-wrap .m-col-lg-full {
	width: 100%;
}

@media (max-width: 767.98px) {
	.m-row.m-payment-wrap {
		width: 100% !important;
		margin-inline: 0 !important;
	}
	.m-payment-wrap .m-col-lg-full {
		padding-inline: 1.125rem !important;
	}
}
@media screen and (min-width: 576px) and (max-width: 767.98px) {
	.m-row.m-payment-wrap {
		padding-inline: 0.375rem !important;
	}
}

/* Donation Page */
@media (min-width: 768px) {
	.m-checkout-form .m-other-amount .m-form-floating {
		width: 100%;
		max-width: 250px !important;
	}
}


/*
@media screen and (min-width: 992px) and (max-width: 1149.98px) {
	.m-col-lg-full {
		width: 100%;
	}
}
*/
