body {
    background-color: #0f1924 !important;
    font-family: Arial, sans-serif!important;
    align-items: center;

}


.community-title{
    color: white;
}

.community-title p{
    color: #8e979f;
}

.community-search{
    padding: 10px;
    margin-top: 15px;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    margin-bottom: 20px;
}

.community-search p{
    font-size: 11px;
    color: #8e979f;
    text-transform: uppercase;
    padding-bottom: 5px;
    margin-bottom: 0;

}

.community-input-wrapper {
    position: relative;
    width: 100%;
}

.community-input-wrapper label{
    width: 100%;
}

.community-search-input {
    width: 100%;
    height: 30px;
    background-color: #31425e;
    border: 1px solid #1e293b;
    border-radius: 3px;
    padding: 0 40px 0 10px;
    color: #ffffff;
    font-size: 16px;
    box-sizing: border-box;
    outline: none;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.3);
    transition: background-color 0.2s, border-color 0.2s;
    caret-color: #ffffff;
}

.community-search-input:focus {
    background-color: #3b4e6e;
    border-color: #4a5f85;
}

.community-search-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #cdd6e0;
    font-size: 18px;
    cursor: pointer;
    pointer-events: none;
}

.communityByGameId-background{
    background-position: center top;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vw;
}


.communityByGameId-header{
    padding: 10px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.communityByGameId-header-button{
    height: 32px;
    width: 80px;
    background: rgba(103, 193, 245, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2px
}

.communityByGameId-header-button a{
    text-decoration: none
}

.communityByGameId-header-button p{
    color: white;
    font-size: 14px;
    margin: 0
}

.community-button{
    position: relative;
    margin-left: 10px;
    font-size: 13px;
    z-index: 10;
    white-space: nowrap;
    overflow: hidden;
    overflow-x: auto;
}

.community-button a{
    display: inline-block;
    color: #dadada;
    height: 28px;
    line-height: 31px;
    padding: 0 14px;
    margin-right: 2px;
    text-decoration: none;
    border-radius: 2px 2px 0 0;
}

.community-button a.active{
    background-color: #0d121a;
}

.community-bottom-bar{
    background-color: #0d121a;
    height: 5px;
    margin: 0 auto;
}

.community-bottom-select{
    padding: 3px 0 3px 0;
    display: none;
    text-align: center;
    background: #0d121a;
    border: 1px solid #66C0F4;
    border-image: linear-gradient(#66C0F4, #417B9c);
    margin-bottom: 20px;
}

.community-bottom-select label{
    width: 100%;
}

.community-game-select{
    color: #ffffff;
    background: #3a6d8b;
    padding: unset;
    border: none;
    font-size: 16px;
    height: 24px;
    width: 96%;
    font-weight: 200;
}


@media (max-width: 910px) {
    .community-bottom-select{
        display: block;
    }

    .community-button{
        display: none;
    }

    .community-bottom-bar{
        display: none;
    }
}