form { padding: 0 20px; }

.formbold-main-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.formbold-form-wrapper {
  margin: 0 auto;
  max-width: 570px;
  width: 100%;
  background: white;
  padding: 40px 2%;
}

.formbold-form-img { margin-bottom: 45px; }

.formbold-input-group { margin-bottom: 18px; }

.formbold-form-select {
  width: 100%;
  padding: 12px 22px;
  border-radius: 5px;
  border: 1px solid #dde3ec;
  background: #ffffff;
  font-size: 16px;
  color: #536387;
  outline: none;
  resize: none;
}

.formbold-input-radio-wrapper { margin-bottom: 25px; }

.formbold-radio-flex {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.formbold-radio-label {
  font-size: 14px;
  line-height: 24px;
  color: #07074d;
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.formbold-input-radio {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.formbold-radio-checkmark {
  position: absolute;
  top: -1px;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: #ffffff;
  border: 1px solid #dde3ec;
  border-radius: 50%;
}

.formbold-radio-label
  .formbold-input-radio:checked
  ~ .formbold-radio-checkmark {
  background-color: #4a8dff;
}

.formbold-radio-checkmark:after {
  content: '';
  position: absolute;
  display: none;
}

.formbold-radio-label
  .formbold-input-radio:checked
  ~ .formbold-radio-checkmark:after {
  display: block;
}

.formbold-radio-label .formbold-radio-checkmark:after {
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffffff;
  transform: translate(-50%, -50%);
}

.formbold-form-input {
  width: 100%;
  padding: 5px 22px;
  border-radius: 5px;
  border: 1px solid #dde3ec;
  background: #ffffff;
  font-weight: 500;
  font-size: 16px;
  color: #6a6a6a;
  outline: none;
  resize: none;
  font-family: sans-serif;
}

.formbold-form-input::placeholder { color: #536387; }

.formbold-form-input:focus {
  border-color: #b80000;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}

.formbold-form-label {
  color: #07074d;
  font-size: 14px;
  line-height: 24px;
  display: block;
  margin-bottom: 10px;
}

.formbold-btn {
  text-align: center;
  width: 100%;
  font-size: 16px;
  border-radius: 5px;
  padding: 14px 25px;
  border: none;
  font-weight: 500;
  background-color: #b80000;
  color: white;
  cursor: pointer;
  margin-top: 25px;
  transition: all .5s;
}

.formbold-btn:hover {
  background: #ff0000;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}


.dateTimeContainer > div {
  width: 48%;
  display: inline-block;
}

.error-list {
  margin: 20px 30px;
  color: #b80000;
  font-size: 15px;
}

.error-list div ul {
  list-style-type: none;
  margin-bottom: 0;
}

.error-validation {
  border: 2px solid #b80000 !important;
  background: #ffe2e2 !important;
}


/* Video */
#video {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
  transition: all 1s;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -o-transition: all 1s;
}

.hide-home-video {
  opacity: 0;
  visibility: hidden;
}

#video .overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .1);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9
}

.video-intro {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.intro-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .2);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

/* End of Video */

.display-table-cell {
  position: relative;
  z-index: 111;
}


@media(min-width: 768px) {

  .form-container {
    width: 75%;
    margin: 20px auto 0;
  }

  .formbold-form-wrapper { padding: 40px; }

}


@media(min-width: 1200px) {

  .form-container { width: 600px; }

}
