/*
.content{
    margin: 0 auto;
    padding: 40px;
}
.box{
    background: #eee;
    height: 200px;
    margin-bottom: 100px;
}
*/
.modal__modal{
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    /*width: 100%;*/
	width: 80%;
	z-index: 1002;
}
.modal__bg{
    background: rgba(0,0,0,0.8);
    height: 100vh;
    position: absolute;
    width: 100%;
}
.modal__content{
    background: #fff;
    left: 50%;
    padding: 1.5rem;
    position: absolute;
    top: 35%;
    transform: translate(-50%,-50%);
    width: 90%;
    z-index: 2000;
    border: 1px solid #666;
}
.w_100{
	width:100%;
}