body {
    font-family: var(--font-family);
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

* {
    border: 0px;
    outline: 0px;
    font-family: var(--font-family);
}

body {
    height: 100%;
    scroll-behavior: smooth;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

:root {
    --primary: #36393f;
    --secondary: #2f3136;
    --tertiary: rgb(32, 34, 37);
    --quaternary: #292b2f;
    --quinary: #393d42;
    --senary: #828386;
    --white: #fff;
    --gray: #8a8c90;
    --chat-input: rgb(64, 68, 75);
    --symbol: #74777a;
    --notification: #f84a4b;
    --discord: #6e86d6;
    --mention-detail: #f9a839;
    --mention-message: #413f3f;
    --link: #5d80d6;
    --font-family: "Roboto", sans-serif;
}

#root {
    height: 100%;
    scroll-behavior: smooth;
}

.fFvlhF {
    display: grid;
    height: 100vh;
    grid-template: "SL CI" 46px "SL CD" / 65px auto;
}

@media (min-width: 598px) {
    .fFvlhF {
        grid-template: "SL SN CI CI" 46px "SL CL CD CD" "SL UI CD CD" 52px / 71px 240px auto 240px;
    }
}

@media (min-width: 868px) {
    .fFvlhF {
        grid-template-areas: "SL SN CI CI" "SL CL CD UL" "SL UI CD UL";
    }
}

.serverlist {
    grid-area: SL;
    display: flex;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    background-color: var(--tertiary);
    padding: 11px 0px;
    max-height: 100vh;
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: var(--secondary) var(--tertiary);
}

.serverlist:-webkit-scrollbar {
    display: none;
}

.gnwqMi {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: 0px 11px 0px 16px;
    background-color: var(--secondary);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 0px 0px;
    z-index: 2;
}

.gbgfMs {
    grid-area: CI;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    padding: 0px 17px;
    background-color: var(--primary);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 0px 0px;
    z-index: 2;
}

.cYLuAZ {
    grid-area: CL;
    display: flex;
    flex-direction: column;
    padding: 24px 9.5px 0px 16px;
    background-color: var(--secondary);
}

.kGntgQ {
    grid-area: UI;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: 10px;
    background-color: var(--quaternary);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 0px 0px;
}

.hrCIoP {
    grid-area: CD;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: justify;
    justify-content: space-between;
    background-color: var(--primary);
}

.gHUUHu {
    grid-area: UL;
    display: flex;
    flex-direction: column;
    padding: 3px 6px 0px 16px;
    background-color: var(--secondary);
    max-height: calc(-46px + 100vh);
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: var(--secondary) var(--tertiary);
}

.gHUUHu:-webkit-scrollbar {
    width: 4px;
}

.gHUUHu:-webkit-scrollbar-thumb {
    background-color: var(--tertiary);
    border-radius: 4px;
}

.gHUUHu:-webkit-scrollbar-track {
    background-color: var(--secondary);
}

*,
button {
    border: 0px;
    outline: 0px;
    font-family: var(--font-family);
}

.serverbtn-separator {
    width: 32px;
    border-bottom: 2px solid var(--quaternary);
    margin-bottom: 8px;
}

.serverbtn {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-bottom: 15px;
    background-color: #fff;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    color: var(--white);
    transition:
        border-radius 0.2s,
        background-color 0.2s;
}

.serverbtn:before {
    width: 9px;
    height: 9px;
    position: absolute;
    left: -17px;
    top: calc(50% - 4.5px);
    background-color: var(--white);
    border-radius: 50%;
    content: "";
    display: inline;
}

.serverbtn.counter:after {
    background-color: var(--notification);
    width: auto;
    height: 16px;
    padding: 0px 4px;
    position: absolute;
    bottom: -4px;
    right: -4px;
    border-radius: 12px;
    border: 4px solid var(--quaternary);
    text-align: right;
    font-size: 13px;
    font-weight: bold;
    color: var(--white);
    content: "!!!";
    display: inline;
}

.serverbtn:hover {
    border-radius: 16px;
    /* background: make lighter by 10% without hardcoding color */
    filter: brightness(110%);
}

.serverbtn.active {
    border-radius: 12px;
    filter: brightness(110%);
}

.serverbtn strong {
    color: var(--white);
    font-size: 20px;
}

.serverbtn.pink {
    background-color: rgb(204, 120, 163);
}

.serverbtn.purple {
    background-color: rgb(102, 51, 204);
}

.serverbtn.gray {
    background-color: rgb(165, 152, 190);
}

.serverbtn.green {
    background-color: rgb(79, 133, 14);
}

.serverbtn.blue {
    background-color: rgb(0, 123, 205);
}

.serverbtn.cyan {
    background-color: rgb(0, 216, 255);
}

.serverbtn.red {
    background-color: rgb(237, 27, 36);
}

.cOWINi {
    font-size: 16px;
    font-weight: bold;
    color: var(--white);
}

.jZGNBW {
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
}

.irPtrP {
    width: 28px;
    height: 28px;
    color: var(--white);
    cursor: pointer;
}

.dXWCyY {
    width: 24px;
    height: 24px;
    color: var(--symbol);
}

.jbJDWL {
    margin-left: 9px;
    font-size: 16px;
    font-weight: bold;
    color: var(--white);
}

.hSaKRS {
    height: 24px;
    width: 1px;
    background-color: var(--white);
    opacity: 0.2;
    margin: 0px 13px;
}

.iDhzRL {
    font-size: 15px;
    color: var(--gray);
}

.bjNVbG {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    margin-bottom: 6px;
}

.cQZIoF {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    cursor: pointer;
    padding: 8px 3px;
    border-radius: 5px;
    background-color: transparent;
    transition: background-color 0.2s;
    margin-top: 2px;
    text-decoration: none;
}

.cQZIoF.active {
    background-color: var(--quinary);
}

.cQZIoF:hover,
.cQZIoF.active {
    background-color: var(--quinary);
}

.cQZIoF:hover {
    background-color: var(--quinary);
}

.XavQL {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.fTLfYv {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    margin-top: -5px;
}

.gaGeRK {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    padding: 4px 16px;
    margin-right: 4px;
    background-color: transparent;
}

.gaGeRK.mention {
    background-color: var(--mention-message);
    border-left: 2px solid var(--mention-detail);
    padding-left: 14px;
}

.eUgDnc {
    padding: 20px 0px;
    display: flex;
    flex-direction: column;
    max-height: calc(-177px + 100vh);
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: var(--secondary) var(--tertiary);
    height: 100%;
}

.gaGeRK+div {
    margin-top: 13px;
}

.eUgDnc:-webkit-scrollbar {
    width: 8px;
}

.eUgDnc:-webkit-scrollbar-thumb {
    background-color: var(--tertiary);
    border-radius: 4px;
}

.eUgDnc:-webkit-scrollbar-track {
    background-color: var(--secondary);
}

.esdhrP {
    width: 100%;
    padding: 0px 16px;
}

.bAYFRD {
    margin-top: 20px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    color: var(--gray);
}

.khGBIg {
    margin-top: 5px;
    padding: 5px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    cursor: pointer;
    border-radius: 4px;
    background: transparent;
    transition: background 0.2s;
}

.khGBIg:hover {
    background: rgba(255, 255, 255, 0.1);
}

.bSUOsx>img {
    width: 30px;
    height: 30px;
}

.serverbtn>img {
    width: 30px;
    height: 30px;
}

.jKnnBO>img {
    width: 30px;
    height: 30px;
}

.hHCyjt>img {
    width: 30px;
    height: 30px;
}

.fPsKuI>img {
    width: 30px;
    height: 30px;
}

.dlRCnV>img {
    width: 30px;
    height: 30px;
}

.sYnlj>img {
    width: 30px;
    height: 30px;
}

.dFgZFy>img {
    width: 30px;
    height: 30px;
}

.hrvqyt>img {
    width: 30px;
    height: 30px;
}

.eZXEoy>img {
    width: 30px;
    height: 30px;
}

.jIQiGt>img {
    width: 30px;
    height: 30px;
}

.bjNVbG>span {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    color: var(--gray);
}

.cSnsVU {
    width: 21px;
    height: 21px;
    color: var(--symbol);
    cursor: pointer;
}

.cQZIoF>div {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.cQZIoF .channel-config {
    transition: 0.7ms;
    visibility: hidden;
}

.cQZIoF .channel-active {
    transition: 0.7ms;
    visibility: visible !important;
}

.cQZIoF:hover>.channel-config {
    transition: 0.7ms;
    visibility: visible !important;
}

.kCQmsc {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--gray);
}

.guKkvw {
    margin-left: 8px;
    display: flex;
    flex-direction: column;
}

.nwOmR {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.fTLfYv>div:not(:first-child) {
    margin-left: 7px;
}

.laquCT {
    width: 40px;
    height: 40px;
    background-color: var(--secondary);
    border-radius: 50%;
}

.laquCT.bot {
    background-color: var(--mention-detail);
}

.XqbgT {
    min-height: 40px;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: justify;
    justify-content: space-between;
    margin-left: 17px;
}

*,
input {
    border: 0px;
    outline: 0px;
    font-family: var(--font-family);
}

.gdARiY {
    width: 100%;
    height: 44px;
    padding: 0px 10px 0px 57px;
    border-radius: 7px;
    color: var(--white);
    background-color: var(--chat-input);
    position: relative;
}

.JiLrb {
    width: 24px;
    height: 24px;
    color: var(--gray);
}

.gdARiY~svg {
    position: relative;
    top: -50%;
    left: 14px;
    transition: 180ms ease-in-out;
}

.iHaOcn {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--primary);
}

.khGBIg>strong {
    margin-left: 13px;
    font-weight: 500;
    color: var(--white);
    opacity: 0.7;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.iHaOcn.bot {
    background-color: var(--mention-detail);
}

.khGBIg>span {
    margin-left: 9px;
    background-color: var(--discord);
    color: var(--white);
    border-radius: 4px;
    padding: 4px 5px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 11px;
}

.ehfErK {
    width: 20px;
    height: 20px;
    color: var(--symbol);
}

.cQZIoF>div span {
    margin-left: 5px;
    color: var(--senary);
}

.cQZIoF.active>div span {
    color: var(--white);
}

.cQZIoF:hover>div span,
.cQZIoF.active>div span {
    color: var(--white);
}

.btjemE {
    width: 16px;
    height: 16px;
    color: var(--symbol);
    cursor: pointer;
    transition: color 0.2s;
}

.dWjUC {
    width: 16px;
    height: 16px;
    margin-left: 4px;
    color: var(--symbol);
    cursor: pointer;
    transition: color 0.2s;
}

.cQZIoF:hover>div span,
.cQZIoF.active>div span {
    color: var(--white);
}

.kCQmsc .user-avatar {
    width: 32px;
    border-radius: 50%;
}

.guKkvw>strong {
    color: var(--white);
    font-size: 13px;
    display: block;
}

.guKkvw>span {
    color: var(--gray);
    font-size: 13px;
}

.cunCrG {
    width: 20px;
    height: 20px;
    color: var(--white);
    opacity: 0.7;
    cursor: pointer;
    transition: opacity 0.2s;
}

.izBVou {
    width: 20px;
    height: 20px;
    color: var(--white);
    opacity: 0.7;
    cursor: pointer;
    transition: opacity 0.2s;
}

.fTbwUB {
    width: 20px;
    height: 20px;
    color: var(--white);
    opacity: 0.7;
    cursor: pointer;
    transition: opacity 0.2s;
}

.laquCT .user-avatar {
    width: 40px;
    border-radius: 50%;
}

.ikxKmn {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.cHGPOa {
    text-align: left;
    font-size: 16px;
    color: var(--white);
}

.iHaOcn .user-avatar {
    width: 32px;
    border-radius: 50%;
}

.ikxKmn>strong {
    color: var(--white);
    font-size: 16px;
}

.ikxKmn>span {
    margin-left: 6px;
    background-color: var(--discord);
    color: var(--white);
    border-radius: 4px;
    padding: 4px 5px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 11px;
}

.ikxKmn>time {
    margin-left: 6px;
    color: var(--gray);
    font-size: 13px;
}

.kajamm {
    color: var(--link);
    cursor: pointer;
}

.kajamm:hover {
    text-decoration: underline;
}