<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.widgetbar_fixed {
    position: fixed;
    right: 0px;
    top: 0;
    height: 100%;
    z-index: 100000;
    transition: 0.5s ease all;
}

.widgetbar_fixed.closed {
    transform: translateX(100%);
}

.widgetbar_fixed.closed .widgetbar_opener {
    background-color: #dd2314 !important;
    color: white;
}

.widgetbar_opener:hover {
    cursor: pointer;
}

.widgetbar_opener {
    position: absolute;
    left: -42px;
    transform: rotate(-90deg) translateY(-200%);
    width: 200px;
    top: 40vh;
    border-radius: 10px 10px 0 0;
    background: white;
    padding: 8px 20px 10px 20px;
    font-size: 12px;
    text-transform: uppercase;
    color: #0f3061;
    -webkit-box-shadow: 0px 0px 11px 0px rgba(50, 50, 50, 0.2);
    -moz-box-shadow: 0px 0px 11px 0px rgba(50, 50, 50, 0.2);
    box-shadow: 0px 0px 11px 0px rgba(50, 50, 50, 0.2);
    z-index: 5;
    text-align: center;
    transition: 0.25s all linear;
    opacity:1;
    pointer-events: all;
}
.widgetbar_opener.active
{
    opacity:1;
    pointer-events: all;
}

.widgetbar_opener:after {
    position: absolute;
    right: 0;
    width: 100%;
    background: white;
    z-index: 7;
    content: "";
    height: 11px;
    bottom: -10px;

}

.widgetbar_widgetarea {
    z-index: 6;
    -webkit-box-shadow: 0px 0px 11px 0px rgba(50, 50, 50, 0.2);
    -moz-box-shadow: 0px 0px 11px 0px rgba(50, 50, 50, 0.2);
    box-shadow: 0px 0px 11px 0px rgba(50, 50, 50, 0.2);
    width: 20vw;
    background: white;
}

/*==========  Mobile First Method  ==========*/

/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) {
    .widgetbar_widgetarea {
        width: 80vw;
    }
}

/* Extra Small Devices, Phones */
@media only screen and (min-width: 480px) {
    .widgetbar_widgetarea {
        width: 80vw;
    }
}

/* Small Devices, Tablets */
@media only screen and (min-width: 768px) {
    .widgetbar_widgetarea {
        width: 50vw;
    }
}

/* Medium Devices, Desktops */
@media only screen and (min-width: 992px) {
    .widgetbar_widgetarea {
        width: 30vw;
    }
}

/* Large Devices, Wide Screens */
@media only screen and (min-width: 1200px) {
    .widgetbar_widgetarea {
        width: 30vw;
    }
}

.widget {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom:50px;
}
</pre></body></html>