.kd-popup {
    display: none;
}

.kd-popup--active {
    align-items: center;
    background-color: rgba(255, 255, 255, .8);
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 0;
    overflow: hidden;
    position: fixed;
    right: 0;
    top: 0;    
    z-index: 9998;
}

.kd-popup__inside {
    background-color: rgba(255, 255, 255, .8);
    border: 2px solid #888;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .3);
    border-radius: 10px;
    max-height: 80vh;
    max-width: 980px;
    overflow-y: auto;
    padding: 20px;
    position: relative;
    width: 90%;
}

.kd-popup__content > *:first-child > *:first-child {
    margin-top: 0 !important;
    padding-right: 60px;
}

.kd-popup .kd-popup__close {
    align-items: center;
    background-color: #888;
    border: 2px solid #888;
    border-radius: 50%;
    display: flex;
    color: #fff;
    height: 30px;
    justify-content: center;
    overflow: hidden;
    position: absolute;
    right: 20px;
    top: 20px;
    transition: all .5s ease;
    width: 30px;
    z-index: 9999;
}

.kd-popup .kd-popup__close:hover {
    background-color: #fff;
    color: #888;
}

.kd-popup__close span {
    font-size: 30px;
    line-height: 20px;
}

.kd-popup__widget + .kd-popup__widget {
    margin-top: 30px;
}