.global-voice-chat {
    position: relative;
    background-color: var(--c-boxes);
    color: var(--c-text);
    padding: 1em;

    display: flex;
    flex-direction: column;
}

.global-voice-chat .title-bar {
    margin: auto;
    font-size: 2em;
    margin-bottom: 0.5em;
}

.global-voice-chat .fa-circle {
    color: #ddd;
    text-shadow: 0 0 4px black;
}
.global-voice-chat .info{
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.info div:nth-child(2) {
    display: flex;
    align-items: center;
    gap: 0.7em;
}
.info button{
    margin: 0.5em auto;
    padding: 0.5em;
    border: none;
    border-radius: 50%;
    font: initial;
    font-size: 1.5em;
}
.info i{
    font-size: 1.8em;
    padding-right: 0.5em;
}
.global-voice-chat .controls{
    margin-top: 1em;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.controls button{
    border-radius: 50%;
    border: none;

    padding: 0.5em 0.55em;
    font: initial;
    font-size: 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
}
#global-disconnect-btn{
    padding: 0.5em 0.4em;
}

.active-call::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    transform: scale(1.2) translateZ(0);
    filter: blur(15px);
    background: rgb(33, 105, 42);
    background: -moz-linear-gradient(90deg, rgba(33, 105, 42, 1) 0%, rgba(120, 253, 29, 1) 50%, rgba(69, 252, 155, 1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(33, 105, 42, 1) 0%, rgba(120, 253, 29, 1) 50%, rgba(69, 252, 155, 1) 100%);
    background: linear-gradient(90deg, rgba(33, 105, 42, 1) 0%, rgba(120, 253, 29, 1) 50%, rgba(69, 252, 155, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#21692a", endColorstr="#45fc9b", GradientType=1);
    background-size: 100% 100%;
    animation: animateGlow 1.25s linear infinite;
}

@keyframes animateGlow {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

.global-voice-chat .online {
    color: #a9f634 !important;
}

.global-voice-chat .fa-phone {
    color: #008000;
}

.global-voice-chat .fa-phone-slash {
    color: #a80000;
}