/* Minification failed. Returning unminified contents.
(279,80): run-time error CSS1019: Unexpected token, found '.'
(279,80): run-time error CSS1042: Expected function, found '.'
(279,80): run-time error CSS1062: Expected semicolon or closing curly-brace, found '.'
 */
body {
    scroll-behavior: smooth;
}

.top-bar {
    position: absolute;
}


.top-bar-product {
    position: fixed;
}

    .top-bar-product .top-product-logo {
        height: 60px;
        width: 160px;
        text-align: left;
        padding: 12px 0px;
    }

        .top-bar-product .top-product-logo > img {
            width: 100%;
        }

    .top-bar-product .top-product-name {
        color: transparent;
        height: 60px;
        width: 250px;
        overflow: hidden;
        font-size: 25px;
        text-align: left;
        padding: 12px 0px;
        font-weight: bold;
        font-family: 'Roboto Condensed', sans-serif;
        text-transform: uppercase;
        background-image: linear-gradient(#111,#555, #fff,#555, #111);
        -webkit-background-clip: text;
    }

.small-top-bar-product {
    position: fixed;
    top: 70px;
    left: 0px;
    right: 0px;
    padding: 10px;
    background-color: rgba(22, 65, 148, 0.95);
    z-index: 100;
    display: none;
}

    .small-top-bar-product a {
        padding: 5px 15px;
        background-color: transparent;
        color: #fff;
        font-size: 12px;
        display: block;
        text-align: right;
        text-transform: uppercase;
    }

        .small-top-bar-product a:focus {
            border-bottom: 2px solid #dd5656;
            text-decoration: none;
        }

.product-main {
    width: 100%;
}

    .product-main > .top-banner-context {
        width: 100%;
        height: 550px;
        position: relative;
        overflow: hidden;
    }

        .product-main > .top-banner-context > .top-banner {
            width: 100%;
            height: 100%;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            display: table;
            position: absolute;
        }

        .product-main > .top-banner-context > .active {
            animation: topactive 7s ease;
            left: 0;
        }

        .product-main > .top-banner-context > .inactive {
            animation: topinactive 7s ease;
            left: -100%;
        }

        .product-main > .top-banner-context > .active2 {
            animation: topactive2 7s ease;
            left: 0px;
        }

        .product-main > .top-banner-context > .inactive2 {
            animation: topinactive2 7s ease;
            left: 100%;
        }

@keyframes topactive {
    0% {
        display: table;
        left: 100%;
    }

    20% {
        left: 0px;
    }
}

@keyframes topinactive {
    0% {
        left: 0px;
    }

    20% {
        left: -100%;
        display: none;
    }
}



@keyframes topactive2 {
    0% {
        display: table;
        left: -100%;
        right: 100%;
    }

    20% {
        left: 0px;
        right: 0px;
    }
}

@keyframes topinactive2 {
    0% {
        left: 0px;
        right: 0px;
    }

    20% {
        left: 100%;
        right: unset;
        display: none;
    }
}


.product-main > .top-banner-context > .top-banner > .layer {
    width: 100%;
    height: 100%;
    display: table-cell;
    vertical-align: middle;
    text-align: left;
    font-weight: bold;
}

    .product-main > .top-banner-context > .top-banner > .layer > .text-context {
        width: 70%;
        margin-left: auto;
        margin-right: auto;
        position: absolute;
        top: 200px;
        border-left: 100px solid rgba(0, 0, 0, 0.0);
        text-shadow: 0px 3px 7px rgba(0, 0, 0, 0.2);
        filter: blur(8px);
        -webkit-filter: blur(8px);
        transform: scale(2);
        opacity: 0;
    }

    .product-main > .top-banner-context > .top-banner > .layer > .text-active {
        animation: texteffict 7s ease;
    }

    .product-main > .top-banner-context > .top-banner > .layer > .text-inactive {
        filter: blur(8px);
        -webkit-filter: blur(8px);
        transform: scale(2);
        opacity: 0;
        /*animation: texteffictout 7s ease;*/
    }

@keyframes texteffict {

    0% {
        filter: blur(8px);
        -webkit-filter: blur(8px);
        transform: scale(2);
        opacity: 0;
    }

    15% {
        filter: blur(8px);
        -webkit-filter: blur(8px);
        transform: scale(2);
        opacity: 0;
    }

    30% {
        filter: blur(0px);
        -webkit-filter: blur(0px);
        transform: scale(1);
        opacity: 1;
    }

    90% {
        filter: blur(0px);
        -webkit-filter: blur(0px);
        transform: scale(1);
        opacity: 1;
    }

    100% {
        filter: blur(8px);
        -webkit-filter: blur(8px);
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes texteffictout {

    0% {
        filter: blur(0px);
        -webkit-filter: blur(0px);
        transform: scale(1);
        opacity: 1;
    }

    15% {
        filter: blur(8px);
        -webkit-filter: blur(8px);
        transform: scale(2);
        opacity: 0;
    }
}

.product-main > .top-banner-context > .top-banner > .layer > .text-context > .title {
    font-size: 50px;
    color: #fff;
    text-shadow: 0px 3px 7px rgba(0, 0, 0, 0.2);
}

.product-main > .top-banner-context > .top-banner > .layer > .text-context > .details {
    font-size: 20px;
    color: #fff;
    font-weight: 300;
    font-family: 'Roboto', sans-serif;
    text-shadow: 0px 3px 7px rgba(0, 0, 0, 0.3);
}

.product-main > .top-banner-context > .next-button {
    padding: 15px 12px;
    background-color: rgba(0, 0, 0, 0.30);
    border: none;
    position: absolute;
    top: 45%;
    color: rgba(255, 255, 255, 0.40);
    outline: none;
}

    .product-main > .top-banner-context > .next-button:hover {
        background-color: rgba(0, 0, 0, 0.8);
        color: #fff;
    }

    .product-main > .top-banner-context > .next-button:focus {
        background-color: rgba(0, 0, 0, 0.8);
        background-image: linear-gradient(direction, color-stop1, color-stop2, ...);
        -webkit-animation: unset;
        -moz-animation: unset;
        animation: unset;
        color: #fff;
    }

.product-main > .top-banner-context > .button-left {
    left: 0px;
}

.product-main > .top-banner-context > .button-right {
    right: 0px;
}


.product-main > .view-3d {
    width: 100%;
    text-align: center;
    padding: 30px 10px;
}

    .product-main > .view-3d > .color-context {
        width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

        .product-main > .view-3d > .color-context > .title {
            font-size: 28px;
            font-family: 'Roboto Condensed', sans-serif;
            font-weight: bold;
        }

        .product-main > .view-3d > .color-context > .color-item {
            width: 30px;
            height: 30px;
            display: inline-block;
            box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.06);
            border: 1px solid #ebebeb;
            margin: 5px 5px;
            cursor: pointer;
            transition: all 300ms;
        }

            .product-main > .view-3d > .color-context > .color-item:hover {
                transform: scale(1.1);
                transition: all 300ms;
            }

        .product-main > .view-3d > .color-context > .color-name {
            font-size: 25px;
            font-family: 'Roboto Condensed', sans-serif;
            font-weight: bold;
        }

    .product-main > .view-3d > .img-3d-context {
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        position: relative;
    }

        .product-main > .view-3d > .img-3d-context > .img-3d {
            width: 100%;
        }

        .product-main > .view-3d > .img-3d-context > .img-3d-bike {
            height: 100%;
            max-height: 350px;
            width: auto;
        }

        .product-main > .view-3d > .img-3d-context > .loading {
            font-size: 16px;
            font-style: italic;
            font-weight: bold;
            color: #ff8d00;
        }

.product-main > .details-context {
    width: 100%;
    height: 510px;
    text-align: center;
    padding: 30px 0px;
}

    .product-main > .details-context > .mid-banner {
        width: 100%;
        height: 100%;
        position: relative;
        overflow: hidden;
    }

        .product-main > .details-context > .mid-banner > .image {
            width: 100%;
            height: 100%;
            position: absolute;
            left: 0;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }

        .product-main > .details-context > .mid-banner > .active {
            animation: midactive 7s ease;
            opacity: 1;
        }

        .product-main > .details-context > .mid-banner > .inactive {
            animation: midinactive 7s ease;
            opacity: 0;
        }

@keyframes midactive {
    0% {
        opacity: 0;
    }

    30% {
        opacity: 1;
    }
}

@keyframes midinactive {
    0% {
        opacity: 1;
    }

    30% {
        opacity: 0;
    }
}

.product-main > .details-context > .mid-banner > .image > .text-context {
    width: 50%;
    height: 100%;
    position: absolute;
    right: -50px;
    /*background-color: rgba(18, 51, 181, 0.50);*/
    background-image: linear-gradient(to right, rgba(18, 51, 181, 0.20),rgba(18, 51, 181, 0.50));
    text-align: left;
    padding: 70px 40px;
    overflow: hidden;
    transform: skewX(-10deg);
    z-index: 1;
    color: #fff;
    cursor: grab;
}

    .product-main > .details-context > .mid-banner > .image > .text-context > .text-body {
        filter: blur(0px);
        -webkit-filter: blur(0px);
        transform: scale(1);
        opacity: 1;
    }

    .product-main > .details-context > .mid-banner > .image > .text-context > .textactive {
        animation: midtextactive 7s ease;
    }

    .product-main > .details-context > .mid-banner > .image > .text-context > .textinactive {
        filter: blur(8px);
        -webkit-filter: blur(8px);
        transform: scale(2);
        opacity: 0;
        animation: midtextinactive 7s ease;
    }

@keyframes midtextactive {
    0% {
        filter: blur(8px);
        -webkit-filter: blur(8px);
        transform: scale(2);
        opacity: 0;
    }

    15% {
        filter: blur(8px);
        -webkit-filter: blur(8px);
        transform: scale(2);
        opacity: 0;
    }

    30% {
        filter: blur(0px);
        -webkit-filter: blur(0px);
        transform: scale(1);
        opacity: 1;
    }

    100% {
        filter: blur(0px);
        -webkit-filter: blur(0px);
        transform: scale(1);
        opacity: 1;
    }
    
    /*100% {
        filter: blur(8px);
        -webkit-filter: blur(8px);
        transform: scale(2);
        opacity: 0;
    }*/
}

@keyframes midtextinactive {
    0% {
        filter: blur(0px);
        -webkit-filter: blur(0px);
        transform: scale(1);
        opacity: 1;
    }

    15% {
        filter: blur(8px);
        -webkit-filter: blur(8px);
        transform: scale(2);
        opacity: 0;
    }
}

.product-main > .details-context > .mid-banner > .image > .text-context > .text-body > .title {
    transform: skewX(10deg);
    font-size: 40px;
    font-weight: bold;
    font-family: 'Roboto Condensed', sans-serif;
    line-height: 35px;
    padding-bottom: 10px;
    padding-right: 50px;
}

.product-main > .details-context > .mid-banner > .image > .text-context > .text-body > .details {
    transform: skewX(10deg);
    font-size: 16px;
    padding-right: 50px;
    padding-left: 10px;
    font-family: 'Roboto', sans-serif;
}

.product-main > .details-context > .next-per-button {
    background-color: #fff;
    color: #f13c3c;
    border: none;
    outline: none;
}

.product-main > .details-context > .next-per-button {
    background-color: #eee;
    color: #818181;
    display: inline-block;
    padding: 5px 10px;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    margin-top: 10px;
    cursor: pointer;
}

    .product-main > .details-context > .next-per-button:hover {
        background-color: #f13c3c;
        color: #fff;
    }

.product-main > .feature-context {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 50px 10px;
}

    .product-main > .feature-context > .feature-body {
        width: 100%;
        display: flex;
    }

    .product-main > .feature-context > .product-name {
        font-size: 50px;
        font-weight: bold;
        font-family: 'Roboto Condensed', sans-serif;
        text-transform: uppercase;
        color: #444444;
        clear: both;
        padding-bottom: 20px;
    }

    .product-main > .feature-context > .feature-body > .feature-left {
        flex: 25;
        color: #808080;
    }

        .product-main > .feature-context > .feature-body > .feature-left > button {
            display: block;
            width: 100%;
            background-color: transparent;
            border-style: none;
            text-align: left;
            font-family: 'Roboto', sans-serif;
            color: #000000;
            font-size: 20px;
            text-transform: uppercase;
            outline: none;
            transition: all 300ms;
        }

            .product-main > .feature-context > .feature-body > .feature-left > button:hover, button:focus {
                background-color: #f13c3c;
                color: #fff;
                font-weight: bold;
                background-image: unset;
                text-shadow: 0px 3px 4px rgba(0, 0, 0, 0.2);
                transition: all 300ms;
            }

        .product-main > .feature-context > .feature-body > .feature-left > .active {
            background-color: #f13c3c;
            color: #fff;
            font-weight: bold;
            text-shadow: 0px 3px 4px rgba(0, 0, 0, 0.2);
            transition: all 300ms;
        }

        .product-main > .feature-context > .feature-body > .feature-left > button i {
            float: right;
            font-weight: normal !important;
            font-size: 14px;
            padding-top: 5px;
            display: none;
            color: #aaa;
        }

        .product-main > .feature-context > .feature-body > .feature-left > button:hover i {
            color: #eee;
        }

        .product-main > .feature-context > .feature-body > .feature-left > .active i {
            color: #eee;
        }

    .product-main > .feature-context > .feature-body .feature-right {
        flex: 75;
    }

        .product-main > .feature-context > .feature-body .feature-right table {
            width: 100%;
            min-width: 500px;
        }

            .product-main > .feature-context > .feature-body .feature-right table th {
                text-align: center;
                color: #000000;
                padding-bottom: 15px;
            }

            .product-main > .feature-context > .feature-body .feature-right table td {
                border: 1px solid #ebebeb;
                text-align: center;
                font-size: 12px;
                color: #646464;
                font-weight: 400;
                font-family: 'Roboto', sans-serif;
                padding: 10px;
            }

                .product-main > .feature-context > .feature-body .feature-right table td > .title {
                    font-size: 13px;
                    font-weight: bold;
                    padding-bottom: 10px;
                    color: #000000;
                    min-width: 100px;
                }

.product-main .test-drive-main {
    padding: 15px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

    .product-main .test-drive-main > .title {
        font-size: 30px;
        text-align: center;
        font-family: 'Roboto Condensed', sans-serif;
        font-weight: bold;
    }

.product-main .input-group > .input-group-addon {
    width: 150px;
    text-align: left;
    background-color: #fff;
    border: 0px;
    border-bottom: 1px solid rgba(204, 204, 204, 0.50);
}

.product-main .input-group > .form-control {
    font-size: 16px;
    padding: 10px;
    height: 40px !important;
    height: auto;
    border: 0px;
    border-bottom: 1px solid rgba(204, 204, 204, 0.50);
    outline: none;
    box-shadow: none;
    resize: none;
}

.product-main .input-group > .textarea {
    height: 130px !important;
}

.product-main .button-context {
    text-align: right;
}

    .product-main .button-context > .button {
        border-style: none;
        background-color: #006B64;
        color: #fff;
        padding: 10px 15px;
    }

        .product-main .button-context > .button:hover {
            background-color: #1d8982;
            box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.06);
        }

    .product-main .button-context > .button-red {
        border-style: none;
        background-color: #f5684f;
        color: #fff;
        padding: 10px 15px;
    }

        .product-main .button-context > .button-red:hover {
            background-color: #f83a18;
            box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.06);
        }

.product-main > .test-drive {
    height: 33px;
    width: 110px;
    border-top-left-radius: 3px;
    padding: 7px;
    background-color: #00803e;
    box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.06);
    color: #fff;
    position: fixed;
    top: 50%;
    right: -75px;
    margin-top: -25px;
    z-index: 10;
    text-align: left;
    font-size: 14px;
    font-family: 'Roboto Condensed', sans-serif;
    cursor: pointer;
    transition: all 500ms;
}

    .product-main > .test-drive:hover {
        right: 0px;
        transition: all 500ms;
    }

    .product-main > .test-drive > a {
        color: #fff;
        text-decoration: none;
    }

    .product-main > .test-drive span {
        padding: 5px;
    }

    .product-main > .test-drive > img {
        height: 20px;
        padding-right: 5px;
    }

    .product-main > .test-drive > i {
        font-size: 17px;
        width: 25px;
        padding-left: 2px;
    }

.product-main > .test-drive-message {
    margin-top: 9px;
    border-top-left-radius: 0px;
}

.product-main > .test-drive-call {
    margin-top: 43px;
    border-top-left-radius: 0px;
    width: 130px;
    right: -95px;
}

.product-main > .test-drive-brochure {
    margin-top: 77px;
    border-top-left-radius: 0px;
}


@media (max-width:991px) {

    .product-main > .top-banner-context > .top-banner > .layer > .text-context {
        top: 150px;
    }

    .product-main > .details-context {
        height: 450px;
    }

        .product-main > .details-context > .mid-banner > .image > .text-context {
            padding: 40px 30px;
        }

            .product-main > .details-context > .mid-banner > .image > .text-context > .text-body > .title {
                font-size: 30px;
                line-height: 30px;
            }

            .product-main > .details-context > .mid-banner > .image > .text-context > .text-body > .details {
                font-size: 14px;
            }
}

@media (max-width:767px) {

    .top-bar-product .top-product-logo {
        height: 40px;
        padding: 5px 0px;
    }

        .top-bar-product .top-product-logo > img {
            width: auto;
            height: 30px;
        }

    .top-bar-product .top-product-name {
        height: 40px;
        width: 200px;
        font-size: 20px;
        padding: 2px 0px;
    }

    #td_top_bar_product_main {
        display: none !important;
    }

    #td_top_bar_product_small {
        display: inherit !important;
        text-align: right;
        float: right;
        font-size: 20px;
        padding: 0px 8px;
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.00);
        margin-right: 3px;
    }

        #td_top_bar_product_small:hover {
            border: 1px solid #fff;
            border-radius: 4px;
        }

    .product-main > .top-banner-context > .top-banner > .layer > .text-context {
        top: 250px;
        border-left: 50px solid rgba(0, 0, 0, 0.0);
    }

        .product-main > .top-banner-context > .top-banner > .layer > .text-context > .title {
            font-size: 35px;
        }

        .product-main > .top-banner-context > .top-banner > .layer > .text-context > .details {
            font-size: 16px;
        }


    .product-main > .view-3d > .color-context > .title {
        font-size: 20px;
    }

    .product-main > .view-3d > .color-context > .color-item {
        width: 25px;
        height: 25px;
    }

    .product-main > .view-3d > .color-context > .color-name {
        font-size: 20px;
    }

    .product-main > .details-context {
        height: 400px;
    }

        .product-main > .details-context > .mid-banner > .image > .text-context {
            width: 70%;
            padding: 40px 20px;
        }

            .product-main > .details-context > .mid-banner > .image > .text-context > .text-body > .title {
                font-size: 22px;
                line-height: 25px;
            }

            .product-main > .details-context > .mid-banner > .image > .text-context > .text-body > .details {
                font-size: 13px;
            }

    .product-main > .feature-context > .feature-body {
        display: unset;
    }

    .product-main > .feature-context > .product-name {
        font-size: 40px;
    }

    .product-main > .feature-context > .feature-body > .feature-left {
        flex: unset;
        width: 100%;
    }

        .product-main > .feature-context > .feature-body > .feature-left > button {
            display: unset;
            width: 100%;
            color: #000000;
            font-size: 14px;
            padding: 7px;
            background-color: #eee;
            border: 1px solid #ebebeb;
            margin-bottom: 7px;
        }

            .product-main > .feature-context > .feature-body > .feature-left > button:hover {
                color: #fff;
                background-color: #f13c3c;
            }

        .product-main > .feature-context > .feature-body > .feature-left > .active {
            color: #fff;
            background-color: #f13c3c;
        }

        .product-main > .feature-context > .feature-body > .feature-left > button i {
            display: unset;
        }

    .product-main > .feature-context > .feature-body .feature-right {
        flex: unset;
        width: 100%;
        overflow: auto;
        display: none;
    }

    .product-main > .feature-context > .feature-body > .feature-left .feature-right {
        display: inherit;
        margin-bottom: 15px;
    }

    .product-main > .feature-context > .feature-body .feature-right table th {
        padding-top: 10px;
        padding-bottom: 5px;
    }

    .product-main .test-drive-main > .title {
        font-size: 20px;
        padding-bottom: 25px;
    }

    .product-main .input-group > .input-group-addon {
        width: 100px;
        font-size: 12px;
        padding: 5px 15px;
        height: 30px !important;
        padding-left: 0px;
    }

    .product-main .input-group > .form-control {
        font-size: 12px;
        padding: 5px 15px;
        height: 30px !important;
    }

    .product-main .input-group > .textarea {
        height: 100px !important;
    }

    .product-main > .test-drive-call {
        display: none;
    }

    .product-main > .test-drive-brochure {
        margin-top: 43px;
    }

    .product-main > .view-3d > .img-3d-context > .img-3d-bike {
        max-height: 300px;
    }
}

@media (max-width:600px) {
    
    .product-main > .view-3d > .color-context > .title {
        font-size: 18px;
    }

    .product-main > .view-3d > .color-context > .color-item {
        width: 20px;
        height: 20px;
    }

    .product-main > .view-3d > .color-context > .color-name {
        font-size: 18px;
    }

    .product-main > .details-context {
        height: 350px;
    }


        .product-main > .details-context > .mid-banner > .image > .text-context {
            padding: 30px 10px;
        }

            .product-main > .details-context > .mid-banner > .image > .text-context > .text-body > .title {
                font-size: 18px;
                line-height: 20px;
            }

            .product-main > .details-context > .mid-banner > .image > .text-context > .text-body > .details {
                font-size: 12px;
            }

    .product-main > .feature-context > .product-name {
        font-size: 30px;
    }

    .product-main > .feature-context > .feature-body .feature-right table th {
        font-size: 13px;
    }

    .product-main > .feature-context > .feature-body .feature-right table td {
        font-size: 11px;
        padding: 5px;
    }

        .product-main > .feature-context > .feature-body .feature-right table td > .title {
            font-size: 12px;
            font-weight: bold;
            min-width: 80px;
        }

    .product-main > .view-3d > .img-3d-context > .img-3d-bike {
        max-height: 250px;
    }
}

@media (max-width:500px) {
    .product-main > .top-banner-context > .top-banner > .layer > .text-context {
        top: 200px;
        border-left: 40px solid rgba(0, 0, 0, 0.0);
    }

        .product-main > .top-banner-context > .top-banner > .layer > .text-context > .title {
            font-size: 30px;
        }

        .product-main > .top-banner-context > .top-banner > .layer > .text-context > .details {
            font-size: 14px;
        }

    .product-main > .details-context {
        height: 300px;
    }

        .product-main > .details-context > .mid-banner > .image > .text-context {
            padding: 20px 10px;
        }

            .product-main > .details-context > .mid-banner > .image > .text-context > .text-body > .title {
                font-size: 16px;
                line-height: 18px;
            }

            .product-main > .details-context > .mid-banner > .image > .text-context > .text-body > .details {
                font-size: 11px;
            }

    .product-main > .feature-context > .product-name {
        font-size: 25px;
    }

    .product-main > .feature-context > .feature-body .feature-right table th {
        font-size: 11px;
        padding-top: 15px;
    }

    .product-main > .feature-context > .feature-body .feature-right table td {
        font-size: 10px;
    }

        .product-main > .feature-context > .feature-body .feature-right table td > .title {
            font-size: 11px;
            min-width: 80px;
        }

    .product-main > .view-3d > .img-3d-context > .img-3d-bike {
        max-height: 200px;
    }
}

@media (max-width:400px) {
    .product-main > .top-banner-context > .top-banner > .layer > .text-context {
        top: 150px;
        border-left: 20px solid rgba(0, 0, 0, 0.0);
    }

        .product-main > .top-banner-context > .top-banner > .layer > .text-context > .title {
            font-size: 22px;
        }

        .product-main > .top-banner-context > .top-banner > .layer > .text-context > .details {
            font-size: 13px;
        }

    .product-main > .feature-context > .product-name {
        font-size: 20px;
    }

    .product-main > .view-3d > .img-3d-context > .img-3d-bike {
        max-height: 180px;
    }
}

.product-list {
    width: 100%;
    padding: 50px;
    text-align: center;
}

    .product-list > .head {
        font-family: 'Roboto Condensed',sans-serif;
        font-size: 40px;
        font-weight: bold;
        color: #888;
        text-decoration: underline;
    }

    .product-list > .product-item {
        width: 25%;
        padding: 10px;
        position: relative;
        float: left;
    }

        .product-list > .product-item > .item-body {
            width: 100%;
            text-align: center;
            cursor: pointer;
            padding: 5px 5px;
        }

            .product-list > .product-item > .item-body:hover {
                background-color: #f5f5f5;
            }

            .product-list > .product-item > .item-body > .text-context {
                height: 30px;
                overflow: hidden;
            }

                .product-list > .product-item > .item-body > .text-context > .item-name {
                    width: 100%;
                    font-size: 20px;
                    font-weight: bold;
                    overflow: hidden;
                    margin-bottom: 5px;
                    text-transform: uppercase;
                    color: #333;
                    font-family: 'Roboto',sans-serif;
                }

            .product-list > .product-item > .item-body > .item-image-context {
                width: 100%;
                height: 150px;
                transition: all 1s;
                position: relative;
                overflow: hidden;
            }

            .product-list > .product-item > .item-body > .bike {
                height: 250px;
            }

            .product-list > .product-item > .item-body > .item-image-context > .item-image {
                width: 100%;
                height: 100%;
                position: absolute;
                left: 0%;
                background-position: top;
                background-size: contain;
                background-repeat: no-repeat;
                transition: all 1s;
            }

            .product-list > .product-item > .item-body > .item-image-context > .item-image2 {
                width: 100%;
                height: 100%;
                left: 100%;
                position: absolute;
                background-position: center;
                background-size: contain;
                background-repeat: no-repeat;
                transition: all 1s;
            }

            .product-list > .product-item > .item-body:hover .item-image {
                right: 100%;
                left: -100%;
                transition: all 1s;
            }

            .product-list > .product-item > .item-body:hover .item-image2 {
                left: 0%;
                transition: all 1s;
            }

    .product-list > button {
        padding: 7px 15px;
        background-color: #f26565;
        font-size: 16px;
        color: #fff;
        border: 0px;
        outline: none;
    }

        .product-list > button:hover, button:focus {
            background-color: #f13c3c;
            box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.1);
            background-color: #f13c3c;
            background: linear-gradient(221deg, #f13c3c, #f13c3c, #f13c3c, rgba(255, 255, 255, 1.00), #f13c3c, #f13c3c, rgba(255, 255, 255, 1.00), #f13c3c, #f13c3c, #f13c3c);
            background-size: 800% 800%;
            -webkit-animation: animation 10s ease infinite;
            -moz-animation: animation 10s ease infinite;
            animation: animation 10s ease infinite;
        }

        .product-list > button > i {
            font-size: 14px;
        }


@media (max-width:991px) {
    .product-list > .product-item {
        padding: 20px;
    }
}

@media (max-width:767px) {
    .product-list {
        padding: 20px 10px;
    }

        .product-list > .head {
            font-size: 30px;
        }

    .product-context > .product-item {
        width: 50%;
        padding: 5px;
    }
}

@media (max-width:550px) {
    .product-list {
        padding: 20px 0px;
    }

        .product-list > .head {
            font-size: 25px;
            margin-top: 30px;
        }

        .product-list > .product-item {
            width: 50%;
            padding: 5px;
        }

            .product-list > .product-item > .item-body > .text-context {
                height: 20px;
            }

                .product-list > .product-item > .item-body > .text-context > .item-name {
                    font-size: 14px;
                }

            .product-list > .product-item > .item-body > .item-image-context {
                height: 100px;
            }

            .product-list > .product-item > .item-body > .bike {
                height: 200px;
                background-size: contain;
            }
}

@media (max-width:400px) {
    .product-list > .product-item > .item-body > .item-image-context {
        height: 70px;
    }

    .product-list > .product-item > .item-body > .bike {
        height: 150px;
    }
}

