.age-gate {
    position: fixed;
    z-index: 9998;
    inset: auto;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.age-gate .title {
    letter-spacing: 0.1875rem;
    color: var(--color-white);
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: .1875rem;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .age-gate .frame {
        min-height: 550px;
        background-image:
            url('../images/frame-age-top-left.svg?v=184068764685898010681737746461'),
            url('../images/frame-age-top-right.svg?v=120559255110526827371737746460'),
            url('../images/frame-age-bottom-right.svg?v=62127558809891948071737746460'),
            url('../images/frame-age-bottom-left.svg?v=88141111840402379551737746460'),
            url('../images/frame-age-top.svg?v=46184462960176863161737746461'),
            url('../images/frame-age-right.svg?v=145555113223571814101737746461'),
            url('../images/frame-age-bottom.svg?v=11071004167902082201737746461'),
            url('../images/frame-age-left.svg?v=32518221010347815101737746460');
        background-repeat:
            no-repeat, no-repeat, no-repeat, no-repeat,
            repeat-x, repeat-y, repeat-x, repeat-y;
        background-size: 150px auto;
        background-position:
            top left, top right, bottom right, bottom left,
            top, right, bottom, left;
    }
}

.not-legal {
    font-family: var(--font-sweet-sans);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: underline !important;
    letter-spacing: 0.1875rem;
    color: var(--color-silver) !important;
}

@media (min-width: 1024px) {
    .not-legal {
        font-size: 0.875rem;
    }
    .age-gate .title {
        font-size: 2rem;
        font-weight: 700;
        text-transform: uppercase;
    }
}

.not-legal:hover {
    text-decoration: none !important;
}

:root {
    --font-brother: brother-1816, sans-serif;
    --font-sweet-sans: sweet-sans-pro, sans-serif;
    --font-futura: futura-pt-condensed, sans-serif;
    --color-black: #000;
    --color-white: #fff;
    --color-gray: #2b2b2b;
    --color-silver: #a9adae;
    --color-red: #e1251b;
    --color-orange: #bb6125;
}

.btn.legal {
    background: #b7b7b7;
    background: linear-gradient(90deg, #b7b7b7, #dfdfdf 50%, #b7b7b7);
    color: #000;
    display: inline-block;
    font-family: var(--font-sweet-sans);
    font-size: .625rem;
    font-weight: 700;
    letter-spacing: .25rem;
    padding: .875rem 2.125rem;
    text-transform: uppercase;
    transition: background .6s ease, color .6s ease;
    position: relative;
    border-radius: 25px;
    padding: 10px 10px 10px 20px;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .btn.legal {
        font-size: .8125rem
    }
}

@media (min-width: 1280px) {
    .btn.legal {
        font-size: .9375rem
    }
}

.btn.legal:hover {
    background: #2b2b2b;
    background: linear-gradient(90deg, #2b2b2b, #2b2b2b 50%, #2b2b2b);
    color: #fff
}

.btn--border {
    border: .0625rem solid transparent
}

.btn--border:hover {
    border: .0625rem solid #fff
}

.btn.legal {
    position: relative;
    border-radius: 25px;
    padding: 10px 10px 10px 20px;
    overflow: hidden;
}

.btn.legal span {
    position: relative;
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 5px;
    z-index: 1;
}

.btn.legal .btn--arrow {
    width: 25px;
    height: 25px;
    z-index: 1;
}

.btn.legal::after {
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    background: linear-gradient(90deg, #B40E71 0%, #EBA07E 50.19%);
    height: 100%;
    left: 0;
    opacity: 0;
    z-index: 0;
    transition: opacity 0.3s ease;
}

.btn.legal:hover {
    color: black;
    background: linear-gradient(90deg, #b7b7b7, #dfdfdf 50%, #b7b7b7);
}

.btn.legal:hover::after {
    opacity: 1;
}

.bg-gray {
    background-color: var(--color-gray)
}

.p-12 {
    padding: 3rem
}

.text-center {
    text-align: center
}

.text-white {
    color: var(--color-white)
}

.flex {
    display: flex
}

.flex-col {
    flex-direction: column
}

.items-center {
    align-items: center
}

.justify-center {
    justify-content: center
}

.w-full {
    width: 100%
}

.h-full {
    height: 100%
}

.w-20 {
    width: 5rem
}

.mt-10 {
    margin-top: 2.5rem
}

.mt-6 {
    margin-top: 1.5rem
}

.fill-current {
    fill: currentColor
}

@media (min-width: 768px) {
    .md\:w-24 {
        width: 6rem
    }
}
