/* Closed Gate */
/* Requires variables_1.0.css */

/*
<div class="gate">
    <div class="graphic"></div>
    <div class="copy">
        <h3></h3>
        <p></p>
        <form>
            <div class="input-wrapper">
            <input id="code" class="text" maxlength="8" name="code" required="" type="text" placeholder="Discount Code">
            <div class="submit-wrapper">
                <input class="submit" name="submit" type="submit" value="Check Eligibility">
            </div>
        </form> 
    </div>
</div>
*/

.welcome-index-index main#maincontent {
    padding: 0;
}

.welcome-index-index header.page-header {
    border-bottom: unset;
}

.gate-wrapper {
    display: flex;
    flex-direction: column;
}

.gate-wrapper > .right {
    display: flex;
    flex-direction: column-reverse;
}

.gate {
    margin-top: 2rem;
    padding: 0 1.5rem;
}

.gate .copy {
    text-align: center;
}

.graphic {
    display: none;
}

.gate input {
    height: 4.5rem;
    width: 100%;
}

.gate form fieldset {
    display: flex;
    gap: 1.5rem;
    flex-direction: column;
    margin-top: 2rem;
}

.gate form fieldset > * {
    width: 100%;
}

.gate input[type="text"]::-webkit-input-placeholder,
.gate input[type="password"]::-webkit-input-placeholder,
.gate input[type="url"]::-webkit-input-placeholder,
.gate input[type="tel"]::-webkit-input-placeholder,
.gate input[type="search"]::-webkit-input-placeholder,
.gate input[type="number"]::-webkit-input-placeholder,
.gate input[type*="date"]::-webkit-input-placeholder,
.gate input[type="email"]::-webkit-input-placeholder {
  color: #555555;
}

.gate .copy {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gate-wrapper .trust-signal-wrapper {
    background: var(--color-trust-signal-background);
}

@media only screen and (min-width: 768px) {

    .gate-wrapper {
        display: flex;
        flex-direction: row;
        max-width: var(--width-content-max);
        margin: auto;
        gap: 5rem;
    }
    
    .gate-wrapper > * {
        width: 50%;
    }

    .gate-wrapper .hp-top-banner {
        display: flex;
        flex-direction: column-reverse;
    }

    .gate-wrapper > .right {
        display: flex;
        flex-direction: column;
    }

    .gate-wrapper > .left {
        background: var(--color-light-gray);
        padding-top: 2rem;
    }

    .gate {
        height: 100%;
    }

    .gate .copy {
        display: flex;
        flex-direction: column;
        height: 100%;
        justify-content: center;
    }

    .gate h2 {
        margin-top: 10rem;
    }

    .gate .flex-wrapper {
        display: flex;
        gap: 7rem;
        margin: 7rem auto;
        max-width: 80rem;
        align-items: center;
    }

    .input-wrapper {
        display: flex;
        flex-direction: row;
        max-width: 40rem;
        margin: auto;
    }

    .gate-wrapper .hp-top-banner .img img {
        max-height: 30rem;
        object-fit: contain;
    }

    .gate-wrapper .trust-signal-wrapper {
        background: unset;
        margin-top: 2rem;
    }

    .gate-wrapper .trust-signal-inner > * {
        flex-direction: column;
        width: 33.3333333%;
        text-align: center;
        -webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
        box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
        padding: 2rem 1rem 1rem;
    }


}