#popup_container {
    min-width: 420px;
    max-width: 800px;
    position: fixed !important;
    background: #000;
    top: 50% !important;
    left: 50% !important;
    -webkit-transform: translate(-50%, -50%) !important;
    transform: translate(-50%, -50%) !important;
    border-radius: 6px;
    padding: 12px 6px !important;
}
#popup_overlay {
    position: fixed !important;
}
#popup_title {
    font-size: 20px;
    color: #fff;
    padding: 0 8px;
    margin: 0;
}
#popup_close {
    position: absolute;
    right: 10px;
    top: 8px;
    font-size: 16px;
    cursor: pointer;
    color: #fff;
    opacity: 0.7;
    z-index: 1;
    line-height: 1;
    padding: 2px 5px;
}
#popup_close:hover {
    opacity: 1;
}
#popup_overlay.no-close + #popup_container #popup_close {
    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: var(--th-primary);
    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%;
    }
}
