/*Age Gate CSS*/
.ageGate-container {
  position: fixed;
  height: calc(100% - 45px);
  top: 0;
  left: 0;
  width: 100%;
  background: rgb(0 0 0);
  z-index: 999;
  color: #005eff;
}
.ageNotValid {
  display: none;
}
.ageGate-content {
  /*      border: #d4134c solid 1px;*/
  width: 40vw;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 12px;
  padding: 2em;
}
.form-heading {
  font-size: 1.5em;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
}
.form-subheading {
  font-size: 1em;
  color: #ffffff;
  text-align: center;
  text-transform: none;
}
.form-group {
  /*  max-width: 500px;*/
  margin: 2em auto 0;
  text-align: left;
  display: flex;
  flex-direction: column;
}
.form-group label {
  margin-left: 0.3em;
  margin-bottom: 0.5em;
  font-size: 1.3em;
  color: #d3d3d3;
}
.form-control {
  width: 100%;
  height: inherit;
  display: block;
  margin: 0;
  color: #005eff;
  font-size: 1.3em;
  background: #ffffff;
  border: 0.1em solid #005eff;
  padding: 0.5em 1em;
  border-radius: 0.3em;
  line-height: inherit;
}
.dob-select-wrapper {
  display: flex;
  justify-content: space-between;
}
.select-wrapper {
  overflow: hidden;
  flex: 4;
  position: relative;
}
.select-wrapper::after {
  content: "";
  background: #000000;
  width: 9px;
  height: 9px;
  background-image: url("../images/arrow-down.png");
  background-position: center center;
  background-size: 100%;
  background-repeat: no-repeat;
  background-color: transparent;
  position: absolute;
  right: 1em;
  top: 44%;
  pointer-events: none;
}
.select-wrapper .form-control {
  cursor: pointer;
}
.dob-select-wrapper .select-wrapper:first-child {
  margin-left: 0;
  flex: 3;
}
.dob-select-wrapper .select-wrapper:nth-child(2) {
  flex: 5;
}
.select-wrapper select::-ms-expand {
  display: none;
}
.submit-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.submit-btn {
  padding: 0.3em;
  text-align: center;
  min-width: 200px;
  border-radius: 5em;
  font-size: 1.5em;
  cursor: pointer;
  background-color: #005eff;
  border: 1px solid #ed5053;
  color: #ffffff;
}
.submit-btn:hover, .submit-btn:focus {
  box-shadow: inset 0 0 15px #002461;
  outline: none;
}
.select-wrapper .form-control, .submit-btn {
  -webkit-user-select: none;
  -moz-user-select: -moz-none;
  -ms-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
}
.select-wrapper select:invalid {
  color: #a3a3a3;
}
.form-control::-webkit-input-placeholder, .form-control::-moz-placeholder, .form-control:-ms-input-placeholder, .form-control:-moz-placeholder, .form-control::placeholder {
  color: #a3a3a3;
  opacity: 1;
}
.select-wrapper .form-control option {
  color: #005eff;
}
input::-webkit-contacts-auto-fill-button, input::-webkit-credentials-auto-fill-button {
  visibility: hidden;
  position: absolute;
  right: 0;
}
.form-control:focus {
  color: #005eff;
  background-color: rgba(0, 0, 0, 0);
  border-color: #ed5053;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%);
}
.ageNotValid p {
  text-align: center;
  color: #FFFFFF;
  margin-top: 2em;
  margin-bottom: 0;
  font-size: 1.2em;
}
.horizontal_line {
  width: 80%;
  width: 50%;
  background: #ffffff;
  height: 2px;
  margin: 5px auto 14px auto;
}

@media screen and (max-width: 850px)and (orientation: portrait) {
  .ageGate-content {
    width: 80%;
    padding: 1em 1em;
  }
}
@media screen and (max-width: 450px), screen and (max-height: 310px) and (orientation: landscape) {
  .ageGate-content {
    width: 90%;
    padding: 1em 1em;
  }
  .form-group .col-6 {
    padding: 0 5px;
  }
  .form-heading {
    font-size: 1em;
  }
  .form-control {
    font-size: 1.1em;
  }
  .submit-btn {
    min-width: 150px;
    padding: 0.1em 0.3em;
  }
  .ageGate-content img {
    max-width: 80%;
    font-size: 1.3em;
  }
}
@media screen and (max-height: 310px) and (orientation: landscape), screen and (max-width: 1000px) and (orientation: landscape) {
  .ageGate-content {
    width: 100%;
    padding: 1em 1em 5em;
    top: inherit;
    transform: translateX(-50%);
  }
  .ageGate-container {
    overflow-y: auto;
  }
}