.landingContainer {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 300px;
  margin: auto;
}
.container {
  display: block;
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family: Arial, Helvetica, sans-serif;
}
.containerSwitch {
  display: flex;
  position: relative;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family: Arial, Helvetica, sans-serif;
}
.headerImage {
  padding-top: 1rem;
  width: 300px;
} /* Hide the browser's default checkbox */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
} /* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 4px;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
  border-radius: 15px;
} /* When the checkbox is checked, add a yellow background */
.container input:checked ~ .checkmark {
  background-color: #f8b800;
} /* Create the
checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: '';
  position: absolute;
  display: none;
} /* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
  display: block;
} 
/* Style the
checkmark/indicator */
.container .checkmark:after {
  left: 6px;
  top: 3px;
  width: 5px;
  height: 7px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* SWITCH */
.switchOne {
  position: relative;
  display: inline-block;
  width: 100px;
  height: 23px;
  margin-bottom: 1rem;
}
.switchTwo {
  position: relative;
  display: inline-block;
  width: 77px;
  height: 23px;
  margin-bottom: 1rem;
}
.switchThree {
  position: relative;
  display: inline-block;
  width: 79px;
  height: 23px;
  margin-bottom: 1rem;
}
.switchFour {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 23px;
  margin-bottom: 1rem;
}
.switchFive {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 23px;
  margin-bottom: 1rem;
}
.slider {
  width:45px;
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #eee;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 34px;
}
.slider:before {
  position: absolute;
  content: '';
  height: 15px;
  width: 15px;
  left: 3px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 50%;
}
input:checked + .slider {
  background-color: #f8b800;
}
input:focus + .slider {
  box-shadow: 0 0 1px #f8b800;
}
input:checked + .slider:before {
  -webkit-transform: translateX(18px);
  -ms-transform: translateX(18px);
  transform: translateX(18px);
}
.iconStyle {
  height: 50px;
  width: 50px;
}
.spacerDiv {
  padding: 0;
}
.questionStyle {
  font-weight: bold;
  font-size: 16px;
}
.responseStyle {
  font-size: 16px;
} /* FINAL */
.finalBoldText {
  font-weight: bold;
  text-align: center;
  width: 100%;
  font-size: 18px;
  margin: 5rem 0;
} /* UNSUBSCRIBE */
.unsubscribeBoldText {
  font-weight: bold;
  justify-content: left;
  width: 100%;
  font-size: 18px;
}
.unsubscribeText {
  font-size: 16px;
  margin-top: 0;
  color: gray;
  line-height: 20px;
}
/* UPDATE */
.iconStyleUpdate {
  height: 50px;
  width: 50px;
}
.linkStyle {
  text-decoration: underline;
  color: gray;
}
.updateButton {
  width: 100%;
  font-family: Arial, Helvetica, sans-serif;
  padding: 12px 20px;
  border: none;
  background-color: #f8b800;
  font-size: 18px;
  color: #363636;
  text-align: center;
  line-height: 20px;
 letter-spacing:1.5px;
}
.updateContainer {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.iconContainer {
  margin: auto;
}
.textContainerUpdate {
  padding: 0 2rem;
}
.defaultButton {
  cursor:pointer;
  font-family:  Arial, Helvetica, sans-serif;
  padding: 0.5rem 2rem;
  font-size: 16px;
  color: white;
  background-color: #c7c2ba;
  border: 1px solid gray;
}
/* FOOTER */
.stylingblockFooter {
  text-align: center;
  padding: 0 0 20px 0;
}
.tableFooter{
  width: 100%;
  font-family: Arial, Helvetica, sans-serif;
  padding: 20px 40px 40px;
  background-color: #eef0f1;
  margin-top: 20px;
}
.separatorWidth {
  width:300px;
}

@media only screen and (min-width: 520px) {
  .landingContainer {
    width: 500px;
  }
  .iconStyle {
    height: 70px;
    width: 70px;
    padding-left: 2rem;
  }
  .headerImage {
    width: 500px;
  } /* UPDATE */
  .iconStyleUpdate {
    height: 70px;
    width: 70px;
  }
  .updateContainer {
    display: flex;
    flex-direction: row;
    width: 100%;
  }
  .iconContainer {
    margin: 0;
  }
  .defaultButton {
    padding: 0.5rem 6rem;
  }
  .switchOne {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 23px;
    margin-bottom: 1rem;
  }
  .switchTwo {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 23px;
    margin-bottom: 1rem;
  }
  .switchThree {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 23px;
    margin-bottom: 1rem;
  }
  .switchFour {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 23px;
    margin-bottom: 1rem;
  }
  .switchFive {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 23px;
    margin-bottom: 1rem;
  }
  /* FOOTER */
  .stylingblockFooter {
    text-align: left;
    padding: 10px 0px 0px 99px;
  }
}
@media only screen and (min-width: 748px) {
  .switchOne {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 23px;
    margin-bottom: 1rem;
  }
  .spacerDiv {
    padding: 1rem;
  }
  .landingContainer {
    width: 800px;
  }
  .iconStyle {
    height: 100px;
    width: 100px;
    padding-left: 4rem;
  }
  .headerImage {
    padding-top: 1rem;
    width: 700px;
  }
  .questionStyle {
    font-size: 18px;
  }
  .container {
    font-size: 18px;
  }
  .responseStyle {
    font-size: 18px;
  } /* FINAL */
  .finalBoldText {
    font-size: 25px;
  } /* UNSUBSCRIBE */
  .unsubscribeBoldText {
    font-size: 25px;
  }
  .unsubscribeText {
    font-size: 16px;
  } /* UPDATE */
  .iconStyleUpdate {
    height: 100px;
    width: 100px;
    margin-right: 2rem;
  }
  .separatorWidth {
    width:650px;
  }
}
