﻿
div#content .col-lg-2:nth-child(6n+1), #content .col-lg-2:nth-child(6n+1), #content .col-lg-3:nth-child(4n+1), #content .col-lg-4:nth-child(3n+1), #content .col-lg-6:nth-child(2n+1) {
    clear: none
}

.search img {
    width: 80px;
    height: 80px;
}

@charset "UTF-8";

body {
    font-family: 'Fira Sans', sans-serif;
    font-size: 14px !important;
    font-weight: 400 !important;
}

.no-margin {
    margin: 0 !important;
}

#wrapper {
    padding-top: 133px;
}

.back-to-top {
    cursor: pointer;
    z-index: 1000;
    background-color: #777;
    width: 43px;
    bottom: 35px;
    right: 10px;
    height: 43px;
    line-height: 43px;
    overflow: hidden;
    position: fixed;
    display: block;
    text-align: center;
    border-radius: 3px;
    opacity: 1;
    transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

    .back-to-top.hidden-top {
        bottom: -100px;
        opacity: 0;
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
    }

    .back-to-top:hover {
        background-color: #046094;
    }

    .back-to-top i {
        font-size: 30px;
        margin: 0;
        color: #fff;
        display: block;
        height: 43px;
        line-height: 40px;
    }

/
/*============TOP PANEL ==================*/
header.navbar-compact {
    position: fixed;
    width: 100%;
    z-index: 999;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

header.navbar-compact .compact-hidden {
    display: none;
}
/*============LARY LOADER ==================*/
.lazy {
    display: block;
    overflow: hidden;
    background: transparent url(../../images/lazy-loader.gif) no-repeat center center;
}

.lazyload {
    opacity: 0;
}

.lazyloaded {
    opacity: 1;
    transition: all 700ms ease-in-out;
}

@media (min-width: 1200px) {
    .lazy.lazy-loaded {
        background: none;
        height: auto;
    }

    .lazy img {
        transition: 1s all ease;
        opacity: 0;
        -webkit-backface-visibility: hidden;
        display: inline-block;
    }

    .lazy.lazy-loaded img {
        opacity: 1;
    }
}
/*============NONE RESPONSIVE BOOTSTRAP ==================*/

@media (min-width: 1200px) {

    .wrapper-full .container {
        width: 1200px;
    }

    .wrapper-full .products-list .product-grid-5 .order-num {
        display: none;
    }

    .wrapper-full .products-list .product-grid-6 .order-num {
        display: none;
    }

    .wrapper-fluid .container {
        max-width: 1650px;
        padding: 0;
    }
}

@media (min-width: 1200px) {
    .wrapper-full .products-list .product-grid-5:nth-child(5n+1) {
        clear: both !important;
    }
}
/*============@group Banners hover effect ==================*/

.banners-effect-8 .banners > div a {
    display: inline-block;
    position: relative;
    overflow: hidden;
    background: #000;
    vertical-align: top;
}

    .banners-effect-8 .banners > div a:before, .banners-effect-8 .banners > div a:after {
        bottom: 20px;
        content: "";
        left: 20px;
        opacity: 0;
        position: absolute;
        right: 20px;
        top: 20px;
        -webkit-transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
        -o-transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
        transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
        z-index: 1;
    }

    .banners-effect-8 .banners > div a:before {
        border-bottom: 1px solid #fff;
        border-top: 1px solid #fff;
        -webkit-transform: scale(0, 1);
        -ms-transform: scale(0, 1);
        -o-transform: scale(0, 1);
        transform: scale(0, 1);
    }

    .banners-effect-8 .banners > div a:after {
        border-left: 1px solid #fff;
        border-right: 1px solid #fff;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }

.banners-effect-8 .banners > div img {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transition: opacity 0.35s ease 0s;
    -o-transition: opacity 0.35s ease 0s;
    transition: opacity 0.35s ease 0s;
}

.banners-effect-8 .banners > div a:hover:before, .banners-effect-8 .banners > div a:hover:after {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.banners-effect-8 .banners > div a:hover img {
    opacity: 0.5;
    filter: alpha(opacity=50);
}

/*============POPUP ADDED TO CART ==================*/
body > .alert {
    position: fixed;
    z-index: 10004;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-animation: alert-anim 1s cubic-bezier(1, -0.01, 0, 0.99);
    -moz-animation: alert-anim 1s cubic-bezier(1, -0.01, 0, 0.99);
    animation: alert-anim 1s cubic-bezier(1, -0.01, 0, 0.99);
}

    body > .alert .alert {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
    }

        body > .alert .alert.fadeOut {
            top: -100%;
        }

@-webkit-keyframes alert-anim {
    0% {
        top: -100%;
    }

    60% {
        top: 0;
    }

    100% {
        top: 0;
    }
}

@-moz-keyframes alert-anim {
    0% {
        top: -100%;
    }

    60% {
        top: 0;
    }

    100% {
        top: 0;
    }
}

@keyframes alert-anim {
    0% {
        top: -100%;
    }

    60% {
        top: 0;
    }

    100% {
        top: 0;
    }
}


@-webkit-keyframes alert-icon-anim {
    0% {
        font-size: 0;
    }

    60% {
        font-size: 0;
    }
}

@-moz-keyframes alert-icon-anim {
    0% {
        font-size: 0;
    }

    60% {
        font-size: 0;
    }
}

@keyframes alert-icon-anim {
    0% {
        font-size: 0;
    }

    60% {
        font-size: 0;
    }
}

/*============ Quick Cart ==================*/
@media (min-width: 1200px) {
    .modal-lg {
        margin-top: 10%;
        width: 1050px;
    }
}

.modal-content {
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
    border-radius: 0;
    border: none;
}

    .modal-content .modal-header {
        padding: 10px 15px;
    }

    .modal-content .modal-title {
        font-weight: normal;
    }

/*===============================================
 [SASS DIRECTORY ]
 [1] Pre-Loader 
 ==============================================*/

body.preloader:before {
    content: " ";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99998;
    background: url(../../img/loading.svg) no-repeat center center rgba(255, 255, 255, 0.9);
}
/*============START Pre-Loader CSS  ==================*/
.so-pre-loader {
    background: rgba(255, 45, 55, 0.5);
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99999;
}

    .so-pre-loader.no-pre-loader {
        background: none;
        position: absolute;
        height: auto;
    }

    .so-pre-loader .so-loader-background {
        background: #555;
        display: block;
        height: 100%;
    }

    .so-pre-loader .so-loader-center {
        position: absolute;
        left: 50%;
        top: 50%;
        margin: -25px 0 0 -25px;
    }

    .so-pre-loader .so-loader-line {
        background: #046094;
        top: 0;
    }

    .so-pre-loader .spinner {
        width: 50px;
        height: 50px;
        background-color: white;
        -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
        animation: sk-rotateplane 1.2s infinite ease-in-out;
    }

    .so-pre-loader .spinner-bounce {
        width: 60px;
        height: 60px;
        position: relative;
    }

/* ************   START Loader Animation   ************ */
/* **************************************************** */
@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px);
    }

    50% {
        -webkit-transform: perspective(120px) rotateY(180deg);
    }

    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg);
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    }

    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    }

    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}


/* ***********   END:: Loader Animation   ************* */
/* **************************************************** */

.modal.show {
    z-index: 1072;
}

    .modal.show .tooltip, .modal.show .popover {
        z-index: 1073;
    }


h2.sub-title {
    font-size: 23px;
    margin: 24px 0;
    color: #495057;
}

.color {
    color: #046094;
}

.divider {
    height: 30px;
    clear: both;
    overflow: hidden;
    width: 100%;
}

.item-article {
    font-size: 13px;
}

    .item-article dl dt {
        color: #495057;
        font-size: 18px;
        font-weight: 500;
        padding: 0 0 4px 0;
    }

    .item-article dl dd {
        margin-bottom: 15px;
    }

    .item-article .tags {
        margin: 15px 0;
    }

        .item-article .tags .label {
            border: none;
            border-radius: 2px;
            margin: 0 2px 5px 0;
            font-size: 11px;
            padding: 12px;
            display: inline-block;
            text-transform: uppercase;
            font-weight: 400;
        }

    .item-article .button, .item-article .btn {
        padding: 9px 20px;
        background: #495057;
        color: #fff;
        border-radius: 3px;
        border: none;
    }

        .item-article .button:hover, .item-article .btn:hover {
            background: #046094;
            border-color: #046094;
            color: #fff;
        }

    .item-article .btn-primary {
        background: #234269;
    }

    .item-article .btn-warning {
        background: #f0ad4e;
    }

    .item-article .btn-success {
        background: #5cb85c;
    }

    .item-article .btn-danger {
        background: #046094;
    }

    .item-article .btn-info {
        background: #5bc0de;
    }

    .item-article .nav-tabs {
        border: 0;
        margin-bottom: 32px;
    }

        .item-article .nav-tabs .dropdown-menu {
            padding: 15px;
            border: 1px solid rgba(0, 0, 0, 0.15);
        }

        .item-article .nav-tabs > li.active > a, .item-article .nav-tabs > li.active > a:hover, .item-article .nav-tabs > li.active > a:focus {
            color: #fff;
            border: 0;
            background: #046094;
        }

            .item-article .nav-tabs > li.active > a:before, .item-article .nav-tabs > li.active > a:hover:before, .item-article .nav-tabs > li.active > a:focus:before {
                border: 10px solid #046094;
                border-color: #046094 transparent transparent transparent;
                content: "";
                position: absolute;
                top: 100%;
                left: 50%;
                margin-left: -10px;
            }

        .item-article .nav-tabs > li > a {
            background: #eaeaea;
            border-radius: 2px;
            border: 0;
            color: #2d2d2d;
            text-transform: uppercase;
            padding: 0 32px;
            height: 48px;
            line-height: 48px;
            position: relative;
        }

            .item-article .nav-tabs > li > a:hover {
                background: #ddd;
            }

    .item-article .nav-pills > li > a {
        border-radius: 3px;
    }

    .item-article .nav-pills .dropdown-menu {
        padding: 15px;
        border: 1px solid rgba(0, 0, 0, 0.15);
    }

    .item-article .nav-pills > li.active > a, .item-article .nav-pills > li.active > a:focus, .item-article .nav-pills > li.active > a:hover {
        color: #fff;
        background: #046094;
    }

    .item-article .dropcap {
        display: block;
        float: left;
        font-size: 3.5em;
        line-height: 1em;
        margin: 0 5px 0 0;
    }

    .item-article .color-custom {
        color: #046094;
    }

    .item-article .color-white {
        color: #fff;
    }

    .item-article .color-dark {
        color: #000;
    }

    .item-article .bg-custom {
        background: #046094;
    }

    .item-article .bg-black {
        background: #000;
    }

    .item-article a.underline {
        text-decoration: underline;
    }

        .item-article a.underline:hover {
            text-decoration: none;
        }

.custom-border {
    padding: 10px 20px;
}

.list-box {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.btn-link:focus, .btn-link:hover {
    text-decoration: none;
}

.list-box li {
    border-bottom: 1px solid #ececec;
}

    .list-box li:last-child {
        border-bottom: 0;
    }

    .list-box li a {
        display: inline-block;
        word-wrap: break-word;
        padding: 8px 0;
        margin-right: 5px;
        color: #495057;
    }

        .list-box li a:hover {
            color: #046094;
        }
/* @end */
/*============PAGE CHECKOUT ==================*/

.table-responsive .table thead > * {
    background-color: #f7f7f7;
    font-weight: bold;
}

.table-responsive .table tbody td.text-left:hover a {
    color: #046094;
}

.checkout-cart .btn-block input {
    min-width: 40px;
    text-align: center;
}

.cart-item-image {
    width: 103px;
    height: 103px;
}

.checkout-cart .bg-page-404 .text-center {
    width: 100%;
}

    .checkout-cart .bg-page-404 .text-center > div {
        display: none;
    }

.checkout-cart .bg-page-404 .col-sm-5 img {
    display: none;
}

.conf-content {
    text-align: center;
    padding: 90px 20px;
}

    .conf-content h1 {
        margin-top: 30px;
        text-align: center;
    }

    .conf-content h1 {
        text-align: center;
    }

.content-aside {
    margin-bottom: 30px;
}

.banner-sidebar a img {
    width: 100%;
}

#sosearchpro.so-search {
    width: 100%;
    padding: 0;
}

.sohomepage-slider .form-group {
    margin-bottom: 0;
}

.content-aside .module.banner-left {
    border: none;
    border-radius: 0;
}

/*============MODULE DEFAULT ==================*/
.module.sohomepage-slider .so-homeslider {
    direction: ltr;
}

.module .so-extraslider .extraslider-inner {
    border: none;
    padding-bottom: 0;
}

#content .sohomepage-slider .sohomeslider-description h2 {
    margin: 0;
}

#content .module h2 {
    font-size: 18px;
    color: #222;
    font-weight: 600;
    margin-top: 30px;
}

#content .module h3.modtitle {
    font-size: 18px;
    color: #222;
    font-weight: 600;
}

    #content .module h3.modtitle span {
        font-size: 18px;
        color: #000;
        font-weight: 600;
    }

.content-aside .module {
    margin-bottom: 30px;
}

    .content-aside .module h3.modtitle {
        font-size: 16px;
        color: #fff;
        font-weight: 500;
        text-transform: uppercase;
        background-color: #046094;
        border-radius: 5px 5px 0 0;
        padding: 15px;
        margin: 0;
    }

        .content-aside .module h3.modtitle span {
            font-size: 16px;
            color: #fff;
            font-weight: 500;
            text-transform: uppercase;
        }

    .content-aside .module .mod-content, .content-aside .module .modcontent {
        border: 1px solid #e5e5e5;
        padding: 20px;
    }

    .content-aside .module.so_filter_wrap .modcontent {
        padding: 0;
    }

    .content-aside .module#blog-search {
        border: none;
    }

/*============ BREADCRUMB ==================*/
.breadcrumbs .current-name {
    text-align: center;
    background: #f5f5f5;
    background-size: cover;
    font-size: 24px;
    color: #fff;
    padding: 112px 0;
    display: none;
}

ul.breadcrumb {
    background-color: transparent;
    padding: 15px 0 !important;
    display: inline-block;
    width: 100%;
    line-height: 100%;
}

    ul.breadcrumb li {
        display: inline-block;
        padding: 0 17px 0 0px;
        margin-right: 7px;
        position: relative;
    }

        ul.breadcrumb li:before {
            display: none;
        }

        ul.breadcrumb li:not(:last-child):after {
            font-family: 'FontAwesome';
            content: '\f105';
            font-size: 13px;
            top: 0px;
            right: 0;
            position: absolute;
        }

        ul.breadcrumb li a {
            display: block;
            padding: 0;
            color: #878787;
            text-decoration: none !important;
        }

        ul.breadcrumb li:last-child {
            padding: 5px 0px;
        }

            ul.breadcrumb li:last-child a {
                color: #046094;
            }

        ul.breadcrumb li:hover a {
            color: #046094;
        }

/*============ MODULE FILTER ==================*/
.module.so_filter_wrap {
    border: none;
}

    .module.so_filter_wrap .so-filter-option.so-filter-price .content_scroll {
        margin: 20px 0 10px 10px;
    }

    .module.so_filter_wrap .modcontent {
        background-color: #fff;
        margin: 0;
        border: 1px solid #e5e5e5;
    }

        .module.so_filter_wrap .modcontent ul li.so-filter-options {
            padding: 20px;
            border-bottom: 1px solid #e5e5e5;
        }

            .module.so_filter_wrap .modcontent ul li.so-filter-options:last-child {
                border: none;
            }

            .module.so_filter_wrap .modcontent ul li.so-filter-options .so-filter-heading {
                padding: 0;
                margin-bottom: 0px;
                background-color: transparent;
            }

                .module.so_filter_wrap .modcontent ul li.so-filter-options .so-filter-heading .so-filter-heading-text {
                    float: left;
                    color: #282828;
                    font-weight: 500;
                    text-transform: uppercase;
                    font-size: 14px;
                    padding: 0;
                }

            .module.so_filter_wrap .modcontent ul li.so-filter-options .so-filter-content-opts {
                border: none;
            }

                .module.so_filter_wrap .modcontent ul li.so-filter-options .so-filter-content-opts .so-filter-content-opts-container {
                    padding: 0;
                }

                    .module.so_filter_wrap .modcontent ul li.so-filter-options .so-filter-content-opts .so-filter-content-opts-container .opt-select {
                        margin: 0;
                    }

                        .module.so_filter_wrap .modcontent ul li.so-filter-options .so-filter-content-opts .so-filter-content-opts-container .opt-select ~ .opt-select {
                            border-top: 1px solid #eaeaea;
                        }

                    .module.so_filter_wrap .modcontent ul li.so-filter-options .so-filter-content-opts .so-filter-content-opts-container .so-option-container {
                        padding: 5px 0;
                    }

                        .module.so_filter_wrap .modcontent ul li.so-filter-options .so-filter-content-opts .so-filter-content-opts-container .so-option-container label {
                            margin-bottom: 0;
                            font-size: 13px;
                        }

                        .module.so_filter_wrap .modcontent ul li.so-filter-options .so-filter-content-opts .so-filter-content-opts-container .so-option-container:hover label {
                            color: #046094;
                        }

            .module.so_filter_wrap .modcontent ul li.so-filter-options:last-child {
                border-bottom: none;
                margin-bottom: 0;
            }

        .module.so_filter_wrap .modcontent .so-filter-content-opts-container {
            overflow: inherit;
        }

            .module.so_filter_wrap .modcontent .so-filter-content-opts-container .so-filter-option label {
                font-size: 12px;
            }

            .module.so_filter_wrap .modcontent .so-filter-content-opts-container .opt-select {
                border: none;
            }

                .module.so_filter_wrap .modcontent .so-filter-content-opts-container .opt-select.filter-option-sub:hover {
                    background-color: #fff;
                }

            .module.so_filter_wrap .modcontent .so-filter-content-opts-container .noUi-horizontal .noUi-handle {
                border-radius: 0;
                box-shadow: none;
            }

                .module.so_filter_wrap .modcontent .so-filter-content-opts-container .noUi-horizontal .noUi-handle:before, .module.so_filter_wrap .modcontent .so-filter-content-opts-container .noUi-horizontal .noUi-handle:after {
                    display: none;
                }

            .module.so_filter_wrap .modcontent .so-filter-content-opts-container .put-min_max {
                display: inline-block;
                background: #fff;
                border: 1px solid #ddd;
                width: 49%;
                padding: 0 5px;
                float: left;
            }

                .module.so_filter_wrap .modcontent .so-filter-content-opts-container .put-min_max.put-min {
                    margin-right: 2%;
                }

                .module.so_filter_wrap .modcontent .so-filter-content-opts-container .put-min_max input {
                    background: transparent;
                }

            .module.so_filter_wrap .modcontent .so-filter-content-opts-container .input-group {
                border: 1px solid #eaeaea;
                background-color: #fff;
            }

                .module.so_filter_wrap .modcontent .so-filter-content-opts-container .input-group .form-control {
                    background: transparent;
                }

                .module.so_filter_wrap .modcontent .so-filter-content-opts-container .input-group .btn.btn-default {
                    padding: 7px;
                    color: #555;
                    background: transparent;
                    border-radius: 0;
                }

                    .module.so_filter_wrap .modcontent .so-filter-content-opts-container .input-group .btn.btn-default:hover {
                        background: transparent;
                        color: #046094;
                    }

            .module.so_filter_wrap .modcontent .so-filter-content-opts-container .so-filter-option:hover .option-input:before {
                background-color: transparent;
                border: 2px solid #999;
            }

            .module.so_filter_wrap .modcontent .so-filter-content-opts-container .so-filter-option .option-input .fa-square-o {
                position: relative;
                top: 0px;
            }

            .module.so_filter_wrap .modcontent .so-filter-content-opts-container .so-filter-option.opt_active .option-input .fa-check-square-o {
                color: #046094;
            }

            .module.so_filter_wrap .modcontent .so-filter-content-opts-container .so-filter-option.opt_active .option-input:before {
                background-color: transparent;
                border: 2px solid #999;
            }

        .module.so_filter_wrap .modcontent .so-filter-option.so-filter-price {
            text-align: left;
            padding: 0;
        }

        .module.so_filter_wrap .modcontent .so-filter-content-opts-container ul li {
            float: left;
        }

        .module.so_filter_wrap .modcontent .so-filter-option.so-filter-price .content_min_max {
            display: block;
        }

            .module.so_filter_wrap .modcontent .so-filter-option.so-filter-price .content_min_max .txt-price-shopby {
                min-width: 60px;
                width: 49%;
                padding: 0 5px;
                display: inline-block;
                float: left;
                border: 1px solid #ddd;
                display: inline-block;
            }

                .module.so_filter_wrap .modcontent .so-filter-option.so-filter-price .content_min_max .txt-price-shopby span {
                    display: table-cell;
                    vertical-align: middle;
                }

                    .module.so_filter_wrap .modcontent .so-filter-option.so-filter-price .content_min_max .txt-price-shopby span.text-current {
                        position: relative;
                        top: 1px;
                    }

        .module.so_filter_wrap .modcontent .noUi-handle {
            border: none;
            background-color: #046094;
            width: 7px;
            height: 7px;
            left: -7px;
            right: 7px !important;
            top: -2px;
        }

            .module.so_filter_wrap .modcontent .noUi-handle:hover {
                cursor: e-resize;
            }

        .module.so_filter_wrap .modcontent .noUi-connect {
            box-shadow: none;
            height: 3px;
            background: #046094;
            border-radius: 0;
        }

        .module.so_filter_wrap .modcontent .noUi-background {
            background: #d7d7d7;
            box-shadow: none;
            height: 3px;
            border-radius: 0px;
        }

        .module.so_filter_wrap .modcontent .noUi-target {
            border: none;
        }

        .module.so_filter_wrap .modcontent .clear_filter {
            padding: 0 0 20px 0px;
        }

        .module.so_filter_wrap .modcontent .btn_resetAll {
            padding: 8px 15px;
            margin: 10px 20px 20px 20px;
            font-size: 14px;
            font-weight: 500;
            text-transform: uppercase;
            color: #fff;
            background-color: #777;
        }

            .module.so_filter_wrap .modcontent .btn_resetAll:hover {
                background-color: #046094;
            }

            .module.so_filter_wrap .modcontent .btn_resetAll .fa.fa-times {
                color: #046094;
            }

.so_filter_wrap .modcontent .so-filter-heading i {
    float: right;
}

.so_filter_wrap .modcontent .so-filter-content-opts-container label {
    font-weight: normal;
}


/*============MODULE CATEGORY ==================*/
.box-category ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.box-category > ul {
    padding: 0;
}

    .box-category > ul > li {
        margin: 0;
        padding: 0;
        border: none;
        position: relative;
        box-shadow: unset;
        border-radius: 0;
        border-bottom: 1px solid #eaeaea;
    }

        .box-category > ul > li > a {
            display: block;
            font-weight: 400;
            line-height: 100%;
            padding: 14px 0;
            line-height: 100%;
            margin: 0;
        }

        .box-category > ul > li:last-child {
            border-bottom-right-radius: 0px;
            border-bottom-left-radius: 0px;
            border: none;
        }

            .box-category > ul > li:last-child > a {
                border-bottom-right-radius: 0px;
                border-bottom-left-radius: 0px;
            }

        .box-category > ul > li:hover > a {
            color: #046094;
        }

        .box-category > ul > li:hover .head a {
            color: #fff;
        }

        .box-category > ul > li ul {
            margin-left: 20px;
        }

        .box-category > ul > li a.accordion-toggle {
            width: 25px;
            height: 25px;
            line-height: 25px;
            background-color: #dbdbdb;
            color: #fff;
        }

            .box-category > ul > li a.accordion-toggle:hover {
                background-color: #046094;
            }

.box-category ul li a.active {
    color: #046094;
}

.box-category ul li .head .show:before {
    content: "\f107";
    display: inline-block;
    font: normal normal normal 14px/1 'FontAwesome';
}

.box-category ul li .head .accordion-toggle:before {
    content: "\f105";
    font: normal normal normal 14px/1 'FontAwesome';
}

.box-category ul li .head {
    display: block;
    position: absolute;
    top: 8px;
    line-height: 20px;
    right: 0;
    text-align: center;
}

    .box-category ul li .head a:hover {
        color: #fff;
    }

.box-category ul li ul li {
    padding: 0px 0px 0px 5px;
}

.box-category ul ul {
    margin-bottom: 20px;
}

    .box-category ul ul li a {
        padding: 3px 0;
    }

.box-category ul li ul li a:before {
    font-family: 'FontAwesome';
    transition: all 0.3s ease;
    content: "\f105";
    margin: 0 5px 0;
}

.box-category ul li ul li a:hover:before {
    margin-right: 10px;
}
/* ============== Page categories ============== */
.page-categories {
    margin-top: 30px;
}

    .page-categories ul {
        margin: 0 -6px;
    }

        .page-categories ul li {
            float: left;
            padding: 0 6px;
        }

            .page-categories ul li .cate {
                text-align: center;
                margin-bottom: 30px;
            }

                .page-categories ul li .cate .cate-img {
                    display: block;
                    width: 100%;
                    position: relative;
                    margin-bottom: 7px;
                }

                    .page-categories ul li .cate .cate-img:hover {
                        opacity: 0.8;
                    }

                .page-categories ul li .cate a {
                    color: #000;
                    font-size: 14px;
                }

                    .page-categories ul li .cate a:hover {
                        color: #046094;
                    }

.so-onepagecheckout .price {
    font-size: 14px;
}

body #sosearchpro .dropdown-menu .media-body .box-price .price-new {
    color: #046094;
}

body #sosearchpro .dropdown-menu .media-body .box-price .price {
    font-size: 14px;
    color: #046094;
}

body #sosearchpro .dropdown-menu .media-body .box-price span {
    font-weight: normal;
    font-size: 13px;
    color: #666;
}

/*============SO LATSET BLOG ==================*/
/*============ SIMPLE BLOG ==================*/
.blog-header {
    margin: 0 0 20px;
}

    .blog-header h3 {
        font-weight: bold;
        text-transform: uppercase;
        margin: 0 0 5px;
        font-size: 16px;
        font-size: 1.6rem;
        color: #495057;
    }

.blog-cate ul {
    margin-bottom: 0;
    padding: 10px 0;
}

    .blog-cate ul li.list-group-item {
        border: none;
        padding: 5px 15px;
    }

.blog-listitem .blog-item .blog-item-inner {
    display: block;
    margin-bottom: 30px;
    transition: all 0.2s;
}

    .blog-listitem .blog-item .blog-item-inner:hover .blog-content h4 > a {
        color: #046094;
    }

    .blog-listitem .blog-item .blog-item-inner .article-image {
        position: relative;
        text-align: center;
    }

        .blog-listitem .blog-item .blog-item-inner .article-image:hover img {
            opacity: 0.8;
            transition: all 0.2s ease-in-out 0s;
        }

    .blog-listitem .blog-item .blog-item-inner .itemBlogContent {
        padding: 15px;
    }

    .blog-listitem .blog-item .blog-item-inner .blog-meta {
        display: inline-block;
        padding: 0px 0 10px;
        border-bottom: 1px solid #ebebeb;
        vertical-align: top;
        width: 100%;
        font-size: 13px;
    }

    .blog-listitem .blog-item .blog-item-inner .author, .blog-listitem .blog-item .blog-item-inner .comment_count, .blog-listitem .blog-item .blog-item-inner .blog-date {
        color: #b3b3b3;
        display: inline-block;
        margin-right: 15px;
    }

        .blog-listitem .blog-item .blog-item-inner .author i, .blog-listitem .blog-item .blog-item-inner .comment_count i, .blog-listitem .blog-item .blog-item-inner .blog-date i {
            margin-right: 8px;
        }

        .blog-listitem .blog-item .blog-item-inner .author a, .blog-listitem .blog-item .blog-item-inner .comment_count a, .blog-listitem .blog-item .blog-item-inner .blog-date a {
            color: #b3b3b3;
        }

    .blog-listitem .blog-item .blog-item-inner .blog-content {
        clear: both;
        display: inline-block;
        width: 100%;
    }

        .blog-listitem .blog-item .blog-item-inner .blog-content h4 {
            margin-bottom: 10px;
            font-size: 15px;
            font-weight: 600;
            line-height: 24px;
        }

        .blog-listitem .blog-item .blog-item-inner .blog-content .article-description {
            margin: 5px 0 15px 0;
        }

        .blog-listitem .blog-item .blog-item-inner .blog-content .readmore {
            font-size: 14px;
            margin-top: 10px;
        }

            .blog-listitem .blog-item .blog-item-inner .blog-content .readmore .fa {
                margin-right: 8px;
            }

            .blog-listitem .blog-item .blog-item-inner .blog-content .readmore > a {
                color: #046094;
            }

.blog-listitem .blog-grid-1 .blog-item-inner .itemBlogImg {
    width: 320px;
    margin: 0 15px 0 0;
    float: left;
}

@media (max-width: 767px) {
    .blog-listitem .blog-grid-1 .blog-item-inner .itemBlogImg {
        width: auto;
    }
}

.blog-listitem .blog-grid-1 .blog-item-inner .itemBlogContent {
    width: auto;
    float: none;
    overflow: hidden;
    clear: none;
    padding: 0;
}

@media (max-width: 767px) {
    .blog-listitem .blog-grid-1 .blog-item-inner .itemBlogContent {
        float: left;
        margin-top: 15px;
    }
}

@media (min-width: 1200px) {
    .blog-listitem .blog-grid-2:nth-child(2n+1) {
        clear: both !important;
    }
}

.blog-listitem .blog-grid-2 .blog-item-inner {
    background: none;
    box-shadow: none !important;
}

    .blog-listitem .blog-grid-2 .blog-item-inner .itemBlogContent {
        padding: 10px 0;
    }

.blog-listitem .blog-grid-2 .article-description {
    display: none;
}

@media (min-width: 1200px) {
    .blog-listitem .blog-grid-3:nth-child(3n+1) {
        clear: both !important;
    }
}

.blog-listitem .blog-grid-3 .blog-item-inner {
    background: none;
    box-shadow: none !important;
}

    .blog-listitem .blog-grid-3 .blog-item-inner .itemBlogContent {
        padding: 10px 0;
    }

.blog-listitem .blog-grid-3 .article-description {
    display: none;
}

@media (min-width: 1200px) {
    .blog-listitem .blog-grid-4:nth-child(4n+1) {
        clear: both !important;
    }
}

.blog-listitem .blog-grid-4 .article-description {
    display: none;
}

.blog-listitem .blog-list .blog-item-inner {
    padding: 0px;
    background: none;
    margin-bottom: 35px;
}

    .blog-listitem .blog-list .blog-item-inner .itemBlogImg {
        margin-bottom: 15px;
    }

    .blog-listitem .blog-list .blog-item-inner .itemBlogContent {
        padding: 0;
    }
/*============ARTICLE INFO==================*/
div.article-info .article-title h3 {
    font-size: 20px;
    text-transform: uppercase;
    color: #495057;
    font-weight: bold;
    margin-bottom: 5px;
}

div.article-info h2 {
    margin-top: 50px;
}

div.article-info .article-image {
    margin-bottom: 30px;
}

div.article-info .article-description {
    margin-bottom: 30px;
}


.article--mainimage .article-image {
    text-align: center;
}

.article--style5 .article--mainimage {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.article--style5 .article--maintitle {
    position: absolute;
    z-index: 5;
    transform: translateY(-130%);
    width: 1170px;
}

    .article--style5 .article--maintitle h3 {
        margin-bottom: 0;
    }

    .article--style5 .article--maintitle .article-title {
        text-transform: uppercase;
        bottom: 0;
        z-index: 5;
        display: block;
        background: rgba(0, 0, 0, 0.6);
        padding: 10px;
        color: #f3f3f3;
        margin-bottom: 10px;
    }

    .article--style5 .article--maintitle .article-title {
        background: -webkit-linear-gradient(left, #111 0%, rgba(255, 255, 255, 0) 100%);
        /* Chrome10-25,Safari5.1-6 */
        background: -moz-linear-gradient(left, #111 0%, rgba(255, 255, 255, 0) 100%);
        /* FF3.6-15 */
        background: -webkit-linear-gradient(left, #111 0%, rgba(255, 255, 255, 0) 100%);
        /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(to right, #111 0%, rgba(255, 255, 255, 0) 100%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#00ffffff',GradientType=1);
        /* IE6-9 */
    }
/*============ARTICLE COMMENTS==================*/
.comments {
    margin-bottom: 30px;
}

    .comments.comments-level-1 {
        margin-left: 136px;
    }

    .comments .pull-left {
        width: 100px;
        height: 100px;
        display: block;
        background-color: #f5f5f5;
        margin-right: 30px;
        position: relative;
        padding: 0;
    }

        .comments .pull-left .fa {
            font-size: 46px;
            display: block;
            text-align: center;
            margin: 25px 0;
        }

        .comments .pull-left img {
            width: 100%;
            height: auto;
            position: relative;
            z-index: 2;
        }

        .comments .pull-left span {
            position: absolute;
            display: inline-block;
            top: 15%;
        }

    .comments .media-body .media-title {
        color: #1fc0a0;
        padding-bottom: 14px;
    }

        .comments .media-body .media-title .username {
            font-size: 18px;
            font-style: italic;
            font-family: Georgia, sans-serif;
            display: inline-block;
            margin-right: 14px;
        }

        .comments .media-body .media-title .time {
            font-size: 16px;
        }

            .comments .media-body .media-title .time .fa {
                font-size: 20px;
                margin-right: 13px;
                position: relative;
                top: 3px;
            }

        .comments .media-body .media-title .link:hover {
            text-decoration: none;
        }

@media (max-width: 745px) {
    .comments {
        margin-bottom: 28px;
    }

        .comments.comments-level-1 {
            margin-left: 70px;
        }

        .comments .pull-left {
            width: 70px;
            height: 70px;
            margin-right: 20px;
        }

            .comments .pull-left:before {
                font-size: 46px;
                line-height: 1em;
                top: 10px;
            }

        .comments .media-body .media-title time {
            display: block;
        }

            .comments .media-body .media-title time .icon {
                font-size: 20px;
                margin: 0 6px 0 0;
                position: relative;
                top: 3px;
            }
}
/*===============================================
 [SASS DIRECTORY ]
 [1] HEADING
 [2] LINK & COLUMN
 [3] BLOCK FORM
 [4] BLOCK TABLE
 ==============================================*/
/*================ HEADING ===================*/

body svg {
    display: none;
}

body #content svg, body #header svg {
    display: block;
}

body .atm-i svg, body .content-main svg {
    display: block;
}

html {
    width: 100%;
    outline: 0 !important;
    direction: ltr;
}

body {
    color: #878787;
    font-size: 14px;
    line-height: 26px;
    background-color: #fff;
}

.owl2-carousel .owl2-item img {
    transform-style: inherit;
}

h1 {
    font-size: 24px;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 18px;
}

.h1, .h2, .h3, h1, h2, h3, .h4, .h5, .h6, h4, h5, h6 {
    margin: 0 0 15px 0;
}

* {
    outline: none !important;
}

::-webkit-scrollbar {
    width: 0.5em;
    height: 0.5em;
}

::-webkit-scrollbar-thumb {
    background: #777;
}

::-webkit-scrollbar-track {
    background: #d6d6d6;
}

body {
    scrollbar-face-color: #777;
    scrollbar-track-color: #d6d6d6;
}

input[type=text] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}


/*================  ===================*/
.no-margin {
    margin: 0;
}

/*================ LINK & COLUMN ===================*/
.textColor {
    color: #046094;
}

ul, ul.menu, ol.menu, ul.blank, .why-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

option {
    padding: 2px 5px;
    border-width: 1px;
}

.alert ol li {
    list-style-type: decimal;
    margin: 0 0 5px 15px;
}

img {
    max-width: 100%;
}

.over {
    overflow: visible;
}

.align-center {
    display: table;
    margin: 0 auto;
}

.text-danger {
    color: #fff;
    display: inline-block;
    background-color: #f9a106;
    padding: 0 5px;
    margin: 5px 0;
    border-radius: 3px;
}

a {
    color: #878787;
}

    a:hover {
        color: #e0000b;
        text-decoration: none;
    }

    a, a:visited, a:active, a:link, a:focus {
        cursor: pointer;
        text-decoration: none;
        outline: none;
    }

ol {
    counter-reset: item;
    padding: 0 0 0 15px;
}

sup {
    color: #f00;
    font-size: 100%;
    top: -4px;
}

.list-inline {
    display: inline-block;
    margin: 0;
}

.clearfix {
    clear: both;
}

.img-thumbnail.pull-left {
    margin-right: 30px;
}

.img-thumbnail.pull-right {
    margin-left: 30px;
}

.margin-zero {
    margin: 0;
}

.col-lg-15 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    float: left;
}

@media (min-width: 1200px) {
    .col-lg-15 {
        width: 20%;
        float: left;
    }

    .col-lg-2 {
        width: 16.66666667%;
    }
}
/*================ FORM ===================*/
legend {
    font-size: 18px;
    padding: 7px 0px;
}
/* @group 2. Inputs
 -------------------*/


*:focus {
    outline: none;
}

input#input-captcha {
    margin-bottom: 15px;
}

select:focus, textarea:focus, textarea:hover, input[type="text"]:focus, input[type="text"]:hover, input[type="password"]:focus, input[type="password"]:hover, input[type="datetime"]:focus, input[type="datetime"]:hover, input[type="date"]:focus, input[type="date"]:hover, input[type="month"]:focus, input[type="month"]:hover, input[type="number"]:focus, input[type="number"]:hover, input[type="email"]:focus, input[type="email"]:hover, input[type="search"]:focus, input[type="search"]:hover, input[type="tel"]:focus, input[type="tel"]:hover, .uneditable-input:hover {
    outline: none;
    background-color: #e9e9e9;
}

textarea {
    max-width: 100%;
}

.form-control {
    height: 38px;
}
/* @end */
/* @group 3. Dropdown 
 -------------------*/

.shopping_cart .btn-shopping-cart .checkout {
    padding: 10px 20px 20px 20px;
}

.shopping_cart .dropdown-menu .content-item {
    max-height: 245px;
    overflow: auto;
}

.shopping_cart .btn-shopping-cart .added_items {
    color: #222;
}

header .dropdown-menu {
    display: block;
    opacity: 0;
    filter: alpha(opacity=0);
    visibility: hidden;
    transition: all 0.2s ease-out;
    margin-top: 10px;
    padding: 10px 20px;
    min-width: 120px;
    box-shadow: 0 0px 5px 0px rgba(0, 0, 0, 0.2);
    left: 0;
    right: auto;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border-radius: 0px;
}

    header .dropdown-menu > li .btn-block {
        padding: 5px 0;
        line-height: 22px;
        color: #495057;
    }

        header .dropdown-menu > li .btn-block:hover {
            color: #046094;
        }

    header .dropdown-menu > li:hover button {
        color: #046094;
    }

    header .dropdown-menu .btn-block {
        border: none;
        background: transparent;
        text-align: left;
    }

.dropdown-menu > li > a {
    padding: 5px 0px;
    line-height: 22px;
    color: #495057;
}

    .dropdown-menu > li > a:hover {
        color: #046094;
    }

.btn-group .btn-link {
    text-align: left;
    background: transparent;
    text-decoration: none;
    padding: 5px 10px;
    color: #878787;
    font-weight: normal;
    color: #495057;
    position: relative;
    z-index: 1;
}

    .btn-group .btn-link:hover {
        color: #046094;
    }

.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
    background: transparent;
}

.nav-header {
    color: #667280;
}

@media (min-width: 1199px) {
    header .btn-group:hover .dropdown-menu, header .dropdown:hover .dropdown-menu, header .btn-shopping-cart:hover .dropdown-menu {
        margin-top: 0;
        opacity: 1;
        filter: alpha(opacity=100);
        visibility: visible;
    }
}

header .open > .dropdown-menu {
    margin-top: 0;
    opacity: 1;
    filter: alpha(opacity=100);
    visibility: visible;
}

.size-img-cart {
    width: 80px;
}

.dropdown-menu {
    background: #fff;
    padding: 5px 0;
    margin-top: 0;
    border-radius: 0px;
    border: none;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.15);
    font-size: 12px;
}

#cart .dropdown-menu {
    margin-right: 15px;
    padding: 0;
    width: 450px;
}

    #cart .dropdown-menu:after {
        left: auto;
        right: 49px;
    }

    #cart .dropdown-menu .checkout .btn-view-cart {
        float: left;
    }

#sosearchpro .dropdown-menu {
    top: 100%;
    display: none;
}

@media (min-width: 1200px) {
    #sosearchpro .dropdown-menu {
        min-width: 300px;
    }
}

#sosearchpro .dropdown-menu .media-left {
    float: left;
}

#sosearchpro .dropdown-menu .media-body a {
    color: #495057;
    float: none;
}

    #sosearchpro .dropdown-menu .media-body a:hover {
        color: #046094;
    }

#sosearchpro .dropdown-menu:after {
    display: none;
}
/* @end */
/* @group 4. Buttons 
 ------------------*/
.input-group .form-control:last-child, .input-group-addon:last-child, .input-group-btn:last-child > .btn, .input-group-btn:last-child > .dropdown-toggle, .input-group-btn:first-child > .btn:not(:first-child) {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.button, .btn {
    padding: 9px 20px;
    background: #495057;
    color: #fff;
    border-radius: 3px;
    border: none;
    background: #046094;
    border-color: #046094;
}

    .button:hover, .btn:hover {
        color: #fff;
        background: #495057;
        border-color: #495057;
    }

.btn-warning {
    background: #f0ad4e;
}

.btn-success {
    background: #5cb85c;
}

.btn-info {
    background: #999;
    border-radius: 0;
    text-transform: uppercase;
    visibility: visible;
}

.btn-primary {
    background: #999;
    text-transform: uppercase;
}

.btn-danger {
    background: #046094;
    border-radius: 5px;
}

.button .fa, .btn .fa {
    margin: 0 5px;
}

.button.inverse, .btn.inverse {
    background-color: #495057;
}

    .button.inverse:hover, .btn.inverse:hover {
        background-color: #046094;
    }

    .button.inverse:hover, .btn.inverse:hover {
        color: #fff;
    }

.button-continue-shopping {
    display: block;
    float: left;
}

.button-checkout {
    display: block;
    float: right;
}

.btn-lg, .btn-group-lg > .btn {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
}

.btn-sm, .btn-group-sm > .btn {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
}

.btn-xs, .btn-group-xs > .btn {
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
}
/* @end */
.btn-inline {
    display: inline-block;
}
/*================ POPUP ADDED TO CART ===================*/

.alert {
    position: relative;
    padding: 15px 20px;
    z-index: 30;
    color: #fff;
    border-radius: 0;
    min-height: 60px;
    box-sizing: border-box;
    border: none;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
    transition: 1s all cubic-bezier(1, -0.01, 0, 0.99);
}

    .alert i {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        text-align: center;
        width: 60px;
        font-size: 40px;
        -webkit-animation: alert-icon-anim 1s;
        -moz-animation: alert-icon-anim 1s;
        -o-animation: alert-icon-anim 1s;
        animation: alert-icon-anim 1s;
        text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.15);
    }

        .alert i:before {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            line-height: 0;
        }

    .alert a:hover {
        text-decoration: underline;
    }

    .alert button.close {
        position: absolute;
        top: 50%;
        line-height: 1;
        right: 15px;
        color: #fff;
        opacity: 0.7;
        background: none;
        border: none;
        -moz-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        -o-transform: translate(0, -50%);
        -webkit-transform: translate(0, -50%);
        transform: translate(0, -50%);
    }

        .alert button.close:hover, .alert button.close:focus {
            opacity: 1;
            color: #fff;
        }

    .alert.fadeOut {
        -moz-transform: translate(0, -100%);
        -ms-transform: translate(0, -100%);
        -o-transform: translate(0, -100%);
        -webkit-transform: translate(0, -100%);
        transform: translate(0, -100%);
    }

        .alert.fadeOut .alert {
            top: 100%;
        }

@media (max-width: 479px) {
    .alert {
        padding-right: 30px;
    }

        .alert button.close {
            right: 5px;
        }
}

.alert-success {
    background-color: #4caf50;
}

.alert-danger {
    background-color: #f44336;
}

    .alert-danger i {
        background: #d32f2f;
    }

.alert-info {
    background-color: #03a9f4;
}

.alert-warning {
    background-color: #ff5722;
}
/*================ TABLE ===================*/
.table thead > tr > th {
    background: #eee;
}

table.std th, table.std td {
    vertical-align: middle;
    border: #ccc;
    padding: 10px;
    text-align: center;
}

table.std th {
    white-space: nowrap;
    background: #f5f5f5;
}

table.std tfoot td {
    color: #333;
    text-align: right;
    white-space: nowrap;
}

table.std {
    background: #fdfdfd;
    border-spacing: 0;
    vertical-align: middle;
    border: #ccc;
    width: 100%;
}

table th {
    border: #ccc;
    color: #7a7a7a;
    font-size: 13px;
    font-weight: bold;
    padding: 10px;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
}

table tfoot td {
    text-align: right;
}

/*============ PAEG ABOUT US ==============*/
.box-1-about {
    margin-bottom: 20px;
}

.title-info {
    background: url("../../images/bg-title-about.png") repeat-x left 12px;
}

    .title-info h2 {
        background: #fff;
        display: inline-block;
        font-size: 22px;
        padding: 0 25px 6px 0;
        font-weight: 300;
        color: #333;
    }

.welcome-about-us {
    margin-top: 30px;
}

    .welcome-about-us .image-about-us {
        float: left;
        width: 270px;
        padding-top: 6px;
    }

    .welcome-about-us img:hover {
        opacity: 0.7;
    }

.our-member {
    clear: both;
    padding-top: 30px;
}

    .our-member img:hover {
        opacity: 0.7;
    }

.title-info {
    background: url("../../images/bg-title-about.png") repeat-x left 12px;
    margin-bottom: 17px;
}

    .title-info h2 {
        padding: 0 15px 6px 15px;
    }


.subtitle-info {
    background: url("../../images/bg-title-about.png") repeat-x left 12px;
    margin-bottom: 17px;
    text-align: center;
}

    .subtitle-info h2 {
        padding: 0 20px;
        background: #fff;
        display: inline-block;
        font-size: 16px;
        font-weight: 300;
        color: #333;
    }

/*============ PAGE 404  ==============*/
.button-404 > a {
    margin: 0 10px;
}

.content_404 {
    margin: 40px 0 30px;
    overflow: hidden;
}

    .content_404 .block-top h2 {
        color: #222;
        font-size: 24px;
        font-weight: bold;
        text-transform: uppercase;
        margin-bottom: 25px;
    }

    .content_404 .block-top .warning-code {
        font-size: 14px;
        color: #7d7d7d;
        margin-bottom: 40px;
    }


.title-under {
    position: relative;
    margin-bottom: 50px;
}

    .title-under:after {
        content: "";
        position: absolute;
        display: block;
        height: 4px;
        width: 68px;
        background: #046094;
        bottom: -10px;
    }

    .title-under.text-center:after {
        left: 50%;
        margin-left: -34px;
    }

/* PAGE - FAQ & Gallery
 =======================================================*/

.label-product, .label-new, .label-sale {
    text-align: center;
    background-color: #046094;
    border-radius: 0;
    color: #fff;
    display: block;
    font-size: 12px;
    font-weight: 400;
    min-width: 60px;
    height: 30px;
    line-height: 30px;
    position: absolute;
    top: 6px;
    text-transform: uppercase;
    z-index: 2;
    padding: 0 15px;
    margin-bottom: 5px;
}

.label-sale {
    background: rgb(183,1,32);
    background: linear-gradient(90deg, rgba(183,1,32,1) 0%, rgba(255,45,55,1) 100%);
    left: -11px;
}

.product-view .label-sale {
    left: 4px;
}

.label-sale:before {
    content: "";
    position: absolute;
    top: auto;
    bottom: -7px;
    left: 0;
    right: auto;
    border-bottom: 7px solid transparent;
    border-top: 0 solid transparent;
    border-right: 11px solid #c60009;
}

.label-product-new, .label-new {
    background-color: #3599ff;
    right: -11px;
}

    .label-product-new:before, .label-new:before {
        content: "";
        position: absolute;
        top: auto;
        bottom: -7px;
        right: 0;
        left: auto;
        border-bottom: 7px solid transparent;
        border-top: 0 solid transparent;
        border-left: 11px solid #0055ac;
    }

.label-percent {
    padding: 2px 5px;
    background: #046094;
    font-size: 13px;
    font-weight: normal;
}

.product-options label {
    padding: 0;
    color: #666;
}

.product-options .label {
    font-weight: normal;
    font-size: 11px;
}

.product-options .radio {
    position: relative;
    z-index: 2;
    cursor: pointer;
}

    .product-options .radio .fa {
        display: none;
    }

.product-options .active .fa {
    display: block;
}

.product-options .fa {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 22px;
    height: 22px;
    color: white;
    line-height: 22px;
    text-align: center;
}
/*============ BOX RATING ==============*/

.discount-amount {
    font-size: 12px;
    font-weight: 400;
    color: #F90606;
    text-align: right;
    line-height: 18px;
}

.discount-empty {
    height: 38px;
    width: 100%;
}

.old-price {
    font-size: 14px;
    font-weight: 400;
    color: #787878;
    text-decoration: line-through;
    text-align: right;
    line-height: 20px;
}

.cart-price {
    line-height: 24px;
    min-height: 24px;
    color: #282828;
    font-size: 18px;
    font-weight: 500;
}

.price {
    margin: 0 0 10px 0;
    line-height: 24px;
    min-height: 24px;
    color: #282828;
    font-size: 22px;
    font-weight: 500;
    text-align: right;
}

    .price .price-tax, .price-old {
        padding: 0;
        text-decoration: line-through;
        color: #aaa;
        font-size: 16px;
        font-weight: 400;
    }

    .price span.price {
        color: #282828;
    }

.price-new {
    color: #046094;
    font-size: 18px;
    font-weight: 500;
}

.price .callforprice {
    font-size: 12px;
    line-height: 100%;
}

/*====================PRODUCT CATEGORY ====================*/
.products-category .filter_group {
    width: 25%;
    display: inline-block;
    vertical-align: top;
}


.products-category .form-group .short-by {
    margin-right: 10px;
}
/*REFINE SEARCH CATEGORY*/
.refine-search__content::after {
    display: block;
    clear: both;
    content: "";
}

.refine-search__content .refine-loadmore {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: stretch;
    float: left;
    border: 1px solid #ddd;
    overflow: hidden;
    min-height: 49px;
    height: 110px;
    width: 80px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    border-radius: 4px;
    background: #f4f4f4;
}

    .refine-search__content .refine-loadmore > span {
        display: inline-block;
        padding: 0 5px;
    }

    .refine-search__content .refine-loadmore:hover {
        background: #046094;
        border-color: #046094;
        color: white;
    }

.refine-search__content .refine-search__subitem {
    width: 110px;
    float: left;
    margin-bottom: 15px;
    margin-right: 15px;
}

.refine-search .thumbnail {
    margin-bottom: 10px;
    border-color: #eaeaea;
}

.refine-search a {
    color: #495057;
    display: block;
}

    .refine-search a:hover {
        color: #046094;
    }

    .refine-search a:hover {
        border-color: #046094;
    }
/*TOOLBAR LISTING TOP*/

.filters-panel {
    border-radius: 0px;
    margin-bottom: 30px;
}

    .filters-panel::after {
        display: block;
        clear: both;
        content: "";
    }

    .filters-panel.product-filter-top {
        margin-top: 15px;
    }

    .filters-panel.product-filter-bottom {
        border-top: 1px solid #ebebeb;
        padding-top: 20px;
        margin-top: 20px;
    }

    .filters-panel .pagination {
        margin: 0;
    }

    .filters-panel .list-view {
        display: inline-block;
    }

        .filters-panel .list-view .btn-gridview {
            border: none;
            color: #484848;
            float: left;
            padding: 0 5px;
            font-size: 12px;
        }

        .filters-panel .list-view button.btn {
            margin: 0px;
            margin-right: 5px;
            width: 33px;
            height: 33px;
            line-height: 31px;
            background: #fafafa;
            text-align: center;
            padding: 0;
            border-radius: 3px !important;
            border: 1px solid #e5e5e5;
            color: #282828;
        }

            .filters-panel .list-view button.btn i {
                color: #282828;
            }

            .filters-panel .list-view button.btn:hover, .filters-panel .list-view button.btn.active {
                background: #046094;
                border-color: #046094;
                box-shadow: none;
                color: #fff;
            }

                .filters-panel .list-view button.btn:hover i, .filters-panel .list-view button.btn.active i {
                    color: #fff;
                }

            .filters-panel .list-view button.btn:focus {
                border-radius: 0;
                outline: none;
            }

        .filters-panel .list-view .fa {
            font-size: 14px;
        }

    .filters-panel label {
        font-size: 12px;
        font-weight: normal;
        color: #484848;
    }

    .filters-panel .btn-default {
        color: #878787;
        font-size: 12px;
    }

@media (min-width: 1200px) {
    .short-by-show {
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    .short-by-show {
        margin-top: 12px;
    }
}

.filters-panel .form-group {
    margin-left: 10px;
}

    .filters-panel .form-group.short-by {
        margin: 0;
    }

    .filters-panel .form-group select.form-control {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background: url(../../images/icon/bg-select.png) no-repeat center right;
        border: 1px solid #e5e5e5;
        height: 33px;
        line-height: 33px;
        padding: 0px 20px 0 10px;
        background-color: #fafafa;
        border-radius: 3px;
        color: #878787;
    }

        .filters-panel .form-group select.form-control:hover {
            cursor: pointer;
        }

/*================ PRODUCT LIST ===================*/
.products-list {
    clear: both;
}

    .products-list .product-layout {
        transition: all 0.5s ease 0s;
        display: block;
        padding-left: 5px;
        padding-right: 5px;
    }

        .products-list .product-layout .product-item-container {
            position: relative;
        }

            .products-list .product-layout .product-item-container .left-block {
                position: relative;
            }

                .products-list .product-layout .product-item-container .left-block .product-image-container {
                    margin-bottom: 0;
                    text-align: center;
                }


            .products-list .product-layout .product-item-container:hover .left-block .product-image-container a:before {
                -webkit-opacity: 1;
                -moz-opacity: 1;
                -ms-opacity: 1;
                -o-opacity: 1;
                opacity: 1;
            }

    .products-list .product-grid .product-item-container {
        background-color: #fff;
        margin: 0 0 10px 0;
        padding: 0;
        position: relative;
        border: 1px solid #e5e5e5;
        overflow: visible;
    }

        .products-list .product-grid .product-item-container:before {
            opacity: 0;
            visibility: hidden;
            content: '';
            display: block;
            position: absolute;
            left: 0;
            top: 0;
            right: 0;
            height: 100%;
            z-index: -1;
            -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
            -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
            box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
            transition: all 0.4s ease-in-out 0s;
        }

        .products-list .product-grid .product-item-container .left-block {
            position: relative;
        }

            .products-list .product-grid .product-item-container .left-block .product-image-container {
                position: relative;
                overflow: hidden;
                padding:14px;
            }

                .products-list .product-grid .product-item-container .left-block .product-image-container img {
                    width: 100%;
                }

            .products-list .product-grid .product-item-container .left-block .loading span {
                visibility: hidden;
            }

            .products-list .product-grid .product-item-container .left-block .loading:before {
                content: "\e6c2";
                display: block;
                font-family: 'Pe-icon-7-stroke';
                position: absolute;
                color: #fff;
                left: calc(50% - 8px);
                font-size: 18px;
                -webkit-animation: spinner 2s infinite linear;
                animation: spinner 2s infinite linear;
            }

            .products-list .product-grid .product-item-container .left-block .cartinfo--left {
                left: 5px;
                top: 5px;
            }

            .products-list .product-grid .product-item-container .left-block .cartinfo--right {
                right: 5px;
                top: 5px;
            }

            .products-list .product-grid .product-item-container .left-block .cartinfo--center {
                width: 100%;
                bottom: 50%;
                margin-bottom: -20px;
                display: flex;
                justify-content: center;
            }

                .products-list .product-grid .product-item-container .left-block .cartinfo--center .btn-button {
                    float: left;
                }

        .products-list .product-grid .product-item-container .button-group {
            padding: 0;
            position: absolute;
            z-index: 99;
        }

            .products-list .product-grid .product-item-container .button-group .btn-button {
                border: none;
                display: block;
                width: 44px;
                height: 44px;
                text-align: center;
                line-height: 44px;
                background-color: #fff;
                font-size: 14px;
                color: #222;
                transition: all 0.3s cubic-bezier(0.45, 0.22, 0.27, 1.55) 0s;
                opacity: 0;
                -webkit-transform: scale(0.5);
                -moz-transform: scale(0.5);
                -ms-transform: scale(0.5);
                -o-transform: scale(0.5);
                transform: scale(0.5);
                visibility: hidden;
                margin: 0 0 5px 0;
                box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.14);
            }

                .products-list .product-grid .product-item-container .button-group .btn-button span {
                    display: none;
                }

                .products-list .product-grid .product-item-container .button-group .btn-button.addToCart {
                    transition-delay: 0.3s;
                }

                .products-list .product-grid .product-item-container .button-group .btn-button:hover {
                    background-color: #046094;
                    color: #fff;
                }

            .products-list .product-grid .product-item-container .button-group.cartinfo--center .btn-button {
                margin: 0 2px;
                width: 40px;
                height: 40px;
                text-align: center;
                line-height: 40px;
            }


        .products-list .product-grid .product-item-container .right-block {
            clear: both;
            border-top: 1px solid #e5e5e5;
            text-align: right;
            padding: 15px 8px 19px 8px;
        }

            .products-list .product-grid .product-item-container .right-block .price {
                margin-bottom: 6px;
                margin-top: 3px;
                min-height: 25px;
            }

            .products-list .product-grid .product-item-container .right-block h4 {
                margin: 0 0 5px 0;
                font-weight: 400;
            }

                .products-list .product-grid .product-item-container .right-block h4 a {
                    font-size: 14px;
                    color: #282828;
                    text-transform: uppercase;
                    -webkit-line-clamp: 3; /* number of lines to show */
                    -webkit-box-orient: vertical;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    display: -webkit-box;
                    height: 48px;
                    text-align: center;
                }

                    .products-list .product-grid .product-item-container .right-block h4 a:hover {
                        color: #046094;
                    }

        .products-list .product-grid .product-item-container.item--static .cartinfo--static {
            background-color: #282828;
            position: absolute;
            top: -44px;
            left: 0;
            display: table;
            width: 100%;
            height: 44px;
            opacity: 0;
            transition: all 0.4s ease-in-out 0s;
        }

            .products-list .product-grid .product-item-container.item--static .cartinfo--static .addToCart {
                display: table-cell;
                height: 44px;
                line-height: 46px;
                background-color: #282828;
                width: 100%;
                padding: 0 44px;
                position: absolute;
                top: 0;
                left: 0;
                z-index: 1;
                border: none;
                font-size: 14px;
                text-transform: uppercase;
                color: #fff;
            }

                .products-list .product-grid .product-item-container.item--static .cartinfo--static .addToCart i {
                    display: none;
                }

                .products-list .product-grid .product-item-container.item--static .cartinfo--static .addToCart span {
                    display: block;
                }

                .products-list .product-grid .product-item-container.item--static .cartinfo--static .addToCart:hover {
                    background-color: #046094;
                    color: #fff;
                }

            .products-list .product-grid .product-item-container.item--static .cartinfo--static .btn-button {
                margin: 0;
                display: table-cell;
                opacity: 1;
                -webkit-transform: scale(1);
                -moz-transform: scale(1);
                -ms-transform: scale(1);
                -o-transform: scale(1);
                transform: scale(1);
                visibility: visible;
                position: absolute;
                top: 0;
                z-index: 3;
                background-color: #282828;
                color: #fff;
                box-shadow: none;
            }

                .products-list .product-grid .product-item-container.item--static .cartinfo--static .btn-button:hover {
                    background-color: #046094;
                    color: #fff;
                    border-color: #046094;
                }

        .products-list .product-grid .product-item-container.item--static .right-block {
            display: inline-block;
            width: 100%;
            position: relative;
            background-color: #fff;
            transition: all 0.4s ease-in-out 0s;
            z-index: 99;
            top: 0;
        }

        .products-list .product-grid .product-item-container.item--static:hover {
            border-color: #f5f5f5;
            z-index: 9;
        }

        .products-list .product-grid .product-item-container:hover:before {
            opacity: 1;
            visibility: visible;
        }

        .products-list .product-grid .product-item-container:hover .left-block .button-group .btn-button {
            opacity: 1;
            -webkit-transform: scale(1);
            -moz-transform: scale(1);
            -ms-transform: scale(1);
            -o-transform: scale(1);
            transform: scale(1);
            visibility: visible;
        }

        .products-list .product-grid .product-item-container:hover .left-block .product-image-container:before {
            visibility: visible;
            -webkit-opacity: 1;
            -moz-opacity: 1;
            -ms-opacity: 1;
            -o-opacity: 1;
            opacity: 1;
            transition: all 0.3s ease-in-out 0s;
        }

        .products-list .product-grid .product-item-container:hover .left-block .label-product {
            display: none;
        }

@media (min-width: 1200px) {
    .products-list .product-grid-4:nth-child(4n+1) {
        clear: both !important;
    }
}

.products-list .product-grid-4 .product-item-container .right-block .addToCart {
    padding: 0 5px;
}

    .products-list .product-grid-4 .product-item-container .right-block .addToCart.btn-callfor {
        padding: 0 5px !important;
    }

@media (min-width: 1200px) {
    .products-list .product-grid-5:nth-child(5n+1) {
        clear: both !important;
    }
}

.products-list .product-grid-5 .product-item-container {
    padding: 0px;
}

.products-list .product-list .box-label {
    left: 5px;
}

.products-list .product-list .product-item-container {
    border: 1px solid #e5e5e5;
    margin-bottom: 3px;
}

    .products-list .product-list .product-item-container .left-block {
        padding: 0 7px 0 0;
        width: 130px;
        float: left;
        position: relative;
    }

@media (max-width: 767px) {
    .products-list .product-list .product-item-container .left-block {
        width: 40%;
    }
}

.products-list .product-list .product-item-container .left-block .product-image-container {
    text-align: center;
}

.products-list .product-list .product-item-container .left-block .addToCart, .products-list .product-list .product-item-container .left-block .button-group {
    display: none !important;
}

.products-list .product-list .product-item-container .right-block {
    margin-left: 120px;
    padding: 10px 20px 0 0;
    text-align: right;
}

@media (max-width: 767px) {
    .products-list .product-list .product-item-container .right-block {
        margin-left: 40%;
        padding: 10px 10px 10px 0;
    }
}

.products-list .product-list .product-item-container .right-block .button-group {
    display: none;
}

.products-list .product-list .product-item-container .right-block h4 {
    margin-bottom: 5px;
    font-weight: 400;
    text-align: left;
}

    .products-list .product-list .product-item-container .right-block h4 a {
        color: #444;
        text-transform: uppercase;
        font-size: 16px;
    }

        .products-list .product-list .product-item-container .right-block h4 a:hover {
            color: #046094;
        }

.products-list .product-list .product-item-container .right-block .price {
    display: inline-block;
    margin: 8px 0 8px 0;
}

.products-list .product-list .product-item-container .right-block .description {
    margin-bottom: 10px;
}

    .products-list .product-list .product-item-container .right-block .description button i {
        display: none;
    }

.products-list .product-grid .product-item-container .right-block .description input {
    background-color: white;
    border: solid 1px;
    padding: 4px 5px 4px 10px;
    width: 60px;
    font-size: 16px;
    vertical-align: top;
}

.products-list .product-grid .product-item-container .right-block .description button {
    vertical-align: top;
    padding: 3px 12px;
}

    .products-list .product-grid .product-item-container .right-block .description button span {
        display: none;
    }

    .products-list .product-grid .product-item-container .right-block .description button i {
        font-size: 28px;
    }


.products-list .product-list .product-item-container .right-block .description button {
    vertical-align: top;
    padding: 10px 20px;
}

.products-list .product-list .product-item-container .right-block .description input {
    background-color: white;
    border: solid 1px;
    padding: 6px 6px 6px 10px;
    width: 70px;
    font-size: 18px;
    vertical-align: top;
}


@media (max-width: 767px) {
    .products-list .product-list .product-item-container .label-product {
        display: none;
    }
}


.product-listing {
    padding: 0;
}
    /*SIDEBAR LISTING - RESPONSIVE*/

    .product-detail .open-sidebar, .product-listing .open-sidebar {
        display: inline-block;
        border: 2px solid #999;
        padding: 3px 15px;
        letter-spacing: 1px;
        line-height: 23px;
        font-size: 10px;
        vertical-align: top;
        text-transform: uppercase;
    }

        .product-detail .open-sidebar:hover, .product-listing .open-sidebar:hover {
            border-color: #046094;
        }

.product-detail .open-sidebar {
    margin-bottom: 15px;
}

#close-sidebar {
    display: none;
}

@media only screen and (max-width: 992px) {
    body.open-sboff {
        height: 100%;
        overflow: hidden;
    }

    .blog-detail .sidebar-overlay, .blog-list .sidebar-overlay, .product-detail .sidebar-overlay, .product-listing .sidebar-overlay {
        background: rgba(0, 0, 0, 0.5);
        display: none;
        height: 100%;
        opacity: 1;
        position: fixed;
        top: 0;
        left: 0px;
        right: 0px;
        width: 100%;
        z-index: 9998;
    }

    .blog-detail .sidebar-offcanvas, .blog-list .sidebar-offcanvas, .product-detail .sidebar-offcanvas, .product-listing .sidebar-offcanvas {
        padding-left: 15px !important;
        padding-right: 10px !important;
        background: #fff;
        width: 300px;
        position: fixed;
        top: 0px;
        bottom: 0px;
        z-index: 9999;
        height: 100%;
        overflow-x: scroll;
        box-shadow: 0 0 5px 0 rgba(50, 50, 50, 0.75);
        transition: all 300ms ease-in-out;
        padding-top: 40px;
        margin: 0px;
    }

        .blog-detail .sidebar-offcanvas #close-sidebar, .blog-list .sidebar-offcanvas #close-sidebar, .product-detail .sidebar-offcanvas #close-sidebar, .product-listing .sidebar-offcanvas #close-sidebar {
            position: absolute;
            top: 10px;
            right: 20px;
            font-size: 16px;
            display: block;
        }

            .blog-detail .sidebar-offcanvas #close-sidebar:hover, .blog-list .sidebar-offcanvas #close-sidebar:hover, .product-detail .sidebar-offcanvas #close-sidebar:hover, .product-listing .sidebar-offcanvas #close-sidebar:hover {
                cursor: pointer;
                color: #f00;
            }

        .blog-detail .sidebar-offcanvas.right_column, .blog-list .sidebar-offcanvas.right_column, .product-detail .sidebar-offcanvas.right_column, .product-listing .sidebar-offcanvas.right_column {
            right: -100%;
        }

        .blog-detail .sidebar-offcanvas.left_column, .blog-list .sidebar-offcanvas.left_column, .product-detail .sidebar-offcanvas.left_column, .product-listing .sidebar-offcanvas.left_column {
            left: -100%;
        }

            .blog-detail .sidebar-offcanvas.left_column.active, .blog-list .sidebar-offcanvas.left_column.active, .product-detail .sidebar-offcanvas.left_column.active, .product-listing .sidebar-offcanvas.left_column.active {
                left: 0;
            }

        .blog-detail .sidebar-offcanvas.right_column.active, .blog-list .sidebar-offcanvas.right_column.active, .product-detail .sidebar-offcanvas.right_column.active, .product-listing .sidebar-offcanvas.right_column.active {
            right: 0;
        }
}


/*============ QUICKVIEW ==============*/
.mfp-iframe-scaler iframe {
    padding: 20px 10px 10px 10px;
    height: 535px;
}

#product-quick #product {
    margin-top: 20px;
}

#product-quick .product-view .content-product-right .title-product h1 {
    margin-bottom: 10px;
}

#product-quick .product-view .content-product-right .product-box-desc {
    padding: 10px;
    border: 1px dotted #ddd;
    margin: 0;
    font-style: italic;
    color: #999;
    font-size: 12px;
}

    #product-quick .product-view .content-product-right .product-box-desc span {
        font-weight: normal;
    }

@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/*===============================================
 [SASS DIRECTORY ]
 [1] CONTENT PRODUCT OTHER
 [2] PRODUCT INFO
 [3] PRODUCT TABS 
 [3] RELATED PRODUCT 
 ==============================================*/
.tab-content > .active {
    opacity: 1;
}

#button-review {
    visibility: visible;
}
/*============CONTENT PRODUCT OTHER ==================*/
.zoomContainer {
    z-index: 450;
}

.lightSlider {
    padding: 0;
}

.product_page_price {
    margin-top: 10px;
    margin: 10px 0;
    line-height: 24px;
    min-height: 24px;
    color: #282828;
    font-size: 18px;
    font-weight: 500;
}

    .product_page_price .price-new {
        font-size: 28px;
    }

    .product_page_price .price-old {
        vertical-align: top;
    }

    .product_page_price .price-tax {
        margin-bottom: 10px;
        color: #495057;
        font-size: 12px;
        font-weight: normal;
    }

    .product_page_price .label-product {
        position: static;
        display: inline-block;
        border-radius: 2px;
        height: auto;
        padding: 0 10px;
        width: auto;
        line-height: 22px;
        vertical-align: top;
    }

    .product_page_price .discount {
        font-size: 16px;
        font-weight: 400;
        color: #F90606;
        text-align: left;
        line-height: 26px;
    }

.product-detail a.thumbnail.active, .product-detail a.thumbnail:focus, .product-detail a.thumbnail:hover {
    border-color: #046094;
}

.product-detail .so-extraslider {
    margin: 0;
}

.product-detail .producttab .tab-content ul, .product-detail .producttab .tab-content ol {
    display: block;
    list-style-type: disc;
    -webkit-margin-before: 1em;
    -webkit-margin-after: 1em;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
    -webkit-padding-start: 40px;
    padding-left: 20px;
}


/*============PRODUCT INFO ==================*/
.product-view {
    margin-bottom: 30px;
}

    .product-view .content-product-mainbody {
        margin-top: 40px;
    }

    .product-view .content-product-left .large-image {
        cursor: pointer;
        display: block;
        overflow: hidden;
        position: relative;
        border: 1px solid #eaeaea;
        padding: 0px;
        text-align: center;
    }

    .product-view .content-product-left .full_slider {
        margin: 0;
        margin-top: 10px;
    }

        .product-view .content-product-left .full_slider .image-additional {
            padding: 0;
            float: left;
            margin-bottom: 10px;
            width: 100%;
        }

        .product-view .content-product-left .full_slider .thumbnail {
            border-color: #eaeaea;
            padding: 0;
            border-radius: 0;
            margin-bottom: 0;
        }

            .product-view .content-product-left .full_slider .thumbnail.active {
                border-color: #666;
            }

        .product-view .content-product-left .full_slider:hover .owl2-controls {
            opacity: 1;
        }

        .product-view .content-product-left .full_slider .owl2-controls {
            opacity: 0;
            transition: 0.3 all ease-in-out;
        }

            .product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-prev, .product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-next {
                background-color: #999;
                border: none;
                border-radius: 0px;
                width: 30px;
                height: 30px;
                line-height: 30px;
                text-align: center;
                float: left;
                text-indent: -9999px;
                overflow: hidden;
                cursor: pointer;
                opacity: 1;
                position: absolute;
                top: 50%;
                z-index: 99;
            }

                .product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-prev:before, .product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-next:before {
                    color: #fff;
                    font-family: 'FontAwesome';
                    display: block;
                    text-indent: 0 !important;
                    width: 100%;
                    height: 100%;
                    font-size: 36px;
                }

                .product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-prev.owl2-next, .product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-next.owl2-next {
                    right: 0;
                }

                    .product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-prev.owl2-next:before, .product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-next.owl2-next:before {
                        content: "\f105";
                    }

                .product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-prev.owl2-prev, .product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-next.owl2-prev {
                    left: 0;
                }

                    .product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-prev.owl2-prev:before, .product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-next.owl2-prev:before {
                        content: "\f104";
                    }

                .product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-prev:hover, .product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-next:hover {
                    background-color: #046094;
                }

                    .product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-prev:hover:before, .product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-next:hover:before {
                        color: #fff;
                    }

            .product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-prev, .product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-next {
                margin-top: -20px;
            }

                .product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-prev:before, .product-view .content-product-left .full_slider .owl2-controls .owl2-nav .owl2-next:before {
                    font-size: 16px;
                }

    .product-view .content-product-midde {
        width: 100%;
        display: inline-block;
    }

@media (min-width: 1200px) {
    .product-view div.col-gallery-slider .product-box-desc {
        position: absolute;
        width: 45% !important;
        right: 0;
        transform: translateY(-100%);
    }

    .product-view div.col-gallery-slider .short_description {
        position: absolute;
        width: 45%;
        right: 0;
    }
}

.product-view .content-product-right {
    overflow: hidden;
}

    .product-view .content-product-right .title-product h1 {
        font-size: 18px;
        font-size: 1.8rem;
        text-transform: uppercase;
        color: #222;
        font-weight: 400;
    }

    .product-view .content-product-right .product-box-desc {
        float: left;
        width: 100%;
        margin-bottom: 20px;
        position: relative;
    }

        .product-view .content-product-right .product-box-desc span {
            display: inline-block;
            min-width: 120px;
        }

        .product-view .content-product-right .product-box-desc .brand a {
            color: #878787;
        }

            .product-view .content-product-right .product-box-desc .brand a:hover {
                color: #046094;
            }

    .product-view .content-product-right .product-label {
        line-height: 24px;
        margin-top: 15px;
        float: left;
        width: 100%;
    }

        .product-view .content-product-right .product-label .price {
            float: left;
            margin-top: 0;
            margin-bottom: 0;
        }

    .product-view .content-product-right .short_description {
        display: block;
        padding-top: 20px;
        clear: both;
    }

        .product-view .content-product-right .short_description h3 {
            margin-bottom: 5px;
        }

        .product-view .content-product-right .short_description ol {
            padding: 0;
        }

    .product-view .content-product-right h3 {
        font-size: 14px;
        text-transform: uppercase;
        font-weight: 600;
    }

    .product-view .content-product-right .box-info-product {
        float: left;
        width: 100%;
        margin: 0;
    }

        .product-view .content-product-right .box-info-product .quantity {
            margin-bottom: 25px;
        }

            .product-view .content-product-right .box-info-product .quantity .control-label {
                min-width: 120px;
            }

            .quantity-control {
                border: 1px solid #C6C6C6;
            }

                .quantity-control input {
                    float: left;
                    width: 40px;
                    height: 40px;
                    line-height: 40px;
                    padding: 0;
                    text-align: center;
                    font-size: 16px;
                    background-color: #fff;
                    border: none;
                    position: relative;
                    z-index: 2;
                    margin-bottom: 0;
                    color: #555;
                }

                .quantity-control span {
                    width: 30px;
                    height: 40px;
                    border: none;
                    color: #C6C6C6;
                    float: left;
                    line-height: 40px;
                    padding: 0;
                }

                    .quantity-control span:hover {
                        background-color: #efeded;
                        cursor: pointer;
                    }

        .product-view .content-product-right .box-info-product .cart {
            margin: 0 0 10px;
        }

            .product-view .content-product-right .box-info-product .cart .btn {
                background-color: #046094;
                border-radius: 3px;
                border: none;
                color: #fff;
                font-weight: 600;
                padding: 12px;
                text-transform: uppercase;
                display: block;
                overflow: hidden;
                text-overflow: ellipsis;
                display: inline-block;
                vertical-align: top;
                max-width: 200px;
                width: 200px;
            }

                .product-view .content-product-right .box-info-product .cart .btn.btn-checkout {
                    margin: 0 15px;
                    background-color: #b1cc0e;
                }

                    .product-view .content-product-right .box-info-product .cart .btn.btn-checkout:hover {
                        background-color: #889c0b;
                    }

                .product-view .content-product-right .box-info-product .cart .btn:hover {
                    background-color: #f9000c;
                }

        .product-view .content-product-right .box-info-product .add-to-links {
            font-size: 13px;
            text-transform: uppercase;
            padding: 10px 0;
            display: inline-block;
        }

            .product-view .content-product-right .box-info-product .add-to-links .fa {
                width: 27px;
                height: 27px;
                line-height: 25px;
                text-align: center;
                margin-right: 10px;
                background: #ffe8e8;
                border: 1px solid #ffe8e8;
                border-radius: 50%;
            }

    .product-view .content-product-right .share {
        margin-top: 10px;
    }

#product {
    margin-top: 20px;
}

    #product div.required .control-label:before {
        content: '* ';
        color: #f00;
        font-weight: bold;
    }

    #product .image_option_type .product-options {
        display: inline-block;
    }

    #product .control-label {
        font-weight: 400;
        margin-bottom: 5px;
    }

    #product .product-options .img-thumbnail {
        width: 22px;
        height: 22px;
        border-radius: 0;
        padding: 1px;
    }

    #product .option_image label {
        padding: 0;
    }

    #product .option_image input {
        visibility: hidden;
    }

    #product .option_image .option-name {
        padding: 0 5px;
    }

    #product .icheckbox.checked:before, #product .iradio.checked:before {
        background-color: #046094;
        border-color: #046094;
    }

.thumb-vertical-outer {
    width: 90px;
    position: relative;
    float: left;
    margin-right: 15px;
}

    .thumb-vertical-outer .thumbnail {
        border-color: #f7f7f7;
        padding: 0;
        border-radius: 0;
        margin-bottom: 5px;
    }

        .thumb-vertical-outer .thumbnail.active {
            border-color: #046094;
        }
/*============PRODUCT TABS==================*/
.producttab .tabsslider.horizontal-tabs {
    z-index: 1;
    padding: 0;
    margin-top: 0px;
    margin-bottom: 40px;
    float: left;
    width: 100%;
    border: none;
}

    .producttab .tabsslider.horizontal-tabs .nav-tabs {
        margin-bottom: 30px;
        border: none;
        border-bottom: 1px solid #e5e5e5;
    }

        .producttab .tabsslider.horizontal-tabs .nav-tabs li {
            float: left;
            margin: 0;
            margin-right: 30px;
        }

            .producttab .tabsslider.horizontal-tabs .nav-tabs li a {
                background-color: #fff;
                float: left;
                display: block;
                font-size: 16px;
                color: #282828;
                padding: 10px 0px 15px 0 !important;
                margin: 0;
                cursor: pointer;
                font-weight: 500;
                border-radius: 20px;
                border: none;
                line-height: 100%;
                transition: all 0.2s ease-in-out 0s;
                position: relative;
            }

                .producttab .tabsslider.horizontal-tabs .nav-tabs li a:before {
                    position: absolute;
                    content: "";
                    width: 100%;
                    height: 2px;
                    background-color: transparent;
                    left: 0;
                    bottom: -1px;
                }

            .producttab .tabsslider.horizontal-tabs .nav-tabs li.active a, .producttab .tabsslider.horizontal-tabs .nav-tabs li:hover a {
                color: #046094;
            }

                .producttab .tabsslider.horizontal-tabs .nav-tabs li.active a:before, .producttab .tabsslider.horizontal-tabs .nav-tabs li:hover a:before {
                    background-color: #046094;
                }

    .producttab .tabsslider.horizontal-tabs .tab-content {
        padding: 0;
        display: block;
        margin: 0;
        background-color: #fff;
        border-radius: 0px;
        border: none;
    }

        .producttab .tabsslider.horizontal-tabs .tab-content .active {
            opacity: 1;
        }

.producttab .tabsslider.vertical-tabs {
    background-color: #fff;
    border: 1px solid #e6e6e6;
    padding: 0;
    border-bottom: 1px solid #ddd;
    border-radius: 0px;
    margin-bottom: 80px;
}

    .producttab .tabsslider.vertical-tabs ul.nav-tabs {
        border-bottom: medium none;
        margin: 0;
        min-height: 180px;
        padding: 0;
    }

        .producttab .tabsslider.vertical-tabs ul.nav-tabs li {
            border: none;
            border-bottom: 1px solid #ddd;
            clear: both;
            position: relative;
            width: 100%;
            padding: 5px 0;
            border-right: none;
        }

            .producttab .tabsslider.vertical-tabs ul.nav-tabs li a {
                padding: 8px 30px;
                border: none;
                border-radius: 0;
                font-size: 16px;
                text-transform: uppercase;
                font-weight: 500;
            }

            .producttab .tabsslider.vertical-tabs ul.nav-tabs li:hover {
                border-color: #ddd;
            }

                .producttab .tabsslider.vertical-tabs ul.nav-tabs li:hover a {
                    background: transparent;
                }

            .producttab .tabsslider.vertical-tabs ul.nav-tabs li:last-child {
                border: none;
            }

            .producttab .tabsslider.vertical-tabs ul.nav-tabs li:before {
                content: "";
                width: 5px;
                height: 100%;
                left: -1px;
                position: absolute;
                top: 0;
                transition: all 0.3s ease-in-out 0s;
                z-index: 99;
            }

            .producttab .tabsslider.vertical-tabs ul.nav-tabs li:hover {
                border-left-color: #046094;
            }

                .producttab .tabsslider.vertical-tabs ul.nav-tabs li:hover a {
                    color: #046094;
                    border: none;
                }

                .producttab .tabsslider.vertical-tabs ul.nav-tabs li:hover:before {
                    background-color: #046094;
                }

            .producttab .tabsslider.vertical-tabs ul.nav-tabs li.active {
                border-left-color: #046094;
            }

                .producttab .tabsslider.vertical-tabs ul.nav-tabs li.active:before {
                    background-color: #046094;
                }

                .producttab .tabsslider.vertical-tabs ul.nav-tabs li.active a {
                    background: transparent;
                    color: #046094;
                    border: none;
                }

    .producttab .tabsslider.vertical-tabs .tab-content {
        border: 0;
        border-left: 1px solid #e6e6e6;
        min-height: 200px;
        margin-bottom: 0;
        padding: 20px;
    }


.product-description {
    width:100%;
}

    .product-description table {
        width: 100%;
    }

    .product-description .pd-section {
        background: rgb(189,96,4);
        background: linear-gradient(47deg, rgba(189,96,4,1) 0%, rgba(244,150,58,1) 100%);
        color: white;
    }

    .product-description .pd-section td {
        padding:5px 10px;
    }

    .product-description tr .pd-item {
        
    }

    .product-description .pd-item td {
        padding: 5px 5px 5px 15px
    }

        .product-description .pd-item td:first-child {
            font-weight: 500;
        }

.desc-spacer {
    height: 10px;
    padding:0;
}

/*============RELATED PRODUCT==================*/
.related-horizontal h3.modtitle {
    border-bottom: 1px solid #eaeaea;
    display: inline-block;
    width: 100%;
    position: relative;
    margin-top: 0 !important;
}

    .related-horizontal h3.modtitle span {
        font-size: 18px;
        color: #222;
        font-weight: 700;
        float: left;
        text-transform: uppercase;
        margin-bottom: 15px;
    }

.related-horizontal .related-products {
    position: static;
    padding-bottom: 40px;
}

.related-horizontal .modtitle {
    margin-bottom: 20px;
}

.related-horizontal .related-products-slider {
    position: relative;
    z-index: 2;
}
/*==== related vertical ===*/

.product-view .social-share {
    margin-top: 15px;
    display: inline-block;
    width: 100%;
}

    .product-view .social-share .title-share {
        float: left;
        font-size: 14px;
        color: #222;
        text-transform: uppercase;
        font-weight: 700;
        margin-top: 3px;
        margin-right: 10px;
    }

    .product-view .social-share .wrap-content {
        float: left;
    }

        .product-view .social-share .wrap-content a {
            margin-left: 5px;
        }

.content-product-bottom {
    position: relative;
    display: inline-block;
    width: 100%;
}

    .content-product-bottom .nav-tabs {
        border-bottom: 2px solid #ebebeb;
        position: relative;
        display: inline-block;
        width: 100%;
    }

        .content-product-bottom .nav-tabs:after {
            position: absolute;
            content: "";
            bottom: -2px;
            left: 0;
            width: 110px;
            background-color: #222;
            height: 2px;
        }

        .content-product-bottom .nav-tabs li {
            margin-bottom: 0;
            margin-right: 50px;
            position: relative;
        }

            .content-product-bottom .nav-tabs li:last-child:after {
                display: none;
            }

            .content-product-bottom .nav-tabs li:after {
                position: absolute;
                content: "";
                top: 13px;
                right: -25px;
                width: 1px;
                background-color: #999;
                height: 15px;
            }

            .content-product-bottom .nav-tabs li a {
                border: none;
                font-size: 20px;
                color: #666;
                font-weight: 500;
                padding: 5px 0;
            }

                .content-product-bottom .nav-tabs li a:hover, .content-product-bottom .nav-tabs li a:focus {
                    border: none;
                    color: #222;
                    background-color: transparent;
                }

            .content-product-bottom .nav-tabs li.active > a {
                background-color: transparent;
                border: none;
                color: #222;
            }

    .content-product-bottom .tab-content {
        border: none;
        padding: 0;
    }

        .content-product-bottom .tab-content .active.tab-pane {
            height: auto;
            display: block;
            overflow: hidden;
        }

    .content-product-bottom .owl2-controls .owl2-nav {
        position: static;
    }

        .content-product-bottom .owl2-controls .owl2-nav .slick-arrow, .content-product-bottom .owl2-controls .owl2-nav .owl2-prev, .content-product-bottom .owl2-controls .owl2-nav .owl2-next {
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 50%;
            width: 34px;
            height: 34px;
            line-height: 30px;
            text-align: center;
            float: left;
            text-indent: -9999px;
            overflow: hidden;
            cursor: pointer;
            opacity: 1;
            z-index: 99;
            font-size: 24px;
            position: absolute;
            top: 50%;
            margin-top: -17px;
            transition: all 0.2s ease-in-out 0s;
            font-weight: 400;
        }

            .content-product-bottom .owl2-controls .owl2-nav .slick-arrow:before, .content-product-bottom .owl2-controls .owl2-nav .owl2-prev:before, .content-product-bottom .owl2-controls .owl2-nav .owl2-next:before {
                color: #282828;
                font-family: 'FontAwesome';
                display: block;
                text-indent: 0 !important;
                width: 100%;
                height: 100%;
                font-size: 24px;
            }

            .content-product-bottom .owl2-controls .owl2-nav .slick-arrow.slick-next, .content-product-bottom .owl2-controls .owl2-nav .owl2-prev.slick-next, .content-product-bottom .owl2-controls .owl2-nav .owl2-next.slick-next, .content-product-bottom .owl2-controls .owl2-nav .slick-arrow.owl2-next, .content-product-bottom .owl2-controls .owl2-nav .owl2-prev.owl2-next, .content-product-bottom .owl2-controls .owl2-nav .owl2-next.owl2-next {
                right: -17px;
                left: auto;
            }

@media (max-width: 767px) {
    .content-product-bottom .owl2-controls .owl2-nav .slick-arrow.slick-next, .content-product-bottom .owl2-controls .owl2-nav .owl2-prev.slick-next, .content-product-bottom .owl2-controls .owl2-nav .owl2-next.slick-next, .content-product-bottom .owl2-controls .owl2-nav .slick-arrow.owl2-next, .content-product-bottom .owl2-controls .owl2-nav .owl2-prev.owl2-next, .content-product-bottom .owl2-controls .owl2-nav .owl2-next.owl2-next {
        right: 5px !important;
    }
}

.content-product-bottom .owl2-controls .owl2-nav .slick-arrow.slick-next:before, .content-product-bottom .owl2-controls .owl2-nav .owl2-prev.slick-next:before, .content-product-bottom .owl2-controls .owl2-nav .owl2-next.slick-next:before, .content-product-bottom .owl2-controls .owl2-nav .slick-arrow.owl2-next:before, .content-product-bottom .owl2-controls .owl2-nav .owl2-prev.owl2-next:before, .content-product-bottom .owl2-controls .owl2-nav .owl2-next.owl2-next:before {
    content: "\f105";
}

.content-product-bottom .owl2-controls .owl2-nav .slick-arrow.slick-prev, .content-product-bottom .owl2-controls .owl2-nav .owl2-prev.slick-prev, .content-product-bottom .owl2-controls .owl2-nav .owl2-next.slick-prev, .content-product-bottom .owl2-controls .owl2-nav .slick-arrow.owl2-prev, .content-product-bottom .owl2-controls .owl2-nav .owl2-prev.owl2-prev, .content-product-bottom .owl2-controls .owl2-nav .owl2-next.owl2-prev {
    left: -17px;
    right: auto;
}

@media (max-width: 767px) {
    .content-product-bottom .owl2-controls .owl2-nav .slick-arrow.slick-prev, .content-product-bottom .owl2-controls .owl2-nav .owl2-prev.slick-prev, .content-product-bottom .owl2-controls .owl2-nav .owl2-next.slick-prev, .content-product-bottom .owl2-controls .owl2-nav .slick-arrow.owl2-prev, .content-product-bottom .owl2-controls .owl2-nav .owl2-prev.owl2-prev, .content-product-bottom .owl2-controls .owl2-nav .owl2-next.owl2-prev {
        left: 5px !important;
    }
}

.content-product-bottom .owl2-controls .owl2-nav .slick-arrow.slick-prev:before, .content-product-bottom .owl2-controls .owl2-nav .owl2-prev.slick-prev:before, .content-product-bottom .owl2-controls .owl2-nav .owl2-next.slick-prev:before, .content-product-bottom .owl2-controls .owl2-nav .slick-arrow.owl2-prev:before, .content-product-bottom .owl2-controls .owl2-nav .owl2-prev.owl2-prev:before, .content-product-bottom .owl2-controls .owl2-nav .owl2-next.owl2-prev:before {
    content: "\f104";
}

.content-product-bottom .owl2-controls .owl2-nav .slick-arrow:hover, .content-product-bottom .owl2-controls .owl2-nav .owl2-prev:hover, .content-product-bottom .owl2-controls .owl2-nav .owl2-next:hover {
    border-color: #046094;
    background-color: #046094;
}

    .content-product-bottom .owl2-controls .owl2-nav .slick-arrow:hover:before, .content-product-bottom .owl2-controls .owl2-nav .owl2-prev:hover:before, .content-product-bottom .owl2-controls .owl2-nav .owl2-next:hover:before {
        color: #fff;
    }
/*==========tab ==========*/
.content-product-bottom .tab-content {
    margin-bottom: 0;
}

    .content-product-bottom .tab-content .products-list .product-layout {
        width: 100%;
    }

    .content-product-bottom .tab-content .tab-pane {
        display: block;
        height: 0;
        overflow: hidden;
        margin: 0 -20px;
    }

        .content-product-bottom .tab-content .tab-pane.active {
            height: auto !important;
            margin-top: 0px;
            padding: 20px;
        }

        .content-product-bottom .tab-content .tab-pane .products-list .product-layout .product-item-container {
            margin-bottom: 0;
        }

    .content-product-bottom .tab-content .owl2-carousel .owl2-stage-outer {
        overflow: visible;
    }

    .content-product-bottom .tab-content .owl2-item.active {
        height: auto;
        display: block;
    }

#sosearchpro .dropdown-menu .media-body .box-price span {
    float: left;
    padding: 0 10px 0 0px;
}

#sosearchpro .dropdown-menu .media:hover {
    background-color: transparent;
}

header .dropdown-menu > li .btn-block img {
    position: relative;
    top: -2px;
}

header #sosearchpro .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.navbar-compact .hidden-compact {
    display: none;
}

.shopping_cart .btn-view-cart:hover {
    color: #fff;
}

.item-vertical {
    cursor: pointer;
    padding: 0 15px;
    border: none;
    margin: 0;
    position: relative;
    display: block;
    float: none !important;
    width: auto;
    background: none;
    color: white;
}

    .item-vertical a {
        color: white;
        display: block;
        font-size: 14px;
        font-weight: 400;
        padding: 10px 0;
        line-height: 23px;
        position: relative;
        background: none;
        height: auto;
        border-bottom: 1px solid #eee;
    }

        .item-vertical a:hover {
            color: #ccc !important;
        }

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    header .btn-shopping-cart .dropdown-menu {
        min-width: 340px;
    }

    header .shopping_cart .dropdown-menu .content-item {
        max-height: 315px;
    }
}

.dropdown-menu.shoppingcart-box .table {
    margin-bottom: 0;
}

    .dropdown-menu.shoppingcart-box .table .btn-danger {
        background-color: transparent;
    }

        .dropdown-menu.shoppingcart-box .table .btn-danger i {
            color: #666;
        }

        .dropdown-menu.shoppingcart-box .table .btn-danger:hover i {
            color: #046094;
        }

header #sosearchpro .dropdown-menu {
    border-radius: 0;
}

/*============ HEADER  ==================*/

.btn-shopping-cart .dropdown-menu {
    min-width: 320px;
}

    .btn-shopping-cart .dropdown-menu .cart_product_name {
        color: #495057;
    }

        .btn-shopping-cart .dropdown-menu .cart_product_name:hover {
            color: #046094;
        }

    .btn-shopping-cart .dropdown-menu .empty {
        padding: 15px;
        margin: 0;
    }

.btn-shopping-cart .table > tbody > tr > td {
    border: none;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.btn-shopping-cart .checkout {
    padding: 0 20px 10px;
}

.btn-shopping-cart .added_items {
    padding: 10px;
}


/*======================================================*/

.typeheader-10 #sosearchpro .search button:hover, .typeheader-10 .shopping_cart .btn-shopping-cart .top_cart .shopcart-inner .total-shopping-cart .items_cart {
    background-color: #046094;
}

footer #collapse-footer {
    display: block;
}

.footer-container {
    clear: both;
}

footer .so-page-builder .container {
    padding: 0 15px;
}


footer a:hover {
    color: #046094;
}

.typefooter-10 .box-footer .modcontent ul.menu li a:hover {
    color: #046094;
    border-color: #046094;
}

.typefooter-10 .box-infos .list-icon li .icon {
    color: #046094;
}

.sohomepage-slider .so-homeslider {
    border: none;
    z-index: 0;
}

.container-fluid .container {
    padding-left: 15px;
    padding-right: 15px;
}

.common-home a:hover {
    color: #046094;
}

#main-content, #content {
    margin-bottom: 30px;
}

@media (min-width: 1700px) {

    .wrapper-full .container {
        width: 1600px;
    }

        .wrapper-full .container.container-main {
            width: 1630px;
        }

    .container-main {
        padding: 40px 0 0 0 !important;
    }

    .content-aside {
        width: 320px;
    }

    .fluid-sidebar {
        width: calc(100% - 320px);
    }
}

@media (min-width: 1365px) and (max-width: 1699px) {
    .wrapper-full .container {
        width: 1320px;
    }

        .wrapper-full .container.container-main {
            width: 1320px;
        }
}

.content-top {
    margin: 0;
}

    .content-top .col-slideshow {
        padding: 0;
        float: left;
        width: calc(100% - 650px);
    }

/*====================== mod title ========================*/
.layout-10.common-home #content .label-product-new, .layout-10.common-home #content .label-new, .layout-10.common-home #content .label-sale {
    width: 40px;
    min-width: 40px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    left: 15px;
    right: auto;
    top: 15px;
    padding: 0;
    display: inline-block;
    position: absolute;
    width: auto;
    text-align: center;
    background-color: #252525;
    border-radius: 100%;
}

    .layout-10.common-home #content .label-product-new:before, .layout-10.common-home #content .label-new:before, .layout-10.common-home #content .label-sale:before {
        display: none;
    }

.layout-10.common-home #content .label-sale {
    right: 15px;
    left: auto;
    background-color: #f3283c;
}

.layout-10.common-home #content .module h3.modtitle {
    margin-bottom: 15px;
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 10px;
    padding-top: 20px;
    clear: both;
}

    .layout-10.common-home #content .module h3.modtitle span {
        font-size: 24px;
        color: #282828;
        font-weight: 700;
        text-transform: uppercase;
        position: relative;
        padding: 0 0 0 8px;
        display: inline-block;
    }

.layout-10.common-home #content .module .form-group {
    text-align: center;
    font-style: italic;
    color: #878787;
}

/************************************************************************************************
 MODULE HOME SLIDER  
 *************************************************************************************************/
.sohomepage-slider .so-homeslider .owl2-nav div::before, .sohomepage-slider .so-homeslider .owl2-nav div:hover:before {
    background-color: transparent !important;
}

#content .sohomepage-slider {
    margin: 0;
    text-align: left;
}

    #content .sohomepage-slider .form-group {
        margin-bottom: 0;
    }

    #content .sohomepage-slider .so-homeslider {
        border: none;
        display: block;
    }

        #content .sohomepage-slider .so-homeslider img {
            width: auto;
        }

    #content .sohomepage-slider .owl2-controls {
        height: 0;
    }

        #content .sohomepage-slider .owl2-controls .owl2-nav {
            position: absolute;
            bottom: 40px;
            right: 120px;
        }

            #content .sohomepage-slider .owl2-controls .owl2-nav .owl2-next, #content .sohomepage-slider .owl2-controls .owl2-nav .owl2-prev {
                font-size: 0px;
                z-index: 99;
                width: 60px;
                height: 60px;
                line-height: 60px;
                text-align: center;
                border-radius: 0;
                text-indent: -999em;
                display: block;
                background-color: #fff;
                border: none;
                box-shadow: none;
                position: static;
                display: inline-flex;
                margin-left: 2px;
            }

                #content .sohomepage-slider .owl2-controls .owl2-nav .owl2-next:after, #content .sohomepage-slider .owl2-controls .owl2-nav .owl2-prev:after {
                    display: none;
                }

                #content .sohomepage-slider .owl2-controls .owl2-nav .owl2-next:before, #content .sohomepage-slider .owl2-controls .owl2-nav .owl2-prev:before {
                    font-size: 30px;
                    color: #046094;
                    font-family: 'FontAwesome';
                    display: block;
                    text-indent: 0 !important;
                    width: 60px;
                    height: 60px;
                    line-height: 58px;
                    text-align: center;
                    opacity: 1;
                    position: static;
                }

                #content .sohomepage-slider .owl2-controls .owl2-nav .owl2-next:hover, #content .sohomepage-slider .owl2-controls .owl2-nav .owl2-prev:hover {
                    background-color: #046094;
                }

                    #content .sohomepage-slider .owl2-controls .owl2-nav .owl2-next:hover:before, #content .sohomepage-slider .owl2-controls .owl2-nav .owl2-prev:hover:before {
                        color: #fff;
                    }

            #content .sohomepage-slider .owl2-controls .owl2-nav .owl2-next {
                right: 15px;
                left: auto;
            }

                #content .sohomepage-slider .owl2-controls .owl2-nav .owl2-next:before {
                    content: "\f105";
                    content: "\f105";
                }

            #content .sohomepage-slider .owl2-controls .owl2-nav .owl2-prev {
                left: 15px;
                right: auto;
            }

                #content .sohomepage-slider .owl2-controls .owl2-nav .owl2-prev:before {
                    content: "\f104";
                    content: "\f104";
                }

        #content .sohomepage-slider .owl2-controls .owl2-dots {
            position: static;
            left: auto;
            right: auto;
            width: 100%;
            display: inline-block;
            text-align: center;
            position: relative;
            top: -40px;
            z-index: 10;
        }

            #content .sohomepage-slider .owl2-controls .owl2-dots .owl2-dot {
                background-color: transparent;
                border: 2px solid #fff;
                margin: 0 5px;
                width: 13px;
                height: 13px;
                padding: 0;
                transition: all 0.3s ease 0s;
                border-radius: 100%;
                float: none;
                display: inline-block;
            }

                #content .sohomepage-slider .owl2-controls .owl2-dots .owl2-dot span {
                    background-color: transparent;
                    display: block;
                    width: 100%;
                    height: 100%;
                    border-radius: 100%;
                    -webkit-border-radius: 100%;
                    margin: 0;
                }

                #content .sohomepage-slider .owl2-controls .owl2-dots .owl2-dot:hover, #content .sohomepage-slider .owl2-controls .owl2-dots .owl2-dot.active {
                    border-color: #046094;
                }

                    #content .sohomepage-slider .owl2-controls .owl2-dots .owl2-dot:hover span, #content .sohomepage-slider .owl2-controls .owl2-dots .owl2-dot.active span {
                        box-shadow: none;
                        -webkit-box-shadow: none;
                        background: rgba(0, 0, 0, 0.3);
                    }

    #content .sohomepage-slider:hover .owl2-controls .owl2-nav .owl2-next, #content .sohomepage-slider:hover .owl2-controls .owl2-nav .owl2-prev {
        visibility: visible;
        -webkit-opacity: 1;
        -moz-opacity: 1;
        -ms-opacity: 1;
        -o-opacity: 1;
        opacity: 1;
        transition: all 0.3s ease-in-out 0s;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

.common-home .banners img {
    width: 100%;
}

.so-categories {
    position: relative;
    overflow: visible;
}

    .so-categories .form-group {
        margin-bottom: 0;
    }

    .so-categories .modcontent {
        margin: 0;
        margin-top: 20px;
    }

.menu-vertical {
    float: left;
    clear: left;
    width: 650px;
    min-height: 30px;
}

.navbar-header {
    float: left;
    margin: 0 5px;
}

.navbar-toggle {
    margin: 0;
    width: 40px;
    height: 40px;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    border: none;
    background-color: transparent !important;
}

    .navbar-toggle:hover {
        color: #fff;
    }

    .navbar-toggle i {
        font-size: 14px;
    }


    .navbar-toggle .icon-bar {
        background: #FFFFFF;
        width: 100%;
        height: 2px;
        border-radius: 0;
    }

@media (min-width:768px) {

    .navbar-toggle {
        display: none
    }

    .typeheader-10 .middle-left {
        width: 270px;
        margin-top: -4px;
    }

    .main-menu {
        float: right;
    }

        .main-menu .menu-item {
            padding: 0 20px;
            float: left;
        }
}

@media (max-width: 991px) {
    .main-menu .menu-item {
        padding: 0 15px;
        display: inline-block;
    }

        .main-menu .menu-item:first-child {
            padding: 0 20px 0 5px;
        }

        .main-menu .menu-item:last-child {
            padding: 0 5px 0 20px;
        }
}

@media (max-width:768px) {

    #wrapper {
        padding-top: 160px;
        padding-left: 8px;
        padding-right: 8px;
    }

    .typeheader-10 .middle-left {
        width: 160px;
        margin-top: 6px;
    }

    #sosearchpro .media-body {
        line-height: 24px;
    }

    .main-menu {
        float: none;
    }

    .footer-container .box-infos {
        padding: 0 10px;
    }
}

#tableCart td {
    vertical-align:middle;
}

#tableCart .btn-block {
    max-width: 130px;
}

    #tableCart .btn-block button {
        padding: 9px;
    }

#tableCart .price {
    margin-top: 25px;
}

#tableCart button[data-action='remove'] {
    background-color: transparent;
    color: gray;
    border:none;
}

.antiBotWrapper {
    margin-top: 0px;
    text-align: left;
}

.antiBotQuestion {
    color: #28272d;
    font-size: 16px;
    font-weight: 500;
    padding: 0 0 0 10px;
    display: inline-block;
}

.antiBotAnswer {
    width: 65px;
    padding: 10px 4px 4px 4px;
    border: none;
    font-size: 22px !important;
    display: inline-block;
    vertical-align: bottom;
}

.container .container {
    width: auto !important;
}

.home-section {
    font-size: 28px;
    width: 20px;
    color: #046094;
}

#label-results-count {
    padding-left: 0;
    line-height: 16px;
}

.transaction-details-title {
    margin-top: 50px;
}

.transaction-details {
    width: 100%;
}

    .transaction-details td {
        width: 50%;
        padding: 2px 5px;
    }

        .transaction-details td:nth-child(2n+1) {
            text-align: right;
            font-weight: bold;
        }

        .transaction-details td:nth-child(2n+2) {
            text-align: left;
        }

.info-items {
    padding-left: 10px;
    padding-top: 8px;
}

    .info-items .info-item p {
        padding-left: 14px;
    }

.orderConfirmationTable {
    font-size: 14px;
    color: #333;
    border-width: 0px;
    border-color: #e0e0e0;
    border-collapse: collapse;
    width: 100%;
    margin: 0 auto
}

    .orderConfirmationTable tr {
        background-color: #fff;
    }

    .orderConfirmationTable th {
        font-size: 13px;
        background-color: #e0211c;
        border-width: 0px;
        padding: 8px;
        border-style: solid;
        border-color: #729ea5;
        text-align: center;
        color: white;
        line-height: 12px;
        font-weight: 400
    }

.orderConfirmationTableWhite {
    font-size: 14px;
    border-width: 0px;
    padding: 8px;
    border-style: solid;
    border-color: #ffffff
}

.orderConfirmationTableLightGray {
    font-size: 14px;
    border-width: 0px;
    padding: 8px;
    border-style: solid;
    border-color: #ffffff;
    background: #e8e8e8
}

.orderConfirmationTableMediumGray {
    font-size: 14px;
    background-color: #656565;
    padding: 8px;
    text-align: right;
    color: white;
    font-weight: 400;
    line-height: 12px;
    border: none
}

.orderConfirmationTableDarkGray {
    font-weight: 600;
    font-size: 14px;
    color: white;
    background-color: #323232;
    border-width: 1px;
    padding: 8px;
    border-style: solid;
    border-color: #ffffff;
    text-align: right;
}

.orderConfirmationItemSubtotal {
    font-weight: 600;
    border: none;
    font-size: 13px;
    padding: 8px;
    text-align: right;
    border-bottom: 1px solid #bdbdbd;
}

.orderConfirmationItemNumeric {
    border: none;
    font-size: 13px;
    padding: 8px;
    text-align: center;
    border-bottom: 1px solid #bdbdbd
}

.orderConfirmationItemName {
    border: none;
    font-size: 13px;
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #bdbdbd;
}

    .orderConfirmationItemName a {
        text-decoration: none;
    }

.orderConfirmationItemImage {
    border: none;
    padding: 8px;
    text-align: center;
    border-bottom: 1px solid #bdbdbd;
}

    .orderConfirmationItemImage img {
        width: 120px;
    }

.home-catalogue {

}

    .home-catalogue .catalogue-list-section {
    }

        .home-catalogue .catalogue-list-section ul {
            width: 100%;
            display: grid;
            grid-template-columns: repeat(3,1fr);
            grid-column-gap: 5px;
            grid-row-gap: 5px;
        }

            .home-catalogue .catalogue-list-section ul li {
                box-sizing: border-box;
                border-radius: 5px;
                background-color: #fff;
                transition: color .3s ease-out,background .3s ease-out;
            }

                .home-catalogue .catalogue-list-section ul li a {
                    position: relative;
                    display: flex;
                    align-items: center;
                    padding: 5px 10px;
                    min-height: 60px;
                    word-break: break-word;
                    flex-direction: row;
                    justify-content: space-between;
                }

                    .home-catalogue .catalogue-list-section ul li a h3 {
                        font-weight: normal;
                        color: #182f3f;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        font-size:14px;
                    }

                    .home-catalogue .catalogue-list-section ul li a span {
                        width: 80px;
                        height: 70px;
                        border: none;
                        padding-left: 0;
                    }

                        .home-catalogue .catalogue-list-section ul li a span img {
                            width: 100%;
                            height: 100%;
                            object-fit: contain;
                            object-position: right;
                        }

/* Catalogue */

.catalogue h2 {
    margin-top: 40px;
    padding: 10px 0;
}

.catalogue .catalogue-list-section {
}

.catalogue .catalogue-list-section ul {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}

    .catalogue .catalogue-list-section ul li {
        box-sizing: border-box;
        border: 1px solid #d7d7d7;
        border-radius: 5px;
        background-color: #fff;
        transition: color .3s ease-out,background .3s ease-out;
    }

        .catalogue .catalogue-list-section ul li a {
            position: relative;
            display: flex;
            align-items: center;
            padding: 10px 20px;
            min-height: 60px;
            word-break: break-word;
            flex-direction: row;
            justify-content: space-between;
        }

            .catalogue .catalogue-list-section ul li a h3 {
                font-weight: bold;
                color: #182f3f;
                display: flex;
                justify-content: center;
                align-items: center;
            }

            .catalogue .catalogue-list-section ul li a span {
                width: 150px;
                height: 100px;
                border: none;
                padding-left: 0;
            }

                .catalogue .catalogue-list-section ul li a span img {
                    width: 100%;
                    height: 100%;
                    object-fit: contain;
                    object-position: right;
                }