@media screen and (max-width: 1500px){
    .card:not(.no-forum).first-of-two, .card:not(.no-forum).second-of-two {
        max-width: 100% !important;
    }
}

.first-box{
    width: 100%;
    height: 70px;
    min-height: 70px;
    background-color: var(--bg-cards-header-date-svg);
    -webkit-animation: top 1s var(--delay) both;
    animation: top 1s var(--delay) both;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #ddd;
    transition: transform 200ms ease-in,
        opacity 200ms ease-in;
    cursor: pointer;
}

.first-box:hover{
    color: #fff;
    background-color: var(--bg-cards-header);
    opacity: 0.75;
}

.header-box{
    display: none;
    cursor: default !important;
}

.card:not(.no-forum){
    padding: 0 !important;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    /* transition: box-shadow 200ms ease-in; */
}

/* .card:not(.no-forum):hover{
    box-shadow: 0 0 5px var(--border-header-hover);
} */

.card:not(.no-forum).card-article{
    background: var(--bg-article) !important;
}

.card:not(.no-forum).card-question{
    background: var(--bg-question) !important;
}

.card:not(.no-forum) .card-vsl{
    height: 175px;
    width: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.article-stat-bar{
	width: 100%;
	height: 20%;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
}

.article-stat-bar:nth-child(odd){
    color: var(--i-odd);
}

.article-stat-bar:nth-child(even){
    color: var(--i-even);
}

.card:not(.no-forum) .card-contention{
    width: calc(100% - 80px);
    height: 100%;
    display: flex;
	flex-direction: column;
    justify-content: space-evenly;
}

.article-intro{
    width: calc(100% - 180px);
    max-width: calc(100% - 180px);
    /* border: 1px solid white; */
}

.article-header{
	/* width: 100%; */
    width: fit-content;
    max-width: calc(100% - 120px);
    /* border: 1px solid white; */
	color: var(--i-odd);
	font-size: 25px;
	padding: 1%;
	display: flex;
	align-items: center;
	cursor: pointer;
	margin-top: 0;
	/* white-space: nowrap; */
	/* overflow: auto; */
}

.article-header:hover{
	opacity: 0.75;
}

.article-brief{
	width: 100%;
	height: 35%;
	color: var(--i-even);
	padding: 2%;
	padding-top: 0;
    overflow: auto;
}

.article-other{
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-around;
    overflow-x: auto;
    overflow-y: hidden;
}

.article-other a.article-update-refresh{
    padding: 2px 4px;
    margin: 2px;
    border-radius: 8px;
    background-color: var(--bg-user-box-hover);
    color: #aaa;    
    font-size: 14px;
    text-decoration: none;
}

.article-other a.article-update-refresh span{
    font-family: Arial;
    font-weight: bold;
}

.article-other .user-card{
    min-width: 150px;
}

.article-tag-area{
	display: flex;
	flex-direction: row;
    margin-top: 2.5px;
    margin-bottom: 2.5px;
    max-width: 100%;
    overflow: auto;
}

.article-tag-area::-webkit-scrollbar{
    display: none;
}

.article-other{
    justify-content: space-between !important;
}

.article-other .article-time-area{
    white-space: nowrap;
    margin-left: 5px;
    margin-right: 5px;
}

.article-tag-area .article-tag a{
    /* display: block; */
    /* padding: 5px 8px; */
    color: #ddd;
    background-color: var(--i-even);
    margin-left: 3px;
    border-radius: 3px;
    text-decoration: none;
}

.article-tag-area .article-tag a{
    height: 30px;
    min-height: 30px;
    max-height: 30px;
    padding: 0 5px;
    display: flex !important;
    flex-direction: row;
    justify-content: center;
    text-align: center;
    align-items: center;
    white-space: nowrap;
}

.article-tag-area .article-tag a i{
    margin-right: 3px;
}

.article-tag-area .article-tag.audit-tag a{
    background-color: gold !important;
    color: #333 !important;
    font-weight: bold;
}

.article-tag-area .article-tag.unlock-tag a{
    /* background-color: rgba(0, 217, 255, .75) !important; */
    background-color: var(--border-light) !important;
    color: #333 !important;
    font-weight: bold;

}

.article-tag-area .article-tag.purchased-tag a{
    background-color: wheat !important;
    color: #333 !important;
    font-weight: bold;
}

.article-tag-area .article-tag a:hover{
    color: #fff !important;
    background-color: var(--i-odd);
}

a.blue-tag{
    background-color: var(--bg-table-status-svg) !important;  
    color: #eee;
    font-family: "Roboto Mono", "Courier New", Courier, monospace;
    letter-spacing: -1px;
}

/* image */
.user-box .card:not(.no-forum) .image-shelf{
    width: 100px;
    height: 100px;
    margin-left: 20px;
}

.user-box .card:not(.no-forum) .image-shelf img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.article-other .article-tag-area .vip-tag a{
    text-decoration: none;
    max-height: 28px;
    height: 28px;
    display: flex;
    font-size: 0.85em;
    padding-left: 3px;
    padding-right: 3px;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    border-radius: 5px;
    color: #ddd;
    background-color: var(--i-even);
    margin-left: 3px;
}

.article-other .article-tag-area .vip-tag.price-tag a{
    color: #000;
    background-color: rgb(222, 205, 173);
}

.article-other .article-tag-area .vip-tag.num-tag a{
    color: #000;
    background-color: rgb(205, 182, 139);
}

.article-other .article-tag-area .vip-tag.purchased-tag a{
    color: #000;
    background-color: var(--border-light);
}

.article-other .article-tag-area .priced-tag a{
    background-color: rgb(207, 204, 198) !important;
    text-decoration: line-through;
}

.article-other .article-tag-area .vip-tag.price-tag a.article-purchase{
    background-color: wheat;
    font-size: 0.75em;
    font-weight: bold;
    transition: opacity 200ms ease-in;
}

.article-other .article-tag-area .vip-tag.price-tag a.article-purchase:hover{
    opacity: 0.65;
}

/* license */
#license-select{
    width: calc(100% - 40px);
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#license-select select{
    font-size: 2rem;
    min-width: 200px;
}

/* responsive */
@media screen and (max-width: 550px) {
    .article-header{
        font-size: 18px !important;
        text-decoration: none;
    }

    .article-brief{
        font-size: 12px !important;
    }

    .card:not(.no-forum) .card-vsl{
        font-size: 13px !important;
        height: fit-content !important;
        padding: 10px 0;
    }

    .article-other{
        font-size: 13px !important;
    }

    .article-tag-area .article-tag a{
        height: fit-content;
        max-height: unset;
        min-height: unset;
        padding: 0 2px;
    }

    .article-stat-bar{
        margin: 2px 0 !important;
    }

    .card:not(.no-forum) .card-contention{
        width: calc(100% - 50px);
    }
}

