.wpim_group{
    &:after{
        @extend %clearfix;
    }
    .group_nav{
        &{
            padding: 0 15px;
            margin: 0;
            list-style: none;
            background-color: $primary_color;
        }
        li{
            &{
                margin: 0;
                float: left;
            }
            a{
                &{
                    box-sizing: border-box;
                    display: block;
                    text-transform: none;
                    border: 1px solid transparent;
                    font-size: 14px;
                    font-weight: 400;
                    line-height: 1;
                    background: 0 0;
                    color: inherit;
                    text-decoration: none;
                    font-family: inherit;
                    padding: 14px 20px;
                    margin: 0;
                    outline: 0!important;
                    box-shadow: none!important;
                    transition-property: color,background,border;
                    transition-duration: .2s;
                    transition-timing-function: ease-in-out;
                    border-radius: 5px 5px 0 0;
                    white-space: nowrap;
                    cursor: pointer;
                    user-select: none;
                    text-align: left;
                    margin-right: 1px;
                    color: #fff;
                    &:hover{
                        background-color: rgba(0,0,0,.3);
                    }
                }
                &.active{
                    background-color: #fff;
                    color: #5e5e5e;
                    cursor: default;
                }
            }
        }
        &:after{
            @extend %clearfix;
        }
    }
    .group_panel{
        &{
            padding: 15px;
            height: 400px;
            overflow: scroll;
        }
        .group_item{
            &{
                display: none;
                background-color: transparent;
            }
            &.active{
                display: block;
            }
        }
    }
}
