<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --app-blue: #5283c3;
}
body {
    font-family: 'rawline', sans-serif;
}

main {
    padding: 16px;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: #fff;
    padding: 8px 16px;
    z-index: 1021;
    text-decoration: none;
}

.skip-link:focus {
    top: 20%;
    left: 45%;
}

.simple_page li {
    list-style: disc;
}

.simple_page a {
    color: rgb(28, 28, 207);
}

.v2-filter-btn {
    display: flex;
    height: 33px;
    width: 196px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-style: none;
    padding: 0px 12px;
    font-weight: 500;
    background-color: #5283c3;
    color: white;
}

.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: #000;
    animation: spin 1s ease-in-out infinite;
}

.chip-cancel-icon {
    font-size: 10px !important;
}

.errorlist {
    background-color: #f15232;
    color: #fff;
    padding: 6px;
    width: auto;
    font-size: 12px;
}
.errorlist:empty {
    background-color: transparent;
    padding: 0;
}
/* CSS FOR FADE-IN FADE-OUT EFFECT WHEN USER FILTER LIST */
.list-enter-active,
.list-leave-active {
    transition: all 0.5s ease;
}
.list-enter-from,
.list-leave-to {
    opacity: 0;
    transform: translateX(30px);
}

.skeleton-loader {
    background-color: #f0f0f0;
    margin-bottom: 10px;
    animation: pulse 0.5s infinite alternate ease-in-out;
}
/* CSS FOR MAKING HTML CONTAINER HIGHLIGHTED */
.higlighted-element-BG {
    background-color: #e5f3ff !important;
}
.higlighted-element-transition {
    padding: 20px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
.highlighted-container {
    transition: all 0.5s ease;
}
/* CSS FOR TOMCAT INPUT */
.ts-control {
    padding: 0px 8px;
}
.sub-heading-18 {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 3.4px;
}
.filter-done {
    display: flex;
    min-height: 33px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-style: none;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 0px;
    padding-bottom: 0px;
    font-weight: 500;
    background-color: #5283c3;
    color: white;
    width: 100%;
    border-radius: 4px
}

.clear-all-filters {
    display: flex;
    min-height: fit-content;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-style: none;
    color: #5283c3;
}

body:has(.ag-theme-alpine), body:has(.ag-theme-quartz) {
    overscroll-behavior: contain !important;
}
.marker-highlight-pulse {
    position: relative;
    display: inline-block;
}

.marker-highlight-pulse::after {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    animation: pulse-border 1.5s ease-out infinite;
    z-index: -1;
    background-color: white;
}

@keyframes pulse-border {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.8;
    }
    100% {
        transform: scale(2);
        opacity: 0.3;
    }
}

@keyframes pulse {
    0% {
        opacity: 0.6;
    }
    100% {
        opacity: 1;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
</pre></body></html>