/* Override section and wrapper inherited styles */
.section.form-container {
  padding: 0 40px;
  margin: 0;
}

.section.form-container>.form-wrapper {
  max-width: none !important;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.section.form-container>.form-wrapper>div,
.section.form-container .form-wrapper {
  max-width: none !important;
  width: 100%;
}

.form.block {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  border-radius: 20px;
  max-width: 100%;
  width: 100%;
  margin: 0;
  min-height: 100%;
}

.form.block .form-row {
  display: flex !important;
  align-items: flex-start;
  gap: 80px;
  width: 100%;
}

.form.block .form-description-cell {
  flex: 0 0 300px;
  max-width: 300px;
  min-width: 300px;
}

.form.block .form-title-small {
  font-size: 20px;
  color: #000;
  font-weight: 600;
  margin-bottom: 8px;
}

.form.block .form-title-large {
  font-size: 64px;
  color: #f14950;
  font-weight: 600;
  line-height: 70.4px;
  margin-bottom: 20px;
}

.form.block .form-subtitle {
  font-size: 20px;
  color: #2e2f32;
  line-height: 1.5;
}

.form.block .form-fields-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
  width: 100%;
}

@media (min-width:992px) {
  .form.block .form-fields-area {
    gap: 0;
  }

  .form.block .form-consent-area {
    margin-top: 0px;
  }

  .form.block .form-button-cell {
    margin-top: 25px !important;
  }
}

.form.block .form-inputs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
}

.form.block .form-input-cell {
  display: flex;
  flex-direction: column;
  min-width: 0;
  width: 100%;
}

.form.block .form-field {
  position: relative;
  min-width: 0;
  width: 100%;
}

.form.block .form-field-label {
  position: absolute;
  top: -7px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 0 3px;
  background: #fff;
  color: #53565a;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.form.block .form-field.show-label .form-field-label {
  opacity: 1;
  visibility: visible;
}

.form.block .form-field-required {
  color: #53565a;
}

.form.block .form-input,
.form.block .form-control.form-input {
  width: 100%;
  height: 52px;
  padding: 0 20px;
  border: 1px solid #53565a;
  border-radius: 8px;
  background-color: transparent;
  color: #53565a;
  font-size: 16px;
  line-height: 1.2;
  box-sizing: border-box;
  box-shadow: none;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    color 0.25s ease,
    background-color 0.25s ease;
}

.form.block .form-input::placeholder {
  color: #53565a;
  opacity: 1;
}

.form.block .form-input:focus,
.form.block .form-control.form-input:focus {
  outline: none;
  box-shadow: none;
  border-color: #53565a;
  background-color: transparent;
}

.form.block .form-field.is-focused .form-input,
.form.block .form-field.has-value .form-input,
.form.block .form-field:not(.is-focused):not(.has-value) .form-input {
  border-color: #53565a;
}

.form.block .form-input-prefix-wrap {
  position: relative;
  width: 100%;
}

.form.block .form-input-prefix {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  z-index: 2;
  color: #53565a;
  font-size: 16px;
  line-height: 1.2;
  pointer-events: none;
  white-space: nowrap;
}

.form.block .form-input.form-input--with-prefix,
.form.block .form-control.form-input.form-input--with-prefix {
  padding-left:55px;
}

.form.block .form-consent-area {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 4px;
}

.form.block .form-consent-options {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 34px;
}

.form.block .form-consent-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 32px;
  cursor: pointer;
  user-select: none;
  align-self: self-start;
}

.form.block .form-consent-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.form.block .form-consent-text {
  color: #53565a;
  font-size: 12px;
  font-weight: 400;
  line-height: 16.8px;
}

.form.block .form-consent-text-whatsapp {
  color: #000000;
  font-weight: 500;
}

.form.block .form-consent-box {
  position: relative;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border: 1px solid #b0b1b3;
  border-radius: 4px;
  background: transparent;
  transition: all 0.2s ease;
}

.form.block.blue-form .form-consent-input:checked+.form-consent-box {
  /* background: #fff;
  border-color: #53565a; */
  background-color: transparent;
  border: 1px solid #fff;
}
.form.block .form-consent-input:checked+.form-consent-box {
  /* background: #fff;
  border-color: #53565a; */
  background-color: transparent;
  border: 1px solid #b0b1b3;
}

.form.block .form-consent-input:checked+.form-consent-box::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 7px;
  width: 5px;
  height: 10px;
  transform: rotate(45deg);
}
.form.block .form-consent-input:checked+.form-consent-box::after {
     border-right: 2px solid #b0b1b3;
  border-bottom: 2px solid #b0b1b3;
}
.form.block.blue-form .form-consent-input:checked+.form-consent-box::after {
    border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.form.block .form-consent-item--toggle .form-consent-toggle {
  position: relative;
  flex: 0 0 40px;
  width: 40px;
  height: 22px;
  border-radius: 999px;
  background: gray;
  transition: background-color 0.2s ease;
}

.form.block .form-consent-item--toggle .form-consent-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 4px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s ease;
}

.form.block .form-consent-item--toggle .form-consent-input:checked+.form-consent-toggle {
  background: #14c759;
}

.form.block .form-consent-item--toggle .form-consent-input:checked+.form-consent-toggle::after {
  transform: translateX(19px);
}

.form.block .form-consent-note {
  color: #53565a;
  font-size: 11px;
  line-height: 16.3px;
  max-width: 920px;
  font-weight: 300;
  letter-spacing: .5px;
}

.form.block .form-button-cell {
  display: flex;
  align-items: center;
  justify-content: end;
  margin-top: 0;
  width: 100%;
}

.form.block .form-submit,
.form.block .btn.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 22px;
  border-radius: 30px;
  background: var(--gradient, linear-gradient(180deg, #fec940, #f90)) !important;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: none;
}

.form.block .form-submit__label,
.form.block .form-submit__arrow,
.form.block .rotating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
}
.form.block .form-row .form-fields-area .form-button-cell .form-submit .form-submit__label{
  font-size: 16px;
  line-height: 24px;
}

.form.block .form-submit__arrow {
  width: 20px;
  height: 18px;
  background-image: url("/eds/icons/arrow-icon-new.svg");
  background-repeat: no-repeat;
  background-size: cover;
  filter: invert(1);
  align-self: center;
}

.form.block .rotating {
  font-size: 16px;
  line-height: 1;
  animation: form-submit-spin 1s linear infinite;
}

.form.block .d-none {
  display: none !important;
}

@keyframes form-submit-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.form.block .form-submit:hover,
.form.block .btn.form-submit:hover {
  background: #fed440 !important;
  border-color: #ffca28;
  color: #1a1a1a;
}

.form.block .form-submit:hover .form-submit__arrow,
.form.block .btn.form-submit:hover .form-submit__arrow {
  transform: translateX(2px);
}

.form.block .form-submit:focus,
.form.block .btn.form-submit:focus {
  box-shadow: none;
  outline: none;
}

.form.block .form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.form.block .form-empty-cell {
  display: none;
}

/* Hide form when popup is active */
.form.block.popup-active>.form-row,
.form.block.popup-active>div[style*='display: none'] {
  /* visibility: hidden; */
  height: 0;
  opacity: 0;
  pointer-events: none;
  padding: 0 !important;
}

/* Generic popup overlay */
.form.block .form-popup-overlay {
  /* position: absolute; */
  inset: 0;
  z-index: 50;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 20px;
  /* overflow: hidden; */
}

 .blue-form.form.block .form-popup-overlay {
  border-radius: unset
}

.form.block .form-popup-close {
  position: absolute;
  top: 3px;
  right: 18px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* width: 56px;
  height: 56px; */
  padding: 0;
  border: none;
  border-radius: 50%;
  /* background: rgb(255 255 255 / 88%); */
  background: none;
  color: #1a1a1a;
  font-size: 44px;
  line-height: 50px;
  cursor: pointer;
}

/* Success popup */
.form.block .form-popup-overlay--success {
  background: #ded7cb;
}

.form.block .form-popup-success-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: inset(0 round 20px);
}

.form.block .form-popup-success-cta,
.form.block .explore-now-rewamp {
  position: absolute;
  opacity: 0;
  z-index: 2;
  bottom: 36%;
  right: 7%;
  width: 11%;
  height: 33%;
  border-radius: 100%;
}

/* Error popup */
.form.block .form-popup-overlay--error {
  background: #fff;
}

.form.block .form-error-popup {
  display: grid;
  grid-template-columns: 32% 68%;
  width: 100%;
  height: 100%;
}

.form.block .form-error-popup__left {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 40px 48px 48px;
  background: #f4f4f4;
}

.form.block .form-error-popup__copy {
  max-width: 360px;
}

.form.block .form-error-popup__title {
  margin: 0 0 24px;
  color: #111;
  font-size: 60px;
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -1px;
}

.form.block .form-error-popup__text {
  margin: 0;
  color: #111;
  font-size: 18px;
  line-height: 1.45;
}

.form.block .form-error-popup__right {
  min-width: 0;
  height: 100%;
}

.form.block .form-error-popup__media {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 56px 48px;
  background-image: var(--form-error-image-desktop);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.form.block .form-error-popup__media::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(0 0 0 / 35%) 0%, rgb(0 0 0 / 10%) 45%, rgb(0 0 0 / 0%) 100%);
}

.form.block .form-error-popup__content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  color: #fff;
}

.form.block .form-error-popup__content-title {
  margin: 0 0 18px;
  color: #fff;
  font-size: 54px;
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.5px;
}

.form.block .form-error-popup__content-subtitle {
  margin: 0 0 24px;
  color: #fff;
  font-size: 18px;
  line-height: 1.35;
}

.form.block .form-error-popup__actions {
  margin-bottom: 16px;
}

.form.block .form-error-popup__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 8px;
  background: #ffbc1f;
  color: #111;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.form.block .form-error-popup__button:hover {
  background: #ffc839;
  color: #111;
}

.form.block .form-error-popup__download {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-field {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.form-field-error {
  min-height: 1px;
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.2;
  color: #ed1c24;
  text-align: left;
}

.form-field.has-error .form-input,
.form-input.is-invalid {
  border-color: #ff2343 !important;
  box-shadow: none !important;
  background-image: unset;
}

.form-field.has-error .form-field-label {
  color: inherit;
}
        .form.block.white-form .btn.form-submit .form-submit__label {
          font-weight: 700;
        }
/* Tablet */
@media (width <=991px) {
  .form.block.white-form .form-title-small {
      font-weight: 700;
      color: #2e2f32;
    }
  
    .form.block.white-form .form-title-large {
      font-weight: 800;
      margin-bottom: 6px;
    }
  
    .form.block.white-form .form-title-large p {
      margin-bottom: 0;
    }
  
    .form.block.white-form .form-subtitle {
      font-size: 14px;
      font-weight: 500;
      line-height: 21px;
      color: #3b3d40;
      margin-bottom: 0;
      letter-spacing: normal;
      width: 305px;
    }
    .form.block.white-form .form-button-cell {
      margin-top: 14px;
    }
    .form.block.white-form  .btn.form-submit {
      width: 100%;
      background: #fcaf17 !important;
    }
     .form.block.white-form .form-subtitle p {
      font-size: inherit;
      font-weight: inherit;
      line-height: inherit;
      color: inherit;
      letter-spacing: inherit;
     }
  .intereseted-cta {
    top: 37%;
    left: 50%;
    padding: 0;
    transform: translate(-50%, -42%);
    width: 52%;
    height: 40px;
    position: absolute;
    border-radius: 20px;
  }

  .thank-you-pop-two .thank-img-desk {
    display: none;
  }

  .form.block .form-title-small {
    margin: 0;
  }

  .form.block .form-title-small p {
    margin: 0;
  }

  .form.block {
    padding: 40px;
    border-radius: 0 !important;
  }

  .form.block .form-row {
    flex-direction: column;
    gap: 30px;
  }

  .form.block .form-description-cell {
    flex: none;
    min-width: auto;
    max-width: 100%;
    text-align: left;
  }

  .form.block .form-title-large {
    font-size: 36px;
  }

  .form.block .form-consent-options {
    gap: 22px 24px;
  }

  .form.block .form-popup-success-cta {
    bottom: 50%;
    right: 6%;
    width: 31%;
    height: 16%;
    transform: translateY(93%);
  }

  .form.block .explore-now-rewamp {
    width: 29%;
    height: 13%;
    bottom: 50%;
    right: 6%;
    transform: translateY(93%);
  }

  .form.block .form-error-popup {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  .form.block .form-error-popup__left {
    align-items: flex-start;
    justify-content: flex-start;
    padding: 28px 24px 16px;
  }

  .form.block .form-error-popup__copy {
    max-width: 100%;
    padding-right: 48px;
  }

  .form.block .form-error-popup__title {
    margin-bottom: 12px;
    font-size: 28px;
    line-height: 1.05;
    letter-spacing: 0;
  }

  .form.block .form-error-popup__text {
    font-size: 14px;
    line-height: 1.45;
  }

  .form.block .form-error-popup__media {
    align-items: flex-start;
    padding: 28px 20px 20px;
    background-image: var(--form-error-image-mobile);
    background-position: center;
  }

  .form.block .form-error-popup__media::before {
    background:
      linear-gradient(180deg, rgb(0 0 0 / 35%) 0%, rgb(0 0 0 / 15%) 38%, rgb(0 0 0 / 0%) 100%);
  }

  .form.block .form-error-popup__content {
    max-width: 280px;
  }

  .form.block .form-error-popup__content-title {
    margin-bottom: 10px;
    font-size: 28px;
    line-height: 1.05;
    letter-spacing: 0;
  }

  .form.block .form-error-popup__content-subtitle {
    margin-bottom: 14px;
    font-size: 12px;
    line-height: 1.35;
  }

  .form.block .form-error-popup__actions {
    margin-bottom: 10px;
  }

  .form.block .form-error-popup__button {
    min-height: 40px;
    padding: 10px 16px;
    font-size: 13px;
    border-radius: 6px;
  }

  .form.block .form-error-popup__download {
    font-size: 11px;
  }
}

/* Mobile */
@media (width <=600px) {
  .section.form-container {
    padding: 0;
  }

  .form.block {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .form.block .form-row {
    flex-direction: column;
    gap: 24px;
  }

  .form.block .form-description-cell {
    text-align: left;
  }

  .form.block .form-title-small {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
  }

  .form.block .form-title-large {
    font-size: 32px;
    font-weight: 600;
    line-height: 41.6px;
    letter-spacing: 0;
    margin-bottom: 6px;
  }

  .form.block .form-subtitle {
    font-size: 14px;
  }

  .form.block .form-subtitle p {
    font-size: inherit;
    margin-bottom: 0;
  }

  .form.block .form-inputs-grid {
    grid-template-columns: 1fr;
  }

  .form.block .form-input-cell {
    width: 100%;
  }

  .form.block .form-field-label {
    top: -6px;
    left: 15px;
    font-size: 13px;
  }

  .form.block .form-input,
  .form.block .form-control.form-input {
    height: 52px;
    padding: 18px 18px 18px;
    font-size: 16px;
    border-radius: 12px;
  }

  .form.block .form-input-prefix {
    left: 18px;
    font-size: 16px;
  }

  .form.block .form-input.form-input--with-prefix,
  .form.block .form-control.form-input.form-input--with-prefix {
    padding-left: 55px;
  }

  .form.block .form-consent-area {
    gap: 18px;
  }

  .form.block .form-consent-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .form.block .form-consent-item {
    width: 100%;
    gap: 16px;
  }

  .form.block .form-consent-item:nth-of-type(1) {
    margin-bottom: 10px;
  }

  .form.block .form-consent-box {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }

  .form.block .form-consent-input:checked+.form-consent-box::after {
    top: 3px;
    left: 7px;
    width: 5px;
    height: 11px;
  }

  .form.block .form-consent-item--toggle .form-consent-toggle {
    width: 40px;
    height: 22px;
    flex-basis: 40px;
  }

  .form.block .form-consent-note {
    font-size: 10px;
    line-height: 1.5;
  }
  .form.block.blue-form .form-consent-note {
    font-size: 11px;
    line-height: 15.03px;
    font-weight: 400;
  }

  .form.block .form-button-cell {
    width: 100%;
    justify-content: flex-start;
  }

  .form.block .form-submit,
  .form.block .btn.form-submit {
    width: 65%;
  }

  .form.block .form-popup-overlay {
    border-radius: 16px;
    width: calc(100% + 32px);
    margin-left: -16px;
  }

  .form.block .form-popup-close {
    top: 5px;
    right: 5px;
    width: 40px;
    height: 40px;
    font-size: 36px;
  }
}

/* Form Verical Variant - Home page   */

@media (min-width: 992px) {
  .intereseted-cta {
    left: 34%;
    bottom: 20%;
    padding: 0;
    height: 10%;
    width: 16%;
    transform: translateX(-4px);
    position: absolute;
    border-radius: 20px;
  }

  .thank-you-pop-two .thank-img-mob {
    display: none;
  }

  .section.form-container .form.block .form-row {
    padding: 51px 47px 38px 70px;
    justify-content: space-between;
  }

  .form.block .form-row {
    gap: unset;
  }

  .form.block .form-inputs-grid {
    column-gap: 50px;
    row-gap: 15px;
  }

  .form.block .form-row .form-description-cell {
    flex: 0 30%;
    min-width: unset;
    max-width: unset;
    align-self: center;

  }

  .form.block .form-consent-options {
    justify-content: space-between;
  }
   .form.block.blue-form .form-consent-options {
       flex-direction: column;
   }
  .form.block.blue-form .form-title-small , .form.block.blue-form .form-title-small p {
    margin: 0;
  }

  .form.block .form-consent-options-right {
    display: flex;
    gap: 0 18px;
    align-self: self-start;
  }
  .form.block.blue-form .form-consent-options-right  {
    justify-content: space-between;
    width: 100%;
  }
  .form.block.blue-form .form-consent-options-right label:nth-of-type(1) {
    width: 63%;
  }
  .form.block.blue-form .form-consent-options-right label:nth-of-type(2) {
    width: 40%;
  }
  .form.block.blue-form .form-consent-options-right .form-consent-item .form-consent-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 19.12px;
  }

  .form.block .form-button-cell {
    justify-content: flex-end;
  }

  .form.block .form-subtitle {
    line-height: 24px;
    width: 375px;
  }

  .form.block .form-row .form-fields-area {
    flex: 0 70%;
  }
}

@media (min-width: 1201px) and (max-width: 1440px) {
  .section.form-container .form.block {
    /* padding: 51px 50px 38px 50px; */
  }

  .form.block .form-row .form-description-cell {
    flex: 0 33%;
    min-width: unset;
    max-width: unset;
    align-self: center;
  }

  .form.block .form-row .form-fields-area {
    flex: 0 60%;
  }
}

/* ============================================
   Variant: Form — Blue Form
   ============================================ */
  @media  screen and (min-width: 992px) {
    .royale-play-form .form.block.blue-form .form-title-large {
        font-size: 14px;
        line-height: 22px;
        margin: 0;
        letter-spacing: unset;
      }
      .royale-play-form .form.block.blue-form .form-title-large p {
        letter-spacing: unset;
      }
    
      .royale-play-form .form.block.blue-form .form-title-small {
        max-width: 90%;
      }
        .form.block.blue-form .form-row .form-fields-area .form-button-cell .form-submit .form-submit__label {
          font-size: 14px !important;
          line-height: 21px;
          font-weight: 700;
          letter-spacing: 0.86px;
        }
    .form.block.blue-form .form-row .form-description-cell {
      padding-top: 18px;
      padding-right: 30px;
    }
    .form.block.blue-form .form-title-large p {
      font-size: inherit;
      line-height: inherit;
      font-weight: inherit;
      word-wrap: break-word;
      letter-spacing: 0.5px;
    }
    .form.block.blue-form .form-inputs-grid {
      row-gap: 25px;
      column-gap: 6%;
    }
    .form.block.blue-form .form-input, .form.block .form-control.form-input {
      padding: 0 0 0 15px;
    }
  }
  @media (min-width: 1201px) and (max-width: 1440px) {
    .form.block.blue-form .form-row .form-description-cell {
      flex: 0 48%;
    }
    .form.block.blue-form .form-row .form-fields-area {
      flex: 0 70%
    }
  }
.form.block.blue-form {
  background-color: #425E8E;
}

.form.block.blue-form .form-field-label {
  color: #fff;
  background: #425E8E;
}

.form.block.blue-form .form-input,
.form.block.blue-form .form-control.form-input {
  border: 1px solid #fff;
  color: #fff;
}

.form.block.blue-form .form-field-required {
  color: #fff;
}

.form.block.blue-form .form-input::placeholder,
.form.block.blue-form .form-control.form-input::placeholder {
  color: rgb(255 255 255 / 1000%);
  opacity: 1;
}

.form.block.blue-form .form-input:focus,
.form.block.blue-form .form-control.form-input:focus {
  border-color: #fff;
  color: #fff;
}

.form.block.blue-form .form-field.is-focused .form-input,
.form.block.blue-form .form-field.has-value .form-input,
.form.block.blue-form .form-field:not(.is-focused):not(.has-value) .form-input {
  border-color: #fff;
}

.form.block.blue-form .form-input-prefix {
  color: #fff;
}

.form.block.blue-form .form-consent-text {
  color: #fff;
}

.form.block.blue-form .form-consent-note {
  color: #fff;
}

.form.block.blue-form .form-consent-box {
  border: 1px solid #fff;
}

.form.block.blue-form .form-title-small {
  color: #fff;
  font-size: 40px;
  font-weight: 800;
  text-transform: capitalize;
  line-height: 48px;
}

.form.block.blue-form .form-title-large {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  word-wrap: break-word;
  max-width: 90%;
  margin: 15px 0;
}
 @media (min-width: 1201px) and (max-width: 1440px) { 
  .form.block.blue-form .form-title-large {
    max-width: 100%;
  }
 }
.form.block.blue-form .form-submit:hover .form-submit__arrow,
.form.block.blue-form .btn.form-submit:hover .form-submit__arrow {
  transform: translateX(2px);
  filter: invert(0);
}

.form.block.blue-form .form-submit:hover,
.form.block.blue-form .btn.form-submit:hover {
  background: transparent !important;
  border: 1px solid #fff !important;
  color: #fff !important;
}

/* Tablet and below adjustments for blue form*/
@media screen and (max-width: 992px) {
  .form.block.blue-form .form-title-small {
    font-size: 24px;
    padding-bottom: 0;
    line-height: 36px;
  }

  .form.block.blue-form .form-title-large {
    font-size: 14px;
    line-height: 22px;
    margin-top: 8px;
    font-weight: 500;
    margin-bottom: 0;
    max-width: 100%;
  }
}

/********WHite Form Styling Changes***********/

@media screen and (min-width: 992px) {
  .form.block.white-form .form-inputs-grid {
    row-gap: 40px;
    column-gap: 6%;
  }
  .form.block.white-form .form-consent-area {
    margin-top: 10px;
  }
  .white-form .form-title-small {

    color: #2e2f32 !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    line-height: 28px !important;
    margin: 0 0 0 0 !important;
  }

  .white-form .form-title-small p {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    margin: 0;
  }

  .white-form .form-title-large {
    margin: 0 0 13px 0 !important;
    font-weight: 700 !important;
    max-width: 90%;
  }

  .white-form .form-title-large p {
    margin: 0 !important;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: -2px;
  }

  .white-form .form-subtitle {
    font-size: 20px !important;
    font-weight: 400 !important;
    line-height: 28px !important;
    color: #2e2f32 !important;
    letter-spacing: normal !important;
    margin: 0 !important;
  }

  .white-form .form-subtitle p {
    margin: 0 !important;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
  }

  .form.block.white-form .form-row .form-description-cell {
    align-self: flex-start;
  }

}

@media (max-width:992px) {
.fitcontent.form-container .form.block .form-submit, .form.block .btn.form-submit {
  width:fit-content !important
}
.fitcontent.form-container .form.block {
  padding:20px !important;
}
.fitcontent.form-container .form.block .form-popup-overlay {
          width: calc(100% + 40px) !important;
        margin-left: -20px !important;
}
.blue-form.form.block .form-popup-overlay {
  margin-top: -22px;
  margin-bottom: -22px;
}
.blue-form.form.block:has(.form-popup-overlay--success) {
  border-radius: 20px !important;
}
}

.royale-play-form:not(.royale-play-form ~ .royale-play-form) .thank-you-active.popup-active {
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, .1), 0 0 1px 0 rgba(0, 0, 0, .1);
}