#hot-sheet-bar {
    width: 0px;
    background-color: red;
    position: fixed;
    top: 0;
}

.pop-up{
    width: 600px;
    height: 350px;
    position: fixed;
    bottom: 10px;
    background-color: red;
    left: -655px;
    opacity: 0;
    border-radius: 5px;
    transition: all;
    transition-duration: .4s;
    box-shadow: 3px 3px 7px 2px rgba(0,0,0,0.32);
    
}
.pop-up-graphic{
    width: 45%;
    height: 100%;
    // background-image: url("hot-sheet-graphic.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.pop-up-form{
    width: 55%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-left: 10%;
    padding-right: 10%;
}
.pop-up-form p{
    padding-bottom: 20px;
    line-height: 24px;
}
.pop-up-visible {
    opacity: 1;
    display: flex; 
    left: 10px; 
}
.pop-up-closed {
    opacity: 0; 
    left: 5px; 
}
.pop-up-close {
    background-color: rgb(255, 255, 255);
    width: 30px;
    height: 30px;
    position: absolute;
    top: -12px;
    right: -12px;
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: solid thin #b1b1b1;
}
.pop-up form {
    width: 100%;
}
.pop-up label {
    font-weight: 700;
}
.pop-up input[type="text"] {
    padding-bottom: 5px;
    padding-top: 5px;
    margin-bottom: 10px;
    width: 100%;
}
.pop-up input[type="submit"] {
    width: 100%;
    border: none;
    height: 35px;
    background-color: orange;
    display: block !important;
    font-size: 16px;
    color: white;
    font-weight: 700;
}
.pop-up input[type="submit" i] {
    padding: 0px 0px;
}
@media (max-width: 760px){
    .pop-up{
        width: 100%;
        height: 160px;
        bottom:0px;
        }
    .pop-up-form p {
        padding-bottom: 5px;
        font-size: 14px;
    }
    .pop-up-form {
        width: 100%;
    }
    .pop-up-graphic {
        display: none;
    }
    #name {
        display: none;
    }
    #email {
        display: none;
    }
 #submit-btn{
     display: block !important;
 }
    .pop-up-close {
       
        top: 5px;
        right: 10px;
        border-radius: 18px;
        cursor: pointer;
    }
    .pop-up-visible {
        opacity: 1;
        display: flex; 
        left: 0px; 
    }
}