.modalBg {
    background-color: #000;
    opacity: 0.7;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
}
.modalCont {
    background-color: #fff;
    z-index: 9999;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit- transform: translateY(-50%) translateX(-50%);
    padding: 20px 10px;
    border-radius: 10px;
}
.modalCont .modalTit {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}
.modalCont .modalTit,
.modalCont .modalTxt {
    color: #000;
    margin-bottom: 20px;
}
.modalCont .modalTxt a {
    color: #000;
    text-decoration: underline;
}
.modalCont .modalCloseOuter {
    text-align: center;
}
.modalCont .modalCloseOuter .modalClose {
    background: #000;
    padding: 5px;
    border-radius: 5px;
    cursor: pointer;
    display: inline-block;
}
.modalCont .modalCloseOuter .modalClose:hover {
    opacity: 0.7;
}
.modalCont .modalCloseOuter .modalClose .modalCloseInner {
    background: #000;
    border: 1px solid #fff;
    padding: 5px 10px;
    color: #fff;
    text-align: center;
    line-height: 1;
}
@media screen and (max-width:600px) {
    .modalCont {
        width: 90%;
    }
}
