@charset "UTF-8";

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li,
span {
    font-family: "微軟正黑體" !important;
}

.btn.focus,
.btn:focus,
.custom-control-input:focus~.custom-control-label::before {
    -webkit-box-shadow: none;
    box-shadow: none;
}

h1,
h2,
h3,
h4 {
    font-weight: bold;
}

a {
    transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    text-decoration: none;
    cursor: pointer;
}

ul {
    margin: 0;
    padding: 0;
}

ul li {
    list-style-type: none;
}

p {
    font-size: 16px;
}

.line-height-normal {
    line-height: normal;
}

.text-orange {
    color: #FF8249;
}

.text-blue {
    color: #005e98;
}

.text-green2 {
    color: #4da6a0;
}

.text-red {
    color: red;
}

.text-gray {
    color: #777;
}

.text-purple {
    color: #8c2da3;
}

.text-bold {
    font-weight: bold;
}

.bg-gray {
    background: #f6f6f6;
}

.bg-services {
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(246, 246, 246, 1) 100%);
}

.bg-red {
    background: red;
}

.bg-orange {
    background: #ff6000;
}

.bg-white {
    background: #fff;
}

.bg-black {
    background: #000;
}

.text1 {
    font-size: 1rem;
}

.text2 {
    font-size: 2rem;
}

.text3 {
    font-size: 3rem;
}

.text4 {
    font-size: 4rem;
}

.text6 {
    font-size: 6rem;
}

.text12 {
    font-size: 12px;
}

.text13 {
    font-size: 13px !important;
}

.text14 {
    font-size: 14px !important;
}

.text16 {
    font-size: 16px !important;
}

.text18 {
    font-size: 18px !important;
}

.text22 {
    font-size: 22px;
}

.text24 {
    font-size: 24px;
}

.text26 {
    font-size: 26px;
}

.text28 {
    font-size: 28px;
}

.text32 {
    font-size: 32px;
}

.text100 {
    font-size: 100px;
}

.line-h38 {
    line-height: 38px;
}

.w-100 {
    width: 100% !important;
}

.w-80 {
    width: 80% !important;
}

.w-60 {
    width: 60% !important;
}

.w-50 {
    width: 50% !important;
}

.w-25 {
    width: 25% !important;
}

.w-min-50px {
    min-width: 50px !important;
}

.w-80px {
    width: 80px !important;
}

.w-120px {
    width: 120px !important;
}

.w-175px {
    width: 175px !important;
    line-height: 30px !important;
}

.w-222px {
    width: 222px !important;
    text-align: left;
}

.w-320px {
    width: 320px !important;
    height: 64px;
}

.w-400px {
    width: 400px !important;
}

.w-100-img img {
    width: 100% !important;
}

.h-100 {
    height: 100% !important;
}

.h-80 {
    height: 80% !important;
}

.h-75 {
    height: 75% !important;
}

.h-60 {
    height: 60% !important;
}

.h-50 {
    height: 50% !important;
}

.h-25 {
    height: 25% !important;
}

.h-45px {
    height: 45px !important;
}

.h-72px {
    height: 72px !important;
}

.h-120px {
    min-height: 120px !important;
}

.h-138px {
    min-height: 138px !important;
}

.h-170px {
    min-height: 170px !important;
}

.h-175px {
    min-height: 175px !important;
}

.h-195px {
    min-height: 195px;
}

.h-214px {
    min-height: 214px;
}

.h-240px {
    min-height: 240px !important;
}

.h-320px {
    min-height: 320px !important;
}

.h-400px {
    min-height: 400px !important;
}

.over-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.over-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.over-3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.over-4 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    height: 96px;
}

.over-5 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    height: 110px;
}

.over-6 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}

.number-items {
    counter-reset: num;
}

.number-items .number-list>li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.number-items .number-list>li:before {
    counter-increment: num;
    content: counter(num) ".";
    font-size: 20px;
    font-style: italic;
    color: #dd5500;
    font-weight: bolder;
    position: absolute;
    top: -4px;
    left: 0;
}

ul.circle {
    padding-left: 20px;
}

ul.circle>li {
    list-style-type: circle;
    margin-bottom: 10px;
}

ul.decimal {
    padding-left: 20px;
}

ul.decimal>li {
    list-style-type: decimal;
    margin-bottom: 10px;
}

ul.disc {
    padding-left: 20px;
}

ul.disc>li {
    list-style-type: disc;
    margin-bottom: 10px;
}

ul.disc>li a {
    display: block;
}

ul.disc>li a:hover {
    color: #dd5500;
    text-decoration-line: underline;
}

ul.cjk {
    padding-left: 20px;
}

ul.cjk>li {
    list-style-type: cjk-ideographic;
    margin-bottom: 10px;
}

.border-n {
    border: none !important;
}

.border-tb {
    border-bottom: 1px solid #000;
    border-top: 1px solid #000;
}

.border-t-g {
    border-top: 1px solid #ddd;
}

.border-r {
    border-right: 1px solid #ededed;
}

.border-b {
    border-bottom: 1px solid #ddd;
}

.border-b-g {
    border-bottom: 1px solid #ededed;
}

.border-b-2b {
    border-bottom: 2px solid #0f51a3;
}

.border-t-w {
    border-top: 1px solid #fff;
}

.border-md-r {
    border-bottom: 1px solid #000;
}

@media (min-width: 992px) {
    .border-md-r {
        border-right: 1px solid #000;
        border-bottom: none;
    }
}

.border-back {
    position: relative;
}

.border-back span {
    background: #fff;
    padding: 0 10px;
    font-size: inherit;
    font-weight: inherit;
}

.border-back:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #ddd;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
}

.underline {
    text-decoration: underline;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .btn-sm-flex {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media (min-width: 1200px) {
    .w-md-100 {
        width: 100% !important;
    }

    .w-md-80 {
        width: 80% !important;
    }

    .w-md-60 {
        width: 60% !important;
    }

    .w-md-50 {
        width: 50% !important;
    }

    .w-md-25 {
        width: 25% !important;
    }

    .w-md-80px {
        width: 80px !important;
    }

    .w-md-120px {
        width: 120px !important;
    }

    .w-md-175px {
        width: 175px !important;
        line-height: 40px !important;
    }

    .w-md-240px {
        width: 240px !important;
    }

    .w-md-320px {
        width: 320px !important;
        height: 64px;
    }

    .w-md-400px {
        width: 400px !important;
    }
}

@media (max-width: 768px) {
    .w-sm-100 {
        width: 100% !important;
    }

    .w-sm-88 {
        width: 88% !important;
    }

    .w-sm-80 {
        width: 80% !important;
    }

    .w-sm-60 {
        width: 60% !important;
    }

    .w-sm-50 {
        width: 50% !important;
    }

    .w-sm-25 {
        width: 25% !important;
    }

    .w-sm-80px {
        width: 80px !important;
    }

    .w-sm-120px {
        width: 120px !important;
    }

    .w-sm-175px {
        width: 175px !important;
        line-height: 40px !important;
    }

    .w-sm-240px {
        width: 240px !important;
    }

    .w-sm-320px {
        width: 320px !important;
        height: 64px;
    }

    .w-sm-400px {
        width: 400px !important;
    }
}

.first-megamenu li.single-megamenu>ul {
    padding-bottom: 25px;
}

.first-megamenu li.megamenu-img {
    -ms-flex-preferred-size: 40%;
    flex-basis: 40%;
}

.first-megamenu li.megamenu-img a {
    padding: 0;
}

.first-megamenu li.single-megamenu {
    -ms-flex-preferred-size: 30%;
    flex-basis: 30%;
}

.single-megamenu ul li a {
    color: #666;
    font-size: 14px;
    font-weight: 400;
    line-height: 30px;
    text-transform: capitalize;
}

.ht-dropdown .single-megamenu ul li a {
    padding: 0;
}

.ml-0 {
    margin-left: 0px;
}

.ml-10 {
    margin-left: 10px;
}

.ml-15 {
    margin-left: 15px;
}

.ml-20 {
    margin-left: 20px;
}

.ml-30 {
    margin-left: 30px;
}

.ml-40 {
    margin-left: 40px;
}

.ml-48 {
    margin-left: 48px;
}

.ml-50 {
    margin-left: 50px;
}

.ml-60 {
    margin-left: 60px;
}

.ml-70 {
    margin-left: 70px;
}

.ml-80 {
    margin-left: 80px;
}

.ml-90 {
    margin-left: 90px;
}

.ml-100 {
    margin-left: 100px;
}

/*------Margin right-------*/
.mr-0 {
    margin-right: 0px;
}

.mr-10 {
    margin-right: 10px;
}

.mr-15 {
    margin-right: 15px;
}

.mr-20 {
    margin-right: 20px;
}

.mr-30 {
    margin-right: 30px;
}

.mr-40 {
    margin-right: 40px;
}

.mr-50 {
    margin-right: 50px;
}

.mr-60 {
    margin-right: 60px;
}

.mr-70 {
    margin-right: 70px;
}

.mr-80 {
    margin-right: 80px;
}

.mr-90 {
    margin-right: 90px;
}

.mr-100 {
    margin-right: 100px;
}

/*------Margin Top-------*/
.mt-0 {
    margin-top: 0px;
}

.mt-7 {
    margin-top: 7px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-35 {
    margin-top: 35px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-45 {
    margin-top: 45px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-52 {
    margin-top: 52px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-70 {
    margin-top: 70px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-90 {
    margin-top: 90px;
}

.mt-100 {
    margin-top: 100px;
}

.mt-110 {
    margin-top: 110px;
}

.mt-180 {
    margin-top: 180px;
}

/*------Margin Bottom-------*/
.mb-0 {
    margin-bottom: 0px;
}

.mb-5 {
    margin-bottom: 5px;
}

.mb-7-5 {
    margin-bottom: 7.5px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-35 {
    margin-bottom: 35px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-58 {
    margin-bottom: 58px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-70 {
    margin-bottom: 70px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-83 {
    margin-bottom: 83px;
}

.mb-85 {
    margin-bottom: 85px;
}

.mb-90 {
    margin-bottom: 90px;
}

.mb-100 {
    margin-bottom: 100px;
}

.mtb-15 {
    margin-top: 15px;
    margin-bottom: 15px;
}

/*------Padding all-------*/
.p-60 {
    padding: 60px;
}

/*------Padding left-------*/
.pl-0,
.pl-10 {
    padding-left: 0px;
}

.pl-15 {
    padding-left: 15px;
}

.pl-20 {
    padding-left: 4px;
}

.pl-30 {
    padding-left: 30px;
}

.pl-40 {
    padding-left: 40px;
}

.pl-50 {
    padding-left: 50px;
}

.pl-60 {
    padding-left: 60px;
}

.pl-70 {
    padding-left: 70px;
}

.pl-80 {
    padding-left: 80px;
}

.pl-90 {
    padding-left: 90px;
}

.pl-100 {
    padding-left: 100px;
}

/*------Padding right-------*/
.pr-0 {
    padding-right: 0px;
}

.pr-10 {
    padding-right: 10px;
}

.pr-15 {
    padding-right: 15px;
}

.pr-20 {
    padding-right: 20px;
}

.pr-30 {
    padding-right: 30px;
}

.pr-40 {
    padding-right: 40px;
}

.pr-50 {
    padding-right: 50px;
}

.pr-60 {
    padding-right: 60px;
}

.pr-70 {
    padding-right: 70px;
}

.pr-80 {
    padding-right: 80px;
}

.pr-90 {
    padding-right: 90px;
}

.pr-100 {
    padding-right: 100px;
}

/*------Padding Left Right-------*/
.plr-0 {
    padding-left: 0px;
    padding-right: 0px;
}

.plr-15 {
    padding-left: 15px;
    padding-right: 15px;
}

.plr-25 {
    padding-left: 25px;
    padding-right: 25px;
}

.plr-35 {
    padding-left: 35px;
    padding-right: 35px;
}

.plr-40 {
    padding-left: 40px;
    padding-right: 40px;
}

.plr-45 {
    padding-left: 45px;
    padding-right: 45px;
}

.plr-50 {
    padding-left: 50px;
    padding-right: 50px;
}

.plr-80 {
    padding-left: 80px;
    padding-right: 80px;
}

.plr-100 {
    padding-left: 100px;
    padding-right: 100px;
}

/*------Padding Top-------*/
.pt-0 {
    padding-top: 0px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-15 {
    padding-top: 15px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-25 {
    padding-top: 25px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-45 {
    padding-top: 45px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-60 {
    padding-top: 60px;
}

.pt-70 {
    padding-top: 70px;
}

.pt-75 {
    padding-top: 75px;
}

.pt-80 {
    padding-top: 80px;
}

.pt-90 {
    padding-top: 90px;
}

.pt-94 {
    padding-top: 94px;
}

.pt-95 {
    padding-top: 95px;
}

.pt-100 {
    padding-top: 100px;
}

.pt-110 {
    padding-top: 110px;
}

.pt-140 {
    padding-top: 140px;
}

/*------Padding-------*/
.p-50 {
    padding: 50px;
}

.p-48 {
    padding: 48px;
}

.p-40 {
    padding: 40px;
}

.p-38 {
    padding: 38px;
}

/*------Padding Bottom-------*/
.pb-0 {
    padding-bottom: 0px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-15 {
    padding-bottom: 15px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-25 {
    padding-bottom: 25px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-45 {
    padding-bottom: 45px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-55 {
    padding-bottom: 55px;
}

.pb-58 {
    padding-bottom: 58px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pb-65 {
    padding-bottom: 65px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-75 {
    padding-bottom: 75px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-90 {
    padding-bottom: 90px;
}

.pb-95 {
    padding-bottom: 95px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pb-110 {
    padding-bottom: 110px;
}

.pb-120 {
    padding-bottom: 120px;
}

.pb-130 {
    padding-bottom: 130px;
}

.pb-140 {
    padding-bottom: 140px;
}

/*------Padding  Top Bottom-------*/
.ptb-0 {
    padding-top: 0px;
    padding-bottom: 0px;
}

.ptb-5 {
    padding-top: 5px;
    padding-bottom: 5px;
}

.ptb-10 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.ptb-11 {
    padding-top: 11px;
    padding-bottom: 11px;
}

.ptb-12 {
    padding-top: 12px;
    padding-bottom: 12px;
}

.ptb-15 {
    padding-top: 15px;
    padding-bottom: 15px;
}

.ptb-20 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.ptb-25 {
    padding-top: 25px;
    padding-bottom: 25px;
}

.ptb-30 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.ptb-40 {
    padding-top: 40px;
    padding-bottom: 40px;
}

.ptb-45 {
    padding-top: 45px;
    padding-bottom: 45px;
}

.ptb-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.ptb-55 {
    padding-top: 55px;
    padding-bottom: 55px;
}

.ptb-58 {
    padding-top: 58px;
    padding-bottom: 58px;
}

.ptb-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.ptb-70 {
    padding-top: 70px;
    padding-bottom: 70px;
}

.ptb-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.ptb-90 {
    padding-top: 90px;
    padding-bottom: 90px;
}

.ptb-92 {
    padding-top: 92px;
    padding-bottom: 92px;
}

.ptb-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.ptb-110 {
    padding-top: 110px;
    padding-bottom: 110px;
}

.ptb-118 {
    padding-top: 118px;
    padding-bottom: 118px;
}

.ptb-120 {
    padding-top: 120px;
    padding-bottom: 120px;
}

.ptb-130 {
    padding-top: 130px;
    padding-bottom: 130px;
}

.ptb-132 {
    padding-top: 132px;
    padding-bottom: 132px;
}

.ptb-140 {
    padding-top: 140px;
    padding-bottom: 140px;
}

.ptb-150 {
    padding-top: 150px;
    padding-bottom: 150px;
}

.ptb-160 {
    padding-top: 160px;
    padding-bottom: 160px;
}

.ptb-180 {
    padding-top: 180px;
    padding-bottom: 180px;
}

.ptb-200 {
    padding-top: 200px;
    padding-bottom: 200px;
}

.ptb-240 {
    padding-top: 240px;
    padding-bottom: 240px;
}

@media (min-width: 1200px) {
    .pr-lg-0 {
        padding-right: 0;
    }
}

@media (min-width: 768px) {
    .pr-lg-0 {
        padding-right: 0;
    }
}

.index-banner .index-banner-product {
    background: #fff;
}

.index-banner .index-banner-product a {
    display: inline-block;
}

.index-banner .index-banner-product a p {
    padding: 10px 10px 0 10px;
    font-size: 14px;
    line-height: 18px;
}

.index-banner .owl-nav div {
    background: #fff none repeat scroll 0 0;
    border-radius: 3px;
    font-size: 14px;
    height: 33px;
    line-height: 33px;
    opacity: 1;
    position: absolute;
    right: 45px;
    text-align: center;
    top: -39px;
    border: 1px solid #cbcbcb;
    transition: all 300ms ease-in 0s;
    width: 33px;
    -webkit-transition: all 300ms ease-in 0s;
    transition: all 300ms ease-in 0s;
    z-index: 55;
}

.index-banner .owl-nav div.owl-next {
    left: auto;
    right: 5px;
}

.index-banner .owl-nav div:hover {
    color: #E62E04;
    border-color: #e62e04;
}

.arrow-around .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
}

.arrow-around .owl-nav div {
    background: #cfcfcf none repeat scroll 0 0;
    border-radius: 100%;
    font-size: 14px;
    height: 33px;
    line-height: 33px;
    opacity: 1;
    position: absolute;
    right: 45px;
    text-align: center;
    border: none;
    top: -39px;
    transition: all 300ms ease-in 0s;
    width: 33px;
    -webkit-transition: all 300ms ease-in 0s;
    transition: all 300ms ease-in 0s;
    z-index: 55;
    opacity: 0.7;
}

.arrow-around .owl-nav div:hover {
    background: #000;
    color: #fff;
}

.arrow-around .owl-nav div.owl-prev {
    left: 0;
    right: inherit;
}

.arrow-around .owl-nav div.owl-prev .lnr-arrow-left {
    position: relative;
    left: -1px;
}

.arrow-around .owl-nav div.owl-prev .lnr-arrow-left:before {
    content: "\e875";
}

.arrow-around .owl-nav div.owl-next {
    right: 0;
    left: inherit;
}

.arrow-around .owl-nav div.owl-next .lnr-arrow-right {
    position: relative;
    left: 2px;
}

.arrow-around .owl-nav div.owl-next .lnr-arrow-right:before {
    content: "\e876";
}

.arrow-around2 .owl-nav {
    position: absolute;
    top: 60px;
    width: 100%;
}

.arrow-around2 .owl-nav div {
    background: #cfcfcf none repeat scroll 0 0;
    border-radius: 100%;
    font-size: 14px;
    height: 33px;
    line-height: 33px;
    opacity: 1;
    position: absolute;
    right: 45px;
    text-align: center;
    border: none;
    top: -39px;
    transition: all 300ms ease-in 0s;
    width: 33px;
    -webkit-transition: all 300ms ease-in 0s;
    transition: all 300ms ease-in 0s;
    z-index: 55;
    opacity: 0.7;
}

.arrow-around2 .owl-nav div:hover {
    background: #000;
    color: #fff;
}

.arrow-around2 .owl-nav div.owl-prev {
    left: -20px;
    right: inherit;
}

.arrow-around2 .owl-nav div.owl-prev .lnr-arrow-left {
    position: relative;
    left: -1px;
}

.arrow-around2 .owl-nav div.owl-prev .lnr-arrow-left:before {
    content: "\e875";
}

.arrow-around2 .owl-nav div.owl-next {
    right: -20px;
    left: inherit;
}

.arrow-around2 .owl-nav div.owl-next .lnr-arrow-right {
    position: relative;
    left: 2px;
}

.arrow-around2 .owl-nav div.owl-next .lnr-arrow-right:before {
    content: "\e876";
}

.hot-deal-active3 .owl-nav div {
    background: #fff none repeat scroll 0 0;
    border-radius: 3px;
    font-size: 14px;
    height: 33px;
    line-height: 33px;
    opacity: 1;
    position: absolute;
    right: 45px;
    text-align: center;
    top: -45px;
    border: none;
    transition: all 300ms ease-in 0s;
    width: 33px;
    -webkit-transition: all 300ms ease-in 0s;
    transition: all 300ms ease-in 0s;
    z-index: 55;
}

.hot-deal-active3 .owl-nav div.owl-next {
    left: auto;
    right: 5px;
}

.hot-deal-active3 .owl-nav div:hover {
    color: #E62E04;
    border-color: #e62e04;
}

.hot-deal-active3 .owl-nav div.owl-prev .lnr-arrow-left {
    position: relative;
    left: -1px;
}

.hot-deal-active3 .owl-nav div.owl-prev .lnr-arrow-left:before {
    content: "\e875";
}

.hot-deal-active3 .owl-nav div.owl-next .lnr-arrow-right {
    position: relative;
    left: 2px;
}

.hot-deal-active3 .owl-nav div.owl-next .lnr-arrow-right:before {
    content: "\e876";
}

.active-tab {
    padding: 20px 0 0 0;
}

.active-tab .active-tab-inner {
    padding: 0 20px;
    margin-bottom: 20px;
}

.active-tab .active-tab-inner:hover .active-tab-cssarrow,
.active-tab .active-tab-inner.active .active-tab-cssarrow {
    border: 5px solid #fff;
    background: #e62e04;
    outline: 1px solid #e62e04;
}

.active-tab .active-tab-inner:hover .active-tab-cssarrow:after,
.active-tab .active-tab-inner.active .active-tab-cssarrow:after {
    border-top-color: #e62e04;
}

.active-tab .active-tab-inner:hover .active-tab-cssarrow:before,
.active-tab .active-tab-inner.active .active-tab-cssarrow:before {
    border-top-color: #FFFFFF;
}

.active-tab .active-tab-inner:hover .active-tab-cssarrow a,
.active-tab .active-tab-inner.active .active-tab-cssarrow a {
    color: #fff;
}

.active-tab .active-tab-inner .active-tab-cssarrow {
    position: relative;
    background: #FFFFFF;
    border: 5px solid #e62e04;
}

.active-tab .active-tab-inner .active-tab-cssarrow:after,
.active-tab .active-tab-inner .active-tab-cssarrow:before {
    top: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.active-tab .active-tab-inner .active-tab-cssarrow:after {
    border-color: rgba(136, 183, 213, 0);
    border-top-color: #FFFFFF;
    border-width: 10px;
    margin-left: -10px;
}

.active-tab .active-tab-inner .active-tab-cssarrow:before {
    border-color: rgba(194, 225, 245, 0);
    border-top-color: #e62e04;
    border-width: 16px;
    margin-left: -16px;
}

.active-tab .active-tab-inner .active-tab-cssarrow a {
    display: block;
    color: #e62e04;
    width: 100%;
    height: 50px;
    font-size: 36px;
    line-height: 50px;
    text-align: center;
}

.hot-deal-products {
    background: #fff;
}

.hot-deal-products .nav-tabs .nav-item.show .nav-link,
.hot-deal-products .nav-tabs .nav-link.active {
    background: #fff;
}

.blog-area {
    background: #ddd;
}

.blog-area2 {
    background: #dd80a2;
}

@media (max-width: 768px) {
    .active-tab {
        padding: 15px 0 0 0;
    }

    .active-tab .active-tab-inner {
        padding: 0 20px;
        margin-bottom: 15px;
    }

    .active-tab .active-tab-inner:hover .active-tab-cssarrow,
    .active-tab .active-tab-inner.active .active-tab-cssarrow {
        border: 5px solid #fff;
        background: #e62e04;
        outline: 1px solid #e62e04;
    }

    .active-tab .active-tab-inner:hover .active-tab-cssarrow:after,
    .active-tab .active-tab-inner.active .active-tab-cssarrow:after {
        border-top-color: #e62e04;
    }

    .active-tab .active-tab-inner:hover .active-tab-cssarrow:before,
    .active-tab .active-tab-inner.active .active-tab-cssarrow:before {
        border-top-color: #FFFFFF;
    }

    .active-tab .active-tab-inner:hover .active-tab-cssarrow a,
    .active-tab .active-tab-inner.active .active-tab-cssarrow a {
        color: #fff;
    }

    .active-tab .active-tab-inner .active-tab-cssarrow {
        position: relative;
        background: #FFFFFF;
        border: 2px solid #e62e04;
    }

    .active-tab .active-tab-inner .active-tab-cssarrow:after,
    .active-tab .active-tab-inner .active-tab-cssarrow:before,
    .active-tab .active-tab-inner .active-tab-cssarrow:after,
    .active-tab .active-tab-inner .active-tab-cssarrow:before {
        content: none;
    }

    .active-tab .active-tab-inner .active-tab-cssarrow a {
        display: block;
        color: #e62e04;
        width: 100%;
        height: 30px;
        font-size: 18px;
        line-height: 30px;
        text-align: center;
    }

    .sticky .active-tab {
        padding: 55px 0 0 0;
        position: fixed;
        right: 0;
        width: 150px;
    }

    .sticky .active-tab .active-tab-inner {
        margin-bottom: 10px;
    }

    .sticky .active-tab .active-tab-inner:hover .active-tab-cssarrow,
    .sticky .active-tab .active-tab-inner.active .active-tab-cssarrow {
        border: 2px solid #fff;
        background: #e62e04;
        outline: none;
    }

    .sticky .active-tab .active-tab-inner:hover .active-tab-cssarrow:after,
    .sticky .active-tab .active-tab-inner.active .active-tab-cssarrow:after {
        border-top-color: #e62e04;
    }

    .sticky .active-tab .active-tab-inner:hover .active-tab-cssarrow:before,
    .sticky .active-tab .active-tab-inner.active .active-tab-cssarrow:before {
        border-top-color: #FFFFFF;
    }

    .sticky .active-tab .active-tab-inner:hover .active-tab-cssarrow a,
    .sticky .active-tab .active-tab-inner.active .active-tab-cssarrow a {
        color: #fff;
    }

    .sticky .active-tab .active-tab-inner .active-tab-cssarrow {
        position: relative;
        background: #FFFFFF;
        border: 2px solid #e62e04;
    }

    .sticky .active-tab .active-tab-inner .active-tab-cssarrow:after,
    .sticky .active-tab .active-tab-inner .active-tab-cssarrow:before,
    .sticky .active-tab .active-tab-inner .active-tab-cssarrow:after,
    .sticky .active-tab .active-tab-inner .active-tab-cssarrow:before {
        content: none;
    }

    .sticky .active-tab .active-tab-inner .active-tab-cssarrow a {
        display: block;
        color: #e62e04;
        width: 100%;
        height: 30px;
        font-size: 18px;
        line-height: 30px;
        text-align: center;
    }
}

.header-top>ul>li:hover ul.ht-dropdown,
.cart-box ul li:hover ul.ht-dropdown {
    opacity: 1;
    visibility: visible;
    -webkiit-transform: scaleY(1);
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

.vertical-menu-list>li:hover>ul.ht-dropdown,
.vertical-menu-list ul.ht-dropdown.mega-child li:hover ul.ht-dropdown {
    opacity: 1;
    visibility: visible;
    -webkiit-transform: scaleY(1);
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

.header-bottom-list li:hover>ul.ht-dropdown {
    opacity: 1;
    visibility: visible;
    -webkiit-transform: scaleY(1);
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

/*.header-bottom.header-sticky {
  border-bottom: 1px solid #ebebeb;
  border-top: 1px solid #ebebeb; }*/
.pro-content {
    min-height: 60px;
    overflow: hidden;
    padding: 10px 15px;
    position: relative;
}

.pro-content h4 a {
    color: #363636;
    display: block;
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    margin-bottom: 9px;
    padding: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.pro-content h4 a:hover {
    color: #E62E04;
}

.pro-content .product-rating {
    margin-bottom: 13px;
}

.grid-list-view .tabs-area {
    border-bottom: none;
}

.grid-list-view .tabs-area li a {
    color: #2c2c2c;
    font-size: 24px;
    display: inline-block;
    padding: 0 15px;
    text-align: center;
    height: 30px;
    line-height: 1.2;
    position: relative;
}

.grid-list-view .tabs-area li a.active:before {
    content: "";
    display: inline-block;
    width: 100%;
    height: 2px;
    background: #0f51a3;
    position: absolute;
    bottom: -10px;
    left: 0;
}

.grid-list-view .tabs-area>li {
    margin-left: 0;
    margin-right: 10px;
}

.grid-list-view .tabs-area02 {
    border-bottom: none;
}

.grid-list-view .tabs-area02 li {
    position: relative;
}

.grid-list-view .tabs-area02 li.bg01 {
    background: #f6bc1a;
}

.grid-list-view .tabs-area02 li.bg02 {
    background: #28b255;
}

.grid-list-view .tabs-area02 li.bg03 {
    background: #ddb089;
}

.grid-list-view .tabs-area02 li.bg04 {
    background: #889093;
}

.grid-list-view .tabs-area02 li:first-child {
    color: #fff;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    padding: 5px 25px;
}

.grid-list-view .tabs-area02 li:last-child:before {
    display: none;
}

.grid-list-view .tabs-area02 li:before {
    content: "/";
    display: inline-block;
    position: absolute;
    right: -10px;
    top: -1px;
}

.grid-list-view .tabs-area02 li a {
    color: #2c2c2c;
    font-size: 16px;
    display: inline-block;
    padding: 0 15px;
    text-align: center;
    height: 30px;
    line-height: 1.2;
    position: relative;
}

.grid-list-view .tabs-area02 li a.active:after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 2px;
    background: #0f51a3;
    position: absolute;
    bottom: -1px;
    left: 0;
}

.grid-list-view .tabs-area02>li {
    margin-left: 0;
    margin-right: 10px;
}

.single-product {
    background: transparent none repeat scroll 0 0;
    position: relative;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
    margin: 10px 0;
    padding: 15px;
}

.single-product:hover {
    -webkit-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.single-product:hover .pro-actions,
.single-product:hover .actions-secondary a {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.single-product:hover .pro-info {
    opacity: 0;
}

.single-product:hover .quick_view {
    opacity: 1;
}

.single-product .pro-info {
    -webkit-transition: all 300ms ease-in 0s;
    transition: all 300ms ease-in 0s;
}

.single-product02 {
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    min-height: 325px;
    border-right: 1px solid #ddd;
    border-left: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 10px;
}

.double-product .single-product {
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.double-product .single-product:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.grid-list-top .tabs-area>li span,
.toolbar-sorter label {
    color: #3e3e3e;
    font-size: 13px;
}

.member-list ul {
    margin: 0;
    padding: 0;
}

.member-list ul:after {
    content: "";
    display: block;
    clear: both;
}

.member-list ul li {
    float: left;
    padding-left: 20px;
}

.member-list ul li .nav_item .cart span {
    padding-top: 20px;
}

.member-list ul li .nav_item a {
    font-size: 18px;
    display: inline-block;
}

.member-list ul li .nav_item i {
    font-size: 42px;
    display: inline-block;
}

.member-list ul li .nav_item span {
    display: inline-block;
}

.mark {
    width: 40px;
    height: 40px;
    line-height: 32px;
    border-radius: 20px;
    text-align: center;
    color: #fff;
    position: absolute;
}

.mark:nth-child(2) {
    top: 5px;
    right: 5px;
}

.mark:nth-child(3) {
    top: 36px;
    right: 5px;
}

.mark:nth-child(4) {
    top: 67px;
    right: 5px;
}

.mark.car-mark,
.mark.new-mark,
.mark.hot-mark {
    background: #e76667;
}

.section-ttitle {
    width: 100%;
}

.section-ttitle h2 {
    width: 49%;
    display: inline-block;
}

.section-ttitle h2.has-icon {
    padding-left: 85px;
    position: relative;
}

.section-ttitle h2.has-icon:before {
    content: "";
    position: absolute;
    display: inline-block;
    background: url(../img/new-icon.png);
    width: 73px;
    height: 73px;
    top: -22px;
    left: 0;
}

.section-ttitle a {
    width: 50%;
    font-size: 18px;
    font-weight: bold;
    text-align: right;
    color: #969696;
    display: inline-block;
}

.section-ttitle a:hover {
    color: #000;
    text-decoration: underline;
}

#list-view .pro-content {
    border: none;
}

.well {
    background-color: #fff;
    padding: 20px 0;
}

.well.h407 {
    min-height: 407px;
}

.well h5 {
    color: #0f51a3;
}

.well a.google {
    color: #eb5b4c;
}

.well a.google:hover {
    color: #de3220;
}

.well .new-customer {
    line-height: 473px;
}

.well .new-customer img {
    width: 100%;
}

.qa_icon .qa_content_wrap {
    width: 100%;
    position: relative;
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid #0f51a3;
}

.qa_icon .qa_content_wrap.opened .fa-plus:before {
    content: "\f068";
}

.qa_icon .qa_content_wrap:before {
    content: "";
    display: inline-block;
    background: url(../img/more_light_r.png);
    width: 25px;
    height: 25px;
    right: 12px;
    top: 12px;
    position: absolute;
    pointer-events: none;
    background-size: 100% 100%;
    background-position: center;
}

.qa_icon .qa_content_wrap .qa_q {
    width: 100%;
    padding: 15px 15px 15px 50px;
    color: #008bc9;
    display: block;
    cursor: pointer;
    position: relative;
}

.qa_icon .qa_content_wrap .qa_q:before {
    content: "";
    position: absolute;
    display: block;
    background: url(../img/Q.png);
    width: 37px;
    height: 39px;
    top: 8px;
    left: 0;
}

.qa_icon .qa_content_wrap .qa_q .fa {
    width: 26px;
    height: 26px;
    line-height: 26px;
    text-align: center;
    border-radius: 35px;
    background: #ffffff;
    color: #008bc9;
    position: absolute;
    right: 2%;
    top: 13px;
    font-size: 18px;
    border: 1px solid;
}

.qa_icon .qa_content_wrap .qa_q_on {
    text-decoration: underline;
    cursor: pointer;
}

.qa_icon .qa_content_wrap .qa_content {
    padding: 15px 15px 15px 50px;
    display: none;
    position: relative;
}

.qa_icon .qa_content_wrap .qa_content:before {
    content: "";
    position: absolute;
    display: block;
    background: url(../img/A.png);
    width: 37px;
    height: 39px;
    top: 8px;
    left: 0;
}

.qa_icon p {
    line-height: 34px;
}

.shop-cart-qa .qa_content_wrap {
    width: 100%;
    position: relative;
    margin-bottom: 0.5rem;
    background: #ffe493;
}

.shop-cart-qa .qa_content_wrap.opened .fa-plus:before {
    content: "\f068";
}

.shop-cart-qa .qa_content_wrap:before {
    content: "";
    display: inline-block;
    background: url(../img/more_light_r.png);
    width: 25px;
    height: 25px;
    right: 12px;
    top: 12px;
    position: absolute;
    pointer-events: none;
    background-size: 100% 100%;
    background-position: center;
}

.shop-cart-qa .qa_content_wrap .qa_q {
    width: 100%;
    padding: 15px;
    color: #000;
    display: block;
    cursor: pointer;
    position: relative;
}

.shop-cart-qa .qa_content_wrap .qa_q .fa {
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    color: #000;
    position: absolute;
    right: 2%;
    top: 18px;
    font-size: 12px;
    border: 1px solid #000;
}

.shop-cart-qa .qa_content_wrap .qa_q_on {
    text-decoration: underline;
    cursor: pointer;
}

.shop-cart-qa .qa_content_wrap .qa_content {
    padding: 15px;
    display: none;
}

.shop-cart-qa p {
    line-height: 34px;
}

.left-sidebar .pro-img {
    display: block;
    padding: 7.5px;
    margin-top: 3px;
}

.left-sidebar .pro-img .secondary-img {
    padding: 7.5px;
}

.left-sidebar .pro-content {
    border: none;
    padding: 20px 5px;
}

.left-sidebar .owl-nav div {
    top: -45px;
}

.pro-ref {
    border: 2px solid #f19ec2;
}

.pro-ref p {
    padding: 5px 10px;
}

.profile_file {
    background: #00b856 none repeat scroll 0 0;
    border: medium none;
    display: inline-block;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 20px;
    text-align: center;
    text-transform: uppercase;
    -webkit-transition: all 300ms ease-in 0s;
    transition: all 300ms ease-in 0s;
    cursor: pointer;
    border-radius: 4px;
}

.profile_file p {
    color: #ffffff;
}

.profile_file:hover {
    background: #014c24;
}

#profile_file_label {
    display: none;
}

.shop-cart {
    background-color: #fff;
    border-radius: 5px;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.shop-cart h4 {
    padding-left: 15px;
    color: #fff;
    line-height: 45px;
    background: #f50;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=2, Direction=135, Color=#000000)";
    /*IE 8*/
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.6);
    /* FF3.5+, Opera 9+, Saf1+, Chrome, IE10 */
    filter: progid:DXImageTransform.Microsoft.Shadow(Strength=2, Direction=135, Color=#000000);
    /*IE 5.5-7*/
}

.shop-cart .form-register {
    padding: 0 15px;
}

.joinus {
    background: #fff;
    padding: 20px 15px;
}

.joinus h4 {
    color: #ff5800;
}

.joinus .photo-inner {
    border: 1px solid #efefef;
    padding: 20px;
}

.joinus .photo-inner .photo {
    position: relative;
    background: url(../img/user_male2-512.png);
    display: block;
    width: 100%;
    padding-top: 90%;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.joinus .photo-inner .photo .change-photo-file {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.joinus .photo-inner .photo .change-photo-file p {
    background: #fff;
    border: 1px solid #efefef;
    border-radius: 4px;
}

.joinus .photo-inner .photo #change-photo-label {
    display: none;
}

.map {
    background: #fff;
    padding: 20px 80px;
}

.map h5 {
    color: #333;
}

.map ul {
    list-style-type: disc;
    color: #666;
    padding: 20px;
}

.map ul li {
    padding: 5px 0;
}

.map ul li:hover {
    color: #007bff;
}

.map ul li a {
    color: #666;
}

.map ul li a:hover {
    color: #007bff;
}

.mobile-menu .mobile-logo {
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    top: 25px;
    text-align: center;
}

.mobile-menu .mobile-logo img {
    width: 55%;
}

.mobile-menu .mobile-search {
    position: absolute;
    right: 15px;
    top: 13px;
    font-size: 22px;
}

.mobile-menu .search-form {
    display: none;
    overflow: hidden;
    position: absolute;
    right: 5px;
    top: 65px;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    -webkit-transition-property: height;
    transition-property: height;
    height: 0;
    z-index: 9999;
}

.mobile-menu .search-form.open {
    display: block;
    position: absolute;
    height: 50px;
}

.mobile-menu02 {
    background: #fff;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.mobile-menu02 ul:after {
    content: "";
    display: block;
    clear: both;
}

.mobile-menu02 ul li {
    width: 33.333%;
    float: left;
    text-align: center;
    margin: 10px 0;
}

.mobile-menu02 ul li a {
    display: inline-block;
    text-align: center;
    width: 100%;
    color: #333;
    font-size: 14px;
}

.right-sidebar {
    position: fixed;
    right: 22px;
    bottom: 137px;
    z-index: 999;
}

.hot-deal-active3 .well {
    padding: 0px 25px;
}

.hot-deal-active3 .well>div {
    margin-top: 15px;
}

.hot-deal-active3 .well>div:first-child {
    border-bottom: 1px solid #ececec;
}

/*----------------------------------------*/
/*Breadcrumb CSS
/*----------------------------------------*/
.breadcrumb-area {
    background: #eaf9ff;
}

.breadcrumb-area .breadcrumb {
    background: #eaf9ff;
    margin-bottom: 0;
    padding: 10px 10px;
}

.breadcrumb-area .breadcrumb li+li::before {
    content: "/";
    padding: 0 5px;
    vertical-align: middle;
    position: absolute;
    top: -1px;
}

.breadcrumb-area .breadcrumb li.active a,
.breadcrumb-area .breadcrumb li:hover a {
    color: #000;
}

.breadcrumb-area .breadcrumb li a {
    color: #666;
    font-size: 14px;
    line-height: 25px;
    margin-right: 5px;
    text-transform: capitalize;
}

/*----------------------------------------*/
/*news-list CSS
/*----------------------------------------*/
.news-list {
    counter-reset: number;
}

.news-list li {
    position: relative;
}

.news-list li a {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.5rem;
    padding-left: 40px;
    height: 46px;
}

.news-list li:before {
    font-size: 18px;
    content: counter(number, decimal-leading-zero);
    counter-increment: number;
    position: absolute;
    top: 50%;
    color: #fff;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 3px;
    background: #aecef5;
    width: 30px;
    height: 30px;
    text-align: center;
    border-radius: 3px;
    line-height: 30px;
}

.news-list .news-title {
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.5rem;
    padding-left: 40px;
    height: 46px;
}

.news-list .news-title:before {
    font-size: 18px;
    content: counter(number, decimal-leading-zero);
    counter-increment: number;
    position: absolute;
    top: 50%;
    color: #fff;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 3px;
    background: #aecef5;
    width: 30px;
    height: 30px;
    text-align: center;
    border-radius: 3px;
    line-height: 30px;
}

/*----------------------------------------*/
/*pagination CSS
/*----------------------------------------*/
.pagination ul {
    font-size: 50px;
}

.pagination li {
    display: inline-block;
    margin-right: 1px;
    letter-spacing: normal;
}

.pagination li a {
    background: #ffffff none repeat scroll 0 0;
    border: 1px solid #e7e7e7;
    display: block;
    font-size: 14px;
    height: 38px;
    line-height: 30px;
    text-align: center;
    width: 38px;
    color: #444;
    padding: 3px;
}

.pagination li a:hover {
    background: #0f51a3 none repeat scroll 0 0;
    color: #ffffff;
}

.pagination li.active a {
    background: #0f51a3 none repeat scroll 0 0;
    color: #ffffff;
}

.pro-pagination {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 20px 0;
}

.pro-pagination .product-pagination {
    font-size: 16px;
}

.pro-pagination .product-pagination .grid-item-list {
    padding-right: 10px;
    display: inline-block;
    vertical-align: middle;
}

.pro-pagination .product-pagination .country-select {
    display: inline-block;
    vertical-align: middle;
}

@media (max-width: 540px) {
    .pro-pagination {
        -webkit-box-align: initial;
        -ms-flex-align: initial;
        align-items: initial;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .pro-pagination .product-pagination {
        margin-bottom: 15px;
    }
}

/*----------------------------------------*/
/*running CSS
/*----------------------------------------*/
.running {
    margin: 10px 0;
    font-size: 16px;
    line-height: 40px;
    height: 40px;
    font-weight: bold;
    background: #76be52;
}

/*----------------------------------------*/
/*table-div CSS
/*----------------------------------------*/
.table-content table {
    background: #ffffff none repeat scroll 0 0;
    text-align: center;
    width: 100%;
}

.table-content table td {
    border-top: medium none;
    padding: 20px 10px;
    vertical-align: middle;
    font-size: 16px;
}

.table-content table td.product-subtotal {
    font-size: 16px;
    font-weight: 600;
    width: 120px;
}

.table-content table th {
    background: #f0f0f0;
}

.table-content table thead th,
.table-content table tbody td {
    border-bottom: 1px solid #e5e5e5;
}

.table-content>table {
    background: #ffffff none repeat scroll 0 0;
    border-color: #ffffff;
    border-radius: 0;
    border-style: solid;
    border-width: 1px 0 0 1px;
    text-align: center;
    width: 100%;
}

.table-content>table th {
    border-top: medium none;
    font-weight: 500;
    padding: 20px 10px;
    text-align: center;
    text-transform: capitalize;
    vertical-align: middle;
    white-space: nowrap;
    font-size: 15px;
}

.table-content.pic-table th:first-child {
    padding: 0 20px 22px 10px;
}

.table-content.pic-table td:nth-child(1) {
    padding: 0 10px 22px 0px;
}

.table-content.pic-table td:nth-child(2) {
    padding: 10px;
}

.table-content.pic-table td:nth-child(2) img {
    width: 100px;
    height: 100px;
}

.table-content .add-icon {
    font-size: 22px;
    padding-right: 10px;
    cursor: pointer;
    position: relative;
    top: 4px;
}

.table-content .div-table {
    margin: 0;
    padding: 0;
}

.table-content .div-table td {
    padding: 0;
    border-right: 0;
}

.table-content .div-table table tr:last-child td {
    border-bottom: none;
}

.table-content .div-table table .div-tr .table-inner {
    line-height: 61px;
    height: 61px;
    float: left;
}

.table-content .div-table table .div-tr .table-inner:nth-child(1) {
    width: 71.6%;
}

.table-content .div-table table .div-tr .table-inner:nth-child(2) {
    width: 14.9%;
}

.table-content .div-table table .div-tr .table-inner:nth-child(3) {
    width: 13.5%;
}

.table-content .div-table table .div-tr .table-inner:nth-child(2),
.table-content .div-table table .div-tr .table-inner:nth-child(3) {
    /* border-left: 1px solid #e5e5e5;*/
}

.table-content .div-table table .div-tr .table-inner:after {
    content: "";
    display: block;
    clear: both;
}

.table-content .coupon-content {
    /*border: 1px solid #e5e5e5;*/
    margin-bottom: 20px;
    padding: 20px;
    display: none;
}

.table-content .coupon-content.active {
    height: auto;
    display: table-row;
}

/*----------------------------------------*/
/*qty CSS
/*----------------------------------------*/
.qty>* {
    border: 1px solid #eaeaea;
    float: left;
    height: 38px;
    text-align: center;
    background: #fff;
}

.qty>*:first-child {
    border-radius: 3px 0 0 3px;
}

.qty>*:last-child {
    border-radius: 0 3px 3px 0;
}

.qty>input[type=text] {
    width: calc(100% - 56px);
    border-left: none;
    border-right: none;
    padding-left: 5px;
    padding-right: 5px;
    border-radius: 0px;
}

.qty button {
    width: 28px;
    padding: 0;
    color: inherit;
}

/*----------------------------------------*/
/*thumbnails CSS
/*----------------------------------------*/
.single_product .image_preview_container {
    width: 100%;
    margin-bottom: 30px;
}

.single_product .image_preview_container img {
    width: 100%;
}

.single_product .product_preview a {
    border: 1px solid #ddd;
    border-radius: 5px;
    display: block;
    padding: 2px;
}

.single_product .product_preview a.active {
    border: 1px solid #f00;
}

@media (min-width: 1200px) {
    .fast-link {
        width: 900px;
        margin: 0 auto;
    }

    .row75 .row {
        margin: 0;
    }

    .row75 .row [class*=col-] {
        padding-right: 7.5px;
        padding-left: 7.5px;
    }

    .row75 .row [class*=col-] a img {
        width: 100%;
    }

    .row325 .row {
        margin: -3.25px;
    }

    .row325 .row [class*=col-] {
        padding-right: 3.25px;
        padding-left: 3.25px;
        margin: 3.25px 0;
    }

    .row325 .row [class*=col-] a img {
        width: 100%;
    }

    .row.productlist>div {
        padding-right: 7.5px !important;
        padding-left: 7.5px !important;
    }

    .lg-pl-0 {
        padding-left: 0 !important;
    }

    .lg-pr-0 {
        padding-right: 0 !important;
    }

    .text-lg-right {
        text-align: right;
    }

    .float-r-lg {
        float: right;
    }
}

@media (max-width: 768px) {
    .sm-pl-40 {
        padding-left: 40px;
    }

    .grid-list-view .tabs-area {
        overflow-x: auto;
        width: 100%;
    }

    .grid-list-view .tabs-area li {
        white-space: nowrap;
    }

    .grid-list-view .tabs-area li a.active {
        background: #0f51a3;
        color: #fff;
    }

    .grid-list-view .tabs-area li a.active:before {
        display: none;
    }

    .row325 .row .col-6 {
        margin-bottom: 15px;
    }
}

.wrapCarouselFull {
    display: block;
    position: relative;
    margin: 0 auto;
    max-width: 640px;
    padding: 20px;
    background: #fff;
}

.wrapCarouselThumbs {
    display: block;
    position: relative;
    margin: 0 auto;
    max-width: 640px;
    padding: 20px;
    margin-top: 20px;
    background: #fff;
}

.none-enter {
    cursor: pointer;
    display: inline-block;
    /* padding-bottom: 10px; */
    /* padding-left: 10px; */
    /* padding-top: 10px; */
    position: relative;
}

.road-area {
    border-top: solid 1px #ddd;
    border-bottom: solid 1px #ddd;
}

.road {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
}

.road ul>li {
    cursor: pointer;
    display: inline-block;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-top: 10px;
    position: relative;
}

.road ul>li>a {
    color: #ffffff;
    font-size: 14px;
}

.road ul>li span {
    color: #ffffff;
    font-size: 14px;
}

.road ul>li span:hover {
    color: #3c98e7;
}

.road ul>li>a:hover {
    color: #3c98e7;
}

.road ul li a img {
    margin-right: 5px;
}

.road ul li a i {
    font-size: 14px;
    margin-left: 5px;
}

.road ul span {
    color: #a5d6f7;
    font-size: 13px;
}

.road ul.ht-dropdown {
    left: auto;
    right: 0px;
}

.funtion-box {
    border-left: 1.5px solid rgba(0, 0, 0, 0.1);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
}

.funtion-box ul>li {
    cursor: pointer;
    display: inline-block;
    position: relative;
}

.funtion-box ul>li>a,
.funtion-box ul>li span {
    color: #666666;
    font-size: 12px;
}

.funtion-box span:hover {
    background-color: #0f51a3;
}

.funtion-box ul li a img {
    margin-right: 5px;
}

.funtion-box ul li a i {
    font-size: 17px;
    margin-left: 5px;
}

.funtion-box ul span {
    color: #a5d6f7;
    font-size: 15px;
    width: 18px;
    height: 18px;
    /* box-shadow: 0px 0px 3px 0px rgba(0,0,0,.5); */
    position: absolute;
    top: 13px;
    right: 5px;
    font-weight: 700;
    line-height: 19px;
    text-align: center;
    vertical-align: middle;
    color: #fff;
}

.funtion-box ul.ht-dropdown {
    left: auto;
    right: 0px;
}

.menu_padding-1 {
    margin: 0px 15px 0px 0px;
}

.login_windows {
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    padding: 0px 30px 0px 30px;
}

.dash01 {
    border-bottom: 1.5px solid rgba(0, 0, 0, 0.1);
    -ms-flex-pack: justify;
    justify-content: space-between;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    display: -webkit-box;
}

.dash02 {
    -ms-flex-pack: justify;
    justify-content: space-between;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    display: -webkit-box;
}

.re-code {
    font-size: 12px;
    color: #3c1a6d !important;
}

a.re-code:hover {
    text-decoration: underline;
}

.login_button {
    -ms-flex-pack: justify;
    justify-content: space-between;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    border-radius: 2px;
    background-color: #e76667;
    width: 60%;
    padding: 5px 50px 5px 50px;
    border-radius: 1px;
}

.login_bt-font {
    color: #ffffff;
}

.login_bt-font a:hover {
    color: #999999;
}

.dash03 {
    border-left: 1px solid white;
}

.p-danger {
    color: #ff0000;
}

.p-content,
.code-font02 {
    color: #777777;
}

.top-line {
    margin-top: 25px;
}

.wishlist_products_counter_number {
    color: #a5d6f7;
    font-size: 13px;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    /* box-shadow: 0px 0px 3px 0px rgba(0,0,0,.5); */
    position: absolute;
    top: 13px;
    right: 5px;
    font-weight: 700;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
    vertical-align: middle;
    color: #fff;
    background-color: #e76667;
}

.angle-text {
    font-size: 16px;
}

.angle-long {
    width: 55px !important;
}

.icon-background {
    width: 15px;
    height: 15px;
    background-color: #666666;
}

.plus-icon {
    color: #878787;
}

.footer-sticky-color {
    color: #999999;
}

.single-product09 {
    background: transparent none repeat scroll 0 0;
    position: relative;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
    margin: 10px 0;
    padding: 10px;
}

.single-product09:hover {
    -webkit-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.single-product09:hover .pro-actions,
.single-product09:hover .actions-secondary a {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.single-product09:hover .pro-info {
    opacity: 0;
}

.single-product09:hover .quick_view {
    opacity: 1;
}

.single-product09 .pro-info {
    -webkit-transition: all 300ms ease-in 0s;
    transition: all 300ms ease-in 0s;
}

@media only screen and (max-width: 992px) {
    .single-product09 {
        width: 50%;
    }
}

.mat-3 {
    margin-top: 3px;
}

.no-padding {
    margin-right: 0px;
    margin-left: 0px;
    padding-right: 0px;
    padding-left: 0px;
}

.one-line {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.two-line {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
}

@media screen and (min-width: 991px) {
    .x-pc {
        display: block !important;
    }

    .x-mobile {
        display: none !important;
    }
}

@media screen and (max-width: 992px) {
    .x-pc {
        display: none !important;
    }

    .x-mobile {
        display: block !important;
    }
}

label.error {
    color: red;
}

.breadcrumb-area {
    background: #fff;
    border-top: solid 1px #ddd;
    border-bottom: solid 1px #ddd;
}

.breadcrumb-area .breadcrumb {
    background: #fff;
}

.add-follow.MyFollow,
.del-follow {
    color: #e62e04;
}

.nice-select .list {
    max-height: 300px;
    overflow-y: auto;
}

.cart-tips-list {
    padding: 20px 30px;
    background: #f7f7f7;
    margin-bottom: 50px;
}

.cart-title-tabs .nav-tabs .nav-link {
    color: #000;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    padding: 10px 15px;
    margin: 0 5px;
    border: none;
}

.cart-title-tabs .nav-tabs .nav-link:hover,
.cart-title-tabs .nav-tabs .nav-link.active {
    color: #000;
}

.cart-list {
    border: 1px solid #ddd;
    margin-bottom: 30px;
}

.cart-list .form-group {
    margin-bottom: 0.5rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.cart-list .img-wrap {
    border: 1px solid #000;
}

.cart-list ul li {
    margin-bottom: 0.25rem;
    font-size: 13px;
    line-height: 18px;
}

.cart-list label {
    font-size: 13px;
    margin: 0;
}

.cart-list p {
    font-size: 13px;
    margin-bottom: 0.25rem;
}

.cart-list [class^=col] {
    font-size: 14px;
    line-height: 14px;
}

.cart-list .label-tips {
    padding: 0.25rem 0.5rem;
    font-size: 13px;
    font-weight: bold;
    color: #fff;
    border-radius: 10px;
    display: inline-block;
    cursor: pointer;
}

.cart-list .cart-title {
    padding: 15px;
}

.cart-list .cart-item01+.cart-item01,
.cart-list .cart-item01+.cart-item05,
.cart-list .cart-item01+.cart-item02,
.cart-list .cart-item05+.cart-item02 {
    border-top: 1px solid #ddd;
}

.cart-list .cart-item01,
.cart-list .cart-item02,
.cart-list .cart-item03,
.cart-list .cart-item04,
.cart-list .cart-item05 {
    padding: 15px;
}

.cart-list .ohter-title {
    font-size: 16px;
    color: red;
    margin-bottom: 15px;
    padding-bottom: 5px;
}

.cart-list .ohter-add-title {
    font-size: 16px;
    color: red;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 1px solid red;
}

.cart-list .ohter-add-title-btn {
    font-size: 16px;
    color: red;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 1px solid red;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.cart-list02 {
    margin-bottom: 30px;
}

.cart-list02 .list02-ohter-add-title {
    font-size: 16px;
    color: red;
    border-bottom: 1px solid ddd;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 10px;
    position: relative;
}

.cart-list02 .list02-ohter-add-title div:first-child {
    padding: 10px 20px;
}

.cart-list02 .list02-ohter-add-title .cart-add-detail {
    position: absolute;
    top: 5px;
    right: 45px;
    z-index: 9;
}

.cart-list02 .list02-ohter-add-title .m-add-detail:before {
    position: absolute;
    content: "\f068";
    color: #333;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    top: 15px;
    right: 15px;
}

.cart-list02 .list02-ohter-add-title .m-add-detail.collapsed:before {
    content: "\f067";
}

.cart-list02 .list02-cart-item {
    padding: 15px;
    border: 1px solid #ddd;
}

.cart-end {
    background: #f7f7f7;
    padding: 15px;
    margin-bottom: 30px;
}

.cart-end [class^=col] {
    font-size: 14px;
    line-height: 14px;
}

.user-detail {
    border: 1px solid #ddd;
    margin-bottom: 30px;
}

.user-detail .user-detail-list {
    padding: 5px;
}

.user-detail .user-detail-list .user-detail-title {
    padding: 15px;
    background: #e4e4e4;
    margin-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.user-detail .user-detail-list .user-detail-content {
    padding: 15px;
}

.user-detail .user-detail-list .user-detail-content .nav-tabs .nav-link {
    padding: 10px 15px;
    border: none;
}

.user-detail .user-detail-list .user-detail-content .nav-tabs .nav-link:hover,
.user-detail .user-detail-list .user-detail-content .nav-tabs .nav-link.active {
    background: #f7f7f7;
}

.user-detail .user-detail-list .user-detail-content .tab-pane {
    background: #f7f7f7;
    padding: 15px;
}

.user-detail .user-detail-list .user-detail-content .tab-pane .check-item li {
    padding: 10px 15px 10px 0;
}

.user-detail .user-detail-list .user-detail-content .tab-pane .invoice-title {
    background: #ccc;
    padding: 15px;
}

.user-detail .user-detail-list .user-detail-content .tab-pane .invoice-content {
    border: 1px solid #ccc;
    padding: 15px;
}

.user-detail .user-detail-list .user-detail-content .tab-pane .invoice-content .nav-link:hover,
.user-detail .user-detail-list .user-detail-content .tab-pane .invoice-content .nav-link.active {
    color: #fff;
    background-color: #117a8b;
    border-color: #10707f;
    border-radius: 0.25rem !important;
}

.user-detail .card-check {
    background: #f7f7f7;
    padding: 10px;
}

.user-detail .card-check .form-check-input {
    top: 22px;
    left: 22px;
    margin: 0;
}

.customer-btn,
.return-custom-btn {
    background: #e62e04 none repeat scroll 0 0;
    border: medium none;
    color: #ffffff;
    display: inline-block;
    font-weight: 500;
    font-size: 16px;
    margin-top: 20px;
    padding: 10px 30px;
    text-align: center;
    text-transform: uppercase;
    -webkit-transition: all 300ms ease-in 0s;
    transition: all 300ms ease-in 0s;
    cursor: pointer;
    border-radius: 4px;
}

.btn-custom {
    background: #eee;
    color: #000;
    opacity: 0.8;
}

.btn-custom:hover {
    opacity: 1;
}

.btn-custom-b {
    background: #666;
    color: #fff;
    opacity: 0.8;
}

.btn-custom-b:hover {
    opacity: 1;
}

.btn-custom01 {
    background: #0f51a3;
    color: #fff;
    opacity: 0.8;
}

.btn-custom01:hover {
    color: #fff;
    opacity: 1;
}

.btn-custom02 {
    background: #ff4d4d;
    color: #fff;
    opacity: 0.8;
}

.btn-custom02:hover {
    color: #fff;
    opacity: 1;
}

.btn-custom03 {
    background: #f9b047;
    color: #fff;
    opacity: 0.8;
}

.btn-custom03:hover {
    color: #fff;
    opacity: 1;
}

.btn-facebook {
    background: #4064ac;
    color: #fff;
    opacity: 0.8;
}

.btn-facebook:hover {
    color: #fff;
    opacity: 1;
}

.btn-line {
    background: #1fc32e;
    color: #fff;
    opacity: 0.8;
}

.btn-line:hover {
    color: #fff;
    opacity: 1;
}

.btn-google {
    background: #fff;
    border: #000 1px solid;
    color: #000;
    opacity: 0.8;
}

.btn-google:hover {
    color: #000;
    opacity: 1;
}

.ml-0 {
    margin-left: 0px !important;
}

.ml-10 {
    margin-left: 10px !important;
}

.ml-15 {
    margin-left: 15px !important;
}

.ml-20 {
    margin-left: 20px !important;
}

.ml-30 {
    margin-left: 30px !important;
}

.ml-40 {
    margin-left: 40px !important;
}

.ml-48 {
    margin-left: 48px !important;
}

.ml-50 {
    margin-left: 50px !important;
}

.ml-60 {
    margin-left: 60px !important;
}

.ml-70 {
    margin-left: 70px !important;
}

.ml-80 {
    margin-left: 80px !important;
}

.ml-90 {
    margin-left: 90px !important;
}

.ml-100 {
    margin-left: 100px !important;
}

/*------Margin right-------*/
.mr-0 {
    margin-right: 0px !important;
}

.mr-10 {
    margin-right: 10px !important;
}

.mr-15 {
    margin-right: 15px !important;
}

.mr-20 {
    margin-right: 20px !important;
}

.mr-30 {
    margin-right: 30px !important;
}

.mr-40 {
    margin-right: 40px !important;
}

.mr-50 {
    margin-right: 50px !important;
}

.mr-60 {
    margin-right: 60px !important;
}

.mr-70 {
    margin-right: 70px !important;
}

.mr-80 {
    margin-right: 80px !important;
}

.mr-90 {
    margin-right: 90px !important;
}

.mr-100 {
    margin-right: 100px !important;
}

/*------Margin Top-------*/
.mt-0 {
    margin-top: 0px !important;
}

.mt-7 {
    margin-top: 7px !important;
}

.mt-10 {
    margin-top: 10px !important;
}

.mt-15 {
    margin-top: 15px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.mt-30 {
    margin-top: 30px !important;
}

.mt-35 {
    margin-top: 35px !important;
}

.mt-40 {
    margin-top: 40px !important;
}

.mt-45 {
    margin-top: 45px !important;
}

.mt-50 {
    margin-top: 50px !important;
}

.mt-52 {
    margin-top: 52px !important;
}

.mt-60 {
    margin-top: 60px !important;
}

.mt-70 {
    margin-top: 70px !important;
}

.mt-80 {
    margin-top: 80px !important;
}

.mt-90 {
    margin-top: 90px !important;
}

.mt-100 {
    margin-top: 100px !important;
}

.mt-110 {
    margin-top: 110px !important;
}

.mt-180 {
    margin-top: 180px !important;
}

/*------Margin Bottom-------*/
.mb-0 {
    margin-bottom: 0px !important;
}

.mb-5 {
    margin-bottom: 5px !important;
}

.mb-7-5 {
    margin-bottom: 7.5px !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-15 {
    margin-bottom: 15px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-25 {
    margin-bottom: 25px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-35 {
    margin-bottom: 35px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.mb-58 {
    margin-bottom: 58px !important;
}

.mb-60 {
    margin-bottom: 60px !important;
}

.mb-70 {
    margin-bottom: 70px !important;
}

.mb-80 {
    margin-bottom: 80px !important;
}

.mb-83 {
    margin-bottom: 83px !important;
}

.mb-85 {
    margin-bottom: 85px !important;
}

.mb-90 {
    margin-bottom: 90px !important;
}

.mb-100 {
    margin-bottom: 100px !important;
}

.mtb-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
}

/*------Padding all-------*/
.p-60 {
    padding: 60px !important;
}

/*------Padding left-------*/
.pl-0 {
    padding-left: 0px !important;
}

.pl-10 {
    padding-left: 10px !important;
}

.pl-15 {
    padding-left: 15px !important;
}

.pl-20 {
    padding-left: 20px !important;
}

.pl-30 {
    padding-left: 30px !important;
}

.pl-40 {
    padding-left: 40px !important;
}

.pl-50 {
    padding-left: 50px !important;
}

.pl-60 {
    padding-left: 60px !important;
}

.pl-70 {
    padding-left: 70px !important;
}

.pl-80 {
    padding-left: 80px !important;
}

.pl-90 {
    padding-left: 90px !important;
}

.pl-100 {
    padding-left: 100px !important;
}

/*------Padding right-------*/
.pr-0 {
    padding-right: 0px !important;
}

.pr-10 {
    padding-right: 10px !important;
}

.pr-15 {
    padding-right: 15px !important;
}

.pr-20 {
    padding-right: 20px !important;
}

.pr-30 {
    padding-right: 30px !important;
}

.pr-40 {
    padding-right: 40px !important;
}

.pr-50 {
    padding-right: 50px !important;
}

.pr-60 {
    padding-right: 60px !important;
}

.pr-70 {
    padding-right: 70px !important;
}

.pr-80 {
    padding-right: 80px !important;
}

.pr-90 {
    padding-right: 90px !important;
}

.pr-100 {
    padding-right: 100px !important;
}

/*------Padding Left Right-------*/
.plr-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.plr-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.plr-25 {
    padding-left: 25px !important;
    padding-right: 25px !important;
}

.plr-35 {
    padding-left: 35px !important;
    padding-right: 35px !important;
}

.plr-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
}

.plr-45 {
    padding-left: 45px !important;
    padding-right: 45px !important;
}

.plr-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
}

.plr-80 {
    padding-left: 80px !important;
    padding-right: 80px !important;
}

.plr-100 {
    padding-left: 100px !important;
    padding-right: 100px !important;
}

/*------Padding Top-------*/
.pt-0 {
    padding-top: 0px !important;
}

.pt-10 {
    padding-top: 10px !important;
}

.pt-15 {
    padding-top: 15px !important;
}

.pt-20 {
    padding-top: 20px !important;
}

.pt-25 {
    padding-top: 25px !important;
}

.pt-30 {
    padding-top: 30px !important;
}

.pt-40 {
    padding-top: 40px !important;
}

.pt-45 {
    padding-top: 45px !important;
}

.pt-50 {
    padding-top: 50px !important;
}

.pt-60 {
    padding-top: 60px !important;
}

.pt-70 {
    padding-top: 70px !important;
}

.pt-75 {
    padding-top: 75px !important;
}

.pt-80 {
    padding-top: 80px !important;
}

.pt-90 {
    padding-top: 90px !important;
}

.pt-94 {
    padding-top: 94px !important;
}

.pt-95 {
    padding-top: 95px !important;
}

.pt-100 {
    padding-top: 100px !important;
}

.pt-110 {
    padding-top: 110px !important;
}

.pt-140 {
    padding-top: 140px !important;
}

/*------Padding-------*/
.p-15 {
    padding: 15px !important;
}

.p-50 {
    padding: 50px !important;
}

.p-48 {
    padding: 48px !important;
}

.p-40 {
    padding: 40px !important;
}

.p-38 {
    padding: 38px !important;
}

.p-30 {
    padding: 30px !important;
}

/*------Padding Bottom-------*/
.pb-0 {
    padding-bottom: 0px !important;
}

.pb-10 {
    padding-bottom: 10px !important;
}

.pb-15 {
    padding-bottom: 15px !important;
}

.pb-20 {
    padding-bottom: 20px !important;
}

.pb-25 {
    padding-bottom: 25px !important;
}

.pb-30 {
    padding-bottom: 30px !important;
}

.pb-40 {
    padding-bottom: 40px !important;
}

.pb-45 {
    padding-bottom: 45px !important;
}

.pb-50 {
    padding-bottom: 50px !important;
}

.pb-55 {
    padding-bottom: 55px !important;
}

.pb-58 {
    padding-bottom: 58px !important;
}

.pb-60 {
    padding-bottom: 60px !important;
}

.pb-65 {
    padding-bottom: 65px !important;
}

.pb-70 {
    padding-bottom: 70px !important;
}

.pb-75 {
    padding-bottom: 75px !important;
}

.pb-80 {
    padding-bottom: 80px !important;
}

.pb-90 {
    padding-bottom: 90px !important;
}

.pb-95 {
    padding-bottom: 95px !important;
}

.pb-100 {
    padding-bottom: 100px !important;
}

.pb-110 {
    padding-bottom: 110px !important;
}

.pb-120 {
    padding-bottom: 120px !important;
}

.pb-130 {
    padding-bottom: 130px !important;
}

.pb-140 {
    padding-bottom: 140px !important;
}

/*------Padding  Top Bottom-------*/
.ptb-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

.ptb-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}

.ptb-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.ptb-11 {
    padding-top: 11px !important;
    padding-bottom: 11px !important;
}

.ptb-12 {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
}

.ptb-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}

.ptb-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

.ptb-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
}

.ptb-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}

.ptb-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

.ptb-45 {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
}

.ptb-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
}

.ptb-55 {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
}

.ptb-58 {
    padding-top: 58px !important;
    padding-bottom: 58px !important;
}

.ptb-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}

.ptb-70 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
}

.ptb-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

.ptb-90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
}

.ptb-92 {
    padding-top: 92px !important;
    padding-bottom: 92px !important;
}

.ptb-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}

.ptb-110 {
    padding-top: 110px !important;
    padding-bottom: 110px !important;
}

.ptb-118 {
    padding-top: 118px !important;
    padding-bottom: 118px !important;
}

.ptb-120 {
    padding-top: 120px !important;
    padding-bottom: 120px !important;
}

.ptb-130 {
    padding-top: 130px !important;
    padding-bottom: 130px !important;
}

.ptb-132 {
    padding-top: 132px !important;
    padding-bottom: 132px !important;
}

.ptb-140 {
    padding-top: 140px !important;
    padding-bottom: 140px !important;
}

.ptb-150 {
    padding-top: 150px !important;
    padding-bottom: 150px !important;
}

.ptb-160 {
    padding-top: 160px !important;
    padding-bottom: 160px !important;
}

.ptb-180 {
    padding-top: 180px !important;
    padding-bottom: 180px !important;
}

.ptb-200 {
    padding-top: 200px !important;
    padding-bottom: 200px !important;
}

.ptb-240 {
    padding-top: 240px !important;
    padding-bottom: 240px !important;
}

@media (min-width: 768px) {
    .pl-md-0 {
        padding-left: 0 !important;
    }

    .pr-md-0 {
        padding-right: 0 !important;
    }

    .pl-md-30 {
        padding-left: 30px !important;
    }
}

@media (max-width: 768px) {
    .mb-sm-30 {
        margin-bottom: 30px;
    }
}

@media (min-width: 991px) {
    .inside-header .logo img {
        width: 60%;
    }
}

@media (min-width: 991px) {
    .inside-header.stick .logo img {
        width: 40%;
    }
}

.header {
    background: #fff;
}

.header .top-message {
    background: #f4f4f4;
    padding: 5px 0;
}

.header .top-message p {
    margin-bottom: 0;
    color: #a0a0a0;
}

@media (max-width: 991px) {
    .header .top-message {
        display: none;
    }
}

.header .logo {
    position: absolute;
    top: 0%;
    left: 0;
    z-index: 999;
}

@media (min-width: 991px) {
    .header .logo img {
        margin-right: 2rem;
    }
}

@media (max-width: 991px) {
    .header .logo img {
        width: 90px;
    }
}

.header .top-icon {
    padding: 20px 0 15px;
}

@media (max-width: 991px) {
    .header .top-icon {
        display: none;
    }
}

.header .top-icon .top-icon-list .top-icon-link {
    position: relative;
}

.header .top-icon .top-icon-list .top-icon-link a {
    position: relative;
    display: block;
    padding: 15px;
    opacity: 0.7;
}

.header .top-icon .top-icon-list .top-icon-link a i {
    font-size: 22px;
    color: #4c3d39;
}

.header .top-icon .top-icon-list .top-icon-link a:hover {
    opacity: 1;
}

.header .top-icon .top-icon-list .top-icon-link a .bag-number {
    position: absolute;
    min-width: 20px;
    height: 20px;
    background: red;
    color: #fff;
    right: 5px;
    bottom: 5px;
    border-radius: 20px;
    font-size: 12px;
    padding: 2px;
    text-align: center;
    line-height: 16px;
}

.header .top-icon .top-icon-list .top-icon-link .search-body {
    position: absolute;
    width: 300px;
    top: 9px;
    left: -300px;
}

.header .top-header {
    padding: 15px 0 20px;
}

@media (max-width: 991px) {
    .header .top-header {
        padding: 30px 15px;
    }
}

@media (min-width: 991px) {
    .header .top-header .top-menu .collapse {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.header .top-header .top-menu .collapse li {
    position: relative;
}

.header .top-header .top-menu .collapse li .nav-link {
    color: #666;
    font-size: 16px;
    font-weight: 700;
    padding: 7.5px 10px;
    display: block;
    position: relative;
    margin: 0 5px;
}

.header .top-header .top-menu .collapse li.active .nav-link,
.header .top-header .top-menu .collapse li:hover .nav-link {
    color: #000;
}

@media (max-width: 991px) {

    .header .top-header .top-menu .collapse li.active .nav-link,
    .header .top-header .top-menu .collapse li:hover .nav-link {
        color: #1a835c;
    }
}

.header .top-header .top-menu .collapse li.active .nav-link::before,
.header .top-header .top-menu .collapse li:hover .nav-link::before {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #d09f8b;
}

.header .top-header .top-menu .collapse li .sec-ul {
    position: absolute;
    z-index: 9;
    top: 40px;
    left: 0;
    white-space: nowrap;
    visibility: hidden;
    opacity: 0;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    -webkit-transition: visibility 0s, opacity 0.2s linear;
    transition: visibility 0s, opacity 0.2s linear;
    width: 120%;
}

@media (max-width: 991px) {
    .header .top-header .top-menu .collapse li .sec-ul {
        width: 100%;
        visibility: visible;
        opacity: 1;
        position: relative;
        top: 0;
    }
}

.header .top-header .top-menu .collapse li .sec-ul>li {
    position: relative;
    width: 100%;
    border: 1px solid #ddd;
    padding: 0;
}

@media (max-width: 991px) {
    .header .top-header .top-menu .collapse li .sec-ul>li {
        border: none;
    }
}

.header .top-header .top-menu .collapse li .sec-ul>li>a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #333;
    line-height: 1.2em;
    padding: 7.5px 10px;
    background-color: #fff;
}

@media (max-width: 991px) {
    .header .top-header .top-menu .collapse li .sec-ul>li>a {
        background-color: transparent;
        padding: 15px 15px 15px 30px;
        color: #fff;
        position: relative;
    }

    .header .top-header .top-menu .collapse li .sec-ul>li>a:before {
        content: "-";
        display: block;
        position: absolute;
        left: 15px;
        top: 13px;
    }
}

.header .top-header .top-menu .collapse li .sec-ul>li>a:hover {
    color: #fff;
    background-color: #d09f8b;
}

.header .top-header .top-menu .collapse li .sec-ul>li .tir-ul {
    display: none;
    position: absolute;
    z-index: 10;
    top: 0px;
    right: -160%;
    width: 160%;
}

.header .top-header .top-menu .collapse li .sec-ul>li .tir-ul>li {
    width: 100%;
    border: 1px solid #ddd;
    padding: 0;
}

.header .top-header .top-menu .collapse li .sec-ul>li .tir-ul>li>a {
    display: block;
    color: #333;
    line-height: 1.2em;
    padding: 7.5px 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: left;
    background-color: #fff;
}

.header .top-header .top-menu .collapse li .sec-ul>li .tir-ul>li>a:hover {
    color: #fff;
    background-color: #d09f8b;
}

.header .top-header .top-menu .collapse li .sec-ul>li .tir-ul>li .four-ul {
    display: none;
    position: absolute;
    z-index: 9;
    top: 0px;
    right: -100%;
    width: 100%;
}

.header .top-header .top-menu .collapse li .sec-ul>li .tir-ul>li .four-ul li {
    width: 100%;
    outline: 1px solid #ddd;
    padding: 0;
}

.header .top-header .top-menu .collapse li .sec-ul>li .tir-ul>li .four-ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #333;
    line-height: 1.2em;
    padding: 10px 15px;
    background-color: #fff;
}

.header .top-header .top-menu .collapse li .sec-ul>li .tir-ul>li .four-ul li a:hover {
    color: #fff;
    background-color: #d09f8b;
}

.header .top-header .top-menu .collapse li .sec-ul>li .tir-ul>li:hover .four-ul {
    display: block;
}

.header .top-header .top-menu .collapse li .sec-ul>li:hover .tir-ul {
    display: block;
}

.header .top-header .top-menu .collapse li:hover .sec-ul {
    visibility: visible;
    opacity: 1;
    display: block !important;
}

.header .top-title {
    background-color: #005eac;
    height: 45px;
}

.header .top-title ul.marquee {
    display: block;
    padding: 0;
    margin: 0 auto;
    list-style: none;
    position: relative;
    overflow: hidden;
    height: 45px;
    width: 100%;
}

.header .top-title ul.marquee li {
    position: absolute;
    top: -999em;
    display: block;
    white-space: nowrap;
    color: #fff;
    font-size: 20px;
    line-height: 45px;
    text-align: center;
    left: 0;
}

.header.stick {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=0, Color=#000000)";
    /*IE 8*/
    /*FF 3.5+*/
    -webkit-box-shadow: 0 1px 3px 3px rgba(0, 0, 0, 0.2);
    /*Saf3-4, Chrome, iOS 4.0.2-4.2, Android 2.3+*/
    box-shadow: 0 1px 3px 3px rgba(0, 0, 0, 0.2);
    /* FF3.5+, Opera 9+, Saf1+, Chrome, IE10 */
    filter: progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color=#000000);
    /*IE 5.5-7*/
}

.header.stick .logo img {
    width: 40%;
}

.header.stick .combination-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    margin-left: 10%;
    -ms-flex: 0 0 90%;
    -webkit-box-flex: 0;
    flex: 0 0 90%;
    max-width: 90%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 5px 0;
}

.header.stick .combination-item .top-icon,
.header.stick .combination-item .top-header {
    padding: 0;
}

@media (max-width: 991px) {
    .header .top-header .top-menu .navbar-toggler {
        background-color: #4c3d39;
        z-index: 9999;
        top: calc(50% - 18px);
    }

    .header .top-header .top-menu .navbar-toggler .icon-bar {
        background-color: #fff;
    }

    .header .top-header .top-menu .navbar-toggler.yes .icon-bar {
        background: 0 0;
    }

    .header .top-header .top-menu .navbar-toggler.yes .icon-bar:first-child,
    .header .top-header .top-menu .navbar-toggler.yes .icon-bar:last-child {
        background-color: #fff;
    }

    .header .top-header .top-menu .navbar-collapse .nav li {
        margin-right: 0px;
    }

    .header .top-header .top-menu .navbar-collapse .nav li a {
        display: block;
        padding: 10px 15px;
        color: #fff;
    }

    .header .top-header .top-menu .navbar-collapse .nav li a:hover {
        color: #fff;
    }

    .header .top-header .top-menu nav .navbar-collapse {
        overflow: auto;
        bottom: 0;
        position: fixed;
        top: 98px;
        overflow-y: auto;
        left: 0;
        right: 0;
        background: #4c3d39;
        text-align: center;
        padding: 0;
        opacity: 0;
        -webkit-transform: translateX(-150%);
        transform: translateX(-150%);
        -webkit-transition: top 0s 0.35s, left 0s 0.35s, right 0s 0.35s, opacity 0s 0.35s, -webkit-transform 0.35s 0s;
        transition: top 0s 0.35s, left 0s 0.35s, right 0s 0.35s, opacity 0s 0.35s, -webkit-transform 0.35s 0s;
        transition: top 0s 0.35s, left 0s 0.35s, right 0s 0.35s, opacity 0s 0.35s, transform 0.35s 0s;
        transition: top 0s 0.35s, left 0s 0.35s, right 0s 0.35s, opacity 0s 0.35s, transform 0.35s 0s, -webkit-transform 0.35s 0s;
        z-index: 888;
    }

    .header .top-header .top-menu nav .navbar-collapse.show {
        top: 60px;
        right: 0;
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
        padding-bottom: 30px;
        -webkit-transition: top 0s, left 0s, right 0s, opacity 0.35s cubic-bezier(0, 1.2, 0.8, 1.01), -webkit-transform 0.35s cubic-bezier(0, 1.2, 0.8, 1.01);
        transition: top 0s, left 0s, right 0s, opacity 0.35s cubic-bezier(0, 1.2, 0.8, 1.01), -webkit-transform 0.35s cubic-bezier(0, 1.2, 0.8, 1.01);
        transition: top 0s, left 0s, right 0s, opacity 0.35s cubic-bezier(0, 1.2, 0.8, 1.01), transform 0.35s cubic-bezier(0, 1.2, 0.8, 1.01);
        transition: top 0s, left 0s, right 0s, opacity 0.35s cubic-bezier(0, 1.2, 0.8, 1.01), transform 0.35s cubic-bezier(0, 1.2, 0.8, 1.01), -webkit-transform 0.35s cubic-bezier(0, 1.2, 0.8, 1.01);
    }

    .header.stick {
        height: 60px;
    }

    .header.stick .top-header .top-menu .navbar-toggler {
        top: calc(50% + 7px);
    }

    .has-hover {
        display: none;
    }
}

.footer {
    background: #f4f4f4;
}

.footer .footer-body {
    padding: 35px 0;
}

.footer .footer-body h4 {
    font-size: 21px;
}

.footer .footer-body a {
    font-size: 18px;
    color: #666;
}

.footer .footer-body a:hover {
    color: #000;
}

.footer .footer-body .share-list li {
    margin-right: 0.5rem;
}

.footer .footer-body .share-list li a {
    display: block;
    font-size: initial;
    line-height: 0;
}

.footer .footer-body .share-list li a i {
    font-size: 32px;
    color: #666;
}

.footer .footer-body .share-list li a i:hover {
    color: #000;
}

.footer .cpyright {
    background: #a0a0a0;
    padding: 2.5px 0;
}

.footer .cpyright p {
    color: #fff;
    font-size: 15px;
}

.footer p {
    margin-bottom: 0px;
}

.fx-btn-area {
    position: fixed;
    right: 10px;
    bottom: 100px;
    width: 40px;
    opacity: 0.8;
    z-index: 999;
}

@media (max-width: 991px) {
    .fx-btn-area {
        right: 5px;
        width: 30px;
    }
}

.fx-btn-area .fx-btn {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #fff;
    text-align: center;
    line-height: 42px;
    margin-bottom: 15px;
    opacity: 0.9;
}

@media (max-width: 991px) {
    .fx-btn-area .fx-btn {
        width: 32px;
        height: 32px;
        line-height: 30px;
        opacity: 1;
    }
}

.fx-btn-area .fx-btn i {
    color: #fff;
    font-size: 22px;
}

@media (max-width: 991px) {
    .fx-btn-area .fx-btn i {
        font-size: 16px;
    }
}

.fx-btn-area .fx-btn-phone {
    background-color: #333;
    display: none;
}

@media (max-width: 991px) {
    .fx-btn-area .fx-btn-phone {
        display: block;
    }
}

.fx-btn-area .fx-btn-line {
    background-color: #6ac73f;
}

.fx-btn-area .fx-btn-cart {
    background-color: #333;
    display: none;
}

@media (max-width: 991px) {
    .fx-btn-area .fx-btn-cart {
        display: block;
    }
}

.fx-btn-area .fx-btn-fb {
    background-color: #667cad;
}

.fx-btn-area .fx-btn:hover {
    opacity: 1;
}

.fx-btn-area .cd-top {
    transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    display: inline-block;
    opacity: 0;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    visibility: hidden;
    background-color: #000;
    color: #fff;
    z-index: 777;
}

.fx-btn-area .cd-top.cd-fade-out {
    visibility: visible;
    opacity: 0.8;
}

.fx-btn-area .cd-top.cd-fade-out:hover {
    opacity: 1;
}

.white-arrow .slick-next {
    right: 20px;
    outline: 0;
    width: 18.5px;
    height: 27px;
    z-index: 2;
    background: url(../images/main_controls.png) -18.5px 0 no-repeat;
    opacity: 0.5;
}

.white-arrow .slick-next:focus,
.white-arrow .slick-next:hover {
    opacity: 1;
    background: url(../images/main_controls.png) -18.5px 0 no-repeat;
}

.white-arrow .slick-prev {
    left: 20px;
    outline: 0;
    width: 18.5px;
    height: 27px;
    z-index: 2;
    background: url(../images/main_controls.png) no-repeat;
    opacity: 0.5;
}

.white-arrow .slick-prev:focus,
.white-arrow .slick-prev:hover {
    opacity: 1;
    background: url(../images/main_controls.png) no-repeat;
}

.white-arrow .slick-dots {
    bottom: 20px;
}

.black-arrow .slick-next {
    right: -10px;
    outline: 0;
    width: 18.5px;
    height: 27px;
    z-index: 2;
    background: url(../images/main2_controls.png) -18.5px 0 no-repeat;
    opacity: 0.5;
}

.black-arrow .slick-next:focus,
.black-arrow .slick-next:hover {
    opacity: 1;
    background: url(../images/main2_controls.png) -18.5px 0 no-repeat;
}

.black-arrow .slick-prev {
    left: -10px;
    outline: 0;
    width: 18.5px;
    height: 27px;
    z-index: 2;
    background: url(../images/main2_controls.png) no-repeat;
    opacity: 0.5;
}

.black-arrow .slick-prev:focus,
.black-arrow .slick-prev:hover {
    opacity: 1;
    background: url(../images/main2_controls.png) no-repeat;
}

.black-arrow .slick-dots {
    bottom: 20px;
}

.btn-item {
    position: absolute;
    right: 10px;
    top: 10px;
    background: #fff;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    z-index: 2;
}

.btn-item .btn-cart,
.btn-item .btn-fav {
    padding: 5px;
}

.btn-item .btn-cart i,
.btn-item .btn-fav i {
    color: #777;
    font-size: 18px;
}

.btn-item .btn-cart:hover i,
.btn-item .btn-cart.active i,
.btn-item .btn-fav:hover i,
.btn-item .btn-fav.active i {
    color: red;
}

.btn-item .btn-cart:hover i::before,
.btn-item .btn-cart.active i::before,
.btn-item .btn-fav:hover i::before,
.btn-item .btn-fav.active i::before {
    content: "\f004";
}

.btn-item2 {
    position: absolute;
    right: 0px;
    top: -10px;
}

.btn-item2 .btn-cart,
.btn-item2 .btn-fav {
    padding: 5px;
}

.btn-item2 .btn-cart i,
.btn-item2 .btn-fav i {
    color: #777;
    font-size: 18px;
}

.btn-item2 .btn-cart:hover i,
.btn-item2 .btn-cart.active i,
.btn-item2 .btn-fav:hover i,
.btn-item2 .btn-fav.active i {
    color: red;
}

.tip-item {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 3;
}

.tip-item .hot-tip {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: red;
    text-align: center;
    line-height: 30px;
    color: #fff;
    margin-bottom: 10px;
    display: none;
}

.tip-item .new-tip {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #ffb400;
    text-align: center;
    line-height: 30px;
    color: #fff;
    display: none;
}

.tip-item2 {
    position: absolute;
    right: 10px;
    top: 5px;
    z-index: 3;
}

.tip-item2 .hot-tip {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: red;
    text-align: center;
    line-height: 30px;
    color: #fff;
    margin-bottom: 10px;
    display: none;
}

.tip-item2 .new-tip {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #ffb400;
    text-align: center;
    line-height: 30px;
    color: #fff;
    display: none;
}

.img-wrap .img-item {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.img-wrap .img-item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    background-repeat: no-repeat;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.breadcrumb {
    background: #fff;
    border-radius: 0;
}

.breadcrumb li {
    position: relative;
    margin-right: 20px;
}

.breadcrumb li a {
    color: #666;
    display: block;
}

.breadcrumb li a:hover {
    color: #000;
}

.breadcrumb li:before {
    content: "/";
    position: absolute;
    display: block;
    top: 0;
    right: -15px;
    color: #000 !important;
}

.breadcrumb li:last-child:before {
    display: none;
}

.breadcrumb li.active a {
    color: #e6801e;
}

.form-custom {
    padding: 10px 0px;
    outline: none;
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
}

@media (min-width: 768px) {
    .form-custom {
        min-width: 200px;
    }
}

.more {
    display: inline-block;
    color: #999;
    border: 1px solid #999;
    padding: 5px 25px;
    border-radius: 30px;
}

.more:hover {
    color: #000;
    border: 1px solid #000;
}

.section_product_items {
    color: #999;
    position: relative;
    display: block;
}

.section_product_items .img-wrap .img-item::before {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    content: "";
    background: rgba(0, 0, 0, 0.1);
    top: 0;
    left: 0;
    z-index: 2;
    transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
}

.section_product_items .img-wrap .img-item .add-cart {
    position: absolute;
    bottom: 0;
    left: 0px;
    text-align: center;
    width: 100%;
    height: 45px;
    background: #f5af48;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 0;
    z-index: 4;
    transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
}

.section_product_items .img-wrap .img-item .add-cart .btn-cart {
    color: #fff;
    font-size: 18px;
}

.section_product_items .img-wrap .img-item .add-cart:hover,
.section_product_items .img-wrap .img-item .add-cart.active {
    background: #ffc46d;
}

.section_product_items .img-wrap .img-item .add-cart:hover .btn-cart,
.section_product_items .img-wrap .img-item .add-cart.active .btn-cart {
    color: #fff;
}

@media (max-width: 991px) {
    .section_product_items .img-wrap .img-item .add-cart {
        height: 30px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        opacity: 1;
    }

    .section_product_items .img-wrap .img-item .add-cart .btn-cart {
        color: #fff;
        font-size: 14px;
        padding: 0;
    }
}

.section_product_items .img-wrap .img-item:hover .add-cart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 1;
}

.section_product_items:hover {
    color: #000;
}

.section_product_items:hover .img-item:before {
    background: rgba(0, 0, 0, 0);
}

.section_product_items p {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 22px;
}

.section_product_items.hot-active .hot-tip {
    display: block;
}

.section_product_items.new-active .new-tip {
    display: block;
}

.prev-price {
    font-size: 14px;
    text-decoration: line-through;
}

.price {
    color: red;
    font-size: 18px;
}

.section_news_items {
    color: #999;
    position: relative;
    display: block;
}

.section_news_items .img-wrap .img-item {
    padding-top: 60%;
}

.section_news_items .img-wrap .img-item::before {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    content: "";
    background: rgba(0, 0, 0, 0.1);
    top: 0;
    left: 0;
    z-index: 2;
    transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
}

.section_news_items:hover {
    color: #000;
}

.section_news_items:hover .img-item:before {
    background: rgba(0, 0, 0, 0);
}

.section_news_items p {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 22px;
}

.section_news_items2 {
    color: #999;
    position: relative;
    display: block;
}

.section_news_items2 .img-wrap .img-item {
    padding-top: 40%;
}

.section_news_items2 .img-wrap .img-item::before {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    content: "";
    background: rgba(0, 0, 0, 0.1);
    top: 0;
    left: 0;
    z-index: 2;
    transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
}

.section_news_items2:hover {
    color: #000;
}

.section_news_items2:hover .img-item:before {
    background: rgba(0, 0, 0, 0);
}

.section-title-center {
    text-align: center;
    position: relative;
}

.section-title-center h4 {
    color: #d09f8b;
    text-transform: uppercase;
}

.section-title-center h2 {
    color: #000;
    margin-bottom: 30px;
    position: relative;
}

@media (max-width: 991px) {
    .section-title-center h2 {
        font-size: 28px;
    }
}

.inside-content .sidebar-title {
    background-color: #fff;
    padding: 10px 10px;
    border-bottom: 3px solid #d09f8b;
}

.inside-content .sidebar-menu ul li {
    position: relative;
}

.inside-content .sidebar-menu ul li a {
    display: block;
    padding: 10px 10px;
    color: #666;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.inside-content .sidebar-menu ul li a .sidebar-right {
    transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    position: absolute;
    top: 10px;
    right: 10px;
}

.inside-content .sidebar-menu ul li .sidebar-menu-sec {
    display: none;
    position: absolute;
    top: 0;
    right: -270px;
    width: 100%;
    background: #fff;
    z-index: 3;
    -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=2, Direction=135, Color=#000000)";
    /*IE 8*/
    /*FF 3.5+*/
    -webkit-box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.2);
    /*Saf3-4, Chrome, iOS 4.0.2-4.2, Android 2.3+*/
    box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.2);
    /* FF3.5+, Opera 9+, Saf1+, Chrome, IE10 */
    filter: progid:DXImageTransform.Microsoft.Shadow(Strength=2, Direction=135, Color=#000000);
    /*IE 5.5-7*/
}

.inside-content .sidebar-menu ul li .sidebar-menu-sec li {
    margin: 0;
}

.inside-content .sidebar-menu ul li .sidebar-menu-sec li a {
    border: none;
    color: #666;
    background: #fff;
}

.inside-content .sidebar-menu ul li .sidebar-menu-sec li a:hover {
    color: #fff;
    background: #d09f8b;
}

.inside-content .sidebar-menu ul li:hover .sidebar-menu-sec {
    display: block;
}

.inside-content .sidebar-menu ul li.active a,
.inside-content .sidebar-menu ul li:hover a {
    background-color: #d09f8b;
    color: #fff;
}

.inside-content .sidebar-menu ul li.active a .sidebar-right,
.inside-content .sidebar-menu ul li:hover a .sidebar-right {
    right: 5px;
}

.inside-content .main_tb .main_tb-title .row {
    border-bottom: 2px solid #fff;
    background: #a2a2a2;
}

.inside-content .main_tb .main_tb-title .row [class^=col] {
    color: #fff;
    padding: 5px 15px;
    text-align: center;
}

@media (max-width: 767px) {
    .inside-content .main_tb .main_tb-title {
        display: none;
    }
}

.inside-content .main_tb .main_tb-body {
    counter-reset: num;
}

.inside-content .main_tb .main_tb-body .row {
    padding: 5px 0px;
    color: #666;
}

.inside-content .main_tb .main_tb-body .row:nth-child(even) {
    background: #f1f8ea;
}

.inside-content .main_tb .main_tb-body .row:hover {
    color: #fff;
    background: #0f51a3;
}

.inside-content .main_tb .main_tb-body .row [class^=col] {
    padding: 5px;
    text-align: center;
}

.inside-content .main_tb .main_tb-body .row [class^=col]:first-child:after {
    counter-increment: num;
    content: counter(num, decimal-leading-zero);
}

@media (max-width: 767px) {
    .inside-content .main_tb .main_tb-body .row {
        margin-bottom: 15px;
    }

    .inside-content .main_tb .main_tb-body .row [class^=col] {
        display: -ms-flexbox;
        display: -webkit-box;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: nowrap;
        padding: 0 15px;
        margin-bottom: 5px;
        text-align: left;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .inside-content .main_tb .main_tb-body .row [class^=col]:before {
        content: attr(data-title) " ";
        color: #000;
        font-weight: 700;
        white-space: nowrap;
        padding: 5px 15px;
        color: #333;
        margin: 0 10px 0px 0;
    }
}

@media (max-width: 767px) {
    .inside-content .main_tb .main_tb-body .row .style2 {
        margin-bottom: 15px;
    }

    .inside-content .main_tb .main_tb-body .row .style2 [class^=col] {
        display: -ms-flexbox;
        display: -webkit-box;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: nowrap;
        padding: 0 15px;
        margin-bottom: 5px;
        text-align: left;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .inside-content .main_tb .main_tb-body .row .style2 [class^=col]:before {
        content: attr(data-title) " ";
        color: #000;
        font-weight: 700;
        white-space: nowrap;
        padding: 5px 15px;
        color: #333;
        margin: 0 10px 0px 0;
        max-width: 120px;
        min-width: 120px;
    }
}

.services-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.services-item .img-item {
    width: 20%;
    margin-right: 20px;
    -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=5, Direction=135, Color=#000000)";
    /*IE 8*/
    /*FF 3.5+*/
    -webkit-box-shadow: 2px 2px 5px 5px rgba(0, 0, 0, 0.1);
    /*Saf3-4, Chrome, iOS 4.0.2-4.2, Android 2.3+*/
    box-shadow: 2px 2px 5px 5px rgba(0, 0, 0, 0.1);
    /* FF3.5+, Opera 9+, Saf1+, Chrome, IE10 */
    filter: progid:DXImageTransform.Microsoft.Shadow(Strength=5, Direction=135, Color=#000000);
    /*IE 5.5-7*/
    border-radius: 50%;
    font-size: 0;
}

.services-item .img-item img {
    width: 100%;
}

.services-item .text-item {
    width: calc(80% - 20px);
}

.services-item .text-item h4 span {
    font-size: 120%;
    font-weight: bold;
    margin-right: 5px;
}

.recommend-item {
    /*   display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; */
    -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=5, Direction=135, Color=#000000)";
    /*IE 8*/
    /*FF 3.5+*/
    -webkit-box-shadow: 2px 2px 5px 5px rgba(0, 0, 0, 0.05);
    /*Saf3-4, Chrome, iOS 4.0.2-4.2, Android 2.3+*/
    box-shadow: 2px 2px 5px 5px rgba(0, 0, 0, 0.05);
    /* FF3.5+, Opera 9+, Saf1+, Chrome, IE10 */
    filter: progid:DXImageTransform.Microsoft.Shadow(Strength=5, Direction=135, Color=#000000);
    /*IE 5.5-7*/
    border-radius: 15px;
    background-color: #fff;
}

/* .recommend-item .img-wrap {
  border-radius: 50%;
  width: 30%;
  overflow: hidden;
  margin-right: 20px;
}
.recommend-item .img-wrap .img-item {
  padding-top: 100%;
}
.recommend-item .text-item {
  width: calc(70% - 20px);
}
.recommend-item .text-item h4 span {
  font-size: 120%;
  font-weight: bold;
  margin-right: 5px;
} */

.detail-img .product_detail_img .product_detail_img-item {
    margin: 5px 5px 10px 5px;
}
.detail-img .product_detail_img2 .product_detail_img-item {
    margin: 5px 5px 10px 5px;
}

.detail-img .product_detail_img-nav .product_detail_img-nav-item {
    border: 2px solid white;
    margin: 5px;
    cursor: pointer;
}

.detail-img .product_detail_img-nav2 .product_detail_img-nav-item {
    border: 5px solid white;
    margin: 5px;
    cursor: pointer;
}

.detail-img .product_detail_img-nav .product_detail_img-nav-item.slick-current {
    border: 2px solid red;
}

.detail-img .product_detail_img-nav2 .product_detail_img-nav-item.slick-current {
    border: 5px solid red;
}

.casesimg-details-item .product_detail_img2 .product_detail_img-item .img-wrap .img-item {
    padding-top: 56.25%;
}


.nav-tabs02 {
    border: none;
    margin-bottom: 15px;
}

.nav-tabs02 .nav-link {
    padding: 5px 0;
    margin: 0 10px;
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: 2px solid #fff;
    color: #999;
}

.nav-tabs02 .nav-link.active {
    border-bottom: 2px solid #dd5500;
}

.qa-inner {
    margin-bottom: 40px;
}

.qa-inner .qa-tab_cont {
    padding: 15px;
    border-bottom: 1px dashed #000;
}

.qa-inner .qa-tab_cont .qa-tab_item_top {
    cursor: pointer;
    position: relative;
    font-size: 1.2rem;
    display: block;
}

.qa-inner .qa-tab_cont .qa-tab_item_top:after {
    position: absolute;
    content: "\f067";
    color: #333;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    top: 4px;
    right: 15px;
}

.qa-inner .qa-tab_cont .qa-tab_item_top>i {
    font-size: 1.5rem;
    color: #feb03e;
}

.qa-inner .qa-tab_cont .qa-tab_item_bottom {
    margin-top: 20px;
    font-size: 1.2rem;
    display: none;
}

.qa-inner .qa-tab_cont.opened .qa-tab_item_top:after {
    content: "\f068";
}

.qa-inner .qa-tab_cont.opened .qa-tab_item_bottom {
    display: block;
}

.row75 {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -7.5px;
    margin-left: -7.5px;
}

.row75 [class^=col] {
    padding-right: 7.5px;
    padding-left: 7.5px;
}

.nice-select {
    height: initial;
    line-height: initial;
}

@media (min-width: 768px) {
    .banner_slider_mo {
        display: none;
    }
}

@media (max-width: 768px) {
    .banner_slider {
        display: none;
    }

    img {
        max-width: 100% !important;
    }
}