.switcher-box {}

.switcher-btns {
    position: relative;
    display: inline-flex;
    align-items: flex-start;
    justify-content: flex-start;
    height: 42px;
    border: 1px solid #a0ff57;
    margin-bottom: 32px;
    border-radius: 20px;
    background: #1e242e;
    padding: 0 0;
}

.switcher-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    width: calc(50% + 2px);
    background: #abff4a;
    border-radius: 20px;
    z-index: 0;
    transition: left 0.3s ease;
}

.switcher-btns .switcher-btn:first-of-type.active ~ .switcher-bg {
    left: -1px;
}

.switcher-btns .switcher-btn:last-of-type.active ~ .switcher-bg {
    left: calc(50% - 1px);
}

.switcher-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: transparent;
    text-align: center;
    color: #ffffff;
    height: 100%;
    cursor: pointer;
    z-index: 1;
    border: none;
    transition: color 0.3s ease, padding 0.3s ease;
    padding: 0 30px;
}
.switcher-btn:focus {
    color: #ffffff;
}
.switcher-btn:hover {
    color: #abff4a;
}
.switcher-btn:first-of-type:not(.active){
    margin-right: -15px;
}
.switcher-btn:last-of-type:not(.active){
    margin-left: -15px;
}
.switcher-btn.active {
    color: #1e242e;
    cursor: auto;
    z-index: 2;
}
.switcher-btn.active {
    color: #1e242e;
}
.switcher-content {}