.community-header-box {
    background: #e1e4df;
    padding: 75px 20px 75px 20px;
}

.community-about-box {
    border: 1px solid #ccc;
    padding: 20px;
    background: #fff;
    margin-bottom: 20px;
}

.community-about-box h2 {
    font-size: 20px;
}

.community-section-box {
    background: #efefef;
    padding: 75px 20px 75px 20px;
}

.vertical-center {
    min-height: 100%;
    /* Fallback for browsers do NOT support vh unit */
    min-height: 100vh;
    /* These two lines are counted as one :-)       */
    display: flex;
    align-items: center;
}

a:link.userlink,
a:active.userlink,
a:visited.userlink {
    color: #000 !important;
}

a:hover.userlink {
    color: #ff0000 !important;
}

.community-discussions-box {
    border: 1px solid #ccc;
    padding: 20px;
    background: #fff;
    margin-bottom: 20px;
}

.community-discussions-content h1 {
    font-size: 11px;
    margin: 0;
    color: white;
}

.community-discussions-box h2 {
    font-size: 20px;
}

.community-info-box {
    border: 1px solid #333;
    width: 100%;
    position: relative;
    margin-bottom: 30px;
    background: rgba(0, 0, 0, .6);
}

.community-info-box-img {
    width: 100%;
}

.community-info-box-content {
    position: absolute;
    bottom: 0;
    left: 0;
    color: white;
    background: rgba(0, 0, 0, .4);
    width: 100%;
    padding: 5px;
    transition: .5s;
}

.community-info-box-content h1 {
    font-size: 11px;
    margin: 0;
    padding: 0;
    line-height: 1.2;
    color: white;
}

.community-info-box-content p {
    margin: 0;
    padding: 0;
    color: white;
}

.community-info-box-content a:link,
.community-info-box-content a:active,
.community-info-box-content a:visited {
    color: white;
}

.community-info-box-content:hover {
    position: absolute;
    bottom: 0;
    left: 0;
    color: white;
    background: rgba(253, 1, 1, 0.932);
    width: 100%;
    padding: 5px;
    transition: .5s;
}

.Badge {
    --size: 22px;
    width: var(--size);
    height: var(--size);
    border-radius: calc(var(--size) / 2);
    background: var(--badge-bg);
    color: var(--badge-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    box-shadow: 0 2px 4px rgb(0 0 0 / 35%);
}

.rounder {
    border-radius: 50%;
}