body
{
    font-family: Highgate, Helvetica, Arial, Sans-Serif, serif;
    margin: 0px;
}
.headerImage{
    width: 100%;
}

/*div {
  font-family: myFirstFont;
}*/

.textRow{
    clear:both;
}

.formText label,
.formText input, .formText select{
  float: left;
}
.redstar {
  color: #e04e38;
}


.sectionSpacer{
    
}

.formText{
    vertical-align: middle;
    height: auto;
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.formFields{
    width: 100%;
}

.closeBoxHolder{
    width:100%;
}
#closeBox{
    float:right;
}

.disable-select {
  -webkit-user-select: none;  
  -moz-user-select: none;    
  -ms-user-select: none;      
  user-select: none;
}




@media (min-width:1px) and (max-width:479px) { 
    .mainDiv{
        padding-left: 5%;
        padding-right: 5%;
    }
    .indemnityButtonMobile
    {
        display: block;
    }
    .indemnityButton
    {
        display: none;
    }
    .greenedButtons{
        -webkit-transition: all 200ms ease;
        -moz-transition: all 200ms ease;
        -ms-transition: all 200ms ease;
        -o-transition: all 200ms ease;
        transition: all 200ms ease;
        text-align: center;
        background-color: #95C120;
        font-family: Highgate, Helvetica, Arial, Sans-Serif, serif;
        font-weight: 800;
        font-size: 18px ;
        line-height: 1 ;
        letter-spacing: 0px ;
        text-decoration: none ;
        text-transform: none ;
        color: #fff ;
        border-top-width: 2px ;
        border-top-style: none ;
        border-right-width: 2px ;
        border-right-style: none ;
        border-bottom-width: 2px ;
        border-bottom-style: none ;
        border-left-width: 2px ;
        border-left-style: none ;
        border-top-left-radius: 100px ;
        border-top-right-radius: 100px ;
        border-bottom-left-radius: 100px ;
        border-bottom-right-radius: 100px ;
        padding-top: 10px ;
        padding-bottom: 10px ;
        padding-left: 20px ;
        padding-right: 20px ;
        box-shadow: none ;
        justify-content: center ;
        margin-bottom:10px;
        cursor: pointer;
    }
    .greyedButtons{
        -webkit-transition: all 200ms ease;
        -moz-transition: all 200ms ease;
        -ms-transition: all 200ms ease;
        -o-transition: all 200ms ease;
        transition: all 200ms ease;
        text-align: center;
        background-color: #F5F8EB;
        font-family: Highgate, Helvetica, Arial, Sans-Serif, serif;
        font-weight: 800;
        font-size: 18px ;
        line-height: 1 ;
        letter-spacing: 0px ;
        text-decoration: none ;
        text-transform: none ;
        color: #484944 ;
        border-top-width: 2px ;
        border-top-style: none ;
        border-right-width: 2px ;
        border-right-style: none ;
        border-bottom-width: 2px ;
        border-bottom-style: none ;
        border-left-width: 2px ;
        border-left-style: none ;
        border-top-left-radius: 100px ;
        border-top-right-radius: 100px ;
        border-bottom-left-radius: 100px ;
        border-bottom-right-radius: 100px ;
        padding-top: 10px ;
        padding-bottom: 10px ;
        padding-left: 20px ;
        padding-right: 20px ;
        box-shadow: none ;
        justify-content: center ;
        margin-bottom:10px;
        border: 0.05em solid #95C120;
    }
    .homeBox{
        padding-top:5px;
        text-align:center;
        font-size: 14px;
        font-family: Highgate, Helvetica, Arial, Sans-Serif, serif;
        font-weight: 400;
        line-height: 1 ;
    }
    .AsAThankYouText{
        font-family: Highgate, Helvetica, Arial, Sans-Serif, serif;
        font-weight: 600;
        color: #95C120;
        font-size: 18px ;
        line-height: 1 ;
        font-style: italic;
    }
    
    .DetailsTitle{
        font-family: Highgate, Helvetica, Arial, Sans-Serif, serif;
        font-weight: 800;
        font-size: 24px ;
        line-height: 1 ;
    }
    .DetailsText{
        display:none;
    }
    .DetailsTextMobile{
        font-family: Highgate, Helvetica, Arial, Sans-Serif, serif;
        font-weight: 400;
        font-size: 18px ;
        line-height: 1 ;
        display:block;
    }
    
    
    .imageDiv
    {
        display:none;
    }
    .mobileImageDiv
    {
        width: 100%;
        display:block;
    }
    .RatingsDiv{
        font-family: Highgate, Helvetica, Arial, Sans-Serif, serif;
        font-weight: 500;
        font-size: 18px ;
        line-height: 1 ;
        padding-top: 20px;
    }
    
    
    
    /* The container */
    .container {
      position: relative;
      padding-left: 30px;
      margin-bottom: 20px;
      margin-right: 20px;
      cursor: pointer;
      font-size: 22px;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
    }
    
    /* Hide the browser's default radio button */
    .container input {
      position: absolute;
      opacity: 0;
      cursor: pointer;
    }
    
    /* Create a custom radio button */
    .checkmark {
      position: absolute;
      top: 0;
      left: 0;
      height: 20px;
      width: 20px;
      background-color: #FFF;
      border-radius: 50%;
      border: 0.1em solid #95C120;
    }
    
    /* On mouse-over, add a grey background color */
    .container:hover input ~ .checkmark {
      background-color: #F5F8EB;
    }
    
    /* When the radio button is checked, add a green background */
    .container input:checked ~ .checkmark {
      background-color: #95C120;
    }
    
    /* Create the indicator (the dot/circle - hidden when not checked) */
    .checkmark:after {
      content: "";
      position: absolute;
      display: none;
    }
    
    /* Show the indicator (dot/circle) when checked */
    .container input:checked ~ .checkmark:after {
      display: block;
    }
    
    /* Style the indicator (dot/circle) */
    .container .checkmark:after {
     	top: 8px;
    	left: 8px;
    	width: 7px;
    	height: 7px;
    	border-radius: 50%;
    	background: #000;
    }
}



@media (min-width:480px) {  
    .mainDiv{
        padding-left:5%;
        padding-right: 5%;
    }
    .indemnityButtonMobile
    {
        display: none;
    }
    .indemnityButton
    {
        display: block;
    }
    
    .greenedButtons{
        -webkit-transition: all 200ms ease;
        -moz-transition: all 200ms ease;
        -ms-transition: all 200ms ease;
        -o-transition: all 200ms ease;
        transition: all 200ms ease;
        text-align: center;
        background-color: #95C120;
        font-family: Highgate, Helvetica, Arial, Sans-Serif, serif;
        font-weight: 800;
        font-size: 18px ;
        line-height: 1 ;
        letter-spacing: 0px ;
        text-decoration: none ;
        text-transform: none ;
        color: #fff ;
        border-top-width: 2px ;
        border-top-style: none ;
        border-right-width: 2px ;
        border-right-style: none ;
        border-bottom-width: 2px ;
        border-bottom-style: none ;
        border-left-width: 2px ;
        border-left-style: none ;
        border-top-left-radius: 100px ;
        border-top-right-radius: 100px ;
        border-bottom-left-radius: 100px ;
        border-bottom-right-radius: 100px ;
        padding-top: 10px ;
        padding-bottom: 10px ;
        padding-left: 20px ;
        padding-right: 20px ;
        box-shadow: none ;
        justify-content: center ;
        margin-bottom:10px;
        cursor: pointer;
    }
    .greyedButtons{
        -webkit-transition: all 200ms ease;
        -moz-transition: all 200ms ease;
        -ms-transition: all 200ms ease;
        -o-transition: all 200ms ease;
        transition: all 200ms ease;
        text-align: center;
        background-color: #F5F8EB;
        font-family: Highgate, Helvetica, Arial, Sans-Serif, serif;
        font-weight: 800;
        font-size: 18px ;
        line-height: 1 ;
        letter-spacing: 0px ;
        text-decoration: none ;
        text-transform: none ;
        color: #484944 ;
        border-top-width: 2px ;
        border-top-style: none ;
        border-right-width: 2px ;
        border-right-style: none ;
        border-bottom-width: 2px ;
        border-bottom-style: none ;
        border-left-width: 2px ;
        border-left-style: none ;
        border-top-left-radius: 100px ;
        border-top-right-radius: 100px ;
        border-bottom-left-radius: 100px ;
        border-bottom-right-radius: 100px ;
        padding-top: 10px ;
        padding-bottom: 10px ;
        padding-left: 20px ;
        padding-right: 20px ;
        box-shadow: none ;
        justify-content: center ;
        margin-bottom:10px;
    }
    .homeBox{
        padding-top:5px;
        text-align:center;
        font-family: Highgate, Helvetica, Arial, Sans-Serif, serif;
        font-weight: 400;
        font-size: 14px ;
        line-height: 1 ;
        
    }
    
    .DetailsTitle{
        font-family: Highgate, Helvetica, Arial, Sans-Serif, serif;
        font-weight: 800;
        font-size: 18px ;
        line-height: 1 ;
    }
    .DetailsText{
        font-family: Highgate, Helvetica, Arial, Sans-Serif, serif;
        font-weight: 400;
        font-size: 24px ;
        line-height: 1 ;
        display:block;
    }
    .DetailsTextMobile{
        display:none;
    }
    .AsAThankYouText{
        font-family: Highgate, Helvetica, Arial, Sans-Serif, serif;
        font-weight: 600;
        color: #95C120;
        font-size: 18px ;
        line-height: 1 ;
        font-style: italic;
    }
    .textBlockDiv
    {
        display: block;
        align-items: center;
        height: 62%;
        padding-left: 3%;
    }
    .imageDiv
    {
        width: 33%;
        float: left;
    }
    .mobileImageDiv
    {
        display:none;
    }
    .RatingsDiv{
        font-family: Highgate, Helvetica, Arial, Sans-Serif, serif;
        font-weight: 500;
        font-size: 18px ;
        line-height: 1 ;
        padding-top: 20px;
    }
    
    /* The container */
    .container {
      position: relative;
      padding-left: 35px;
      margin-bottom: 20px;
      margin-right: 20px;
      cursor: pointer;
      font-size: 22px;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
    }
    
    /* Hide the browser's default radio button */
    .container input {
      position: absolute;
      opacity: 0;
      cursor: pointer;
    }
    
    /* Create a custom radio button */
    .checkmark {
      position: absolute;
      top: 0;
      left: 0;
      height: 25px;
      width: 25px;
      background-color: #FFF;
      border-radius: 50%;
      border: 0.1em solid #95C120;
    }
    
    /* On mouse-over, add a grey background color */
    .container:hover input ~ .checkmark {
      background-color: #F5F8EB;
    }
    
    /* When the radio button is checked, add a green background */
    .container input:checked ~ .checkmark {
      background-color: #95C120;
    }
    
    /* Create the indicator (the dot/circle - hidden when not checked) */
    .checkmark:after {
      content: "";
      position: absolute;
      display: none;
    }
    
    /* Show the indicator (dot/circle) when checked */
    .container input:checked ~ .checkmark:after {
      display: block;
    }
    
    /* Style the indicator (dot/circle) */
    .container .checkmark:after {
     	top: 9px;
    	left: 9px;
    	width: 8px;
    	height: 8px;
    	border-radius: 50%;
    	background: #000;
    }
}







.TheActualBox
{
    border-style: solid;
    border-color: #95C120;
}
.QuestionsText
{
    font-family: Highgate, Helvetica, Arial, Sans-Serif, serif;
    font-weight: 800;
    font-size: 18px ;
    line-height: 1.5 ;
}

.CampDetails
{
    font-family: Highgate, Helvetica, Arial, Sans-Serif, serif;
    font-weight: 800;
    font-size: 18px ;
    line-height: 1.5 ;
}

.CampersTableHeaders
{
    font-family: Highgate, Helvetica, Arial, Sans-Serif, serif;
    font-weight: 600;
    font-size: 16px ;
    line-height: 1.5 ;
    text-align: center;
    background-color: #D3E6A6;
}
.RegisteredCampersTitle{
    font-family: Highgate, Helvetica, Arial, Sans-Serif, serif;
    font-weight: 600;
    font-size: 16px ;
    line-height: 1.5 ;
    text-align:center;
    width: 70%;
    text-decoration: underline;
    text-decoration-thickness: 5px;
    text-decoration-color:#94C120;
}
.CancelledCampersTitle{
    font-family: Highgate, Helvetica, Arial, Sans-Serif, serif;
    font-weight: 600;
    font-size: 16px ;
    line-height: 1.5 ;
    text-align:center;
    width: 70%;
    text-decoration: underline;
    text-decoration-thickness: 5px;
    text-decoration-color:#FF0000;
}
.OptionsDropDown{
    font-family: Highgate, Helvetica, Arial, Sans-Serif, serif;
    font-weight: 400;
    font-size: 16px ;
    border-color: #E7E7E7;
}
.RegGuestsRow{
    padding-top:10px;
    padding-bottom:20px;
}
.Options{
    line-height: 1.5;
    text-align: left;
}
.campersTable{
    border-color:#fff;
}
.CampersTableText{
    font-family: Highgate, Helvetica, Arial, Sans-Serif, serif;
    font-weight: 400;
    font-size: 14px ;    
}
.button {
        background-color: #CCE86F;
        border-radius: 10px;
        color: #484944;
        padding: 3px 8px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 16px;
        margin: 4px 2px;
        cursor: pointer;
        box-shadow: 3px 3px #E7E7E7;
      }

.oddRow
{
    font-family: Highgate, Helvetica, Arial, Sans-Serif, serif;
    font-weight: 400;
    font-size: 14px ;
    line-height: 1 ;
    background-color: #f8f8f8;
}
.whiteBG
{
    background-color: #fff;
}
.evenRow
{
    font-family: Highgate, Helvetica, Arial, Sans-Serif, serif;
    font-weight: 400;
    font-size: 14px ;
    line-height: 1 ;
    /*background-color: #C9C9C9;*/
    background-color: #E7E7E7;
}
.TitleHolder
{
    width:100%;
}
.howToUseVideo
{
    text-align: right;
    padding-left: 5%;
    padding-right: 5%;
    margin-top: 20px;
}
.howToUseVideoText
{
    font-family: Highgate, Helvetica, Arial, Sans-Serif, serif;
    font-weight: 400;
    font-size: 12px ;
    line-height: 1 ;
    cursor: pointer;
}

.emailToBox{
    width: 280px;
    margin-left: 20px;
    margin-right: 20px;
}
.leftAlignBlock{
    display: block;
    text-align: left;
    padding-top:20px;
}



.TextDiv{
    margin-top: 20px;
}
.textBox{
    width:100%;
    background-color:#F5F8EB;
    border: 0.1em solid #95C120;
    font-family: Highgate, Helvetica, Arial, Sans-Serif, serif;
    font-weight: 400;
    cursor: pointer;ont-size: 16px ;
    line-height: 1.5 ;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    padding-left: 12px;
}

/* The checkboxContainer */
.checkboxContainer {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkboxContainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkboxMark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #F5F8EB;
  border: 0.05em solid #95C120;
}

/* On mouse-over, add a green background color */
.checkboxContainer:hover input ~ .checkboxMark {
  background-color: #95C120;
}

/* When the checkbox is checked, add a green background */
.checkboxContainer input:checked ~ .checkboxMark {
  background-color: #95C120219;
  border: 0.05em solid #000;
}

/* Create the checkboxMark/indicator (hidden when not checked) */
.checkboxMark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkboxMark when checked */
.checkboxContainer input:checked ~ .checkboxMark:after {
  display: block;
}

/* Style the checkboxMark/indicator */
.checkboxContainer .checkboxMark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid #000;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.addPointer{
    cursor: pointer;
}