/* BASIC css start */
.tabs {
    width: 1000px;
    z-index: 50;
    position: sticky;
    position: -webkit-sticky;
    top: 61px;
}

.tabs:after {
    content: "";
    width: 1000px;
    padding-top: 85px;
    display: block;
    background: linear-gradient(to top,rgba(255,255,255,0) 0,#fff 50%);
}
.tabs ul {
    width: 1000px;
    height: 34px;

}
.tabs ul li {
    float: left;
    margin-right: -1px;
    margin-bottom: -1px;
}
.tabs ul li a {
    display: inline-grid;
    line-height: 36px;
    font-size: 14px;
    letter-spacing: -0.5px;
    padding: 0 18px;
    text-decoration: none;
    border: solid #E9E9E9;
    border-width: 1px;
    border-bottom-color: #DDD;
    color: #333;
    background-color: #fff;
    -webkit-border-radius: 30px;
    margin: 0px 0px 10px 5px;
    justify-content: center;
    align-items: center;
}

.tabs ul li:first-child {margin-left:0px;}

.tabs ul li a:hover, .tabs ul li a:focus {
    position: relative;
    color: #ff0038;
    border-color: #ff0038;
}
.tabs ul li a.on {
    position: relative;
    background: #ff0038;
    border-color: #ff0038;
    color: #fff;
}

/* BASIC css end */

