.ks-exit-popup {
    z-index: 2147483647;
    background: rgba(128, 128, 128, 0.5);
    display: flex;
    justify-content: center;
    align-content: center;
    overflow: auto;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    box-sizing: content-box;
}

.ks-exit-popup__content {
    box-sizing: border-box;
    position: relative;
    margin: auto;
    background: #fff;
    padding: 15px;
    max-height: calc(100% - 40px);
    max-width: calc(100% - 30px);
    height: auto;
    top: 0;
    border-radius: 20px;
    overflow: auto;
}

.ks-exit-popup__close-btn {
    position: absolute;
    top: 0;
    right: 0;
    background: #fff;
    width: 35px;
    height: 35px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ks-exit-popup__content-body {
    overflow: auto;
    max-height: 100%;
}

.ks-exit-popup__content-body img {
    border-radius: 10px;
}