/* Charset and Font Import */
@charset "utf-8";
@import 'https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@1,200&family=Bitter:wght@300&display=swap';

/* Modern Ticker Styles */
.modern-ticker {
    position: absolute;
    width: 100%;
    height: 45px;
    line-height: 30px;
    font-size: 25px;
    overflow: hidden;
}

/* Media Query for Screens <= 768px */
@media screen and (max-width: 768px) {
    /* Add specific styles for screens <= 768px if needed */
}

/* Box Sizing */
.modern-ticker * {
    box-sizing: content-box;
}

/* Direction Styles */
.modern-ticker.mt-rtl {
    direction: rtl;
}

/* Font Family */
.modern-ticker.mt-font {
    font-family: 'Barlow Condensed', sans-serif;
}

/* Border Radius */
.modern-ticker.mt-round {
    border-radius: 0;
}

/* Reset List Styles */
.modern-ticker ul,
.modern-ticker li {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Anchor Styles */
.modern-ticker a,
.modern-ticker a:hover {
    text-decoration: none;
}

/* Body Styles */
.modern-ticker .mt-body {
    margin: 5px;
    position: relative;
}

.mt-body ul {
    text-align: center;
}


/* Label Styles */
.modern-ticker .mt-label {
    position: absolute;
}

.modern-ticker.mt-ltr .mt-label {
    margin-right: 2px;
    padding: 0 8px 0 12px;
    left: 0;
}

.modern-ticker.mt-rtl .mt-label {
    margin-left: 2px;
    padding: 0 12px 0 8px;
    right: 0;
}

.modern-ticker.mt-ltr.mt-round .mt-label {
    border-radius: 0 0 0 0;
}

.modern-ticker.mt-rtl.mt-round .mt-label {
    border-radius: 0 5px 5px 0;
}

/* News Styles */
.modern-ticker .mt-news {
    overflow: hidden;
    position: absolute;
}

.modern-ticker.mt-scroll .mt-news {
    background-color: transparent;
}

.modern-ticker .mt-news ul {
    background-repeat: no-repeat;
    background-position: -1000px;
}

.modern-ticker .mt-news li {
    line-height: 35px;
}

.modern-ticker .mt-news.mt-center li {
    position: relative;
}

.modern-ticker.mt-ltr .mt-news li {
    float: left;
}

.modern-ticker.mt-rtl .mt-news li {
    float: right;
}

.modern-ticker.mt-round .mt-news:first-child,
.modern-ticker.mt-round .mt-news:first-child a {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.modern-ticker.mt-round .mt-news:last-child,
.modern-ticker.mt-round .mt-news:last-child a {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.modern-ticker .mt-news a {
    font-size: 25px;
    font-weight: 400;
    background-repeat: no-repeat;
    display: block;
    white-space: nowrap;
}

.modern-ticker.mt-ltr .mt-news a {
    padding: 0 10px 0 20px;
    background-position: 7px center;
    margin-right: 7px;
}

.modern-ticker.mt-rtl .mt-news a {
    padding: 0 20px 0 10px;
    background-position: right 7px center;
    margin-left: 2px;
}

.modern-ticker.mt-scroll.mt-round .mt-news a {
    border-radius: 0;
}

/* Hidden Elements */
.modern-ticker .mt-hide {
    display: none;
}

/* Error Styles */
.modern-ticker .mt-error {
    font-size: 15px;
    font-style: italic;
    text-align: center;
    margin: 0;
}

/* Control Styles */
.modern-ticker .mt-controls {
    position: absolute;
    background-repeat: no-repeat;
    background-position: -1000px;
}

.modern-ticker.mt-ltr .mt-controls {
    margin-left: 2px;
    right: 0;
}

.modern-ticker.mt-rtl .mt-controls {
    margin-right: 2px;
    left: 0;
}

.modern-ticker .mt-play,
.modern-ticker .mt-prev,
.modern-ticker .mt-next {
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-position: center;
    float: left;
    cursor: pointer;
}

.modern-ticker.mt-ltr.mt-round .mt-controls div:last-child {
    border-radius: 0 5px 5px 0;
}

.modern-ticker.mt-rtl.mt-round .mt-controls div:first-child {
    border-radius: 5px 0 0 5px;
}
