<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.xdou-single-app-item {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem;
}

.xdou-single-app-thumbnail {
    width: 75px;
    min-width: 75px;
    min-height: 75px;
    border-radius: 8px;
}

.xdou-single-app-name {
    font-size: 1rem;
    font-weight: 500;
}

.xdou-single-app-rating {
    font-size: 0.875rem;
    color: #888888;
}

.xdou-no-apps {
    text-align: center;
}

.logoRadiusShadowX {
    border-radius: 20%;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .3), 0 1px 3px 1px rgba(60, 64, 67, .15);
    border-width: 0;
}

@keyframes moveLeftRight {
    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }
}

.move-left-right i {
    display: inline-block;
    animation: moveLeftRight 2s infinite;
}

.leftright-loader {
    color: #ffffff9c;
    position: relative;
}

.leftright-loader::after {
    content: "";
    position: absolute;
    width: 25%;
    top: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: currentColor;
    animation: leftright1 1.2s infinite linear;
}

@keyframes leftright1 {
    50% {
        left: 100%;
        transform: translateX(calc(-100% - 4px))
    }
}

.hover-color-black:hover {
    color: #000 !important;
}

.hover-color-white:hover {
    color: #fff !important;
}

.suggestions-search {
    padding: 0;
    border-radius: 10px;
    border: 1px solid #ddd;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: absolute;
    width: 100%;
    background-color: white;
    display: none;
    z-index: 1000;
}

.suggestions-search .suggest-search-item {
    padding: 10px 20px;
    cursor: pointer;
    text-align: start;
    font-size: 14px;
}

.suggestions-search .suggest-search-item:hover {
    background-color: #f1f1f1;
}</pre></body></html>