<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.card {
    border: none;
    border-radius: 10px;
}
.bg-image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}
.view {
    position: relative;
    overflow: visible !important;
    height: 100%;
}
.divider {
    background-image: linear-gradient(to right, var(--primary-color) 50%, #fff 0);
    background-repeat: repeat-x;
    background-size: 5px 1px;
    height: 2px;
    width: 100%;
    margin-right: 8px;
}
.pointer-events-none {
    pointer-events: none;
}
*[class*="line-clamp-"] {
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
    word-break: break-all;
}
.line-clamp-1 {
    -webkit-line-clamp: 1;
}
.line-clamp-2 {
    -webkit-line-clamp: 2;
}
.line-clamp-3 {
    -webkit-line-clamp: 3;
}
.line-clamp-4 {
    -webkit-line-clamp: 4;
}
.line-clamp-5 {
    -webkit-line-clamp: 5;
}
.scroller {
    display: flex;
    position: fixed;
    bottom: 20px;
    right: 50px;
    z-index: 999999999;
    font-size: 18px;
    color: #fff;
    background-color: var(--secondary-color);
    border-radius: 50%;
    height: 50px;
    width: 50px;
    justify-content: center;
    align-items: center;
    border: none;
    outline: none;
    text-decoration: none;
    opacity: 1;
    transition: opacity 1s ease;
    cursor: pointer;
}
.scroller.disabled {
    opacity: 0;
    transition: opacity 1s ease;
}
.scroller.disabled.end {
    display: none!important;
}
.cookie-alert {
    transition: opacity .3s;
    z-index: 5999;
    width: 32em;
    background-color: #fff;
    position: fixed;
    bottom: 1em;
    left: 3em;
    box-shadow: 2px 3px 10px rgb(182 182 182);
    border-radius: 0.3em;
    font-size: .875em;
    text-align: left;
    line-height: normal;
    color: #333;
}</pre></body></html>