<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**--------------------------------------
 * @package     rapi_contentmarquee - Rapi Content Marquee
 * @copyright   Copyright (C) 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later.
 * ---------------------------------------**/
.rapi-marquee {
    position: relative;
    display: flex;
    width: auto;
    overflow: hidden;
    height: 40px;
}
.rapi-contentmarquee {
    overflow: hidden;
    margin: 0;
	padding: 5px 0;
    display: block;
    width: auto;
	max-width: 100%;
}

.rapi-marquee .heading {
    float: left;
    padding: 0 15px;
    margin: 0;
    display: flex;
    align-items: center;
    text-align: center;
    white-space: nowrap;
    height: 100%;
}

.rapi-contentmarquee li {
    display: inline-block;
}

.rapi-contentmarquee li a {
    font-size: 16px;
	display: inline !important;
    text-decoration: none;
    margin: 0;
}

.rapi-contentmarquee li a:hover {
    background-color: transparent;
}

.rapi-marquee .divider {
	line-height: 100%;
	display: inline;
	width: 24px;
    height: 24px;
    border-radius: 50%;
    vertical-align: middle;
    padding: 0;
    border: 0;
}

.rapi-marquee .toggle {
    position: absolute;
    top: 0;
}

ul.rapi-contentmarquee {
    direction: ltr;
    width: 100%;
}

</pre></body></html>