.subpop {
    position:fixed;
    bottom:-60px;
    left:0;
    right:0;
    height:0;
    background-color:rgba(33,33,33,0.97);
    z-index:20;
    padding:30px;
    transition:all .5s cubic-bezier(0.075, 0.82, 0.165, 1);
    pointer-events:none;
}

.subpopshow {
    height:100%;
    bottom:0;
    pointer-events:all;
}

.full {
    width:100%;
    height:100%;
}

.subpop .subinner {
    max-width:800px;
    padding:60px;
    background-image:url('images/bg_subpop2.jpg');
    background-position:center center;
    background-size:cover;
    box-shadow:0 2px 5px rgba(0,0,0,0.25);
    transition:all .5s;
    opacity:0;
    margin-top:30px;
}

.subpop .subshow {
    margin-top:0;
    opacity:1;
}

.subpop .subinner .logo {
    background-size:contain;
    background-position:center left;
    background-repeat:no-repeat;
    min-height:60px;
}

.subpop .subinner .subout {
    font-size:3rem;
    cursor:pointer;
    opacity:.5;
    transition:all .2s;
}

.subpop .subinner .subout:hover {
    opacity:1;
}

.subpop .subinner span {
    font-size:2rem;
    font-weight:600;
    color:#2b3338;
    display:block;
    text-transform:uppercase;
}

.subpop .subinner form input {
    padding:20px;
    font-size:1.35rem;
    background-color:#fff;
    border:1px solid #ccc;
    border-radius:5px;
    display:block;
    width:100%;
}

.subpop .subinner form button {
    padding:20px;
    font-size:1.35rem;
    font-weight:bold;
    text-transform:uppercase;
    color:#eee;
    border:0;
    background-color:#333;
    border-radius:5px;
}

.subpop .subinner form .checker {
    background-color:#fff;
    border-radius:5px;
    border:3px solid #eee;
    color:#eee;
    padding:5px;
    font-weight:bold;
    cursor:pointer;
    transition:all .2s;
    margin-right:10px;
}

.subpop .subinner form .checked {
    background-color:#097969;
    border-color:#097969;
    color:#fff;
}

.subpop .subinner form p {
    font-weight:bold;
}

.subpop .subinner form button:hover {
    color:#fff;
    background-color:#000;
}

@media only screen and (max-width:700px) {
    .subpop .subinner form {
        display:block;
    }
    .subpop .subinner form input[type=email] {
        width:100%;
    }
    .subpop .subinner form button {
        width:100%;
        text-align:center;
    }
    .subpop .subinner {
        padding:30px;
    }
    .subpop .bottomflex {
        display:block;
    }
    .subpop button {
        margin-top:10px;
    }
}