﻿.news {
    background: #212322;
    border-radius: 10px;
    min-height: 300px;
    max-height: 600px;
    position: relative;
    min-width: 300px;
    max-width: 650px;
    margin-top: 10px;
}

@Media (min-width: 1000px) {
    .news-title{
        font-size: 88px;
        line-height: 98px;
    }
}

.timer {
    position: absolute;
    left: 0px;
    bottom: 0px;
    height: 7px;
    width: calc(100% - 44px);
}

.news-item {
    padding: 10px 90px;
    color: var(--accent-color);
    display: none;
}


.news-item a {
    color: var(--accent-color);
    text-underline: none;
    font-weight: 500;
    font-size: 24px;
}

.active {
    display: block;
}

/* Style the tab content */
.tabcontent {
    color: var(--subtext-color);
    padding: 25px;
}

.news-scanline {
    height: 50px;
    width: 50px;
}

.carousel {
    height: 150px;
}

.news-footer {
    width: 100%;
    height: 25%;
    background: #191A19;
    position: absolute;
    float: bottom;
    bottom: 0;
    display: flex;
    align-items: center;
    padding-left: 20px;
}

.news-icon {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #212322;
}

.news-subtext {
    color: var(--subtext-color);
    display: inline-block;
    margin-left: 25px;
    margin-top: 5px;
}

.news-subtext:hover {
    color: var(--accent-color);
}