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:300px) and (max-width:980px) { 
    .mainDiv{
        padding-left: 5%;
        padding-right: 5%;
    }
    
    .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:20px;
        text-align:center;
        font-size: 24px;
        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{
        font-family: Highgate, Helvetica, Arial, Sans-Serif, serif;
        font-weight: 400;
        font-size: 24px ;
        line-height: 1 ;
    }
    
    
    .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:981px) {  
    .mainDiv{
        padding-left:15%;
        padding-right: 15%;
    }
    
    
    .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:20px;
        text-align:center;
        font-family: Highgate, Helvetica, Arial, Sans-Serif, serif;
        font-weight: 400;
        font-size: 16px ;
        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: 18px ;
        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;
    }
    .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;*/
    }
    
    
}

.star-cb-group {
  /* remove inline-block whitespace */
  font-size: 0;
  /* flip the order so we can use the + and ~ combinators */
  unicode-bidi: bidi-override;
  direction: rtl;
  /* the hidden clearer */
}
.star-cb-group * {
  font-size: 1rem;
}
.star-cb-group > input {
  display: none;
}
.star-cb-group > input + label {
  /* only enough room for the star */
  display: inline-block;
  overflow: hidden;
  text-indent: 9999px;
  width: 1em;
  white-space: nowrap;
  cursor: pointer;
  font-size:40px;
}
.star-cb-group > input + label:before {
  display: inline-block;
  text-indent: -9999px;
  content: "☆";
  color: #95C120;
}
.star-cb-group > input:checked ~ label:before, .star-cb-group > input + label:hover ~ label:before, .star-cb-group > input + label:hover:before {
  content: "★";
  color: #95C120;
  text-shadow: 0 0 1px #333;
}
.star-cb-group > .star-cb-clear + label {
  text-indent: -9999px;
  width: .5em;
  margin-left: -.5em;
}
.star-cb-group > .star-cb-clear + label:before {
  width: .5em;
}
.star-cb-group:hover > input + label:before {
  content: "☆";
  color: #95C120;
  text-shadow: none;
}
.star-cb-group:hover > input + label:hover ~ label:before, .star-cb-group:hover > input + label:hover:before {
  content: "★";
  color: #95C120;
  text-shadow: 0 0 1px #333;
}



















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


.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;
    font-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: 14px;
  -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;
}