/*********************************
4. Banner
*********************************/

/*********************************
5. Characteristics
*********************************/

.characteristics {
    padding-top: 70px;
    padding-bottom: 70px;
}

.char_item {
    width: 100%;
    height: 100px;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
    border: solid 1px #e8e8e8;
    padding-left: 36px;
}

.char_icon {
    margin-right: 24px;
    fill: #6eb261;
}

.char_content {
    transform: translate(-1px, 3px);
}

.char_title {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
}

.char_subtitle {
    font-size: 12px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.5);
    margin-top: 3px;
}

/*********************************
6.2 Featured
*********************************/

.product_grid {
    -webkit-transform: translateX(-0px);
    -moz-transform: translateX(-0px);
    -ms-transform: translateX(-0px);
    -o-transform: translateX(-0px);
    transform: translateX(-0px);
    /* width: calc(100% + 40px); */
}

.product_grid_border {
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    width: 3px;
    height: 100%;
    background: #FFFFFF;
    z-index: 1;
}

.product_item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background: #FFFFFF;
    cursor: pointer;
    padding-top: 15px;
    padding-bottom: 24px;
    text-align: center;
}

.product_border {
    display: block;
    position: absolute;
    top: 52px;
    right: 1px;
    width: 1px;
    height: calc(100% - 71px);
    background: #e5e5e5;
}

.product_image {
    width: 100%;
    height: 275px;
    overflow: hidden
}

.product_image a {
    display: block;
    width: 100%;
    height: 100%;
}

.product_image img {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product_content {
    width: 100%;
}

.product_price {
    font-size: 16px;
    font-weight: 500;
}

.product_item.discount {
    color: #df3b3b;
}

.product_price span {
    position: relative;
    font-size: 12px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
    margin-left: 10px;
}

.product_price span::after {
    display: block;
    position: absolute;
    top: 6px;
    left: -2px;
    width: calc(100% + 4px);
    height: 1px;
    background: #8d8d8d;
    content: '';
}

.product_name {
    margin-top: 4px;
    overflow: hidden;
}

.product_name div {
    width: 100%;

}

.product_name div a {
    font-size: 16px;
    font-weight: bolder;
    font-weight: 400;
    color: #000000;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    /* number of lines to show */
    -webkit-box-orient: vertical;
}

.product_name div a:hover {
    color: #6eb261;
}

.product_fav {
    position: absolute;
    top: 33px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: #FFFFFF;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.product_fav:hover {
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.3);
}

.product_fav i {
    display: block;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    color: #cccccc;
    line-height: 36px;
    pointer-events: none;
    z-index: 0;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.product_fav.active i {
    color: red;
}

.product_item:hover .product_fav {
    visibility: visible;
    opacity: 1;
}

.product_marks {
    display: block;
    position: absolute;
    top: 33px;
    left: 24px;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.product_mark {
    display: inline-block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #FFFFFF;
    text-align: center;
    line-height: 36px;
    font-size: 12px;
}

.product_new {
    display: none;
    background: #6eb261;
    visibility: hidden;
    opacity: 0;
}

.product_discount {
    display: none;
    background: #df3b3b;
    visibility: hidden;
    opacity: 0;
}

.product_item.is_new .product_new,
.product_item.discount .product_discount {
    display: inline-block;
    visibility: visible;
    opacity: 1;
}

/*********************************
15. Brands
*********************************/

.brands {
    width: 100%;
    padding-top: 90px;
    padding-bottom: 90px;
}

.brands_slider_container {
    height: 130px;
    border: solid 1px #e8e8e8;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
    padding-left: 97px;
    padding-right: 97px;
}

.brands_slider {
    height: 100%;
}

.brands_item {
    height: 100%;
}

.brands_item img {
    max-width: 130px;
}

.brands_nav {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 5px;
    cursor: pointer;
}

.brands_nav i {
    color: #e5e5e5;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.brands_nav:hover i {
    color: #676767;
}

.brands_prev {
    left: 40px;
}

.brands_next {
    right: 40px;
}

#homeSlider {
    object-fit: contain;
    height: auto;
    margin-top: 25px;
}

#homeSlider .home-slider-item {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#homeSlider .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translate(0px, -50%);
}

#homeSlider .owl-nav .owl-prev {
    position: absolute;
    left: 10px;
    top: -20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border-radius: 100%;
    font-size: 22px;
    -webkit-box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.5);
    outline: none !important;
}

#homeSlider .owl-nav .owl-next {
    position: absolute;
    right: 10px;
    top: -20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border-radius: 100%;
    font-size: 22px;
    -webkit-box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.5);
    outline: none !important;
}

#homeSlider .owl-dots {
    position: absolute;
    z-index: 10;
    width: 100%;
    bottom: 10px;
    text-align: center;
}

#homeSlider .owl-dots button {
    background-color: #fff;
    width: 10px;
    height: 5px;
    border-radius: 5px;
    margin: 0px 5px;
    text-align: center;
    justify-content: center;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
    -webkit-box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.2);
    outline: none !important;
}

#homeSlider .owl-dots button.active {
    background-color: #d8d8d8;
    width: 30px;
}

@media only screen and (max-width: 991px) {

    #homeSlider .owl-nav .owl-prev,
    #homeSlider .owl-nav .owl-next {
        background: rgba(0, 0, 0, 0.2);
    }
}