#popup_container {
    min-width: 420px;
    max-width: 800px;
    position: fixed !important;
    background: #000;
    border: 3px solid #962796;
    top: 50% !important;
    left: 50% !important;
    -webkit-transform: translate(-50%, -50%) !important;
    transform: translate(-50%, -50%) !important;
    border-radius: 10px
}

#popup_overlay {
    position: fixed !important
}

#popup_title {
    font-size: 20px;
    color: #fff;
    padding: 0 8px;
    margin: 0
}

#popup_title:empty {
    display: none
}

#popup_content {
    padding: 8px
}

#popup_message {
    padding-bottom: 8px;
    color: #fff;
    max-height: 90vh;
    overflow: auto
}

#popup_message::-webkit-scrollbar {
    width: 5px
}

#popup_message::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px
}

#popup_message::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px
}

#popup_message::-webkit-scrollbar-thumb:hover {
    background: #555
}

#popup_message img {
    width: 100%;
    height: auto
}

#popup_panel {
    text-align: center
}

#popup_panel input#popup_ok {
    font-size: 14px;
    border: 0;
    padding: 8px 30px;
    cursor: pointer;
    background-color: #942d86;
    font-weight: 700;
    border-radius: 3px;
    outline: 0;
    color: #fff
}

#popup_panel input#popup_cancel {
    font-size: 14px;
    border: 0;
    padding: 8px 30px;
    cursor: pointer;
    background-color: #fff;
    font-weight: 700;
    border-radius: 3px;
    outline: 0;
    color: #333
}

@media (max-width :767px) {
    #popup_container {
        min-width: 90%;
        max-width: 90%
    }
}
