.exit-popup-open {
    overflow: hidden;
}

.ks-exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(128, 128, 128, 0.5);
    z-index: 4;
}

.ks-exit-popup__content {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 30px);
    max-width: 830px;
    padding: 15px;
    background: #fff;
    border-radius: 20px;
}

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

.ks-exit-popup__content-body {
    overflow-y: auto;
    max-height: calc(100vh - 60px);
    border-radius: 10px;
}