@charset "utf-8";
/* CSS Document */

/*
teal: #008f8e
light teal: #E2FCFC
pink: #C63C94
light pink: #F9EBFF
goal: #BF8C40

The teal color is 80c, 12m, 40y, 0k.
The Hexadecimal color is #008f8e
Light teal color is #E2FCFC

The script font is Snell Roundhand Bold.

The font used generally is Verlag Family, but there have been times when we’ve used Lab Grotesque.
*/

body {
	margin: 0; /* to prevent IE from screwing up 100% width */
	padding: 0; /* to prevent IE from screwing up 100% width */
  color: #000;
	/*font: 17px Raleway, Arial, sans-serif;*/
	font: 16px Open Sans, Arial, sans-serif;
	padding-top: 100px; /* Adjust based on header height */
}
*, *:before, *:after {
  box-sizing: border-box;
}

/* prevent margin collapse & set anchor offset */
#scrollMainBoard {
  scroll-margin-top: 100px;
  padding-top: 1px;      /* stops margin-collapse from next element */
  margin-top: -1px;      /* visually cancels the 1px padding */
}

/* optional: native smooth scroll for scrollIntoView/location.hash */
html { scroll-behavior: smooth; }

/* optional: prevent browser “scroll anchoring” fighting your scroll */
body { overflow-anchor: none; }

#maincontentwrapper {
  display: flex;
  justify-content: center;
  /*background-color: #E2FCFC;*/
  background-color:#F9EBFF
}

.container {
	max-width: 1140px;	
  min-width: 860px;
	margin: 0 auto;
  background-color:#fff;
}
.smallerContainer {
	max-width: 700px;
	margin: 0 auto;	
}
p, div {
    margin: 0;
}
a {
	color: #008f8e;; 
}
img {
	border: 0;
	max-width: 100%;
	height: auto;	
}
.imgCenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.spaceVertical {
  margin-top: 20px;
}

.flexit {
  display: flex;
}

.centerContent {
	display: flex;
  justify-content: center;
  align-items: center;
	text-align: center;
}

input::-webkit-input-placeholder { /* to make placeholder center in chrome*/
  position: relative;	
  top: -4px;
}

h1 {
  font-weight: normal;
  color: #333;
}

.hidden {
	display: none;
}

.text08 {
	font-size: 0.8em;
}
.bold {
	color: #333;
}
.bolder {
	font-weight: bold;
}

.actionButtons {
	margin-top: 20px;
	display: flex; 
	flex-wrap: wrap; 
	column-gap: 20px;
}
.actionButton {
  min-width: 100px;
	background-color: #008f8e;;
	color: #fff;
	font-size: 1.0em;
	line-height: 1.3em;
	padding: 8px 4px;
	border-radius: 6px;
	margin-bottom: 20px;
	cursor: pointer;
}

#maincontainer {
	padding: 20px;
	max-width: 1100px;
	line-height: 1.5em;	
  margin: 20px 100px;
}

/* header area */
#headerwrapper {
    position: fixed; /* Fixes the header in place */
    top: 0; /* Positions it at the top */
    left: 0; /* Ensures it spans the entire width */
    width: 100%;  /*Full width */
    background-color: white;  /*Change to match your design */
    z-index: 1000; /* Ensures it's above other elements */
	  max-height: 100px; /* make sure same for body */
}
header {
	display:flex;
	justify-content:flex-end;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 3px;
	padding-bottom: 3px;	
	min-height: 75px;
}
.headerLeft {
	margin-right:auto;	
	width: 50%;
}
.headerRight {
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	margin-right: 40px;
	column-gap: 20px;
	flex-wrap: wrap;
}

#shareButtons {
	display: flex;
	column-gap: 10px;
	font-size: 1.5em;
}
#copyButton {
    cursor: pointer;
    position: relative;
}

/* tooltips top of page */
.tooltip-wrapper {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tooltip-wrapper .tooltip-text,.tooltip-wrapper .tooltip-text_after {
  visibility: hidden;
  font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
  font-size: 12px;
  font-weight: normal;
  background-color: white;
  color: #000;
  text-align: center;
  padding: 5px 8px;
  border-radius: 4px;
  
  /* Smart sizing */
  max-width: 150px;       /* Tooltip won't exceed this width */
  width: auto;            /* Allow tooltip to shrink to content */

  white-space: nowrap;
  word-break: normal;     /* Don't force mid-word breaks */
  box-sizing: border-box; 

  /* Position below the element */
  position: absolute;
  top: 100%;  /* Place directly below */
  left: 50%;
  transform: translateX(-50%);
  margin-top: 6px;  /* Space between element and tooltip */

  /* Fade in */
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip-wrapper:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.tooltip-wrapper.show-tooltip .tooltip-text_after {
  visibility: visible;
  opacity: 1;
}


/* horizontal therometer css */
#thermBox {
	padding: 10px; 
	padding-top: 28px;
	height: 172px;	
	background: #E2FCFC;
	font-family: Arial, sans-serif;
    text-align: center;
	margin: auto;
	border-radius: 4px;
}

.fundraising-stats {
  display: flex;
  justify-content: space-around;
  margin-bottom: 15px; 
}

.stat {
  font-weight: bold;
}

.stat .amount {
  font-size: 28px;
}

.raised { color: #008f8e; }

.stat small {
  display: block;
  font-size: 14px;
  font-weight: normal;
  color: #000;
}


.progress-bar-container {
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  height: 30px;
  margin: 10px 20px;
  position: relative;
}

.progress-bar {
  /*background: linear-gradient(to right, #28a745, #1e7e34);*/
  background: linear-gradient(to right, rgb(138, 216, 216), rgb(0, 143, 142));
  height: 100%;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 8px;
  position: relative;
  color: white;
  font-weight: bold;
  font-size: 11px;
  white-space: nowrap;
}

.progress-text.inside {
  pointer-events: none;
}

.progress-text.outside {
  position: absolute;
  top: 0;
  left: 8px;
  height: 100%;
  color: white;
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 11px;
  white-space: nowrap;
  pointer-events: none;
}

.remaining {
  margin-top: 10px;
  font-size: 16px;
}


#amount {
  width: 80%;
  height: 56px;
  background: #fff; 
  padding-top: 14px;
  border-radius: 5px;
  padding-bottom: 14px;
}

#amount::placeholder {
    font-size: 0.6em;
}

#amount:not(:placeholder-shown), #amount:focus {
  text-align: right;
}


#amount:focus::placeholder {
  color: transparent;
}


/*sponsoritems */
#sponsorItemBox {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	/*overflow-x: auto;*/
	column-gap: 14px;
	row-gap: 20px;
}
.itemBox {
	cursor: pointer;
	min-width: 160px !important;
	width: 160px !important;
	max-width: 160px !important;
	height: 167px;
	flex-shrink: 0;
	transition: all 0.3s ease;
	position: relative;
	border-radius: 6px;
	overflow: hidden;
	border-left: 1px solid #008f8e;
	border-right: 1px solid #008f8e;
}
.itemBox.selected {
	border: 3px solid #008f8e !important;
	transform: scale(1.06) translateY(-4px);
	box-shadow:
		0 0 0 3px #008f8e,
		0 10px 0 0 #016868,
		0 14px 20px rgba(0,0,0,0.4);
	background-color: #E2FCFC;
}
.itemBox.selected .itemBoxImageWrap {
	background-color: #E2FCFC;
}
.itemBox.selected::after {
	content: "\2714";
	position: absolute;
	top: 5px;
	right: 5px;
	background: #008f8e;
	color: white;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	text-align: center;
	line-height: 24px;
	font-size: 13px;
	font-weight: bold;
	z-index: 10;
	box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.itemBox:hover {
	transform: scale(1.03);
	box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}
.itemBox.selected:hover {
	transform: scale(1.06) translateY(-4px);
}
.itemBoxImage {
	width: 100px !important;
	height: 100px !important;
	max-width: 100px !important;
	max-height: 100px !important;
	display: block;
	margin: 0 auto;
	object-fit: cover;
}
.itemBoxLabel {
	height: 36px;
	background: linear-gradient(to right, rgb(138, 216, 216), rgb(0, 143, 142));
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0 6px;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 0.75em;
	line-height: 1.2em;
}

.itemBoxPrice {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 30px;
	background: linear-gradient(to right, rgb(138, 216, 216), rgb(0, 143, 142));
	color: #ffffff;
	font-size: 0.8em;
	font-weight: bold;
	z-index: 5;
}

/* Other Amount box - styled to match image boxes */
.itemBox-other {
	min-width: 120px !important;
	width: 250px !important;
	max-width: 250px !important;
	height: 167px;
	background: #ffffff;
	border-left: 1px solid #008f8e;
	border-right: 1px solid #008f8e;
	border-radius: 6px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: flex-start;
	padding: 0;
	transition: all 0.3s ease;
}
.itemBox-other.selected {
	border: 3px solid #008f8e !important;
	border-style: solid !important;
	background: linear-gradient(135deg, #fef5fb 0%, #f9e8f4 100%);
}
.itemBoxOtherThank {
	font-size: 0.8em;
	color: #888;
	text-align: center;
	padding: 4px 0 2px;
}
.itemBoxOtherInput {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 6px 10px;
}

/* Simple items for sisterhood/region - button style without images */
.itemBox-simple {
	min-width: 200px !important;
	width: 200px !important;
	max-width: 200px !important;
	height: 60px !important;
	max-height: 60px !important;
	background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
	border: 2px solid #008f8e;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
}

.itemBox-simple .itemBoxLabel {
	height: auto;
	background: none;
	color: #333;
	font-size: 0.95em;
	line-height: 1.3em;
	text-transform: none;
	font-weight: 500;
}

.itemBox-simple:hover {
	background: linear-gradient(135deg, #f0f0f0 0%, #d8d8d8 100%);
}

.itemBox-simple.selected {
	background: linear-gradient(135deg, #fef5fb 0%, #f9e8f4 100%);
}

.itemBox-simple.selected .itemBoxLabel {
	color: #008f8e;
	font-weight: 600;
}

#footerText {
	padding-top: 12px; 
	padding-bottom: 6px; 
	margin: 0 auto; 
	font-size: 11px; 
	text-align: center;	
}

/* from donate.css */
#donate {
   color: #000;  //#767676
}

#amount {
   width: 70%;
   color: #767676 !important;
}
.error_donateAmount {
	color: red;
	font-size: 0.8em;
	/*margin-top: 6px;*/
}
div.errorMessage > span {
  font-size: 0.8em;
}
.checkboxError {
  font-weight: normal; /* override bold */
}

.SumoSelect {
  width: 100%;
}  

/* Dedication choice styles */
.dedication-choice {
    padding: 8px 14px;
    border: 2px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    background: #fff;
    transition: all 0.3s;
    font-size: 0.95em;
    white-space: nowrap;
}
input[type="radio"]:checked + .dedication-choice {
    background-color: #008f8e !important;
    color: #fff !important;
    border-color: #008f8e !important;
    font-weight: bold;
}
.dedication-choice:hover {
    border-color: #008f8e;
    background-color: #f9f9f9;
}
input[type="radio"]:checked + .dedication-choice:hover {
    background-color: #008f8e !important;
}

/* Paying As styles */
.paying-as-choices input[type="radio"]:checked + label {
	background-color: #008f8e !important;
	color: #fff !important;
	border-color: #008f8e !important;
	font-weight: bold;
}
.paying-as-choices label:hover {
	border-color: #008f8e;
	background-color: #f9f9f9;
}
.paying-as-choices input[type="radio"]:checked + label:hover {
	background-color: #008f8e !important;
}

/* Step Headers */
.numberStep {
	font-size: 1.6em;
	font-weight: 900;
	color: #008f8e;
	margin: 30px 0 20px 0;
	padding: 18px 20px;
  background-color: #E2FCFC;
	border-left: 6px solid #008f8e;
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(138, 216, 216, 0.25);
	text-align: left;
	padding-left: 52px;
	text-indent: -20px;
}
.numberStep i {
	color: #008f8e;
	margin-right: 10px;
	font-size: 1.1em;
	display: inline-block;
}

.stepDirection {
  background: #f5f0e8; 
  padding: 12px; 
  border-left: 4px solid #d4af37; 
  border-radius: 6px; 
  margin-bottom: 15px; 
  font-size: 0.95em; 
  line-height: 1.5; 
  font-size: 0.9em
}

#donateNumber1Box {
  border: 1px solid #999;
  padding: 20px;
}

#donateAmountArea {
  padding: 20px;
  background: #ececec;
}

#donateAmount {
  font-size: 2.0em;
  padding-left: 20px;
  border: 1px solid #999;
  border-radius: 4px;
  box-shadow: 0px 3px 6px #00000029;
  background: #fff;
}

#donateEffective {
   font-size: 1.1em;  
   text-align: center;
   padding-left: 20px;
   padding-right: 20px;
   padding-top: 12px;
   line-height: 1.6em;
}

#donateEffectiveAmtAll {
	font-weight: bold;
	font-size: 1.5em;
}

#donateItem {
  margin-top: 12px;
  margin-left: 12px;  
}

.SumoSelect {
  width: 100%;
}

#tipBox {
  margin-top: 12px;  
  border: 1px solid #999;
  padding: 20px;	
  line-height: 1.6em;  
  font-size: 0.9em;
}

/*tip choices*/
#helpOptions {
	display: flex;
	gap: 10px;	
	flex-direction: row-reverse;
}
#helpOptionsWords {
	width: 70%;	
}
#helpOptionsLogo {
	width: 30%;
}

#chargeSummary {
  padding: 20px; 
  width: 70%; 
}
.donate-summary-total {
  margin-top: .25rem;
  padding-top: 0.7em; 
}
.hr-summary {
  border-top: 1px solid #333;  
}
dl {
  margin: 0;
}
dt {
  float: left;
  width: 70%;
}
dd {
  margin-bottom: .5rem;
  margin-left: 0;
  text-align: right;
}  

#fundraiserArea {
  padding: 6px 20px 6px 20px;
  background-color: #ececec;	  
}

#fundraiserList {
  margin-top: 12px; 
}
.fundraiserLine {
  display: flex;
  font-size: 0.8em;
  column-gap: 10px;
  margin-bottom: 12px;  
}
.fundraiserName {
  width: 70%;  
}
.fundraiserAmount {
  text-align: right; 
  width: 30%; 
}

.input_container label { /* override from /register/forms.css */
	font-size: 0.8em;
}

/* Phone field with country code dropdown */
.phone-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.phone-country-code {
  flex: 0 0 180px;
  min-width: 180px;
}

.phone-number {
  flex: 1;
  min-width: 0;
}

#message {
  color: #000;
  width: 98%;
  margin-left: 0px;
  outline: none;
  border: 1px solid #39364f;
  font-size: 0.9em;
  font-family: Raleway, Arial, sans-serif;;
  margin-top: 3px;
  padding: 10px;
  line-height: 1.5em;  
}

.donateButton {
    background-color: #008f8e;
    color: #fff;
    font-size: 1.5em;
    line-height: 1.3em;
    padding: 8px 4px;
    border-radius: 6px;
    margin: 10px 0px 0px 0px;
    cursor: pointer;
    width: 100%;
    height: 52px;
    text-transform: uppercase;
}  
#donateProcessMessage {
    display: none;
    font-size: 1.1em;
    line-height: 1.3em;
    color: #008f8e;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.offsetColor {
    color: #008f8e;
}

/* Flex container that wraps */
.pay-methods { display:flex; flex-wrap:wrap; gap:8px; margin: 10px 0 16px; }
.pay-option { border:2px solid #ddd; border-radius:10px; padding:10px 14px; cursor:pointer; user-select:none; }
.pay-option[aria-pressed="true"] { border-color:#008f8e; background:#008f8e; color:#fff; }
.pay-methods[aria-busy="true"] { opacity:.5; pointer-events:none; user-select:none; }
.pay-option[aria-disabled="true"] { pointer-events:none; }
.hidden { display:none !important; }
.error { color:#b00020; font-size:14px; }
#payment-element, #prb { padding: 12px; margin-top:8px; }
/* Ensure PRB is visible size */
#prb { min-height: 52px; min-width: 200px; }
#prb > div { min-height: 52px; }
.small { font-size:12px; color:#666; }
button { padding:10px 16px; border:0; border-radius:10px; background:#008f8e; color:#fff; font-size:16px; cursor:pointer; }
button[disabled]{ opacity:.6; cursor:not-allowed; }
/*.prb-wrap { position: relative; display: inline-block; }*/
.prb-cover { position: absolute; inset: 0; background: transparent; border: 0; padding: 0; cursor: pointer; }
.prb-cover.hidden { display: none; }
/* ensure the cover actually intercepts clicks */
#prbWrap { position: relative; }
#prbCover.prb-cover {
  position: absolute; inset: 0; 
  z-index: 3;               /* > Stripe element */
  pointer-events: auto; 
  background: transparent;  /* invisible but clickable */
}

/* visually disable the chariot DAF button */
#chariot.disabled-overlay {
  position: relative;
  pointer-events: none;  /* prevent clicks */
  opacity: 0.5;          /* gray it out */
  filter: grayscale(1);
}
#chariot.disabled-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.4);
  cursor: not-allowed;
}

/* end donate css */




@media screen and (max-width: 1140px) { /* only do this if the screen size becomes less than 1140px */
	.headerRight {
		margin-right: 0px !important;
	}

  #maincontainer {
    margin: 0px;
  }  
	.itemBox-other {
    min-width: 250px !important;
		width: 250px !important;
	}
}


@media screen and (max-width: 860px) { 

#chargeSummary {
  width: 98%; 
}

.container {
  min-width: 100%
}

}

@media screen and (max-width: 701px) { 
    body {
        padding-top: 76px; /* Adjust based on header height */
    }
    #headerwrapper {
        max-height: 76px; /* make sure same for body */
    }	  

    .headerRight {
      column-gap: 10px;
    }

    .buttonText {
      display: none;
    }

    .tooltip-wrapper .tooltip-text,.tooltip-wrapper .tooltip-text_after {
      white-space: normal;    /* Allow wrapping */
    }

	  .phone-row {
			flex-direction: column;
		}
		.phone-country-code {
			flex: 1 1 auto;
			width: 100%;
		}
		.phone-number {
			width: 100%;
		}
  

}

@media screen and (max-width: 540px) { /* thermometer changes */
    /* horizontal therometer css */
    .stat .amount {
      font-size: 22px;
    }

    .stat small {
      font-size: 12px;
    }

    .progress-bar-container {
      background-color: #e0e0e0;
      border-radius: 20px;
      overflow: hidden;
      height: 30px;
      margin: 10px 20px;
      position: relative;
    }

    .progress-bar { 
      font-weight: normal;
      font-size: 10px;
    }

    .progress-text.outside {
      font-weight: normal;
      font-size: 10px;
    }

    .remaining {
      font-size: 14px;
    }  

    /* Force Other Amount box to its own line */
    .itemBox-other {
      flex-basis: 100% !important;
      width: 100% !important;
      max-width: 100% !important;
      margin-top: 10px;
    }

  .donateButton {
    font-size: 1.2em;    
  }
}

@media screen and (max-width: 481px) { /* was 480 */
    body {
        padding-top: 66px; /* Adjust based on header height */
    }
    #headerwrapper {
        max-height: 66px; /* make sure same for body */
    }	

    header {
        padding-left: 6px;
        padding-right: 6px;
    }
  
    header img {
      width: 90%;
    } 

    .headerRight {
      align-items: flex-start;
      padding-top: 3px;
    }
    
    /*donation box*/
    #dBB_icon {
      font-size: 70%;	
    }
    #dBB_amount {
      font-size: 2.0em;
      padding-left: 6px;
    }
    #dBB_equal { 
      font-size: 1.8em;
      margin-left: 10px;
    }
    #dBB_effectiveAmt { 
      font-size: 2.0em;
    }
    #matchingNumber {
      margin-bottom: -14px;			
    }
    /*end donation box*/  

    .numberStep {
      padding-left: 42px;
      text-indent: -16px;
    }

    #helpOptions {
        display: block;
    }
    #helpOptionsWords {
        width: 100%;	
    }
    #helpOptionsLogo {
        width: 100%;
        margin: 0 auto;	  
    }
    .numberStep {
    font-size: 1.2em; 
    }
    #donateNumber1Box {
        padding-left: 20px;
        padding-right: 20px; 
    }
    #donateAmount {
    font-size: 1.5em;
    }
    .anon-choices, .tip-choices {
    display: block;  
    }
    .anon-choices label, .tip-choices label {
    width: 100%; 
    margin-bottom: 6px;
    padding: 10px 10px;
    }
    .summarySmaller {
        font-size: 0.9em;
    }     
}

@media screen and (max-width: 416px) { /* for drop of social buttons */

}

@media screen and (max-width: 361px) { /* was 480 */
  .stat .amount {
    font-size: 18px;
  line-height: 0.9em;
  }	
	.summarySmaller {
		font-size: 0.8em;
	}    
}

@media screen and (max-width: 331px) { /* was 360 */
	/*donation box*/ 
	#dBB_amount {
		font-size: 1.6em;
		padding-left: 6px;
	}
	#dBB_equal { 
		font-size: 1.4em;
		margin-left: 10px;
	}
	#dBB_effectiveAmt { 
		font-size: 1.6em;
	}
	/*end donation box*/	
	#amount {
	   width: 60%;
	} 
	#chargeSummary {
		font-size: 0.9em;
	}	    
}

@media screen and (max-width: 281px) {   
	/* must be in this program */
	#amount {
	   width: 50%;
	} 
	/* */ 
	#donateAmount {
	  font-size: 1.3em;
	}
	#chargeSummary {
		font-size: 0.8em;
	}		  
}
/* Select2 Custom Styling */
.select2-container--default .select2-selection--single {
    height: 44px !important;
    display: flex;
    align-items: center;
    font-size: 16px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 44px !important;
    padding-left: 12px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 42px !important;
}
