.vegas-animation-kenburns2 {
  -webkit-animation: kenburns2 60s ease-out infinite;
  animation: kenburns2 60s ease-out infinite;
}

@-webkit-keyframes kenburns2 {
  0% { -webkit-transform: scale(1.1); }
  50% { -webkit-transform: scale(1); }
  100% { -webkit-transform: scale(1.1); }
}
@keyframes kenburns2 {
  0% { transform: scale(1.1); }
  50% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

/* Native contact form styles */
.register_form_wrap label,
.footer_form_wrap label,
.form_wrap label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.85);
}

.register_form_wrap input:not([type="submit"]):not([type="hidden"]),
.register_form_wrap select,
.footer_form_wrap input:not([type="submit"]):not([type="hidden"]),
.footer_form_wrap select,
.form_wrap input:not([type="submit"]):not([type="hidden"]),
.form_wrap select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  padding: 8px 4px 12px;
  color: #fff;
  margin-bottom: 18px;
  font-size: 0.95rem;
  font-family: inherit;
  border-radius: 0;
}

.register_form_wrap input:focus,
.register_form_wrap select:focus,
.footer_form_wrap input:focus,
.footer_form_wrap select:focus,
.form_wrap input:focus,
.form_wrap select:focus {
  outline: none;
  box-shadow: none;
  border-bottom-color: #fff;
}

.register_form_wrap input::placeholder,
.footer_form_wrap input::placeholder,
.form_wrap input::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.register_form_wrap select,
.footer_form_wrap select,
.form_wrap select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("../img/down.svg");
  background-repeat: no-repeat;
  background-position: right 4px center;
  background-size: 12px;
  padding-right: 24px;
}

.register_form_wrap select option,
.footer_form_wrap select option,
.form_wrap select option {
  background: #e7e5d0;
  color: #525438;
}

.register_form_wrap input[type="submit"],
.footer_form_wrap input[type="submit"],
.form_wrap input[type="submit"] {
  display: inline-block;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 12px 40px;
  margin-top: 10px;
  transition: background 0.3s, color 0.3s;
}

.register_form_wrap input[type="submit"]:hover,
.footer_form_wrap input[type="submit"]:hover,
.form_wrap input[type="submit"]:hover {
  background: #fff;
  color: #333;
}

.register_form_wrap .form-success,
.footer_form_wrap .form-success,
.form_wrap .form-success {
  text-align: center;
  padding: 40px 20px;
  color: #fff;
}

.register_form_wrap .form-success h2,
.footer_form_wrap .form-success h2,
.form_wrap .form-success h2 {
  font-family: inherit;
  font-style: italic;
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.register_form_wrap .form-success p,
.footer_form_wrap .form-success p,
.form_wrap .form-success p {
  margin: 0;
  font-size: 0.95rem;
}

.form-pot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.form-error {
  color: rgba(255, 200, 200, 0.9);
  font-size: 0.9rem;
  margin: 8px 0 0;
  text-align: center;
}


.page-ticker {
  
  color: #252727 !important;
  overflow: hidden;
}
.page-ticker .marquee {
  position: relative;
  display: flex;
  font-family: inherit;
  overflow: hidden;
  background-color: #DADF4F !important;
}
.page-ticker .marquee .marquee__inner {
  white-space: nowrap;
  min-width: 100%;
  text-align: center;
  font-size: 26px;
  line-height: 50px;
  font-family: "Benton Modern Display", serif;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0;
  display: flex;
  padding: 4px 0;
  animation: marquee 100s linear infinite;
}
.page-ticker .marquee .marquee__inner span {
  padding: 10px;
  padding-right: 40px;
}

@keyframes marquee {
  0% {
    transform: translatex(0%);
  }
  100% {
    transform: translatex(-3000px);
  }
}

#Privacy_Modal,
#Terms_Modal {
  width: min(92vw, 980px) !important;
  max-width: 980px !important;
  height: auto !important;
  min-height: 0 !important;
  background: #e7e5d0 !important;
  border: 0 !important;
  box-sizing: border-box !important;
  overscroll-behavior: contain;
  padding: 56px 64px !important;
  -webkit-overflow-scrolling: touch;
}

#Privacy_Modal {
  max-height: calc(100vh - 40px) !important;
  overflow: hidden !important;
}

#Terms_Modal {
  max-height: calc(100vh - 40px) !important;
  overflow-y: auto !important;
}

#Privacy_Modal .privacy-modal-scroll {
  max-height: calc(100vh - 152px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

#Privacy_Modal .disclaimer_text_col,
#Terms_Modal .disclaimer_text_col {
  max-width: none !important;
}

#Privacy_Modal h1,
#Terms_Modal h1 {
  color: #252727 !important;
  font-family: "Benton Modern Display", benton-modern-display, serif !important;
  font-size: 48px !important;
  font-style: italic !important;
  font-weight: 400 !important;
  line-height: 1.05 !important;
  margin: 0 0 28px !important;
  text-align: center !important;
  text-transform: none !important;
}

#Privacy_Modal .disclaimer_hr,
#Terms_Modal .disclaimer_hr {
  margin: 0 auto 36px !important;
}

#Privacy_Modal h3,
#Terms_Modal h3 {
  color: #252727 !important;
  font-family: "GT America Medium", "GT America", Arial, sans-serif !important;
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  margin: 34px 0 18px !important;
  text-transform: uppercase !important;
}

#Privacy_Modal p,
#Privacy_Modal li,
#Terms_Modal p,
#Terms_Modal li {
  color: #252727 !important;
  font-family: "GT America", "GT America Regular", Arial, sans-serif !important;
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 1.45 !important;
}

#Privacy_Modal p,
#Terms_Modal p {
  margin: 0 0 18px !important;
}

@media screen and (max-width: 640px) {
  #Privacy_Modal,
  #Terms_Modal {
    max-height: calc(100vh - 24px) !important;
    width: 94vw !important;
    padding: 44px 24px !important;
  }

  #Privacy_Modal .privacy-modal-scroll {
    max-height: calc(100vh - 112px);
  }

  #Privacy_Modal h1,
  #Terms_Modal h1 {
    font-size: 38px !important;
  }
}
