#sidebartabs .tabs {
    display: flex;
    background: var(--secondary-color);
    border-radius: 10px 10px 0 0;
    margin: 0 auto;
    width: 100%;
    justify-content: space-around
}

#sidebartabs .tab {
    cursor: pointer;
    padding: 20px 10px;
    margin: 0 auto;
    display: inline-block;
    color: var(--color2);
    border-radius: 10px;
    transition: .2s;
    font-weight: 500
}

#sidebartabs .tab>.tabed {
    display: flex;
    font-size: 14px;
    gap: 5px
}

#sidebartabs .tab::after {
    content: '';
    width: 0%;
    height: 4px;
    top: 50px;
    left: 50%;
    opacity: 0;
    position: absolute;
    transform: translate(-50%,0px);
    background: var(--dc-color);
    border-radius: 3px;
    box-shadow: 0 10px 20px var(--hover-color);
    transition: all 0.2s linear
}

#sidebartabs .tab:hover::after {
    opacity: 1;
    width: 50%
}

#sidebartabs .tab i {
    font-size: 18px;
    font-weight: 500
}

#sidebartabs .panels {
    background: var(--secondary-color);
    min-height: 200px;
    border-radius: 0 0 10px 10px;
    margin-bottom: 50px;
    /* overflow:hidden; */
    padding: 0 10px
}

#sidebartabs .panel {
    display: none;
    animation: fadein .8s
}

@keyframes fadein {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

#sidebartabs .panel-title {
    font-size: 1.5em;
    font-weight: bold
}

#sidebartabs .radio {
    display: none
}

#one:checked ~ .panels #one-panel,#two:checked ~ .panels #two-panel,#three:checked ~ .panels #three-panel,#four:checked ~ .panels #four-panel {
    display: block
}

#one:checked ~ .tabs #one-tab,#two:checked ~ .tabs #two-tab,#three:checked ~ .tabs #three-tab,#four:checked ~ .tabs #four-tab {
    color: var(--dc-color);
    border-radius: 10px;
    font-weight: 700
}

.panel .tborder {
    background: var(--secondary-color)
}

@media screen and (max-width: 1880px) {
    #sidebartabs .tabs {
    }

    #sidebartabs .panels {
        border-radius: 0 0 10px 10px
    }

    #sidebartabs .tab span {
        display: none
    }

    #sidebartabs .tab i {
        font-size: 26px
    }
}

		