.tab-slider--nav {
    width: 100%;
    display: inline-block;
    margin-bottom: 20px;
}
.tab-slider--tabs {
    display: inline-block;
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
    border-radius: 35px;
    overflow: hidden;
    background: whitesmoke;
    height: 35px;
    user-select: none;
}
.tab-slider--tabs:after {
    content: "";
    width: 45%;
    background: #fdd55e;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 250ms ease-in-out;
    border-radius: 35px;
}
.tab-slider--tabs.slide:after {
    left: 50%;
}
.tab-slider--trigger {
    font-size: 20px;
    line-height: 1;
    font-weight: bold;
    color: #000000;
    /* text-transform: uppercase; */
    text-align: center;
    padding: 8px 40px;
    position: relative;
    z-index: 2;
    cursor: pointer;
    display: inline-block;
    transition: color 250ms ease-in-out;
    user-select: none;
}
.tab-slider--trigger.active {
    color: #ffff;
}
.tab-slider--body {
    margin-bottom: 20px;
}

@media only screen and (max-width: 360px) {
    .tab-slider--trigger {
        font-size: 12px;
        line-height: 1;
        font-weight: bold;
        color: #000000;
        /* text-transform: uppercase; */
        text-align: center;
        padding: 8px 15px;
        position: relative;
        z-index: 2;
        cursor: pointer;
        display: inline-block;
        transition: color 250ms ease-in-out;
        user-select: none;
    }

    .tab-slider--tabs:after {
        content: "";
        width: 48%;
        background: #fdd55e;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        transition: all 250ms ease-in-out;
        border-radius: 35px;
    }
}

@media only screen and (max-width: 480px) {
    .tab-slider--trigger {
        font-size: 12px;
        line-height: 1;
        font-weight: bold;
        color: #000000;
        /* text-transform: uppercase; */
        text-align: center;
        padding: 8px 15px;
        position: relative;
        z-index: 2;
        cursor: pointer;
        display: inline-block;
        transition: color 250ms ease-in-out;
        user-select: none;
    }
    .tab-slider--tabs:after {
        content: "";
        width: 48%;
        background: #fdd55e;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        transition: all 250ms ease-in-out;
        border-radius: 35px;
    }
}

@media only screen and (max-width: 640px) {
    .tab-slider--trigger {
        font-size: 12px;
        line-height: 1;
        font-weight: bold;
        color: #000000;
        /* text-transform: uppercase; */
        text-align: center;
        padding: 8px 15px;
        position: relative;
        z-index: 2;
        cursor: pointer;
        display: inline-block;
        transition: color 250ms ease-in-out;

        user-select: none;
    }
    .tab-slider--tabs:after {
        content: "";
        width: 48%;
        background: #fdd55e;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        transition: all 250ms ease-in-out;
        border-radius: 35px;
    }
}
@media only screen and (max-width: 960px) {
    .tab-slider--trigger {
        font-size: 12px;
        line-height: 1;
        font-weight: bold;
        color: #000000;
        /* text-transform: uppercase; */
        text-align: center;
        padding: 8px 17px;
        position: relative;
        z-index: 2;
        cursor: pointer;
        display: inline-block;
        transition: color 250ms ease-in-out;
        user-select: none;
    }
    .tab-slider--tabs:after {
        content: "";
        width: 48%;
        background: #fdd55e;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        transition: all 250ms ease-in-out;
        border-radius: 35px;
    }
}
