:root.pbk-modal__open {
    margin-right: 17px;
    overflow: hidden;
}

.pbk-modal__wide {
    height: 100%;
    left: 0;
    max-height: calc(100% - 65px);
    overflow-y: scroll;
    padding: 50px 0 15px;
    position: fixed;
    text-align: center;
    top: 0;
    width: 100%;
    z-index: 2002;
}

.pbk-modal__back {
    background: rgba(0, 0, 0, .7);
    height: 100%;
    left: 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2002;
}

.pbk-modal__wrap {
    background: #fff;
    box-sizing: border-box;
    display: inline-block;
    line-height: 1.4;
    max-width: 600px;
    min-width: 350px;
    padding: 45px;
    position: relative;
    z-index: 2003;
}

.pbk-modal__close {
    align-items: center;
    background: #656976;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-size: 40px;
    height: 36px;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 0;
    transition: background .2s ease;
    width: 36px;
}

.pbk-modal__close:hover {
    background: #F53338;
}

.pbk-modal__close::before {
    content: "×";
}

/* END core */
.pbk-modal__title {
    border-bottom: 1px solid #cbcbcb;
    color: #000;
    font-size: 1.5em;
    font-weight: bold;
    line-height: 21px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    text-align: center;
}

.pbk-modal__bttn {
    background: #15A863;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    display: block;
    font-weight: bold;
    margin: 40px auto 0;
    max-width: 200px;
    padding: 15px 20px;
    text-align: center;
}

