.modal-box {
    overflow: auto;
}

.modal-box,
.modal-open {
    width: 100%;
}

.modal-box,
.modal-open,
.modal-box__inner {
    height: 100%;
}

.modal-open,
.modal-overflow,
.modal-noscroll {
    overflow: hidden !important;
}

.modal-box {
    background-color: #fff;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    display: none;

    touch-action: none;
}

.modal-box__inner:before {
    width: 0;
    height: 100%;
    vertical-align: middle;
    content: "";
}

.modal-box__inner:before,
.modal-box__content {
    display: inline-block;
    vertical-align: middle;
}

.modal-box__inner {
    text-align: center
}

.modal-box__close {
    position: absolute;
    right: 0px;
    top: 0;
    color: #3f3f3f;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 35px;
    cursor: pointer;
}

.modal-box__close:hover {

    color: #000;
}

.modal-box--mode--center {
    background: rgba(0, 0, 0, 0.5);
}

.modal-box--mode--center .modal-box__content {
    background-color: #fff;
    -moz-border-radius: 7px;
    -webkit-border-radius: 7px;
    -khtml-border-radius: 7px;
    border-radius: 7px;
}

.modal-box--overflow .modal-box__content {
    margin-top: 0;
}