@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: #f7f7f7;
	--m-offwhite-rgb: 247, 247, 247;
	--m-offwhite-h: #f4f5f6;
	--m-offwhite-rgb-h: 244, 245, 246;
	--m-offwhite-2: #e9e9e9;
	--m-offwhite-2-rgb: 233, 233, 233;
	--m-border: #d1d4db;
	--m-border-rgb: 209, 212, 219;
	--m-font: "Lato", sans-serif;
	--m-theme: #02647E;
	--m-theme-rgb: 2, 100, 126;
	--m-theme-light: #def2f8;
	--m-theme-light-rgb: 222, 242, 248;
	--m-theme-light2: #ffecdf;
	--m-theme-dark: #003c50;
	--m-theme-dark-rgb: 1, 60, 80;
	--m-default: #36287e;
	--m-default-dark: #251a5e;
	--m-danger: #dc3545;
	--m-scrollBar: #45454d;
	--m-neutral: #4E5360;
	--base-color: #FFC107;
	
	--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);
	
	--m-shadow: 0 10px 25px 0 rgba(32, 42, 52, 0.1);
	--m-transition: all 0.5s ease;
}

*, *::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) !important;
}
body {
	margin: 0;
	color: inherit;
	line-height: 1.5rem;
	background-color: #fff;
	color: hsl(255 12% 18%);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
	font-size: clamp(1rem, 0.9219rem + 0.25vw, 1.0625rem);
	line-height: 1.5rem;
	font-family: var(--m-font) !important;
}

p, li {
	color: var(--primary-color);
	overflow-wrap: break-word;
 	word-break: break-word;
	margin-block-end: 1.25rem;
	font-size: clamp(1rem, 0.9219rem + 0.25vw, 1.0625rem);
	line-height: 1.5rem;
	font-family: var(--m-font) !important;
}
.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: -10px;
}
.m-row > * {
	flex-shrink: 0;
	width: 100%;
	max-width: 100%;
	padding-inline: 10px;
}

/* 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%;
	}
}
@media screen and (min-width: 577px) and (max-width: 767.98px) {
	.mobile-half-col {
		width: 100%;
		max-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-p2p-container {
	width: 100%;
	margin-inline: auto;
}
@media (min-width: 1280px) {
	.m-p2p-container {
		max-width: 1320px;
		padding-inline: 15px;
	}
}

@media (max-width: 767.98px) {
	.m-p2p-container {
		padding-inline: 1.25rem;	
	}
}

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 */
.m-text-start {
	text-align: left;
}
.m-text-center {
	text-align: center;
}
.m-text-end {
	text-align: right;
}
.m-text-upper {
	text-transform: uppercase;
}

.m-text-primary {
	color: var(--m-theme) !important;
}

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

.has-no-shadow {
	box-shadow: none !important;
}

.form-group.m-mb-3 {
	margin-block-end: 1rem !important;
}
.form-group .control-label {
	cursor: pointer;
	font-size: 0.938rem;
}

.w-100, .w-full {
	width: 100%;
}

.m-ml-auto {
	margin-left: auto !important;
}
.m-mr-auto {
	margin-right: auto !important;
}
.m-mx-auto {
	margin-inline: auto !important;
}

.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-justify-start {
	justify-content: flex-start !important;
}
.m-justify-center {
	justify-content: center !important;
}
.m-justify-end {
	justify-content: flex-end !important;
}
.m-justify-between {
	justify-content: space-between !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;
}
.m-mb-40 {
	margin-block-end: 2.5rem !important;
}
.m-mb-50 {
	margin-block-end: 3.25rem !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-pb-60 {
	padding-block-end: 3.75rem !important;
}

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

/* Headers */
.btn, .h1, .h2, .h3, .h4, .h5, .h6, .header-nav .nav > li > a, h1, h2, h3, h4, h5, h6 {
 	font-family: var(--m-font) !important;
}
.m-title,
.m-heading-1, h1, .h1,
.m-heading-2, h1, .h2,
.m-heading-3, h1, .h3,
.m-heading-4, h1, .h4,
.m-heading-5, h1, .h5,
.m-heading-6, h1, .h6 {
	font-weight: 800 !important;
	font-family: var(--m-font) !important;
}
.m-title {
	font-size: clamp(2rem, 0.5938rem + 4.5vw, 3.125rem);
	letter-spacing: -.02em;
	line-height: 1.2;
}
.m-heading-1, h1, .h1 {
	font-size: clamp(2rem, 1.375rem + 2vw, 2.5rem);
	letter-spacing: -.02em;
	line-height: 1.2;
}
.m-heading-2, h2, .h2 {
	font-size: clamp(1.75rem, 1.4375rem + 1vw, 2rem);
	letter-spacing: 0;
	line-height: 1.2;
}
.m-heading-3, h3, .h3 {
	font-size: clamp(1.25rem,1.25rem + .25*(100vw - 23.4375rem)/66.5625,1.25rem);
	letter-spacing: 0;
	line-height: 1.2;
}
.m-heading-4, h4, .h4 {
	font-size: clamp(1.125rem,1.125rem + .125*(100vw - 23.4375rem)/66.5625,1.125rem);
	letter-spacing: 0;
	line-height: 1.2;
}
.m-heading-5, h5, .h5 {
	font-size: 1rem !important;
}

.m-fw-medium {
	font-weight: 500 !important;
}
.m-fw-semibold {
	font-weight: 500 !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-title-color {
	color: var(--primary-dark) !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-vc {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

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

/* Cause */
.cause-single {
	padding: 0.75rem;
	border: 1px solid var(--m-border);
	background-color: var(--m-light);
	-webkit-box-shadow: var(--m-shadow);
	box-shadow: var(--m-shadow);
	border-radius: 0.75rem;
	margin-block-end: 1.875rem;
}
.cause-single-thumb {
	width: 100%;
	overflow: hidden;
	position: relative;
	margin-bottom: 1.25rem;
}
.cause-single-thumb > a {
	width: 100%;
	display: block;
	overflow: hidden;
	position: relative;
	padding-block-end: 75%;
	border-radius: calc(0.75rem - 2px);
}
.cause-single-thumb > a > img {
	inset: 0;
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	border-radius: calc(0.75rem - 2px);
	-webkit-transition: var(--m-transition);
	-moz-transition: var(--m-transition);
	-ms-transition: var(--m-transition);
	transition: var(--m-transition);
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	filter: grayscale(100%);
}

.cause-single-thumb:hover > a > img {
	-webkit-transform: scale(1.2) rotate(10deg);
	-ms-transform: scale(1.2) rotate(10deg);
	transform: scale(1.2) rotate(10deg);
	-webkit-filter: grayscale(0);
	-moz-filter: grayscale(0);
	-ms-filter: grayscale(0);
	filter: grayscale(0);
}

.cause-single-thumb .tag {
	top: 10px;
	position: absolute;
	inset-inline-start: 0.625rem;
	font-size: 0.75rem;
	font-weight: 600;
	padding: 0.375rem 1.25rem;
	background-color: var(--base-color);
	border-radius: 2.5rem;
	color: var(--m-primary);
}
.cause-single-content {
	width: 100%;
	padding-inline: 0;
}
.cause-single-content h6 {
	font-weight: 800;
}
.cause-single-content p {
	color: var(--m-neutral);
}
.cause-single-cta {
	width: 100%;
	padding: 0.75rem;
	padding-block-end: 1.25rem;
	border-radius: calc(0.75rem - 2px);
	background-color: rgba(157, 153, 139, 0.1);
	margin-block-start: 1.25rem;
}
.cause-single-progress {
	width: 100%;
}
.cause-single-progress-intro {
	font-size: 0.875rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 0.75rem;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	color: var(--m-theme-dark);
	font-weight: 600;
}
.cause-single-progress-bar {
	width: 100%;
	margin: 0.313rem 0;
}
.cause-single .progress-bar {
  width: 100%;
  height: 0.5rem;
  background-color: #e9e9e9;
  border-radius: 10px;
  position: relative;
}
.cause-single .progress-bar .progress-bar-percent {
	top: 0px;
	left: 0px;
	bottom: 0px;
	position: absolute;
	background-color: var(--base-color);
	border-radius: inherit;
}
.cause-single-progress-goal {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 0.75rem;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.cause-single-progress-goal div {
	font-weight: 600;
	font-size: 0.875rem;
	color: var(--m-primary);
}
.cause-single .percent-value,
.cause-single-progress-goal .goal {
	color: var(--m-theme-dark);
	font-weight: 800;
}
.cause-single .cause-single-cta-action {
	margin-top: 1.25rem;
}


/* Do More Section */
.m-missio-domore-area {
	position: relative;
	padding-block-start: 5rem;
	padding-block-end: 3.75rem;
	background-color: var(--m-theme-light);
}
.m-top-shape,
.m-p2p-summary-shape,
.m-missio-domore-shape {
	width: 100vw;
	left: 0;
	right: 0;
	top: -16px;
	z-index: 1;
	position: absolute;
	inset-inline-end: 0;
	inset-inline-start: 0;
	pointer-events: none;
}
.m-top-shape img,
.m-p2p-summary-shape img,
.m-missio-domore-shape img {
	width: 100%;
	height: 42px;
	pointer-events: none;
	-o-object-position: top;
	object-position: top;
}
.m-missio-domore-area .m-missio-domore-listing {
	width: 100%;
	text-align: left;
}
@media (max-width: 767.98px) {
	.m-missio-domore-area {
		padding-block-end: 1.875rem;
	}
	.m-missio-domore-area .m-missio-domore-listing {
		margin-block-end: 2.5rem;
	}
}

.m-missio-domore-icon {
	width: 5rem;
	height: 5rem;
	margin-inline: 0;
	margin-block-end: 0.75rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 50%;
	background-color: var(--m-theme);
	box-shadow: 0 .25rem .375rem rgba(var(--m-primary-rgb),0.125);
}
.m-missio-domore-icon img,
.m-missio-domore-icon .missio_svg {
	width: 2.5rem;
	height: 2.5rem;
	display: block;
}
.m-missio-domore-icon .missio_svg {
	fill: var(--m-light);
}
.m-description {
	width: 100%;
	max-width: 85%;
	padding-block-end: 0.75rem;
}
.m-description p {
	color: var(--m-neutral);
}
.m-missio-domore-title {
	font-weight: 800;
	color: var(--m-primary);
	font-size: clamp(1.35rem, 1.2761rem + 0.3696vw, 1.5625rem);
}

/* Social Icons */
.custom__shares {
	margin: 0 0 20px;
	padding-bottom: 20px;
	border-bottom: 1px dotted var(--m-border);
}
.m-widget .social-button,
.custom__shares .social-button,
.custom__shares .social-share-count,
.m-missio-fb-comments .social-share-count {
	width: 100%;
	display: flex;
	gap: 0.5rem;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 0.983rem;
	max-height: 50px;
	padding: 0.75rem 1rem;
	text-align: center;
	border-radius: 0.375rem;
	border: 1px solid rgba(0, 0, 0, .1);
	border-bottom: 2px solid rgba(0, 0, 0, .2)
}
.custom__shares .social-button .m-icon-sm,
.custom__shares .social-share-count .m-icon-sm {
	top: 1px;
	position: relative;
}
.m-missio-fb-comments .social-share-count {
	color: #3b579d;
	font-weight: 600;
}

.m-widget .social-button {
	padding: 0.5rem 1rem;
}
@media (max-width: 767.98px) {
	.custom__shares .row > * {
		max-width: 50%;
		margin-block-end: 1rem;
	}
}


.m-missio-fb-comments .social-share-count,
.custom__shares .social-share-count {
	background: var(--m-offwhite);
}
.social-button.facebook {
	background: #3b579d;
	background: linear-gradient(to bottom, #3b579d 0, #344d8a 100%) rgba(0, 0, 0, 0)
}
.social-button.facebook:active,
.social-button.facebook:focus,
.social-button.facebook:hover {
	background: #4261b0;
	background: linear-gradient(to bottom, #4261b0 0, #344d8a 100%) rgba(0, 0, 0, 0)
}

.social-button.twitter {
	background: #6baae8;
	background: linear-gradient(to bottom, #6baae8 0, #5a9fe6 100%) rgba(0, 0, 0, 0)
}
.social-button.twitter:hover,
.social-button.twitter:focus,
.social-button.twitter:hover {
	background: #6cb7f0;
	background: linear-gradient(to bottom,#6cb7f0 0,#3ea1ec 100%) rgba(0,0,0,0);
}

.social-button.email {
	background: #d66d57;
	background: linear-gradient(to bottom, #d66d57 0, #ca5f4a 100%) rgba(0, 0, 0, 0)
}
.social-button.email:hover,
.social-button.email:focus,
.social-button.email:hover {
	background: #dc5d48;
	background: linear-gradient(to bottom,#dc5d48 0,#d75843 100%) rgba(0,0,0,0);
}

.m-missio-fb-comments .social-share-count,
.custom__shares .social-share-count {
	background: var(--m-offwhite);
	background: linear-gradient(to bottom, var(--m-offwhite) 0, var(--m-offwhite-2) 100%) rgba(0, 0, 0, 0)
}

.social-button.facebook, .social-button.twitter, .social-button.email {
	color: var(--m-light);
}

.m-widget, .m-widget-fundraise, .m-heading-bordered {
	width: 100%;
}
.m-widget {
	margin-block-end: 2.5rem;
	padding-block-end: 1.25rem;
  	border-bottom: 1px dotted var(--m-border);
}
.m-heading-bordered {
	margin-block-end: 0.75rem;
}
.m-widget .progress {
	height: 0.75rem;
	background-color: rgba(var(--m-primary-rgb), 0.1);
}
.m-widget .progress-bar {
	font-size: 0.625rem;
	line-height: 0.5rem;
}
.m-widget .m-button-outline {
	width: 100%;
	font-weight: 600;
	border-width: 2px;
	border-radius: 0.375rem;
	color: var(--m-default-dark);
	border-color: var(--m-default-dark);
}
.m-widget .m-button-outline:hover, .m-widget .m-button-outline:hover, .m-widget .m-button-outline:hover {
	color: #fff;
	background-color: var(--m-default-dark);
	border-color: currentColor;
}
.m-widget .missio-donor-scroller {
	margin: 0;
	padding: 0;
	width: 100%;
	height: auto;
	overflow-y: auto;
	max-height: 235px;
	position: relative;
	display: inline-block;
  	margin-block-end: 0.75rem;
}
.missio_donor_lists {
	margin: 0;
	padding: 0;
	width: 100%;
	list-style: none;
	display: inline-block;
}
.missio_donor_lists-item {
	margin: 0;
	padding: 0;
	width: 100%;
	display: flex;
	column-gap: 0.75rem;
	list-style: none;
	align-items: flex-start;
	margin-block-end: 0.75rem;
}
.missio_donor-user {
	width: 3rem;
	height: 3rem;
	display: flex;
	font-size: 1rem;
	font-weight: 800;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1;
	border-radius: 50%;
	color: var(--m-default-dark);
	border: 1px solid rgba(0,0,0,0.2);
	background-color: var(--m-offwhite);
}
.missio_donor-details {
	flex-grow: 1;
}
.missio_donor_lists-item:nth-of-type(odd) .missio_donor-user {
	background-color: var(--m-theme-light);
}
.missio_donor_lists-item:nth-of-type(even) .missio_donor-user {
	background-color: var(--m-theme-light2);
}


.m-button-contact {
	width: 100%;
	margin-block: 1.5rem;
	padding-block: 1.5rem;
	border-top: 1px dotted var(--m-border);
	border-bottom: 1px dotted var(--m-border);
}
.m-missio-fb-comments .social-share-count {
	margin-block-end: 1.25rem;
}
.m-missio-fb-comments,
.m-missio-fb-comments .fb-comments.fb_iframe_widget,
.m-missio-fb-comments .fb-comments.fb_iframe_widget > span,
.m-missio-fb-comments .fb-comments.fb_iframe_widget > span iframe,
.fb_iframe_widget_fluid_desktop,
.fb_iframe_widget_fluid_desktop span,
.fb_iframe_widget_fluid_desktop iframe {
	width: 100%;
 	max-width: 100%;
}
.fb_iframe_widget {
	position: relative;
	display: inline-block;
}


/* */
.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);
	-moz-transform: translateY(-3.25rem) scale(1);
	-ms-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);
	-moz-transform: translateY(0%) scale(1);
	-ms-transform: translateY(0%) scale(1);
	transform: translateY(0%) scale(1);
	pointer-events: all !important;
}

/* Button */
.m-button-spring:active {
	-webkit-transform: scale(0.98) !important;
	-moz-transform: scale(0.98) !important;
	-ms-transform: scale(0.98) !important;
	transform: scale(0.98) !important;
}
.m-button-spring:active * {
    -webkit-transform: scale(0.98) !important;
	-moz-transform: scale(0.98) !important;
	-ms-transform: scale(0.98) !important;
	transform: scale(0.98) !important;
}

.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;
	border: 1px solid currentColor;
	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-button-inline {
	display: inline-flex;
	padding-inline: 1.875rem;
}
.m-button-block, .m-button-full {
	width: 100%;
	display: flex;
	padding-inline: 1.875rem;
}
.m-button-sm {
	font-size: 0.875rem;
	min-height: inherit;
	font-weight: 500;
	padding-inline: 1rem;
	padding-block: .375rem;
}
.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 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-primary-button:hover,
.m-primary-button:focus,
.m-primary-button:active {
	color: var(--m-light);
	background-color: var(--m-theme-dark) !important;
}

.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-radius {
	border-radius: 0.375rem;
}


.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-p2p-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-p2p-summary {
	width: 100%;
	display: flex;
	position: relative;
	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: 991.98px) {
	.m-donation-meta,
	.m-p2p-sidebar,
	.m-p2p-container {
		width: 100%;
		max-width: 100%;
		margin-inline: auto;
	}
	.m-p2p-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-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-p2p-sidebar {
    width: 100%;
	margin-block-start: 2.125rem;
}
.m-p2p-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-p2p-sidebar-header {
	display: flex;
	column-gap: 0.75rem;
	align-items: center;
}
.m-p2p-sidebar-header-details {
	flex: 1 1 auto;
}
.m-p2p-sidebar-header-progress {
	width: 80px;
	height: 80px;
}

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

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

.m-p2p-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-p2p-sidebar-footer .m-button {
	width: 100%;
	max-width: 100%;
	flex: 1 1 auto;
}
.m-button-prev .m-icon {
	transform: rotate(180deg);
}

.m-p2p-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-p2p-sidebar-body-header.has-recurring {
	z-index: 10;
	margin-block-start: -1.25rem;
	padding-inline: 0;
	/*padding-block-start: 0;*/
}

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

.m-p2p-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-p2p-sidebar-body-content .m-donation-members-organizer {
	flex: 1;
	margin-block-end: 1rem;
}
.m-p2p-sidebar-body-content .m-donation-members-organizer:only-of-type,
.m-p2p-sidebar-body-content .m-donation-members-organizer:last-of-type {
	margin-block-end: 0;
}

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

.m-p2p-sidebar-body-content.has-no-pledge .m-checkout-form .m-p2p-sidebar-body-header {
	margin-inline: -1.5rem;
}
.m-p2p-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: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}
.m-donation-list-item {
	width: 100%;
	max-width: 100px;
	margin-bottom: 0;
}
@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 {
	height: 100%;
	min-height: 60px;
	flex-direction: column;
	padding-inline: .5rem;
}
.m-donation-list-item .m-button p {
	color: #6f6f6f;
	margin-block-start: 0.25rem;
}
.m-donation-list-item .m-button p:empty {
	display: none;
}
.m-donation-list-item .m-button.is-selected {
	color: var(--m-light);
	background-color: var(--m-theme);
	border-color: rgba(0,0,0,0.2);
}
.m-donation-list-item .m-button.is-selected,
.m-donation-list-item .m-button.is-selected p {
	color: var(--m-light) !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 var(--m-theme);
	outline-width: 1px !important;
	outline-style: solid !important;
	outline-color: var(--m-theme) !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: 900;
}
.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 {
	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: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;
}
.slider-container .slider__item {
	width: 100%;
	position: relative;
	border-radius: 0;
}
.slider-container .slider__item::before {
	content: "";
	display: block;
	padding-bottom: 35%;
}
@media (max-width: 576.98px) {
	.slider-container .slider__item::before {
		padding-bottom: 50%;
	}
}
@media screen and (min-width: 577px) and (max-width: 767.98px) {
	.slider-container .slider__item::before {
		padding-bottom: 50% !important;
	}
}

.slider-container .slider__caption {
	width: 100%;
	left: 1.875rem;
	right: 1.875rem;
	padding: 0.938rem;
	bottom: 2.5rem;
	border-radius: 0;
	max-width: calc(100% - 3.75rem);
}
.slider-container .slider__caption:empty {
	display: none;
}
.slider-container .slider-nav {
	z-index: 1;
	bottom: 1.5rem;
}
.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;
}

.m-p2p-summary {
	padding-block-start: 3rem;
	padding-block-end: 2.5rem;
	background-color: var(--m-offwhite-h);
	/*border-top: 1px solid rgba(0,0,0,.075);*/
  	border-bottom: 1px solid rgba(0,0,0,.075);
}
.m-p2p-summary-desc {
	font-size: clamp(1rem, 0.9219rem + 0.25vw, 1.0625rem);
}
.m-p2p-subtitle .m-br {
	padding-inline-end: 1rem;
	border-right: 1px solid var(--m-border);
}

.m-heading-section {
	padding-block: 60px;
}
.m-heading-title {
	display: flex;
	color: var(--m-theme);
	flex-direction: column;
}
.m-heading-title .m-fs-60 {
	font-size: clamp(2.25rem, 0.375rem + 6vw, 3.75rem);
	line-height: clamp(2.25rem, 0.375rem + 6vw, 3.75rem);
}
.m-heading-title .m-fs-100 {
	font-size: clamp(3.125rem, -0.7813rem + 12.5vw, 6.25rem);
	line-height: clamp(3.125rem, -0.7813rem + 12.5vw, 6.25rem);
}
.m-heading-title small {
	font-weight: 600;
	font-size: clamp(1.5rem, 0.875rem + 2vw, 2rem);
	line-height: clamp(1.5rem, 0.875rem + 2vw, 2rem);
}

.m-flex-wrapper {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: stretch;
	align-content: stretch;
}
.m-flex-content {
	width: 100%;
	max-width: 75%;
	padding-block: 2.5rem;
  	padding-inline-end: 2.5rem;
}
.m-flex-content-sidebar {
	width: 100%;
	max-width: 25%;
	position: relative;
	padding-block-start: 2.5rem;
	padding-block-end: 4.25rem;
	background-color: #f7f7f7;
	padding-inline-start: 1.25rem;
	border-left: 1px solid rgba(0,0,0,.1);
}
.m-flex-content-sidebar::before {
	top: 0;
	content: '';
	height: 100%;
	width: 1000px;
	right: -1000px;
	position: absolute;
	background: #f7f7f7;
}

@media (max-width: 767.98px) {
	.m-flex-wrapper {
		display: block;
	}
	.m-flex-content,
	.m-flex-content-sidebar {
		width: 100%;
		max-width: 100%;
	}
	.m-flex-content {
		padding-inline-end: 0;
	}
	.m-flex-content-sidebar::before {
		top: -1px;
		z-index: -1;
		left: -100px;
		right: -100px;
		border-top: 1px solid rgba(0,0,0,.1);
	}
	.m-flex-content-sidebar {
		border-left: 0 none;
		padding-inline-start: 0;
	}
}

.m-widget {
	margin-bottom: 1.875rem;
	padding-block-end: 1rem;
	border-bottom: 1px dotted var(--m-border);
}
.m-widget:last-of-type {
	margin-bottom: 0;
	padding-block-end: 0;
	border-bottom: 0 none;
}


/* 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-p2p-sidebar-footer,
	.m-p2p-sidebar-body-header {
		padding-inline: 1.125rem;
	}
}
@media (max-width: 1099.98px) {
	.m-p2p-section {
		display: block;
		grid-template-rows: auto;
		grid-template-columns: 1fr;
	}
	.m-p2p-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-p2p-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%;
}
.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.8);
	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: var(--m-theme);
}
.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-p2p-section {
		grid-template-columns: minmax(680px, auto) 1fr;
	}
	.m-p2p-container {
		max-width: 90%;
	}
}

#RecurringDonation {
	max-width: 350px;
}

@media (max-width: 767.98px) {
	.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-donate-box .m-captcha-block > span img{width:auto;flex-shrink:0;height:45px; max-height:45px}
.m-donate-box .m-captcha-block .form-control{height:45px;max-height:45px;width:140px!important;max-width:140px!important;font-size:1rem}
.m-donate-box .m-captcha-block > .btn{width:45px!important;min-width:45px!important;height:45px!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);
	}
}

.footer-newsletter {
	opacity: 0 !important;
	display: none !important;
	visibility: hidden !important;
}
.site-footer.style-1 .footer-top {
 	padding-top: 70px !important;
}

/*  */
.m-content-page {
	padding-block: 70px;
	background-color: #fff !important;
}
.m-thumbnail {
	padding: 0.75rem;
}
.m-thumbnail img {
	border-radius: 0.375rem;
}
.m-thumbnail,
.m-content-page .m-donate-box {
	width: 100%;
	display: block;
	border-radius: 0.5rem;
	border: 1px solid #d3d8dc;
	box-shadow: 1px 2px 60px 0 rgba(0,0,0,.1);
}
.m-content-description a {
	text-decoration: none;
	border-bottom: 1px solid currentColor;
}
.m-content-description a:hover {
	text-decoration: none;
	border-bottom: 1px solid transparent;
}
.m-content-page .domore-title {
	border-bottom: 1px solid #d3d8dc;
}
.m-content-page .m-donate-box {
	padding: 1.25rem;
}
.m-donate-box .form-body {
	width: 100%;
}
.m-donate-box .row[class*=g-] > * {
	clear: both !important;
}
.m-donate-box .form-group {
	margin-block-end: 1rem;
}
.m-donate-box .form-group .btn {
	border-radius: 0.375rem;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25) !important;
}
.m-donate-box .form-body .form-group label {
	font-size: 1rem;
	cursor: pointer;
	margin-block-end: 0.25rem;
}
.m-donate-box .m-payment-wrap {
	padding-inline: 0;
}
.select2 .select2-selection,
.m-donate-box .form-group .form-control {
	height: auto;
	min-height: 45px;
	font-size: 1rem;
	padding: 0.5rem 0.75rem;
	border: 1px solid #d3d8dc;
	border-radius: 0.25rem !important;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.select2-container--open .select2-selection,
input.form-control:focus, input.form-control:focus-within,
select.form-control:focus, select.form-control:focus-within,
textarea.form-control:focus, textarea.form-control:focus-within {
	outline-width: 1px !important;
	outline-style: solid !important;
	border-color: var(--primary) !important;
	outline-color: var(--primary) !important;
	background-color: #ffffff !important;
}
.m-donate-box .form-body .form-check {
	margin: 0;
}
.m-donate-box .form-check-input {
	width: 1.125rem;
	height: 1.125rem;
	border-width: 2px;
	border-color: #c0c1c2;
}
.m-donate-box .form-check-input:checked {
	border-color: var(--primary);
	background-color: var(--primary);
}
.m-donate-box .form-check-input:focus {
	outline: 0;
	border-color: var(--rgba-primary-1);
	box-shadow: 0 0 0 .25rem var(--rgba-primary-2);
}
.form-check-label:has(.form-check-input:checked) {
	font-weight: 600 !important;
}

.m-donate-box .input-group-text {
	display: flex;
	gap: 0.375rem;
	align-items: center;
	justify-content: center;
	padding: .375rem .75rem;
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 1.5;
	color: #212529;
	text-align: center;
	white-space: nowrap;
	background-color: #e9ecef;
	border: 1px solid #ced4da;
	border-radius: 0.25rem;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
}
.m-donate-box .input-group .form-control {
	border-top-left-radius: 0 !important;
	border-bottom-left-radius: 0 !important;
}
.m-donate-box .input-group-text small {
	top: 2px;
	font-size: 0.75rem;
	position: relative;
}

.select2 {
	width: 100% !important;
}
.select2-container .select2-selection--single .select2-selection__rendered {
	padding-inline: 0 !important;
}
.select2-dropdown {
	border-color: #d3d8dc;
	box-shadow: 1px 2px 60px 0 rgba(0,0,0,.175);
}
.select2-results__option:empty {
	display: none;
}
.select2-results__option {
	color: #000;
	padding: 0.5rem;
	cursor: pointer;
	font-size: 1rem;
	margin-block-end: 1px !important;
}
.select2-results__option:hover {
	color: #000;
	background-color: #f4f4f4;
}
.select2-results__option--highlighted {
	color: #fff;
	background-color: var(--primary);
}
.select2-container--default .select2-search--dropdown .select2-search__field {
	padding: 0.25rem 0.5rem;
	border: 1px solid #d3d8dc;
	border-radius: 0.25rem !important;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
}
.select2-search--dropdown {
	padding: 0.5rem;
}
.select2-dropdown.select2-dropdown--below {
	margin-top: 1px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
	top: 1px;
	right: 1px;
	width: 36px;
	height: 44px;
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	place-items: center;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
	top: auto;
	left: auto;
	margin: 0;
	width: 0.75rem;
	height: 0.75rem;
	border: 0 none !important;
	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='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
	background-position: center;
	background-repeat: no-repeat;
}

.charity-page-details h1, .charity-page-details .h1,
.charity-page-details h2, .charity-page-details .h2,
.charity-page-details h3, .charity-page-details .h3,
.charity-page-details h4, .charity-page-details .h4,
.charity-page-details h5, .charity-page-details .h5,
.charity-page-details h6, .charity-page-details .h6 {
	font-weight: 800;
	color: var(--m-event_title_color);
}
.charity-page-details p, .charity-page-details li {
	color: var(--m-body_text_color);
}
.charity-page-details ul, .charity-page-details ol {
	margin-block-start: 0.75rem !important;
}
.charity-page-details p {
	margin-block-end: 0.75rem !important;
}
.charity-page-details ul, .charity-page-details ol,
.charity-page-details ul li, .charity-page-details ol li {
	list-style: unset !important;
}
.charity-page-details ol li {
	list-style: decimal !important;
}
.charity-page-details ul li, .charity-page-details ol li {
	margin-block-end: 0.375rem !important;
}
.charity-page-details p:last-of-type,
.charity-page-details ul li:last-of-type, .charity-page-details ol li:last-of-type {
	margin-block-end: 0 !important;
}


@media (max-width: 991.98px) {
	.md\:mmb-4 {
		margin-bottom: 2.5rem !important;
	}
}


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


body.modal-open,
body.modal-open .page-wraper {
	overflow-x: hidden !important;
}

@media (min-width: 992px) {
	.d-lg-block {
		display: block !important;
	}
}
