@charset "UTF-8";

#modalWrap {
    display: none;
    background: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    overflow: hidden;
}

.modalBox {
    position: fixed;
    width: 75%;
    max-width: 350px;
    height: 0;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    overflow: hidden;
    opacity: 1;
    display: none;
    border-radius: 3px;
    z-index: 1000;
}

.modalInner {
    padding: 10px;
    text-align: center;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
}