@import url("https://fonts.googleapis.com/css2?family=Pacifico&display=swap");
html.noJs .visibleWhileLoading,
html:not(.noJs) .hiddenWithJs,
.hidden,
.showOnPopulate {
  display: none;
}

.notVisible,
.invisibleWhileLoading {
  visibility: hidden;
}

html,
body {
  width: 100%;
  height: 100%;
  text-align: left;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  color: #384e8b;
  margin: 0px 0px 0px 0px;
  border: 0px;
  padding: 0px;
}

.purpleBodyBackground {
  background: #f3f4fc;
}

.blueBodyBackground {
  background: #f0fbff;
}

.contentContainer {
  max-width: 1100px;
  border: 0px;
  margin: 0px auto;
  position: relative;
}

.clear {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

.StaticText p {
	word-break: break-word;
}

.StaticText table {
	word-break: normal;
}

.StaticText figure.table {
	overflow: auto;
	display: block;
	margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 40px;
    margin-inline-end: 40px;
}

.StaticText .flexyItem {
	width: 100%;
}

img {
  border: 0px;
  margin: 0px;
  padding: 0px;
  line-height: 0px;
  max-width: 100%;
}

a img {
  border: 0px;
  margin: 0px;
  padding: 0px;
  line-height: 0px;
}

.left {
  text-align: left;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

:focus {
  outline: 0;
}

/*****************
// -----------------
// DROPDOWN FORM AREA 
// _________________
// *****************/
#navbar {
  background-color: #1d4d76;
  position: fixed;
  top: -150px;
  width: 100%;
  height: 120px;
  display: flex;
  transition: top 0.3s;
  justify-content: space-around;
  z-index: 10000;
  -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.43);
  -moz-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.43);box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.43);
}

#navbar .contentContainer {
  width: 1200px;
}

#navbar a {
  display: block;
  color: #878472;
  text-align: center;
  padding: 15px;
  text-decoration: none;
}

#navbar a:hover {
  background-color: #878472;
  color: #3f3f37;
}

#navbar .formTitleTxt {
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  color: #fff;
  text-align: left;
  margin: 0px 0px 0px 0px;
  border: 0px;
  padding: 6px 0px 10px 0px;
}

#navbar .formTitleTxt span {
  font-weight: 700;
  color: #00deff;
  margin: 0px 3px 0px 0px;
}

#navbar .inputGroup {
  width: 100%;
  height: 56px;
  box-sizing: border-box !important;
  /* REMOVES PADDING WITH 100% WiDTHS */
  border: 0px;
}

#navbar .inputGroup span {
  font-size: 11px;
  display: inline;
}

#navbar .inputGroup label {
  height: 56px;
  padding: 16px 10px 8px 17px !important;
  box-sizing: border-box !important;
  /* REMOVES PADDING WITH 100% WiDTHS */
  border: 0px;
  font-size: 16px;
}

#navbar .inputGroup label:after {
  right: 17px;
  top: 50%;
  width: 32px;
  height: 32px;
  background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23fff' fill-rule='nonzero'/%3E%3C/svg%3E ");
}

#navbar .btn {
  width: 250px;
  height: 56px;
  display: block;
  border: none;
  box-sizing: border-box;
  text-align: center;
  cursor: pointer;
  outline: none;
  overflow: hidden;
  position: relative;
  font-family: "Poppins", sans-serif;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  background-color: #fe2f64;
  padding: 0px;
  margin: 0 auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border-radius: 99px;
  -webkit-appearance: none;
}

#navbar .btn span {
  position: absolute;
  left: 50%;
  top: 0%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
  width: 100% !important;
  height: 140% !important;
  padding-top: 15px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  color: #fff;
}

#navbar .btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 490%;
  width: 170%;
  background: #5562eb;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: translateX(-110%) translateY(-25%) rotate(45deg);
  transform: translateX(-110%) translateY(-25%) rotate(45deg);
  color: #fff;
}

#navbar .btn:hover:after {
  -webkit-transform: translateX(-9%) translateY(-25%) rotate(45deg);
  transform: translateX(-9%) translateY(-25%) rotate(45deg);
  color: #fff;
}

.btn span {
  position: absolute;
  left: 50%;
  top: 0%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
  width: 100% !important;
  height: 100% !important;
  padding-top: 13px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  color: #fff;
}

.btn span:hover {
  color: #fff;
}

.btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 490%;
  width: 140%;
  background: #5562eb;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: translateX(-110%) translateY(-25%) rotate(45deg);
  transform: translateX(-110%) translateY(-25%) rotate(45deg);
  color: #fff;
}

.btn:hover:after {
  -webkit-transform: translateX(-9%) translateY(-25%) rotate(45deg);
  transform: translateX(-9%) translateY(-25%) rotate(45deg);
  color: #fff;
}

#navbar #timer {
  display: flex;
  width: auto !important;
  margin: 0px auto;
  padding: 2px 0px 0px 0px;
  text-align: center;
  justify-content: center;
  color: #fff;
}

#navbar #timer div {
  align-self: center;
}

#navbar #timer i {
  font-size: 30px;
  margin-top: 4px !important;
  margin-left: 5px;
  margin-right: 5px;
}

#navbar #timer div span {
  display: block;
  margin-top: 5px;
  font-size: 13px;
  line-height: 16px;
  text-align: left;
  font-weight: 600;
}

#navbar #stopWatch {
  width: 60px;
  margin: 0px auto;
}

/*****************
// -----------------
// HEADER AREA 
// _________________
// *****************/
.header {
  text-align: center;
  margin: 0px 0px 0px 0px;
  border: 0px;
  padding: 28px 0px 28px 0px;
  background: #fff;
  align-items: center;
  justify-content: center;
  -webkit-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0);
  -moz-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0);
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0);
  position: relative;
  z-index: 8;
}

.logo {
  margin: 0px;
  border: 0px;
  padding: 0px 0px 0px 0px;
  display: inline-block;
  position: relative;
  cursor: none;
}

.logo img {
  width: 190px;
  margin: 0px;
  border: 0px;
  padding: 0px 0px 0px 0px;
}

.headerButton {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  line-height: 0.8rem;
  font-weight: 600;
  box-sizing: border-box;
  /* REMOVES PADDING WITH 100% WiDTHS */
  color: #fff;
  margin: 0px;
  border: 0px;
  text-decoration: none;
  padding: 18px 20px;
  margin: 0px;
  background: #1d29a6;
  border-radius: 99px;
  -moz-border-radius: 99px;
  -webkit-border-radius: 99px;
  text-decoration: none;
}

/*****************
// -----------------
// SPLASH AREA 
// _________________
// *****************/

#splashArea {

  height: 770px;
  text-align: center;
  margin: 0px 0px 0px 0px;
  border: 0px;
  padding: 0px 0px 0px 0px;
  align-items: center;
  justify-content: center;
  background: #000 url(../../../images/splash3.jpg) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

#splashArea.heightAuto {
  height: auto !important;
}

#splashArea h1#splashArea h1.title {
  display: block;
  text-align: left;
  font-family: "Poppins", sans-serif;
  font-size: 66px;
  line-height: 77px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -2px;
  color: #fff;
  margin: 0px 0px 0px 0px;
  border: 0px;
  padding: 40px 0px 20px 0px;
  position: relative;
  z-index: 3;
  text-shadow: 0px 1px 0px #000, 0px 2px 0px #000, 0px 3px 0px #000,
    0px 4px 0px #000;
}

#splashArea h1.title span {
  color: #fe2f64;
}

.txt-rotate {
  color: #fe2f64;
}

#splashArea h1.title br {
  display: block;
}

.subTitle {
  display: block;
  text-align: left;
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  line-height: 22px;
  font-weight: 700;
  letter-spacing: 0px;
  color: #fff;
  margin: 0px 0px 0px 0px;
  border: 0px;
  padding: 0px 0px 60px 0px;
  position: relative;
  z-index: 5;
  text-shadow: 0px 1px 0px #000, 0px 2px 0px #000, 0px 3px 0px #000,
    0px 4px 0px #000;
}

#splashArea video {
  position: absolute;
  top: 50% !important;
  left: 50% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  width: auto !important;
  height: auto !important;
  z-index: 1 !important;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

#splashArea video {
}

#splashArea .splashIco {
  text-align: left;
  margin: 0px 0px -24px -33px;
  border: 0px;
  padding: 0px 0px 0px 0px;
  position: relative;
}

#splashArea .splashIco .aniIco {
  width: 90px;
  height: 90px;
  margin: 0px;
}

#splashArea .splashTag {
  display: inline-block;
  text-align: left;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-size: 22px;
  line-height: 22px;
  font-weight: 700;
  color: #fff;
  background-color: rgba(85, 98, 235, 0.3);
  margin: 0px 0px 10px 0px;
  border: 0px;
  padding: 14px 20px;
  position: relative;
  z-index: 3;
  border-radius: 6px;
}

#splashArea h1 {
  display: block;
  text-align: left;
  font-family: "Poppins", sans-serif;
  font-size: 65px;
  line-height: 86px;
  font-weight: 700;
  color: #fff;
  margin: 0px;
  border: 0px;
  padding: 0px 0px 20px 0px;
  position: relative;
  z-index: 3;
  text-shadow: 0px 0px 12px rgba(0, 0, 0, 0.6);
}

#splashArea ul {
  list-style: none;
  text-align: left;
  padding: 11px 0px 20px 0px;
  margin: 0px;
  border: 0px;
  position: relative;
  z-index: 3;
  text-shadow: 0px 1px 0px #000, 0px 2px 0px #000, 0px 3px 0px #000,
    0px 4px 0px #000;
}

#splashArea #formPageForm ul {
  list-style: none;
  text-align: center;
  padding: 11px 0px 20px 0px;
  margin: 0px;
  border: 0px;
  position: relative;
  z-index: 3;
  text-shadow: 0px 1px 0px #000, 0px 2px 0px #000, 0px 3px 0px #000,
    0px 4px 0px #000;
}

#splashArea #formPageForm .splashBullet {
  display: inline-block;
  margin: 0px 0px 14px 0px;
  border: 0px;
  padding: 0px 30px 0px 30px;
}

#splashArea ul br {
  display: none;
}

#splashArea li {
  display: inline-block;
  font-family: "Poppins", sans-serif, fontawesome;
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  color: #fff;
  background-image: url("../../../images/red-tick.svg");
  background-size: 26px 26px;
  background-repeat: no-repeat;
  background-position: 0% 0%;
  padding-left: 34px;
  /* space for the image */

  padding-top: 0px;
  /* space for the image */
  padding-bottom: 16px;
  /* space for the image */
  border: 0px;
}

#splashArea .buttonWrapper {
  padding: 0px 0px 0px 0px;
  margin: 0px;
  position: relative;
  z-index: 2;
}

#splashArea .buttonWrapper.center {
  width: 100%;
  padding: 16px 0px 0px 0px;
  text-align: center;
  margin: 0px auto;
}

#splashArea .button {
  width: 320px;
  height: 97px;
  display: block;
  border: none;
  box-sizing: border-box;
  text-align: center;
  cursor: pointer;
  outline: none;
  overflow: hidden;
  position: relative;
  -webkit-appearance: none;
  font-family: "Poppins", sans-serif;
  color: #fff;
  font-weight: 600;
  font-size: 28px;
  line-height: unset;
  background-color: #fe2f64;
  padding: 0px;
  margin: 0;
  border-radius: 99px;
  -webkit-box-shadow: 0px 3px 20px 0px rgba(254, 47, 100, 0.8);
  -moz-box-shadow: 0px 3px 20px 0px rgba(254, 47, 100, 0.8);
  box-shadow: 0 5px 15px rgba(254, 47, 100, 0.8);

  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

#splashArea .button.center {
  margin: 0px auto !important;
}

#splashArea .button:hover {
  -webkit-box-shadow: 0px 3px 20px 0px rgba(85, 98, 235, 1);
  -moz-box-shadow: 0px 3px 20px 0px rgba(85, 98, 235, 1);
  box-shadow: 0px 3px 20px 0px rgba(85, 98, 235, 1);
}

#splashArea .button.left {
  margin: 0px 0px 0px 0px !important;
}

#splashArea .button span {
  position: absolute;
  left: 50%;
  top: 8%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
  width: 100% !important;
  height: 100% !important;
  padding-top: 20px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

#splashArea .button span:hover {
  color: #fff;
}

#splashArea .button:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 490%;
  width: 190%;
  background: #5562eb;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateX(-110%) translateY(-25%) rotate(45deg);
  transform: translateX(-110%) translateY(-25%) rotate(45deg);
}

#splashArea .button:hover:after {
  -webkit-transform: translateX(-9%) translateY(-25%) rotate(45deg);
  transform: translateX(-9%) translateY(-25%) rotate(45deg);
}

#splashArea .appNumber {
  display: block;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0px;
  color: #fff;
  font-weight: 700;
  text-align: left;
  margin: 0px auto;
  border: 0px;
  padding: 30px 0px 0px 0px;
  position: relative !important;
  z-index: 5;
  text-shadow: 0px 1px 0px #000, 0px 2px 0px #000, 0px 3px 0px #000, 0px 4px 0px #000;
}

#splashArea .appNumber .odometer {
  color: #fe2f64;
  font-weight: 700;
}

.splashImg {
  z-index: 8 !important;
  position: relative;
}

.splashImg img {
  margin-top: -70px;
  width: 830px;
  min-width: 830px;
  margin-left: -120px;
}

/*****************
// -----------------
// LOGO ROW AREA 
// _________________
// *****************/

#logorow {
  display: block;
  text-align: center;
  margin: 0px 0px 0px 0px;
  border: 0px;
  padding: 35px 0px 18px;
  position: relative;
  background: #fff;
  background: url(../../../images/bg3.jpg) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  vertical-align: middle;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.slickCarousel .contentContainer {
  max-width: 100%;
}

#logorow h1 {
  display: block;
  font-size: 34px;
  line-height: 39px;
  letter-spacing: 0px;
  color: #fff;
  margin: 0px;
  border: 0px;
  padding: 0px 0px 10px 0px;
}

#logorow .icons {
  margin: auto;
}

#logorow .iconsSml {
  width: 120px;
}

.fieldValidationError {
  font-weight: bold;
  font-size: 1.2em;
  color: rgb(236, 38, 38);
}

.invalidField {
  border-color: rgb(236, 38, 38);
}

/* 

{"slidesToShow":5,"slidesToScroll":6,"autoplay":true,"speed":7000,"cssEase":"linear","autoplaySpeed":1,"arrows":false,"dots":false,"centerMode":true,"centerPadding":true,"adaptiveHeight":true,"responsive":[{"breakpoint":1024,"settings":{"slidesToShow":3,"slidesToScroll":6,"infinite":true,"adaptiveHeight":true,"dots":false}},{"breakpoint":600,"settings":{"slidesToShow":2,"adaptiveHeight":true,"slidesToScroll":6}},{"breakpoint":480,"settings":{"slidesToShow":2,"adaptiveHeight":true,"slidesToScroll":6}}]}
#logorownoheading, 
#logorow {
  display: block;
  text-align: center;
  margin: 0px 0px 0px 0px;
  border: 0px;
  padding: 25px 0px;
  background: #fff;
  background: url("resources/images/bg3.jpg") no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

#logorownoheading h1 ,
#logorow h1 {
  display: block;
  font-size: 34px;
  line-height: 39px;
  letter-spacing: 0px;
  color: #f74169;
  margin: 0px;
  border: 0px;
  padding: 0px 0px 10px 0px;
}

#logorownoheading .icons ,
#logorow .icons {
  display: block;
  height: 125px;
  margin: 0px auto;
  border: 0px;
  padding: 0px 0px 0px 10px;
}
*/

.slickCarousel .contentContainer .slick-track {
  display: flex;
  justify-content: center;
  align-items: center;
}

/*****************
// -----------------
// SECTION COLOURS 
// _________________
// *****************/

.whiteRow {
  margin: 0px;
  border: 0px;
  background: #fff;
  position: relative;
}

.whiteRow #aniIco {
  width: 150px;
  height: 150px;
  margin: 0px auto;
}

.videoIntroTxt {
  font-size: 26px;
  line-height: 36px;
  font-weight: 600;
}

.whyIco {
  display: block;
  margin: 0px;
  border: 0px;
  padding: 0px 0px 10px 0px;
  height: 150px;
}

.whyIco img {
  width: 140px;
  margin: 0px auto;
}

#greyRow {
  margin: 0px;
  border: 0px;
  background: #e7ecef;
  position: relative;
}

.lightPurpRow {
  margin: 0px;
  border: 0px;
  background: #f3f4fc;
  position: relative;
}

.lightPurpRow #aniIco {
  width: 150px;
  height: 150px;
  margin: 0px auto;
}

.orangeRow {
  margin: 0px;
  border: 0px;
  background: #ff7e00 url(../../../images/orange-bg.png) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: relative;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
}

.stripeRow {
  margin: 0px;
  border: 0px;
  position: relative;
  background: #fff url(../../../images/stripe-bg.jpg) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

/*****************
// -----------------
// HEADERS 
// _________________
// *****************/
.sectionHeader {
  font-size: 46px;
  position: relative;
  line-height: 54px;
  font-weight: 700;
  text-align: center;
  padding-bottom: 30px;
}

.sectionHeader.left {
  text-align: left;
}

.sectionSubHeader {
  font-size: 28px;
  position: relative;
  line-height: 34px;
  font-weight: 600;
  padding-bottom: 10px;
}

.purple {
  color: #5562eb;
}

.white {
  color: #fff;
}

.coral {
  color: #fe2f64;
}

.grey {
  color: #4e4f58;
}

/*****************
// -----------------
// BULLET POINTS 
// _________________
// *****************/
ul:not(.no-list-style):not(.navUl){
  list-style: none;
  text-align: left;
  padding: 18px 0px 0px 0px;
  margin: 0px;
  border: 0px;
}

ul:not(.navUl) li:not(.no-list-style){
  display: block;
  text-align: left;
  font-size: 16px;
  line-height: 24px;
  background-image: url("../../../images/red-tick.svg");
  background-size: 22px 22px;
  background-repeat: no-repeat;
  background-position: 0% 0%;
  padding-left: 31px;
  /* space for the image */
  padding-top: 0px;
  /* space for the image */
  padding-bottom: 16px;
  /* space for the image */
  border: 0px;
  margin-right: 0px;
}

/*****************
// -----------------
// PAGE BUTTONS 
// _________________
// *****************/

.pageButtonWrapper {
  padding: 16px 0px 0px 0px;
  text-align: left !important;
  margin: 0px;
  display: block;
}

.pageButtonWrapper.center {
  width: 100%;
  padding: 16px 0px 0px 0px;
  text-align: center;
  margin: 0px auto;
}

.pageButton {
  width: 250px;
  height: 67px;
  display: block;
  border: none;
  box-sizing: border-box;
  text-align: center;
  cursor: pointer;
  outline: none;
  overflow: hidden;
  position: relative;
  -webkit-appearance: none;
  font-family: "Poppins", sans-serif;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  line-height: 29px;
  background-color: #fe2f64;
  padding: 0px 0px 4px 0px;
  margin: 0;
  box-shadow: 0 5px 15px rgba(254, 47, 100, 0.8);
  border-radius: 99px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.pageButton.center {
  margin: 0px auto !important;
}

.pageButton:hover {
  box-shadow: 0 5px 15px rgba(85, 98, 235, 0.8);
}

.pageButton.left {
  margin: 0px 0px 0px 0px !important;
}

.pageButton span {
  position: absolute;
  left: 50%;
  top: 0%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
  width: 100% !important;
  height: 100% !important;
  padding-top: 20px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.pageButton span:hover {
  color: #fff;
}

.pageButton:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 490%;
  width: 140%;
  background: #5562eb;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateX(-110%) translateY(-25%) rotate(45deg);
  transform: translateX(-110%) translateY(-25%) rotate(45deg);
}

.pageButton:hover:after {
  -webkit-transform: translateX(-9%) translateY(-25%) rotate(45deg);
  transform: translateX(-9%) translateY(-25%) rotate(45deg);
}

/*****************
// -----------------
// 3 STEPS ROW AREA 
// _________________
// *****************/

.stepsRow {
  display: block;
  text-align: center;
  color: #fff;
  margin: 0px 0px 0px 0px;
  border: 0px;
  padding: 80px 0px 70px 0px;
  position: relative;
  background: #f74169;
  background: url(../../../images/bg5.jpg) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 1);
}

.stepsRow h1 {
  font-size: 46px;
  position: relative;
  line-height: 54px;
  font-weight: 700;
  text-align: center;
  padding-bottom: 50px;
}

.stepsRow .flexyItem {
  padding: 0px 20px;
}

.stepsRow .ico {
  display: block;
  margin: 0px auto;
  border: 0px;
  padding: 0px 0px 10px 0px;
}

.stepsRow .ico img {
  width: auto;
  height: 150px;
  margin: 0px auto;
}

.stepsRow h2 {
  display: block;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0px;
  color: #fff;
  font-weight: 700;
  margin: 0px;
  border: 0px;
  padding: 0px 0px 10px 0px;
}

.stepsRow #aniIco {
  width: 150px;
  height: 150px;
  margin: 0px auto;
}

/*****************
// -----------------
// BEST FOR ME AREA 
// _________________
// *****************/

#researchIco {
  width: 110px;
  height: 110px;
  margin: 0px;
}

/*****************
// -----------------
// FOOTER AREA 
// _________________
// *****************/

footer {
  font-size: .75rem;
  line-height: 1rem;
  text-align: center;
  color: #fff;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  position: relative;
  background: #4f53aa;
  background: -moz-linear-gradient(
    top,
    rgba(80, 84, 173, 1) 0%,
    rgba(66, 69, 145, 1) 100%
  );
  background: -webkit-linear-gradient(
    top,
    rgba(80, 84, 173, 1) 0%,
    rgba(66, 69, 145, 1) 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(80, 84, 173, 1) 0%,
    rgba(66, 69, 145, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5054ad', endColorstr='#424591', GradientType=0);
}

.skyline {
  height: 48px;
  margin: 50px 0px -1px 0px;
  background-image: url(../../../images/footer.svg);
}

footer img {
  width: 190px;
  margin: 0px auto;
}

footer .footerLogo {
  padding: 0px 0px 2rem 0px;
}

footer .contentContainer {
	padding: 3.5rem 2rem 3.5rem 2rem;
	max-width: 64rem;
	margin-left: auto;
    margin-right: auto;
	width: 100%;
	box-sizing: border-box;
}

footer .contentContainer > div:nth-child(2) {
	padding: 1rem 1rem 0px 1rem;
}

footer .contentContainer > div:nth-child(3) {
	padding: 1rem 1rem 2rem 1rem;
}

@media (min-width: 1024px) {
    footer .contentContainer {
		padding-left: 0;
        padding-right: 0;
	}
}

.sources {
  margin: 0px;
  border: 0px;
  font-size: 11px;
  line-height: 23px;
  color: #fff;
}

.sources h2 {
  margin: 0px;
  border: 0px;
  padding-bottom: 6px;
  font-size: 16px;
  line-height: 22px;
  color: #fff;
}

sup {
  display: inline !important;
  margin: 0px;
  border: 0px;
  padding-left: 3px;
  padding-right: 3px;
}

sup:first-child {
  padding-left: 0px;
}

/*****************
// -----------------
// LEVEL DOWN PAGES 
// _________________
// *****************/

.staticText .allowInherit > .contentContainer {
  margin-top: 20px;
  min-height: 40vh;
}

.staticText .staticHeader,
.unsubHeaderRow {
  text-align: left;
  font-size: 32px;
  letter-spacing: 0.3px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #fff;
  margin: 0px;
  border: 0px;
  padding: 40px 0px 20px;
  background: #5649c6;
  background: -moz-linear-gradient(left, #5649c6 0%, #fe2f64 100%);
  background: -webkit-linear-gradient(left, #5649c6 0%, #fe2f64 100%);
  background: linear-gradient(to right, #5649c6 0%, #fe2f64 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5649c6', endColorstr='#fe2f64', GradientType=1);
}

.staticText .staticHeader h1 {
  font-size: 28px;
  position: relative;
  line-height: 39px;
  font-weight: 700;
  text-align: left;
  padding-bottom: 20px;
  color: #fff;
}

.staticText h1 {
  font-weight: 700;
  color: #0d5e84;
  font-size: 28px;

}

.staticText h3,
.staticText h4{
  color: #0d5e84;
  font-weight: 600;
  font-size: 22px;
  position: relative;
  z-index: 4;
  letter-spacing: normal;
  margin-left: auto;
  margin-right: auto;
}

.staticText p {
  color: #0d5e84;
  font-size: 18px;
  position: relative;
  z-index: 4;
  letter-spacing: normal;
  margin-left: auto;
  margin-right: auto;
}

/*****************
// -----------------
// FORM LOADER PAGE 
// _________________
// *****************/

#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999999;
  overflow: hidden;
}

.no-js #loader-wrapper {
  display: none;
}

.formLoaderSection {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	background: black url(../../../images/section-bg1.jpg) no-repeat center center fixed; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	display: flex;
	flex-direction: column;

	
}

@keyFrames animateBg
{
  0%
  {
    filter: hue-rotate(0deg);
  }
  100%
  {
    filter: hue-rotate(360deg);
  }
}


#loader-wrapper .formLoaderSection .loaderScreen span.dot-1{
  --loadDot:1;
}
#loader-wrapper .formLoaderSection .loaderScreen span.dot-2{
  --loadDot:2;
}
#loader-wrapper .formLoaderSection .loaderScreen span.dot-3{
  --loadDot:3;
}
#loader-wrapper .formLoaderSection .loaderScreen span.dot-4{
  --loadDot:4;
}
#loader-wrapper .formLoaderSection .loaderScreen span.dot-5{
  --loadDot:5;
}
#loader-wrapper .formLoaderSection .loaderScreen span.dot-6{
  --loadDot:6;
}
#loader-wrapper .formLoaderSection .loaderScreen span.dot-7{
  --loadDot:7;
}
#loader-wrapper .formLoaderSection .loaderScreen span.dot-8{
  --loadDot:8;
}
#loader-wrapper .formLoaderSection .loaderScreen span.dot-9{
  --loadDot:9;
}
#loader-wrapper .formLoaderSection .loaderScreen span.dot-10{
  --loadDot:10;
}
#loader-wrapper .formLoaderSection .loaderScreen span.dot-11{
  --loadDot:11;
}
#loader-wrapper .formLoaderSection .loaderScreen span.dot-12{
  --loadDot:12;
}
#loader-wrapper .formLoaderSection .loaderScreen span.dot-13{
  --loadDot:13;
}
#loader-wrapper .formLoaderSection .loaderScreen span.dot-14{
  --loadDot:14;
}
#loader-wrapper .formLoaderSection .loaderScreen span.dot-15{
  --loadDot:15;
}
#loader-wrapper .formLoaderSection .loaderScreen span.dot-16{
  --loadDot:16;
}
#loader-wrapper .formLoaderSection .loaderScreen span.dot-17{
  --loadDot:17;
}
#loader-wrapper .formLoaderSection .loaderScreen span.dot-18{
  --loadDot:18;
}
#loader-wrapper .formLoaderSection .loaderScreen span.dot-19{
  --loadDot:19;
}
#loader-wrapper .formLoaderSection .loaderScreen span.dot-20{
  --loadDot:20;
}

.formLoaderSection .loaderScreen {
	position: relative;
	width: 220px;
	height: 220px;
}

.formLoaderSection .loaderScreen span {
	position: absolute;
	top: 0;
	Left: 0;
	width: 100%;
	height: 100%;
	transform: rotate(calc(18deg * var(--loadDot)));
}

.formLoaderSection .loaderScreen span::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 19px;
	height: 19px;
	border-radius: 50%;
	background: #fe1b55;
	box-shadow: 0 0 10px #fe1b55,
	      0 0 20px #fe1b55,
	      0 0 40px #fe1b55,
	      0 0 60px #fe1b55,
	      0 0 80px #fe1b55,
	      0 0 100px #fe1b55;
	animation: animate 1s linear infinite;
	animation-delay: calc(0.1s * var(--loadDot));
}
@keyFrames animate
{
  0%
  {
    transform: scale(1);
  }
  80%,100%
  {
    transform: scale(0);
  }
}


.formLoaderSection .txt {
	margin-top: -180px;
	position: relative;
	background: transparent;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	font-size: 4em;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.3);
	text-align: left !important;
}

.formLoaderSection .txt:before {
    content: attr(data-text);
    position: absolute;
    overflow: hidden;
    max-width: 28em;
    white-space: nowrap;
    color: #ffd852;
    animation: loading 8s linear;
}
@keyframes loading {
    0% {
        max-width: 0;
        left: 0;
    }
}

.formLoaderSection .imgHolder {
	width: 100%;
	height: 100%;
	margin: 0px auto 0;
	display: flex;
	justify-content: center;
	align-items: center;
}



.formLoaderSection .vidAreaTwo video {
	position: absolute;
	top: 50% !important;
	left: 50% !important;
	min-width: 100% !important;
	min-height: 100% !important;
	width: auto !important;
	height: auto !important;
	z-index: -1 !important;
	-ms-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	mix-blend-mode: color-dodge !important;
	opacity: 0.4 !important;
	filter: blur(0px);
	
}

.loaded .formLoaderSection {
	opacity: 0;
	transition: all 0.3s ease-out;
}

.processing {
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 36%;
  width: 120px;
  height: 120px;

  z-index: 11;
  font-size: 33px;
  background: #fff;
  border-radius: 100%;
  border: 3px solid transparent;
}

.processing img {
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 70px;
  height: 70px;
}

.loaded .processing {
  opacity: 0;
  transition: all 0.3s ease-out;
}

.letsTxt {
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 50%;
  margin: -180px 0px 0px 0px;
  z-index: 11;
  font-size: 40px;
  line-height: 45px;
  letter-spacing: -2px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.loaded .letsTxt {
  opacity: 0;
  transition: all 0.3s ease-out;
}

#loader {
  margin: auto;
  margin-top: -20px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin-left: -18px;
  text-align: center;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #fff;
  -webkit-animation: spin 1.7s linear infinite;
  animation: spin 1.7s linear infinite;
  z-index: 11;
}

#loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #54e0c7;
  -webkit-animation: spin-reverse 0.6s linear infinite;
  animation: spin-reverse 0.6s linear infinite;
}

#loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #fff;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spin-reverse {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(-360deg);
  }
}

@keyframes spin-reverse {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

#loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  width: 50%;
  height: 100%;
  background-color: #fff;
  z-index: 10;
}

#loader-wrapper .loader-section.section-left {
  left: 0;
  background-repeat: no-repeat;
  background-image: url(../../../images/loader-bg-left.jpg);
  background-position: 100% 100%;
  background-size: 100%;
}

#loader-wrapper .loader-section.section-right {
  right: 0;
  background-repeat: no-repeat;
  background-image: url(../../../images/loader-bg-right.jpg);
  background-position: 0% 100%;
  background-size: 100%;
}

/* Loaded styles */
.loaded #loader-wrapper .loader-section.section-left {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader-wrapper .loader-section.section-right {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader {
  opacity: 0;
  transition: all 0.3s ease-out;
}

.loaded #loader-wrapper {
  visibility: hidden;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  transition: all 0.3s 1s ease-out;
}

.loaderInlineBox{
  position: relative;
  height: 300px;
  width: 300px;
  margin: auto;
}

.loaderInlineBox .loaderImageInline {
  margin: 0px;
}
.loaderInlineBox .loaderImageInline img {
  width: 200px;
  height: 200px;
  margin: 110px 45px;
}

.loaderInlineBox #loaderInline {
  width: 250px;
  height: 250px;
  margin: -75px 0 0 -135px;
}

#loaderInline{
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #18febc;
  -webkit-animation: spin 1.7s linear infinite;
  animation: spin 1.7s linear infinite;
  z-index: 11;
}

#loaderInline:before{
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #121ba1;
  -webkit-animation: spin-reverse .6s linear infinite;
  animation: spin-reverse .6s linear infinite;
}

#loaderInline:after{
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #ced3d4;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}

/*****************
// -----------------
// PROCESSING PAGE 
// _________________
// *****************/

.processingPage {
  overflow-x: hidden;
}

.processingBackground {
  background: url("../../../images/process-bg.jpg") repeat-x;
  height: 100%;
  width: 10076px;
  animation: slide 60s linear infinite;
  position: absolute;
}

@keyframes slide {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-1692px, 0, 0);
  }
}

.processIcoHolder {
  width: 248px;
  height: 248px;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.loader {
  width: 248px;
  height: 248px;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  border: 3px solid;
  border-color: #58ceda #58ceda transparent transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

.loader::after,
.loader::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 3px solid;
  border-color: transparent transparent #2e4586 #2e4586;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  box-sizing: border-box;
  animation: rotationBack 0.5s linear infinite;
  transform-origin: center center;
}

.loader::before {
  width: 232px;
  height: 232px;
  border-color: #f2e51c #f2e51c transparent transparent;
  animation: rotation 1.5s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotationBack {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}
/* extra loader */

.formLoaderOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100%;
  z-index: 10;
  overflow: hidden;
  margin: 0px;
  border: 0px;
  padding: 0px 0px 0px 0px;
}

.loaderImage {
  display: block;
	position: absolute;
	left: calc(50% - 95px);
	top: calc(50% - 70px);
	width: 190px;
	height: 190px;
	margin: 0 0 0 0;
	z-index: 11;
	font-size: 33px;
}

.loaderImageInline {
  display: inline-block;
  position: relative;
  width: 200px;
  min-height: 400px;
  margin: 0 0 0 0;
  font-size: 33px;
}

.loaderImageInline #loaderInline {
    display: block;
    position: absolute;
    left: 50%;
    top: 45%;
    width: 250px;
    height: 250px;
    margin: -125px 0 0 -125px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #18febc;
    -webkit-animation: spin 1.7s linear infinite;
    animation: spin 1.7s linear infinite;
    z-index: 11;
}

.loaderImageInline img {
  display: inline-block;
  width: 128px;
  height: 128px;
  margin: 115px 0 0;
}

.done .loaderImage {
  opacity: 0;
  transition: all 0.3s ease-out;
}

.letsTxt.validatingText {
  font-size: 43px;
}

.letsTxt {
  display: block;
   position: absolute;
   top: calc(50% - 250px);
   width: 800px;
   height: 90px;
   margin: 0 0 0 0;
   z-index: 11;
   font-size: 43px;
 letter-spacing: -3px;
 font-weight: 700;
   color: #fff;
 text-align: center;
}

.done .letsTxt {
  opacity: 0;
  transition: all 0.3s ease-out;
}

#loader {
  display: block;
	position: relative;
	left: 50%;
	top: calc(50% - 50px);
	width: 250px;
	height: 250px;
	margin: -125px 0 0 -125px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color: #18febc;
	-webkit-animation: spin 1.7s linear infinite;
	animation: spin 1.7s linear infinite;
	z-index: 11;
}
#loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #ffb71d;
  -webkit-animation: spin-reverse 0.6s linear infinite;
  animation: spin-reverse 0.6s linear infinite;
}
#loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #de2eb6;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}


.loaderInlineBox {
  width: 248px;
  height: 248px;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.formLoaderOverlay .loader-section {
  position: fixed;
  top: 0;
  width: 50%;
  height: 100%;
  background: #424591;
  z-index: 10;
}

.formLoaderOverlay .loader-section.section-left {
  left: 0;
  background-repeat: no-repeat;
  background-image: url(resources/images/loader-bg-left.jpg);
  background-position: 100% 0%;
  background-size: 100%;
  z-index: -5;
}

.formLoaderOverlay .loader-section.section-right {
  right: 0;
  background-repeat: no-repeat;
  background-image: url(resources/images/loader-bg-right.jpg);
  background-position: 0% 0%;
  background-size: 100%;
  z-index: -5;
}

/* Loaded styles */
.done.formLoaderOverlay .loader-section.section-left {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.done.formLoaderOverlay .loader-section.section-right {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.done #loader {
  opacity: 0;
  transition: all 0.3s ease-out;
}

.done.formLoaderOverlay {
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s 1s ease-out;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spin-reverse {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
  }
}
@keyframes spin-reverse {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

/* extra loader */

/* for containter */

.processIco {
  width: 128px;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.processTxt {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: -180px auto 0;
  border: 0px;
  padding: 0px;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  line-height: 32px;
  font-weight: 600;
  color: #2e4586;
  white-space: nowrap;
}

.processTxtBot {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 180px auto 0;
  border: 0px;
  padding: 0px;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
  color: #2e4586;
  white-space: nowrap;
}

#blueRow {
  margin: 0px 0px 0px 0px;
  border: 0px;
  background: #f0fbff;
  position: relative;
}

/*****************
// -----------------
// UNSUCCESSFUL PAGE 
// _________________
// *****************/

.boxContainer {
  display: block;
  width: 630px;
  position: relative;
  background: #fff;
  -webkit-box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.25);
  -moz-border-radius: 9px;
  -webkit-border-radius: 9px;
  border-radius: 9px;
  border: 0px solid #adadad;
  padding: 30px 20px;
  margin: 0px auto 20px;
}

.unSuc {
  display: block;
  font-size: 32px;
  line-height: 30px;
  letter-spacing: 0px;
  color: #384e8b;
  text-align: center;
  font-weight: 600;
  margin: 0px;
  border: 0px;
  padding: 10px 0px 20px 0px;
}

.unsucImg {
  display: block;
  width: 300px;
  text-align: center;
  margin: 0px auto 20px;
  border: 0px;
  padding: 0px 0px 0px 0px;
}

/*****************
// -----------------
// UNSUCCESSFUL PAGE 
// _________________
// *****************/

#errorContainer {
  display: block;
  width: 788px;
  position: relative;
  background: #fff;
  -webkit-box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.25);
  -moz-border-radius: 9px;
  -webkit-border-radius: 9px;
  border-radius: 9px;
  border: 0px solid #adadad;
  padding: 30px 20px;
  margin: 0px auto 20px;
}

.errorImg {
  display: block;
  width: 400px;
  text-align: center;
  margin: 0px auto 20px;
  border: 0px;
  padding: 0px 0px 0px 0px;
}

.errorImg img {
  width: 400px;
}

.thankPageAni {
  width: 160px;
  text-align: center;
  margin: -10px auto 0;
  border: 0px;
  padding: 0px 0px 10px 0px;
}

/*****************
// -----------------
// FINAL PAGE SETTINGS 
// _________________
// *****************/

.outcomePage .finalHeader {
  font-family: "Poppins", sans-serif;
  display: block;
  font-size: 47px;
  line-height: 56px;
  letter-spacing: 0px;
  color: #384e8b;
  text-align: center;
  font-weight: 800;
  letter-spacing: -1px;
  margin: 0px;
  border: 0px;
  padding: 0px 0px 10px 0px;
}

.outcomePage .finalHeaderSub {
  font-family: "Poppins", sans-serif;
  display: block;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: 0px;
  color: #f0274d;
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.7px;
  margin: 0px;
  border: 0px;
  padding: 10px 0px 10px 0px;
}

.outcomePage .finalHeaderSub .figure {
  font-family: "Poppins", sans-serif;
  color: #ff3c00;
  font-size: 50px;
  font-weight: 800;
  letter-spacing: -1px;
  padding-top: 10px;
}

.outcomePage .txt {
  font-family: "Pacifico", cursive;
  font-size: 18px;
  letter-spacing: 0px;
  padding: 0px 100px 40px;
  text-align: center;
}

.outcomePage .txt b {
  font-family: "Pacifico", cursive;
  font-size: 42px;
  letter-spacing: 0px;
  color: #f0274d;
  font-weight: normal;
}

.outcomePage .newRefNo {
  display: block;
  width: 400px;
  background: #384e8b;
  padding: 20px;
  margin: 10px auto 10px;
  border-radius: 8px;
  font-family: FontAwesome, Poppins;
  font-size: 18px;
  letter-spacing: -0.5px;
  color: #fff;
  text-align: center;
}

.outcomePage .newRefNo span {
  font-family: FontAwesome, Poppins;
  font-size: 28px;
  font-weight: 700;
  color: #ff385e;
}

/* non steve CSS */
/* Cookie Popup */
.cookiePopUp {
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 9;
  font-size: 0.75rem;
  text-align: center;
  line-height: 28px;
  background-color: rgba(68, 68, 68, 0.85);
  color: #fff;
  font-family: Arial, sans-serif;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  white-space: pre-wrap;
  padding: 10px 5px;
  width: 100%;
  z-index: 5001;
  bottom: 0;
}

/* used to overright layout a link margin */
.cookiePopUp > a {
  margin: 0;
  text-decoration: none;
  color: #5fd0ff;
  margin-left: 3px;
  display: inline;
}

.cookiePopUpClose {
  display: inline-block;
  justify-content: center;
  align-items: center;
  position: relative;
  background: #5fd0ff;
  color: #000;
  border-radius: 2px;
  cursor: pointer;
  padding: 0px 5px;
  line-height: 25px;
}

/* Header Ribbon Widget */

.headerRibbon {
  text-align: center;
  font-size: 14px;
  color: #fff;
  margin: 0px;
  border: 0px;
  padding: 5px 0px;
  background: #fb1644;
}

.headerRibbon a {
  color: #fff;
}

#formPage #splashArea {
  padding-top: 0;
  height: auto;
}

strong {
  color: #ff5a00;
}

#formPage #splashArea h1,
#formPage #splashArea h2 {
  font-size: 38px;
}

#formPage #splashArea h2 {
  font-size: 18px;
}

#formPage #splashArea .showOnPageMax h1 {
  font-size: 30px;
  font-weight: 700;
}

#formPage #splashArea .showOnPageMax p {
  font-size: 14px;
}

.formProgressContainer > .contentContainer,
#formPage .formOuterContainer .boxField {
  z-index: 4;
  position: relative;
  width: 670px;
  margin: 2em auto;
  font-size: 13px;
  color: #384e8b;
  text-align: center;
  background-color: #d1ecf7;
  box-shadow: 0px 0px 11px 0px rgb(0 0 0 / 45%);
  border-radius: 0.8em;
  padding: 30px 20px;
}

#formPage .formOuterContainer .boxField.summary,
#formPage .formOuterContainer .boxField.firstPage,
.formProgressContainer > .contentContainer {
  padding-bottom: 15px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  box-shadow: unset;
  margin-bottom: 0;
}

.appButtonWrapper {
  padding: 15px;
}

#formPage .formOuterContainer .boxField.boxFieldMiddle {
  border-radius: 0;
  padding-bottom: 15px;
  padding-top: 0;
  margin-top: 0;
  margin-bottom: 0;
  box-shadow: unset;
}

#formPage .formOuterContainer .boxField.boxFieldBottom {
  padding-bottom: 15px;
  padding-top: 0px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  margin-top: 0;
  box-shadow: unset;
}

#formPage .formProgressContainer {
  margin-bottom: -60px;
  padding-bottom: 0;
  box-shadow: unset;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  z-index: 8;
}

.formfieldHeader {
  font-size: 20px;
  line-height: 1.2em;
  font-weight: 600;
  margin: 1em 0;
}

.formfieldHeader > span {
  color: #1ed4b3;
}

/* form buttons */

#formPage #splashArea h1,
#formPage #splashArea h2 {
  font-size: 38px;
}

#formPage #splashArea h2 {
  font-size: 18px;
}

#formPage #splashArea .showOnPageMax h1 {
  font-size: 30px;
  font-weight: 700;
}

#formPage #splashArea .showOnPageMax p {
  font-size: 14px;
}

.formOuterContainer {
  position: relative;
  z-index: 4;
}

/* #formPage.formPageMin .formOuterContainer{
	top: 260px;
} */

/* #formPage .formOuterContainer
{
    z-50 py-6 sm:py-8 md:py-8 lg:py-8 xl:py-20 px-4 sm:px-8 lg:px-8 xl:px-0
} */

.formfieldHeader {
  font-size: 20px;
  line-height: 1.2em;
  font-weight: 600;
  margin: 1em 0;
}

.formfieldHeader > span {
  color: #1ed4b3;
}

.fieldInfoTxt,
#unsubscribePage .allowInherit > .contentContainer:nth-of-type(2) p {
  position: relative;
  font-weight: 600;
  padding: 0.8em 2em;
  margin: 1.5em 0;
  background-color: #54e0c7;
  border-radius: 0.3em;
}

.fieldInfoTxt::after,
#unsubscribePage .allowInherit > .contentContainer:nth-of-type(2) p::after {
  width: 36px;
  height: 36px;
  line-height: 27px;
  font-size: 24px;
  font-family: "Font Awesome 5 Free";
  content: "\f05a";
  background: #fff;
  position: absolute;
  top: -0.6em;
  right: -0.6em;
  border-radius: 50%;
  border: 0.2em solid #d1ecf7;
  color: #ffa800;
  text-align: center;
}

#homeUspArea #formQuestion {
  position: fixed;
  z-index: 4;
  top: -100%;
  left: 0;
  right: 0;
  height: 120px;
  display: flex;
  transition: top 0.3s;
  justify-content: space-around;
  background: #1d4d76;
  box-shadow: 0px 5px 5px 0px rgb(0 0 0 / 43%);
  color: #fff;
}

#formQuestionWrapper #formQuestion div.virtualSection button {
  width: 13vw;
}

div.virtualSection .formfieldHeader {
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  color: #fff;
  text-align: left;
  margin: 0px 30px 0px 0px;
  border: 0px;
  padding: 6px 0px 10px 0px;
}

div.virtualPageContainer,
div.virtualSection {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 1100px;
  align-items: center;
  height: 15vh;
}

.splashAreaForm div.virtualPageContainer div.virtualSection {
  width: unset;
  height: unset;
}

#formQuestionWrapper #formQuestion {
  position: fixed;
  background-color: #1d4d76;
  color: #fff;
  position: fixed;
  top: -150px;
  width: 100%;
  height: 120px;
  display: flex;
  transition: top 0.3s;
  justify-content: space-around;
  z-index: 8;
  -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.43);
  -moz-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.43);
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.43);
}

.splashAreaForm div.virtualPageContainer div.virtualSection .formheaderSubTxtSml,
.splashAreaForm div.virtualPageContainer div.virtualSection .formheaderTxtLrg,
.splashAreaForm div.virtualPageContainer div.virtualSection .splashSmlTxt,
.splashAreaForm div.virtualPageContainer div.virtualSection .timer,
#formPage .intersect.intersecting .fieldInfoTxt {
  display: none;
}

div.virtualSection button {
  height: 56px;
  padding: 16px 10px 8px 17px !important;
  box-sizing: border-box !important;
  border: 0px;
  font-size: 16px;
}

p.quick {
  line-height: 2.1em;
}

p.quick::before {
  font-size: 2.1em;
  font-family: "Font Awesome 5 Free";
  content: "\f017";
  margin-right: 0.3em;
  position: relative;
  top: 0.2em;
  font-weight: 400;
}

#formPage p.quick {
  font-size: 13px;
  font-weight: 600;
}

.flexyDivider {
  width: 25px;
}

.squareFormButton {
  color: #3c454c;
  font-size: 14px;
  font-weight: 600;
  border: 0.1em solid #a1d8ef;
  background-color: #fff;
  border-radius: 0.5em;
  width: 100%;
  padding: 30px 70px 30px 20px;
  position: relative;
  text-align: left;
  box-shadow: rgb(45 35 66 / 40%) 0 2px 4px, rgb(45 35 66 / 30%) 0 7px 13px -6px,
    #d6d6e7 0 -6px 0 inset;
}

.squareFormButton.checked {
  background-color: #5562eb;
  color: white;
  box-shadow: none;
}

.squareFormButton.checked:hover {
  box-shadow: none;
}

#formPage .binary .squareFormButton {
  padding-top: 6em;
  position: relative;
  width: 13vw;
}

.squareFormButton::after {
  content: "";
  text-align: center;
  border: 2px solid #d1d7dc;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  position: absolute;
  top: 20px;
  left: 50%;
  margin-left: -26px;
  background-image: url("data:image/svg+xml,%3Csvg width='52' height='52' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23c1c6cb' fill-rule='nonzero'/%3E%3C/svg%3E ");
  background-position: 5px 5px;
  background-repeat: no-repeat;
  transition: all 200ms ease-in;
}

/* .ageGroups  */
.squareFormButton::after {
  left: auto;
  right: 2em;
  width: 32px;
  height: 32px;
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23fff' fill-rule='nonzero'/%3E%3C/svg%3E ");
  background-position: 0.1em 0.2em;
  position: absolute;
}

div.virtualSection .squareFormButton::after {
  top: 0.7rem;
}

#formPage div.virtualSection .squareFormButton:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23ffffff' fill-rule='nonzero'/%3E%3C/svg%3E ") !important;
}

/* #formPage .binary .squareFormButton:hover::after
,#formPage .binary .squareFormButton.checked::after */

.squareFormButton:hover {
  box-shadow: rgba(45, 35, 66, 0.4) 0 4px 8px,
    rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #d6d6e7 0 -6px 0 inset;
  transform: translateY(-2px);
}
.squareFormButton:hover::after,
.squareFormButton.checked::after {
  background-image: url("data:image/svg+xml,%3Csvg width='52' height='52' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23ffffff' fill-rule='nonzero'/%3E%3C/svg%3E ");
  border-color: #00deff;
  background-color: #00deff;
}

.squareFormButton:hover::after,
.squareFormButton.checked::after {
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23ffffff' fill-rule='nonzero'/%3E%3C/svg%3E ");
}

#formPage .binary > div:last-of-type .squareFormButton:hover::after,
#formPage .binary > div:last-of-type .squareFormButton.checked::after {
  background-image: url("data:image/svg+xml,%3Csvg width='122' height='122' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.71,7.291c-0.15-0.15-0.393-0.15-0.542,0L10,9.458L7.833,7.291c-0.15-0.15-0.392-0.15-0.542,0c-0.149,0.149-0.149,0.392,0,0.541L9.458,10l-2.168,2.167c-0.149,0.15-0.149,0.393,0,0.542c0.15,0.149,0.392,0.149,0.542,0L10,10.542l2.168,2.167c0.149,0.149,0.392,0.149,0.542,0c0.148-0.149,0.148-0.392,0-0.542L10.542,10l2.168-2.168C12.858,7.683,12.858,7.44,12.71,7.291z M10,1.188c-4.867,0-8.812,3.946-8.812,8.812c0,4.867,3.945,8.812,8.812,8.812s8.812-3.945,8.812-8.812C18.812,5.133,14.867,1.188,10,1.188z M10,18.046c-4.444,0-8.046-3.603-8.046-8.046c0-4.444,3.603-8.046,8.046-8.046c4.443,0,8.046,3.602,8.046,8.046C18.046,14.443,14.443,18.046,10,18.046z' fill='%23ffffff' fill-rule='nonzero'/%3E%3C/svg%3E ");
}

#formPage .formOuterContainer a {
  text-decoration: underline;
}

.button,
.formButton {
  font-size: 18px;
  line-height: 1em;
  font-weight: 600;
  background: #fe2f64;
  border-radius: 5em;
  padding: 1.3em 2.5em;
  box-shadow: 0 5px 15px rgb(0 0 0 / 20%);
  color: #fff;
  display: inline-block;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.appButtonWrapper .formButton {
  width: 250px;
  height: 67px;
  display: block;
  border: none;
  box-sizing: border-box;
  text-align: center;
  cursor: pointer;
  position: relative;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  line-height: 29px;
  padding: 0px 0px 4px 0px;
  margin: 0 auto;
  box-shadow: 0 5px 15px rgba(254, 47, 100, 0.8);
  border-radius: 99px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.button > span,
.formButton > span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.button::before,
.formButton::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  height: 490%;
  width: 190%;
  background: #5562eb;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: translateX(-110%) translateY(-25%) rotate(45deg);
  transform: translateX(-110%) translateY(-25%) rotate(45deg);
}

.button:hover,
.formButton:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
  box-shadow: 0 5px 15px rgb(85 98 235 / 80%);
}

.button:hover::before,
.formButton:hover::before {
  transform: translateX(-9%) translateY(-25%) rotate(45deg);
}

.button > span,
.formButton > span {
  position: relative;
  z-index: 2;
  overflow: visible;
}

.formButton span {
  top: 0%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
  width: 100% !important;
  height: 100% !important;
  padding-top: 20px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.button.continue,
.formButton {
  padding-right: 3em;
  position: relative;
}

#unsubscribePage button::after {
  right: 2.6em;
}

.applyMeter > div {
  display: inline-block;
}

.meter {
  position: relative;
  margin: 0 1em;
  top: -9px;
  width: 20em;
  border: 2px solid #fff;
  border-radius: 99px;
  width: 20em;
  height: 16px;
  overflow: hidden;
}

.meterTxt {
  font-size: 14px;
  color: #000;
  font-weight: 600;
}

progress[value] {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  height: 100%;
}

progress[value]::-webkit-progress-bar {
  background-color: #eee;
}

progress[value]::-webkit-progress-value {
  background-color: #4caf50;
}

progress[value]::-moz-progress-bar {
	background-color: #4caf50;
}

.meterBut {
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  color: #384e8b;
  background: #fff;
  overflow: hidden;
}

#formPage .meterBut a {
  display: block;
  text-decoration: none;
}

.meterBut i {
  display: block;
  font-size: 16px;
  line-height: 32px;
}

.inputContainer {
  position: relative;
}

.inputContainer label,
.inputContainer label span {
  pointer-events: none;
}

.inputContainer label {
  position: absolute;
  top: -4px;
  left: 20px;
  line-height: 1.5em;
  font-size: 16px;
  color: #646464;
  transition: top 0.3s;
}

.inputContainer input:focus + label,
.inputContainer.inputFilled label {
  top: -50px;
}

input,
input:focus {
  outline: none;
  font-size: 16px;
  color: #646464;
  padding: 0.8em 1.1em;
  background: #fff;
  border: 2px solid #a1d8ef;
  border-radius: 0.5em;
  min-width: 25em;
  line-height: 1.5em;
  margin: 1.2em 0;
}

#processingPage .allowInherit > div:nth-child(even) {
  background-color: transparent;
}

.summaryHeader,
.summaryRow {
  color: #384e8b;
  font-size: 16px;
  font-weight: 700;
}

.summaryHeader {
  font-size: 20px;
  font-weight: 600;
  margin: 1em 0;
}

#formPage #splashArea .summaryHeader {
  padding-bottom: 10px;
}

.summaryRow {
  background-color: #fff;
  margin: 0.5em 0;
  border: 2px solid #a1d8ef;
  border-radius: 5px;
  display: flex;
  text-align: left;
  align-items: center;
}

.summaryRow > div {
  background-color: #e9f9ff;
  flex: 1;
  padding: 0.7em;
  border-right: 2px solid #a1d8ef;
}

.summaryRow .summaryValue {
  background-color: transparent;
  text-align: right;
  color: #000;
  border-right: none;
  position: relative;
}

.summaryRow .summaryValue::before {
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  left: -16px;
  top: 50%;
  margin-top: -15px;
  background-color: #fff;
  color: #384e8b;
  border: 2px solid #a1d8ef;
  border-radius: 100%;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 27px;
}

.iziModal-content {
  position: relative;
}

.iziModal-content .closeButton {
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
  font-size: 1.5rem;
}

.iziModal-content .innerModal {
  padding: 1em;
}

.iziModal-content .title {
  text-align: center;
  font-size: 1.3em;
  font-weight: 600;
}

.formContainer,
.unsubContainer {
  display: block;
  width: 670px !important;
  position: relative;
  background: #d1ecf7;
  -webkit-box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.45);
  -moz-box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.45);
  box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.45);
  -moz-border-radius: 9px;
  -webkit-border-radius: 9px;
  border-radius: 9px;
  border: 0px solid #adadad;
  padding: 30px 20px;
  margin: 0px auto 20px;
  box-sizing: border-box;
}

.formContainer.whiteBg {
  background: #fff;
}

.formContainer.whiteBg.unsubPanelWidth {
  width: 400px;
}

.progressStatus {
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 1000;
  text-align: center;
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  color: #000;
  padding: 0px 0px 10px 0px;
}

#progressContainer {
  display: block;
  width: 350px;
  text-align: center;
  margin: 0px auto 20px;
  position: relative;
  z-index: 1000;
}

#progressContainer .progressArrows i {
  width: 30px;
  height: 30px;
  background: #fff;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #384e8b;
  margin: -12px 0px 0px 0px;
  border: 4px solid #fff;
  padding: 0px;
}

.progress {
  flex: none;
  width: 260px;
  height: 9px;
  background: #eee;
  border-radius: 99px;
  overflow: hidden;
  text-align: center;
  margin: 10px auto 0;
  border: 2px solid #fff;
}

.progress .progress-bar {
  display: block;
  flex: none;
  height: 100%;
  background: #5461eb;
}

.formheaderTxt {
  font-size: 22px !important;
  line-height: 26px !important;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin: 0px;
  border: 0px;
  padding: 0px 0px 10px 0px !important;
}

.formheaderTxt span {
  background: -webkit-linear-gradient(white, #38495a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#formPage #splashArea h1.formheaderTxtLrg {
  display: block;
  font-size: 45px;
  line-height: 52px;
  letter-spacing: 0px;
  color: #fff;
  font-weight: 700;
  margin: 0px;
  border: 0px;
  padding: 0px 0px 20px 0px;
  position: relative;
  z-index: 5;
  text-shadow: none;
  text-align: center;
}

#formPage #splashArea h1.formheaderTxtLrg span {
  color: #ffdb4c;
}

#formPage #splashArea h2.formheaderSubTxtSml {
  display: block;
  line-height: 33px;
  letter-spacing: 0px;
  color: #fff;
  font-weight: 400;
  margin: 0px;
  border: 0px;
  padding: 0px 0px 20px 0px;
  z-index: 5;
  position: relative;
  font-size: 28px;
  font-weight: 400;
  text-shadow: none;
}


#formPage #splashArea .timer i {
  padding-right: 10px;
    font-size: 30px;
    margin-top: 4px !important;
    margin-left: 5px;
    margin-right: 5px;
}

#formPage #splashArea .timer {
  display: flex;
  width: auto !important;
  margin: 0px auto;
  padding: 2px 0px 0px 0px;
  text-align: center;
  justify-content: center;
  color: #384ea7;
  display: block;
  font-size: 13px;
  line-height: 16px;
  font-weight: 600;

}

#splashArea .splashSmlTxt .timerContainer{
	display: flex;
	justify-content: center;
  	align-items: center;
    color: #fff;
}

.timerContainer img{
	width: 50px;
	margin-top: -10px;
}

.formheaderSubTxt span {
  color: #ffdb4c;
}

.formheaderSubTxt br {
  display: none;
}

.formheaderSubTxtSml {
  font-size: 32px !important;
  line-height: 36px !important;
  font-weight: 700;
  color: #fff;
  position: relative;
  z-index: 1000000000;
  text-align: center;
  margin: 0px;
  border: 0px;
  padding: 0px 0px 30px 0px !important;
}

.formheaderSubTxtSml span {
  color: #ffdb4c;
}


#formPage #splashArea p.summaryPageHeaderSub {
  display: block;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.5px;
  color: #fff;
  text-align: center;
  font-weight: 600;
  margin: 0px;
  border: 0px;
  padding: 0px 220px 16px 220px;
}

#formPage #splashArea p.summaryPageHeaderSub span {
  color: #ffdb4c;
  font-weight: 800;
}


.formContainer .unsubTick {
  font-size: 76px;
  line-height: 36px;
  font-weight: 600;
  color: #1fc1b5;
  margin: 0px auto;
  text-align: center;
  border: 0px;
  padding: 0px 0px 20px 0px;
}

.formContainer h5 {
  font-size: 26px;
  line-height: 36px;
  font-weight: 600;
  color: #384e8b;
  text-align: center;
  margin: 0px 0px 0px 0px;
  border: 0px;
  padding: 0px 0px 0px 0px;
}

.formSmlTxt {
  font-size: 12px;
  line-height: 18px;
  letter-spacing: -0.5px;
  padding: 18px 0px 0px 0px;
  margin: 0px;
  border: 0px;
  text-align: center;
}

.formTitleTxt {
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
  color: #384e8b;
  text-align: center;
  margin: 0px 0px 10px 0px;
  border: 0px;
  padding: 0px 0px 10px 0px;
}

.formTitleTxt span {
  font-weight: 700;
  color: #1ed4b3;
  margin: 0px 3px 0px 0px;
}

.unsubContainer h1 {
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
  color: #384e8b;
  text-align: center;
  margin: 0px 0px 10px 0px;
  border: 0px;
  padding: 0px 0px 10px 0px;
}

.fieldInfoTxt {
  position: relative;
  background: #54e0c7;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  font-size: 13px;
  line-height: 20px;
  font-weight: 600;
  color: #384e8b;
  text-align: center;
  margin: 0px 3px 10px 3px;
  border: 0px;
  padding: 10px 24px;
}

.fieldInfoTxt i {
  position: absolute;
  background: #fff;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  font-size: 24px;
  line-height: 24px;
  font-weight: 600;
  color: #ffa800;
  top: -11px;
  right: -11px;
  margin: 0px 0px 0px 0px;
  border: 4px solid #d1ecf7;
  padding: 0px;
}

.formButtonContainer {
  position: relative;
  margin: 0px auto;
  border: 0px;
  padding: 10px 0px 0px 0px;
  box-sizing: border-box;
  width: fit-content;
}

.formButtonContainer.padTop {
  padding: 20px 0px 0px 0px;
}

#timer {
  display: flex;
  width: auto !important;
  margin: 0px auto;
  padding: 2px 0px 0px 0px;
  text-align: center;
  justify-content: center;
  color: #384ea7;
}

#timer div {
  align-self: center;
}

#timer i {
  font-size: 30px;
  margin-top: 4px !important;
  margin-left: 5px;
  margin-right: 5px;
}

#timer div span {
  display: block;
  margin-top: 5px;
  font-size: 13px;
  line-height: 16px;
  text-align: left;
  font-weight: 600;
}

#stopWatch {
  width: 60px;
  margin: 0px auto;
}

/*****************
								      // -----------------
								      // YES NO BUTTONS 
								      // _________________
								      // *****************/

.inputGroup.ico {
  width: 100%;
  background-color: #fff;
  display: block;
  margin: 15px 0;
  position: relative;
  flex: none;
  border-radius: 6px;
  border: 2px solid #a1d8ef;
  height: 134px;
  box-sizing: border-box; /* REMOVES PADDING WITH 100% WiDTHS */
}

.inputGroup.ico label {
  width: 100%;
  height: 130px;
  padding: 86px 30px 8px 30px;
  box-sizing: border-box; /* REMOVES PADDING WITH 100% WiDTHS */
  border: 0px;
  display: block;
  text-align: center;
  font-size: 15px;
  line-height: 18px;
  font-weight: 600;
  color: #3c454c;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: color 200ms ease-in;
  overflow: hidden;
  border-radius: 4px;
}

.inputGroup.ico label:before {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale3d(1, 1, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  z-index: -1;
}

.inputGroup.ico input:checked ~ label:after {
  background-image: url("data:image/svg+xml,%3Csvg width='52' height='52' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23ffffff' fill-rule='nonzero'/%3E%3C/svg%3E ");
  background-repeat: no-repeat;
  background-position: 5px 5px;
}

.inputGroup.ico.cross input:checked ~ label:after {
  background-image: url("data:image/svg+xml,%3Csvg width='122' height='122' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.71,7.291c-0.15-0.15-0.393-0.15-0.542,0L10,9.458L7.833,7.291c-0.15-0.15-0.392-0.15-0.542,0c-0.149,0.149-0.149,0.392,0,0.541L9.458,10l-2.168,2.167c-0.149,0.15-0.149,0.393,0,0.542c0.15,0.149,0.392,0.149,0.542,0L10,10.542l2.168,2.167c0.149,0.149,0.392,0.149,0.542,0c0.148-0.149,0.148-0.392,0-0.542L10.542,10l2.168-2.168C12.858,7.683,12.858,7.44,12.71,7.291z M10,1.188c-4.867,0-8.812,3.946-8.812,8.812c0,4.867,3.945,8.812,8.812,8.812s8.812-3.945,8.812-8.812C18.812,5.133,14.867,1.188,10,1.188z M10,18.046c-4.444,0-8.046-3.603-8.046-8.046c0-4.444,3.603-8.046,8.046-8.046c4.443,0,8.046,3.602,8.046,8.046C18.046,14.443,14.443,18.046,10,18.046z' fill='%23ffffff' fill-rule='nonzero'/%3E%3C/svg%3E ");
  background-repeat: no-repeat;
  background-position: -14px -14px;
}

.inputGroup.ico label:after {
  width: 52px;
  height: 52px;
  content: "";
  border: 2px solid #d1d7dc;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg width='52' height='52' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23c1c6cb' fill-rule='nonzero'/%3E%3C/svg%3E ");
  background-repeat: no-repeat;
  background-position: 5px 5px;
  border-radius: 50%;
  z-index: 2;
  position: absolute;
  top: 18%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  cursor: pointer;
  transition: all 200ms ease-in;
}

.inputGroup.ico:checked ~ label:after {
  background-image: url("data:image/svg+xml,%3Csvg width='52' height='52' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23ffffff' fill-rule='nonzero'/%3E%3C/svg%3E ");
}

.inputGroup.ico.cross label:after {
  background-image: url("data:image/svg+xml,%3Csvg width='122' height='122' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.71,7.291c-0.15-0.15-0.393-0.15-0.542,0L10,9.458L7.833,7.291c-0.15-0.15-0.392-0.15-0.542,0c-0.149,0.149-0.149,0.392,0,0.541L9.458,10l-2.168,2.167c-0.149,0.15-0.149,0.393,0,0.542c0.15,0.149,0.392,0.149,0.542,0L10,10.542l2.168,2.167c0.149,0.149,0.392,0.149,0.542,0c0.148-0.149,0.148-0.392,0-0.542L10.542,10l2.168-2.168C12.858,7.683,12.858,7.44,12.71,7.291z M10,1.188c-4.867,0-8.812,3.946-8.812,8.812c0,4.867,3.945,8.812,8.812,8.812s8.812-3.945,8.812-8.812C18.812,5.133,14.867,1.188,10,1.188z M10,18.046c-4.444,0-8.046-3.603-8.046-8.046c0-4.444,3.603-8.046,8.046-8.046c4.443,0,8.046,3.602,8.046,8.046C18.046,14.443,14.443,18.046,10,18.046z' fill='%23c1c6cb' fill-rule='nonzero'/%3E%3C/svg%3E ");
  background-position: -14px -14px;
}

.inputGroup.ico.cross:checked ~ label:after {
  background-image: url("data:image/svg+xml,%3Csvg width='122' height='122' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.71,7.291c-0.15-0.15-0.393-0.15-0.542,0L10,9.458L7.833,7.291c-0.15-0.15-0.392-0.15-0.542,0c-0.149,0.149-0.149,0.392,0,0.541L9.458,10l-2.168,2.167c-0.149,0.15-0.149,0.393,0,0.542c0.15,0.149,0.392,0.149,0.542,0L10,10.542l2.168,2.167c0.149,0.149,0.392,0.149,0.542,0c0.148-0.149,0.148-0.392,0-0.542L10.542,10l2.168-2.168C12.858,7.683,12.858,7.44,12.71,7.291z M10,1.188c-4.867,0-8.812,3.946-8.812,8.812c0,4.867,3.945,8.812,8.812,8.812s8.812-3.945,8.812-8.812C18.812,5.133,14.867,1.188,10,1.188z M10,18.046c-4.444,0-8.046-3.603-8.046-8.046c0-4.444,3.603-8.046,8.046-8.046c4.443,0,8.046,3.602,8.046,8.046C18.046,14.443,14.443,18.046,10,18.046z' fill='%23ffffff' fill-rule='nonzero'/%3E%3C/svg%3E ");
}

.inputGroup.ico input {
  width: 52px;
  height: 52px;
  order: 1;
  z-index: 2;
  position: absolute;
  right: 50%;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  visibility: hidden;
}

.inputGroup.ico label span {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  text-align: center;
}

.inputGroup {
  width: 100%;
  appearance: none;
  background-color: #fff;
  display: block;
  margin: 0px 0;
  padding: 0px 0px;
  position: relative;
  flex: none;
  border-radius: 6px;
  border: 0px solid #a1d8ef;
  height: 90px;
  box-shadow: rgba(45, 35, 66, 0.4) 0 2px 4px,
    rgba(45, 35, 66, 0.3) 0 7px 13px -6px, #d6d6e7 0 -6px 0 inset;
  box-sizing: border-box;
  transition: box-shadow 0.15s, transform 0.15s;
}

.inputGroup:focus {
  box-shadow: #d6d6e7 0 0 0 1.5px inset, rgba(45, 35, 66, 0.4) 0 2px 4px,
    rgba(45, 35, 66, 0.3) 0 7px 13px -6px, #d6d6e7 0 -3px 0 inset;
}

.inputGroup:hover {
  box-shadow: rgba(45, 35, 66, 0.4) 0 4px 8px,
    rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #d6d6e7 0 -6px 0 inset;
  transform: translateY(-2px);
}

.inputGroup:active {
  box-shadow: #d6d6e7 0 3px 7px inset;
  transform: translateY(2px);
}

.inputGroup.fullWidth {
  width: 100% !important;
  height: 100%;
  display: block !important;
  margin-bottom: 0px;
  padding: 0px 0px !important;
}

.inputGroup.fullWidth label {
  width: 100%;
  height: 100%;
  /*
	padding-top: 25px;
	padding-bottom: 25px;
	*/
  padding-left: 20px;
  padding-right: 70px;
  box-sizing: border-box; /* REMOVES PADDING WITH 100% WiDTHS */
  border: 0px;
  display: inline-block;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  color: #3c454c;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: color 200ms ease-in;
  overflow: hidden;
  border-radius: 4px;
}

.inputGroup.fullWidth label span {
  font-size: 13px;
  line-height: 16px;
}

.inputGroup label {
  width: 100%;
  height: 84px;
  padding: 30px;
  box-sizing: border-box; /* REMOVES PADDING WITH 100% WiDTHS */
  border: 0px;
  display: block;
  vertical-align: middle;
  text-align: left;
  font-weight: 600;
  color: #3c454c;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: color 200ms ease-in;
  overflow: hidden;
  border-radius: 4px;
}

.inputGroup label:before {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
  background-color: #5562eb;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale3d(1, 1, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  z-index: -1;
}

.inputGroup label:after {
  width: 32px;
  height: 32px;
  content: "";
  border: 2px solid #d1d7dc;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23fff' fill-rule='nonzero'/%3E%3C/svg%3E ");
  background-repeat: no-repeat;
  background-position: 2px 3px;
  border-radius: 50%;
  z-index: 2;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: all 200ms ease-in;
}

.inputGroup input:checked ~ label {
  color: #fff;
}

.inputGroup input:checked ~ label:before {
  transform: translate(-50%, -50%) scale3d(76, 76, 1);
  opacity: 1;
}

.inputGroup input:checked ~ label:after {
  background-color: #00deff;
  border-color: #00deff;
}

.inputGroup input {
  width: 32px;
  height: 32px;
  order: 1;
  z-index: 2;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  visibility: hidden;
}

.inputGroup label span {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  text-align: left;
  margin: 0px auto;
}

.inputGroup.ico:hover {
  background: #00deff;
  background: #fff;
}

.inputGroup input:hover ~ label:after {
  background-color: #00deff;
  border-color: #00deff;
}

.inputGroup input:hover ~ label {
  color: #fff;
  color: #000;
}

.inputGroup input:checked:hover ~ label {
  color: #fff;
}

.inputGroup.ico input:hover ~ label:after {
  background-image: url("data:image/svg+xml,%3Csvg width='52' height='52' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23ffffff' fill-rule='nonzero'/%3E%3C/svg%3E ");
  background-repeat: no-repeat;
  background-position: 5px 5px;
}

.inputGroup.ico.cross input:hover ~ label:after {
  background-image: url("data:image/svg+xml,%3Csvg width='122' height='122' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.71,7.291c-0.15-0.15-0.393-0.15-0.542,0L10,9.458L7.833,7.291c-0.15-0.15-0.392-0.15-0.542,0c-0.149,0.149-0.149,0.392,0,0.541L9.458,10l-2.168,2.167c-0.149,0.15-0.149,0.393,0,0.542c0.15,0.149,0.392,0.149,0.542,0L10,10.542l2.168,2.167c0.149,0.149,0.392,0.149,0.542,0c0.148-0.149,0.148-0.392,0-0.542L10.542,10l2.168-2.168C12.858,7.683,12.858,7.44,12.71,7.291z M10,1.188c-4.867,0-8.812,3.946-8.812,8.812c0,4.867,3.945,8.812,8.812,8.812s8.812-3.945,8.812-8.812C18.812,5.133,14.867,1.188,10,1.188z M10,18.046c-4.444,0-8.046-3.603-8.046-8.046c0-4.444,3.603-8.046,8.046-8.046c4.443,0,8.046,3.602,8.046,8.046C18.046,14.443,14.443,18.046,10,18.046z' fill='%23ffffff' fill-rule='nonzero'/%3E%3C/svg%3E ");
  background-repeat: no-repeat;
  background-position: -14px -14px;
}

.ageIco {
  background: transparent !important;
  display: inline-block;
  margin: 0px 0px;
  padding: 0px 0px 0px 0px;
  position: absolute;
  top: 13px;
  left: 20px;
  flex: none;
  border: 0px;
  box-sizing: border-box; /* REMOVES PADDING WITH 100% WiDTHS */
  z-index: 28000 !important;
}

.ageIco img {
  width: 50px !important;
}

.input {
  position: relative;
  z-index: 1;
  display: block;
  width: 400px;
  height: 55px;
  margin: 0px auto;
  /*vertical-align: top;*/
  background: #fff;
  padding: 0px;
  -moz-border-radius: 9px;
  -webkit-border-radius: 9px;
  border-radius: 9px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.inputFullWidth {
  width: 100% !important;
}

.inputEditable {
  width: calc(100% - 77px);
  display: inline !important;
  position: relative;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  text-align: right;
  margin: 0px auto;
  background: #fff;
  border: none;
  padding: 0px;
}

.inputEditable.padTop {
  padding-top: 4px;
}

.inputEditable:focus::-webkit-input-placeholder {
  transition: opacity 0.2s 0.2s ease !important;
  opacity: 0;
}

.inputEditable::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #000;
}
.inputEditable::-moz-placeholder {
  /* Firefox 19+ */
  color: #000;
}
.inputEditable:-ms-input-placeholder {
  /* IE 10+ */
  color: #000;
}
.inputEditable:-moz-placeholder {
  /* Firefox 18- */
  color: #000;
}

span.editIco {
  display: inline-block !important;
  margin: 0px 0px 0px 8px;
  font-size: 14px !important;
  padding: 4px 8px;
  background: #20c997;
  color: #fff;
  width: auto;
  border-radius: 6px;
  text-align: center;
}

span.editIco i {
  padding: 0px 4px 0px 0px;
}

.input__field {
  position: relative;
  display: block;
  width: 100%;
  height: 55px;
  padding: 0px 0px 0px 18px;

  -moz-border-radius: 9px;
  -webkit-border-radius: 9px;
  border-radius: 9px;
  border: 2px solid #a1d8ef;
  background: #eee;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #646464;
  -webkit-appearance: none; /* for box shadows to show on iOS */
}

.input__field:focus {
  outline: none;
  margin-top: 0;
}

.input__label {
  display: inline-block;

  color: #646464;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.input__label-content {
  position: relative;
  display: block;
  padding: 16px 0px 0px 18px;
  height: 40px;
  text-align: left;
}

/* Akira */
.input--akira {
  margin-top: 1em;
}

.input__field--akira {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
  text-align: left;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 0;
}

.input__label--akira {
  padding: 0;
  width: 100%;
  background: transparent;
  font-family: "Poppins", sans-serif;
  color: #646464;
  font-size: 16px;
  cursor: text;
}

.input__label--akira::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
}

.input__label-content--akira {
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
}

.input__field--akira:focus + .input__label--akira::before,
.input--filled .input__label--akira::before {
  -webkit-transform: scale3d(0.99, 0.95, 1);
  transform: scale3d(0.99, 0.95, 1);
}

.input__field--akira:focus + .input__label--akira,
.input--filled .input__label--akira {
  cursor: default;
  pointer-events: none;
}

.input__field--akira:focus + .input__label--akira .input__label-content--akira,
.input--filled .input__label-content--akira {
  -webkit-transform: translate3d(0, -2.8em, 0);
  transform: translate3d(0, -2.8em, 0);
}

.select {
  display: block;
  width: 100% !important;
  height: 54px;
  text-align: left;
  font-size: 14px;
  padding: 0px 0px 0px 20px;
  border: 2px solid #a1d8ef;
  margin: 0px 0px 0px 0px;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  box-sizing: border-box; /* REMOVES PADDING WITH 100% WiDTHS */
  cursor: pointer;
  background: #fff url(../images/select-arrow.svg);
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: 90% 50%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.select:focus {
  border: 2px solid #10e3ed;
}

.btn {
  width: 250px;
  height: 66px;
  display: block;
  border: none;
  box-sizing: border-box;
  text-align: center;
  cursor: pointer;
  outline: none;
  overflow: hidden;
  position: relative;
  font-family: "Poppins", sans-serif;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  background-color: #fe2f64;
  padding: 0px;
  margin: 0 auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border-radius: 99px;
  -webkit-appearance: none;
}

.btn:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
  color: #fff;
}

.btn span {
  position: absolute;
  left: 50%;
  top: 0%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
  width: 100% !important;
  height: 100% !important;
  padding-top: 19px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  color: #fff;
}

.btn span:hover {
  color: #fff;
}

.btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 490%;
  width: 140%;
  background: #5562eb;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: translateX(-110%) translateY(-25%) rotate(45deg);
  transform: translateX(-110%) translateY(-25%) rotate(45deg);
  color: #fff;
}

.btn:hover:after {
  -webkit-transform: translateX(-9%) translateY(-25%) rotate(45deg);
  transform: translateX(-9%) translateY(-25%) rotate(45deg);
  color: #fff;
}

.z-5 {
  z-index: 5;
}

/*****************
								      // -----------------
								      // FORM SUMMARY PAGE 
								      // _________________
								      // *****************/

/* .summaryPageHeader {
  display: block;
  font-size: 30px;
  line-height: 34px;
  letter-spacing: 0px;
  color: #0d5e84;
  text-align: center;
  font-weight: 700;
  margin: 0px;
  border: 0px;
  padding: 16px 0px 16px 0px;
}

.summaryPageHeaderSub {
  display: block;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.5px;
  color: #fff;
  text-align: center;
  font-weight: 600;
  margin: 0px;
  border: 0px;
  padding: 0px 220px 16px 220px;
}

.summaryPageHeaderSub b {
  color: #ffa800;
  font-weight: 800;
} */

.summaryHeader {
  display: block;
  font-size: 22px;
  line-height: 30px;
  letter-spacing: 0px;
  color: #384e8b;
  text-align: center;
  font-weight: 600;
  margin: 0px;
  border: 0px;
  padding: 0px 0px 0px 0px;
}

.summaryRow {
  display: flex;
  justify-content: space-between;
  margin: 10px 0px 0px 0px;
  border: 2px solid #a1d8ef;
  padding: 0px;
  position: relative;
  background: #fff;
  border-radius: 5px;
  font-size: 16px;
}

.summaryRow div {
  width: 50%;
  height: 100% !important;
  padding: 10px;
  margin: 0px;
  border: 0px;
  display: block;
  box-sizing: border-box; /* REMOVES PADDING WITH 100% WiDTHS */
}

.summaryRow div:first-child {
  text-align: left;
  background: #e9f9ff;
  font-weight: 700;
  padding-top: 10px;
  margin: 0px;
  border: 0px;
  height: 100% !important;
  box-sizing: border-box; /* REMOVES PADDING WITH 100% WiDTHS */
  border-right: 2px solid #a1d8ef;
  -moz-border-radius-topleft: 5px;
  -webkit-border-top-left-radius: 5px;
  border-top-left-radius: 5px;
  -moz-border-radius-bottomleft: 5px;
  -webkit-border-bottom-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.summaryRow div:last-child {
  text-align: right;
  font-weight: 600;
  padding: 0px 10px 0px 0px;
  margin: 0px;
  border: 0px;
  -moz-border-radius-topright: 5px;
  -webkit-border-top-right-radius: 5px;
  border-top-right-radius: 5px;
  -moz-border-radius-bottomright: 5px;
  -webkit-border-bottom-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.summaryRow div.arrow {
  position: absolute;
  left: 0;
  right: 0;
  height: 100%;
  margin: auto;
  z-index: 1000;
  padding: 0px;
  border: 0px;
}

.summaryRow div.arrow img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 30px;
  padding: 0;
  border: 0;
}

.finalStepResultContainer {
  margin: 10px 0px 0px 0px;
  border: 2px solid #a1d8ef;
  padding: 0px 0px 0px 0px;
  position: relative;
  background: #fff;
  border-radius: 5px;
}

.finalStepResultContainer .txtCol {
  background: #e9f9ff;
  border-right: 2px solid #a1d8ef;
  -moz-border-radius-topleft: 5px;
  -webkit-border-top-left-radius: 5px;
  border-top-left-radius: 5px;
  -moz-border-radius-bottomleft: 5px;
  -webkit-border-bottom-left-radius: 5px;
  border-bottom-left-radius: 5px;
  font-weight: 600;
}

.finalStepResultContainer div.arrow {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: auto;
  z-index: 1000;
}

.finalStepResultContainer .arrow img {
  width: 30px;
  margin: 0px auto;
  padding: 0;
  border: 0;
}


.optInText {
  font-size: 12px;
  line-height: 28px;
  color: #fff;
  letter-spacing: 0px;
  padding: 18px 0px 0px 0px;
  margin: 0px auto;
  border: 0px;
  text-align: center;
  max-width: 710px;
}

.optInText a {
  color: #fedd42;
  text-decoration: underline;
}

.summaryImages .flexyContainer.justifyCentral,
.summaryImages .flexyContainerWithWrap.justifyCentral {
  justify-content: center;
}

.summaryImages .flexyContainer,
.summaryImages .flexyContainerWithWrap {
  display: flex;
  justify-content: space-around;
}

.summaryMobileLogos {
  flex-grow: 1;
  flex-wrap: wrap;
  padding: 5px;
}

.summaryMobileLogos img {
  max-height: 45px;
  padding: 5px 10px;
}

#formPage .formOuterContainer .intersect.intersecting
{
  position:fixed;
  top:0;
  left:0;
  right:0;
  width:100%;
  margin:0;
  border-radius:0;
  background:#1d4d76;
  color:#fff;
  padding:1vw 2vw;
}

#formPage .formOuterContainer .intersect.intersecting + div
{
  margin-top:318px;
}

#tideSuccessPageHeader {
  padding: 20px 0px;
}

#tideSuccessPageHeader .flexyContainerWithWrap {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
}

#tideSuccessPageHeader .flexyContainerWithWrap img {
  max-width: 200px;
  max-height: 58px;
}


#tide-mainSection {
  padding: 40px 0px;
  color: #fff;
  background: linear-gradient(135deg, #3f4ff9 0%,#202db3 49%,#00096a 100%);
}

#tide-mainSection .headingOne {
  display: block;
  font-size: 45px;
  line-height: 65px;
  font-weight: 700;
  letter-spacing: -1px;
  padding: 40px 0px 20px 0px;
  color: #fff;
  padding-top: 40px;
  display: block;
}

#tide-mainSection .headingTwo {
  font-size: 28px;
  line-height: 38px;
  font-weight: 700;
  color: #fff;
  padding-top: 40px;
  display: block;
}

#tide-mainSection .headingTwo img {
  width: 35px;
  text-align: left;
  display: inline-block;
  margin: 0px 0px 4px 0px;
  border: 0px;
  padding: 0px 0px 0px 0px;
}

#tide-mainSection .lrgSubTxt {
  display: block;
  font-size: 22px;
  line-height: 32px;
  letter-spacing: 0px;
  color: #fff;
  font-weight: 700;
  margin: 20px 0px 10px 0px;
}

#tide-mainSection .numberRow {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  column-gap: 20px;
}

#tide-mainSection .bullets {
	padding-top: 20px;
}

#tide-mainSection .bullets .flexyItem {
  display: flex;
  flex-direction: row;
  align-self: auto;
  padding-bottom: 5px;
}

#tide-mainSection .flexTwoCol .item {
  flex-basis: 48%;
}

#tide-mainSection .numberIco img {
  width: 30px;
  min-width: 30px;
  padding-right: 10px;
  box-sizing: border-box;
}

#tide-mainSection .numberIcoSmlTxt2 {
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
}

#tide-mainSection .flexyContainer {
  display: flex;
  gap: 60px;
  padding: 0px;
  max-width: 1100px;
  margin: auto auto;
}

#tide-mainSection .tideMainImage {
  max-width: 450px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
}

#tide-mainSection .ctaButton {
  padding: 30px 140px;
  display: inline-block;
  text-align: center;
  border-radius: 122px;
  font-size: 24px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  background-color: #e6007e;
  margin-top: 15px;
}

#tide-mainSection  .disclaimerContainer {
  font-size: 12px;
  max-width: 1100px;
  margin: 30px auto 0px auto;
}

#tide-mainSection .disclaimerContainer img {
  max-width: 80px;
  display: inline-block;
  margin-bottom: 5px;
}

#tide-mainSection .disclaimerContainer .disclaimerSection {
  margin: 4px 4px 12px 4px;
}

#tide-mainSection .subTxt {
  font-size: 14px;
  display: block;
}

#tide-topSection {
  position: relative;
  margin: 0px;
  border: 0px;
  padding: 40px 0px;
  color: #fff;
  background: #3f4ff9;
}

#tide-topSection .contentContainer {
  max-width: 1100px;
  width: 100%;
  margin: 0px auto;
  border: 0px;
  padding: 0px;
}

#tide-topSection .xProductPanel {
  display: block;
  font-size: 34px;
  line-height: 24px;
  font-weight: 500;
  text-align: center;
  background: #fff;
  color: #000;
  letter-spacing: -.5px;
  padding: 34px 24px;
  margin: 0px auto;
  border-radius: 10px;
}

#tide-topSection span.callTxt {
  display: flex;
  font-family: 'Lobster', sans-serif;
  font-size: 38px;
  line-height: 42px;
  font-weight: 500;
  text-align: center;
  letter-spacing: -.5px;
  margin: 20px 0 0;
  justify-content: center;
  align-items: center;
}

#tide-topSection span.callTxt img {
  width: 38px;
  margin: 0px 7px -8px 0px;
}

#tide-topSection2 span.callTxt img {
  width: 53px;
  display: block;
  margin: 0px auto;
}

#tide-topSection2 .flex-row {
  display: flex;
  flex-direction: row;
  align-items: center;
}

#tide-topSection2 span.intro {
  display: block;
  font-size: 24px;
  font-weight: 700;
  padding: 0px 0px 0px 4px;
  text-align: center;
  color: #fff;
  letter-spacing: -.5px;
}
#tide-topSection2 {
  font-size: 14px;
  color: #fff;
  padding: 16px 10px;
  background: #3542da;
}

.align-items-center {
  align-items: center;
}

.justify-content-center {
  justify-content: center;
}
.cashplusVersion {
    text-align: left;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    color: #383838;
}

.cashPlusHeader {
    text-align: left;
    width: 100%;
    margin: 0px;
    border: 0px;
    padding: 20px 5px;
    background: #fff;
    align-items: center;
    justify-content: center;
    -webkit-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2);
}

.cashPlusHeader .ceLogo {
    flex-grow: 2;
    text-align: left;
    margin: 0px;
    border: 0px;
    padding: 0px 0px 0px 0px;
    display: inline-block;
    align-self: center;
}

.cashPlusHeader .cashPlusLogo {
    display: inline-block;
    align-self: center;
}

.ceLogo img,
.cashPlusLogo img {
    width: 100%;
    max-width: 180px;
}

.cashPlusContentContainer {
    width: 1100px;
    margin: 0px auto;
    border: 0px;
    padding: 0px 0px 0px 0px;
}

.cashPlusLogos {
    display: flex;
    gap: 20px;
}

.cashplus-blueSection {
    position: relative;
    margin: 0px;
    border: 0px;
    padding: 40px 0px;
    background: #eff8fd;
}

.cashPlusContent {
    display: flex;
}

.cashPlusContent .lrgTxt {
    display: block;
    font-size: 45px;
    line-height: 65px;
    letter-spacing: -1px;
    color: #2ee86a;
    font-weight: 700;
    margin: 0px;
    border: 0px;
    padding: 0px 0px 20px 0px;
    position: relative;
}

.cashPlusContent .smlTxt {
    font-size: 28px;
    line-height: 38px;
    font-weight: 700;
    color: #58595b;
    display: block;
    letter-spacing: 0px;
    margin: 0px;
    border: 0px;
    padding: 0px 0px 26px 0px;
}

.smlTxt img {
    height: 35px;
}

.mainPic {
    padding: 0px 0px 0px 60px;
}

.mainPic img {
    min-width: 350px;
}

.cashplus-blueSection .lrgSubTxt {
    display: block;
    font-size: 22px;
    line-height: 32px;
    letter-spacing: 0px;
    color: #1344da;
    font-weight: 700;
    margin: 0px;
    border: 0px;
    padding: 0px 0px 10px 0px;
    position: relative;
}

.cashplus-blueSection .bullets {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 15px;
    padding-bottom: 30px;
}

.bullets .bullet-item {
    display: flex;
    flex-direction: row;
    width: 50%;
    padding-bottom: 10px !important;
    align-self: auto;
    align-items: center;
}

.bullets .bullet-text {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
}

.bullet-item img {
    width: 30px;
    padding-right: 10px;
}

.cashplus-blueSection .greenButton {
    padding: 30px 40px;
    display: block;
    text-align: center;
    border-radius: 122px;
    font-size: 24px;
    color: #172659;
    text-decoration: none;
    font-weight: 600;
    background-color: #2ee86a;
}

.cashplus-footer {
    text-align: center;
    font-size: 13px;
    width: 1100px;
    margin: 20px auto 0px auto;
    display: block;
}

@media (max-width: 1100px) {
    .cashPlusLogos {
        padding: 0px 10px;
    }

    .cashPlusContentContainer {
        width: 100%;
    }

    .contentContainer {
        width: 100%;
    }

    .cashPlusContentContainer {
        width: 100%;
    }

    .cashplus-footer {
        width: 100%;
    }

    .leftContent {
        padding: 10px;
    }

    .mainPic {
        padding: 0px;
    }
}


@media (max-width: 900px) {
    .mainPic {
        display: none;
    }
}

@media (max-width: 715px) {
    .cashPlusContent .smlTxt {
        font-size: 20px;
        line-height: 9px;
    }

    .cashplus-blueSection {
        padding: 5px;
    }

    .cashPlusContent .lrgTxt {
        font-size: 35px;
        line-height: 30px;
        margin: 10px 0px;
    }

    .lrgSubTxtContent {
        font-size: 15px;
    }

    .cashplus-blueSection .bullets {
        padding-top: 10px;
        padding-bottom: 10px;
        align-content: stretch;
    }

    .cashplus-blueSection .lrgSubTxt {
        font-size: 16px;
    }

    .bullet-item {
        align-items: flex-start;
    }

    .bullets .bullet-text {
        font-size: 14px;
        line-height: 19px;
    }
}

#cashplus-topSection {
    position: relative;
    margin: 0px;
    border: 0px;
    padding: 40px 0px;
    color: #fff;
    background: #3f4ff9;
}

#cashplus-topSection .contentContainer {
    max-width: 1100px;
    width: 100%;
    margin: 0px auto;
    border: 0px;
    padding: 0px;
}

#cashplus-topSection .xProductPanel {
    display: block;
    font-size: 34px;
    line-height: 24px;
    font-weight: 500;
    text-align: center;
    background: #fff;
    color: #000;
    letter-spacing: -.5px;
    padding: 34px 24px;
    margin: 0px auto;
    border-radius: 10px;
}

#cashplus-topSection span.callTxt {
    display: block;
    font-family: 'Lobster', sans-serif;
    font-size: 38px;
    line-height: 42px;
    font-weight: 500;
    text-align: center;
    letter-spacing: -.5px;
    margin: 16px 0 0px 0px;
}

#cashplus-topSection span.callTxt img {
    width: 38px;
    margin: -16px 7px -8px 0px;
}

.cashplus-footer img, img.smiley, .callTxt img {
	display: inline-block;
}


table {
	border: 1px solid #1C6EA4;
	background-color: #fff;
	width: 100%;
	text-align: left;
	border-collapse: collapse;
	margin-bottom: 10px;
}

table th {
	background-color: #7175e1;
	color: #fff;
}

table td, table th {
	border: 1px solid #AAAAAA;
	padding: 3px 6px;
}

#anna-topSection {
  position: relative;
  margin: 0px;
  border: 0px;
  padding: 40px 0px;
  color: #fff;
  background: #E9624E;
}
#anna-topSection .contentContainer {
  max-width: 1100px;
  width: 100%;
  margin: 0px auto;
  border: 0px;
  padding: 0px;
}
#anna-topSection .xProductPanel {
  display: block;
  font-size: 34px;
  line-height: 24px;
  font-weight: 500;
  text-align: center;
  background: #fff;
  color: #000;
  letter-spacing: -.5px;
  padding: 34px 24px;
  margin: 0px auto;
  border-radius: 10px;
}
#anna-topSection span.callTxt {
  display: block;
  font-family: 'Lobster', sans-serif;
  font-size: 38px;
  line-height: 42px;
  font-weight: 500;
  text-align: center;
  letter-spacing: -.5px;
  margin: 20px 0 0;
}
#anna-topSection span.callTxt img {
  width: 38px;
  margin: 0px 7px -8px 0px;
}
.anna-redSection .lrgSubTxt {
  display: block;
  font-size: 22px;
  line-height: 32px;
  letter-spacing: 0px;
  color: #1344da;
  font-weight: 700;
  margin: 0px;
  border: 0px;
  padding: 0px 0px 10px 0px;
  position: relative;
}
.anna-redSection {
  position: relative;
  margin: 0px;
  border: 0px;
  padding: 40px 0px;
  background: #eff8fd;
}
.anna-redSection .lrgSubTxt {
  display: block;
  font-size: 22px;
  line-height: 32px;
  letter-spacing: 0px;
  color: #1344da;
  font-weight: 700;
  margin: 0px;
  border: 0px;
  padding: 0px 0px 10px 0px;
  position: relative;
}
.anna-redSection .bullets {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 15px;
  padding-bottom: 30px;
}
.anna-redSection .greenButton {
  padding: 30px 40px;
  display: block;
  text-align: center;
  border-radius: 122px;
  font-size: 24px;
  text-decoration: none;
  font-weight: 600;
  background-color: #2ee86a;
}
@media (max-width: 715px) {
  .cashPlusContent .smlTxt {
      font-size: 20px;
      line-height: 9px;
  }
  .anna-redSection {
      padding: 5px;
  }
  .cashPlusContent .lrgTxt {
      font-size: 35px;
      line-height: 30px;
      margin: 10px 0px;
  }
  .lrgSubTxtContent {
      font-size: 15px;
  }
  .anna-redSection .bullets {
      padding-top: 10px;
      padding-bottom: 10px;
      align-content: stretch;
  }
  .anna-redSection .lrgSubTxt {
      font-size: 16px;
  }
  .bullet-item {
      align-items: flex-start;
  }
  .bullets .bullet-text {
      font-size: 14px;
      line-height: 19px;
  }
}