#shortnews {
    display:flex;
    flex-direction: column;
    width:100%;
}
#shortnews .concenter {
    width:100%;
    
}
.shortnews-news {
    padding: 5px;
    margin: 5px 0px;
    display:flex;
    flex-direction: column;
    background-color: rgba(27, 29, 32, 0.6);
    color: rgb(225, 232, 246);
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    max-width: 1024px;
}

.shortnews-news p {
    padding-left:8px;
}
.shortnews-news-time {
    font-size: 0.75em;
    font-weight: bold;
}

#show-more-news {
    padding:10px;
    background-color:transparent;
    border:none;
    color: rgb(225, 232, 246);
    font-weight: bold;
    cursor: pointer;
}


/*
.hidden-side-div {
    z-index:15;
    overflow: auto;
    display:none;
    position: fixed;
    top:0;
    right:0;
    height: 100%;
    padding:10px;
    background-color: rgb(225, 232, 246);
    color:  rgb(27, 29, 32);
    box-shadow: inset 10px 0px 10px -5px rgba(0,0,0,0.95);
}
@media only screen and (max-width:1023px) {
    .hidden-side-div {
        width:95%;
    }
}
@media only screen and (min-width:1024px) {
    .hidden-side-div {
        width:95%;
        max-width:1075px;
    }
}
#close-news {
    margin:5px;
    border:3px solid rgb(27, 29, 32);
    border-radius: 10px;
    width: var(--btn-size);
    height: var(--btn-size);
    cursor: pointer;
    opacity: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
#close-news:hover {
    opacity: 1;
}
*/