#eclub {
    position: absolute;
    top: 150px;
    right: -665px;
    background-color: #0b75bb;
    color: #fff;
    border-radius: 2px 0 0 2px;
    box-shadow: 0 6px 10px 0 rgba(0,0,0,0.14), 0 1px 18px 0 rgba(0,0,0,0.12), 0 3px 5px -1px rgba(0,0,0,0.3);
    transition: right .5s ease-in-out;
}
#eclub.ready {
    right: -400px;
}
#eclub.active {
    right: 0;
}
#eclub .container {
    width: 100%;
    display: flex;
    flex-direction: row;
}
#eclub .eclub-header {
    padding: 1rem;
    width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#eclub .eclub-trigger-container {
    margin-top: 1rem;
}
#eclub .eclub-body {
    position: relative;
    padding: 1rem 3rem 1rem 1rem;
    border-left: 1px solid #fff;
    width: 400px;
}
#eclub .eclub-body #eclub-close {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 2.5rem;
    cursor: pointer;
}
#eclub h3 {
    margin-top: 0;
    font-size: 2.5rem;
}
#eclub h5 {
    font-size: 1.5rem;
}
#eclub p {
    margin-bottom: 0;
}
#eclub .input-field {
    width: 100%;
}
#eclub .input-field input {
    border-bottom: 1px solid #fff;
    color: #fff;
}
#eclub .action-row {
    margin-bottom: 0;
}
#eclub .btn {
    background-color: #fff;
    color: #0b75bb;
}
@media screen and (max-width:992px) {
    #eclub, #eclub.ready, #eclub.active {
        position: relative;
        top: auto;
        right: auto !important;
        box-shadow: none;
    }
    #eclub {
        display: none;
    }
    #eclub.ready {
        display: block;
    }
    #eclub.active {
        
    }
    #eclub .container {
        width: 85%;
        display: block;
    }
    #eclub .eclub-header {
        width: 100%;
        padding-top: 3rem;
    }
    #eclub h3 {
        font-size: 2.92rem;
    }
    #eclub h5 {
        font-size: 1.64rem;
    }
    #eclub p {
        margin-bottom: 1em;
    }
    #eclub .eclub-trigger-container {
        display: none !important;
    }
    #eclub .eclub-body {
        padding: 0 0 3rem 0;
        border-left: none;
        width: 100%;
    }
    #eclub .eclub-body .row .input-field.col.m6 {
        width: 50%;
    }
    #eclub .eclub-body #eclub-close {
        display: none;
    }
}
@media screen and (max-width:600px) {
    #eclub .container {
        width: 90%;
    }
}