#warrantyMenu {
    border-bottom: 1px solid #f1f1f1;
    margin: 0 0 24px 0;
    overflow: hidden;
    list-style: none;
    padding: 0;
}

#warrantyMenu li {
    margin-bottom: 24px;
    margin-right: 24px;
    float: left;
}

#warrantyMenu li:last-child {
    margin-right: 0;
}

#warrantyMenu li a {
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    font-size: 15px;
    color: #000000;
}

#warrantyMenu li a:active {
    position: relative;
    top: 1px;
}

#warrantyMenu li .selected {
    border-bottom: 1px dashed #000000;
    font-family: 'robotobold', serif;
    padding-bottom: 4px;
}

#warrantyMenu li .selected:hover {
    color: #000000;
}

.warranty-good-products {
    display: none;
}

.warranty-no-good-products {
    display: none;
}

@media all and (max-width: 1024px) {

    #warrantyMenuWrap {
        position: relative;
        min-width: 100%;
        overflow: hidden;
        overflow-x: auto;
        height: 40px;
    }

    #warrantyMenuWrap ul {
        white-space: nowrap;
        overflow: auto;
    }

    #warrantyMenu li {
        white-space: nowrap;
        float: none;
        display: inline-block;
        vertical-align: top;
        margin-right: 18px;
        margin-bottom: 18px;
    }

    #warrantyMenu::after {
        background: -moz-linear-gradient(left, rgba(255, 255, 255, 0.2), #ffffff 100%);
        background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.2), #ffffff 100%);
        background: -o-linear-gradient(left, rgba(255, 255, 255, 0.2), #ffffff 100%);
        background: -ms-linear-gradient(left, rgba(255, 255, 255, 0.2), #ffffff 100%);
        background: linear-gradient(to right, rgba(255, 255, 255, 0.2), #ffffff 100%);
        pointer-events: none;
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        content: '';
        width: 35px;
    }

}