<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@-webkit-keyframes dialog-show {
    0% {
        -webkit-transform: scale(.7);
        transform: scale(.7)
    }
    45% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05)
    }
    80% {
        -webkit-transform: scale(.95);
        transform: scale(.95)
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes dialog-show {
    0% {
        -webkit-transform: scale(.7);
        transform: scale(.7)
    }
    45% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05)
    }
    80% {
        -webkit-transform: scale(.95);
        transform: scale(.95)
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}


body.dialog-shown:not(.dialog-no-backdrop):not(.dialog-toast-shown) {
    overflow-y: hidden
}

#dialog-container {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 10px;
    z-index: 99999;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    background-color: rgba(0, 0, 0, .4);
    transition: background-color .1s;
    overflow-y: auto;
    -webkit-tap-highlight-color: transparent;
}

.dialog-content {
    padding: 0.25rem 0;
}


[class^=dialog] {
    -webkit-tap-highlight-color: transparent
}

.dialog-show {
    -webkit-animation: dialog-show .3s;
    animation: dialog-show .3s
}


#dialog-container {
    overflow-y: auto;
}


.dialog-popup:focus-visible {
    outline: none;
}

.dialog-popup {
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
    width: 400px;
    min-height: 200px;
    padding: 1.25em 1.5rem;
    border-radius: 1.2rem;
    background: #fff;
    font-size: 1rem;
    box-sizing: border-box;
}

.dialog-icon {
    height: 24px;
    width: 24px;
    min-width: 24px;
    margin-bottom: 8px;
}

.dialog-icon.alert-warning {
    background-image: url("https://static.blogtalk.io/icons/warning-circle.svg");
}

.dialog-icon.alert-success {
    background-image: url("https://static.blogtalk.io/icons/success-circle.svg");
}


.dialog-icon.alert-info {
    background-image: url("https://static.blogtalk.io/icons/info-circle.svg");
}


.dialog-title {
    text-overflow: ellipsis;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;

    display: block;
    font-weight: 700;
    color: #222222;
    text-align: inherit;
    font-size: calc(1rem + 0.2vw);
    margin-bottom: 5px;
}

.dialog-description {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    color: #626262;
    line-height: 1.6;
    padding-top: 10px;
    word-break: break-all;
}


.interaction-group {
    display: flex;
    gap: 8px;
    width: 100%;
    margin-top: 20px;
}

.dialog-popup .text-center {
text-align: center !important;
}

.dialog-popup .text-left {
    text-align: left !important;
}

.interaction-group button {
    width: 100%;
    align-items: center;
    margin: 0;
    font-weight: 600;
    padding: 11px 14px;
    border-radius: 6px;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    cursor: pointer;
    transition: box-shadow 0.2s ease, background 0.2s ease, color 0.1s ease;
    flex: 1 1;
    outline: none;
    border: none;
}

.interaction-group button:focus {
    outline: none;
}

.interaction-group button:disabled {
    cursor: not-allowed;
    color:rgba(255,255,255,0.45);
    background-color: rgb(66 188 116 / 45%);
}


.interaction-group .default-btn {
    color: rgba(3, 18, 40, 0.7);
    background-color: rgba(2, 32, 71, 0.05);
}

.interaction-group .default-btn:not(:disabled):hover {
    color: rgba(3, 18, 40, 0.7);
    background-color: rgba(0, 27, 55, 0.1);
}

.interaction-group .dark-btn {
    color: rgba(255, 255, 255, 1);
    background-color: #373737;
}

.interaction-group .dark-btn:not(:disabled):hover {
    color: rgba(255, 255, 255, 1);
    background-color: #282828;
}

.interaction-group .success-btn {
    color: rgba(255, 255, 255, 1);
    background-color: #42bc74;
}

.interaction-group .success-btn:not(:disabled):hover {
    color: rgba(255, 255, 255, 1);
    background-color: #3f9c65;
}

.interaction-group .warning-btn {
    color: rgba(255, 255, 255, 1);
    background-color: #ffb331;
}

.interaction-group .warning-btn:not(:disabled):hover {
    color: rgba(255, 255, 255, 1);
    background-color: #ffa927;
}

.interaction-group .danger-btn {
    color: rgba(255, 255, 255, 1);
    background-color: #f04452;
}

.interaction-group .danger-btn:not(:disabled):hover {
    color: rgba(255, 255, 255, 1);
    background-color: #e42939;
}
</pre></body></html>