/*Disable the timeline*/
.jp-progress, .rtc-slider-handle {
  pointer-events: none !important;
}

.progress-cell {
  cursor: not-allowed !important;
}

.card__inner {
  /*Dark Precisely Purple Background */
  background: #230042 ;
}

.card__inner {
  position: relative;
  width: 1920px;
  height: 1080px;
  transform-origin: top left;
  background-size: cover;
}

.steps-container {
  width: 1920px; /*Width is the number of Steps * 1920px */
  position: relative;
  left: 0px; /*Left is the currentCard-1 * -1920 */
  overflow: hidden;
}

.step {
  width: 1920px;
  height: 1080px;
  float: left;
}

/* TEXT DEFAULTS FOR CARDS //////////////////////////////////////////////////////*/
h1, h2, h3, p {
  color: #ffffff;
  font-family: Precisely_regular;
}

.heading-container {
  margin: auto;
  height: 380px;
  padding-top:100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.heading-container h1 {
  font-size: 100px;
  text-align: center;
}

.heading-container h1 .highlight {
  font-family: Precisely_Bold;
  color: #7F36F2;
}

/* DOT INDICATOR ////////////////////////////////////////////////////////////////*/
.dot-indicator {
  width: 100%;
  height: 20px;
  margin: auto;
  position: fixed;
  top: 990px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.dot {
  height: 18px;
  width: 18px;
  border-radius: 9px;
  background: #ffffff;
  opacity: 0.4;
}

.dot.current {
  opacity: 1;
}

/* INTERFACE BODY ///////////////////////////////////////////////////////////////*/
.interface-body {
  margin: 60px auto 0 auto;
  height: 500px;
  display:flex;
}

/* BACK/FORWARD CONTAINER - FOR SMALL PREVIOUS OR BACK BUTTONS //////////////////*/
.back-container, .forward-container {
  width: 108px;
  height: 108px;
  position: fixed;
  top: 930px;
  z-index: 1;
}

.back-container{
  left: 0px;
  margin-left: 2%;
  background-repeat: no-repeat;
  cursor: pointer;
}

.forward-container{
  right: -30px;
  margin-right: 2%;
  background-repeat: no-repeat;
  cursor: pointer;
}

.back-container svg,.forward-container svg{
  fill: #7F36F2;
}

.back-container:hover svg,.forward-container:hover svg{
  fill: #E5007E;
}

/* BIG BACK/FORWARD CONTAINERS - FOR LARGE PREVIOUS OR BACK BUTTONS /////////////*/
.big-back-container, .big-forward-container {
  width: 120px;
  height: 180px;
  position: fixed;
  top: 540px;
}

.big-back-container svg, .big-forward-container svg{
  fill: #7f36f2;
}

.big-back-container:hover svg, .big-forward-container:hover svg{
  fill: #E5007E;
}

.big-back-container{
  left: 0px;
  margin-left: 3.5%;
  background-repeat: no-repeat;
  cursor: pointer;
}

.big-forward-container{
  right: 0px;
  margin-right: 3.5%;
  background-repeat: no-repeat;
  cursor: pointer;
}

/* TEXT-INPUT / NUMBER-INPUT TEMPLATE //////////////////////////////////////////////////////////*/
/* fix for mobile devices disable input display */
input:disabled {
  opacity: 1 !important;        /* Override faded look */
  -webkit-opacity: 1 !important; /* Legacy Safari override */
}

.interface-body.text-input, .interface-body.number-input, .interface-body.decimal-input, .interface-body.email-input{
  width: 90%;
  align-items: center;
  justify-content: center;
}

.text-input input[type=text], .email-input input[type=email], .number-input input[type=text], .decimal-input input[type=text]{
  width: 70%;
  height: 260px;
  position: relative;
  top: -60px;
  padding: 5px 10px;
  color: #E5007E;
  background-color: #230042;
  background-clip: padding-box;
  border: none;
  border-bottom: 6px solid #7F36F2;
  font-family: Precisely_Bold;
  letter-spacing: -5px;
  font-size: 180px;
  text-align: center;
}

.email-input input[type=email]{
    width: 90%;
    top: -130px;
    font-size: 100px;
    letter-spacing: -2px;
    font-family: 'Precisely_Regular';
    background-color: none;
    border-bottom: 6px solid #7F36F2;
}


.email-input input[type=email].error, .text-input input[type=text].error{
  background-color: #9E1F63;
  border-bottom: 6px solid #E5007E;
  color: #E5007E;
}

.email-input input[type=email].error::placeholder, .email-input input[type=text].error::placeholder{
  color: #E5007E;
}

.email-input .email-error, .text-input .text-error, .text-input .text-required {
    font-family: 'Precisely_Regular';
    font-size: 50px;
    position: absolute;
    color: #E5007E;
    top: 720px;
    display: none;
}

.text-input .text-error, .text-input .text-required {
  top: 800px;
}

.text-input .text-required{
    display: block;
}

.number-input input[type=text], .decimal-input input[type=text]{
  font-size: 230px;
  top: -40px;
  padding-bottom: 40px;
  letter-spacing:-8px;
}

.number-descriptor {
    color: #7F36F2;
    font-family: 'Precisely_Regular';
    font-size: 45px;
    position: absolute;
    top: 750px;
    padding: 0 10px;
    background-color: #230042;
}

.text-input input[type=text]::placeholder, .email-input input[type=email]::placeholder {
  color: #E5007E;
  opacity: 0.85;
}

.text-input input[type=text]:focus, .email-input input[type=email]:focus, .number-input input[type=text]:focus, .decimal-input input[type=text]:focus {
  outline: none;
}

/* NUMBER-INPUT INCREMENT BUTTONS //////////////////////////////////////////////////////////*/
.incrementUp, .incrementDown {
  width: 220px;
  height: 220px;
  border-radius: 110px;
  top: -60px;
  position: relative;
  z-index:3;
  background: rgba(255,255,255, 0.1);
  border: none;
}

.incrementUp {
  right: 30px;
}

.incrementDown {
  left: 30px;
}

.incrementDown:disabled svg, .incrementUp:disabled svg{
  cursor: not-allowed !important;
  opacity: 0.25 !important;
  color: #000000 !important;
}

.incrementDown svg, .incrementUp svg{
  color: #ffffff;
  opacity: 0.8;
}

.incrementDown:hover svg, .incrementUp:hover svg, .incrementDown:active svg, .incrementUp:active svg{
  color: #E5007E;
  opacity: 1;
}

/* BUTTON-GROUP TEMPLATE STYLING /////////////////////////////////////////////////*/
.interface-body.button-group{
  width: 80%;
  align-content: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

/* BUTTON-COLUMN TEMPLATE STYLING /////////////////////////////////////////////////*/
.interface-body.button-column{
  width: 80%;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
}

/* BUTTON-ROW TEMPLATE STYLING /////////////////////////////////////////////////*/
.interface-body.button-row{
  width: 90%;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap ;
  gap: 30px;
  height: 400px;
}

/* GENERIC BUTTON STYLING ////////////////////////////////////////////////////////*/
.button-group button, .button-column button, .button-row button, .submit-btn, .skip-btn{
  color: #ffffff;
  background-color: #7F36F2;
  font-family: Precisely_Regular;
  font-size: 65px;
  padding: 17px 40px;
  border-radius: 60px;
  border: none;
}

.button-row button{
  padding: 30px 40px;
}

.button-group button:hover, .button-column button:hover, .button-row button:hover, .interface-body .submit-btn:hover, .interface-body .skip-btn:hover{
  color: #ffffff;
  background-color: #E5007E;
}

.interface-body .submit-btn, .interface-body .skip-btn{
  position: absolute;
  top: 800px;
  padding-left: 80px;
  padding-right: 80px;
}

.interface-body .skip-btn {
  top: 830px;
}

.interface-body, .heading-container, .dot_indicator, .back-container, .forward-container, .big-back-container, .big-forward-container, .number-input input[type=text] {
   /*border: 1px solid yellow;*/
}

.error-card {
    position: relative;
    margin: 0;
    padding: 11% 7%;
    width: 100%;
    height: 100%;
    color: #fff;
    background-color: #230042;
    font-family: Precisely_regular;
    font-weight: 400;
}

.failover_message,
.card.failover_message,
.card.failover_message .failover_message {
    padding: 0 !important;
}

h1.error-card__heading {
    margin-bottom: 8vh;
    color: #fff !important;
    font-family: Precisely_regular !important;
    font-weight: 400;
    font-size: 9.25vh !important;
}

.error-card p {
    margin: 0;
    padding-bottom: 5vh !important;
    color: #fff;
    font-family: Precisely_regular !important;
    font-weight: 400;
    font-size: 4.07vh !important;
}

.error-card b,
.error-card strong {
    font-family: Precisely_Bold !important;
    font-weight: 400;
}

.failover_message .messageID {
    color: #fff;
    font-family: Precisely_regular; !important;
    font-weight: 400;
}

.button--error-card {
    position: absolute;
    top: 80vh;
    margin: 0 !important;
    padding: 0.5em 1em;
    color: #230042 !important;
    background-color: #fff;
    border: none;
    border-radius: 50px;
}

.button--error-card:hover,
.button--error-card:focus,
.button--error-card:active {
    color: #fff !important;
    background-color: #7F36F2;
    text-decoration: none;
}

.browser-list li {
    float: left;
    margin: 0.5em;
    padding: 1em;
    background-color: #fff;
}

#unsupported-browser-card .browser__thumb {
    width: 3em;
    height: 3em;
    background-color: #fff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#unsupported-browser-card p.messageID {
    padding: 0;
}
.card--scene09 {
  /*Dark Precisely Purple Background */
  background: #230042 ;
}

.disclaimer {
    position: absolute;
    color: #a593c1;
    font-size: 30px;
    text-align: center;
    width: 1920px;
    top: 915px;
    display: none;
}

.disclaimer a {
  color: #E5007E;
}
.card--end {
  /*Dark Precisely Purple Background */
  background: #230042;
  text-align: center;
}

.card--end .heading{
  width: 90%;
  margin: auto;
  padding: 100px 0px 50px 0px;
}

.card--end .heading h1 {
  font-size: 100px;
  text-align: center;
}
.card--end .sub-heading {
  height: 118px;
  overflow: hidden;
}

.card--end .sub-heading h2 {
  font-size: 70px;
  text-align: center;
  color: #ffffff;
  padding: 2px 0px 50px 0px;
  font-family: Precisely_Regular;
}

.card--end .heading h1 .highlight {
  font-family: Precisely_Bold;
  color: #7F36F2;
}

.card--end .heading h1 .first-name {
  font-family: Precisely_Bold;
  color: #7F36F2;
}

.card--end .heading h1 sup {
  font-family: Precisely_Regular;
  font-size: 40px;
  position:relative;
  top:-40px;
}

.card--end button.send-feedback-btn{
  margin: auto;
  color: #ffffff;
  background-color: #7F36F2;
  font-family: Precisely_Light;
  font-size: 40px;
  padding: 18px 50px;
  border-radius: 60px;
  border: none;
  display: block;
  position: relative;
  top: -46px;
  left: 490px;
}

.card--end button:hover, .card--end button.lets-talk-btn:hover, .card--end button.lets-go-btn:hover{
  color: #ffffff;
  background-color: #E5007E;
}

.card--end button.lets-talk-btn, .card--end button.lets-go-btn {
  position: relative;
  bottom: 0px;
  color: #ffffff;
  background-color: #7F36F2;
  font-family: Precisely_Regular;
  font-size: 65px;
  padding: 25px 170px;
  border-radius: 60px;
}

.stars {
  height: 260px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

#star_1,#star_2,#star_3,#star_4,#star_5{
  fill: #ffffff;
  cursor: pointer;
}
#star_1:hover,#star_2:hover,#star_3:hover,#star_4:hover,#star_5:hover,
#star_1:has(~#star_2:hover,~#star_3:hover,~#star_4:hover,~#star_5:hover),
#star_2:has(~#star_3:hover,~#star_4:hover,~#star_5:hover),
#star_3:has(~#star_4:hover,~#star_5:hover),
#star_4:has(~#star_5:hover){
  fill: #FAB512;
}

.feedback-container{
  height:470px;
  margin-bottom: 50px;
}

.comments{
  width: 100%;
  height: 300px;
  display:none;
}

.comments-box{
  width: 68%;
  border-radius: 50px;
  height: 300px;
  font-size: 50px;
  padding: 28px;
  font-family: Precisely_Regular;
  line-height:60px;
  border: 0px;
}

.card--end .comments .error {
    padding: 17px 35px;
    width: 540px;
    background-color: #f45656;
    color: #ffffff;
    font-size: 40px;
    font-family: 'Precisely_Light';
    position: relative;
    left: 1173px;
    top: -208px;
    border-radius: 50px;
    display:none;
}

.comments-box:focus{
  outline: none;
}

.thanks {
   font-family: Precisely_Regular;
   width: 90%;
   margin: auto;
   color: #ffffff;
   display:none;
   font-size: 60px;
   text-align: center;
   color: #ffffff;
   height: 800px;
   padding: 38px 0px 50px 0px;
   font-family: Precisely_Regular;
   line-height: 72px;
}

.contacted .contacted-hiden {
  display:none;
}

/*//////////////////////CONTACT//////////////////////////////////////////////////*/
.card--end .contact .heading{
  padding: 100px 0px 10px 0px;
}

.card--end .contact .sub-heading h2{
  font-size: 60px;
  padding: 2px 0px 14px 0px;
}

.card--end .contact .fields-container{
  height: 440px;
  padding-bottom: 50px;
}
.card--end .contact .row{
  height: 210px;
  margin: auto;
  width: 90%;
  display: flex;
  gap: 30px;
  flex-wrap: nowrap;
  align-items: flex-start;
}

.card--end .field-box label, .card--end .field-box input[type=text] {
  width: 100%;
  font-size: 50px;
  font-family: Precisely_Regular;
  text-align: center;
  border:none;
}

.card--end .field-box{
  flex-grow: 1;
  flex-basis: 0;
  height: 100%;
}

.card--end .field-box input[type=text] {
  border-radius: 60px;
  padding: 24px;
  color: #E5007E;
  border: 0px;
}

.card--end .field-box input[type=text]:focus {
  outline: none;
}

.card--end .field-box label {
  color: #ffffff;
  padding-bottom: 20px;
}

.card--end .field-box input[type=text].error{
  background-color: #9E1F63;
  border: 4px solid #E5007E;
  padding: 20px;
}

.card--end .field-box input[type=text].error::placeholder{
  color: #E5007E;
}

.card--end .contact .sub-heading .error {
  color: #E5007E;
  display:none;
}
.card--scene11 {
  /*Dark Precisely Purple Background */
  background: #230042 ;
}
.card--scene04 {
  /*Dark Precisely Purple Background */
  background: #230042 ;
}
.card--start {
  /*Dark Precisely Purple Background */
  background: #230042;
  text-align: center;
}

.card--start .heading{
  width: 90%;
  margin: auto;
  padding: 100px 0px 50px 0px;
}

.card--start .heading h1 {
  font-size: 100px;
  text-align: center;
}

.card--start .heading h1 .highlight {
  font-family: Precisely_Bold;
  color: #7F36F2;
}

.card--start .heading h1 .first-name {
  font-family: Precisely_Bold;
  color: #E5007E;
}

.card--start .heading h1 sup {
  font-family: Precisely_Regular;
  font-size: 40px;
  position:relative;
  top:-40px;
}

.card--start button{
  margin: auto;
  color: #ffffff;
  background-color: #7F36F2;
  font-family: Precisely_Regular;
  font-size: 65px;
  padding: 25px 50px;
  border-radius: 60px;
  border: none;
}

.card--start button:hover{
  color: #ffffff;
  background-color: #E5007E;
}
.card--scene06{
  /*Dark Precisely Purple Background */
  background: #230042 ;
}