* {
  box-sizing: border-box;
}

p {
  margin-top: 0;
  line-height: 1.5;
  font-size: 17px;
}

a {
  text-decoration: none;
}

.required {
  color: #ff4500;
}

.text-underline {
  text-decoration: underline;
}

h1 {
  font-family: Times New Roman, Times, serif;
  font-size: 38px;
  font-weight: normal;
  margin-top: 0;
  line-height: normal;
  text-align: left;
}

main {
  margin: 45px 65px;
  font-size: 1rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.col-1 {
  width: 40%;
  padding: 0 50px 0 15px;
}

.col-2 {
  width: 60%;
  padding: 22px 15px 5px;
}

@media screen and (max-width: 1200px) {
  .col-1 {
    padding-right: 15px;
  }
}

@media screen and (max-width: 768px) {
  main {
    margin: 20px 20px 29px;
  }

  .col-1,
  .col-2 {
    width: 100%;
    padding: 15px 0;
  }
}

/* enter-modal form styles */

.enter-modal__form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.enter-modal__form .form-group {
  width: 100%;
  position: relative;
  margin-bottom: 45px;
}

.enter-modal__form .form-group.half-size {
  width: calc(50% - 9px);
}

.enter-modal__form .form-space {
  width: 18px;
}

.enter-modal__form .form-group input[type='text'] {
  width: 100%;
  padding: 14px 0;
  font-size: 1rem;
  color: #192430;
  border: none;
  border-bottom: 1px solid rgba(112, 112, 112, 0.7);
  background-color: transparent;
  outline: none;
  transition: border-color 0.6s ease;
}

.enter-modal__form .form-group label {
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 10px;
  color: #19243070;
  transition: 0.2s ease all;
  font-size: 1rem;
}

.enter-modal__form .form-group input:focus + label,
.enter-modal__form .form-group input:not(:placeholder-shown) + label {
  top: -18px;
  font-size: 1rem;
  color: #19243070;
}

.enter-modal__form .enter-modal__form-button {
  font-size: 1rem;
  font-weight: 400;
  background-color: #192430;
  color: #fff;
  text-transform: uppercase;
  border: 1px solid #192430;
  border-radius: 5px;
  padding: 10px 15px;
  outline: none;
  cursor: pointer;
  line-height: 1.5;
}

.enter-modal__form .enter-modal__form-button:disabled {
  background-color: #192430aa;
  cursor: default;
}

.enter-modal__form .terms {
  color: #19243070;
  display: flex;
  font-size: 1rem;
  align-items: center;
  width: 100%;
  position: relative;
  padding-left: 50px;
  margin-bottom: 45px;
  min-height: 38px;
}

.enter-modal__form .terms label {
  cursor: pointer;
}

.enter-modal__form .terms input[type='checkbox'] {
  width: 0;
  visibility: hidden;
}

.enter-modal__form .terms label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  background: #ffffff;
  border-radius: 11px;
  border: 1px solid #70707070;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.enter-modal__form .terms input[type='checkbox']:checked + label::before {
  background-color: #70707070;
  border-color: #707070;
}

.enter-modal__form .terms input[type='checkbox']:checked + label::after {
  content: '✓';
  position: absolute;
  left: 10px;
  top: 10px;
  color: #707070;
  font-size: 24px;
}

.enter-modal__form-note {
  font-size: 0.875rem;
  margin-bottom: 45px;
  width: 100%;
  text-align: center;
}

.enter-modal__form-note a {
  color: #192430;
}

.error-message {
  font-size: 0.875rem;
  position: absolute;
  color: #ff4500;
  margin-top: 4px;
  line-height: normal;
}

.enter-modal__form .form-group input[type='text'].field-error {
  border-bottom-color: #ff4500;
}

.enter-modal__form input[type='checkbox'].field-error + label {
  color: #ff4500;
}

.enter-modal__form input[type='checkbox'].field-error + label:before {
  border-color: #ff4500;
}

.help-icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  display: inline-block;
  margin-left: 10px;
  color: #707070;
  font-size: 1rem;
}

.iata-tooltip a {
  color: #707070;
  text-decoration: underline;
}

.iata-tooltip {
  display: none;
  position: absolute;
  width: 300px;
  background-color: #fff;
  color: #707070;
  text-align: left;
  border-radius: 6px;
  padding: 15px;
  border: 1px solid #ccc;
  z-index: 10;
  left: 50%;
  transform: translateX(-50%);
  bottom: 100%;
  margin-bottom: 10px;
}

@media screen and (max-width: 992px) {
  .enter-modal__form .form-group.half-size {
    width: 100%;
  }

  .enter-modal__form .form-group input[type='text'] {
    padding: 12px 0;
    font-size: 1rem;
  }

  .enter-modal__form .form-group label {
    font-size: 1rem;
  }

  .enter-modal__form .form-group input:focus + label,
  .enter-modal__form .form-group input:not(:placeholder-shown) + label {
    top: -14px;
    font-size: 0.825rem;
  }

  .enter-modal__form .terms {
    padding-left: 40px;
  }

  .enter-modal__form .terms label::before {
    width: 28px;
    height: 28px;
    border-radius: 8px;
  }

  .enter-modal__form .terms input[type='checkbox']:checked + label::after {
    font-size: 1.25rem;
    left: 8px;
    top: 5px;
  }

  .error-message {
    font-size: 0.825rem;
  }

  .enter-modal__form .enter-modal__form-button {
    font-size: 1rem;
  }
}

/* terms-modal styles*/

#termsModal {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.5);
}

.terms-modal {
  position: relative;
  background-color: #ffffff;
  margin: 1% auto;
  border: 1px solid #888;
  width: 98%;
  max-height: 98vh;
}

.terms-modal__wrapper {
  padding: 20px 45px;
  background: white;
}

.terms-modal__content {
  overflow: auto;
}

.terms-modal .terms-modal__content a {
  color: #192430;
  text-decoration: underline;
}

.terms-modal__close {
  cursor: pointer;
  top: 30px;
  right: 30px;
  position: absolute;
  width: 22px;
  height: 22px;
}

.terms-modal__close path {
  stroke: #707070;
}

.terms-modal .page-title {
  font-size: 2rem;
  line-height: normal;
  margin-bottom: 20px;
  margin-top: 20px;
  padding-left: 25px;
}

.terms-modal .terms-modal__list {
  margin-bottom: 30px;
  padding-left: 25px;
}

.terms-modal .terms-modal__notes {
  font-size: 1rem;
  margin-bottom: 25px;
}

.terms-modal li {
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 12px;
}

@media screen and (max-width: 768px) {
  .terms-modal {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    border-radius: 0;
    border: none;
    max-height: unset;
  }

  .terms-modal__wrapper {
    border-radius: 0;
    border: none;
    padding: 20px;
  }

  .terms-modal__close {
    top: 20px;
    right: 20px;
    width: 18px;
    height: 18px;
  }
}

/* complete-modal styles*/

#completeModal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.5);
}

.complete-modal {
  position: relative;
  background-color: #ffffff;
  margin: 4% auto;
  border: 1px solid #888;
  width: 90%;
  max-width: 1152px;
  max-height: 90vh;
}

.complete-modal__wrapper {
  padding: 100px 140px;
  background: white;
}

.complete-modal__content {
  overflow: auto;
}

.complete-modal__close {
  cursor: pointer;
  top: 30px;
  right: 30px;
  position: absolute;
  width: 22px;
  height: 22px;
}

.complete-modal__close path {
  stroke: #707070;
}

.complete-modal__logo {
  width: 75px;
  height: 115px;
  margin: 0 auto 40px;
}

.complete-modal__logo svg {
  width: 100%;
  height: 100%;
}

.complete-modal h2 {
  font-size: 2rem;
  max-width: 630px;
  text-align: center;
  margin: 0 auto 40px;
  line-height: normal;
}

.complete-modal .complete-modal__sub-title {
  color: #192430;
  font-size: 1.125rem;
  line-height: 1.45;
  max-width: 90%;
  text-align: center;
  margin: 0 auto;
}

.complete-modal .complete-modal__sub-title a {
  color: #192430;
  text-decoration: underline;
}

@media screen and (max-width: 992px) {
  .complete-modal__wrapper {
    padding: 60px 70px 50px;
  }
}

@media screen and (max-width: 768px) {
  .complete-modal {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    border-radius: 0;
    border: none;
    max-height: unset;
  }

  .complete-modal__wrapper {
    padding: 60px 20px;
    border-radius: 0;
    border: none;
  }

  .complete-modal__close {
    top: 20px;
    right: 20px;
    width: 18px;
    height: 18px;
  }

  .complete-modal__logo {
    width: 56px;
    height: 85px;
  }
}
