.sd-leave-popup {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background-color: rgba(0, 0, 0, .6);
    align-items: center;
    justify-content: center;
    display: none;
}

.sd-leave-popup .sd-leave-popup-container {
    position: relative;
    background-color: #FFF;
    width: 700px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    overflow: hidden;
}

.sd-leave-popup .sd-leave-popup-container .close-popup {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #C4C4C4;
    cursor: pointer;
}

.sd-leave-popup .sd-leave-popup-container .close-popup svg {
    width: 20px;
    height: 20px;
}

.sd-leave-popup .sd-leave-popup-container img {
    height: 300px;
    object-fit: cover;
    width: 100%;
}

.sd-leave-popup .sd-leave-popup-container .popup-content {
    padding: 20px 40px 40px;
}

.sd-leave-popup .sd-leave-popup-container .button-bar {
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 768px) {
    .sd-leave-popup .sd-leave-popup-container {
        width: calc(100% - 30px);
    }

    .sd-leave-popup .sd-leave-popup-container img {
        height: 200px;
    }

    .sd-leave-popup .sd-leave-popup-container .button-bar {
        display: inline-flex;
        flex-direction: column;
    }

    .sd-leave-popup .sd-leave-popup-container .sd-block-button .button-inner {
        width: 100%;
    }
}