.cc-window{
    left: 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 100;

    padding: 0 1rem;

    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;

}

@media screen and (min-width: 768px) {
    .cc-window.cc-banner{

    }
}
.cc-compliance,
.cc-message {
    margin: 1rem 0.5rem;
}

a.cc-btn {
    cursor: pointer;
    text-decoration: none;
}
a.cc-btn:not(:last-child) {
    margin-right: 1rem;
}

a.cc-btn.cc-allow {
    color: #fff !important;
    background: #000 !important;
    box-shadow: inset 0 0 0 3px #fff;
}

a.cc-btn.cc-allow:hover {
    color: #000 !important;
    background: #fff !important;
    box-shadow: none;
}
a.cc-btn.cc-deny {
    display: inline-block;
    padding: 15px 0;
}
.cc-message {
    flex-grow: 9999;
}
.cc-compliance {
    flex-grow: 1;
    text-align: center;
}
a.cc-btn.cc-deny:hover {
background:transparent;text-decoration: underline;
}

.invalid-dob {
    color: #ff0000;
    margin-bottom: 1.5rem;
}

#dateOfBirth{margin-bottom: 1rem}

form#age-gate .mxxn-input {
    border-radius: 50px;
    outline: none;
    border: none;
    font-size: 2rem;
    width: auto;
    max-width: 300px;
}

#ageGate__zipcode {
    text-align: center;
}

.ageGate--input-row {
    flex-direction: column;
    align-items: center;
}
.mxxn-input.loading {
    position: relative;
}
.mxxn-input.loading {
    background: rgb(156,156,156);
    background-image: linear-gradient(115deg, rgba(196,196,196,1) 20%, rgba(216,216,216,1) 30%, rgba(216,216,216,1) 35%, rgba(196,196,196,1) 40%);
    background-position: 0% 0;
    background-size: 200% 120%;
    color: rgba(0,0,0,0);
    animation: anim 1s infinite;
    /* pointer-events: none; */
    cursor: wait;
}

@keyframes anim {
    0% {
        background-position: 120% 0;
      }
      70%, 100% {
        background-position: -80% 0;
      }
  }
  