.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    color: #fff;
    padding: 2vh 2vh;
    cursor: default;
    z-index: 10;
}

.navbar>.left-bar>img {
    width: 3ch;
    border-radius: 1ch;
}

.navbar>.center-bar {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2vh;
}

.navbar>.center-bar>span {
    cursor: pointer;
    font-size: 1.5vh;
    display: flex;
    padding: 1vh 0;
    border-radius: 0.5vh;
    align-items: center;
    background-color: transparent;
    color: #ffffff;
    transition:
        all 0.3s ease-in-out;
}

.navbar>.center-bar>span.active {
    color: #ffffff;
    background-color: #222222;
    border-radius: 1vh;
    padding: 1vh 1.5vh;
    font-size: 1.5vh;
}

.navbar>.center-bar>span:hover {
    color: #ffffff;
    background-color: #FF7B25;
    border-radius: 5vh;
    padding: 1vh 1.5vh;
    font-size: 1.75vh;
}

.navbar>.center-bar>span:hover:not(.active) {
    animation: glowNavBar 0.5s ease-in-out infinite alternate;
}

.navbar>.right-bar {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5ch;
}

.navbar>.right-bar>.profile-bg {
    background-color: rgba(0, 0, 0, 0);
    border-radius: 2.5vh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 20vh;
    gap: 1vh;
    transition: all 0.3s ease-in-out;
    height: auto;
    overflow: hidden;
}

.navbar>.right-bar>.profile-bg>.profile {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    gap: 0.5vh;
    background: #000000;
    border-radius: 4vh;
    padding: 1ch 1vh;
    border: 0.5vh solid rgba(27, 27, 27, 1);
    transition: all 0.3s ease-in-out;
}

.navbar>.right-bar>.profile-bg>.profile>img {
    width: 2.5vh;
    border-radius: 2vw;
    border: 1px solid rgba(58, 58, 58, 1);
    transition: all 0.3s ease-in-out;
}

.navbar>.right-bar>.profile-bg>.profile>span {
    color: #fff;
    font-size: 1.5vh;
    transition: all 0.3s ease-in-out;
}

.navbar>.right-bar>.profile-bg>.profile>.clan {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5vh;
    padding: 0.2ch 0.7ch;
    border-radius: 0.5vh;
    background-color: rgba(27, 27, 27, 0.5);
    transition: all 0.3s ease-in-out;
}

.navbar>.right-bar>.profile-bg>.profile>.clan>img {
    width: 1.5vh;
    transition: all 0.3s ease-in-out;
}

.navbar>.right-bar>.profile-bg>.profile>.clan>span {
    color: rgba(150, 150, 150, 1);
    font-size: 1.5vh;
}

.navbar>.right-bar>.profile-bg>.profile>i {
    font-weight: 900;
    color: #fff;
    font-size: 1.5vh;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.navbar>.right-bar>.profile-bg>.dropdown {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1vh;
    padding: 1vh 2vh;
    border-radius: 1vh;
    transition: all 0.3s ease-in-out;
}

.navbar>.right-bar>.profile-bg>.dropdown>.dropdown-item {
    padding: 0.5vh 2vh;
    width: 18vh;
    font-size: 1.3vh;
    background-color: rgba(7, 7, 7, 1);
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    display: flex;
    align-items: center;
    border-radius: 1vh;
    justify-content: space-between;
    gap: 0.5vh;
    transition: all 0.3s ease-in-out;
}

.navbar>.right-bar>.profile-bg>.dropdown>.dropdown-item:hover {
    background-color: rgba(27, 27, 27, 1);
    color: rgba(255, 255, 255, 1);
}