/*Age Gate CSS*/
.ageGate-container {
    position: fixed;
    height: calc(100% - 30px);
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(20, 18,30, 1.00);
    z-index: 999;
    color: #a054ff;
    display:none;
  }
  .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: #a054ff;
    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: #a054ff;
      font-size: 1.3em;
      background: #ffffff;
      border: 0.1em solid #a054ff;
      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: #9e97c5;
    border: 1px solid #4f4d4c;
    color: #ffffff;
  }
  .submit-btn:hover, .submit-btn:focus {
      box-shadow: inset 0 0 15px #411081;
      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: #a054ff;
  }
  input::-webkit-contacts-auto-fill-button, input::-webkit-credentials-auto-fill-button {
    visibility: hidden;
    position: absolute;
    right: 0;
  }
  .form-control:focus {
    color: #a054ff;
    background-color: transparent;
    border-color: #af9977;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%);
  }
  .ageNotValid p {
    text-align: center;
    color: red;
    margin-top: 2em;
    margin-bottom: 0;
    font-size: 1.2em;
  }
  .horizontal_line {
    width: 80%;
    width: 50%;
    background: #a054ff;
    height: 2px;
    margin: 5px auto 14px auto;
  }

@media screen and (max-width: 912px) and (orientation:portrait) {
    .ageGate-content {
    /* border: #d4134c solid 1px; */
    width: 70vw;
        font-size:12px;
}
}
@media screen and (max-width: 767px) and (orientation:portrait) {
    .ageGate-content {
    /* border: #d4134c solid 1px; */
    width: 95vw;
        font-size:11px;
}
}