<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.cd-notifications-auto-dialog {
    position: fixed;
    display: block;
    margin: 0;
    padding: 10px;
    border: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 -5px 10px 0 rgba(0, 0, 0, .25);
    opacity: 0;
    -webkit-transform: translate(0, 100%);
       -moz-transform: translate(0, 100%);
        -ms-transform: translate(0, 100%);
         -o-transform: translate(0, 100%);
            transform: translate(0, 100%) translateZ(0);
    transition-duration: 250ms;
    transition-timing-function: ease-in-out;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    will-change: transform;
    z-index: 99999999;
}

.cd-notifications-auto-dialog.open {
    opacity: 1;
    -webkit-transform: translate(0, 0);
       -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
         -o-transform: translate(0, 0);
            transform: translate(0, 0) translateZ(0);
}

.cd-notifications-auto-dialog .icon {
    display: block;
    margin: 0;
    padding: 0;
    border: 0;
    width: 70px;
    height: 70px;
    float: left;
    fill: #fcdc56;
    stroke: #555;
}

.cd-notifications-auto-dialog .text {
    display: block;
    margin: 10px 0 10px 80px;
    padding: 0;
    border: 0;
    font-size: 16px;
    line-height: 1.4em;
    color: #333;
}

.cd-notifications-auto-dialog .buttons {
    display: block;
    margin: 0;
    padding: 0;
    border: 0;
    text-align: right;
}

.cd-notifications-auto-dialog .button {
    display: inline-block;
    margin: 4px;
    padding: 8px 16px;
    border: 0;
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
    color: #666;
    text-decoration: none;
    background-color: #f0f0f0;
}

.cd-notifications-auto-dialog .button.ok {
    background-color: #2196F3;
    color: #fff;
}

@media only screen and (min-width:650px) {
    .cd-notifications-auto-dialog {
        top: 10px;
        bottom: auto;
        left: 10px;
        right: auto;
        max-width: 400px;
        box-shadow: 0 0 10px 5px rgba(0, 0, 0, .25);
        -webkit-transform: translate(0, -100%);
           -moz-transform: translate(0, -100%);
            -ms-transform: translate(0, -100%);
             -o-transform: translate(0, -100%);
                transform: translate(0, -100%) translateZ(0);
    }
}

.cd-notifications-desktop {
    display: none;
    position: fixed;
    bottom: 60px;
    right: 10px;
}
.cd-notifications-desktop label input[type='checkbox'] {
    display: none;
}
.cd-notifications-desktop label div {
    display: flex;
    margin: 0;
    padding: 0;
    border: solid 1px #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: red;
    cursor: pointer;
    box-shadow: 1px 1px 6px rgba(0,0,0,0.9);
    z-index: 99;
    opacity: .5;
}
.cd-notifications-desktop label input[type='checkbox']:checked ~ div {
    opacity: 1;
}
.cd-notifications-desktop label div svg {
    display: block;
    margin: 0;
    padding: 0;
    border: 0;
    width: 24px;
    height: 24px;
    fill: currentColor;
}
.cd-notifications-desktop label input[type='checkbox'] ~ div ~ span::after {
    position: absolute;
    content: 'Activar notificaciones';
    display: flex;
    margin: -.8em 0 0 0;
    padding: .4em .8em;
    border: solid 2px #000;
    border-radius: 8px;
    height: 1em;
    top: 50%;
    right: 60px;
    z-index: 98;
    background-color: rgba(0,0,0,0.7);
    color: #fff;
    flex-wrap: nowrap;
    align-items: center;
    line-height: 1em;
    white-space: nowrap;
    overflow: hidden;
    justify-content: center;
    pointer-events: none;
    transition-property: opacity, transform;
    transition-duration: .25s;
    transition-timing-function: ease-in-out;
    transform: translateY(50%);
    opacity: 0;
}
.cd-notifications-desktop label input[type='checkbox']:checked ~ div ~ span::after {
    content: 'Desactivar notificaciones';
}
.cd-notifications-desktop label input[type='checkbox']:disabled ~ div ~ span::after {
    content: 'Desactivando notificaciones';
}
.cd-notifications-desktop label input[type='checkbox']:checked:disabled ~ div ~ span::after {
    content: 'Activando notificaciones';
}
.cd-notifications-desktop label:hover input[type='checkbox'] ~ div ~ span::after {
    transform: translateY(0);
    opacity: 1;
}
@media (min-width: 768px) {
    .cd-notifications-desktop {
        display: block;
    }
}
</pre></body></html>