@charset "utf-8";
/* CSS Document */

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: 113px; /* Adjust based on header height */
}
*, *:before, *:after {
  box-sizing: border-box;
}

/* prevent margin collapse & set anchor offset */
#scrollMainBoard {
  scroll-margin-top: 113px;
  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; }


.container {
	max-width: 1140px;	
	margin: 0 auto;
}
.smallerContainer {
	max-width: 700px;
	margin: 0 auto;	
}
p, div {
    margin: 0;
}
a {
	color: blue; 
}
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;
}

.video-container {
  flex: 1;  
  position: relative;
  padding-bottom: 56.25%;
  height: 0; 
  overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*.multi_inputs {
  column-gap: 20px; /* add gap between input fields 
}*/

.actionButtons {
	margin-top: 20px;
	display: flex; 
	flex-wrap: wrap; 
	column-gap: 20px;
}
.actionButton {
    min-width: 100px;
	background-color: #000;
	color: #fff;
	font-size: 1.0em;
	line-height: 1.3em;
	padding: 8px 4px;
	border-radius: 6px;
	margin-bottom: 20px;
	cursor: pointer;
}

.uploadButton {
	border: 1px solid #333;
	padding: 5px 0px;
	margin: 5px;
	background: #777;
	color: #fff;
	width: 100px;
	text-align: center;
	display: inline-block;
	cursor: pointer;
}

#maincontainer {
	padding: 20px;
	max-width: 1100px;
	line-height: 1.5em;	
}

/* 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: 113px; /* 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;
}

/* Menu container */
.nav {
  background: #333;
}

/* Main menu list */
.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}

.nav li {
  border-right: 1px solid #555;
}

.nav li:last-child {
  border-right: none;
}

.nav a {
  display: block;
  padding: 8px 20px;
  color: white;
  text-decoration: none;
}

.nav a:hover {
  background: #575757;
}

/* Mobile styles */
.nav input[type="checkbox"] {
  display: none;
}

.menu-icon {
  display: none;
  background: #333;
  color: white;
  padding: 8px 20px;
  cursor: pointer;
}

#fundButton,
#loginButton {
  padding: 6px 12px;
  background: #fff;
  color: #fff;
  font-size: 0.8em;
  border: 1px solid #000;
  cursor: pointer;
  border-radius: 6px; 
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#fundButton i,
#loginButton i {
  font-size: 1.2em;
}

#fundButtons {
	display: flex;
	column-gap: 10px;
}

#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;
}

/* end of tooltips top */

.videoButton {
  top: 50%;
  right: 50%;
  position: absolute;
  z-index: 3;
  transform: translate(50%,-50%);
  font-size: 110px;
  line-height: 1;
  color: #000;
  text-decoration: none;
  background-color: transparent;
  cursor: pointer;
}
/* end header area */



/* marquee */
.horizontal_scroller {
	position:relative;
	height:30px;
	width:100%;
	display:block;
	overflow:hidden;
}
.marqueetext {
	margin-top: 5px;
	position:absolute;
	white-space:nowrap;
	font-size:16px;
	font-weight: bold;
	color:#000000;
}
/* end marquee */

/* countdown box */

.campaignCountdown {
    background-color: #ececec;
	border-radius: 4px;
	height: 172px;
	text-align: center;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	/*line-height: 3.0em;*/	
	color: #000;
}

.campaignCountdownNumber {
	font-size: 4em;
	font-weight: bold;
}

.campaignCountdownText {
	line-height: 1.0em; 
	padding-top: 18px;
  	padding-bottom: 24px;
    font-weight: 600;	
}

#cdblocks {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  column-gap: 10px;
}

#cdcontainer .countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
}

#cdcontainer .time-box {
  border-radius: 12px;
  padding: 10px 15px;
  min-width: 80px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

#cdcontainer .number {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5em;
}

#cdcontainer .label {
  font-size: 1rem;
  line-height: 1.1em;  
}

#cdcontainer .endmessage {
	padding-top: 12px; 
	font-size: 1.2em; 
	line-height: 1.2em; 
	font-weight: bold;
}
/* end countdown box */



/* horizontal therometer css */
#thermBox {
	padding: 10px; 
	padding-top: 28px;
	height: 172px;	
	background: #ececec;  
	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: #28a745; }

.stat small {
  display: block;
  font-size: 12px;
  font-weight: normal;
  color: #000;
}


.progress-bar-container {
  background-color: #e0e0e0;
  border-radius: 20px;
  overflow: hidden;
  height: 30px;
  margin: 10px 20px;
  position: relative;
}

.progress-bar {
  background: linear-gradient(to right, #28a745, #1e7e34);
  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: 12px;
}


/* donationBoxButton */

#dBB_donationButtonBox {

}
#dBB_donationButtonBoxInside {
	display: flex;	
	gap: 16px;
}

#dBB_effective {
  	display: flex;	
	align-items: center;
  	justify-content: center;
	margin-bottom: 30px;
	margin-top: 20px;
}

#dBB_moneyArea {
	flex: 3;
	/*border-top: 1px solid #999;
	border-left: 1px solid #999;
	border-bottom: 1px solid #999;*/
	padding-top: 20px;	
	padding-left: 20px;	
	border-radius: 4px;
	background: #ececec;
}
#dBB_amount {
	font-size: 2.7em;
	/*height: 60px;*/
	padding-left: 20px;
	border: 1px solid #999;
	border-radius: 4px;	
	box-shadow: 0px 3px 6px #00000029;
	margin-right: 30px;
	background: #fff;
}

#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;
}

#dBB_equal { 
	font-size: 2.7em;
	margin-left: 20px;
}

#matchingNumber {
	font-weight:900; 
	font-size: 2.0em; 
	margin-bottom: -6px;
}

#matchingHands {
	font-weight:900; 
	font-size: 1.5em;	
}

#dBB_effectiveAmt { 
	font-size: 3em;
}

#dBB_buttonArea {
	flex: 1;	
	position: relative;
	cursor: pointer;
}

#dBB_donateButton {
	font-size: 2.5em;
	font-weight: 900;
}

#dBB_donateButton {
	cursor: pointer;
}

/*end donationBoxButton */



/*sponsoritems */
#sponsorItemBox {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	/*overflow-x: auto;*/
	column-gap: 14px;
	row-gap: 20px;
  	padding-bottom: 20px;
}
.itemBox {
	cursor: pointer;
	width: 200px;
	flex-shrink: 0;	
}
.itemBoxLabel {
	height: 50px;
	background: #ececec;
	color: #000000;
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
	padding: 0px 6px;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 0.8em;
	line-height: 1.2em;
}

.itemBoxPrice {
	height: 50px;	
	background: #000;
	color: #fff;	
	border-bottom-left-radius: 6px;
	border-bottom-right-radius: 6px;
	font-size: 1.3em;		
}
/*end sponsoritems */


/*fundraiserButton */
#becomeFundraiserButtonArea {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  background: #ececec;
  /*border: 1px solid #999;*/
}

#becomeFundraiserButton {
	padding: 20px 20px;
	background: #000;
	color: #fff;
	font-size: 2.0em;	
	border: 1px solid #000;	
	cursor: pointer;
	border-radius: 6px; 
}
/*end fundraiserButton */



/*mainboard*/
/*somehow this section makes the nav overflow*/
#mainboard {
	white-space: nowrap;
	overflow: hidden;
}
#mainboard ul {
	overflow-x: auto;
}	
#mainboard ul li {
	display: inline-block;
	float: none;
	vertical-align: bottom;
}
/*somehow this section makes the nav overflow*/

div#mainboard.ui-widget {
	font-family: Raleway, Arial, sans-serif;
}

div#mainboard.ui-tabs {
	padding: 0px;
}

div#mainboard.ui-tabs .ui-tabs-nav {
  padding: .2em 2.0em .2em;
}

div#mainboard.ui-tabs .ui-tabs-panel {
	white-space: normal;
	padding: 0.5em 1em;	
}

div#mainboard.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
  text-transform: uppercase;
  font-size: 0.9em;
  font-weight: bold;
}

div#mainboard.ui-tabs .ui-tabs-nav li.ui-tabs-active {
  margin-bottom: -3px;
  padding-bottom: 4px;
}

div#mainboard.ui-widget-header {
  background: #ececec;
}

div#mainboard.ui-tabs .ui-tabs-nav li {
	margin-right: 2.5em;
}


div#mainboard.ui-state-default, div#mainboard.ui-widget-content .ui-state-default, div#mainboard.ui-widget-header div#mainboard.ui-state-default {
	/* controls the border around each tab*/
	border: none;
  	background: none;
  	font-weight: normal;
  	color: #000;
}

.contentBlock {
	max-width: 1060px;
	padding: 20px 50px 20px 50px;
	margin: 6px;
	background: #ececec;	
	border-radius: 4px;
}

/*end mainboard*/




/*inside pages */
#insidePageWrapper {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  padding: 20px 40px 20px 40px; 
  border-radius: 3px;
  background: white;
}

#closePage {
	margin-bottom: 20px;
	margin-right: 20px;
	color: #000;	
	display: flex;
	justify-content: flex-end;
}
/*end inside pages */


/*fundraiser page */


/*end fundraiser page */


#footerText {
	padding-top: 12px; 
	padding-bottom: 6px; 
	margin: 0 auto; 
	font-size: 11px; 
	text-align: center;	
}


@media screen and (max-width: 1140px) { /* only do this if the screen size becomes less than 1140px */
	.headerRight {
		margin-right: 0px !important;
	}
    .nav ul {
      display: none;
      flex-direction: column;
    }

    .nav input:checked ~ ul {
      display: flex;
    }

    .menu-icon {
      display: block;
    }	
}

@media screen and (max-width: 860px) { 
	/*donation box*/
	#dBB_donationButtonBoxInside {
		display: block;
	}
	#dBB_buttonArea {
		min-height: 70px;
		padding-top: 0px;
	}
	#dBB_moneyArea {
		/*border: 1px solid #999;*/
	}
	
    #dBB_effective {
        margin-top: 10px;
		margin-bottom: 10px;
        padding-bottom: 20px;
    }	
	
	#amount::placeholder {
    	font: 0.4em Raleway, Arial, sans-serif;
	}
	/*end donation box*/
	
	/*mainboard*/
	div#mainboard.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
	  font-size: 0.7em;
	}
	
	div#mainboard.ui-tabs .ui-tabs-nav {
	  padding: .2em .2em .2em;
	}
	
	div#mainboard.ui-tabs .ui-tabs-nav li {
		margin-right: 0.2em;
	}	
	/*end mainboard*/
	
	#cdblocks {
		column-gap: 20px;
	}
}

@media screen and (max-width: 701px) { 
	/*donation box*/
	#amount {
	  width: 60%;
	}
	/*end donation box*/

    .headerRight {
      column-gap: 10px;
    }

    .buttonText {
      display: none;
    }

    #fundButton,
    #loginButton {
      width: 24px;
      height: 24px;
      padding: 0;
      border-radius: 10px;
    }

    #fundButton i,
    #loginButton i {
      font-size: 1.0em;
    }	

	#cdblocks {
		column-gap: 10px;
	}

    .tooltip-wrapper .tooltip-text,.tooltip-wrapper .tooltip-text_after {
      white-space: normal;    /* Allow wrapping */
    }

}

@media screen and (max-width: 540px) { /* thermometer changes */
    /* horizontal therometer css */
    .stat .amount {
      font-size: 22px;
    }

    .stat small {
      font-size: 11px;
    }

    .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: 11px;
    }  


    .contentBlock {
        padding: 20px;
    }
	
	.contentBlock h1 {
		font-size: 1.7em;
	}

}

@media screen and (max-width: 416px) { /* for drop of social buttons */
    body {
        padding-top: 133px; /* Adjust based on header height */
    }
    #headerwrapper {
        max-height: 133px; /* make sure same for body */
    }
}

@media screen and (max-width: 481px) { /* was 480 */
	header img {
		width: 50%;
	} 
	
	#maincontainer img {
	  float: none !important;
	  display: block !important;
	  margin: 0 !important;
	}  
	
	.videoButton {
		font-size: 55px;
	}
	
	/*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*/  

	#insidePageWrapper {
	  padding: 20px;		
	}
	
	.campaignCountdown {
		height: 142px;	
	}
	
    #cdcontainer .time-box {
      padding: 4px;	
	  min-width: 60px;
	}

    #cdcontainer .number {
      font-size: 1.3rem;
      font-weight: bold;
      line-height: 1.3em;
    }

    #cdcontainer .label {
      font-size: 0.8rem;
      line-height: 1.0em;  
    }
	
}

@media screen and (max-width: 361px) { /* was 480 */
	header img {
		width: 60%;
	} 
    .stat .amount {
      font-size: 18px;
	  line-height: 0.9em;
    }	
}

@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*/	
}