.overview{
    display: flex;
    position: fixed;
    z-index: 20;
    cursor: pointer;

    transition: top 200ms ease 0s, left 200ms ease 0s;
}

.overviewRing{
    display: none;
    width: 35px;
    height: 35px;
    border-width: 6px;
}

.ringOverviewCircleGroup{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;

    zoom: var(--zoom-value);
}

.overviewCircle{
    display: flex;
    justify-content: center;
    position: fixed;
    z-index: 20;
    width: 35px;
    height: 35px;
    border-radius: 20px;
    background-color: #0000008a;
    border-width: thick;
    border: solid;
    border-color: #ffffff;
    color: #ffffff;
    font-size: 18px;
    line-height: 35px;
    font-weight: 500;
    text-align: center;
}

.overviewCircle:hover {
    outline: solid white;
    outline-width: 2px;
}

.overviewCircle:hover .overviewInfo{
    display: none;
}

.overviewCircle:hover .overviewInfoExpended{
    display: block;
}

.infoIcon{
    height: 10px;
    padding: 0 1.5px;
}

.overviewText{
    color: white;
    width: 209px;
    font-size: 13px;
    font-weight: 500;
    margin-left: 7px;
    text-shadow: 3px 1px 5px black;
    height: 38px;
    display: grid;
    align-content: center;

    zoom: var(--zoom-value);
}

.overviewInfo{
    display: flex;
    position: fixed;
    margin-top: 42px;
    background-color: #000000b0;
    border-radius: 30px;
    color: white;
    font-size: 11px;
    padding: 3px 5px;
    line-height: normal;
    align-items: center;
}

.overviewInfoExpended{
    display: none;

    position: fixed;
    margin-top: 42px;

    color: white;
    font-size: 11px;
    line-height: normal;

    max-width: 253px;
}

.overviewExtendedInfoBox{
    background-color: #000000b0;
    border-radius: 12px;
    padding: 6px 11px;
    text-align: center;
    font-size: 11px;
    font-weight: 400;
    margin-top: 6px;
}

.overviewExtendedIcons{
    background-color: #000000b0;
    border-radius: 30px;
    padding: 3px 5px;
    font-weight: 400;
    /* display: initial; */
}

.overviewUI{
    position: absolute;
    display: block;
    top: 0;
    z-index: 15;
    margin: 30px 0 0 40px;
    width: 445px;
    color: white;
}

.oLeftSideUI{
    zoom: var(--zoom-value);
    margin-top: 70px;
}

.topMenu{

}

.o_img{
    height: 25px;
}

.oInfoBubbles{
    display: inline-flex;
    font-size: 9px;
}

.oInfoBubble{
    background-color: #00000080;
    border-radius: 20px;
    padding: 5px 19px;
    margin-right: 5px;
}

.oTextGroup{
    
}

.oTextParent{
    display: flex;
    align-items: center;
}

.oIconParent{
    display: contents;
}

.oTitle{
    font-size: 43px;
    line-height: 50px;
    margin-top: 21px;
    padding-bottom: 11px;
    margin-right: 50px;
}

.oText{
    font-size: 11px;
    padding: 11px 0;
    padding-right: 36px;
    line-height: 15px;
}

.oLine{
    border-bottom: solid 2px rgba(255, 255, 255, 0.12);
}

.oLocalVoicesGroup{

}

.oLocalTitle{
    padding: 12px 0;
    font-size: 13px;
}

.oLocalVoices{

}

.oLocalVoiceGroup{
    display: flex;
}

.oLocalVoice{
    display: grid;
    grid-template-columns: 50px 200px;
    margin: 5px;
    filter: grayscale(1);
    pointer-events: none;
    cursor: pointer;
}

.oActive{
    filter: grayscale(0);
    pointer-events: all;
}

.oLocalVoiceImage{
    height: 45px;
}

.oLV_img{    
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 50%;
    border-width: 2px;
    border: solid white;
}

.oLocalVoiceGroup:hover .oLV_img{
    outline: solid white;
    outline-width: 2px;
}

.oLocalVoiceGroup:hover .oLocalVoiceTextGroup{
    text-decoration: underline;
}

.oLocalVoiceTextGroup{
    font-size: 11px;
    height: 43px;
    align-content: center;
    display: grid;
    margin-left: 7px;
    width: max-content;
}



.oLocalVoiceName{
    pointer-events: none;
}

.oLocalVoiceNameAlt{
    font-style: italic;
    pointer-events: none;
}

