.modal{
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
	z-index: 1000;
}
.modal__bg{
    background: rgba(0,0,0,0.92);
    height: 100vh;
    position: absolute;
    width: 100%;
}
.modal__content{
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
	width: 90.666666666666667vw;
	max-width: 400px;
}

.close-box {
    display:inline-block;
    cursor: pointer;
    text-align:center;
}

.close-box-button {
    display:block;
    text-decoration: none;
    position: absolute;
    right:0;
    top:-20px;
    width: 50px;
    height:45px;
    line-height:45px;
    font-size:40px;
    color: #FFF;
    background: #000;
    cursor: pointer;
    border: none;
}