/* for Modal */
.modal_content{
    margin: 0 auto;
}
.modal{
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}
.modal__bg{
    background: rgba(0,0,0,0.8);
    height: 100vh;
    position: absolute;
    width: 100%;
}
.modal__content{
    background: rgba(0,0,0,0.5);
    left: 50%;
    padding: 0 0 0 0;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 40%;
}
/* for Modal END */