@import url('//fonts.googleapis.com/css?family=Open+Sans');

.flexbox {
    box-sizing: border-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.col-xs {
    position: relative;
    min-height: 1px;
    padding-left: 5px;
    padding-right: 5px;
    float: left;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
}

.start-xs {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
}

.center-xs {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.end-xs {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
}

.top-xs {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.middle-xs {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.bottom-xs {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.around-xs {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.between-xs {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.first-xs {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
}

.last-xs {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
}

@media only screen and (min-width: 48em) {
    .col-sm {
        position: relative;
        min-height: 1px;
        padding-left: 5px;
        padding-right: 5px;
        float: left;
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        -webkit-flex-basis: 0;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        max-width: 100%;
    }

    .start-sm {
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        text-align: start;
    }

    .center-sm {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .end-sm {
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        text-align: end;
    }

    .top-sm {
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .middle-sm {
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .bottom-sm {
        -webkit-box-align: end;
        -webkit-align-items: flex-end;
        -ms-flex-align: end;
        align-items: flex-end;
    }

    .around-sm {
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }

    .between-sm {
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .first-sm {
        -webkit-box-ordinal-group: 0;
        -webkit-order: -1;
        -ms-flex-order: -1;
        order: -1;
    }

    .last-sm {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
    }
}

@media only screen and (min-width: 64em) {
    .col-md {
        position: relative;
        min-height: 1px;
        padding-left: 5px;
        padding-right: 5px;
        float: left;
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        -webkit-flex-basis: 0;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        max-width: 100%;
    }

    .start-md {
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        text-align: start;
    }

    .center-md {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .end-md {
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        text-align: end;
    }

    .top-md {
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .middle-md {
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .bottom-md {
        -webkit-box-align: end;
        -webkit-align-items: flex-end;
        -ms-flex-align: end;
        align-items: flex-end;
    }

    .around-md {
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }

    .between-md {
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .first-md {
        -webkit-box-ordinal-group: 0;
        -webkit-order: -1;
        -ms-flex-order: -1;
        order: -1;
    }

    .last-md {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
    }
}

@media only screen and (min-width: 75em) {
    .col-lg {
        position: relative;
        min-height: 1px;
        padding-left: 5px;
        padding-right: 5px;
        float: left;
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        -webkit-flex-basis: 0;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        max-width: 100%;
    }

    .start-lg {
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        text-align: start;
    }

    .center-lg {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .end-lg {
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        text-align: end;
    }

    .top-lg {
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .middle-lg {
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .bottom-lg {
        -webkit-box-align: end;
        -webkit-align-items: flex-end;
        -ms-flex-align: end;
        align-items: flex-end;
    }

    .around-lg {
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }

    .between-lg {
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .first-lg {
        -webkit-box-ordinal-group: 0;
        -webkit-order: -1;
        -ms-flex-order: -1;
        order: -1;
    }

    .last-lg {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
    }
}

.form-relative {
    margin-top: 0 !important;
}

body {
    background-color: #fff;
    background-image: none !important;
    font-size: 13px;
}

.container {
    background-color: inherit;
}

#top-menu-manager.new-top-menu {
    border-top: none;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
    z-index: 11;
}

    #top-menu-manager.new-top-menu #lang-mode {
        margin-bottom: 0;
    }

        #top-menu-manager.new-top-menu #lang-mode .container {
            padding-left: 5px;
            padding-right: 5px;
        }

#top-menu-manager .btn {
    font-size: 13px;
    padding: 5px 5px;
    font-weight: 300;
}

#lang-mode a {
    font-size: 13px;
    font-weight: 300;
}

.custom-badge-link {
    position: relative;
    top: -4px !important;
    padding: 2px 6px;
    font-size: 10px;
    line-height: 1.1;
    background-color: #c7c7c7;
    color: #333;
}

.divider_panel {
    position: relative;
    top: 1px;
}

#top-menu-manager .top-lang-new .dropdown .btn {
    font-size: 13px;
    background-color: #f5f5f5;
    color: #333;
}

#panel_before_login.custom_panel_before_login .btn-link i,
#panel_before_login.custom_panel_before_login .btn-link:hover {
    color: #0095da;
}

.link-top-cart {
    padding-right: 0 !important;
}

    .link-top-cart:after {
        content: "";
        display: inline-block;
        height: 12px;
        width: 1px;
        background-color: #B3B3B3;
        margin-left: 12px;
        margin-right: 2px;
        position: relative;
        top: 2px;
    }

    .link-top-cart .glyphicon-shopping-cart {
        color: #0095da;
    }

#top-menu-manager .top-lang-new:hover .dropdown .btn,
#top-menu-manager .top-lang-new .dropdown-menu > li > a:hover {
    background-color: #f5f5f5;
    color: #0095da;
}

.flag-container img {
    margin-top: -2px;
}

.wrap-header {
    background-color: #fff;
    position: relative;
    padding-top: 25px;
    padding-bottom: 25px;
    /* box-shadow: 2px 2px 6px rgba(51, 51, 51, .10); */
}

.custom-search > .row > [class*="col-"]:first-child {
    padding-right: 0;
}

    .custom-search > .row > [class*="col-"]:first-child .form-control {
        border-radius: 0;
        border-width: 1px;
        border-right-width: 0;
        border-color: #dcdcdc;
        height: 35px;
        line-height: 35px;
        background-color: rgba(0,0,0,0);
    }

.custom-search > .row > [class*="col-"]:last-child {
    padding-left: 0;
}

    .custom-search > .row > [class*="col-"]:last-child.btn-search .btn .glyphicon-search {
        display: none;
    }

    .custom-search > .row > [class*="col-"]:last-child.btn-search .btn {
        background-color: #34495e;
        border-color: #34495e;
        height: 35px;
        text-transform: uppercase;
        padding: 4px;
        text-align: center;
        font-weight: 300;
    }

        .custom-search > .row > [class*="col-"]:last-child.btn-search .btn:hover {
            background-color: #283848;
            border-color: #283848;
            color: #fff;
        }

.wrap-menu {
    position: relative;
    background-color: #34495e;
    box-shadow: 2px 2px 6px rgba(51, 51, 51, .20);
}

#dzone-dropdown-menu {
    background-color: transparent;
    float: right;
}

    #dzone-dropdown-menu.jm-menu > ul > li > a:before {
        display: none;
    }

    #dzone-dropdown-menu.jm-menu > ul > li > a {
        padding: 26px 15px;
        text-shadow: none;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #777;
        font-size: 13px;
    }

    #dzone-dropdown-menu.jm-menu > ul > li {
        margin-right: 0;
    }

    #dzone-dropdown-menu > ul > li.active > a {
        color: #333 !important;
    }

#bannerservices .slick-slider {
    margin-bottom: 0;
}

#bannerservices .jm-slick img {
    width: 100%;
    display: block;
    height: auto;
    max-width: 100%;
}

.wrap-short-company {
    background-color: #fff;
    position: relative;
    padding-left: 15px;
    padding-right: 15px;
}

.fm-short-company p {
    color: #777;
}

.wrap-short-company h1.media-heading {
    margin-bottom: 20px;
    color: #333;
}

.latest-promo.row-wrap {
    margin-left: -5px;
    margin-right: -5px;
}

.promo-product-container .thumbnail {
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
}

#relatedproduct .promo-product-container .thumbnail {
    border: 1px solid #ddd;
}

.product-holder.grid-view .thumbnail .product-desc,
.promo-product-container .thumbnail .product-desc {
    padding: 10px;
}

.promo-product-container .thumbnail:hover {
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.25), 0 0px 10px rgba(0, 0, 0, 0.22);
}

    .promo-product-container .thumbnail:hover a {
        text-decoration: none;
    }

.product-holder.grid-view .thumbnail .product-desc a h4,
.promo-product-container .thumbnail .product-desc .product-name,
.promo-product-container .thumbnail .product-desc a h4 {
    font-size: 13px;
    color: #000;
    font-weight: 400;
    border-bottom: 1px dashed #ddd;
    height: auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-bottom: 10px;
}

.promo-product-container .thumbnail .product-desc .product-name > a {
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.promo-product-container .latest-promo-project .thumbnail .product-desc .product-name,
.promo-product-container .latest-promo-project .thumbnail .product-desc a h4 {
    border-bottom: none;
}

.product-holder.grid-view .thumbnail .price.grid-view,
.promo-product-container .thumbnail .product-desc .price {
    font-size: 13px;
    font-style: italic;
    color: #0095da;
}

.product-holder.grid-view .thumbnail .price.grid-view {
    color: orange;
    height: auto;
}

.product-holder.grid-view .thumbnail img,
.promo-product-container .thumbnail img {
    border-bottom: 1px solid #ddd;
    width: 100%;
}

.promo-product-heading {
    text-align: center;
}

.latest-product .promo-product-title,
.latest-project .promo-product-title {
    overflow: hidden;
    margin-bottom: 20px;
    line-height: 1.42857143;
    color: #333;
    letter-spacing: -1px;
    margin-top: 20px;
    text-align: left;
}

    .latest-product .promo-product-title span,
    .latest-project .promo-product-title span {
        position: relative;
        display: inline-block;
    }

        .latest-product .promo-product-title span:after,
        .latest-project .promo-product-title span:after {
            content: "";
            position: absolute;
            top: 50%;
            height: 1px;
            width: 1000%;
            display: block;
            background-color: #e1e1e1;
            background-color: rgba(0, 0, 0, 0.1);
            box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.795);
        }

        .latest-product .promo-product-title span:after,
        .latest-project .promo-product-title span:after {
            left: 100%;
            margin-left: 0.5em;
        }

.wrap-running-image {
    position: relative;
    margin-bottom: 25px;
}

.nav-running-image {
    position: absolute;
    top: 37%;
    left: 0;
    right: 0;
    width: 100%;
}

    .nav-running-image .slick-arrow {
        position: absolute;
        background-color: #fff;
        border: 3px solid #777;
        color: #777;
        padding: 7px 10px;
    }

        .nav-running-image .slick-arrow:hover {
            background-color: #777;
            color: #fff;
            border-color: #777;
        }

        .nav-running-image .slick-arrow .glyphicon {
            top: 3px;
        }

    .nav-running-image .prev {
        left: -45px;
    }

    .nav-running-image .next {
        right: -45px;
    }

.running-image {
    margin-left: -3px;
    margin-right: 0;
}

    .running-image [class*="col-"] {
        padding-left: 5px;
        padding-right: 5px;
    }

        .running-image [class*="col-"]:focus {
            outline: inherit;
        }

.wrap-running-image .thumbnail {
    position: relative;
    padding: 0;
    border: 4px solid #ddd;
    margin-bottom: 0;
    border-radius: 0;
}

    .wrap-running-image .thumbnail:hover {
        border-color: #777;
    }

    .wrap-running-image .thumbnail:focus {
        border: 4px solid #777;
        outline: inherit;
    }

    .wrap-running-image .thumbnail .caption {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
        background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
        filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#d9000000', GradientType=0);
    }

        .wrap-running-image .thumbnail .caption,
        .wrap-running-image .thumbnail .caption .span {
            color: #fff;
            text-align: left;
            padding: 5px;
            line-height: 15px;
        }

#sticky-wrapper {
    margin-bottom: 0;
}

    #sticky-wrapper.is-sticky {
        position: relative;
        z-index: 1;
    }

.wrap-footer {
    padding-top: 40px;
    padding-bottom: 30px;
    box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.3), 0 1px 10px 0 rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    background-color: #222;
}

.title-info-footer h3 {
    color: #fff;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 20px;
    margin-bottom: 20px;
    margin-top: 0;
}

.link-nav-footer ul li {
    margin-bottom: 5px;
}

    .link-nav-footer ul li a {
        color: #929699 !important;
        text-transform: capitalize;
    }

.address-footer {
    color: #929699;
}

.wrap-bottom-footer {
    box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.3), 0 1px 10px 0 rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    background-color: #222;
    padding-top: 10px;
    padding-bottom: 10px;
}

.footer-copyright,
.footer-by {
    margin-bottom: 0;
    color: #929699;
    font-weight: 300;
}

.footer-by {
    text-align: right;
}

#dzone-dropdown-menu.jm-menu > ul > li.active > a,
#dzone-dropdown-menu.jm-menu > ul > li > a.active,
#dzone-dropdown-menu > ul > li.active > a,
#dzone-dropdown-menu > ul > li > a.active,
#dzone-dropdown-menu.jm-menu > ul > li:hover > a {
    background-color: transparent;
}

#dzone-dropdown-menu.jm-menu > ul > li:hover > a {
    color: #333;
}

.col-menu-category {
    width: 21%;
    margin-right: 20px;
}

    .col-menu-category .navbar-nav > li > a {
        width: 200px;
    }

    .col-menu-category .nav .open > a,
    .col-menu-category .nav .open > a:focus,
    .col-menu-category .nav .open > a:hover {
        background-color: rgba(51, 51, 51, .2);
        color: #fff;
    }

.container-tab {
    position: relative;
    margin-bottom: 30px;
}

    .container-tab > .navbar {
        border: none;
        border-bottom: 3px solid #333;
        border-radius: 0;
        background-color: #fff;
        margin-bottom: 10px;
    }

    .container-tab .navbar-nav > li.active > a {
        background-color: #FF6634;
        color: #fff;
    }

    .container-tab .navbar-nav > li > a {
        color: #333;
        font-weight: 500;
    }

    .container-tab .navbar-nav > li.active > a:hover {
        color: #fff;
        cursor: default;
    }

    .container-tab .navbar-nav > li > a:hover {
        color: #FF6634;
    }

.navbar-brand-category {
    text-transform: uppercase;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    font-weight: 500;
}

.floor-elevator {
    width: 70px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    background: url("http://kutethemes.net/wordpress/kuteshop/option1/wp-content/themes/kutetheme/images/floor-elevator.png") no-repeat left center;
    padding-left: 30px;
    color: #999;
}

    .floor-elevator .btn-elevator {
        cursor: pointer;
        display: block;
        position: relative;
        float: left;
        width: 30px;
        text-align: center;
    }

        .floor-elevator .btn-elevator:hover,
        .floor-elevator .btn-elevator:focus {
            text-decoration: none;
            color: #0095da;
        }

    .floor-elevator .fa {
        font-weight: bold;
    }

    .floor-elevator a {
        font-size: 20px;
        color: #666;
    }

    .floor-elevator .down {
        margin-top: -10px;
    }

.product-featured > .wrap-banner-side {
    width: 22%;
    padding-right: 0;
}

.wrap-banner-side img {
    width: 100%;
}

.slide-category [class*="col-"] > .thumbnail {
    border: none;
    border-right: 1px solid #ddd;
    min-height: 354px;
    padding: 10px;
    border-radius: 0;
}

    .slide-category [class*="col-"] > .thumbnail:focus,
    .slide-category [class*="col-"] > .thumbnail:hover {
        text-decoration: none;
    }

    .slide-category [class*="col-"] > .thumbnail .caption h3 {
        font-size: 13px !important;
        color: #666;
        font-family: 'Open Sans', sans-serif;
        line-height: 18px;
    }

    .slide-category [class*="col-"] > .thumbnail .caption .newprice {
        color: #0095da;
        font-size: 15px;
        margin-bottom: 0;
        font-family: 'Open Sans', sans-serif;
    }

.promo-product-container .latest-promo.row-wrap.multi-columns-row.clearfix {
    text-align: left !important;
}

.bottom-panel .bottom-lang,
.bottom-panel .bottom {
    display: none;
}

.wrap-footer .stButton {
    z-index: auto;
}

.fm-title-content h3 {
    color: #fff;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 20px;
    margin-bottom: 20px;
    margin-top: 0;
}

.moq {
    font-weight: 700;
}

    .moq .mask a,
    li.moq h5 {
        font-weight: 400;
        color: #929699;
    }

    .moq .mask i {
        font-size: 15px !important;
        color: #929699 !important;
    }

.m-view.fm-short-contact .showYM,
.m-view.fm-short-contact {
    color: #d6d6d6;
}

.promo-product-container .latest-promo-project {
    text-align: left !important;
}

.wrap-content-master {
    padding-top: 10px;
    padding-bottom: 30px;
    font: normal 15px / 27px -webkit-body;
}

.wrap-content-second {
    padding-bottom: 30px;
    background-color: #fff;
}

.wrap-logo img {
    display: inline-block;
    max-width: 100%;
    height: auto;
    max-height: 50px;
}

.wrap-content-second #boxdivProduct .promo-product-container .thumbnail,
.wrap-content-second #boxdivProject .promo-product-container .thumbnail,
#otherProduct .promo-product-container .thumbnail {
    border: 1px solid #ddd;
}

    #otherProduct .promo-product-container .thumbnail h4 {
        margin-bottom: 0;
        padding: 10px 0;
        font-size: 14px;
        color: #000;
        font-weight: 400;
        border-bottom: 1px dashed #ddd;
        height: auto;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        padding-bottom: 10px;
        margin-left: 10px;
        margin-right: 10px;
    }

    #otherProduct .promo-product-container .thumbnail .price {
        font-style: italic;
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 10px;
    }

.fm-tab-detail {
    border: 1px solid #ddd;
    margin-top: -3px;
    padding: 15px;
    background-color: #e6e6e6;
}

.fm-nav-tabs.nav-tabs.nav-justified > li > a {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    text-transform: uppercase;
    background-color: #f7f7f7;
    border-bottom-color: #e6e7e9;
    color: #333;
}

.fm-nav-tabs.nav-tabs.nav-justified > li.active > a {
    color: #333;
    background-color: #e6e6e6;
    border-bottom-color: #e6e6e6;
}

.fm-nav-tabs.nav-tabs.nav-justified > li.active:after {
    content: "";
    border-bottom: 3px solid #0095da;
    display: block;
    position: relative;
    top: -3px;
}

.fm-btn-search {
    color: #333;
    float: right;
    background-color: transparent;
}

    .fm-btn-search:hover,
    .fm-btn-search:focus {
        color: #333;
        background-color: transparent;
        border: none !important;
    }

nav[role="navigation"] {
    text-align: center;
}

.searchbardiv {
    position: absolute;
    top: 100%;
    right: 0px;
    left: 0;
    padding-left: 0;
    padding-right: 0;
    z-index: 1;
    margin-top: -1px;
}

.buttonsearch {
    position: fixed;
    top: 18px;
    float: right;
    right: 0px;
    margin-right: 10px;
    background-color: transparent;
    border: 0px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

    .buttonsearch:hover {
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        border: 0px;
    }

    .buttonsearch:focus {
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        border: 0px;
    }

#formsearch {
    display: none;
}

.fm-inner-search {
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
}

#searchbox {
    box-shadow: none;
    padding: 8px 14px;
}

    #searchbox:hover {
        box-shadow: none;
    }

.fm-form-search #btnGo {
    background-color: #0095da;
}

#googleMap {
    width: 100% !important;
}

.icon-control-search {
    position: relative;
    z-index: 2;
    width: auto;
    height: auto;
    line-height: inherit;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    float: right;
    padding-right: 10%;
}

.header-parallel {
    position: relative;
    z-index: 1;
    box-shadow: 0 0 10px rgba(0,0,0,.1);
}

#dzone-dropdown-menu.jm-menu > ul > li > ul {
    padding-top: 0;
    box-shadow: 0 13px 42px 11px rgba(0,0,0,.05);
    border: 1px solid #EEE;
    border-top: 2px solid #0095da;
}

#dzone-dropdown-menu.jm-menu ul ul li a {
    padding: 10px 15px;
    font-size: 13px;
    color: #333;
}

#dzone-dropdown-menu.jm-menu ul ul li:first-child > a,
#dzone-dropdown-menu.jm-menu ul ul a {
    border: none;
}

#dzone-dropdown-menu.jm-menu ul ul li > a:hover {
    color: #0095da;
}

.custom_panel_before_login .navbar-collapse {
    padding-left: 0;
    border-top: none;
}

.control-search-section {
    position: absolute;
    right: 8.33333333%;
    width: 75%;
    display: none;
}

    .control-search-section .txtSearch {
        border: none;
        box-shadow: none;
        border-bottom: 1px solid #ddd;
        border-radius: 0;
        position: relative;
        z-index: 99;
    }

    .control-search-section .input-group-btn,
    .control-search-section .form-control-feedback {
        display: none;
    }

/* Large desktops and laptops */
@media (min-width: 1200px) {
    #bannerservices .jm-slick {
        height: auto !important;
    }

    .row-wrap .product-holder,
    .table-product {
        width: 20% !important;
        padding-left: 5px;
        padding-right: 5px;
        float: left;
    }
}

/* Landscape tablets and medium desktops */
@media (min-width: 992px) and (max-width: 1199px) {
    #dzone-dropdown-menu.jm-menu > ul > li > a {
        padding: 20px 10px;
        font-size: 13px;
    }

    #bannerservices .jm-slick {
        height: auto !important;
    }

    .logo-container {
        display: block;
    }
}


/* Portrait tablets and small desktops */
@media (min-width: 768px) and (max-width: 991px) {

    .header-parallel {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .header-parallel {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .wrap-logo img {
        max-height: 45px;
    }

    .control-search-section {
        width: 70%;
        top: 50%;
        left: 55%;
        -moz-transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

    .logo-container {
        display: block;
    }

    .wrap-logo img {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-by {
        text-align: center;
    }

    #dzone-dropdown-menu.jm-menu > ul > li > a {
        padding: 10px 15px;
        font-size: 13px;
    }

    .row-wrap .product-holder,
    .table-product {
        width: 25% !important;
    }

    #dzone-dropdown-menu {
        background-color: #f9f9f9;
    }

    .wrap-menu {
        background-color: transparent;
    }

    .wrap-mobile-menu {
        margin-left: 10%;
    }

    #bannerservices .jm-slick {
        height: auto !important;
    }
}

/* Landscape phones and portrait tablets */
@media (max-width: 767px) {

    .fm-short-company p {
        line-height: 18px !important;
        overflow-y: hidden;
        font-size: 12px;
        max-height: 70px;
    }

    #top-menu-manager .btn {
        font-size: 12px;
        padding: 3px 5px;
    }

    #top-menu-manager .top-lang-new .dropdown .btn {
        padding: 5px 10px;
    }

    .header-parallel {
        padding-top: 4px;
        padding-bottom: 4px;
    }

    .owl-theme .owl-controls {
        display: none !important;
    }

    .control-search-section {
        width: 90%;
        background-color: #fff;
        padding-top: 10px;
        padding-bottom: 8px;
        top: 0;
    }

    #top-menu-manager.new-top-menu .account-setting .nav > li,
    #top-menu-manager.new-top-menu .account-setting .nav > li > a {
        display: inline-block;
    }

    .custom_panel_before_login .navbar-collapse {
        display: block;
    }

    .wrap-logo img {
        margin-left: auto;
        margin-right: auto;
        max-height: 48px;
    }

    .wrap-content-second .promo-product-heading {
        background-color: transparent;
    }

    .wrap-content-second .latest-product .promo-product-title,
    .wrap-content-second .latest-project .promo-product-title {
        line-height: 43px;
        margin-top: 0;
        margin-bottom: 0;
    }

        .wrap-content-second .latest-product .promo-product-title span:after,
        .wrap-content-second .latest-project .promo-product-title span:after {
            display: none;
        }

    .wrap-content-second .proddetail .rowbody {
        padding-left: 10px;
        padding-right: 10px;
    }

    .wrap-content-second .fm-control-label-margin input {
        margin-left: 0;
    }

    .wrap-content-master .row-wrap .product-holder,
    .wrap-content-master .table-product {
        width: 50%;
        padding-left: 5px;
        padding-right: 5px;
        float: left;
    }

    .wrap-content-second .row-wrap .product-holder:not(.set-mode-not-slick),
    .wrap-content-second .table-product:not(.set-mode-not-slick) {
        width: 20%;
    }

    .product-image.grid-view {
        height: auto !important;
        line-height: normal !important;
    }

    .footer-by {
        text-align: center;
    }

    .footer-copyright {
        display: none;
    }

    .wrap-footer {
        padding-top: 20px;
        padding-bottom: 20px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .box-tab-category .navbar-header .navbar-toggle {
        display: none;
    }

    .wrap-short-company h1.media-heading {
        font-size: 17px;
    }

    .text-cart {
        display: none !important;
    }

    .fm-title-content h3 {
        margin-bottom: 10px;
        margin-top: 20px;
    }

    .title-info-footer h3 {
        margin-bottom: 10px;
    }

    .wrap-short-company .media-body {
        width: 100%;
    }

    .wrap-short-company {
        margin-bottom: 0;
        padding: 0px 10px;
    }

    .footer-list, .m-view td {
        text-align: left;
    }

    .row-wrap .product-holder:not(.set-mode-not-slick), .table-product:not(.set-mode-not-slick) {
        width: 33%;
    }

    #bannerservices .jm-slick {
        height: auto !important;
    }

    .wrap-menu {
        background-color: transparent;
    }

    #dzone-dropdown-menu {
        background-color: #f9f9f9;
    }

    .form-relative {
        margin-top: 0 !important;
    }

    .wrap-mobile-menu {
        margin-left: 10%;
    }
}


/* Portrait phones and smaller */
@media (max-width: 480px) {
    .row-wrap .product-holder:not(.set-mode-not-slick), .table-product:not(.set-mode-not-slick) {
        width: 50%;
    }
    .header-parallel{
        display: none;
    }
}


/* Portrait phones and smaller & Iphone small */
@media (max-width: 320px) {
}

.sticky-header-pws {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

.sticky-pws-menu {
    position: fixed;
    left: 0;
    width: 100%;
    background: white;
    z-index: 100;
}

* {
    font-family: 'Open Sans', sans-serif;
}

.row.flexbox.middle-xs:before{
    display:inline-block;
}

.row.flexbox.middle-xs:after{
    display: inline-block;
}

@media (max-width: 480px) {
    .jm-breadcrumb{
        margin-top: 10px;
    }
    .wrap-content-master {
        font: normal 13px / 27px -webkit-body;
    }
}

.margin-bottom-dtl {
    padding-left: 8px;
    padding-right: 8px;
}

.top-menu {
    float: right;
}