* {
    box-sizing: border-box;
}
  
body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    color: #fff;
    font-size: 18px;
    text-align: center;
    font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    margin: 0.5rem 0;
}

h2 {
    font-size: 30px;
}

a {
    color: #fff;
}

input {
    -webkit-appearance: none;
}

input[type="email"] {
    background-color: #0E141B;
    border: none;
    height: 60px;
    border-radius: 8px;
    outline: none;
    width: 280px;
    font-family: 'Open Sans', sans-serif;
    padding: 0 20px;
    font-size: 18px;
    color: #A0BEE2;
    margin: 0 auto 0.5em;
    display: block;
}

input[type="email"]::placeholder {
    color: #263342;
}

label {
    margin-bottom: 0.5em;
}

.form-group > label {
    display: block;
}

.btn {
    border-radius: 8px;
    height: 60px;
    padding: 0 30px;
    font-family: 'Open Sans', sans-serif;
    transition: background-color 200ms linear;
    font-weight: 600;
    margin-bottom: 0.5em;
    width: 280px;
    outline: none;
}

.btn-primary {
    background-color: #F5A623;
    border-color: #C17D0D;
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    border-width: 1px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background-color: #FFBD4F;
}

.desktop-only {
    display: none;
}

.nowrap {
    white-space: nowrap;
}

#map {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
}

#map canvas {
    position: relative !important;
}

.map__overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;

    background: -moz-linear-gradient(45deg, rgba(9,7,47,0.9) 0%, rgba(75,44,154,0.9) 100%);
    background: -webkit-linear-gradient(45deg, rgba(9,7,47,0.9) 0%,rgba(75,44,154,0.9) 100%);
    background: linear-gradient(45deg, rgba(9,7,47,0.9) 0%,rgba(75,44,154,0.9) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e609072f', endColorstr='#e64b2c9a',GradientType=1 );

    overflow-y: scroll;
    padding-top: 30px;
}

.phone {
    display: block;
    margin: 0 auto;
}

.map__content {
    padding: 0 20px 20px;
}

.logo {
    margin: 0 auto 1em;
    display: block;
}

.stash-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2em;
}

.stash-list li {
    background-image: url('/static/images/bullet.svg');
    background-repeat: no-repeat;
    background-position: top;
    line-height: 24px;
    padding-left: 0;
    min-height: 30px;
    margin-bottom: 1em;
    padding-top: 36px;
}

#mc_embed_signup .notify-form div.mce_inline_error {
    background-color: transparent;
    font-size: 14px;
    margin-bottom: 1em;
}

.notify-form .response {
    font-size: 14px;
    margin-bottom: 1em;
}

.footer {
    font-size: 12px;
    padding-bottom: 50px;
    text-align: center;
}



@media only screen and (min-width: 768px) {
    body {
        text-align: left;
    }

    h2 {
        font-size: 45px;
    }

    input[type="email"] {
        display: inline-block;
    }

    .desktop-only {
        display: inherit;
    }

    .mobile-only {
        display: none;
    }

    .notify-form .form-control {
        margin-right: 0.5em;
    }

    .map__overlay {
        padding-top: 60px;
    }

    .map__hero {
        display: flex;
        align-items: flex-start;
    }

    .phone {
        margin: 0 60px;
    }

    .logo {
        margin: 60px 0 1.5em;
    }

    .btn {
        width: auto;
    }

    .stash-list li {
        background-position: 0 100%;
        padding-left: 36px;
        padding-top: 0;
    } 

    .footer {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        padding-bottom: 10px;
    }
}
