#eng_notify_wrapper{
    position: fixed;
    bottom: 0;
    right: 0;
    background-color: white;
    display: none;
    border: #389848 solid 3px;
}
#eng_notify_wrapper>div:first-child{
    position: relative;
}
#eng_notify_title{
    background-color: #84d9a5;
    font-weight: 900;
    margin: 0 auto;
    text-align: center;
    padding: 10px 0;
    height: 40px;
}
#eng_notify_btn{
    position: absolute;
    top: 0;
    right: 0;
    background-color: transparent;
    border: none;
    color: red;
    height: 20px;
    line-height: 20px;
    font-size: 20px;
    padding: 10px 12px;
}
#eng_notify_content{
    padding: 10px 5%;
}
#eng_notify_download{
    cursor: pointer;
}
/*large*/
@media all and (min-width: 768px), all and (min-device-width: 768px) {
    #eng_notify_wrapper{
        width: 30vw;
        max-width: 400px;
        min-height: 250px;
        margin-right: 5vw;
    }
}
/*small*/
@media all and (max-width: 768px), all and (max-device-width: 768px) {
    #eng_notify_wrapper{
        margin-right: 0;
        max-width: none;
        min-height: 200px;
    }
}