@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
body {
  padding-bottom: 30px;
  font: normal 400 18px/1.5 Montserrat, sans-serif;
  background: url(../images/bg.png) no-repeat center bottom/100% auto fixed;
}

.d-flex {
  display: flex;
}

.justify-content-center {
  justify-content: center;
}

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

h1 {
  margin: 0;
  text-align: center;
  font-weight: 700;
  font-size: 48px;
}

h1 em {
  color: #ff9500;
}

h1 p {
  margin: 0;
  font: inherit;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  padding: 4px 10px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 2px;
  font: inherit;
}

select {
  height: 38px;
}

a {
  text-decoration: none !important;
}

button:not(.jw-settings-content-item) {
  display: block;
  margin: 0 auto;
  padding: 12px 24px;
  background: linear-gradient(135deg, #ff9500 30%, #ff5e3a 100%);
  border: 2px solid #ff9500;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  transition: all 150ms ease-in-out;
}

button:not(.jw-settings-content-item):hover {
  transform: scale(1.05);
}

.subheadline {
  text-align: center;
  font-size: 22px;
}

.subheadline p:last-of-type {
  margin: 0;
}

.video-track {
  border: 10px solid #d8d9db;
}

form label,
form input {
  font-size: 16px;
}

form img {
  display: none;
}

.video-hide {
  display: none;
}

#success-video-wrap {
  position: relative;
}

#success-video-wrap #fake-play {
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/click_for_sound3.png) no-repeat 97% 4%/300px rgba(0, 0, 0, 0.75);
  font-size: 64px;
  z-index: 20;
  color: #fff;
  cursor: pointer;
  box-shadow: inset 0 0 0 10px #d8d9db;
}

.no-margin .container {
  padding-top: 0;
}

#success-page .container {
  max-width: 1170px;
}

#success-page .video-track {
  margin-bottom: 30px;
}

section:last-of-type .container {
  padding-bottom: 40px;
}

section .container {
  max-width: 800px;
  padding: 30px 30px 0;
  background: rgba(255, 255, 255, 0.9);
}

section.button-row .col-xs-12 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

section.button-row .col-xs-12 button {
  min-width: 190px;
  margin: 0;
}

.modal {
  color: #111;
  text-shadow: none;
}

.modal .modal-dialog {
  width: 95%;
  max-width: 660px;
}

.modal .modal-content {
  border: none;
  border-radius: 0;
}

.modal .modal-header {
  border: none;
  border-radius: 0;
  background: #ff9500;
}

.modal .modal-header .close {
  margin: 0;
  padding: 0;
}

.modal .modal-header .inner {
  width: 100%;
  padding: 20px 30px;
}

.modal .modal-header .inner h4 {
  margin: 0;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
}

.modal .modal-header .modal-title {
  font-size: 20px;
  text-transform: none;
}

.modal .modal-header .close:hover {
  background: none;
  color: #fff;
}

.modal#form-modal .modal-header .inner {
  padding: 20px 30px 15px;
}

.modal#form-modal #form-hide {
  display: none;
}

.modal#form-modal #form-hide p {
  margin: 0;
}

.modal .modal-body {
  padding: 20px 30px;
  border-bottom: 1px solid #e6e6e6;
}

.modal .modal-body p {
  margin: 0 0 20px;
}

.modal .modal-body p:last-of-type {
  margin: 0;
}

.modal .modal-body .note {
  margin: 20px 0 !important;
}

#form-modal input[type="checkbox"] {
  transform: translateY(-1px);
  margin-right: 3px;
}

#form-modal p {
  margin: 0 0 20px;
  font-size: 14px;
}

#loadingGraphic {
  display: none;
  padding: 2px 0 3px;
}

#loader {
  width: 44px;
  height: 44px;
  margin: 6px auto;
  -webkit-animation: 1s ease-in-out infinite animball_two;
  animation: 1s ease-in-out infinite animball_two;
}

#loader .loaderBall {
  width: 44px;
  height: 44px;
  position: absolute;
}

#loader .loaderBall .ball {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  -webkit-animation: 1s ease-in-out infinite animball_one;
  animation: 1s ease-in-out infinite animball_one;
}

#loader .loaderBall .ball.ball1 {
  background-color: #ff9500;
  top: 0;
  left: 0;
}

#loader .loaderBall .ball.ball2 {
  background-color: #ff9500;
  top: 0;
  left: 24px;
}

#loader .loaderBall .ball.ball3 {
  background-color: #ff9500;
  top: 24px;
  left: 0;
}

#loader .loaderBall .ball.ball4 {
  background-color: #ff9500;
  top: 24px;
  left: 24px;
}

@-webkit-keyframes animball_one {
  0% {
    position: absolute;
  }
  50% {
    top: 12px;
    left: 12px;
    position: absolute;
    opacity: 0.5;
  }
  100% {
    position: absolute;
  }
}

@keyframes animball_one {
  0% {
    position: absolute;
  }
  50% {
    top: 12px;
    left: 12px;
    position: absolute;
    opacity: 0.5;
  }
  100% {
    position: absolute;
  }
}

@-webkit-keyframes animball_two {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
  }
  50% {
    -webkit-transform: rotate(360deg) scale(1.3);
  }
  100% {
    -webkit-transform: rotate(720deg) scale(1);
  }
}

@keyframes animball_two {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(360deg) scale(1.3);
  }
  100% {
    transform: rotate(720deg) scale(1);
  }
}

@media (max-width: 1199px) {
  button:not(.jw-settings-content-item) {
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  section.button-row .col-xs-12 {
    flex-direction: column;
  }
  section.button-row .col-xs-12 button {
    min-width: 270px;
  }
}

@media (max-width: 767px) {
  .d-flex {
    display: block;
  }
  button {
    width: 100%;
  }
  h1 {
    font-size: 34px;
  }
  #success-video-wrap #fake-play {
    background: url(../images/click_for_sound3.png) no-repeat 90% 10%/150px rgba(0, 0, 0, 0.75);
  }
  #success-video-wrap #fake-play img {
    width: 64px;
  }
}
