<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.popup_message {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index:99999;

}

.popup_message_inner {
    width: 340px;
    /*height: 102px;*/
    background: rgba(255, 255, 255, 1);

    position: relative;
    display: none;
    margin-top: 10px;
    border-radius: 4px;
    box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.1);
}

.popup_message_img {
    float: left;
    margin: 15px;
    width: 70px;
    height: 70px;
    border: 1px solid #D0D0D0;

}

.popup_message_info {
    padding: 15px 0;
    float: left;
    width: 240px;
    padding-right: 15px;
}

.popup_message_heading {
    width: 195px;
    font-size: 14px;
}

.popup_message_inner strong a {
    color: #ff9900;
}

.popup_message_timing {
    font-size: 10px;
    color: #777;
}

.popup_message_tools {
    position: absolute;
    top: 10px;
    right: 10px;
}

.popup_message_tools i {
    cursor: pointer;
    margin-left: 5px;
    font-size: 14px;
    color: #ccc;
}

.switch-container {
    margin: 0 0 20px;
    overflow: hidden;
}

.switch-inner {
    line-height: 25px;
    margin-left: 10px;
}

.switch-name {
    width: 80px;
    display: inline-block;
}

.switch {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 56px;
    height: 20px;
    padding: 3px;
    background-color: white;

    box-shadow: inset 0 -1px white, inset 0 1px 1px rgba(0, 0, 0, 0.05);
    cursor: pointer;

}

.switch-input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.switch-label {
    position: relative;
    display: block;
    height: inherit;
    font-size: 10px;
    text-transform: uppercase;
    background: #eceeef;

    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.12), inset 0 0 2px rgba(0, 0, 0, 0.15);
    -webkit-transition: 0.15s ease-out;
    -moz-transition: 0.15s ease-out;
    -o-transition: 0.15s ease-out;
    transition: 0.15s ease-out;
    -webkit-transition-property: opacity background;
    -moz-transition-property: opacity background;
    -o-transition-property: opacity background;
    transition-property: opacity background;
}

.switch-label:before, .switch-label:after {
    position: absolute;
    top: 50%;
    margin-top: -.5em;
    line-height: 1;
    -webkit-transition: inherit;
    -moz-transition: inherit;
    -o-transition: inherit;
    transition: inherit;
}

.switch-label:before {
    content: attr(data-off);
    right: 5px;
    color: #aaa;
    text-shadow: 0 1px rgba(255, 255, 255, 0.5);
}

.switch-label:after {
    content: attr(data-on);
    left: 8px;
    text-shadow: 0 1px rgba(0, 0, 0, 0.2);
    opacity: 0;
}

.switch-input:checked ~ .switch-label {
    background: #ff9900;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15), inset 0 0 3px rgba(0, 0, 0, 0.2);
    color: white;
}

.switch-input:checked ~ .switch-label:before {
    opacity: 0;
}

.switch-input:checked ~ .switch-label:after {
    opacity: 1;
}

.switch-handle {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 18px;
    height: 18px;
    background: white;

    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
    background-image: -webkit-linear-gradient(top, white 40%, #f0f0f0);
    background-image: -moz-linear-gradient(top, white 40%, #f0f0f0);
    background-image: -o-linear-gradient(top, white 40%, #f0f0f0);
    background-image: linear-gradient(to bottom, white 40%, #f0f0f0);
    -webkit-transition: left 0.15s ease-out;
    -moz-transition: left 0.15s ease-out;
    -o-transition: left 0.15s ease-out;
    transition: left 0.15s ease-out;
}

.switch-handle:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -6px 0 0 -6px;
    width: 12px;
    height: 12px;
    background: #f9f9f9;
    border-radius: 6px;
    box-shadow: inset 0 1px rgba(0, 0, 0, 0.02);
    background-image: -webkit-linear-gradient(top, #eeeeee, white);
    background-image: -moz-linear-gradient(top, #eeeeee, white);
    background-image: -o-linear-gradient(top, #eeeeee, white);
    background-image: linear-gradient(to bottom, #eeeeee, white);
}

.switch-input:checked ~ .switch-handle {
    left: 34px;
    box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2);
}

.switch-green &gt; .switch-input:checked ~ .switch-label {
    background: #4fb845;
}
</pre></body></html>