/*-------------------------------------
[ 1. Theme AKR 2020 CSS ]
---------------------------------------*/
@import url(https://fonts.googleapis.com/css?family=Roboto:300,400,500,600,700&subset=latin-ext,vietnamese);

html, body {
    height: 100%;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    font-size: 14px;
    font-weight: 400;
}

.floatleft {
    float: left
}

.floatright {
    float: right
}

.alignleft {
    float: left;
    margin-right: 15px;
    margin-bottom: 15px
}

.alignright {
    float: right;
    margin-left: 15px;
    margin-bottom: 15px
}

.aligncenter {
    display: block;
    margin: 0 auto 15px
}

.scroll {
    overflow-y: auto;
    padding-right: 10px
}

    .scroll::-webkit-scrollbar {
        width: 6px
    }

    .scroll::-webkit-scrollbar-track {
        box-shadow: inset 0 0 5px #fff;
        border-radius: 2px
    }

    .scroll::-webkit-scrollbar-thumb {
        background-color: rgba(144,147,153,.2);
        border-radius: 4px
    }

        .scroll::-webkit-scrollbar-thumb:hover {
            background-color: rgba(144,147,153,.5)
        }

.d-flex {
    display: flex !important;
}

a:focus {
    outline: 0px solid
}

img {
    max-width: 100%;
}

.fix {
    overflow: hidden
}

p {
    margin: 0px;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 10px;
    font-weight: 600;
}

a {
    transition: all 0.3s ease 0s;
    text-decoration: none;
    color: #333
}

    a:hover, a:hover, a:focus {
        color: #0BA9ED;
        text-decoration: none;
    }

    a:active, a:hover {
        outline: 0 none;
        text-decoration: none;
    }

p {
    color: #666;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}

ul {
    list-style: outside none none;
    margin: 0;
    padding: 0
}

hr.line {
    background: #0BA9ED none repeat scroll 0 0;
    border: 0 none;
    height: 1px;
    margin: 0 auto;
    width: 100px;
}

.static {
    position: static;
}

.relative {
    position: relative;
}

.fl {
    float: left
}

.fr {
    float: right
}

.section-padding {
    padding: 35px 0;
}

.bg-gray {
    background-color: #F0F3F8;
}

.section-padding-top {
    padding-top: 35px;
}

.section-padding-bottom {
    padding-bottom: 35px;
}

.section-news {
    padding: 40px 0;
}

.d-table {
    display: table;
    height: 100vh;
    width: 100%;
    margin: 10px;
}

.d-tablecell {
    display: table-cell;
    height: 100%;
    vertical-align: middle;
}

.col-text-center {
    float: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.clear {
    clear: both
}

/* section title */
.section-title > h3 {
    color: #0BA9ED;
    display: inline-block;
    line-height: 19px;
    margin-bottom: 7px;
    position: relative;
}

.section-icon {
    color: #0BA9ED;
    font-size: 16px;
}

.section-title > h3::after {
    background: #0BA9ED none repeat scroll 0 0;
    bottom: -19px;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    width: 40%;
}

.section-title > h3::before {
    background: #0BA9ED none repeat scroll 0 0;
    bottom: -19px;
    content: "";
    height: 1px;
    right: 0;
    position: absolute;
    width: 40%;
}

.section-title {
    margin-bottom: 30px;
    text-align: center;
}

.title-category {
    margin-bottom: 20px;
    position: relative;
}

    .title-category:before {
        content: '';
        display: block;
        height: 1px;
        background-color: #eee;
        position: absolute;
        top: 12px;
        left: 0;
        right: 0;
    }

    .title-category h2 {
        font-size: 20px;
        color: #222;
        font-weight: 500;
        position: relative;
        margin-bottom: 25px;
        text-transform: capitalize;
    }

        .title-category h2:after {
            content: '';
            width: 40px;
            height: 2px;
            background: #0BA9ED;
            position: absolute;
            top: 50%;
        }

        .title-category h2 span {
            font-size: 20px;
            color: #222;
            background: #fff;
            font-weight: 500;
            text-transform: capitalize;
            padding-right: 20px;
        }

    .title-category a.view-all {
        position: absolute;
        top: 0;
        font-size: 14px;
        background: #fff;
        right: 0;
        padding-left: 20px;
    }

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

input::-moz-placeholder, textarea::-moz-placeholder {
    opacity: 1;
}

input:focus, textarea:focus {
    outline: 0px;
}
/*-------------------------------------
[ 2. home version one ]
---------------------------------------*/
/* header section */
header {
    background: #fff;
    position: relative;
    top: 0;
    width: 100%;
    z-index: 9;
}
/* header top */
.header-top {
    border-bottom: 1px solid rgba(102, 102, 102, 0.5);
    padding: 20px 0;
}

.header-bottom {
    border-top: 1px solid #D5DFE4;
    padding: 10px 0;
    position: relative
}

.sticky-bar.stick {
    animation: 700ms ease-in-out 0 normal none 1 running fadeInDown;
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    left: 0;
    transition: all .3s ease 0;
    border-bottom: 1px solid #DDE4F0;
    background: #fff;
}

.container-topbar {
    display: flex
}

.menu-top-right {
    text-align: right;
    font-size: 11px;
    color: #fff
}

    .menu-top-right b {
        color: #5BC694;
        font-size: 14px;
        margin: 0 10px 0 3px;
    }

.dropdown-language {
    margin-top: 0px;
    display: inline-block
}

    .dropdown-language .dropdown-menu {
        right: 0;
        left: auto;
    }

        .dropdown-language .dropdown-menu > li > a {
            padding: 5px 10px;
        }

    .dropdown-language .form-control {
        background: transparent;
        color: #fff;
        font-size: 11px;
        border: none;
        height: auto;
        padding: 12px 5px
    }

.left-header li:first-child, .right-header li {
    border-right: 1px solid #fff;
    margin-right: 10px;
    padding-right: 10px;
}

.logo {
    padding-top: 0px;
}

    .logo span {
        display: block;
        margin: 7px 0 0 5px;
        font-weight: 700;
        color: #005fd0;
        font-size: 14px;
        line-height: 1.4;
    }

    .logo img {
        width: 46%;
        height: 46%;
    }

.right-header li:last-child {
    border: 0 none;
    padding: 0;
    position: relative;
}

.right-header {
    float: right;
}

    .right-header span, .left-header p {
        color: #333;
    }

    .right-header ul li, .left-header p {
        line-height: 1;
    }

.header-top-two .right-header span, .header-top-two .left-header p, .header-top-two li i {
    color: #999;
}

.header-top-two .right-header {
    position: relative;
    z-index: 999999;
}

.left-header.clearfix ul li p {
    font-size: 13px;
    font-weight: 400;
}

.right-header span {
    font-family: Poppins;
    font-size: 12px;
    font-weight: 300;
    position: absolute;
    right: -5px;
    top: -10px;
}

    .right-header span.color2, .right-header span.color1 {
        color: #fff;
    }

.right-header li {
    padding: 0 15px;
}

    .right-header li i, .right-header li, .right-header li:last-child {
        margin: 0;
    }

        .right-header li:last-child a {
            padding-left: 15px;
        }

        .right-header li ul:last-child a, .drop-setting li:last-child {
            padding-left: 0px;
        }

.welcome-msg {
    line-height: 40px;
    color: #fff;
    font-size: 12px;
}

    .welcome-msg span {
        color: #0BA9ED;
        border-bottom: 1px dashed;
        border-color: #0BA9ED;
    }
/* search box */
#searchform {
    opacity: 0;
    padding-top: 12px;
    position: absolute;
    right: -1px;
    top: 100%;
    transform: scaleY(0);
    transform-origin: 0 0 0;
    transition: all 0.4s ease 0s;
    width: 350px;
}

    #searchform input {
        background: #666 none repeat scroll 0 0;
        border: 1px solid #999;
        color: #ccc;
        float: left;
        font-size: 12px;
        padding: 10.5px 0 8.5px 10px;
        position: relative;
        width: 100%;
    }

    #searchform button {
        background: #333 none repeat scroll 0 0;
        border: 0 none;
        float: right;
        padding: 5.5px 10px;
        position: absolute;
        right: 1px;
        text-align: center;
        top: 13px;
    }

        #searchform button i {
            line-height: 20px;
            margin: 0;
            padding: 0 5px;
        }

.right-header li:hover #searchform {
    opacity: 1;
    transform: scaleY(1);
}

/* stting dropdown */
.mainmenu li, .right-header li {
    position: relative;
}

.drop-icon::after {
    content: "";
    font-family: fontawesome;
    font-size: 18px;
    left: 50%;
    margin-left: -4px;
    margin-top: 6px;
    position: absolute;
    top: 100%;
    opacity: 0;
    transition: all 0.3s ease 0s;
}

.mainmenu ul li:hover.drop-icon::after {
    transition: all 2s ease 0s;
}

.right-header ul li ul li, .mainmenu ul li ul li {
    border: 0 none;
    float: none;
}

.right-header ul li a {
    border-left: 2px solid transparent;
    color: #fff;
    display: block;
    font-weight: 400;
    position: relative;
}

.right-header ul.drop-cart li a {
    color: #666;
}

.all-manu-area {
    display: block;
}

.mainmenu.clearfix {
    float: left;
    margin-right: 30px;
}

.right-header.re-right-header {
    padding: 35px 0;
}

    .right-header.re-right-header li.re-icon {
        padding: 0 25px;
    }

    .right-header.re-right-header ul li.drop-icon {
        padding-right: 0;
    }

.mainmenu ul li ul li a {
    color: #666;
    display: block;
    font-weight: 500;
    position: relative;
}

.right-header ul li a i {
    margin-right: 7px;
}

.drop-setting li a i {
    color: #666;
    font-size: 10px;
    margin: 0 20px;
}

ul.drop-setting li, .mainmenu ul li ul li {
    margin: 0 0 15px;
    padding: 0;
}

    .drop-setting a:hover, .mainmenu ul li ul li a:hover, .magamenu ul > li.active > a {
        border-color: #CB0349;
    }

        .drop-setting a:hover, .mainmenu ul li ul li a:hover, .drop-setting a:hover i, .right-header li:hover i, .magamenu ul > li.active > a, .pro-close:hover i, .drop-icon::after, .add-cart-text p a:hover, .goto a:hover, .mainmenu ul li ul li a.active, .drop-setting li a.active, .right-header ul li a:hover {
            color: #0BA9ED;
        }

.right-header li:hover ul li i {
    color: inherit;
}
/* add to cart */

.list-top-cart .list-item-cart {
    max-height: 250px;
    overflow-y: scroll;
}

    .list-top-cart .list-item-cart::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 2px rgba(0,0,0,0.3);
        -moz-box-shadow: inset 0 0 2px rgba(0,0,0,0.3);
        border-radius: 5px;
        background-color: #F5F5F5;
    }

    .list-top-cart .list-item-cart::-webkit-scrollbar {
        width: 5px;
        background-color: #F5F5F5;
    }

    .list-top-cart .list-item-cart::-webkit-scrollbar-thumb {
        border-radius: 5px;
        -webkit-box-shadow: inset 0 0 2px rgba(0,0,0,0.3);
        -moz-box-shadow: inset 0 0 2px rgba(0,0,0,0.3);
        background-color: #e5e5e5;
    }

.list-top-cart li {
    list-style: none;
}

    .list-top-cart li.item {
        border-top: 1px solid #eee;
        overflow: hidden;
        padding: 7px 0;
        width: 100%;
        position: relative;
    }

        .list-top-cart li.item:first-child {
            border-top: none;
            padding-top: 10px;
        }

        .list-top-cart li.item:last-child {
            margin: 0;
            border-bottom: none;
        }

        .list-top-cart li.item .product-image {
            float: left;
            display: block;
            width: 68px;
            margin-right: 10px;
        }

        .list-top-cart li.item p.product-name {
            line-height: 18px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            overflow: hidden;
            margin-bottom: 6px;
            -webkit-box-orient: vertical;
        }

        .list-top-cart li.item .detail-item {
            padding-left: 76px;
        }

            .list-top-cart li.item .detail-item .fa {
                position: absolute;
                right: 5px;
                font-size: 15px;
                color: #666;
            }

                .list-top-cart li.item .detail-item .fa:hover,
                .list-top-cart li.item .detail-item .fa:focus {
                    color: #ef6644;
                }

            .list-top-cart li.item .detail-item .product-details-bottom .price.pricechange {
                display: block;
                font-size: 13px;
                font-weight: 500;
                margin-bottom: 7px;
            }

.list-top-cart .product-dsc .add_to_cart {
    margin-top: 8px;
}

    .list-top-cart .product-dsc .add_to_cart a {
        padding: 6px 10px;
    }

.list-top-cart li.item .detail-item input {
    display: inline-block;
    width: 45px;
    padding: 0;
    text-align: center;
    min-height: 30px;
    height: 30px;
    margin-bottom: 0;
    float: left;
    border-radius: 0;
    border-left: none;
    border-right: none;
}

    .list-top-cart li.item .detail-item input[disabled] {
        border: 1px solid #ebebeb;
        background-color: #fff;
        border-left: none;
        border-right: none;
    }

.list-top-cart li.item .detail-item button.items-count {
    display: inline-block;
    box-shadow: none;
    outline: none;
    background-color: #fff;
    border: 1px solid #e5e5e5;
    height: 30px;
    float: left;
}

.list-top-cart .block-subtitle {
    color: #333;
    overflow: hidden;
    padding: 15px;
    text-align: left;
    font-size: .92857em;
    background: #f5f5f5;
    text-transform: none;
    font-weight: 400;
    border-bottom: 1px #ddd solid;
}

.list-top-cart .actions .btn {
    border-radius: 0;
    color: #fff;
    background-color: #2a3c52;
    min-width: 145px;
    text-transform: uppercase;
}

    .list-top-cart .actions .btn + .btn {
        float: right;
    }

    .list-top-cart .actions .btn:hover,
    .list-top-cart .actions .btn:focus {
        color: #fff;
        background-color: #ef6644;
        border-color: #ef6644 !important;
    }

.top-subtotal {
    color: #333;
    font-size: 1.14286em;
    font-weight: 500;
    padding: 12px 0;
    border-top: 1px solid #e5e5e5;
    text-align: left;
    text-transform: none;
}

    .top-subtotal .price {
        font-weight: 600;
        color: #f33;
        float: right;
    }

.TopMenu {
    font-size: 13px;
    text-align: left;
    background: #0E224D;
    font-weight: 400;
}

    .TopMenu a {
        color: #00aeef
    }

.form-search {
    position: relative;
    margin: 8px 0;
}

    .form-search button {
        position: absolute;
        top: 0px;
        right: 0px;
        background: #033095;
        color: #fff;
        font-weight: 600;
        border-radius: 0px 5px 5px 0px;
        padding: 10px 20px;
        height: 45px;
        transition: all 0.3s ease-in-out;
    }

    .form-search .button:hover {
        color: #fff;
        background: #033095;
    }

.btn.btn-category {
    background-color: #FD9636;
    background-image: url(images/open-close.svg);
    background-repeat: no-repeat;
    background-position: 17px 9px;
    display: inline-block;
    padding: 10px 20px 10px 50px;
    color: #fff;
    min-width: 100%;
    text-align: left;
}

.header-bottom .dropdown-right {
    background-image: url(images/arrow-down.svg);
    background-position: right center;
    background-repeat: no-repeat;
    padding: 0 20px 0 0;
    display: block;
    margin-left: 0;
}

.dropdown .sidebar-left {
    top: auto;
    width: 100%;
    height: auto;
    padding: 10px;
    border-radius: 4px;
    border-color: #DDE4F0;
}

    .dropdown .sidebar-left .menu-texts li a {
        line-height: 40px;
        color: #000;
        padding: 0 5px;
    }
/* sidebar pro */
.left-sidebar {
    width: 300px;
    background: #fff;
    float: left;
    vertical-align: top;
    display: inline-block;
}

.main-sidebar {
    width: calc(100% - 320px);
    width: -webkit-calc(100% - 330px);
    float: right;
}

.shop-one h3 {
    color: #3f3f3f;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 10px;
}

.shop-one p {
    color: #a6a6a6;
    font-size: 12px;
}

.shop-one .choosedfilter a {
    position: relative;
    border-radius: 4px;
    background-color: #569efc;
    color: #fff;
    line-height: 1.2;
    padding: 5px 40px 5px 8px;
    margin: 0 8px 8px 0;
    display: inline-block;
    vertical-align: middle;
    font-size: 14px
}

    .shop-one .choosedfilter a .remove_filter {
        font-size: 16px;
        position: absolute;
        top: 13px;
        transform: translateY(-50%);
        right: 0;
        background: #0BA9ED;
        color: #fff;
        width: 26px;
        height: 26px;
        text-align: center;
        font-weight: 700;
        line-height: 28px;
        border-top-right-radius: 4px;
        border-bottom-right-radius: 4px
    }

ul.listform_filter {
    width: 100%;
    max-height: 286px;
    overflow-y: scroll;
    float: left
}

    ul.listform_filter ol {
        padding: 3px 0 0 25px;
        list-style-type: none;
        clear: both
    }

.listform_filter.w50 li {
    width: 50%;
    padding: 0 10px 0 0;
    vertical-align: top
}

.listform_filter li {
    width: 100%;
    margin-bottom: 8px;
    float: left
}

    .listform_filter li .checkbox label::before, .listform_filter li .checkbox label::after {
        top: 5px
    }

    .listform_filter li.w50 {
        width: 50%;
    }

    .listform_filter li input[type="checkbox"] {
        display: none
    }

    .listform_filter li label {
        cursor: pointer;
        font-weight: 400
    }

    .listform_filter li input[type="checkbox"] + span::before {
        cursor: pointer;
        font-family: fontAwesome;
        font-size: 12px;
        color: #000;
        content: "\a0";
        border: 1px solid #999;
        box-shadow: 0 1px 2px rgba(0,0,0,0.05);
        border-radius: 2px;
        display: inline-block;
        text-align: center;
        height: 18px;
        line-height: 16px;
        width: 18px;
        margin-right: 8px;
        position: relative
    }

    .listform_filter li input[type="checkbox"]:checked + span::before {
        color: #fff;
        border: 1px solid #0a5bff;
        background: #569efc;
        display: inline-block;
        content: '\f00c';
        font-size: 12px
    }

    .listform_filter li a.filter-item span {
        display: inline-flex;
        color: #000;
        font-size: 14px
    }

    .listform_filter li a.filter-item span, .listform_filter li a.filter-item img {
        vertical-align: middle
    }

img.imgBrand {
    width: 80px;
    object-fit: contain
}

.box-header-search {
    position: relative;
    margin-right: 15px
}

    .box-header-search .but-search {
        position: absolute;
        top: 0;
        right: 0;
        background-color: #033095;
        height: 33px;
        padding: 0 8px;
        line-height: 35px;
        display: block;
        color: #fff;
        border-top-right-radius: 8px;
        border-bottom-right-radius: 8px;
    }

    .box-header-search .form-control {
        width: 250px;
        height: 33px;
        font-weight: 400;
        color: #8C9EC5;
    }

.cate-tag {
    background: #f3f3f3;
    margin-top: 15px;
    overflow: hidden;
    height: 48px;
}

    .cate-tag a {
        display: inline-block;
        margin: 15px 10px;
    }

        .cate-tag a:before {
            content: '•';
            display: inline-block;
            vertical-align: middle;
            font-size: 16px;
            margin-right: 5px;
        }

.recently {
    clear: both;
    margin-top: 30px;
}
/* collection area */
.single-blog .blog-img a {
    position: relative;
}

.single-product.large-product {
    transition: all 0.3s ease 0s;
}

i.pe-7s-back {
    transform: rotateY(-180deg);
}

.single-blog:hover .blog-img a::after {
    opacity: 0.7;
}

.product-dsc {
    position: relative;
}

.pro-border {
    padding: 10px 0;
}

.product-dsc a:hover, .pro-type span {
    color: #0BA9ED;
}

.section-padding1 {
    padding: 35px 0 0;
}

.banner-container {
    position: relative;
}

    .banner-container > a {
        display: block;
        position: relative;
    }

.banner-text a {
    color: #ffffff;
    float: right;
    text-decoration: underline;
}

.banner-area .row {
    margin: 0 -10px;
}

    .banner-area .row .item {
        padding: 0 10px;
    }

.banner-area .col-md-7 .row:first-child .col-md-6 .banner-box {
    margin-bottom: 25px;
}

.banner-area .banner-box {
    display: block;
    overflow: hidden;
    position: relative;
    text-align: center;
    height: auto;
    margin-bottom: 20px;
}

.banner-box a {
    display: block;
    overflow: hidden;
}

    .banner-box a img {
        transition: all 300ms ease-in-out 0s;
    }

.banner-box div {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    color: #fff;
    z-index: 2;
}

    .banner-box div::after {
        border-bottom: 1px solid #fff;
        border-top: 1px solid #fff;
        content: "";
        height: 100%;
        left: 0;
        opacity: 0;
        position: absolute;
        top: 0;
        transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 0, 1);
        transform-origin: 50% 50% 0;
        width: 100%;
    }

    .banner-box div::after, .banner-box img, .banner-box p {
        transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
    }

.banner-box h2 {
    font-size: 25px;
}

.banner-box h2 {
    padding-top: 6%;
    transition: transform 0.35s ease 0s;
}

.banner-box h2, .banner-box p {
    transform: scale3d(0.8, 0.8, 1);
}

.banner-box h2, .banner-box p {
    opacity: 0;
}

.banner-box p {
    color: #fff;
    font-size: 15px;
    opacity: 0;
    padding: 0.5em 2em;
    text-transform: none;
}

.banner-box:hover h2, .banner-box:hover p {
    opacity: 1;
    transform: scale3d(1, 1, 1);
}

.background_counter {
    background-image: url(images/counter_background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.counter_content {
    padding-top: 56px;
    padding-bottom: 75px;
}

.counter_text {
    margin-top: 19px;
}

    .counter_text p {
        color: #FFF;
    }

.counter_title {
    color: #FFF;
    font-size: 45px;
    line-height: 58px;
    font-weight: 700;
}

.milestones {
    margin-top: 39px;
    display: flex;
}

.milestone:not(:last-child)::after {
    display: block;
    position: absolute;
    top: 0;
    right: -45px;
    width: 1px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    content: '';
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    transform: rotate(30deg);
}

.milestone {
    text-align: center;
    position: relative;
}

.justify-content-between {
    justify-content: space-between !important;
}

.milestone_counter_1 {
    font-size: 42px;
    font-weight: 700;
    line-height: .75;
    color: #14bdee;
}

.milestone_text {
    font-size: 16px;
    font-weight: 400;
    color: #FFF;
    text-transform: uppercase;
    margin-top: 14px;
}

.flex-md-row {
    flex-direction: row !important;
}
/* single product section */

.single-product .left-block {
    width: 165px;
    float: left;
    position: relative;
}

    .single-product .left-block .actions-btn {
        top: 40%;
    }

.single-product .right-block .addToCart {
    height: 40px;
    line-height: 40px;
    border: 1px solid #ddd;
    background-color: #fff;
    font-size: 14px;
    color: #0BA9ED;
    transition: 0.2s all ease-in-out;
    margin-right: 5px;
    padding: 0 10px;
}

    .single-product .right-block .addToCart:hover {
        background-color: #0BA9ED;
        border-color: #0BA9ED;
        color: #fff;
    }

    .single-product .right-block .addToCart i {
        font-size: 18px;
        padding-right: 8px;
    }

.single-product .btn-button {
    width: 40px;
    height: 40px;
    line-height: 40px;
    visibility: hidden;
    text-align: center;
    font-size: 18px;
    border-radius: 0;
    color: #0BA9ED;
    background-color: #fff;
    border: 1px solid #ddd;
    transition: 0.2s all ease-in-out;
    margin: 0 5px;
    opacity: 0;
    transform: scale(0);
}

.single-product:hover .right-block .btn-button {
    transform: scale(1);
    visibility: visible;
    opacity: 1;
    transition: all 0.2s ease-in-out 0s;
}

.single-product .right-block .btn-button:hover {
    background-color: #0BA9ED;
    color: #fff;
    border-color: #0BA9ED;
}

.single-product .left-block .quickpro {
    position: absolute;
    top: 30%;
    z-index: 9;
    left: 50%;
    margin-top: -20px;
    margin-left: -20px;
    transition: all 0.3s ease-in-out 0s;
    transform: scale(1);
    opacity: 0;
    visibility: hidden;
}

.single-product:hover .left-block .quickpro {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
    top: 50%;
}

.single-product .left-block .quickpro:hover {
    border-color: #fe3c00;
    color: #fff;
    background-color: #fe3c00 !important;
}

.single-product .right-block {
    margin-left: 180px;
    text-align: left
}

    .single-product .right-block .product-dsc h3 {
        padding-top: 15px;
    }

.single-product.margin-top {
    margin-top: 50px;
}

#sellers-products .border-layout:first-child {
    padding-top: 0;
}

#sellers-products .border-layout {
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin: 0;
}

    #sellers-products .border-layout:last-child {
        border-bottom: none;
    }

.pro-type span {
    display: inline-block;
    font-weight: 400;
    line-height: 1;
    padding: 4px 8px;
    text-transform: uppercase;
}

.pro-type span {
    color: #fff;
}

.product-img > a {
    background: #f5f5f5 none repeat scroll 0 0;
    display: block;
}

.pro-type {
    background: #0BA9ED none repeat scroll 0 0;
    left: 0;
    margin-left: 0;
    position: absolute;
    top: 0;
    z-index: 5;
}

.p-price {
    color: #000;
}

.product-dsc p {
    display: block;
    margin-bottom: 12px;
}

    .product-dsc p a {
        color: #00aeef;
    }

.img-responsive {
    position: relative;
    height: auto !important;
    width: 100%;
    padding-top: 90%;
    overflow: hidden;
}

.product-dsc .price {
    padding: 0;
    margin-top: 10px;
}

.price .ins {
    color: #0BA9ED;
    font-weight: 600;
    font-size: 15px;
}

.price .del {
    color: #888;
    padding-left: 10px;
    text-decoration: line-through;
    font-size: 13px;
}

.img-responsive.img-small {
    padding-top: 65% !important;
}

.img-responsive img {
    object-fit: contain;
    margin: auto;
    padding: 10px;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.product-dsc h3 {
    margin: 2px 0 9px 0;
    font-weight: 600;
    line-height: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: 40px;
    -webkit-box-orient: vertical;
}

.review_rating {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #FF9F00
}

.review_rating_text {
    color: #333;
    font-weight: 500;
    white-space: nowrap;
}

.rating span.fa-stack .fa-star-o:before, .ratings span.fa-stack .fa-star-o:before {
    content: "\f006";
}

.btn.btn-cart {
    margin-top: 20px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    color: #333;
    border: 1px solid #8C9EC5;
    width: 100%;
    text-align: center;
    padding: 7px 18px;
    transition: all .3s ease 0;
}

.box-btn-cart a.btn-cart:hover {
    background-color: #FD9636;
    color: #fff;
    border-color: #FD9636;
}

.fs-comment {
    width: 100%;
    display: table;
    border-radius: 5px;
    border: 1px solid #ddd;
    margin-bottom: 15px
}

.fs-cm-c1 {
    width: 193px;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    font-size: 12px;
    color: #4a4a4a;
    padding: 10px;
    border-right: 1px solid #d8d8d8
}

.fs-cm-c2 {
    display: table-cell;
    vertical-align: middle;
    padding: 15px;
    width: 300px;
    border-right: 1px solid #d8d8d8
}

.fs-cm-c3 {
    display: table-cell;
    vertical-align: middle;
    padding: 15px;
    text-align: center
}

    .fs-cm-c3 h4 {
        font-size: 16px;
        color: #4a4a4a;
        margin-bottom: 15px
    }

.btn-send-r span {
    cursor: pointer;
    line-height: 34px;
    padding: 10px 35px;
    color: #fff;
    background-image: linear-gradient(-180deg,#e52025 2%,#d81116 96%);
    border-radius: 3px
}

ul.rating2 {
    padding: 0
}

    ul.rating2 li {
        float: left;
        margin: 5px 3px 3px 0
    }

        ul.rating2 li i {
            font-size: 1.2em;
            color: #ffa700
        }

            ul.rating2 li i.none {
                color: #ccc
            }

.rating > input {
    display: none
}

.rating > label {
    color: #ddd;
    float: right;
    margin-bottom: 0;
    line-height: 1
}

    .rating > label:before {
        margin: 5px 10px 5px 0;
        font-size: 1.6em;
        font-family: 'FontAwesome';
        display: inline-block;
        font-weight: 900;
        content: "\f005"
    }

.rating > .half:before {
    font-family: 'FontAwesome';
    content: "\f089";
    position: absolute
}

.rating > input:checked ~ label, .rating:not(:checked) > label:hover, .rating:not(:checked) > label:hover ~ label {
    color: #FFD700
}

.rating-at > li label {
    color: #282828;
    width: 54px;
    text-align: center;
    font-weight: 600;
    margin: 0
}

.rating-at > li div {
    margin: 0 10px;
    display: inline-block;
    min-width: 5px;
    height: 10px;
    background: -webkit-linear-gradient(top,#eee,#f6f6f6);
    background: linear-gradient(to bottom,#eee,#f6f6f6);
    background-color: #f3f3f3;
    border-radius: 4px;
    box-shadow: inset 0 1px 2px rgba(0,0,0,.1),inset 0 0 0 1px rgba(0,0,0,.1);
    width: 100%;
    flex: auto;
    overflow: hidden
}

    .rating-at > li div span {
        -webkit-transition: width .5s ease;
        transition: width .5s ease;
        float: left;
        font-size: 0;
        height: 100%;
        border-radius: 4px;
        background: #fb0;
        background: -webkit-linear-gradient(top,#ffce00,#ffa700);
        background: linear-gradient(to bottom,#ffce00,#ffa700);
        background-color: #ffce00;
        display: block
    }

.rating-at > li .count {
    color: #323431;
    width: 123px;
    font-size: 12px
}

.rating-at > li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px
}

.wp-rating-left {
    padding: 10px;
    border: 1px solid #ccc
}

.wp-rating-right {
    margin-top: 10px
}

.start-1 fieldset.rating {
    float: left;
    font-size: 14px;
    margin-top: -5px;
    margin-bottom: 6px;
}

.er-titte-cm h2 {
    display: block;
    margin-bottom: 15px;
    line-height: 1.3em;
    font-size: 18px;
    color: #333
}

.rating-send {
    display: none;
    padding: 0
}

.start-1 > span {
    display: block;
    margin-bottom: 10px;
    font-size: 15px
}

.start-1 > p {
    font-size: 15px;
    font-weight: 600;
    float: left;
    margin: 0 12px 0 0
}

    .start-1 > p.view-star {
        font-size: 40px;
        color: #ffa700;
        float: none;
        margin: 5px 0 0;
        line-height: 40px
    }

.comment-at {
    display: table;
    width: 100%;
    margin-bottom: 10px
}

    .comment-at textarea {
        height: 100px !important;
        margin-top: 10px
    }

.btn-cmt {
    padding: 10px 20px;
    border: none;
    color: #fff;
    height: 40px;
    background-image: linear-gradient(-180deg,#e52025 2%,#d81116 96%);
    border-radius: 3px
}

.media-at {
    display: table;
    width: 100%;
    padding: 10px 0;
}

.comava-at {
    background: #ccc;
    float: left;
    font-size: 12px;
    font-weight: 300;
    height: 25px;
    line-height: 25px;
    margin-right: 10px;
    text-align: center;
    width: 25px;
    color: #fff
}

.combody-at {
    display: block;
    width: calc(100% - 35px);
    margin-top: 4px;
    float: left
}

.listrep-at {
    margin: 15px 0 0 36px;
    background: #f8f8f8;
    padding: 10px 15px 0 12px;
    overflow: hidden;
    border-radius: 0px;
    clear: both;
    border: 1px solid #dfdfdf
}

.comact-at .time-at {
    font-size: 12px;
    color: #999;
}

.combody-at p {
    margin: 3px 0 0 0;
    font-size: 13px;
    clear: both
}

.qtv-at {
    background: #0BA9ED
}

.combody-at strong i {
    padding: 1px 5px;
    font-size: 10px;
    font-weight: 400 !important;
    font-style: normal;
    text-transform: uppercase;
    display: inline-block;
    margin-left: 10px;
    color: #000;
    border-radius: 2px;
    background: #ffa63e
}

.comact-at .reply-at {
    color: #0BA9ED;
    cursor: pointer;
    font-size: 12px;
    padding-right: 10px;
    float: left
}

.comment-at.repbox-at {
    display: none
}

.comact-at {
    padding: 10px 0
}

.box-cmt-danhgia {
    margin-top: 15px
}

.button-group {
    margin-top: 10px;
    display: flex
}

.col-input {
    margin-top: 10px;
    display: flex
}

    .col-input ._upfile {
        border: 1px solid #ccc;
        border-radius: 4px;
        background: #f7f7f7;
        font-size: 14px;
        padding: 7px;
        height: 40px;
        display: inline-block;
        float: left;
        margin-right: 10px;
        color: #333;
    }

    .col-input label {
        border: 1px solid #ccc;
        border-radius: 4px;
        background: #f7f7f7;
        cursor: pointer;
        margin-right: 10px;
    }

        .col-input label span {
            display: inline-block;
            width: 150px;
            background: url(https://baochauelec.com/static/img/camera.png) no-repeat;
            background-size: 23px 20px;
            background-position: 5px 8px;
            padding: 10px 10px 10px 33px
        }

    .col-input .form-control {
        margin-right: 10px;
    }

.product-dsc h3 a {
    color: #333;
    font-size: 14px;
}

.product-dsc .add_to_cart a {
    border: 1px solid #a0a0a0;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    letter-spacing: -0.02em;
    color: #000;
    font-size: 12px;
    padding: 9px 30px;
    text-transform: uppercase;
    transition: none;
    background: linear-gradient(to bottom, #fefdfe 0, #f7f7f7 100%);
}

    .product-dsc .add_to_cart a:hover {
        color: #fff;
        background: #0BA9ED;
        border-color: #0BA9ED;
    }


.star-price .price-left {
    float: left;
}

.star-price .star-right {
    float: right;
}

.single-product.large-product:hover a {
    box-shadow: none;
}

.star-price {
    display: block;
    overflow: hidden;
}
/** photo-section **/
.photo-wpage {
    margin-bottom: 20px;
}

    .photo-wpage .photo-detail-thumb {
        margin-top: 15px;
        padding: 0 1px
    }

.photo-thumb .swiper-slide {
    height: 100%;
    opacity: .8;
    cursor: pointer;
}

.photo-thumb .swiper-slide-thumb-active {
    opacity: 1;
    border: 1px solid #FD9636;
    border-radius: 6px;
}

.photo-thumb .swiper-slide figure {
    position: relative;
    line-height: 0;
    display: block;
    padding: 0 0 75%;
    border: 1px solid #ddd;
    overflow: hidden;
    border-radius: 6px;
}

.photo-large {
    border-radius: 6px;
    border: 1px solid #ddd;
}

    .photo-large .swiper-slide figure {
        position: relative;
        line-height: 0;
        display: block;
        background: #fff;
        padding: 0 0 75%;
        overflow: hidden;
        border-radius: 6px;
    }

.photo-thumb .swiper-button-next::after, .photo-thumb .swiper-button-prev::after {
    font-size: 30px;
}

.photo-large .swiper-slide img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: pointer;
    border-radius: 6px;
}

.photo-thumb .swiper-slide img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: pointer;
    border-radius: 6px;
}

.photo-thumb .swiper-button-next, .photo-thumb .swiper-button-prev {
    width: 20px;
}

.photo-wpage .photo-thumb .swiper-button-next, .photo-wpage .photo-thumb .swiper-button-prev {
    background: transparent;
    box-shadow: none;
    border: none
}


.swiper-button-next, .swiper-button-prev {
    width: 40px;
    height: 40px;
    border: 1px solid #FD9636;
    border-radius: 50px;
    background: #fff;
    box-shadow: 0 3px 6px 0 rgb(72 139 216 / 20%);
    margin-top: -20px;
    top: 50%;
    text-align: center;
}

    .swiper-button-next svg, .swiper-button-prev svg {
        display: none
    }

.photo-large .swiper-button-next {
    right: 10px
}

.photo-large .swiper-button-prev {
    left: 10px
}

.swiper-button-prev::after, .swiper-button-next::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 26px;
    color: #FD9636;
    font-family: fontAwesome;
}

.swiper-button-next::after {
    content: '\f105';
    font-size: 25px;
}

.swiper-button-prev::after {
    content: '\f104';
    font-size: 25px;
}

.policy_avl {
    margin: 0 0 10px 0;
    padding: 10px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
}

    .policy_avl h4 {
        font-size: 16px;
        font-weight: 600;
        text-align: center;
        margin: 10px 0;
        text-transform: uppercase;
        color: #0BA9ED;
    }

.listService li {
    padding: 9px 0;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
}

    .listService li a {
        color: #569efc
    }

    .listService li:last-child {
        border: none
    }

    .listService li .icon {
        font-size: 16px;
        color: #FD9636;
        width: 20px;
        height: 20px;
        line-height: 20px;
        text-align: center;
        border-radius: 30px;
        align-items: center;
        margin-right: 10px;
    }

.listService.listtt li .icon {
    color: #288ad6
}

.listService li span {
    width: 75%;
}

ul.list_news_hot {
    padding: 0;
    margin-bottom: 30px;
    overflow: hidden
}

    ul.list_news_hot ._item {
        background: #fff;
        border-radius: 5px;
        display: flex;
        margin-bottom: 25px;
    }

        ul.list_news_hot ._item ._img-def {
            width: 96px;
            height: 72px;
            position: relative;
            border-radius: 5px;
            overflow: hidden;
        }

            ul.list_news_hot ._item ._img-def img {
                object-fit: cover;
                height: 100%;
                width: 100%
            }

        ul.list_news_hot ._item ._text-def {
            width: calc(100% - 96px);
            padding: 0 15px 0 15px;
            max-height: 86px;
            color: #333;
            line-height: 20px;
            transition: 0.35s;
        }

            ul.list_news_hot ._item ._text-def .date {
                display: flex;
                justify-content: space-between;
                color: #8C9EC5;
                font-size: 12px;
            }

            ul.list_news_hot ._item ._text-def h3 {
                display: -webkit-box;
                width: 100%;
                overflow: hidden;
                -webkit-line-clamp: 3;
                -webkit-box-orient: vertical;
                text-overflow: ellipsis;
                font-size: 14px;
            }

                ul.list_news_hot ._item ._text-def h3:hover {
                    color: #000
                }

        ul.list_news_hot ._item:hover ._img-def:before {
            width: 100%;
            height: 100%;
            opacity: 1;
        }

        ul.list_news_hot ._item:hover ._img-def:after {
            opacity: 1;
            -webkit-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 1, 1);
            transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 1, 1);
        }

    ul.list_news_hot ._img-def:after {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-top: 1px solid #fff;
        border-bottom: 1px solid #fff;
        content: '';
        opacity: 0;
        -webkit-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 0, 1);
        transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 0, 1);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        transition: opacity 0.5s, transform 0.5s;
    }

    ul.list_news_hot ._img-def:before {
        position: absolute;
        z-index: 1;
        top: 50%;
        left: 50%;
        content: '';
        transform: translate(-50%, -50%);
        width: 25%;
        height: 25%;
        opacity: 0;
        transition: all .25s ease;
        background-color: rgb(175 126 39 / 30%);
    }

.tab_product {
    background: #FFF;
    padding: 20px 0px;
    overflow: hidden;
    clear: both
}

    .tab_product .tabs-title {
        background: #fff;
        margin-bottom: 20px;
        padding-left: 0px;
        border-bottom: solid 1px #ddd;
        overflow: hidden;
    }

    .tab_product .tab-link {
        position: relative;
        display: inline-block;
        background: transparent;
        padding: 0px;
        margin-right: 30px;
    }

        .tab_product .tab-link a {
            font-size: 22px;
            line-height: 31px;
            color: #8C9EC5;
            font-weight: 600;
        }

        .tab_product .tab-link.active {
            padding-bottom: 0px;
            color: #0BA9ED;
            border-bottom: 4px solid #0BA9ED;
        }

            .tab_product .tab-link.active a {
                color: #0BA9ED !important
            }

.products-page .navbar-toggle {
    background: #ddd;
}

    .products-page .navbar-toggle .icon-bar {
        background: #fff
    }

.products-page .navbar-collapse {
    padding: 0
}

.single-products .product-img {
    text-align: center;
    position: relative;
}

.products-page .product-img {
    text-align: center;
    position: relative
}
/* single product actions */
.actions-btn {
    top: 30%;
    left: 0;
    position: absolute;
    right: 0;
    text-align: center;
    z-index: 1;
}

    .actions-btn > a, .tooltip > .tooltip-inner, .single-blog .actions-btn > span, .top-action-btn a {
        background: #fff none repeat scroll 0 0;
        color: #0BA9ED;
        border: 1px solid #ddd;
        display: block;
        font-size: 15px;
        height: 36px;
        text-align: center;
        width: 36px;
        font-weight: 600;
        transition: unset;
    }

        .actions-btn > a:hover, .tooltip > .tooltip-inner:hover {
            background: #0BA9ED;
            border: 1px solid #0BA9ED;
            color: #fff;
        }

        .actions-btn > a i, .tooltip > .tooltip-inner, .top-action-btn a i {
            line-height: 36px;
            font-size: 18px;
        }

.single-product:hover .actions-btn > a {
    margin-left: 0;
    opacity: 1;
    transform: perspective(600px) rotateX(0deg) !important;
}

.actions-btn > a {
    display: inline-block;
    float: none;
    opacity: 0;
    overflow: hidden;
    transform: perspective(600px) rotateX(90deg);
    transform-origin: 50% 100% 0;
    margin-right: 6px;
}

.actions-btn a {
    transition: all .4s ease 0s;
}

#recently-products .list-products-5 {
    margin: 0 -10px;
}

.list-products-5 {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
    width: calc(100% + 20px);
}

    .list-products-5 .single-product {
        padding: 10px;
        margin-bottom: 0;
        flex: 0 0 auto;
        width: 20%;
    }

.list-products-cm .single-product {
    padding: 10px;
    text-align: left;
    margin-bottom: 0;
    flex: 0 0 auto;
    width: 25%;
}

.single-product .product-inner {
    text-align: left;
    border-radius: 4px;
    background-color: #fff;
    border: 1px solid #D5DFE4;
    padding: 15px;
    position: relative;
    transition-duration: .2s;
}

    .single-product .product-inner a.from-country {
        font-size: 11px;
    }

    .single-product .product-inner a.ma-product {
        font-size: 11px;
        color: #8C9EC5
    }

    .single-product .product-inner:hover {
        border: 1px solid #8C9EC5;
        transition-duration: .2s;
    }

.list-products-5 .single-product .product-inner:hover {
    transform: translateY(-2px);
    border: 1px solid #FF9F00;
    transition-duration: .2s;
}

.list-products-cm .single-product .product-inner:hover {
    border: 1px solid #8C9EC5;
}

.list-products-5 .single-product .product-inner:hover a.from-country:hover {
    color: #FF9F00
}

.single-product {
    overflow: hidden;
    text-align: center;
    position: relative;
    margin-bottom: 30px;
    border-radius: 4px;
}

#hsx-products .owl-carousel {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-left: 1px solid #ddd;
}

#hsx-products .single-product {
    text-align: left;
    border-right: 1px solid #ddd;
    margin-bottom: 0;
}

#hsx-products .owl-theme .owl-nav {
    display: none
}

#hsx-products .extendinst {
    font-size: 12px;
    font-weight: 600;
    position: absolute;
    left: 10px;
    bottom: 8px;
}

    #hsx-products .extendinst .quantity {
        border-radius: 2px;
        font-size: 12px;
        font-weight: 600;
        padding: 0 5px;
        background: #f4f4f4;
        display: inline-block;
        color: #0BA9ED;
    }

#hsx-products .product-dsc p {
    margin: 0;
    font-weight: 300;
    font-size: 13px;
}

.banner-box.banner-box-re {
    margin-bottom: 36px;
}

.re-img {
    position: relative;
    height: auto !important;
    width: 100%;
    padding-top: 90%;
    overflow: hidden;
}

    .re-img img {
        object-fit: contain;
        margin: auto;
        padding: 30px;
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }

    .product-img a::before, .banner-box a::before, .post-thumb a::before, .re-img a::before {
        background: #000;
        bottom: 0;
        content: "";
        height: 100%;
        left: 0;
        opacity: 0;
        position: absolute;
        right: 0;
        top: 0;
        transition: all 300ms ease-in-out 0s;
        visibility: hidden;
        width: 100%;
        z-index: 1;
    }

.banner-box:hover a::before, .blog-container-inner:hover a::before, .sale-curosel1:hover a::before {
    opacity: .3;
    visibility: visible;
}

.li-item:hover .re-img a::before {
    opacity: 0.02;
    visibility: visible;
}

.single-product:hover a::before {
    opacity: 0.02;
    visibility: visible;
}

.banner-box img {
    width: 100%;
}

.tooltip > .tooltip-inner, .single-blog .actions-btn > span {
    text-transform: uppercase;
}

.tooltip > .tooltip-inner {
    display: inline-block;
    padding: 0 10px;
    width: auto;
    font-size: 12px;
}

.bannertext h4 a:hover, .bannertext > a:hover {
    color: red;
}

.tooltip {
    opacity: 1 !important;
}

    .tooltip > .tooltip-inner {
        border-radius: 0;
        margin-left: -7px;
    }

.actions-btn a i.pe-7s-expand1 .tooltip > .tooltip-inner {
    margin-left: 10px !important;
    background: #000;
}

.actions-btn a:first-child .tooltip {
    margin-left: 10px !important;
    background: #000;
}

.tooltip .tooltip-arrow {
    display: none;
}


.product-img a .secondary-image {
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: all 0.4s ease 0s;
}

.single-product:hover .secondary-image {
    opacity: 1;
}

.list-brand-cate {
    font-size: 15px;
    list-style: none;
    border-top: 1px solid #ddd;
    border-left: 1px solid #ddd;
}

    .list-brand-cate li {
        background: #fff;
    }

        .list-brand-cate li a:hover img {
            transition: 0.3s;
            -webkit-transform: scale(1.12);
            -ms-transform: scale(1.12);
            transform: scale(1.12);
        }

        .list-brand-cate li .category-card__image {
            overflow: hidden
        }

            .list-brand-cate li .category-card__image img {
                object-fit: contain;
                padding: 15px 5px;
                width: 100%;
                height: 76px
            }

        .list-brand-cate li .category-card__name {
            border-top: 1px solid #e6e6e6;
            padding: 15px 8px;
            font-weight: 600;
            text-align: center;
            line-height: 1.25rem;
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -webkit-flex-direction: column;
            -ms-flex-direction: column;
            flex-direction: column;
            -webkit-box-pack: center;
            -webkit-justify-content: center;
            -ms-flex-pack: center;
            justify-content: center
        }

        .list-brand-cate li a {
            font-size: 14px;
            color: #212121;
            display: block;
            border-right: 1px solid #ddd;
            border-bottom: 1px solid #ddd;
            justify-content: center;
            align-items: center
        }

            .list-brand-cate li a:hover {
                -webkit-transform: translateZ(0);
                transform: translateZ(0);
                z-index: 1;
                border-color: rgba(0,0,0,.12);
                box-shadow: 0 0 .8125rem 0 rgba(0,0,0,.05)
            }

.product-flash-sale {
    position: relative;
    margin-bottom: 25px;
}

    .product-flash-sale .title-category h2 span {
        padding-right: 5px;
    }

    .product-flash-sale .title-category:before {
        background: transparent;
    }

    .product-flash-sale .title-category h2:after {
        margin-left: 10px;
        content: '\f0e7';
        display: inline-block;
        color: #0BA9ED;
        font-family: FontAwesome;
        width: 0;
        top: -5px;
        background: transparent;
        font-size: 30px;
    }

.nav-cate-top {
    overflow: hidden;
    margin-bottom: 15px;
    position: relative;
}

    .nav-cate-top.expand {
        height: auto
    }

    .nav-cate-top .hot {
        border: .5px solid #0BA9ED;
    }

        .nav-cate-top .hot h3 {
            color: #0BA9ED;
        }

    .nav-cate-top .second {
        display: none;
    }

    .nav-cate-top img {
        display: block;
        width: 50px;
        height: 50px;
        margin: 10px auto 0;
    }

    .nav-cate-top h3 {
        display: -webkit-box;
        font-size: 13px;
        color: #333;
        font-weight: 400;
        line-height: 20px;
        text-align: center;
        margin-top: 5px;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        word-break: break-word;
        max-height: unset;
        padding: 0 2px;
    }

    .nav-cate-top a {
        width: 10%;
        border: .5px solid #f1f1f1;
        margin: 0;
        float: left;
        position: relative;
        cursor: pointer;
        overflow: hidden;
        border-radius: unset;
        height: 110px;
    }

        .nav-cate-top a.expand-cate {
            display: none
        }

        .nav-cate-top a:hover {
            border-color: transparent;
            border: .5px solid;
        }

#slider-home {
    margin: 0px 0 6px 0
}
    /* owl buttons */

    #slider-home:hover .owl-nav [class*='owl-'] {
        opacity: 1;
    }

    #slider-home .owl-nav [class*='owl-'] {
        width: 40px;
        height: 40px;
        line-height: 35px;
        margin-top: -20px;
        color: #000 !important;
        opacity: 0;
    }

    #slider-home .owl-nav i {
        font-size: 25px;
    }

    #slider-home .owl-nav .owl-prev {
        left: 20px;
    }

    #slider-home .owl-nav .owl-next {
        right: 20px;
    }

    #slider-home .owl-nav .owl-next, #slider-home .owl-nav .owl-prev {
        position: absolute;
        top: 50%;
        margin: -20px 0 0 0;
    }

        #slider-home .owl-nav .owl-next:hover, #slider-home .owl-nav .owl-prev:hover {
            background-color: #eee;
        }

.box-button-slider {
    position: absolute;
    top: 10px;
    right: 0;
}

#proindex_slide .swiper-button-next {
    left: auto;
    right: 0;
    top: 20px;
}

#proindex_slide .swiper-button-next {
    background: url(https://techmartvietnam.vn/themes/sancongnghe/assets/imgs/slider/swiper/next.svg) no-repeat 0 0;
}

    #proindex_slide .swiper-button-next svg, #proindex_slide .swiper-button-prev svg {
        display: none
    }

#proindex_slide .swiper-button-prev {
    left: auto;
    right: 40px;
    top: 20px;
}

#proindex_slide .swiper-button-prev {
    background: url(https://techmartvietnam.vn/themes/sancongnghe/assets/imgs/slider/swiper/prev.svg) no-repeat 0 0;
}


.block-sale-2 {
    background-color: #D1ECFD;
    border-radius: 4px;
    padding: 20px 20px 0;
    position: relative;
    overflow: hidden;
    height: 220px;
}

    .block-sale-2.circle-1 * {
        position: relative;
        z-index: 2;
    }

    .block-sale-2 .box-sale h4 {
        line-height: 26px;
        font-size: 24px;
    }

    .block-sale-2.circle-1::before {
        content: "";
        height: 100%;
        width: 100%;
        position: absolute;
        top: 40px;
        left: 0;
        background: url(images/bg-sale1.png) no-repeat bottom right;
        z-index: 1;
    }

.align-items-end {
    align-items: flex-end !important;
}

.align-items-center {
    align-items: center !important;
}

.box-sale .btn.btn-arrow {
    background: url(images/arrow.svg) no-repeat right 0 top 20px;
}

.btn.btn-arrow {
    font-size: 12px;
    line-height: 32px;
    color: #0BA9ED;
    font-weight: 700;
    padding-left: 0;
    padding-right: 15px;
    text-transform: uppercase;
    background: url(images/arrow.svg) no-repeat right 0 top 16px;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.height-100 {
    height: 100% !important;
}

.head-main {
    display: inline-block;
    width: 100%;
    padding: 0;
    border-bottom: 1px solid #D5DFE4;
    margin-bottom: 30px;
    position: relative;
}

.head-main-pro {
    display: inline-block;
    width: 100%;
    padding: 0;
    border-bottom: 1px solid #D5DFE4;
    margin-bottom: 5px;
    position: relative;
}

.head-main h3 {
    font-size: 32px;
    line-height: 41px;
    font-weight: 600;
}

.head-main p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

.list-col-ck {
    display: table;
    table-layout: fixed;
    width: calc(100% + 20px);
    margin: 0 -10px;
}

    .list-col-ck li {
        float: left;
        width: 25%;
        padding: 0 10px;
    }

        .list-col-ck li .item-list {
            border-radius: 4px;
            display: flex;
            padding: 15px;
            height: 100%;
        }

            .list-col-ck li .item-list .icon-left {
                padding-right: 10px;
                min-width: 50px;
                max-width: 50px;
                padding-top: 5px;
            }

            .list-col-ck li .item-list .info-right {
                vertical-align: top;
            }

        .list-col-ck li h5 {
            margin-bottom: 0;
            font-size: 20px;
            line-height: 28px;
            font-weight: 600;
        }

        .list-col-ck li p {
            color: #333
        }

.card-grid-style-2 {
    border: 1px solid #D5DFE4;
    background: #fff;
    padding: 15px;
    display: flex;
    margin-bottom: 20px;
    border-radius: 4px;
    width: calc(100% - 1px);
    min-height: 156px;
    max-height: 156px;
    transition-duration: .2s;
    overflow: hidden;
    position: relative;
}

    .card-grid-style-2.sp {
        min-height: 186px;
        max-height: 216px;
    }

        .card-grid-style-2.sp a.ma-product {
            margin-bottom: 5px;
            display: block;
            font-size: 11px;
            color: #8C9EC5;
        }

    .card-grid-style-2:hover {
        border: 1px solid #8C9EC5;
        transition-duration: .2s;
    }

    .card-grid-style-2 .image-box-sp {
        position: relative;
        text-align: center;
        width: 30%;
        display: inline-block;
        height: 185px;
        overflow: hidden;
        margin-right: 15px;
    }

    .card-grid-style-2 .image-box {
        min-width: 135px;
        max-width: 135px;
        position: relative;
        padding-right: 15px;
        text-align: center;
        overflow: hidden;
    }

    .card-grid-style-2 .info-right {
        width: 100%;
        position: relative;
    }

        .card-grid-style-2 .info-right h4 {
            margin: 25px 0 15px 0
        }

.product-title-buy {
    margin-bottom: 10px;
    display: block;
    height: 40px;
    font-weight: 600;
    overflow: hidden;
}

.card-grid-style-2 a:hover {
    color: #222
}

.product-desc {
    margin: 20px 0;
    color: #333;
    height: 60px;
    overflow: hidden;
}

.sidebar-border {
    border: 1px solid #DDE4F0;
    margin-bottom: 30px;
}

    .sidebar-border .sidebar-head {
        border-bottom: 1px solid #DDE4F0;
        padding: 20px 22px 18px;
    }

        .sidebar-border .sidebar-head h6 {
            font-size: 16px;
            margin: 0
        }

    .sidebar-border .sidebar-content {
        padding: 20px;
    }

.list-nav-arrow li {
    margin: 0 0 15px;
    position: relative;
}

    .list-nav-arrow li:hover {
        padding-left: 3px;
        transition-duration: .2s;
    }

    .list-nav-arrow li a {
        font-size: 16px;
        line-height: 24px;
        color: #333;
        display: block;
        padding: 0 0 0 15px;
        background: url(images/arrow-menu.svg) no-repeat 0 6px;
    }

        .list-nav-arrow li a:hover {
            color: #FD9636;
        }

        .list-nav-arrow li a .number {
            background-color: #F0F3F8;
            border-radius: 7px;
            font-size: 12px;
            line-height: 18px;
            font-weight: 500;
            color: #333;
            padding: 3px 0;
            float: right;
            position: absolute;
            right: 0;
            top: 0;
            min-width: 25px;
            text-align: center;
            transition-duration: .2s;
        }

    .list-nav-arrow li:hover .number {
        background-color: #FD9636;
        color: #fff;
        transition-duration: .2s;
    }

.box-slider-item .head {
    border-bottom: 1px solid #DDE4F0;
    display: inline-block;
    width: 100%;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

    .box-slider-item .head h5 {
        font-size: 20px;
        line-height: 26px;
        font-weight: 600;
    }

    .box-slider-item .head::before {
        content: "";
        height: 3px;
        width: 68px;
        background-color: #FD9636;
        position: absolute;
        bottom: 0;
        left: 0;
    }

.tags-tukhoa {
    background: #fff;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

    .tags-tukhoa a {
        border-radius: 8px;
        border: 1px solid #B2C2E1;
        padding: 8px 16px;
        display: inline-block;
        background: #fff;
        margin-right: 5px;
        font-weight: 500;
        font-size: 12px;
        line-height: 18px;
        color: #333;
        margin-bottom: 10px;
    }

        .tags-tukhoa a:hover {
            background-color: #B2C2E1;
            color: #0E224D;
        }

#blog .owl-nav, #new-products .owl-nav, #sellers-products .owl-nav, #recently-products .owl-nav, .list-brand-cate .owl-nav, #buy-products .owl-nav {
    position: absolute;
    top: -85px;
    right: -3px;
    padding-left: 20px;
}

#blog .owl-nav, #new-products .owl-nav, #sellers-products .owl-nav, #recently-products .owl-nav, .list-brand-cate .owl-nav, #buy-products .owl-nav {
    position: absolute;
    top: -85px;
    right: -3px;
    padding-left: 20px;
}

#recently-nav .list-products-5 {
    margin: 0 -10px;
}

#recently-nav .owl-nav {
    position: absolute;
    top: -85px;
    right: -3px;
}

.owl-theme .owl-nav [class*='owl-']:hover {
    background: #033095;
    color: #FFF;
    text-decoration: none;
}

.owl-theme .owl-nav [class*=owl-] {
    color: #2c5da9;
    margin: 5px 3px;
    width: 30px;
    font-size: 17px;
    line-height: 20px;
    text-align: center;
    height: 30px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #2c5da9;
    display: inline-block;
    cursor: pointer;
}

.owl-theme .owl-controls .owl-buttons .owl-prev {
    left: 15px;
    right: auto;
}

.owl-theme .owl-controls .owl-buttons div {
    background: #2a3c52;
    border-radius: 0;
    color: #fff;
    font-size: 18px;
    height: 35px;
    line-height: 33px;
    margin: 2px;
    opacity: 0;
    padding: 0;
    position: absolute;
    right: 15px;
    text-align: center;
    top: 46%;
    transition: all 0.3s ease 0s;
    width: 35px;
}

.re-blog.owl-theme .owl-controls .owl-buttons div {
    top: 43%;
}

.re-owl-carousel.owl-theme .owl-controls .owl-buttons div {
    top: 47%;
}

.product-slider.owl-theme:hover .owl-controls .owl-buttons div {
    opacity: 1;
}

#slider-home.owl-theme:hover .owl-controls .owl-buttons div {
    opacity: 1;
}

.re-owl-carousel2.owl-theme .owl-controls .owl-buttons .owl-prev {
    left: -40px;
}

.re-owl-carousel2.owl-theme .owl-controls .owl-buttons div {
    right: -40px;
    border: 1px solid #fff;
    color: #fff;
}

.btn_shop_all {
    text-align: center;
    clear: both;
    margin-top: 20px;
}

    .btn_shop_all a.btn-blank {
        font-size: 1.4rem;
        font-weight: 600;
        color: #fff;
        background: #000;
        border: #222 solid 2px;
        border-radius: 2px;
        padding: 12px 24px;
        min-width: 180px;
        -webkit-transition: all .3s ease-out;
        -moz-transition: all .3s ease-out;
        transition: all .3s ease-out;
        text-decoration: none;
        text-transform: uppercase;
        display: inline-block;
    }

        .btn_shop_all a.btn-blank:hover {
            color: #000;
            background: #fff;
            border: #222 solid 2px;
            border-radius: 2px;
        }

.barnd-bg .owl-buttons div i {
    margin-top: 1.5px;
}

.testimonials .owl-buttons {
    right: -100px;
}

.featured-products .owl-buttons {
    top: -16.3%;
}

.listcart {
    display: flex;
    clear: both;
}

    .listcart.quick {
        display: block
    }

        .listcart.quick label {
            padding: 10px 25px 0 0;
        }

        .listcart.quick .btn-add-cart {
            float: left;
            margin: 0;
            width: 100px;
        }

    .listcart label {
        float: left;
        text-transform: uppercase;
        padding: 10px 25px 0 0;
        font-weight: 600;
    }

    .listcart .quantity {
        height: 40px;
        width: 126px;
        float: left;
        margin: 0 10px 15px 0;
        border-radius: 3px;
        box-shadow: none
    }

    .listcart .inc.qtybutton, .listcart .dec.qtybutton {
        font-weight: 300;
        cursor: pointer;
        float: left;
        font-size: 22px;
        height: 38px;
        text-align: center;
        transition: all .4s ease 0;
        line-height: 38px;
        background: rgba(0,0,0,0.1);
        color: #000;
        width: 38px;
        border-radius: 50%;
        border: 0;
        transition: .3s;
    }

        .listcart .inc.qtybutton:hover, .listcart .dec.qtybutton:hover {
            background: #0BA9ED;
            color: #fff;
        }

    .listcart input.cart-plus-minus-box {
        float: left;
        width: 33%;
        border-radius: 0;
        margin: 0 3px;
        text-align: center;
        border: none;
        background: transparent;
        border-bottom: 1px solid #111;
        color: #111;
        font-size: 14px;
        height: 36px;
        padding: 8px;
        font-weight: 400;
    }

    .listcart li .promotion {
        background: #fff;
        padding: 5px 0;
        width: 345px;
        height: auto;
        margin: 0 10px 0 0;
        display: block;
        overflow: hidden
    }
/* quick view modal */
.quick-view.modal.fade.in {
    background: rgba(0, 0, 0, 0.5) none repeat scroll 0 0;
}

.main-view {
    background: #fff none repeat scroll 0 0;
    padding: 15px;
    border-radius: 0;
}

.quick-view .modal-dialog {
    width: 100%;
}

.quick-view .modal-footer {
    background: #fff none repeat scroll 0 0;
    border: 1px solid #333;
    border-radius: 50%;
    cursor: pointer;
    font-family: fontawesome;
    height: 25px;
    padding: 0;
    position: absolute;
    right: -15px;
    text-align: center;
    top: -15px;
    width: 25px;
}

.main-view .tab-pane {
    padding: 30px;
    margin-bottom: 5px;
}

.quick-thumb ul li {
    display: inline-block
}

.quick-thumb img {
    padding: 5.5px;
}

.quick-thumb .nav.nav-tabs img {
    width: 86px;
}

.quick-thumb .nav.nav-tabs {
    border: 0;
    text-align: center
}

.quick-thumb li {
    margin-left: 10px;
}

.quick-thumb {
    margin-left: -10px;
}
/* quick view right text */
.quick-right-text h3 {
    color: #333;
    margin-bottom: 15px;
}

.rating > a {
    color: #666;
    margin-left: 30px;
}

.quick-view .amount, .quick-view p, .quick-view .m-p-b {
    border-bottom: 1px solid #ccc;
    margin-bottom: 40px;
    padding: 40px 0;
}

.quick-view p, .quick-view .m-p-b {
    padding-top: 0;
}

.quick-view .amount > h4 {
    color: #333;
    font-size: 24px;
    line-height: 1;
}

.quick-view .amount > h4, .por-dse.color li a:last-child, .por-dse li.share-btn.qty {
    margin: 0;
}

.por-dse .share-btn span {
    padding: 6px 0;
}

.quick-right-text > p {
    line-height: 21px;
}

.por-dse span, .quick-right-text > p, .por-dse.add-to > a, .product-dsc p a {
    font-weight: 500;
}

.por-dse {
    padding: 10px 0;
    margin: 10px 0 20px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.dse-btn {
    padding: 10px 0
}

.por-dse li {
    margin-bottom: 8px;
    display: block;
    float: none
}

    .por-dse li:last-child {
        margin-bottom: 0;
    }

    .por-dse li a {
        color: #666;
        font-weight: 400;
        margin-right: 15px;
    }

.por-dse .plus-minus a:first-child {
    line-height: 25px;
}

.por-dse li span {
    width: 90px;
    display: inline-block;
}

.por-dse.color li span {
    width: 60px;
}

.por-dse li.share-btn {
    float: none;
}

.share-btn a, .other-btn a, .dse-btn .share-btn .plus-minus input {
    border: 1px solid #999;
    color: #999;
    float: left;
    font-size: 13px;
    height: 30px;
    margin-right: 5px !important;
    text-align: center;
    width: 30px;
}

    .share-btn a i, .other-btn a i {
        line-height: 30px;
    }

.dse-btn .share-btn .plus-minus a {
    font-size: 20px;
    cursor: pointer;
}

.por-dse li.share-btn a:hover i, .por-dse .other-btn li a:hover i {
    -webkit-animation: toBottomFromTop 0.4s forwards;
    -moz-animation: toBottomFromTop 0.4s forwards;
    animation: toBottomFromTop 0.4s forwards;
}

.por-dse li.share-btn a:hover i, .por-dse .other-btn li a:hover i, .por-dse.add-to > a:hover, .owl-theme .owl-controls .owl-buttons div:hover, .dse-btn .share-btn .plus-minus a:hover {
    color: #fff;
}
/*to bottom*/
@-webkit-keyframes toBottomFromTop {
    49% {
        -webkit-transform: translateY(100%);
    }

    50% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
    }

    51% {
        opacity: 1;
    }
}

@-moz-keyframes toBottomFromTop {
    49% {
        -moz-transform: translateY(100%);
    }

    50% {
        opacity: 0;
        -moz-transform: translateY(-100%);
    }

    51% {
        opacity: 1;
    }
}

@keyframes toBottomFromTop {
    49% {
        transform: translateY(100%);
    }

    50% {
        opacity: 0;
        transform: translateY(-100%);
    }

    51% {
        opacity: 1;
    }
}

.por-dse li.share-btn a:hover, .por-dse .other-btn li a:hover, .por-dse.add-to > a:hover, .owl-theme .owl-controls .owl-buttons div:hover {
    background: #ef6644;
    border-color: #ef6644;
}

.other-btn a {
    width: 40px;
    line-height: 30px;
}

.por-dse strong {
    margin-right: 3px;
}

.share-btn > span, .dse-btn .share-btn > input.qty {
    float: left;
}

.por-dse.add-to > a {
    border: 1px solid #999;
    color: #666;
    display: inline-block;
    padding: 9px 20px 5px 20px;
}

.por-dse.add-to > a, .dse-btn .share-btn {
    margin-top: 20px;
}

.dse-btn .por-dse li {
    margin-bottom: 0;
}

.dse-btn .share-btn > input.qty {
    height: 30px;
    margin-right: 5px;
    text-align: center;
    width: 50px;
}

.share-btn input.value-size[value] {
    font-size: 20px;
}

.share-btn input.qty[value] {
    color: #666;
}

.por-dse li a i {
    color: #999;
    line-height: 30px;
}

.share-btn input.value-size {
    background: transparent;
}

.share-btn.qut span {
    line-height: 1;
    padding: 8px 0;
}

.share-btn.qut, .owl-theme .owl-controls {
    margin-top: 0;
}

.box-review {
    display: flex
}

    .box-review .rating .rating-box {
        vertical-align: top;
        line-height: 18px;
    }

    .box-review .order-num {
        color: #0BA9ED;
        font-weight: 600;
        padding: 0 10px;
        font-size: 14px;
    }

    .box-review a {
        padding: 0 5px;
        display: inline-block;
    }

    .box-review .rating {
        display: inline-block;
    }

#quick-view .close, #select-size .close, #add-address .close, #search-store .close {
    opacity: 1;
    font-weight: 300;
    position: fixed;
    right: 20px;
    top: 10px;
    z-index: 12;
    font-size: 12px;
}

#quick-view .modal-lg {
    width: 1000px;
}

#quick-view .modal-dialog {
    margin: 48px auto;
}

#quick-view .modal-content {
    height: auto;
    overflow-y: auto
}

#quick-view .close:after, #select-size .close:after, #add-address .close:after, #search-store .close:after {
    font-size: 26px;
    position: relative;
    top: 7px;
    margin-left: 7px;
    color: #333;
    content: "\e680";
    font-family: 'Pe-icon-7-stroke'
}

#quick-view .modal-header, #select-size .modal-header {
    text-align: center;
    border: none;
    background: #f6f6f6;
    padding: 15px 0;
    text-transform: uppercase;
}

#quick-view .modal-footer, #select-size .modal-footer {
    background-color: #ebebeb;
    text-align: center;
    padding: 15px 0
}

    #quick-view .modal-footer button, #select-size.modal-footer button {
        margin: 0;
        background: #fff;
        color: #000;
        border: 1px solid #999;
        cursor: pointer;
        border-radius: 2px;
        display: inline-block;
        font-size: 13px;
        margin-bottom: 1.25rem;
        min-width: 150px;
        height: 44px;
        line-height: 23px;
        padding: 1rem;
        text-decoration: none;
        text-transform: uppercase;
        text-align: center;
        vertical-align: middle;
        white-space: nowrap;
    }

.modal-medium {
    width: 810px;
    margin: 142px auto;
}

.quick-view .owl-buttons {
    right: 60px;
    top: 16.6%;
}

.quick-view .owl-theme .owl-controls .owl-buttons div {
    font-size: 18px;
    height: 35px;
    margin: 4.5px;
    width: 35px;
}

    .quick-view .owl-theme .owl-controls .owl-buttons div i {
        line-height: 23px;
    }

.modal-footer > span {
    font-family: sans-serif;
    line-height: 22px;
}
/* fueatured products */
.product-tab li a::after {
    bottom: 0;
    top: unset;
    height: 1px;
}

.right-banner span, .product-tab li a::after {
    background: #0BA9ED none repeat scroll 0 0;
}

.product-tab li.active a::after {
    background: #333 none repeat scroll 0 0;
}

.product-tab li a {
    color: #333;
    display: block;
    font-weight: 400;
    line-height: 12px;
    margin: 0 18px;
    padding-bottom: 5px;
    position: relative;
}

.product-tab.nav {
    border: 0 none;
    margin-bottom: 30px;
    text-align: center;
}

.product-tab li {
    display: inline-block;
    margin: 0 -2px;
}

.product-dsc span del {
    color: #999;
    margin-right: 5px;
}
/* testmonial section */
.testimonial-dsc {
    overflow: hidden;
}

.testimonial-img h4 a {
    font-size: 16px;
}

.testimonial-img h4 a, .testimonial-img span, .testimonial-dsc p {
    color: #fff;
}

.testimonial-img a, .testimonial-img > span, .product-tab li a, .single-blog .actions-btn > a, .blog-dsc a, .footer-text input[type="submit"] {
    text-transform: uppercase;
}

.section-title.re-section-title > h3 {
    color: #fff;
}

    .section-title.re-section-title > h3::before {
        background: #fff none repeat scroll 0 0;
    }

    .section-title.re-section-title > h3::after {
        background: #fff none repeat scroll 0 0;
    }

.section-icon.re-section1 {
    color: #fff;
}

.testimonial-img h4 {
    margin-bottom: 5px;
    padding-top: 12px;
}

.testimonial-img span {
    display: block;
    margin-bottom: 25px;
}

.testimonial-dsc p {
    font-size: 14px;
    line-height: 23px;
}

.testimonials .owl-item {
    margin-right: 1px;
}

.testimonial-img img {
    border-radius: 100%;
    display: inline-block;
    height: 80px;
    width: 80px;
}

.testimonial-img {
    margin-top: 22px;
}

.testimonials {
    background-attachment: fixed !important;
    background-image: url("img/testimonial/1.jpg");
    background-size: cover !important;
    margin-top: 90px;
}

.re-testimonials {
    background: rgba(0, 0, 0, 0.4) none repeat scroll 0 0;
    padding-bottom: 70px !important;
    padding-top: 70px !important;
}

.re-owl-carousel2.owl-theme .owl-controls .owl-page span {
    background: #fff none repeat scroll 0 0;
    opacity: 1;
}

.owl-theme .owl-controls .owl-page:focus span, .owl-theme .owl-controls .owl-page.active span, .owl-theme .owl-controls .owl-page:hover span {
    background: #000 none repeat scroll 0 0;
    color: transparent;
    border: 1px solid #000;
}


.menu-mobile {
    position: absolute;
    top: 12px;
    cursor: pointer;
    z-index: 9;
}

    .menu-mobile .toggle__menu {
        width: 35px;
        height: 35px;
        line-height: 35px;
        display: inline-block;
        overflow: hidden;
        font-size: 21px;
        text-align: center;
        cursor: pointer;
        vertical-align: top;
        background-color: rgb(255, 255, 255);
        color: rgb(102, 102, 102);
        border-radius: 4px;
    }

        .menu-mobile .toggle__menu i {
            font-size: 20px;
            color: #111;
        }

/*--------------------------
  Toggle menu
-----------------------*/



.body__overlay {
    backface-visibility: hidden;
    background-color: rgba(0, 0, 0, 0.8);
    cursor: pointer;
    height: 100%;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    transition: opacity 0.3s ease 0s, visibility 0s ease 0.3s, transform 0.3s ease 0s;
    visibility: hidden;
    width: 100%;
    z-index: 99999;
}

    .body__overlay.is-visible {
        opacity: 1;
        transition: opacity 0.3s ease 0s, visibility 0s ease 0s, transform 0.3s ease 0s;
        visibility: visible;
    }

.offsetmenu {
    width: 80%;
    background: #fff none repeat scroll 0 0;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.08);
    right: 0;
    bottom: 0;
    position: fixed;
    top: 0;
    transform: translateX(200%);
    transition: all 300ms ease 0s;
    z-index: 2147483647;
}

    .offsetmenu.offsetmenu__on {
        transform: translateX(0px);
        transition: all 300ms ease 0;
    }

.offsetmenu__close__btn {
    padding: 0;
    position: absolute;
    left: -45px;
    top: 0;
    z-index: 10;
}

    .offsetmenu__close__btn a i {
        color: #fff;
        font-size: 45px;
        transition: all 0.3s ease 0s;
    }

    .offsetmenu__close__btn a:hover i {
        color: #ff4136;
    }

.drawer-header {
    background-color: #eee
}

    .drawer-header .drawer-header--auth {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 10px
    }

        .drawer-header .drawer-header--auth ._object {
            width: 40px;
            height: auto;
            color: #fff;
            font-size: 25px;
            overflow: hidden
        }

        .drawer-header .drawer-header--auth ._body {
            color: #111;
            font-size: 16px;
            text-transform: uppercase;
            font-weight: 600
        }

            .drawer-header .drawer-header--auth ._body a {
                color: #fff
            }

.fix-nav-mobie {
    height: calc(100% - 70px);
    height: -moz-calc(100% - 70px);
    height: -webkit-calc(100% - 70px);
    height: -o-calc(100% - 70px);
    overflow: auto
}

.mobile-navigation {
    margin-bottom: 10px
}

    .mobile-navigation nav {
        height: 100%
    }

        .mobile-navigation nav .mobile-menu li {
            display: block;
            position: relative
        }

            .mobile-navigation nav .mobile-menu li.active {
                background: #fafafa
            }

                .mobile-navigation nav .mobile-menu li.active a {
                    color: #005fd0
                }

            .mobile-navigation nav .mobile-menu li i {
                position: absolute;
                right: 12px;
                font-size: 23px;
                cursor: pointer;
                color: #555
            }

            .mobile-navigation nav .mobile-menu li li {
                background: #f0f0f0
            }

            .mobile-navigation nav .mobile-menu li.has-sub-menu .menu-expand {
                top: 0;
                right: 0;
                width: 42px;
                height: 42px;
                position: absolute;
                text-align: center;
                cursor: pointer
            }

                .mobile-navigation nav .mobile-menu li.has-sub-menu .menu-expand i {
                    display: block;
                    width: 15px;
                    margin-top: 20px;
                    border-bottom: 1px solid #1f2226;
                    -webkit-transition: all 250ms ease-out;
                    -o-transition: all 250ms ease-out;
                    transition: all 250ms ease-out
                }

                    .mobile-navigation nav .mobile-menu li.has-sub-menu .menu-expand i::before {
                        top: 0;
                        width: 100%;
                        content: "";
                        display: block;
                        position: absolute;
                        -webkit-transform: rotate(90deg);
                        -ms-transform: rotate(90deg);
                        transform: rotate(90deg);
                        border-bottom: 1px solid #1f2226;
                        -webkit-transition: .4s;
                        -o-transition: .4s;
                        transition: .4s
                    }

            .mobile-navigation nav .mobile-menu li.has-sub-menu.active > .menu-expand i::before {
                -webkit-transform: rotate(0);
                -ms-transform: rotate(0);
                transform: rotate(0)
            }

            .mobile-navigation nav .mobile-menu li a {
                font-size: 15px;
                width: 100%;
                line-height: 25px;
                font-weight: 600;
                border-bottom: 1px solid #e2e2e2;
                display: inline-block;
                padding: 8px 15px
            }

            .mobile-navigation nav .mobile-menu li ul li a {
                padding: 8px 35px;
                font-size: 12px;
                color: #000 !important;
                line-height: 25px;
                font-weight: 600
            }

                .mobile-navigation nav .mobile-menu li ul li a:hover {
                    color: #ff5151
                }

            .mobile-navigation nav .mobile-menu li ul li ul li a {
                padding: 8px 30px;
                font-size: 12px;
                color: #000;
                line-height: 25px;
                text-transform: none;
                font-weight: 500
            }

            .mobile-navigation nav .mobile-menu li ul li ul li ul li a {
                padding: 12px 40px
            }

.mobile-support {
    padding: 5px 10px 0;
    margin: 0
}

    .mobile-support li {
        margin-bottom: 3px;
        list-style-type: none;
        display: block;
        padding: 6px 0;
        line-height: 18px
    }

        .mobile-support li i {
            font-size: 20px;
            vertical-align: middle;
            margin-right: 10px
        }

.call_hotline {
    display: block;
    overflow: hidden;
    background: #fff;
    padding: 10px 0 0;
    font-size: 14px;
    color: #333;
    text-transform: uppercase;
    border-top: 1px solid #eee;
    clear: both
}

    .call_hotline a {
        font-size: 16px;
        color: #e1091b;
        float: none;
        width: auto;
        height: auto;
        background: #fff;
        border: 0;
    }

    .call_hotline i {
        font-size: 13px;
        color: #fff
    }

    .call_hotline span {
        display: inline-block;
        width: 25px;
        height: 25px;
        margin: 0 5px;
        background: #e52c25;
        text-align: center;
        color: #fff;
        line-height: 25px;
        border-radius: 100%
    }

/* blog section */
.blog section-padding-top .blog-container-inner {
    border: 0 none;
    margin: 0;
    padding: 0;
}

.visual-inner .blog-title {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 10px;
    margin-top: 10px;
}

.blog-title a {
    color: #253D4E;
    font-weight: 600;
}

    .blog-title a:hover {
        color: #0BA9ED;
    }

.visual-inner .blog-meta {
    float: none !important;
    width: 100%;
    font-size: 11px;
    margin-bottom: 10px;
    color: #8C9EC5;
}

.blog-meta > span {
    display: inline-block;
}

    .blog-meta > span a {
        color: #333;
    }

.visual-inner .blog-content {
    font-weight: 400;
    font-size: 12px;
    color: #8C9EC5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow: hidden;
    -webkit-box-orient: vertical;
    line-height: 1.8;
}

.blog-container-inner:hover .post-thumb a img {
    transform: scale(1.1);
}

.blog-container-inner .date-post {
    position: absolute;
    background-color: #0BA9ED;
    top: 20px;
    left: 20px;
    z-index: 2;
    padding: 5px 15px;
    color: #fff;
    line-height: 1.2;
}

    .blog-container-inner .date-post .day-post {
        font-size: 153%;
        font-weight: 500;
    }

.post-thumb a img {
    transition: transform 0.35s ease 0s;
    object-fit: cover;
    margin: auto;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.blog-container-inner {
    position: relative;
}

.post-thumb {
    position: relative;
    height: auto !important;
    width: 100%;
    border-radius: 5px;
    padding-top: 65%;
    overflow: hidden;
}

.tag-dot {
    border-radius: 4px;
    margin-top: 10px;
    font-size: 11px;
    padding: 5px 5px 5px 20px;
    display: inline-block;
    background: #D5DFE4 url(images/circle.svg) no-repeat 10px 11px;
    color: #333;
}

.btn.btn-news {
    background-image: url(images/arrow-2.svg);
    background-position: top 3px right 10px;
    background-repeat: no-repeat;
    padding: 0 40px 0 0;
    font-size: 17px;
    line-height: 19px;
    color: #FD9636;
    font-weight: 700;
}

.text-end {
    text-align: right !important;
}

.color-gray {
    color: #8C9EC5;
}

.news-list-cm .visual-inner .blog-content {
    font-size: 16px;
    margin-bottom: 20px
}

.blog-meta > span.post-category, .blog-meta > span.published {
    padding-right: 10px;
}

.blog-meta > span.published, .blog-meta > span.published2 {
    padding-left: 0;
}

    .blog-meta > span.published, .blog-meta > span.published2 .fa {
        margin-right: 5px
    }

.news-list-cm {
    margin-bottom: 35px;
}

    .news-list-cm .card-grid-top {
        display: flex;
        border: 1px solid #DDE4F0;
        border-radius: 5px;
        overflow: hidden;
    }

    .news-list-cm .image-box {
        max-width: 465px;
        min-width: 445px;
        width: 35%;
        padding-right: 20px;
        margin-bottom: 0;
    }

    .news-list-cm .blog-info {
        width: 75%;
        padding: 10px;
    }
/* ==== footer section ======*/


/* footer top area */
.footer-section {
    margin-top: 0px !important;
    padding-top: 50px;
    background-color: #fff;
    color: #666;
}

.cat-footer {
    width: 100%;
    margin-bottom: 28px;
}

@media (min-width: 1190px) {
    .cat-footer ul li {
        width: 20%;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .cat-footer ul li {
        width: 50%;
    }
}

.cat-footer ul li {
    float: left;
    padding: 0 10px;
    margin-bottom: 20px;
}

    .cat-footer ul li a:hover {
        border-color: #0BA9ED;
        background: #0BA9ED;
        color: #fff;
    }

    .cat-footer ul li a {
        padding-right: 10px;
        display: block;
        border: 1px solid #e5e5e5;
        line-height: 58px;
        font-size: 115.384%;
    }

        .cat-footer ul li a span.cat-icon {
            width: 58px;
            text-align: center;
            height: 58px;
            display: inline-block;
        }

            .cat-footer ul li a span.cat-icon img {
                padding: 12px;
            }

        .cat-footer ul li a:hover span.cat-icon {
            -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
        }

.footer-page {
    padding-top: 0px;
}

.footer-top {
    background: #ebf2ff url(images/footer_background.png);
    margin: 0;
    padding: 64px 0 75px;
}

.footer-menu ul li {
    display: inline-block;
    width: 100%
}

.middle-block {
    border-top: 1px solid #dedede;
    padding-top: 43px;
    margin-top: 30px;
}

.seo-struct {
    border-top: 1px solid #ddd;
    padding-top: 25px;
    padding-bottom: 25px;
    margin-top: 25px;
}

    .seo-struct ul {
        display: inline-block;
        width: 100%;
        max-width: 1520px;
    }

        .seo-struct ul li {
            float: left;
        }

            .seo-struct ul li:not(:last-child):after {
                content: '/';
                margin: 0 10px;
            }

.footer-title > h4, .footer-text li i, .footer-text p, .footer-menu a, .footer-text input[type="submit"]:hover, .single-service:hover i {
    color: #111;
}

.footer-title > h4 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #0E224D
}

.footer-text .mt-img {
    padding-top: 10px;
}

.footer-text p {
    margin: 20px 0 10px 0;
    font-size: 16px;
}

.footer-menu ul {
    margin-top: 8px;
}

.footer-menu li {
    color: #111;
    display: block;
    font-size: 16px;
    margin-top: 8px;
    padding-bottom: 8px;
    position: relative;
}

    .footer-menu li a {
        color: #111;
        display: block;
        font-size: 16px;
        background: url(images/arrow-gray.svg) no-repeat 0 6px;
        padding: 0 0 0 15px;
        position: relative;
    }

.footer-menu ul li a:hover {
    color: #0BA9ED;
    transition-duration: .2s;
    padding-left: 18px;
}

.footer-menu li, .footer-text li, .product-tab li {
    float: none;
}

.footer-text input {
    background: transparent none repeat scroll 0 0;
    color: #9a9a9a;
    width: 70%;
    margin: 20px 0;
    float: left;
    height: 40px;
    border: 1px solid #525252;
    padding: 10px;
}

.footer-text button {
    color: #fff;
    float: left;
    font-weight: 600;
    background: #0BA9ED;
    margin: 20px 0;
    width: 30%;
    border: none;
    padding: 10px;
    height: 40px;
    transition: all 0.3s ease 0s;
}

.footer-text input[type="submit"]:hover {
    background: #0BA9ED none repeat scroll 0 0;
}

.footer-text ul li p.rs {
    margin-left: 40px;
}
/* social-media */
.social-icon {
    margin-top: 20px;
}

    .social-icon li {
        float: left
    }

        .social-icon li a {
            color: #555;
            display: inline-block;
            font-size: 25px;
            margin-right: 15px;
        }

            .social-icon li a:hover {
                color: #0BA9ED;
            }

/* footer bottom */
.footer-bottom {
    background: #fff;
    padding: 30px 0;
    font-size: 14px;
}

.text-lg-right {
    text-align: right;
}

.menu-bottom li {
    display: inline-block;
}

    .menu-bottom li a {
        display: block;
        padding: 0 15px;
    }

.footer-bottom .copyright {
    color: #333;
    line-height: 20px;
}

    .footer-bottom .copyright a {
        color: #0BA9ED !important;
    }

.sticky .mainmenu a:hover {
    color: #0BA9ED !important;
}
/*-------------------------------------
[ 3. home version two ]
---------------------------------------*/
#new-products .col-md-4 {
    width: 100%;
}

.re-new-product .single-product .product-img {
    float: left;
    width: 40%;
}

.re-new-product .single-product .product-dsc {
    float: right;
    padding-left: 13px;
    width: 60%;
}

.re-new-product .product-dsc h3 {
    margin: -3px 0 5px;
}

.re-new-product .actions-btn {
    bottom: 18%;
    left: 78px;
    position: absolute;
    right: 0;
    text-align: center;
    z-index: 1;
}

    .re-new-product .actions-btn > a {
        font-size: 12px;
        height: 25px;
        width: 25px;
    }

        .re-new-product .actions-btn > a i {
            line-height: 25px;
        }

        .re-new-product .actions-btn > a:hover {
            background: #0BA9ED none repeat scroll 0 0;
        }

.re-new-product .star-price .star-right {
    font-size: 12px;
    margin-top: 4px;
}

.re-owl-carousel21.owl-theme .owl-controls .owl-page span {
    background: #0BA9ED none repeat scroll 0 0;
    opacity: 1;
}

.re-owl-carousel21.owl-theme .owl-controls .owl-page:focus span, .re-owl-carousel21.owl-theme .owl-controls .owl-page.active span, .re-owl-carousel21.owl-theme .owl-controls .owl-page:hover span {
    background: transparent none repeat scroll 0 0;
    border: 1px solid #0BA9ED;
    color: transparent;
}

.re-owl-carousel21 .owl-pagination {
    margin-top: 30px;
}

.re-testimonials2 .product-content h5::before {
    border-bottom: 4px solid #fff;
    content: "";
    display: block;
    position: absolute;
    width: 36px;
    bottom: 0;
}

.re-testimonials2 .product-content h5 a {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
}

.re-testimonials2 .product-content p {
    color: #fff;
    font-size: 15px;
}

.re-testimonials2 .pro-rating > a {
    color: #fff;
    font-size: 17px;
}

.re-testimonials2 .product-content {
    position: relative;
    margin-left: 15px;
}

    .re-testimonials2 .product-content span.old-price {
        color: #fff;
        display: block;
        font-size: 40px;
        text-decoration: line-through;
    }

    .re-testimonials2 .product-content > span {
        color: #f5c465;
        font-size: 51px;
        font-weight: 600;
        line-height: 60px;
    }

.re-testimonials2 .pro-rating {
    padding-bottom: 15px;
    padding-top: 15px;
}

.re-testimonials2 .timer {
    margin-top: 22px;
}

    .re-testimonials2 .timer span {
        background: #eb413e none repeat scroll 0 0;
        border-radius: 5px;
        color: #fff;
        display: block;
        float: left;
        font-size: 20px;
        margin-right: 2px;
        text-transform: uppercase;
        width: 60px;
        text-align: center;
        font-weight: 600;
        padding-top: 10px;
    }

    .re-testimonials2 .timer p {
        background: #b11512 none repeat scroll 0 0;
        color: #fff;
        font-size: 12px;
    }

.re-testimonials2 .re-text {
    overflow: hidden;
    position: relative;
}

.re-testimonials-all {
    display: block;
}

.sale-curosel1 {
    overflow: hidden;
    position: relative;
}

.re-testimonials-all:hover .owl-controls .owl-buttons div {
    opacity: 1;
}

.re-testimonials-all.re-owl-carousel2 .owl-pagination {
    margin-top: 30px;
}

.re-new-product2 .star-price .star-right {
    float: inherit;
}

.re-new-product2 .star-price .price-left {
    display: block;
    float: inherit;
}

.re-new-product2 .owl-theme .owl-controls .owl-buttons div {
    top: 43%;
}
/*--------------------- 4. shop --------------------*/
.li-item .actions-btn > a {
    margin-bottom: 49px;
}

.single-product.s-top.s-bottom {
    margin-bottom: 50px;
}

.single-product.s-top {
    margin-top: 50px;
}

.single-product.s-bottom {
    margin-bottom: 50px;
}

.all-shop-sidebar, .single-sidebar {
    overflow: hidden;
    position: relative;
}

.products-page .top-shop-sidebar::before, .single-product-area .single-sidebar::before {
    background: #ebebeb none repeat scroll 0 0;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    top: 21px;
    width: 100%;
    z-index: -1;
}

.top-shop-sidebar h3.wg-title {
    background: #fff none repeat scroll 0 0;
    color: #474747;
    font-size: 20px;
    display: inline-block;
    font-size: 17px;
    font-style: normal;
    font-weight: normal;
    line-height: 29px;
    margin: 0;
    opacity: 1;
    padding-right: 10px;
    text-transform: uppercase;
    visibility: visible;
    z-index: 99;
}

.products-page .shop-one {
    overflow: hidden;
    position: relative;
}

.products-page h3.wg-title2 {
    color: #000;
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    line-height: 18px;
    margin-top: 10px;
    text-transform: uppercase;
}

.products-page .shop-one .panel-title {
    font-size: 14px;
}

.products-page .shop-one ul {
    margin: 0;
    padding: 0;
}


.top-shop-sidebar.sim {
    margin-top: 14px;
}

.top-shop-sidebar h3.wg-title {
    background: #fff none repeat scroll 0 0;
    color: #474747;
    display: inline-block;
    font-size: 17px;
    font-style: normal;
    font-weight: normal;
    line-height: 29px;
    margin: 0;
    opacity: 1;
    padding-right: 10px;
    text-transform: uppercase;
    visibility: visible;
    z-index: 99;
}

.products-list {
    margin-bottom: 10px;
    overflow: hidden;
}

a.clear-all {
    color: #747474;
    display: inline-block;
    font-size: 13px;
    font-weight: 400;
    line-height: 13px;
    padding: 8px 0;
    text-transform: uppercase;
    transition: all 0.4s ease 0s;
}

.top-shop-sidebar.sim > a.blog8 {
    background: transparent none repeat scroll 0 0;
    border: 1px solid #dcdcdc;
    color: #747474;
    float: right;
    font-size: 13px;
    font-weight: 400;
    line-height: 13px;
    padding: 10px 15px 7px;
    text-transform: uppercase;
    transition: all 0.4s ease 0s;
}

.top-shop-sidebar.sim ul li {
    padding: 9px 0 7px !important;
}

.top-shop-sidebar.an-shop, .single-sidebar.an-shop {
    margin-top: 18px;
}

.products-page .top-shop-sidebar ul li.b-none, .single-product-area .single-sidebar ul li.b-none7 {
    border-bottom: inherit;
    display: inline-block;
    list-style: outside none none;
    padding: 15px 0 11px;
    width: 100%;
}

.top-shop-sidebar .tb-recent-thumbb {
    display: block;
    float: left;
    margin-right: 15px;
}

.tb-recent-thumbb > a img {
    width: 90px;
}

.top-shop-sidebar .tb-recentb {
    font-size: 13px;
    line-height: 22px;
    overflow: hidden;
    padding-top: 15px;
}

.tb-beg a {
    color: #333;
    font-size: 18px;
    line-height: 22px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow: hidden;
    -webkit-box-orient: vertical;
    margin-bottom: 10px;
    transition: all 0.4s ease 0s;
}

.title-beg a {
    color: #333;
    font-size: 13px;
    padding-right: 3px;
    line-height: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    overflow: hidden;
    font-weight: 500;
    -webkit-box-orient: vertical;
    transition: all 0.4s ease 0s;
}

    .title-beg a:hover {
        color: #00aeef;
    }

.products-page .tb-product-price, .single-sidebar .tb-product-price {
    color: #484848;
    font-size: 14px;
    font-weight: 400;
    line-height: 36px;
}

.top-shop-sidebar.sim2 {
    margin-top: 25px;
}

.top-shop-sidebar {
    position: relative;
}

    .top-shop-sidebar.sim > a.blog8:hover {
        background: #0BA9ED none repeat scroll 0 0;
        border-color: #0BA9ED;
        color: #fff;
    }

    .top-shop-sidebar ul li .tb-beg a {
        font-size: 14px;
    }

.products-page .top-shop-sidebar ul li.b-none:hover .tb-beg a, .single-product-area .single-sidebar ul li.b-none7:hover .tb-beg a {
    color: #0BA9ED;
}

.ro-info-box-wrap.tpl3 {
    max-width: 370px;
    position: relative;
}

.products-page .ro-info-box-wrap.tpl3 {
    margin-top: 30px;
}

.ro-info-box-wrap.tpl3 .tb-content {
    bottom: 0;
    left: 0;
    padding: 20px;
    position: absolute;
    text-align: center;
    width: 100%;
}

    .ro-info-box-wrap.tpl3 .tb-content .tb-content-inner {
        background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
        padding: 40px 10px;
    }

.tb-content-inner.an-inner > h3 {
    font-size: 20px;
}

.products-page .tb-content-inner.an-inner > h5 {
    color: #3a3a3a;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.15em;
    line-height: 33px;
    margin: 0;
}

.products-page .tb-content-inner.an-inner > h3 {
    color: #3a3a3a;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0.15em;
    line-height: 33px;
    margin: 0 0 20px;
}

.tb-content-inner > h6 > a {
    border-top: 1px solid #9c9c9c;
    color: #9c9c9c;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.15em;
    line-height: 27px;
    padding-top: 5px;
    transition: all 0.4s ease 0s;
}

.top-shop-sidebar.an-shop {
    overflow: hidden;
}

.price_filter > #amount {
    margin-bottom: 27px;
    margin-top: 20px;
}

.price_filter .ui-slider.ui-slider-horizontal.ui-widget.ui-widget-content.ui-corner-all {
    background: #000 none repeat scroll 0 0;
    border: medium none;
    height: 6px;
    margin-left: 10px;
    margin-top: 7px;
    width: 94%;
}

.price_filter .ui-slider-range {
    background: #00aeef none repeat scroll 0 0;
}

.price_filter > #amount {
    margin-bottom: 27px;
    margin-top: 20px;
}

#amount > input.first_price[type="text"], #amount > input.last_price[type="text"] {
    border: 1px solid #cccccc;
    border-radius: 30px;
    color: #585858;
    height: 30px;
    line-height: 30px;
    margin-right: 15px;
    text-align: center;
    width: 85px;
}

.products-page .button-shop {
    background: #00aeef none repeat scroll 0 0;
    border: medium none;
    border-radius: 30px;
    color: #fff;
    padding: 0 15px;
    float: right;
    height: 30px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease 0s;
}

    .products-page .button-shop i {
        color: #ffffff;
        font-size: 11px;
        font-weight: 400;
    }

.price_filter .ui-slider-handle.ui-state-default.ui-corner-all {
    background: #0BA9ED none repeat scroll 0 0;
    border: medium none !important;
    border-radius: 1em;
    box-shadow: none !important;
    cursor: ew-resize;
    height: 1em;
    outline: 0 none;
    position: absolute;
    width: 1em;
    z-index: 2;
}

.shop-one.re-shop-one {
    overflow: hidden;
}

.products-page .button-shop:hover {
    background: #0BA9ED none repeat scroll 0 0;
}

.tb-product-item-inner {
    overflow: hidden;
    position: relative;
}

.li-item:hover .actions-btn > a {
    margin-left: 0;
    opacity: 1;
    transform: perspective(600px) rotateX(0deg) !important;
}

.last-cart.l-mrgn.ns {
    display: inline-block;
    float: left;
}

.last-cart a.las4 {
    height: 40px;
    display: block;
    line-height: 40px;
    border: 1px solid #ddd;
    background-color: #fff;
    font-size: 14px;
    color: #0BA9ED;
    transition: 0.2s all ease-in-out;
    margin-right: 5px;
    padding: 0 15px;
    transition: all 0.4s ease 0s;
}

    .last-cart a.las4 i {
        margin-right: 5px;
    }

.products-page .tb-product-btn {
    display: inline-block;
    float: left;
    margin-left: 5px;
}

.products-page .li-item .tb-product-btn a {
    background: #fff none repeat scroll 0 0;
    color: #0BA9ED;
    display: block;
    font-size: 15px;
    font-weight: 600;
    height: 40px;
    text-align: center;
    transition: unset;
    width: 40px;
    float: left;
    border: 1px solid #ddd;
    margin-right: 10px;
    transition: all 0.4s ease 0s;
}

    .products-page .li-item .tb-product-btn a:hover {
        background: #0BA9ED none repeat scroll 0 0;
        border: 1px solid #0BA9ED;
        color: #fff;
    }

    .products-page .li-item .tb-product-btn a i {
        line-height: 38px;
    }

.tabs {
    position: relative;
    text-align: left;
    display: block;
}

.shop-all-tab-cr {
    border-bottom: 1px solid #ebebeb;
}

.shop-all-tab-nor {
    border-top: 1px solid #ebebeb;
}

.shop-all-tab {
    overflow: hidden;
    display: block;
}

.features-tab .shop-all-tab .two-part {
    float: right;
    width: 15%;
}

.features-tab .col-md-3 {
    width: 20%;
    padding: 0 10px;
}

.features-tab .col-md-4, .features-tab .col-md-8 {
    padding: 0 10px;
}


.features-tab .col-md-6 {
    padding-left: 10px;
    padding-right: 10px;
}

.box-filters {
    font-weight: 500;
    border-bottom: 1px solid #dee2e6;
    margin-bottom: 30px;
    padding-bottom: 9px;
    text-align: right
}

.color-gray-500 {
    color: #8C9EC5;
}

.box-filters span {
    margin-right: 20px
}

.box-filters .d-inline-block {
    display: inline-block;
}

.dropdown-sort {
    position: relative;
    margin-right: 30px;
    line-height: 21px;
    display: inline-block;
    vertical-align: middle;
}

    .dropdown-sort select {
        border: none
    }

.view-type-grid {
    display: inline-block;
    height: 34px;
    width: 34px;
    background: url(images/grid.svg) no-repeat center;
    background-size: cover;
    border-radius: 4px;
    vertical-align: middle;
}

.box-filters .tabs > li.active > a.view-type-grid {
    background: url(images/grid-hover.svg) no-repeat center;
}

.box-filters .tabs > li.active > a.view-type-list {
    background: url(images/list-hover.svg) no-repeat center;
}

.view-type-list {
    display: inline-block;
    height: 34px;
    width: 34px;
    background: url(images/list.svg) no-repeat center;
    background-size: cover;
    border-radius: 4px;
    vertical-align: middle;
}

.box-filters .nav > li > a {
    padding: 0;
    display: inline-block;
}

.box-filters .nav > li {
    display: inline-block
}


.two-part {
    float: right;
    margin: 0;
    padding: 0;
    text-align: center;
}

.shop-all-tab .re-shop {
    float: left;
    width: 85%;
}

.shop-all-tab .shop5 {
    float: left;
    margin-left: 30px;
}

.features-tab .shop-all-tab .shop6 {
    float: left;
    margin-left: 30px;
}

.features-tab .shop-all-tab .shop7 {
    float: left;
    line-height: 30px;
    margin-left: 10px;
}

.shop6 .sort-by {
    float: right;
    width: 47%;
}

.features-tab ul.tabs {
    display: inline-block;
    float: right;
}

.two-part .shop5 label, .shop6 label {
    color: #333;
    display: inline-block;
    font-size: 14px;
    font-weight: normal;
    margin: 0;
    vertical-align: middle;
}

.shop-all-tab .shop5 select, .shop6 select {
    background: #fff;
    border: 1px solid #d3d3d3;
    color: #777;
    font-size: 14px;
    padding: 5px 12px;
    vertical-align: middle;
}

.shop6 select {
    width: 180px;
}

.shop-all-tab .sort-by .shop6 a {
    color: #2b2b2b;
    margin: 0 0 1px;
    padding: 3px 5px 3px 0px;
    vertical-align: middle;
}

    .shop-all-tab .sort-by .shop6 a:hover {
        color: #00a9e0;
    }

.two-part .shop5, .shop6 {
    font-size: 12px;
    color: #707070;
}

.two-part .page p {
    float: left;
    height: 50px;
    margin: 10px 2px 0px;
}

.two-part .page ul {
    margin-top: 10px;
    float: left;
}

    .two-part .page ul li {
        color: #00a9e0;
        display: inline;
        margin: 10px 2px 0px;
    }

        .two-part .page ul li a {
            font-size: 12px;
            color: #9b9b9b;
            margin-left: 3px;
        }

            .two-part .page ul li a:hover {
                color: #3AA9E0;
            }

            .two-part .page ul li a.active {
                color: #3AA9E0;
            }

.features-tab .shop-all-tab {
    padding: 8px 10px;
    line-height: 11px;
    margin-bottom: 20px;
    background: #f3f3f3;
}

.features-tab ul.tabs li {
    float: left;
    margin-right: -15px;
}

.features-tab ul li a {
    color: #888;
    font-size: 16px;
}

    .features-tab ul li a:hover {
        color: #FD9636;
    }

.features-tab ul li.active-icon a {
    color: #0BA9ED;
}

.tab-content .tab-pane .shop-tab .product-content {
    padding-bottom: 30px;
}

.tab-content .visual-inner .blog-title {
    height: 90px;
}

.tab-content .blog-container-inner {
    margin-bottom: 40px;
}

.detail-col {
    position: relative;
    background-color: #fff;
}

.avl-sort-cate {
    display: flex;
    display: -webkit-flex;
    background: #fff;
    align-items: center
}

    .avl-sort-cate h3 {
        color: #000;
        margin: 0;
        font-size: 18px;
        font-weight: 600;
        float: left
    }

    .avl-sort-cate ul {
        display: flex;
        display: -webkit-flex;
        align-items: center
    }

        .avl-sort-cate ul li {
            padding: 0 0 0 20px
        }

            .avl-sort-cate ul li a {
                color: #000;
                font-size: 14px;
                display: flex;
                display: -webkit-flex;
                align-items: center
            }

            .avl-sort-cate ul li:hover a::before, .er-sort-cate ul li.active a::before {
                content: "\f192";
                font-family: "FontAwesome";
                color: #0BA9ED
            }

            .avl-sort-cate ul li a::before {
                content: "\f10c";
                font-family: "FontAwesome";
                margin: 0 8px 0 0;
                font-size: 16px;
                color: #a6a6a6
            }

            .avl-sort-cate ul li.price-shock a::before {
                color: #fff;
            }

            .avl-sort-cate ul li a.shock {
                background: #0BA9ED;
                padding: 5px 10px 5px 8px;
                color: #fff;
                border-radius: 4px;
            }

.f-fix {
    border-bottom: 1px solid #ebebeb;
    margin-top: 20px;
    overflow: hidden;
    padding-bottom: 20px;
    position: relative;
}

.li-item {
    padding-bottom: 30px;
    display: inline-table;
    position: relative;
}

    .li-item .price .ins {
        font-size: 20px;
    }

    .li-item .price .del {
        font-size: 16px;
    }

    .li-item:hover a.la-icon.ts {
        opacity: 1;
        transform: translateX(-50%) translateY(-50%) scale(1);
    }

.f-fix h2 {
    margin: 0px;
}

.f-fix .pro-rating {
    margin-top: 0px;
    padding-bottom: 15px;
    border-bottom: 1px solid #cccccc;
    margin-bottom: 20px;
}

.ma-price-wrap {
    border-top: 1px solid #e6e7eb;
    background-color: #fff;
    padding: 0 18px;
}

.ma-ladder-price li {
    float: left;
    padding: 8px 0 8px 18px;
    box-sizing: border-box;
    width: 25%;
    line-height: 20px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ma-ladder-price {
    display: block;
    box-sizing: border-box;
    margin: 0 -18px;
}

    .ma-ladder-price .ma-spec-price {
        font-weight: 600;
        font-size: 15px;
        color: #333;
        line-height: 26px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .ma-ladder-price .current-ladder-price {
        background-color: #ffefef;
    }

.ma-price-wrap .ma-ladder-price .ma-quantity-range {
    font-size: 14px;
    color: #666;
    line-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ma-ladder-price .current-ladder-price .ma-spec-price.ma-price-promotion {
    color: #ff7519;
}

.ma-brief-list {
    font-size: 14px;
    text-align: left;
    border-top: 1px solid #e6e7eb;
    padding: 10px 0 0 0;
    clear: both
}

.entry-content {
    overflow: hidden;
    width: 100%;
    height: 338px;
    color: #333;
    clear: both
}

    .entry-content.expand {
        height: auto;
    }

    .entry-content table tr {
        border-bottom: #ccc solid 1px;
    }

        .entry-content table tr td {
            padding: 8px 16px;
            border-bottom: #ccc solid 1px;
        }

            .entry-content table tr td:first-child {
                width: 35%;
                font-weight: 600;
            }

    .entry-content ul {
        margin-top: 1em;
    }

        .entry-content ul li {
            padding-left: 0;
            position: relative;
            margin-bottom: 1em;
            line-height: 1.3em;
        }

            .entry-content ul li > strong {
                font-weight: 600;
                font-size: 1.1em;
                display: block;
                margin-bottom: 10px;
            }

    .entry-content h2 {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .entry-content p {
        margin-bottom: 15px;
        font-size: 16px;
        line-height: 30px;
        color: #333
    }

.show-more {
    position: relative
}

    .show-more:before {
        height: 55px;
        margin-top: -45px;
        content: -webkit-gradient(linear,0% 100%,0% 0%,from(#fff),color-stop(.2,#fff),to(rgba(255,255,255,0)));
        display: block;
    }

.readmore {
    display: block !important;
    width: 150px !important;
    margin: 10px auto !important;
    align-items: center !important;
    border-radius: 4px !important;
    outline: 0 !important;
    padding: 0 12px !important;
    text-align: center !important;
    color: #333 !important;
    font-size: 14px !important;
    border: 1px solid #ccc !important;
    height: 32px !important;
    line-height: 32px !important;
    background: #fff !important;
    transition: all 0.3s ease-in-out !important;
}

    .readmore:hover {
        background: #0c72bd !important;
        border: 1px solid #0c72bd !important;
        color: #fff !important;
    }

.f-fix .desc {
    clear: both;
    color: #777;
    font-size: 14px;
    line-height: 20px;
    margin-top: 8px;
    text-align: justify;
    margin-bottom: 20px;
}

.f-fix .p-box span.special-price {
    font-size: 18px;
    font-weight: 900;
    color: #f65656;
    margin-bottom: 17px;
}

.f-fix .p-box span.old-price {
    font-weight: 400;
    color: #b2b2b2;
    font-size: 14px;
    margin-bottom: 17px;
    text-decoration: line-through;
}

.f-fix .p-box {
    margin-bottom: 15px;
}

.features-tab .tabs > li.active > a, .features-tab .tabs > li.active > a:focus, .features-tab .tabs > li.active > a:hover {
    color: #FD9636;
}

.features-tab .nav > li > a:focus, .features-tab .nav > li > a:hover {
    background-color: inherit;
    border-bottom-color: #0BA9ED;
}

.features-tab .nav > li > a {
    padding: 8px 15px 2px 10px;
}

.features-tab .nav.tabs > li.vali {
    color: #747474;
    float: left;
    font-size: 14px;
    margin-right: 1px;
    margin-top: 9px;
}

.last-cart a.las4:hover {
    background: #0BA9ED none repeat scroll 0 0;
    border-color: #0BA9ED;
    color: #fff;
}

.shop-one.re-shop-one {
    overflow: inherit;
}

.shop-all-tab-cr .two-part .page ul li a.active {
    background: #e84c3d none repeat scroll 0 0;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 0 7px 2px;
}

.shop-all-tab-cr .two-part .page ul li a {
    color: #2f5271;
    font-size: 14px;
    font-weight: 700;
    margin-left: 7px;
}

    .shop-all-tab-cr .two-part .page ul li a:hover {
        color: #e84c3d;
    }

    .shop-all-tab-cr .two-part .page ul li a.active:hover {
        color: #fff;
    }

.accordion-filter .panel-group {
    border-top: 1px solid #ddd;
}

.accordion-filter .panel-body {
    line-height: 23px;
    padding: 10px;
}

.accordion-filter .panel-default > .panel-heading {
    position: relative;
    padding: 0;
    font-size: 15px;
    background: #fff;
    color: #00174f;
    text-transform: uppercase
}

    .accordion-filter .panel-default > .panel-heading a {
        display: flex;
        padding: 13px;
    }

.accordion-filter .panel {
    margin-top: -1px !important;
    background-color: #fff;
    box-shadow: none;
    border-radius: 0
}

.accordion-filter .panel-heading.active a:before {
    content: ' ';
    transition: all 0.1s;
    transform: scale(0);
}

.accordion-filter .panel-heading a:before {
    content: '\f107';
    position: absolute;
    font-family: 'FontAwesome';
    right: 10px;
    top: 8px;
    font-size: 20px;
    text-align: center;
    line-height: 24px;
    transition: all 0.5s;
    transform: scale(1);
}

.accordion-filter .panel-heading.active a:after {
    content: '\f106';
    transform: scale(1);
    transition: all 0.5s;
}

.accordion-filter .panel-heading a:after {
    content: ' ';
    font-size: 20px;
    text-align: center;
    line-height: 22px;
    position: absolute;
    font-family: 'FontAwesome';
    right: 10px;
    top: 8px;
    transform: scale(0);
    transition: all 0.1s;
}

.card-vendor {
    border-radius: 4px;
    border: 1px solid #D5DFE4;
    padding: 20px;
    background-color: #fff;
    position: relative;
    margin-bottom: 20px;
    height: 250px;
    overflow: hidden;
}

    .card-vendor:hover {
        border-color: #8C9EC5;
    }

.btn.btn-gray {
    background-color: #D5DFE4;
    font-size: 12px;
    line-height: 18px;
    color: #333;
    border-radius: 0;
    border-radius: 4px;
    padding: 2px 10px;
}

.card-vendor .card-top-vendor {
    display: flex;
    width: 100%;
    border-bottom: 1px solid #D5DFE4;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.font-sm {
    font-size: 14px !important;
    line-height: 20px !important;
    font-weight: 500;
}

.card-vendor .card-top-vendor .card-top-vendor-right {
    width: 50%;
    text-align: right;
}

.card-vendor .card-top-vendor .card-top-vendor-left {
    width: 50%;
    overflow: hidden;
}

.shop-template .font-sm {
    font-weight: 500;
}

.company-name {
    height: 40px;
    overflow: hidden;
    font-weight: 600;
}

.card-vendor .card-bottom-vendor .location {
    height: 42px;
    overflow: hidden;
}

.card-vendor .card-top-vendor .card-top-vendor-left img {
    max-height: 40px;
}

.card-top-vendor-left img {
    margin-right: 8px;
}

.mt-10 {
    margin-top: 10px !important;
}

.font-xs {
    font-size: 11px !important;
    line-height: 18px !important;
}

.location {
    background: url(images/location.svg) no-repeat 0 0;
    padding: 0 0 0 32px;
    color: #8C9EC5;
    font-size: 16px;
    min-height: 24px;
}

.phone {
    background: url(images/phone.svg) no-repeat 0 0;
    padding: 0 0 1px 32px;
    color: #8C9EC5;
    font-size: 16px;
    min-height: 24px;
}

.blog-desc .bxcontentnews p > img {
    width: auto;
    max-width: 100%;
    margin: 20px auto;
    display: block;
}

.blog-desc .tb-titlel {
    margin: 15px 0 30px 0
}

.tb-post-border {
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    padding: 20px;
    margin-bottom: 25px;
    border: 1px dashed #ccc;
}

.tb-date-view {
    margin-bottom: 20px;
    font-size: 12px;
    color: #333;
}

    .tb-date-view i {
        font-size: 14px;
        color: #FD9636;
        margin-right: 5px;
    }

.blog-desc .bxcontentnews > p {
    font-weight: 400;
    line-height: 28px;
    color: #333;
    font-size: 16px;
    margin-bottom: 15px;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.page-sort-cate {
    clear: both;
    width: 100%;
    text-align: center;
    align-items: center;
    margin: 20px 0;
    padding: 15px 15px 10px
}

    .page-sort-cate .pagination {
        margin: 0
    }

.pagination-center {
    text-align: center
}

.pagination {
    margin: 5px 0 20px
}

    .pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
        background: #FD9636 !important;
        border-color: #FD9636 !important;
    }

    .pagination > li > a, .pagination > li > span {
        margin: 0 5px;
        border-radius: 0 !important;
    }

    .pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
        background: #0BA9ED;
        border-color: #0BA9ED
    }

.other-news-detail {
    position: relative;
    padding: 0
}

/*--------------------- 5. wish-list--------------------*/
.nr-wish-area {
    margin: 90px 0 0px;
}

.s-cart-all .page-title h1 {
    margin: 35px 0 30px;
}

.s-cart-all .page-title h1 {
    color: #474747;
    font-size: 30px;
    font-style: normal;
    font-weight: normal;
    line-height: 36px;
    opacity: 1;
    transition: opacity 0.24s ease-in-out 0s;
    visibility: visible;
}

.table-responsive {
    border: 0 solid #ddd !important;
    margin-bottom: 10px;
    overflow-x: inherit;
    overflow-y: hidden;
}

.cart-form {
    background: none repeat scroll 0 0 #fff;
    border: 1px solid #f2f2f2;
    width: 100%;
}

.data-table {
    background: none repeat scroll 0 0 #fff;
    border: 1px solid #f2f2f2;
    width: 100%;
}

.cart-form .cart-table th {
    padding: 15px;
    font-family: Roboto;
}

.data-table th {
    background: none repeat scroll 0 0 #f7f7f7;
    border-right: 1px solid #f2f2f2;
    color: #4d4d4d;
    font-family: Lato;
    font-size: 16px;
    font-weight: normal;
    padding: 6px 10px;
    text-align: center;
    text-transform: capitalize;
    vertical-align: middle;
    white-space: nowrap;
    min-width: 100px;
}

.data-table th, .data-table td {
    border-bottom: 1px solid #dddddd;
    border-right: 1px solid #dddddd;
}

.data-table td {
    padding: 6px 10px;
}

.cart-form .cart-table td {
    text-align: center;
}

.cart-table .sop-icon a i {
    border: 1px solid #3f4859;
    border-radius: 50%;
    color: #3f4859;
    font-size: 22px;
    height: 40px;
    line-height: 37px;
    text-align: center;
    width: 40px;
}

.cart-table .sop-cart > a, .cart-table .sop-cart {
    color: #666;
    font-size: 14px;
    text-decoration: none !important;
}

    .cart-table .sop-cart > a:hover {
        color: #0BA9ED;
    }

.cen input.qty {
    border: 1px solid #ddd;
    height: 32px;
    text-align: center;
    width: 38px !important;
}

.cart-form .cart-table .sop-icon a i {
    background: none repeat scroll 0 0 #222;
    border: 0 none;
    border-radius: 0;
    color: #fff;
    font-size: 14px;
    line-height: 21px;
    padding: 10px 12px;
    text-transform: uppercase;
    transition: all 0.5s ease 0s
}

    .cart-form .cart-table .sop-icon a i:hover {
        background: none repeat scroll 0 0 #019cb2;
        color: #fff;
    }

.tas.ce-ta {
    display: inline-block;
}

.cart-form .tas.ce-ta a i {
    background: none repeat scroll 0 0 #222;
    border: 0 none;
    border-radius: 0;
    color: #fff;
    font-size: 14px;
    line-height: 21px;
    padding: 6px 11px;
    text-transform: uppercase;
    transition: all 0.5s ease 0s;
}

    .cart-form .tas.ce-ta a i:hover {
        background: none repeat scroll 0 0 #019cb2;
        color: #fff;
    }

.cart-form.table-responsive.ma {
    padding-bottom: 30px;
}

a img.primary-image {
    margin: 12px 0;
    width: 90px;
}

.data-table th.low1 {
    min-width: 60px;
}

.data-table th.low2 {
    min-width: 300px;
}

.sop-cart.an-sh .tb-beg a {
    color: #333;
    font-size: 13px;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

.cart-table .sop-cart.an-sh .tb-beg > a {
    display: inline-block;
    float: left;
    overflow: hidden;
    padding-top: 11px;
}

.shopping-cart-area .last-cart.l-mrgn {
    float: right;
    margin: 0;
}

.shopping-cart-area .sop-icon1 a {
    border: 0 none;
    border-radius: 100%;
    color: red !important;
    display: inline-block;
    font-size: 1.5em;
    font-weight: 700;
    height: 25px;
    line-height: 25px;
    text-decoration: none;
    width: 25px;
}

    .shopping-cart-area .sop-icon1 a:hover {
        background: red none repeat scroll 0 0;
        color: #fff !important;
    }

.shopping-cart-area .last-cart a.las4 {
    font-size: 13px;
    font-weight: 700;
    font-family: inherit;
}

.shopping-cart-area span.wishlist-in-stock {
    color: #297e29;
    font-size: 14px;
}

.last-cart.l-mrgn.wish {
    float: inherit;
}

h4.yith-wcwl-share-title {
    float: left;
    color: #474747;
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: 22px;
    opacity: 1;
    transition: opacity 0.24s ease-in-out 0s;
    visibility: visible;
    margin: 10px 0;
}

.yith-wcwl-share ul, .yith-wcwl-share li {
    height: 21px;
}

.yith-wcwl-share ul {
    display: block;
    margin: 0px 0 10px;
    overflow: hidden;
    padding: 0;
}

.yith-wcwl-share li {
    margin-left: 0;
    margin-right: 0;
    display: inline-block;
    float: left;
}

    .yith-wcwl-share li a {
        border: medium none;
        display: inline-block;
        height: 21px;
        margin-right: 3px;
        width: 21px;
    }

        .yith-wcwl-share li a:hover img {
            margin-top: -27px;
        }

.yith-wcwl-share img {
    transition: all 0.4s ease 0s;
}

.as {
    display: block;
    overflow: hidden;
}
/*-------------------- 6. login--------------------*/
.checkout-coupon.top-down.log {
    width: 100%;
}

.checkout-coupon.top.log {
    float: left;
    width: 100%;
}

.forgot-password {
    float: right;
}

.login-area {
    margin: 90px 0 0;
}

    .login-area .tb-login-form h5.tb-title, .tb-info-login h5.tb-title4 {
        border-bottom: 1px solid #f0f0f0;
        color: #525151;
        font-size: 20px;
        font-weight: 400;
        margin-bottom: 20px;
        padding-bottom: 15px;
        text-transform: uppercase;
        line-height: 19px;
    }

.tb-info-login h5.tb-title4 {
    border-bottom: 0 solid #f0f0f0;
    margin-top: 40px;
}

.login-area .tb-login-form > p {
    color: #666666;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 20px !important;
}

.login-area .tb-login-form .tb-social-login {
    margin-bottom: 30px;
}

.tb-login-form .tb-social-login > a.tb-facebook-login {
    background: #3d5c98 none repeat scroll 0 0;
}

.tb-login-form .tb-social-login > a {
    color: #ffffff;
    display: inline-block;
    font-size: 15px;
    min-width: 250px;
    padding: 12px 30px;
    text-align: center;
}

    .tb-login-form .tb-social-login > a.tb-twitter-login {
        background: #22aadf none repeat scroll 0 0;
        float: right;
    }

    .tb-login-form .tb-social-login > a:hover {
        opacity: 0.7;
    }

    .tb-login-form .tb-social-login > a > i {
        display: inline-block;
        margin-right: 10px;
        vertical-align: middle;
    }

.checkout-coupon.top.log.a-an, .checkout-coupon.top-down.log.a-an {
    margin-bottom: 12px;
}

.inline2 > input {
    margin-right: 11px;
}

.inline1 {
    margin-top: 9px;
}

.tb-login-form > form .forgot-password {
    color: #0BA9ED;
    float: right;
    font-size: 14px;
    font-weight: 400;
}

.tb-login-form > form > p.login-submit5 > input {
    border: 1px solid #a0a0a0;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    letter-spacing: -0.02em;
    color: #fff;
    font-size: 12px;
    padding: 9px 30px;
    text-transform: uppercase;
    transition: none;
    background: linear-gradient(to bottom, #00aeef 0%, #0988b8 100%);
    border-color: #0988b8;
}

    .tb-login-form > form > p.login-submit5 > input:hover {
        background: #0BA9ED none repeat scroll 0 0;
        border-color: #0BA9ED;
        color: #fff;
    }

.forgot-password1 {
    margin-bottom: 33px;
}

    .forgot-password1 .inline2 > em {
        color: #0BA9ED;
        font-size: 15px;
        right: -10px;
        top: 0;
    }

.tb-register-form .tb-info > ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}

.tb-info-login > ul > li::before {
    color: #0BA9ED;
    content: "";
    display: inline-block;
    font-family: FontAwesome;
    font-size: 14px;
    margin-right: 10px;
    vertical-align: middle;
}

.tb-info-login > ul > li {
    color: #8b8b8b;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
}

.tb-info-login > ul > li {
    width: 100%;
}
/*--------------------- 7. checkout--------------------*/
textarea.input-text:focus, .checkout-coupon.top > input:focus, .checkout-coupon.top-down > input:focus, .checkout-coupon.top.log.a-an > input:focus {
    border-color: #0BA9ED;
}

.coupon-accordion h3::before {
    color: #1e85be;
    content: "";
    display: inline-block;
    font-family: fontawesome;
    left: 1.5em;
    position: absolute;
    top: 20px;
}

.coupon-accordion h3 {
    background-color: #f7f6f7;
    border-top: 3px solid #0BA9ED;
    color: #515151;
    font-size: 12px;
    font-weight: 300;
    list-style: outside none none !important;
    margin: 0 0 2em !important;
    padding: 19px 2em 19px 3.5em !important;
    position: relative;
    width: auto;
    font-weight: 500;
}

.coupon-checkout-content {
    display: block;
    margin-bottom: 30px;
    border: 1px solid #d3ced2;
    border-radius: 5px;
    margin: 2em 0;
    padding: 20px;
}

    .coupon-checkout-content.tnm {
        display: none;
    }

p.checkout-coupon input[type="text"], p.checkout-coupon input[type="email"], p.checkout-coupon input[type="password"] {
    height: 42px;
    padding-left: 10px;
    width: 47%;
    border: 1px solid #d3d3d3;
    color: #777;
}

p.checkout-coupon input[type="submit"], .cop-left input[type="submit"] {
    background: #444444 none repeat scroll 0 0;
    border: medium none;
    border-radius: 0;
    color: #fff;
    margin-left: 86px;
    padding: 7px 39px;
    transition: all 0.3s ease 0s;
}

.cop-left input[type="submit"] {
    margin-left: 0;
}

.coupon-accordion span {
    color: #00aeef;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}

    .coupon-accordion span:hover {
        color: #0BA9ED;
    }

p.checkout-coupon input[type="submit"]:hover, .cop-left input[type="submit"]:hover {
    background: #0BA9ED none repeat scroll 0 0;
}

.checkout-area {
    margin: 35px 0 0;
}

    .checkout-area .nav .ano > a {
        position: relative
    }

    .checkout-area .nav .ano > a {
        background-color: #ffffff;
        border: 1px solid #aaaaaa;
        border-radius: 50%;
        width: 20px;
        height: 20px;
        margin-right: 40px;
        margin-top: 23px;
        transition: all 0.4s ease 0s;
        padding: 0;
        margin-bottom: 15px;
    }

    .checkout-area .nav-tabs > li.active > a, .checkout-area .nav-tabs > li.active > a:hover, .checkout-area .nav-tabs > li.active > a:focus {
        border-color: #0BA9ED;
    }

    .checkout-area .nav-tabs {
        border-bottom: 0 solid #ddd;
        padding: 0 20px;
        padding-bottom: 75px;
    }

        .checkout-area .nav-tabs > li.complete > a::before {
            background-color: transparent;
            color: #0BA9ED;
            content: "";
            font-family: "FontAwesome";
            opacity: 1;
            top: 2px;
            margin-left: 2px;
        }

        .checkout-area .nav-tabs > li.active > a {
            position: relative;
        }

            .checkout-area .nav-tabs > li.active > a::after {
                background-color: #0BA9ED;
                border-radius: 50%;
                content: "";
                height: 14px;
                left: 50%;
                opacity: 1;
                position: absolute;
                top: 50%;
                transform: translate(-50%, -50%);
                transition: all 0.4s ease 0s;
                width: 14px;
            }

    .checkout-area .nav > li > a:hover, .nav > li > a:focus {
        background-color: #fff;
        text-decoration: none;
        border-color: #0BA9ED;
    }

    .checkout-area ul.nav.nav-tabs::after {
        background: #aaaaaa none repeat scroll 0 0;
        content: "";
        height: 1px;
        left: 0;
        margin: 0 20px;
        position: absolute;
        top: 33px;
        width: 84%;
        z-index: -1;
    }

    .checkout-area .text {
        position: relative;
    }

    .checkout-area .nav-tabs > li {
        margin-right: 207px;
    }

        .checkout-area .nav-tabs > li.la {
            margin-right: 0px;
        }

    .checkout-area .ano > span {
        margin-left: -21px;
        font-size: 18px;
        font-weight: 400;
    }

    .checkout-area .checkbox-form .di-na.bs {
        margin-top: 0px;
    }

    .checkout-area .checkbox-form select.s-wid {
        width: 100%;
        height: 40px;
    }

    .checkout-area .checkbox-form select.email {
        border: 1px solid #d3d3d3;
        padding: 6px;
    }

    .checkout-area .checkbox-form .country-select {
        margin-bottom: 15px;
    }

    .checkout-area h3.checkbox9 {
        color: #444;
        font-size: 19px;
        font-style: normal;
        font-weight: 500;
        line-height: 22px;
        opacity: 1;
    }

    .checkout-area .checkbox-form .di-na.bs.tana {
        margin-top: 5px;
    }

.coupon-checkout-content2 {
    display: none;
    width: 100%;
}

.checkout-area .tab-content h3.checkbox9 {
    margin-bottom: 20px;
    margin-top: 50px;
}

.checkout-area .tab-content p.checkout-coupon input[type="submit"] {
    margin-left: 0;
    margin-top: 35px;
    padding: 12px 39px 10px;
}

.checkout-area .top-check-text h3 {
    float: left;
}

.checkout-area .top-check-text span {
    float: right;
    margin-top: 50px;
}

    .checkout-area .top-check-text span a {
        color: #0BA9ED;
        font-size: 14px;
        transition: all .3s ease 0s;
    }

        .checkout-area .top-check-text span a:hover {
            color: #777;
        }

.checkout-area .check-down {
    display: block;
    margin-bottom: 21px;
    overflow: hidden;
}

.checkout-area .top-check-text .ro-info2 p span {
    float: inherit;
    margin: 0;
}

.checkout-area .ro-content2 .ro-info2 span {
    display: inline-block;
    min-width: 160px;
}

.checkout-area .all-payment {
    background: #ebe9eb none repeat scroll 0 0;
    border-radius: 5px;
}

    .checkout-area .all-payment .payment_box {
        background-color: #dfdcde;
        border-radius: 2px;
        box-sizing: border-box;
        color: #515151;
        font-size: 0.92em;
        line-height: 1.5;
        margin: 1em 0;
        padding: 1em;
        position: relative;
        width: 100%;
        display: none;
    }

.checkout-area .payment-method {
    display: block;
    overflow: hidden;
    padding: 25px 20px;
}

.form-row.place-order input {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: 1px solid #444444;
    border-radius: 0 !important;
    box-shadow: none;
    color: #444444;
    display: inline-block !important;
    float: right;
    font-weight: 600;
    margin-top: 5px;
    padding: 4px 28px;
    text-shadow: none;
    margin-right: 20px;
}

.checkout-area .form-row.place-order input:hover {
    background: #0BA9ED none repeat scroll 0 0;
    border: 1px solid #0BA9ED;
    color: #ffffff;
    transition: all .4s ease 0s;
}

.checkout-area .form-row.place-order {
    border-top: 1px solid #d3ced2;
    padding: 20px 0;
    overflow: hidden;
}

.checkout-area .all-payment .payment_box::before {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: transparent transparent #dfdcde;
    border-image: none;
    border-style: solid;
    border-width: 1em;
    content: "";
    display: block;
    left: 0;
    margin: -1em 0 0 2em;
    position: absolute;
    top: -0.75em;
}

.checkout-area .pay-top.sin-payment img {
    margin-left: 7px;
    max-height: 52px;
}

.checkout-area .pay-top.sin-payment a {
    font-size: 11px;
    line-height: 56px;
    float: right;
    color: #747474;
}

.ro-checkout-summary {
    border: 1px solid #cccccc;
    font-weight: 400;
    margin-top: 24px;
}

    .ro-checkout-summary .ro-title {
        background-color: #eeeeee;
        padding: 25px 35px;
    }

.ro-title h3 {
    margin: 0;
    text-align: center;
}

.ro-checkout-summary .ro-body {
    overflow: hidden;
    padding: 0 35px;
}

    .ro-checkout-summary .ro-body .ro-item {
        font-size: 14px;
        padding: 40px 0 0;
    }

        .ro-checkout-summary .ro-body .ro-item .ro-image {
            float: left;
            padding-bottom: 40px;
            width: 25%;
        }

        .ro-checkout-summary .ro-body .ro-item > div:nth-of-type(2) {
            padding-left: 20px;
            width: 75%;
        }

        .ro-checkout-summary .ro-body .ro-item > div, .ro-checkout-summary .ro-body .ro-item > div .ro-quantity, .ro-checkout-summary .ro-body .ro-item > div .ro-item-color, .ro-checkout-summary .ro-body .ro-item > div .ro-price {
            display: inline-block;
        }

            .ro-checkout-summary .ro-body .ro-item > div:nth-of-type(3) .ro-price {
                width: 33.33%;
            }

            .ro-checkout-summary .ro-body .ro-item > div:nth-of-type(3) .product-total {
                float: right;
            }

            .ro-checkout-summary .ro-body .ro-item > div:nth-of-type(3) {
                padding-left: 20px;
                width: 75%;
            }

.ro-checkout-summary .tb-beg {
    margin-top: 15px;
    text-transform: uppercase;
}

.ro-checkout-summary .ro-footer > div {
    background-color: #eeeeee;
    padding: 0 35px;
}

    .ro-checkout-summary .ro-footer > div p {
        color: #666666;
        font-size: 12px;
        line-height: 25px;
        margin: 0;
        padding: 20px 0;
        vertical-align: middle;
        font-weight: 600;
    }

        .ro-checkout-summary .ro-footer > div p span {
            clear: both;
            float: right;
            font-size: 14px;
        }

    .ro-checkout-summary .ro-footer > div .ro-divide {
        border-bottom: 1px solid #cccccc;
        width: 100%;
    }

    .ro-checkout-summary .ro-footer > div:last-of-type {
        background-color: #ffffff;
        padding: 30px 35px;
    }

    .ro-checkout-summary .ro-footer > div.shipping > p {
        float: left;
        width: 30%;
    }

    .ro-checkout-summary .ro-footer > div.shipping .ro-shipping-method {
        float: right;
        width: 70%;
    }

    .ro-checkout-summary .ro-footer > div:last-of-type p span {
        color: #0BA9ED;
        font-size: 18px;
    }

.ro-shipping-method > p {
    float: right;
}

.ro-checkout-summary .ro-body .ro-item .ro-image img:hover {
    opacity: 0.5;
    transition: all .4s ease 0s;
}

.checkout-coupon.top-down > input[type="text"], p.checkout-coupon input[type="email"], p.checkout-coupon input[type="password"] {
    width: 100%;
}

.checkout-coupon.top > input[type="text"], .checkout-coupon.top > input[type="email"], .checkout-coupon.top > input[type="password"] {
    width: 100%;
}

.checkout-coupon.top {
    float: left;
    width: 47%;
}

.checkout-coupon.top-down {
    float: right;
    width: 47%;
}

.coupon-info.top1 {
    margin-top: 15px;
    overflow: hidden;
}

.cop-left .inline {
    margin-left: 9px;
}

p.lost_password {
    color: #444444;
    margin: 20px 0;
}

    p.lost_password a {
        color: #444444;
        font-weight: normal;
    }

        p.lost_password a:hover {
            color: #0BA9ED;
        }

.cop-left {
    display: inline-block;
    margin-top: 5px;
}

.checkout-coupon label.l-contact {
    color: #666;
    font-weight: lighter;
    margin-bottom: 2px;
    position: relative;
    z-index: 0;
}

.coupon-checkout-content .checkout-coupon {
    margin-bottom: 15px;
}

label {
    font-weight: normal;
}

.di-na {
    margin-bottom: 15px;
}

.all-contact label.l-contact em, .bd-comment label.l-contact em, .checkbox-form label.l-contact em, .checkout-coupon label.l-contact em {
    color: #0BA9ED;
    font-size: 15px;
    font-style: normal;
    right: -10px;
    top: 0;
}

.form-control {
    box-shadow: inherit;
    height: 45px;
    border-radius: 6px;
    border: 1px solid #a3afb5;
    padding: 10px;
}

.di-na.bs {
    margin-top: 20px;
}

.checkbox-form label.l-contact {
    color: #666;
    font-weight: lighter;
    margin-bottom: 2px;
    position: relative;
    z-index: 0;
}

textarea.input-text {
    border: 1px solid #d3d3d3;
    height: 54px;
    padding: 5px 15px;
    resize: none;
    width: 100%;
    font-size: 12px;
}
/*--------------------- 8. shoping-cart--------------------*/
.ray .input-text.qty.text {
    border: 1px solid #d3d3d3;
    padding: 5px 8px 5px 20px;
    width: 90px;
    color: #676767;
}

.cart-form.table-responsive {
    margin-bottom: 0px;
}

.yith-wcwl-share.yit {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: #ddd;
    border-image: none;
    border-style: solid;
    border-width: 0 1px 1px;
}

.remove > span {
    color: #474747;
}

    .remove > span:hover {
        color: red;
    }

.s-cart-area a.remove {
    background: #dfdfdf none repeat scroll 0 0 padding-box;
    border-radius: 50%;
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    height: 17px;
    line-height: 16px;
    margin: 10px auto 0;
    position: relative;
    text-align: center;
    width: 17px;
}

td.sop-cart.an-shop-cart {
    text-align: inherit;
}

.s-cart-area a img.primary-image {
    margin: 30px 17px 30px 30px;
    width: 173px;
}

.s-cart-area th.low7 {
    min-width: 178px;
}

.s-cart-area .data-table th {
    color: #333;
}

.s-cart-area .tb-product-price .amount, .cen span.amount, .s-cart-area .tb-product-price .amount2 {
    font-size: 16px;
    font-weight: 600;
}

.cen span.amount {
    color: #333;
}

.checkout-coupon.an-cop {
    margin-bottom: 0;
    margin-left: 0;
    padding: 25px 25px 25px 0;
    text-align: right;
}

p.checkout-coupon.an-cop input[type="submit"] {
    padding: 7px 55px;
}

.tb-tab-container2 {
    border: 1px solid #c5c5c5;
    display: inline-block;
    width: 100%;
}

    .tb-tab-container2 .etabs {
        border-bottom: 1px solid #ddd;
        float: left;
        margin: 20px 0 0;
        padding: 0;
        width: 35%;
    }

        .tb-tab-container2 .etabs li {
            background: #fff none repeat scroll 0 0;
            border-top: 1px solid #c5c5c5;
            display: inline-block;
            width: 100%;
        }

            .tb-tab-container2 .etabs li.active a {
                background: #0BA9ED none repeat scroll 0 0;
                color: #fff;
            }

            .tb-tab-container2 .etabs li a {
                color: #6f6f6f;
                display: inline-block;
                font-size: 13px;
                outline: medium none;
                padding: 15px 20px;
                text-transform: uppercase;
                width: 100%;
            }

    .tb-tab-container2 .nav-tabs > li.active > a, .tb-tab-container2 .nav-tabs > li.active > a:hover, .tb-tab-container2 .nav-tabs > li.active > a:focus {
        border-width: inherit;
    }

    .tb-tab-container2 .nav-tabs > li > a {
        border-radius: inherit;
    }

    .tb-tab-container2 .another-cen {
        border-left: 1px solid #c5c5c5;
        float: left;
        min-height: 220px;
        padding: 20px 40px;
        width: 65%;
    }

.top-shopping4 > p {
    margin: 0;
}

.down-shop {
    padding-bottom: 10px;
}

.woocommerce-shipping-calculator p {
    display: inline-block;
    width: 100%;
}

    .woocommerce-shipping-calculator p.form-row {
        margin: 0 0 6px;
        padding: 3px;
    }

        .woocommerce-shipping-calculator p.form-row label {
            color: #666666;
            float: left;
            font-size: 12px;
            font-weight: normal;
            width: 135px;
        }

            .woocommerce-shipping-calculator p.form-row label span, .sin-ha em {
                color: #0BA9ED;
                font-size: 15px;
            }

        .woocommerce-shipping-calculator p.form-row select, .form-row-wide input[type="text"] {
            float: left;
            width: calc(100% - 135px) !important;
        }

        .woocommerce-shipping-calculator p.form-row select {
            background-color: #fff;
            border: 1px solid #d3d3d3;
            line-height: 28.8px;
            outline: medium none;
            padding: 5px 15px;
            transition: all 0.4s ease 0s;
            width: 100%;
            height: 34px;
        }

p.checkout-coupon.two input[type="submit"] {
    margin-left: 138px;
    margin-top: 15px;
    padding: 5px 27px;
    background: #fff none repeat scroll 0 0;
    border: 1px solid #c5c5c5;
    color: #747474;
    transition: all .4s ease 0s;
}

    p.checkout-coupon.two input[type="submit"]:hover, p.checkout-coupon.full input[type="submit"]:hover {
        background-color: #0BA9ED;
        border-color: #0BA9ED;
        color: #fff;
    }

.form-row-wide input.again[type="text"] {
    float: left;
    width: calc(100% - 0px) !important;
}

p.checkout-coupon.full input[type="submit"] {
    margin-left: 0;
    margin-top: 12px;
    width: 100%;
    padding: 5px 27px;
    background: #fff none repeat scroll 0 0;
    border: 1px solid #c5c5c5;
    color: #747474;
    transition: all .4s ease 0s;
}

.sub-total {
    border: 1px solid #ddd;
    text-align: center;
}

.cart-table td {
    text-align: center;
}

.cart-subtotal th {
    color: #646464;
    font-size: 17px;
    font-weight: normal;
}

.cart-subtotal td {
    color: #646464;
    font-size: 18px;
    font-weight: normal;
    text-align: left;
}

.order-total th {
    color: #363636;
    font-size: 20px;
    font-weight: normal;
    text-transform: uppercase;
    font-weight: bolder;
}

.order-total td {
    color: #484848;
    font-size: 18px;
    font-weight: normal;
    text-align: left;
    font-weight: 600;
}

.sub-total table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

    .sub-total table th {
        text-align: right;
        width: 40%;
        padding: 15px 0;
    }

.cart-subtotal > td {
    width: 60%;
    padding: 15px 0;
}

.order-total td .amount, .cart-subtotal td .amount {
    padding-left: 80px;
}

.s-cart-area .order-total {
    border-top: 1px solid #ddd;
}

.wc-proceed-to-checkout a.wc-backward, .wc-proceed-to-checkout a.wc-forward {
    background-color: transparent;
    border: 1px solid #c5c5c5;
    color: #747474;
    display: inline-block;
    font-weight: normal;
    outline: medium none;
    padding: 7px 27px 3px;
    text-align: center;
    text-transform: uppercase;
    transition: all 0.4s ease 0s;
}

    .wc-proceed-to-checkout a.wc-backward:hover, .wc-proceed-to-checkout a.wc-forward:hover {
        background-color: #0BA9ED;
        border-color: #0BA9ED;
        color: #fff;
    }

.wc-proceed-to-checkout p.return-to-shop {
    float: left;
}

.wc-forward {
    float: right;
}

.wc-proceed-to-checkout {
    margin-top: 20px;
}

.second-all-class {
    display: block;
    margin: 20px 0 0;
    overflow: hidden;
}

.data-table {
    background: #fff none repeat scroll 0 0;
    border: 1px solid #f2f2f2;
    width: 100%;
}

    .data-table th {
        background: #f7f7f7 none repeat scroll 0 0;
        border-right: 1px solid #f2f2f2;
        color: #4d4d4d;
        font-family: Lato;
        font-size: 16px;
        font-weight: normal;
        min-width: 100px;
        padding: 6px 10px;
        text-align: center;
        text-transform: capitalize;
        vertical-align: middle;
        white-space: nowrap;
    }

    .data-table th, .data-table td {
        border-bottom: 1px solid #dddddd;
        border-right: 1px solid #dddddd;
    }

.cart-form .cart-table th {
    padding: 15px;
}

.cart-table .sop-cart > a {
    color: #666;
    font-size: 14px;
    font-weight: normal;
    text-decoration: none !important;
}

    .cart-table .sop-cart > a:hover {
        color: #0BA9ED;
    }

.shopping-cart-area.s-cart-area {
    margin-top: 90px;
}
/*--------------------------- 9. my-account page.-----------------------------*/
.easy2 > h2 {
    color: #444;
    font-size: 18px;
    text-transform: uppercase;
}

.easy2 legend {
    font-size: 18px;
    padding: 7px 0 15px;
    border-width: 0 0 1px;
    border-bottom: 1px solid #e5e5e5;
}

.easy2 div.required .control-label::before {
    color: #0BA9ED;
    content: "* ";
    font-weight: bold;
}

.easy2 .form-group label {
    font-size: 14px;
    font-weight: normal;
    color: #444;
}

.easy2 .form-control {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    height: 40px;
}

.easy2 .table-bordered td {
    padding: 8px !important;
    text-align: center;
    vertical-align: middle !important;
}

.easy2 .btn-info {
    background-color: #df5c39;
    background-image: linear-gradient(to bottom, #e06342, #dc512c);
    background-repeat: repeat-x;
    border-color: #dc512c #dc512c #a2371a;
    color: #ffffff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

    .easy2 .btn-info:hover {
        background-color: #df5c39;
        background-image: none;
    }

.easy2 .btn.btn-info.g6 {
    background: none repeat scroll 0 0 #df5c39;
    border: 0 none;
    border-radius: 0;
    color: #fff;
    font-size: 14px;
    line-height: 15px;
    padding: 10px 12px;
    text-transform: uppercase;
    transition: all 0.5s ease 0s;
}

.btn.btn-info.g6:hover {
    background: none repeat scroll 0 0 #222;
}

a.collap {
    background: none repeat scroll 0 0 #323a45;
    color: #fff;
    display: block;
    padding: 11px 15px;
    text-transform: uppercase;
}

.panel-group.pas7 {
    margin-bottom: 5px;
}

.single-product.an-pro7 {
    margin-bottom: 41px;
}

.tooltip.in {
    z-index: 9999999;
}

.preview-2 .nivo-controlNav {
    position: absolute;
    left: 50%;
}

a.o-back-to {
    color: #666;
}

    a.o-back-to:hover {
        color: #019cb2;
    }

.mobile-menu-area {
    display: none;
}

.check h2 {
    color: #474747;
    font-size: 18px;
    text-transform: uppercase;
}

.check {
    margin: 35px 0;
}

.easy, .easy2 {
    overflow: hidden;
    padding: 40px;
}

.faq-accordion .panel-default > .panel-heading {
    background: none repeat scroll 0 0 #323a45;
    border-left: 0 none;
    border-radius: 0;
    border-right: 0 none;
    border-top: 0 none;
    padding: 12px 15px 12px;
}

.faq-accordion .panel.panel-default.actives .panel-title a {
    color: #0BA9ED;
}

.faq-accordion .panel-title a {
    color: #fff;
    display: block;
    font-size: 13px;
    font-weight: normal;
    line-height: 16px;
    position: relative;
    text-decoration: none;
}

.panel-title a:hover {
    text-decoration: none;
}

.btn.btn-default.ce5, .btn.btn-primary.ce5, .btn.btn-danger.g6 {
    background: #222 none repeat scroll 0 0;
    border: 0 none;
    border-radius: 0;
    color: #fff;
    font-size: 14px;
    line-height: 15px;
    padding: 12px 12px 10px;
    text-transform: uppercase;
    transition: all 0.5s ease 0s;
}

    .btn.btn-default.ce5:hover, .btn.btn-primary.ce5:hover, .btn.btn-danger.g6:hover {
        background: #0BA9ED none repeat scroll 0 0;
    }

h2.title-sp {
    font-size: 45px;
    border-bottom: 1px solid #dee2e6;
    line-height: 58px;
    font-weight: 600;
}
/*--------------------- 10. contact--------------------*/
.top-contact {
    background-color: #2d2d2d;
    color: #019cb2;
    line-height: 30px;
    padding: 5px 0;
}

.breadcrumbs-full {
    padding: 16px 0;
    margin-bottom: 30px;
    background-color: #F0F3F8;
    border-top: 1px solid #D5DFE4;
}

.breadcrumb {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: 0 none;
    border-radius: 0;
    font-size: 12px;
    margin: 0;
    padding: 0;
}

    .breadcrumb li::before {
        color: #666;
        content: "\f105";
        display: block;
        font-family: FontAwesome;
        font-size: 15px;
        height: 30px;
        position: absolute;
        right: 0px;
        top: -3px;
        width: 15px;
    }

    .breadcrumb > li {
        padding: 0 30px 0 0;
        color: #999;
        position: relative;
        white-space: nowrap;
    }

        .breadcrumb > li a {
            color: #000;
        }

            .breadcrumb > li a:hover {
                color: #0BA9ED;
            }

    .breadcrumb li:last-child a {
        color: #019cb2;
        font-family: inherit;
        font-size: 14px;
        font-weight: 400;
        text-transform: capitalize;
    }

    .breadcrumb > li + li::before {
        color: #ccc;
        content: none;
        padding: 0 5px;
    }

.contact-img-area .breadcrumb > li, .contact-img-area .breadcrumb > li::before {
    color: #fff;
}

    .contact-img-area .breadcrumb > li a {
        color: #0BA9ED
    }

.page-title h2 {
    color: #444;
    font-size: 18px;
    text-transform: uppercase;
    margin: 27px 0 0;
}

.page-title h3 {
    color: #444;
    font-size: 16px;
    margin-bottom: 10px;
    margin-top: 20px;
}

.top-map-area h3 {
    border-bottom: 1px solid #e5e5e5;
    font-size: 18px;
    font-weight: normal;
    padding: 0px 0 15px;
}

.top-map-area label {
    font-size: 14px;
    font-weight: normal;
}

.top-map-area div.required .control-label::before {
    color: #f00;
    content: "* ";
    font-weight: bold;
}

.control-label {
    margin-bottom: 0;
    padding-top: 7px;
    text-align: right;
}

.cendo input.form-control {
    border: 1px solid #ddd;
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    height: 40px;
    margin-bottom: 20px;
}

.cendo textarea.form-control {
    height: 40px;
}

.cendo .buttons {
    margin: 30px 0 0;
}

.cendo .btn {
    background: #222 none repeat scroll 0 0;
    border: 0 none;
    border-radius: 0;
    color: #fff;
    font-size: 14px;
    line-height: 15px;
    padding: 11px 12px 10px;
    text-transform: uppercase;
    transition: all 0.5s ease 0s;
}

.top-map-area, .blog-area {
    margin-top: 30px;
}

.cendo .btn:hover {
    background: #0BA9ED none repeat scroll 0 0;
    color: #fff;
}

.cendo input.form-control:focus {
    border: 1px solid #0BA9ED;
}


/*--------------------- 11. blog--------------------*/
.blog-area .blog-info {
    color: #a1a1a1;
    font-size: 12px;
    font-style: italic;
    font-weight: 300;
    line-height: 24px;
    margin-bottom: 10px;
}

    .blog-area .blog-info > span {
        display: inline-block;
        margin-right: 20px;
    }

        .blog-area .blog-info > span > i {
            display: inline-block;
            margin-right: 10px;
            margin-top: 3px;
            vertical-align: text-top;
        }

        .blog-area .blog-info > span > a {
            color: #a1a1a1;
            transition: all 0.4s ease 0s;
        }

            .blog-area .blog-info > span > a:hover {
                color: #0BA9ED;
            }

.blog-area .tb-content7 > a.blog7, .top-shop-sidebar.sim > a.blog7 {
    background-color: transparent;
    border: 1px solid #c5c5c5;
    color: #747474;
    display: inline-block;
    margin: 30px 0;
    outline: medium none;
    padding: 10px 34px 7px;
    text-align: center;
}

    .blog-area .tb-content7 > a.blog7:hover {
        background: #0BA9ED none repeat scroll 0 0;
        border-color: #0BA9ED;
        color: #fff;
    }

.blog-area {
    position: relative;
}

    .blog-area h3.wg-title, .top-shop-sidebar h3.wg-title, .last-line h3, .single-sidebar h3.wg-title {
        background: #fff none repeat scroll 0 0;
        color: #000;
        display: inline-block;
        font-size: 18px;
        margin: 0;
        padding-right: 10px;
        text-transform: uppercase;
        font-style: normal;
        font-weight: 600;
        line-height: 29px;
        visibility: visible;
        z-index: 99;
        opacity: 1;
    }

.zo-recent-posts .tb-recent-thumbb, .top-shop-sidebar .tb-recent-thumbb, .single-sidebar .tb-recent-thumbb {
    display: block;
    float: left;
    border: 1px solid #ddd;
    margin-right: 15px;
}

.zo-recent-posts .tb-recentb, .top-shop-sidebar .tb-recentb, .single-sidebar .tb-recentb7 {
    font-size: 13px;
    line-height: 16px;
    overflow: hidden;
}

.tb-postb > p {
    margin-bottom: 5px;
    color: #747474;
    line-height: 18px;
    font-size: 13px;
}

.zo-recent-posts {
    margin-bottom: 30px;
    margin-top: 0px;
}

.widget_searchform_content input[type="text"]:focus {
    border-color: #0BA9ED;
}

.zo-recent-posts .tb-postd {
    color: #0BA9ED;
}

.blog-area .zo-recent-posts ul li {
    border-bottom: 1px solid #ebebeb;
    display: inline-block;
    list-style: outside none none;
    padding: 15px 0 15px;
    width: 100%;
}

.blog-area .zo-recent-posts2 ul li a {
    color: #747474;
    font-size: 13px;
    font-weight: normal;
}

    .blog-area .zo-recent-posts2 ul li a:hover {
        color: #0BA9ED;
    }

.blog-area .zo-recent-posts2 ul li {
    border-bottom: 1px solid #ebebeb;
    display: inline-block;
    list-style: outside none none;
    padding: 7px 0;
    width: 100%;
}

.zo-recent-posts3 {
    margin: 30px 0;
}

.zo-recent-posts2.os4 {
    margin: 30px 0;
}

.blog-area .zo-recent-posts2 ul li a abbr {
    border-bottom: 1px dotted #777;
    cursor: help;
}

.blog-area .zo-recent-posts::before, .blog-area .zo-recent-posts2::before, .blog-area .zo-recent-posts3::before, .shop-area .top-shop-sidebar::before {
    background: #ebebeb none repeat scroll 0 0;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    top: 21px;
    width: 100%;
    z-index: -1;
}

.zo-recent-posts, .zo-recent-posts2, .zo-recent-posts3, .top-shop-sidebar {
    position: relative;
    overflow: hidden;
}

.blog-area .pagination {
    border-top: 1px solid #c5c5c5;
    margin: 0;
    padding: 15px 0 0;
    width: 100%;
}

    .blog-area .pagination .page-numbers {
        background: transparent none repeat scroll 0 0;
        border: 1px solid #c5c5c5;
        border-radius: 50%;
        color: #7b7b7b;
        display: inline-block;
        font-size: 12px;
        height: 21px;
        line-height: 19px;
        margin: 0 2px;
        padding: 0;
        text-align: center;
        width: 21px;
    }

        .blog-area .pagination .page-numbers.current, .blog-area .pagination .page-numbers:hover {
            background: #0BA9ED none repeat scroll 0 0;
            border-color: #0BA9ED;
            color: #fff;
        }

.blog-area .tb-post-item .tb-thumb .tb-publish {
    background: #686868 none repeat scroll 0 0;
    color: #ffffff;
    display: inline-block;
    left: 0;
    line-height: 24px;
    padding: 10px 20px;
    position: absolute;
    text-transform: uppercase;
    top: 0;
    transition: all 0.4s ease 0s;
}

.blog-area .tb-post-item .tb-thumb {
    line-height: 0;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease 0s;
}

.blog-area .tb-content7 a h4.tb-titlel {
    color: #3f3f3f;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 10px;
    text-transform: uppercase;
    transition: all 0.4s ease 0s;
}

    .blog-area .tb-content7 a h4.tb-titlel:hover {
        color: #0BA9ED;
    }

.blog-area .tb-post-item:hover .tb-thumb {
    opacity: 0.6;
}

.blog-area .widget_searchform_content > form {
    padding-right: 80px;
    position: relative;
}

.blog-area .widget_searchform_content input[type="text"] {
    background-color: #fff;
    border: 1px solid #d3d3d3;
    color: #444;
    line-height: 28.8px;
    outline: medium none;
    padding: 5px 15px;
    transition: all 0.4s ease 0s;
    width: 100%;
}

.blog-area .widget_searchform_content > form > input {
    height: 40px;
    margin: 0;
}

    .blog-area .widget_searchform_content > form > input[type="submit"] {
        background: #0BA9ED none repeat scroll 0 0;
        border: 1px solid #0BA9ED;
        color: #ffffff;
        position: absolute;
        right: 0;
        text-transform: uppercase;
        top: 0;
        width: 80px;
    }
/*--------------------- 12. blog-details --------------------*/
.blog-area.bd-area .tb-post-item:hover .tb-thumb {
    opacity: inherit;
}

    .blog-area.bd-area .tb-post-item:hover .tb-thumb > img {
        transform: inherit;
    }

.blog-area.bd-area .tb-post-item .tb-thumb .tb-publish:hover {
    color: #0BA9ED;
    font-weight: 600;
}

.blog-area.bd-area .tb-content7 h4.tb-titlel, .blog-area.bd-area .bd-comment h4.tb-titlel {
    color: #4e4e4e;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 10px;
    text-transform: uppercase;
    transition: all 0.4s ease 0s;
    margin: 16px 0;
}

.bd-area .blog2 {
    margin-left: 20px;
}

.bd-area .next-pre a {
    margin-bottom: 0;
    padding: 6px 12px;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
    line-height: 20px;
    transition: all 0.3s ease 0s;
    color: #999;
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: 1px solid;
    display: inline-block;
    font-weight: 300;
    vertical-align: top;
}

    .bd-area .next-pre a:hover {
        color: #333;
        border-color: #adadad;
    }

.bd-area .next-pre {
    display: block;
    float: right;
    margin-bottom: 14px;
    margin-top: 7px;
}

.bd-comment .di-na {
    margin-bottom: 20px;
}

.comments-list {
    margin-top: 15px;
    padding-top: 20px;
    clear: both
}

    .comments-list .comment-author {
        display: inline-block;
        margin-right: 38px;
        font-size: 14px;
        font-weight: 500;
        font-style: normal;
        color: #1c1f23;
    }

.tf-stars {
    background-image: url(images/star1.svg) !important;
    background-repeat: no-repeat !important;
    position: relative !important;
    margin-bottom: 10px;
}

    .tf-stars span {
        background-image: url(images/star.svg) !important;
        background-repeat: no-repeat !important;
        position: absolute !important;
        left: 0 !important;
        top: 0 !important;
    }

.tf-stars-svg {
    width: 84px !important;
    height: 15px !important;
    background-size: 84px 15px !important;
}

.form-horizontal {
    border-top: 1px solid #e6e7eb;
    padding-top: 10px;
}

.form-review {
    display: none;
    padding-top: 20px;
    margin-top: 15px;
}


ul.children {
    padding-left: 30px;
}

.di-na.bs {
    margin-top: 20px;
}

.last-cart-con.bd-icon {
    float: left;
    margin-top: 4px;
}

.blog-desc > p {
    font-weight: 300;
}

.last-cart-con input[type="submit"] {
    background-color: transparent;
    border: 1px solid #c5c5c5;
    color: #747474;
    display: inline-block;
    line-height: 1;
    margin-top: 10px;
    outline: medium none;
    padding: 15px 45px 12px;
    text-align: center;
    text-transform: uppercase;
    transition: all 0.4s ease 0s;
    width: initial;
}

    .last-cart-con input[type="submit"]:hover {
        background-color: #0BA9ED;
        border-color: #0BA9ED;
        color: #fff;
    }

.back-to-top {
    position: static;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    text-align: center;
    background-color: #0BA9ED;
    line-height: 50px;
    text-transform: uppercase;
    border-radius: 0;
}

    .back-to-top a {
        padding: 0 15px;
        color: #fff
    }


.fancybox-show-thumbs .fancybox-inner {
    margin: 0;
}

.fancybox-thumbs {
    position: absolute;
    width: 68px;
    top: 50%;
    right: 68px;
    left: auto;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 0px;
    box-sizing: border-box;
    background: transparent;
    text-align: center;
}

.fancybox-show-thumbs .fancybox-inner {
    right: 0;
    margin: 20px 200px;
}

.fancybox-caption, .fancybox-infobar, .fancybox-navigation .fancybox-button, .fancybox-toolbar {
    position: fixed;
}

.fancybox-thumbs__list {
    display: inline-block;
    width: auto;
    overflow-x: unset;
    overflow-y: unset;
}

    .fancybox-thumbs__list a {
        width: 60px;
        height: 76px;
        display: flex;
        margin: 5px 0 !important;
        background-color: #fff;
        background-position: center;
        background-size: contain;
        max-width: none !important;
        max-height: none !important;
        border-radius: 0px;
        box-shadow: 0 0 0 1px rgba(0,0,0,0.1) inset;
        transition: .3s;
    }

        .fancybox-thumbs__list a:before {
            border: 1px solid #000;
            bottom: 0;
            content: '';
            left: 0;
            opacity: 0;
            position: absolute;
            right: 0;
            top: 0;
            transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            z-index: 99991;
        }

/*--------------------- 13. single-product--------------------*/
.breadcrumb > li.p-none {
    padding-left: 20px;
}

.breadcrumb li.p-none.si-no::before {
    color: #fff;
    content: "";
    display: block;
    font-family: FontAwesome;
    font-size: 15px;
    height: 30px;
    line-height: 30px;
    position: absolute;
    right: -10px;
    top: 0;
    width: 12px;
}

.pro-img-tab-slider {
    margin-top: 30px;
    clear: both
}

    .pro-img-tab-slider .item a img {
        padding: 6px;
        border: 1px solid #f1f1f1;
        border-radius: 0;
        display: block;
        transition: all 0.3s ease 0s;
        width: 100%;
    }

        .pro-img-tab-slider .item a img:hover {
            border-color: #0BA9ED;
        }

.pro-img-tab-content {
    text-align: center
}

    .pro-img-tab-content .tab-pane {
        padding: 0
    }

        .pro-img-tab-content .tab-pane img {
            cursor: url(../img/icon-img/icon-cursor-zoom.png) 20 20,auto;
        }

.single-product-area {
    margin: 0 0 50px 0;
}

.indicator-style2:hover .owl-nav [class*='owl-'] {
    opacity: 1;
}

.indicator-style2 .owl-nav .owl-next, .indicator-style2 .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    margin: -15px 0 0 0;
}

.indicator-style2 .owl-nav .owl-prev {
    left: 0px;
}

.indicator-style2 .owl-nav .owl-next {
    right: 0px;
}

.indicator-style2 .owl-nav [class*='owl-'] {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    border-radius: 0;
    background-color: #2a3c52;
    color: #fff !important;
    opacity: 0;
}

.related-title::before {
    background: #ddd none repeat scroll 0 0;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    top: 50%;
    width: 100%;
    z-index: -1;
}

.related-title {
    position: relative;
}

    .related-title h2 {
        background-color: #fff;
        border: 1px solid #019cb2;
        color: #373737 !important;
        display: inline-block;
        font-size: 14px !important;
        font-weight: 700;
        line-height: 34px;
        margin: 0;
        padding: 0 15px;
        text-transform: uppercase;
    }

.slider7.s-slider7.indicator-style2.owl-theme .owl-controls .owl-buttons div {
    color: #b7b7b7;
    font-size: 17px;
    opacity: 1;
    padding: 4px 11px;
    right: 3px;
    top: -47px;
}

    .slider7.s-slider7.indicator-style2.owl-theme .owl-controls .owl-buttons div.owl-prev {
        right: 15%;
    }

.cras .product-name h1 {
    font-family: inherit;
    font-size: 24px !important;
    font-weight: 600;
    margin: 0 !important;
    text-transform: capitalize !important;
}

.cras .product-name h2 {
    font-size: 30px !important;
    font-weight: 600;
}

.code-info {
    clear: both;
    border-bottom: 1px solid #e3e3e3;
    color: #333;
    padding: 5px 0;
    margin: 10px 0;
}

    .code-info .viewer {
        font-weight: 600;
        padding-right: 5px;
        color: #0BA9ED;
    }

.box-product-price {
    margin: 12px 0;
    font-size: 30px;
    font-weight: 600
}

.productdecor-price {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600
}

    .productdecor-price .price del {
        margin: 0;
        display: inline-block;
        padding: 0;
        color: #999;
        font-size: 15px;
        font-weight: 400;
    }

    .productdecor-price .price span b {
        margin: 0;
        display: inline-block;
        padding: 0;
        color: #e00;
        font-size: 15px;
        font-weight: 400;
    }

    .productdecor-price .price {
        font-size: 25px;
        color: #e00;
        display: unset;
        font-weight: bold;
    }

.cras .pro-rating.cendo-pro {
    margin-top: 5px;
}

.cras .rating-links {
    margin-bottom: 0;
}

.cras .availability.in-stock {
    margin: 14px 0 0;
    font-size: 13px;
    color: #3f3f3f;
    font-family: arial;
    font-weight: 400;
    line-height: 20px;
    text-transform: capitalize;
}

.cras .availability.in-stock2 {
    font-size: 13px;
    color: #3f3f3f;
    font-family: arial;
    font-weight: 400;
    line-height: 20px;
    margin: 0 0 3px;
    text-transform: capitalize;
}

.cras .short-description p {
    border-top: 1px solid #e5e5e5;
    color: #3f3f3f;
    font-family: arial;
    font-size: 12px;
    line-height: 23px;
    margin-top: 15px;
    padding: 15px 0 0;
    clear: both;
    text-align: justify;
}

.cras .pre-box .special-price {
    color: #0BA9ED;
    text-align: left;
    font-size: 25px;
    font-weight: 600;
    overflow: hidden;
}

.cras .pre-box .old-price {
    font-weight: 400;
    color: #b2b2b2;
    font-size: 15px;
    text-decoration: line-through;
}

.cras .add-to-box .add-to-cart .input-content {
    float: left;
}

.cras .add-to-cart label {
    float: left;
    font-size: 14px;
    font-weight: normal;
    margin-right: 10px;
    padding: 8px 0 0;
}

.add-to-cart .qty {
    background: #fff none repeat scroll 0 0 !important;
    border: 1px solid #ddd;
    box-shadow: none;
    color: #000;
    float: left;
    height: 37px;
    line-height: 37px;
    margin-left: 5px;
    padding: 9px 0;
    text-align: center;
    width: 37px !important;
}

.add-to-box1 {
    display: block;
    overflow: hidden;
}

.none-si-pro {
    border-right: 1px solid #ddd;
}

.product-icon a {
    background: #00aeef none repeat scroll 0 0 !important;
    box-shadow: none;
    color: #fff;
    float: left;
    height: 37px;
    line-height: 17px;
    margin-right: 5px;
    padding: 9px 0;
    text-align: center;
    width: 37px !important;
}

    .product-icon a:hover {
        background: #0BA9ED none repeat scroll 0 0 !important;
        color: #fff;
    }

.s-cart-img {
    padding-top: 20px;
}

.s-slider7 .product-img-right a img.primary-image {
    border: none;
}

.related-title.s-title {
    margin-bottom: 10px;
}

.tab_area .text {
    float: left;
    padding: 0 15px;
    width: 100%;
}

.single-product-area.sit .nav-tabs::before {
    background: #ddd none repeat scroll 0 0;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    top: 50%;
    width: 100%;
    z-index: -1;
}

.tab_area .nav-tabs {
    border: medium none;
    margin: 0 0 30px;
    position: relative;
}

.single-product-area.sit .text li {
    margin-right: 20px;
}

    .single-product-area.sit .text a:hover, .single-product-area.sit .text li.active a {
        background: #fff none repeat scroll 0 0;
        border: 1px solid #0BA9ED;
        color: #0BA9ED;
    }

.single-product-area.sit .text a {
    background: #fff none repeat scroll 0 0;
    border: 1px solid #ddd;
    border-radius: 0;
    color: #000;
    display: inline-block;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    line-height: 15px;
    margin: 0;
    padding: 16px 23px 13px 15px;
    text-decoration: none;
    text-transform: uppercase;
}

.single-product-area.sit .tab-content.tab-con2 .tab-pane.active {
    border: 1px solid #ddd;
    color: #a3a3a3;
    font-family: arial;
    font-size: 13px;
    font-weight: 500;
    line-height: 23px;
    margin: 0;
    overflow: auto;
    padding: 15px;
    text-align: justify;
}

.single-product-area.sit .table.table-bordered td {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    text-align: left;
}

.single-product-area.sit .text .text.an-text {
    position: relative;
}

.single-product-area.sit .nav-tabs {
    border: medium none;
    margin: 50px 0 30px;
    position: relative;
}

.single-product-area.sit .text .text.an-text::after {
    border-bottom: 8px solid #ffffff;
    border-left: 8px solid rgba(0, 0, 0, 0);
    border-right: 8px solid rgba(0, 0, 0, 0);
    content: "";
    display: inline-block;
    left: 10px;
    position: absolute;
    top: -8px;
}

.single-product-area.sit .text .text.an-text::before {
    border-bottom: 9px solid #e5e5e5;
    border-left: 9px solid rgba(0, 0, 0, 0);
    border-right: 9px solid rgba(0, 0, 0, 0);
    content: "";
    display: inline-block;
    left: 9px;
    position: absolute;
    top: -9px;
}

.single-product-area.sit .text .text.an-text {
    background: #ffffff none repeat scroll 0 0;
    border: 1px solid #e5e5e5;
    border-radius: 2px;
    margin: 5px 0 20px;
    padding: 20px;
    position: relative;
}

.single-product-area.sit .text span.fa {
    color: #f4a137;
    float: left;
    font-size: 8px;
    margin-right: 8px;
}

.single-product-area.sit .text h2.write {
    font-size: 18px;
    text-transform: capitalize;
    color: #444;
    clear: both
}

.single-product-area.sit .text .form-group label {
    margin: 0;
    padding: 0 0 10px;
    text-align: left;
    width: 100%;
}

.single-product-area.sit .text div.required .control-label::before {
    color: #f00;
    content: "* ";
    font-weight: bold;
}

.single-product-area.sit .text input.form-control {
    border: 1px solid #e8e8e8 !important;
    box-shadow: none;
    font-size: 13px;
    width: 300px;
}

.single-product-area.sit .text textarea {
    border: 1px solid #e8e8e8 !important;
    box-shadow: none;
    font-size: 14px;
    line-height: 25px;
    min-height: 100px;
    width: 500px;
}

.table-img {
    margin-top: 10px;
}

.single-product-area.sit .buttons.si-button {
    margin: 1em 0;
}

.buttons.si-button .pull-right {
    margin-bottom: 30px;
}

.buttons.si-button button {
    background: #222 none repeat scroll 0 0;
    border: 0 none;
    border-radius: 0;
    color: #fff;
    font-size: 14px;
    line-height: 15px;
    padding: 10px 12px;
    text-transform: uppercase;
    transition: all 0.3s ease 0s
}

    .buttons.si-button button:hover {
        background: #0BA9ED none repeat scroll 0 0;
    }

.mostview-area.mostview-area2 {
    margin-bottom: 50px;
}

.single-product-area.sit .text {
    padding: 0 0px;
}

.single-product-area .item {
    padding: 0px;
}

.pro-rating {
    display: block;
    margin: 10px 0 7px;
    overflow: hidden;
}

    .pro-rating .pro_one, .pro-rating .pro_two {
        float: left;
    }

.rating-links > a {
    color: #0BA9ED;
}

.single-product-area .pro-rating .rating-links {
    line-height: 13px;
}

.pro-img-tab-content .owl-carousel .owl-item {
    float: left;
    padding: 5px;
}

.single-product-area .quantity {
    display: block;
}

.cart-plus-minus {
    width: 100%;
}

.review-btn {
    padding: 45px 0;
    vertical-align: middle;
    text-align: center
}

    .review-btn .add_review {
        border: none;
        border-radius: 3px;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        color: #fff;
        font-size: 12px;
        padding: 9px 35px;
        text-transform: uppercase;
        transition: none;
        background: linear-gradient(to bottom, #f00 0%, #c00 100%);
    }

.product-btn {
    margin-bottom: 14px;
}

    .product-btn .add_to_cart a {
        border: 1px solid #a0a0a0;
        border-radius: 3px;
        margin-right: 5px;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        letter-spacing: -0.02em;
        color: #000;
        font-size: 12px;
        padding: 9px 21px;
        text-transform: uppercase;
        transition: none;
        background: linear-gradient(to bottom, #fefdfe 0, #f7f7f7 100%);
    }

        .product-btn .add_to_cart a.blue {
            color: #fff;
            background: linear-gradient(to bottom, #00aeef 0%, #0988b8 100%);
        }

        .product-btn .add_to_cart a.red {
            color: #fff;
            background: linear-gradient(to bottom, #f00 0%, #c00 100%);
            border: 1px solid #c00;
        }

        .product-btn .add_to_cart a i {
            font-size: 20px;
            margin-right: 6px;
        }

        .product-btn .add_to_cart a:hover {
            color: #fff;
            background: linear-gradient(to bottom, #00aeef 0%, #0988b8 100%);
            border: 1px solid #00aeef;
        }

.search-suggest {
    background: #fff;
    height: 333px;
    width: 100%;
    overflow-y: scroll;
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
    border-radius: 3px;
    box-shadow: 0 2px 5px 0px rgba(0,0,0,0.2);
    z-index: 9999;
}

    .search-suggest ul {
        list-style: none;
        padding: 0;
        position: relative;
    }

        .search-suggest ul li.ss-title {
            background: #eee;
        }

            .search-suggest ul li.ss-title i {
                margin-right: 3px;
            }

        .search-suggest ul li {
            padding: 10px;
            display: block;
            width: 100%;
            overflow: hidden;
            color: #333;
            border-bottom: 1px solid #eee;
            line-height: 1.2em;
        }

            .search-suggest ul li:hover {
                background: #fafafa;
            }

            .search-suggest ul li .thumb {
                float: left;
                width: 66px;
                margin-right: 10px;
            }

            .search-suggest ul li .thumb-news {
                float: left;
                width: 80px;
                height: 50px;
                margin-right: 10px;
            }

            .search-suggest ul li .ss-name {
                margin-bottom: 3px;
                font-size: 14px;
                color: #333 !important;
                line-height: 1.4em;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                max-width: 100%;
                overflow: hidden;
            }

            .search-suggest ul li .ss-price {
                color: #f00;
                font-size: 14px;
                margin-bottom: 0;
            }

.services-block.single {
    border-top: 1px solid #eee;
    clear: both;
    margin-top: 10px;
    float: left
}

.services-block.small .item {
    min-height: 6.5em;
    display: table;
    width: 100%;
    color: #2b2b2b;
}

.services-block.small .icon {
    font-size: 2.8em;
    line-height: 1em;
    width: 56px;
    display: table-cell;
    vertical-align: middle;
    padding: .2em;
    margin-right: 0;
}

.services-block .item .text {
    display: table-cell;
    vertical-align: middle;
    text-align: left;
}

.services-block.small .title {
    font-size: 1.24em;
    line-height: 1.2em;
    display: block;
}


.label-group-inline {
    white-space: nowrap;
}

.product-title .title {
    margin-bottom: 20px;
    display: table;
    width: 100%;
    position: relative;
    border-bottom: 1px solid #ccc;
    font-size: 14px;
    height: 35px;
    line-height: 35px;
}

    .product-title .title::after {
        content: '';
        width: 92px;
        height: 1px;
        background: #0BA9ED;
        position: absolute;
        bottom: -1px;
        left: 0px;
    }

.btn-add-cart {
    margin: 0px 10px;
}

    .btn-add-cart .btn1 {
        width: auto;
        background: #0BA9ED;
        padding: 0 28px;
        color: #fff;
        transition: all 0.3s ease-in-out;
        border-radius: 50px;
        height: 38px;
        margin-bottom: 0px;
        font-weight: 700;
    }

    .btn-add-cart .btn2 {
        width: 100%;
        font-weight: 700;
        transition: all 0.3s ease-in-out;
        color: #000;
        background: #fff;
    }

    .btn-add-cart .btn {
        text-transform: uppercase;
    }

        .btn-add-cart .btn span {
            display: block;
            font-size: 12px;
            font-weight: normal;
            text-transform: none;
        }

    .btn-add-cart .btn1:hover {
        background: #fff;
        border: 2px solid #0BA9ED;
        color: #0BA9ED
    }

.single-product-area input.cart-plus-minus-box {
    text-align: center;
}

.single-product-area .inc.qtybutton {
    border-width: 1px 1px 1px 0;
}

.single-product-area .ro-info-box-wrap.tpl3 {
    margin-top: 40px;
    max-width: 370px;
    border: 1px solid #ddd;
    padding: 15px 0;
    position: relative;
}
/*--------------------- 14. about us --------------------*/
.what-client-say:hover .owl-controls .owl-buttons div {
    opacity: 1;
}

.what-client-say .owl-controls .owl-buttons div {
    top: 18%;
}

.about-optima-text h1, .about-sec-head h2, h2.creative-member, .contact-content-area h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
    margin-bottom: 20px;
    margin-top: 0;
    text-transform: uppercase;
}

    .about-optima-text h1 strong, .client-say h2 strong, h2.creative-member strong, .contact-content-area h2 strong {
        border-bottom: 1px solid #0BA9ED;
        color: #0BA9ED;
        font-weight: 300;
        line-height: 40px;
    }

.about-optima-text > p, .about-sec-head p, .client-text > p, .member-info p {
    color: #444;
    font-size: 14px;
    font-weight: normal;
    line-height: 22px;
    margin-bottom: 15px;
    word-spacing: 2px;
}

.about-optima-text ul {
    margin-bottom: 28px;
    margin-top: 30px;
    overflow: hidden;
}

    .about-optima-text ul li {
        font-size: 14px !important;
        line-height: 22px !important;
        color: #333;
        float: left;
        width: 100%;
        padding: 0 10px 0 37px;
        background: url(images/checked.svg) no-repeat 1px 1px;
        flex: 0 0 auto;
        width: 50%;
        margin-bottom: 15px;
    }

.about-us-all {
    margin-bottom: 20px;
    clear: both;
    overflow: hidden
}

.about-optima-text a {
    border: 1px solid #FD9636;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    line-height: 28px;
    overflow: hidden;
    padding: 10px 23px 8px;
    text-transform: uppercase;
    transition: all 0.3s ease 0s;
    color: #a6a6a6;
}

    .about-optima-text a:hover {
        background: #FD9636 none repeat scroll 0 0;
        color: #fff;
        transition: all 0.6s ease 0s;
    }

.about-sec-head {
    margin-bottom: 40px;
    text-align: center;
}

.client-say p {
    font-weight: 100;
    word-spacing: 2px;
}

.client-say {
    margin-bottom: 40px;
    margin-top: 60px;
}

.what-client-say {
    border-bottom: 1px dashed #ddd;
    padding-bottom: 35px;
}

.what-client-say {
    display: block;
    text-align: center;
}

.single-item-testi {
    text-align: center
}

.client-image {
    margin-bottom: 10px
}

    .client-image > img {
        border: 4px solid #f1f1f1;
        border-radius: 50%;
        height: auto;
        width: 125px;
        height: 125px;
    }

.member-image {
    overflow: hidden;
    position: relative;
}

    .member-image img {
        width: 100%;
    }

.member-title {
    background: rgba(35, 180, 202, 0.7) none repeat scroll 0 0;
    bottom: -70px;
    display: block;
    left: 0;
    overflow: hidden;
    padding: 5px 10px;
    position: absolute;
    transition: all 0.3s ease 0s;
    width: 100%;
}

    .member-title h2 {
        color: #fff;
        font-size: 24px;
        font-weight: 300;
        line-height: 28px;
        margin: 0;
        text-transform: capitalize;
    }

    .member-title h3 {
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        line-height: 28px;
        margin: 0;
    }

.member-info {
    border-color: #ddd;
    border-style: solid;
    border-width: 0 1px 1px;
    padding-bottom: 20px;
    padding-top: 20px;
}

.member-social {
    margin-top: 20px;
    text-align: center;
}

    .member-social a.m-facebook {
        background: #2e4da7 none repeat scroll 0 0;
    }

    .member-social a {
        color: #fff;
        display: inline-block;
        font-size: 16px;
        height: 30px;
        line-height: 30px;
        margin-left: 2px;
        margin-right: 2px;
        text-align: center;
        transition: all 0.3s ease 0s;
        width: 30px;
    }

        .member-social a.m-twitter {
            background: #00aced none repeat scroll 0 0;
        }

        .member-social a.m-g-plus {
            background: #da4835 none repeat scroll 0 0;
        }

        .member-social a.m-linkedin {
            background: #006699 none repeat scroll 0 0;
        }

.member-info p {
    text-align: center;
}

.member-social a:hover {
    opacity: 0.8;
}

.slide-chuyengia {
    padding-bottom: 50px;
}

.scrollup {
    width: 42px;
    height: 42px;
    text-align: center;
    font-weight: bold;
    text-decoration: none;
    position: fixed;
    bottom: 30px;
    right: 13px;
    margin-top: -20px;
    z-index: 20;
    display: none;
    text-indent: -3000px;
    background: #333;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.11);
    border-radius: 50%;
    overflow: hidden;
}

    .scrollup:before, .scrollup:after {
        content: '';
        position: absolute;
        display: block;
        top: 15px;
        background-color: #fff;
        height: 14px;
        width: 2px;
    }

    .scrollup:before {
        transform: rotate(-45deg);
        left: 25px;
    }

    .scrollup:after {
        transform: rotate(45deg);
        right: 25px;
    }

    .scrollup:hover {
        background-color: #2a3c52;
    }

#recently-products {
    margin-top: 30px;
}

.nav > li > a {
    padding: 12px 30px;
}

.nav-tabs > li > a {
    margin-right: 5px;
    color: #8C9EC5;
}

.nav-tabs li a h4 {
    margin: 0
}

.nav-tabs > li > a:hover {
    border-color: #fff #fff #ddd;
    background: #fff
}

.nav-tabs li:hover a {
    color: #0BA9ED !important;
}

.nav-tabs li.active a {
    color: #333 !important;
}

.box-newsletter {
    padding: 90px 0;
    background: #0E224D url(images/bg-newsletter.png) no-repeat right 10px bottom 10px;
}

    .box-newsletter h3 {
        color: #fff;
        font-size: 32px;
    }

    .box-newsletter p {
        color: #fff;
        font-size: 20px;
    }

    .box-newsletter .box-form-newsletter {
        position: relative;
        margin-top: 15px;
    }

        .box-newsletter .box-form-newsletter .input-newsletter {
            width: 100%;
            background-color: #fff;
            border-radius: 4px;
            border: 0;
            height: 50px;
            padding: 5px 20px;
        }

        .box-newsletter .box-form-newsletter .btn-subcribe {
            position: absolute;
            top: 0;
            right: 0;
            height: 50px;
            border-top-left-radius: 0;
            border-bottom-left-radius: 0;
            border-top-right-radius: 3px;
            border-bottom-right-radius: 3px;
        }

.btn {
    border-radius: 4px;
    padding: 10px 22px;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    text-decoration: none;
    position: relative;
}

    .btn.btn-subcribe {
        background-color: #FD9636;
        color: #fff;
        font-weight: 600;
    }

        .btn.btn-subcribe:hover {
            background-color: #333;
        }

.box-grid-company {
    display: grid;
    grid-gap: 0 30px;
    margin-top: 60px;
    grid-auto-rows: minmax(min-content, max-content);
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.team_col {
    margin-bottom: 40px;
}

    .team_col .review_rating {
        justify-content: center;
    }

.team_item {
    width: 100%;
    position: relative;
}

    .team_item .team_image {
        width: 100%;
        position: absolute;
        left: 0;
        top: -60px;
        z-index: 5;
    }

        .team_item .team_image a {
            display: block;
            background: #fff;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto;
            border: 1px solid #ddd;
        }

    .team_item:hover .team_body {
        box-shadow: 0 5px 40px rgba(29, 34, 47, 0.15);
    }

.team_title a {
    font-size: 14px;
    height: 36px;
    color: #384158;
    overflow: hidden;
    display: block;
}

    .team_title a:hover {
        color: #14bdee;
    }

.team_body {
    width: 100%;
    padding: 65px 5px 40px;
    background: #FFF;
    border-radius: 6px;
    box-shadow: 0 1px 10px rgba(29, 34, 47, 0.1);
    text-align: center;
    -webkit-transition: all 200ms ease;
}

.single-creative-member:hover .member-title {
    bottom: 0;
}

.client-text > p {
    margin-top: 25px;
}

.client-text h2 {
    font-size: 16px;
    line-height: 24px;
    margin: 0;
}

.client-text p.client-info {
    font-size: 13px;
    font-style: italic;
    margin: 0;
}

.single-creative-member {
    margin-bottom: 20px;
}

.newsletter-area {
    margin: 30px 0 0px;
}

.signup-newsletter {
    background: #f1f1f1 none repeat scroll 0 0;
    padding: 30px 0 40px;
}

    .signup-newsletter > h2 {
        color: #555;
        font-size: 20px;
        font-weight: 200;
        line-height: 28px;
        margin: 0 0 10px;
        text-align: center;
        text-transform: uppercase;
        word-spacing: 3px;
    }

    .signup-newsletter .blog-search {
        margin: 0 auto;
        width: 50%;
    }

.blog-search > form {
    display: block;
    position: relative;
}

.blog-search input, .blog-search button {
    border: 1px solid #E27B4C;
}

.blog-search input {
    font-size: 14px;
    height: auto;
    padding: 12px 15px;
    width: 100%;
}

.signup-newsletter .blog-search button {
    text-transform: capitalize;
    width: 20%;
}

.blog-search button {
    background: #E84C3D none repeat scroll 0 0;
    color: #fff;
    font-size: 17px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
}

    .blog-search button:hover {
        background: #E27B4C none repeat scroll 0 0;
        transition: all 0.4s ease 0s;
    }

.main_shop_area {
    margin: 60px 0;
}

.contact-img-area::before {
    background: rgb(2 12 45 / 60%) none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.contact-img-area {
    position: relative;
}

.contact-img-area {
    background-color: transparent;
    background-image: url("../img/banner/bg-avl.jpg");
    background-position: center top;
    background-repeat: no-repeat;
    padding: 20px 0 20px;
}

h2.page-title {
    color: #fff;
    font-size: 40px;
    font-style: normal;
    font-weight: normal;
    line-height: 40px;
    margin: 0;
    opacity: 1;
    padding: 0;
    text-transform: uppercase;
}

.con-text > p {
    color: #fff;
    font-size: 13px;
    font-weight: 300;
    font-style: normal;
    font-weight: normal;
    margin: 20px 0 0;
    opacity: 1;
    transition: opacity 0.24s ease-in-out 0s;
    visibility: visible;
}

    .con-text > p i {
        padding: 0 4px;
    }

.con-text a {
    font-weight: normal;
    color: #0BA9ED;
    font-size: 15px;
}

.mean-container .mean-bar {
    min-height: auto;
    padding: 0;
    position: static;
}

.mobile-menu-area {
    background: transparent none repeat scroll 0 0;
    display: block;
    float: right;
    margin-top: 30px;
    padding-left: 35px;
}

.meanmenu-reveal {
    padding: 0 !important;
}

.mean-container .mean-nav {
    position: absolute;
    right: 0;
    top: 90px;
    width: 100%;
}

.mean-container a.meanmenu-reveal {
    height: 17px;
    width: 17px;
}

.icon-xcart-animate {
    position: relative;
    display: inline-block;
    padding-top: 5px;
    top: -6px;
}

    .icon-xcart-animate .box {
        display: block;
        z-index: 1;
        position: relative;
        background: #fff;
        border: 2px solid #fff;
        height: 28px;
        width: 30px;
        font-size: .92em;
        line-height: 1.3em;
        padding: 5px 0 10px;
        color: #111;
        font-weight: 700;
        text-align: center;
        border-radius: 2px
    }

    .icon-xcart-animate:hover .box {
        background: #fff;
        color: #353535
    }

    .icon-xcart-animate .handle {
        display: block;
        position: absolute;
        left: 8px;
        top: 0;
        border: 2px solid #fff;
        width: 14px;
        height: 14px
    }

    .icon-xcart-animate:hover .handle {
        top: -3px
    }

.compare-products table {
    width: 100%;
    border: solid 1px #e9e9e9;
    color: #232323;
}

    .compare-products table td {
        position: relative;
        vertical-align: top;
        padding: 15px 20px;
    }

.compare-products .table-bordered > thead > tr > th,
.compare-products .table-bordered > tbody > tr > th,
.compare-products .table-bordered > tfoot > tr > th,
.compare-products .table-bordered > thead > tr > td,
.compare-products .table-bordered > tbody > tr > td,
.compare-products .table-bordered > tfoot > tr > td {
    border: solid 1px #e9e9e9;
}

.compare-products .product .close {
    position: absolute;
    top: 15px;
    right: 20px;
}

.compare-products .product .media-link {
    float: left;
    padding: 0;
    display: block;
    position: relative;
    overflow: hidden;
    text-align: center;
}

    .compare-products .product .media-link img {
        width: 150px
    }

    .compare-products .product .media-link .fa {
        position: absolute;
        bottom: 50%;
        left: 50%;
        font-size: 24px;
        width: 30px;
        height: 30px;
        line-height: 30px;
        margin-left: -15px;
        margin-bottom: -15px;
        color: #ffffff;
        z-index: 11;
        opacity: 0;
    }

    .compare-products .product .media-link:after {
        -webkit-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background-color: rgba(0, 177, 106, 0);
        z-index: 10;
    }

    .compare-products .product .media-link:hover .fa {
        bottom: 50%;
        opacity: 1;
    }

    .compare-products .product .media-link:hover:after {
        background-color: rgba(0, 177, 106, 0.7);
    }

.compare-products .product h4,
.compare-products .product h4 a {
    font-weight: 500;
    color: #232323;
    margin: 10px 0;
    text-transform: none;
    font-size: 16px;
}

    .compare-products .product h4:hover,
    .compare-products .product h4 a:hover {
        color: #00aeef;
    }

.compare-products .rating {
    float: left;
    margin-right: 10px;
}

.compare-products .reviews {
    color: #232323;
}

    .compare-products .reviews:hover {
        border-bottom: solid 1px #232323;
    }

.compare-products .price {
    font-size: 18px;
    font-weight: 900;
}

.compare-products .colors ul {
    overflow: hidden;
    margin-top: -7px;
    margin-bottom: 0;
}

    .compare-products .colors ul li {
        float: left;
        margin: 7px 7px 0 0;
    }

        .compare-products .colors ul li a {
            display: block;
            width: 35px;
            height: 35px;
            border: solid 3px rgba(35, 35, 35, 0.1);
            padding: 3px;
        }

            .compare-products .colors ul li a span {
                display: block;
                width: 23px;
                height: 23px;
            }

            .compare-products .colors ul li a:hover {
                border-color: #232323;
            }

.compare-products .buttons {
    overflow: hidden;
}

    .compare-products .buttons .quantity {
        overflow: hidden;
        margin-right: 5px;
    }

        .compare-products .buttons .quantity .form-control {
            height: 40px !important;
        }

        .compare-products .buttons .quantity .btn {
            margin-top: 10px;
            float: left;
            margin-right: 1px;
            background-color: #232323;
            color: #7f7f7f;
            height: 40px;
        }

            .compare-products .buttons .quantity .btn:hover {
                color: #ffffff;
            }

        .compare-products .buttons .quantity .qty {
            margin-top: 10px;
            float: left;
            margin-right: 1px;
            width: 40px;
            height: 60px;
            background-color: #232323;
            border-color: #232323;
            color: #ffffff;
        }

    .compare-products .buttons .btn-cart {
        float: left;
        margin-right: 5px;
        border: 1px solid #a0a0a0;
        border-radius: 3px;
        margin-right: 5px;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        letter-spacing: -0.02em;
        color: #000;
        font-size: 12px;
        padding: 9px 30px;
        text-transform: uppercase;
        transition: none;
        background: linear-gradient(to bottom, #fefdfe 0, #f7f7f7 100%);
    }

        .compare-products .buttons .btn-cart:hover {
            background: linear-gradient(to bottom, #00aeef 0%, #0988b8 100%);
            border: 1px solid #00aeef;
            color: #fff;
        }

    .compare-products .buttons .btn-wish-list,
    .compare-products .buttons .btn-compare {
        float: left;
        margin-right: 5px;
        padding: 9px 12px;
        font-size: 12px;
        background: linear-gradient(to bottom, #00aeef 0%, #0988b8 100%);
        border: 1px solid #00aeef;
        color: #fff;
    }

        .compare-products .buttons .btn-wish-list:hover,
        .compare-products .buttons .btn-compare:hover {
            background: #00aeef;
            color: #fff;
        }

.text-color {
    color: #00aeef
}

@media (max-width: 979px) {
    .features-tab .col-md-3 {
        width: 33.333%
    }

    .left-sidebar, .main-sidebar {
        float: none !important;
        width: 100% !important;
        clear: both !important;
    }

    .sticky-bar.stick .container {
        width: 97%;
        margin: 0 auto;
    }

    .sticky-bar.stick .dropdown {
        width: 98%;
    }

    .sticky-bar.stick .menu-mobile {
        top: 15px;
        right: 10px;
    }

    .menu-mobile {
        right: 0px;
        top: -55px
    }

    .list-col-ck li {
        width: 50%;
    }

    .form-search {
        margin: 10px 0 10px 0;
    }

    .header-central-row > div > ul > li > div {
        top: 49px
    }

    .nav-cate-top a {
        width: 20%
    }

    #hsx-products .owl-theme .owl-nav {
        display: block
    }

    .list-products-5 .single-product {
        width: 50%;
    }

    .box-grid-company {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 979px) {
    .product-fix {
        position: -webkit-sticky;
        position: sticky;
        top: 90px;
        z-index: 5;
    }

    .orderby-fix {
        position: -webkit-sticky;
        position: sticky;
        top: -1px;
        border-bottom: 1px solid #ddd;
        z-index: 6;
        padding: 10px 10px;
    }
}

@media (max-width: 767px) {

    .single-product .left-block {
        width: 100%;
        text-align: center;
    }

    .head-main {
        margin-bottom: 10px;
    }

    .list-products-5 .single-product {
        width: 50%;
        padding: 5px;
    }

    #recently-products .list-products-5, .list-products-5 {
        width: calc(100% + 10px);
        margin: 0 -5px;
    }

    .footer-top {
        padding: 20px 0;
    }

    .head-main h3 {
        font-size: 22px;
        text-transform: uppercase;
    }

    .box-grid-company {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-gap: 40px 25px;
    }

    .list-products-5 .single-product .img-responsive {
        padding-top: 100%;
    }

    .single-product .right-block {
        margin-left: 0px;
        clear: both;
    }

    .cat-footer ul li {
        width: 100%;
        padding: 0 15px;
    }

    .sticky-bar.stick .container {
        width: 94%;
        margin: 0 auto;
    }

    .sticky-bar.stick .dropdown {
        width: 97%;
    }

    .menu-mobile {
        right: 0px;
        top: -102px
    }

    .sticky-bar.stick .menu-mobile {
        top: 15px;
        right: 10px;
    }

    .block-sale-2 {
        margin-bottom: 20px;
        height: auto
    }

    .fs-cm-c1, .fs-cm-c2, .fs-cm-c3 {
        display: block;
        width: 100%
    }

    .col-input {
        display: block
    }

        .col-input .form-control, .col-input label {
            margin: 0 0 10px 0
        }

    .menu-bottom li {
        display: block;
        margin-top: 5px;
    }

    .footer-bottom .copyright, .text-lg-right {
        text-align: center;
    }

    .form-search .form-control {
        height: 40px;
    }

    .form-search button {
        height: 40px;
    }

    .block-sale-2 .box-sale h4 {
        font-size: 20px;
    }

    .nav-cate-top a {
        width: 33.333%
    }

    .product-dsc h3 {
        height: 40px;
    }

    .pro-border {
        min-height: 136px;
    }

    .news-list-cm .card-grid-top {
        display: inline-block;
        width: 100%;
    }

    .news-list-cm .blog-info {
        width: 100%
    }

    .btn.btn-news {
        background-position: top 3px right 20px;
    }

    .box-filters {
        text-align: center
    }

    .news-list-cm .image-box {
        max-height: 100%;
        min-height: auto;
    }

    #sellers-products .border-layout {
        border-right: none;
    }

        #sellers-products .border-layout:first-child {
            border-right: none;
            padding-bottom: 15px;
        }

    .search-top {
        padding: 3px 0;
    }

    .header-central-row > div > ul {
        position: absolute;
        top: -88px;
        z-index: 99;
        right: 8px;
    }

    .logo img {
        width: 40px;
        height: 40px
    }

    .logo span {
        font-size: 12px;
        margin-top: 3px;
    }

    .form-search {
        margin: 0;
    }

    .header-central-row {
        display: inline-block;
        margin: 0;
    }

        .header-central-row .col-xs-12 {
            padding: 0
        }

    .d-flex {
        display: inline-flex !important;
    }

    .list-col-ck li {
        width: 50%;
        height: auto;
        margin-bottom: 0;
    }

        .list-col-ck li .item-list {
            padding: 8px;
        }

    .compare-products table {
        display: block;
        overflow: auto;
    }

    .container-topbar {
        display: block;
    }

    .menu-top-right {
        text-align: center;
    }

    .compare-products .buttons .btn-wish-list,
    .compare-products .buttons .btn-compare {
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    #recently-products {
        margin-top: 10px;
    }

    .nav > li > a {
        padding: 5px 10px;
    }

        .nav > li > a h3 {
            font-size: 15px;
            margin-bottom: 3px;
        }

    #recently-products .owl-nav {
        top: -60px;
    }

    #recently-nav .owl-nav {
        top: -70px;
    }

    h2.title-sp {
        font-size: 30px;
        line-height: 40px;
    }

    .breadcrumbs-full {
        margin-bottom: 15px;
    }

    .card-grid-style-2 .image-box-sp {
        width: 50%;
        height: auto;
    }

    .card-grid-style-2.sp {
        min-height: auto
    }

    .about-optima-text ul li {
        width: 100%
    }

    .card-grid-style-2 .info-right h4 {
        margin: 0 0 10px 0
    }

    .dropdown-language .form-control {
        padding: 6px;
    }

    .menu-top-right ul li span {
        font-size: 12px;
    }

    .card-grid-style-2 {
        width: calc(100% - 0px);
    }

    .counter_content {
        padding: 30px 0;
    }

    .counter_text p {
        text-align: center;
        color: #89aed9;
    }

    .milestones {
        display: block;
    }

    .milestone:not(:last-child)::after {
        display: none
    }

    .milestone {
        float: left;
        width: 50%;
        margin-bottom: 30px;
    }

    .features-tab .shop-all-tab .shop6 {
        margin: 0
    }

    .box-newsletter {
        background: #0E224D;
        padding: 20px 0;
        text-align: center;
    }
}
/*====================================================================
							[ END ]
======================================================================*/
/* iocn zalo*/
#button-contact-vr {
    position: fixed;
    bottom: 68px;
    right: 0;
    z-index: 99999
}

    #button-contact-vr .button-contact {
        position: relative;
        margin-top: -5px
    }

        #button-contact-vr .button-contact .phone-vr {
            position: relative;
            visibility: visible;
            background-color: transparent;
            width: 90px;
            height: 90px;
            cursor: pointer;
            z-index: 11;
            -webkit-backface-visibility: hidden;
            -webkit-transform: translateZ(0);
            transition: visibility .5s;
            left: 0;
            bottom: 0;
            display: block
        }

.phone-vr-circle-fill {
    width: 65px;
    height: 65px;
    top: 12px;
    left: 12px;
    position: absolute;
    box-shadow: 0 0 0 0 #c31d1d;
    background-color: rgba(230,8,8,0.7);
    border-radius: 50%;
    border: 2px solid transparent;
    -webkit-animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
    animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animuiion: zoom 1.3s infinite;
    animation: zoom 1.3s infinite
}

.phone-vr-img-circle {
    background-color: #e60808;
    width: 40px;
    height: 40px;
    line-height: 40px;
    top: 25px;
    left: 25px;
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    -webkit-animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
    animation: phone-vr-circle-fill 1s infinite ease-in-out
}

    .phone-vr-img-circle a {
        display: block;
        line-height: 37px
    }

    .phone-vr-img-circle img {
        max-height: 25px;
        max-width: 27px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        -moz-transform: translate(-50%,-50%);
        -webkit-transform: translate(-50%,-50%);
        -o-transform: translate(-50%,-50%)
    }

#instagram-vr .phone-vr-circle-fill {
    background: rgb(17,143,253);
    background: linear-gradient(160deg,rgba(17,143,253,1) 20%,rgba(188,60,218,1) 50%,rgba(253,223,5,1) 80%);
    background-size: contain;
    box-shadow: 0 0 0 0 #c840c9;
    background-color: rgb(79 103 254);
    border: 0
}

#instagram-vr .phone-vr-img-circle {
    background: transparent
}

#telegram-vr .phone-vr-circle-fill {
    box-shadow: 0 0 0 0 #2c9fd8;
    background-color: rgb(44 159 216 / 74%)
}

#telegram-vr .phone-vr-img-circle {
    background: #2c9fd8
}

#zalo-vr .phone-vr-circle-fill {
    box-shadow: 0 0 0 0 #2196F3;
    background-color: rgba(33,150,243,0.7)
}

#zalo-vr .phone-vr-img-circle {
    background-color: #2196F3
}

#tiktok-vr .phone-vr-circle-fill {
    box-shadow: 0 0 0 0 #343038;
    background-color: rgb(0 0 0 / 80%);
}

#tiktok-vr .phone-vr-img-circle {
    background-color: #222
}

#contact-vr .phone-vr-circle-fill {
    box-shadow: 0 0 0 0 #2196F3;
    background-color: rgba(33,150,243,0.7)
}

#contact-vr .phone-vr-img-circle {
    background-color: #2196F3
}


#fanpage-vr img {
    max-width: 35px;
    max-height: 35px
}

#fanpage-vr .phone-vr-img-circle {
    background-color: #1877f2
}
#fanpage-vr .phone-vr-circle-fill {
    box-shadow: 0 0 0 0 rgb(24 119 242 / 65%);
    background-color: rgb(24 119 242 / 70%)
}

@-webkit-keyframes phone-vr-circle-fill {
    0% {
        -webkit-transform: rotate(0) scale(1) skew(1deg)
    }

    10% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg)
    }

    20% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg)
    }

    30% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg)
    }

    40% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg)
    }

    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg)
    }

    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg)
    }
}

@-webkit-keyframes zoom {
    0% {
        transform: scale(.9)
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px transparent
    }

    100% {
        transform: scale(.9);
        box-shadow: 0 0 0 0 transparent
    }
}

@keyframes zoom {
    0% {
        transform: scale(.9)
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px transparent
    }

    100% {
        transform: scale(.9);
        box-shadow: 0 0 0 0 transparent
    }
}