.game-tag {
    display:inline-block !important;
    width:auto !important;
    z-index:2;
    margin-top:2px;
    text-decoration:none;
    padding:2px 4px;
    border-radius:3px;
    background-color:var(--blue-2);
    color:var(--blue-5) !important;
    transition: color 1s, background-color 1s;
}
.game-tag:Hover {
    background-color:var(--blue-3);
    color:#FFFFFF !important;
    transition: color .2s, background-color .2s;
}

.game-description-box {
    box-sizing:border-box;
    text-align:left;
    width:100%;
    margin-top:20px;
    background-color:var(--blue-1);
    padding:10px;
    border-radius:5px;
    user-select:none;
}
.game-description-box > .content {
    display:flex;
    width:100%;
    clear:both;
}
.game-description-box > .content > .thumbnail {
    flex:210px 0 0;
}
.game-description-box > .content > .thumbnail > img {
    width:200px;
    margin-right:5px;
    margin-bottom:-5px;
    border-radius:5px;
}
.game-description-box > .content > .information {
    flex-grow:1;
}
.game-description-box > .content > .information > div {
    width:50%;
    min-width:355px;
    display:inline-block;
    box-sizing:border-box;
    vertical-align:top;
}
.game-description-box > .content > .information > div:nth-child(2n+1) {
    padding-right:10px;
}
.game-description-box > .content > .information .title {
    font-weight:bold;
    user-select:text;
}
.game-description-box > .content > .information .description {
    font-style:italic;
    user-select:text;
}
.game-description-box .share-buttons {
    display:inline-block;
    vertical-align:top;
}
.game-description-box > .content > .information .view-count {
    display:inline-block;
    user-select:text;
}
.game-description-box > .content > .information .tags {
    user-select:text;
}

.link-bar {
    width:100%;
    text-align:center;
    margin-top:15px;
    font-family:'Hammersmith One';
}
.link-bar > a {
    margin:0px 5px;
    padding:2px 4px;
    color:var(--blue-4);
}
.embed-code {
    display:none;
    text-align:left;
    font-size:14px;
    background-color:var(--blue-1);
    padding:5px;
    margin-bottom:20px;
    border-radius:5px;
}
.embed-code .code-block {
    background-color:var(--blue-2);
    font-family:Courier New, Courier;
    color:#FFFFFF;
    font-size:11px;
    padding:5px;
    border-radius:5px;
    user-select:all;
}

#chatWindow {
    display:inline-block;
    margin-left:10px;
    vertical-align:top;
    background-color:var(--blue-1);
    border-radius:5px;
    width:320px;
    position:relative;
    box-sizing:border-box;
}
#chatWindow > div {
    width:100%;
    height:414px;
}
@media screen and (max-width: 1090px) {
    #chatWindow {
        margin-left:0px;
        width: 100%;
        margin-top:20px;
    }
}