.news-item-container
{
    border-radius: 1rem;
    box-shadow: 0.5rem 0.5rem 2rem #343a40;
    padding: 0;
    margin: 2.5rem 0 2.5rem 0;
    overflow: hidden;
}

.news-item-header-link
{
    text-decoration: none;
}

.news-item-header-container
{
    background-color: #F5923E;
    padding-left: 1rem;
    padding-right: 1rem;

    -o-transition:background-color .5s;
    -ms-transition:background-color .5s;
    -moz-transition:background-color .5s;
    -webkit-transition:background-color .5s;
    transition:background-color .5s;
}

.news-item-header-container:hover
{
    background-color: #C5620E;
}

.news-item-header
{
    margin: 0;
    padding: 0;
}

.news-item-content-container
{
    padding: 0.5rem 1rem 0.5rem 1rem;
    background-image: url("/img/bgcontent.png");
    background-repeat: repeat;
}

.news-item-footer-container
{
    background-color: #2B88DE;
    padding-left: 1rem;
    padding-right: 1rem;
    height: 2rem;
    line-height: 2rem;
}

.news-item-footer-date
{
    float: right;
    color: rgba(255,255,255,0.75);
}

.news-item-footer-seperator
{
    float: right;
    color: rgba(255,255,255,0.75);
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.news-item-footer-label
{
    float: right;
    color: rgba(255,255,255,0.75);
    margin-right: 0.5rem;
}

.news-item-footer-author
{
    float: right;
    color: rgba(255,255,255,1);
}

#news-more-container
{
    margin-bottom: 2rem;
}

#news-more-item-link
{
    text-decoration: none;
}

#news-more-item
{
    background-color: #F5923E;
    margin: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 1rem;
    box-shadow: 0.5rem 0.5rem 2rem #343a40;
    width: 11rem;
    text-align: center;
}

#news-more-item:hover
{
    background-color: #C5620E;
}

#news-more-item-text
{
    margin-bottom: 0 !important;
}

#news-popup-container
{
    display: none;
}

@media not all and (min-height: 540px) and (min-width: 900px)
{
    #news-popup-container i
    {
        position: absolute;
        top: 0;
        right: 0;
        z-index: 5;
        font-size: 4rem;
        color: #C5620E;
        margin: 4.5rem 0.5rem 0 0;
        cursor: pointer;

        -o-transition:color .5s;
        -ms-transition:color .5s;
        -moz-transition:color .5s;
        -webkit-transition:color .5s;
        transition:color .5s;
    }
}

@media all and (min-height: 540px) and (min-width: 900px)
{
    #news-popup-container i
    {
        position: absolute;
        top: 0;
        right: 0;
        z-index: 5;
        font-size: 4rem;
        color: #C5620E;
        margin: 2.5rem 2.5rem 0 0;
        cursor: pointer;

        -o-transition:color .5s;
        -ms-transition:color .5s;
        -moz-transition:color .5s;
        -webkit-transition:color .5s;
        transition:color .5s;
    }
}

#news-popup-container i:hover
{
    color: #F5923E;
}

/*General stylings for news texts*/
.center
{
    width: 100%;
    text-align: center;
}

.image-small
{
    max-width: 5rem;
}

.image-medium
{
    max-width: 10rem;
}

.image-big
{
    max-width: 15rem;
}

.image-huge
{
    max-width: 20rem;
}