.hex {
    position: relative;
    margin-top: 30px;
    margin-bottom: 30px;
}
.hex>.side{
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 104px;
    height: 60px;
    background: var(--theme-bg-figure,#181818);
    color: white;
    cursor: pointer;
    transition: all 0.2s;
}
.hex>.side>i{
    width: 50px;
    height: 50px;
    margin-top: 5px;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    filter: brightness(0) invert(1);
}
.hex>.side>span,
.hex>.side>i{
    z-index: 1;
    transition: all 0.2s;
}
.hex>.side:after,
.hex>.side:before{
    content: "";
    position: absolute;
    box-sizing: border-box;
    width: 104px;
    height: 60px;
    background: var(--theme-bg-figure,#181818);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.2s;
}
.hex>.side:before {
    transform: translate(-50%, -50%) rotate(240deg);
}
.hex>.side:after {
    transform: translate(-50%, -50%) rotate(120deg);
}
.hex>.side,
.hex>.side:before,
.hex>.side:after{
    border-left: 1px solid var(--theme-color-widget, #c81e1e);
    border-right: 1px solid var(--theme-color-widget, #c81e1e);
}
.hex>.side:hover,
.hex>.side:hover::before,
.hex>.side:hover::after {
    background: var(--theme-color-widget, #c81e1e);
    border-left: 2px solid var(--theme-color-main,#D60000);
    border-right: 2px solid var(--theme-color-main,#D60000);
}

.hex>.side:hover i{
    margin-top: 0px;
}
.hex-row {
    display: flex;
    align-items: center;
    justify-content: center;
}
.hex-row:not(.even){
    margin-bottom: -30px;
    margin-top: -30px;
}


.hex>.extra-hex[aria-label][role~="tooltip"]{
    position: absolute !important;
}

.hex>.extra-hex{
    /* display: none !important; */
    position: absolute !important;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: var(--theme-border-widget-active, #f0f0f0);
    top: -25px;
    left: -50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hex>.extra-hex>i {
    width: 75%;
    height: 75%;
    display: block;
    z-index: 1;
}
.hex>.extra-hex>i>svg {
    z-index: 1;
    margin: 0;
    width: 100%;
    height: 100%;
    fill: var(--theme-bg-figure,#181818);
}
.hex>.extra-hex>em.line{
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: var(--theme-border-widget-active, #f0f0f0);
    top: 50%;
    left: 50%;
    border-radius: 15px;
    transform: translate(0%, -50%);
}
.hex>.extra-hex>em.line::before{
    content: '';
    position: absolute;
    width: 28px;
    height: 3px;
    background-color: var(--theme-border-widget-active, #f0f0f0);
    top: 300%;
    left: 50%;
    border-radius: 15px;
    transform: translate(25%, 0%) rotate(45deg);
}
.hex>.extra-hex:hover{
    animation: pulse_border_widget_active 2.5s infinite linear;
}