<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.sdc-success{
    background-color: #4CAF50;
}

.sdc-danger{
    background-color: #f44336;
}

.sdc-warning{
    background-color: #ff9800;
}

.sdc-primary{
    background-color: #2196F3;
}

.sdc-alert {
    padding: 20px;
    color: white;
    opacity: 0.83;
    transition: opacity 0.6s;
    margin-bottom: 15px;
}

.sdc-alert-closebtn {
    margin-left: 15px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.sdc-alert-closebtn:hover {
    color: black;
}

#sdc-snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-size: 17px;
}

#sdc-snackbar.sdc-snackbar-show {
    visibility: visible;
    -webkit-animation: sdc-fadein 0.5s, sdc-fadeout 0.5s 2.5s;
    animation: sdc-fadein 0.5s, sdc-fadeout 0.5s 2.5s;
}

@-webkit-keyframes sdc-fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}

@keyframes sdc-fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes sdc-fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}

@keyframes sdc-fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}</pre></body></html>