/*************
*********
------------  BASE UNIT 
*********
*************/
*, a, p,h1,h2,h3,h4,h5,i, .form-group {
    margin:0;
    font-family: var(--primary-font);
    
}
h1, h2, h3,h4,h5, strong {
    font-family: var(--second-font);
}
html {
    font-size: 62.5%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

@font-face {
    font-family: Roboto;
    src: url(../fonts/Kanit-Regular.ttf);
}

@font-face {
    font-family: Roboto-Bold;
    src: url(../fonts/Kanit-Bold.ttf);
}

:root {
    --primary-font: "Roboto";
    --second-font: "Roboto-Bold";
    --primary-color: #ffaa00;
    --second-color: #0e4a85;
}

body {
    font-family: var(--primary-font);
    font-size: 1.6rem;
}

ul.product-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price_custom {
    margin-bottom: 3rem;
}

.quantity.buttons_added {
    display: none;
}

ul.product-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}
button, button:hover, button:focus {
    outline: none;
}

form.cart {
	display: none;
}
.product_meta 
{
	display: none;
}
a, a:hover, a:focus {
    outline: none;
    text-decoration: none;
}

a.dat_hang_nhan {
    padding: 1rem 1.5rem;
    background: var(--second-color);
    color: #fff;
    font-size: 1.7rem;
    display: inline-block;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    border-radius: 5px;
}

a.dat_hang_nhan:hover {
    background: var(--primary-color);
}

a.dat_hang_nhan i {
    margin-right: 1rem;
}

img {
    max-width: 100%;
    height: auto;
}

.line-text-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}
.line-text-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    -webkit-clip-path: none;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000; /* Above WP toolbar. */
}

#content[tabindex="-1"]:focus {
    outline: 0;
}

.alignleft {
    display: inline;
    float: left;
    margin-right: 1.5em;
}

.alignright {
    display: inline;
    float: right;
    margin-left: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin: 0 auto;
}

.comment-content a {
    word-wrap: break-word;
}

.bypostauthor {
    display: block;
}

.infinite-scroll .posts-navigation, .infinite-scroll.neverending .site-footer {
    display: none;
}

.infinity-end.neverending .site-footer {
    display: block;
}

.page-content .wp-smiley, .entry-content .wp-smiley, .comment-content .wp-smiley {
    border: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
}

embed, object {
    max-width: 100%;
}

.custom-logo-link {
    display: inline-block;
}

.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption .wp-caption-text {
    margin: 0.8075em 0;
}

.wp-caption-text {
    text-align: center;
}

/*Menu*/
.header__mobile {
    background-color: #fff;
}

.header__menu, .header__mobile {
    -webkit-transition: all 0.5s ease;
    -o-transition: position 10s;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.fixed {
    left: 0;
    max-width: 100%;
    overflow: visible;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    -webkit-animation: smoothScroll 1s forwards;
    animation: smoothScroll 1s forwards;
    background: #fff;
    -webkit-box-shadow: 1px 1px 1px var(--second-color);
    box-shadow: 1px 1px 1px var(--second-color);
}

@-webkit-keyframes smoothScroll {
    0% {
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px);
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

}

@keyframes smoothScroll {
    0% {
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px);
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

}

/*Archive Page*/
ul#crumbs, ul#crumbs * {
  font-size: 1.5rem;
  color: var(--second-color);
  /* font-family: var(--primary-font); */
}
.breadcrumb-style {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    position: relative;
    z-index: 3;
    justify-content: space-between;
    background: #3333;
    margin-bottom: 3rem;
    padding: .5rem 1rem;
    align-items: center;
}

.breadcrumb-style h1 {
    color: var(--second-color);
}

ul#crumbs > i {
    margin: 0 6px;
}

ul#crumbs {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #c1c1c100;
    padding: 10px 0;
    margin-bottom: 0;
}

.single__item__img {
    position: relative;
}

.single__item__img > a {
    display: block;
    position: relative;
}

.single__item__cate {
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #000;
    padding: 3px 15px;
}

.single__item__cate a {
    color: #fff;
}

.single__item__img img {
    height: 230px;
    width: 100%;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.single__item__content {
    padding: 8px 10px;
}

.single__item__title h4 {
    line-height: 1.2;
}

.single__item__title h4 a {
    text-decoration: none;
    font-size: 20px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.excerpt p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    margin-bottom: 5px;
}

article.card {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

article.card:hover {
    -webkit-box-shadow: 1px 2px 6px #3333;
    box-shadow: 1px 2px 6px #3333;
    -webkit-transform: translate3d(0px, -5px, 0px);
    transform: translate3d(0px, -5px, 0px);
}
header.archive-header {
    position: relative;
    margin-bottom: 1rem;
}

h1.archive-title.archive-blogs {
    text-transform: uppercase;
    font-family: var(--second-font);
    font-size: 2.5rem;
    background: #3333;
    padding: 0.5rem 1rem;
    color: var(--second-color);
    margin-bottom: 2rem;
}
/*.single__social .fb-like.fb_iframe_widget {
    line-height: 40px;
    }*/


    /*Contact*/
    .top-contact {
        display: inline-block;
        border: 1px solid #3333;
        border-radius: 4px;
        padding: 15px;
        margin: 15px;
    }

    .title-head:after {
        left: 50%;
        -webkit-transform: translate(-50%, 0%);
        -moz-transform: translate(-50%, 0%);
        -ms-transform: translate(-50%, 0%);
        -o-transform: translate(-50%, 0%);
        bottom: -2px;
        content: "";
        width: 76px;
        height: 2px;
        display: inline-block;
        background: #ed1b24;
        position: absolute;
    }

    .title-head {
        color: #000;
        display: block;
        font-size: 24px;
        line-height: 40px;
        margin: 0;
        text-align: center;
        border-bottom: 2px solid #eee;
        padding-bottom: 12px;
        margin-bottom: 25px;
        position: relative;
        font-weight: 400;
    }

    ul.contact-info-page li {
        list-style-type: none;
        line-height: 2;
    }

    ul.contact-info-page {
        padding-left: 0;
    }

    .title-contact {
        font-size: 20px;
        font-weight: 600;
        color: red;
    }

    .col-map iframe {
        width: 100%;
        height: 400px;
        border: 2px solid #3333 !important;
    }

    .col-map {
        overflow: hidden;
    }

    .left-form label, .right-form label, .full-form label {
        width: 100%;
    }

    .left-form {
        width: 48%;
        float: left;
    }

    .right-form {
        width: 48%;
        float: right;
    }

    .left-form input, .right-form input, .full-form .sdt input {
        width: 100%;
        margin-top: 5px;
        padding-left: 10px;
    }

    .full-form textarea {
        height: 120px;
        margin-top: 5px;
        width: 100%;
    }

    div#form-contact input {
        background: #ededed;
        border: 0px;
        border-radius: 3px;
        height: 45px;
        width: 100%;
        padding: 0 5px;
        margin-top: 5px;
    }

    div#form-contact textarea {
        background: #ededed;
        border: 0px;
        border-radius: 0px;
        padding: 10px;
        margin-top: 5px;
    }

    .full-form {
        clear: both;
    }

    #form-contact input.wpcf7-form-control.wpcf7-submit {
        background-color: var(--primary-color);
        border: none;
        color: #fff;
        text-transform: uppercase;
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
        height: 35px;
        font-size: 14px;
        border-radius: 0;
        width: 150px;
        text-align: center;
        margin: 0 auto;
        margin-top: 1rem;
    }

    .widget-map iframe {
        height: 300px;
        width: 100%;
    }

    .info-contact p {
        margin-bottom: 0.5rem;
    }

    /*pagination*/
    .quatrang > a {
        border: 1px solid #333;
        padding: 3px 10px;
        color: #333;
        margin: 0 3px;
    }

    span.page-numbers.current {
        background-color: var(--primary-color)!important;
        color: #fff!important;
        padding: 4px 11px;
        margin: 0 3px;
    }

    /*Tin LiÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âªn Quan*/
    ul.related__list > li > a:hover {
        padding-left: 5px;
        text-decoration: none;
        color: var(--primary-color);
    }

    ul.related__list > li > a {
        -webkit-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
        color: #000;
    }

    ul.related__list {
        padding: 1.5rem;
        list-style: none;
        border: 1px dashed var(--second-color);
    }

    ul.related__list li {
        margin-bottom: .5rem;
    }

    ul.related__list i {
        color: var(--primary-color);
        margin-right: 1rem;
    }

    .title__related {
        margin-bottom: 2rem;
    }

    .title__related h2 {
        text-transform: uppercase;
        font-size: 1.8rem;
        border-bottom: 1px solid #3333;
        padding-bottom: 8px;
    }

    .title__related h2 span {
        border-bottom: 3px solid var(--primary-color);
        padding-bottom: 6px;
        font-family: var(--second-font);
    }

    /*Sidebar*/
    .border__title {
        height: 3px;
        width: 100px;
        background-color: #ff0000;
        margin-bottom: 20px;
    }

    ul.news__post__list > li > a > img {
        width: 45%;
        height: 80px;
        -webkit-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
        -o-object-fit: cover;
        object-fit: cover;
    }

    ul.news__post__list > li > a > h5 {
        width: 55%;
        font-size: 14px;
        padding-left: 8px;
        margin-bottom: 0;
    }

    ul.news__post__list > li {
        margin-bottom: 10px;
    }

    ._sidebar_category ul.news__post__list {
        list-style-type: none;
        padding: 8px;
        padding-bottom: 1px;
        padding: 0;
    }

    .danhmuc ul.list_none li {
        margin: 10px 0;
        border-bottom: 1px solid #cecece;
        padding-bottom: 10px;
    }

    .danhmuc ul.list_none {
        padding: 10px 0px;
        margin-top: -20px;
    }

    iframe.fb_iframe_widget_lift {
        width: 100% !important;
    }

    /*BACK TO TOP*/

    a.cd-top.cd-is-visible {
        visibility: visible;
        opacity: 1;
    }

    a.cd-top, a.cd-top:visited, a.cd-top:hover {
        color: #CCCCCC;
        text-decoration: none;
    }

    a.cd-top.cd-is-visible, a.cd-top.cd-fade-out, .no-touch a.cd-top:hover {
        -webkit-transition: opacity .3s 0s, visibility 0s 0s;
        -o-transition: opacity .3s 0s, visibility 0s 0s;
        transition: opacity .3s 0s, visibility 0s 0s;
    }

    a.cd-top {
        height: 35px;
        width: 35px;
        position: fixed;
        bottom: 10px;
        right: 10px;
        visibility: hidden;
        opacity: 0;
        -webkit-transition: opacity .3s 0s, visibility 0s .3s;
        -o-transition: opacity .3s 0s, visibility 0s .3s;
        transition: opacity .3s 0s, visibility 0s .3s;
        background-color: var(--primary-color);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    a.cd-top.cd-is-visible, a.cd-top.cd-fade-out, .no-touch a.cd-top:hover {
        -webkit-transition: opacity .3s 0s, visibility 0s 0s;
        -o-transition: opacity .3s 0s, visibility 0s 0s;
        transition: opacity .3s 0s, visibility 0s 0s;
    }

    a.cd-top, a.cd-top:visited, a.cd-top:hover {
        color: #CCCCCC;
        text-decoration: none;
    }

    a.cd-top.cd-is-visible {
        visibility: visible;
        opacity: 1;
    }

    a.cd-top.cd-fade-out {
        opacity: 1;
    }
    a.cd-top i {
        font-size: 15px;
        color: #fff;
    }

    /*END BACK TO TOP*/

    .blocg_item {
        margin-bottom: 2.5rem;
    }

    .blocg_item .blogwp .image-blog {
        width: 100%;
        display: block;
        border: 1px solid #f8f8f8;
        box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.05);
        -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.05);
        -moz-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.05);
        -o-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.05);
        -os-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.05);
    }

    .blocg_item .blogwp .image-blog span {
        display: block;
        position: absolute;
        z-index: 3;
        text-align: center;
        width: 70px;
        background: #ff5b02;
        font-size: 30px;
        font-weight: 700;
        color: #fff;
        padding: 5px 0;
    }

    .blocg_item .blogwp .image-blog span span {
        width: 100%;
        text-align: Center;
        font-size: 14px;
        line-height: 24px;
        background: #010e2a;
    }

    .blocg_item .blogwp .content_blog {
        width: 100%;
        padding: 15px 0 0;
        text-align: center;
    }

    .blocg_item .blogwp .content_blog h3 {
        font-size: 14px;
        color: #292929;
        padding: 0;
        margin: 0 0 0px;
        font-weight: 700;
        display: block;
        width: 100%;
        text-align: left;
        text-transform: uppercase;
    }

    .content_blog > h3 > a {
        color: #000;
    }

    a.image-blog img {
        width: 100%;
        height: 160px;
        -o-object-fit: cover;
        object-fit: cover;
        -webkit-transition: all 1s;
        -o-transition: all 1s;
        transition: all 1s;
    }

    /*slider*/
    #jssor_1 img {
        height: auto;
        width: 100%;
    }

    .jssorl-009-spin img {
        -webkit-animation-name: jssorl-009-spin;
        animation-name: jssorl-009-spin;
        -webkit-animation-duration: 1.6s;
        animation-duration: 1.6s;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
    }

    @-webkit-keyframes jssorl-009-spin {
        from {
            -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
        }

        to {
            -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
        }

    }

    @keyframes jssorl-009-spin {
        from {
            -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
        }

        to {
            -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
        }

    }

    .jssorb053 .i {
        position: absolute;
        cursor: pointer;
    }

    .jssorb053 .i .b {
        fill: #fff;
        fill-opacity: 0.5;
    }

    .jssorb053 .i:hover .b {
        fill-opacity: 1;
        fill: #49a010;
    }

    .jssorb053 .iav .b {
        fill-opacity: 1;
        fill: #49a010;
    }

    .jssorb053 .i.idn {
        opacity: .3;
    }

    .jssora093 {
        display: block;
        position: absolute;
        cursor: pointer;
    }

    .jssora093 .c {
        fill: none;
        stroke: #fff;
        stroke-width: 400;
        stroke-miterlimit: 10;
    }

    .jssora093 .a {
        fill: none;
        stroke: #fff;
        stroke-width: 400;
        stroke-miterlimit: 10;
    }

    .jssora093:hover {
        opacity: .8;
    }

    .jssora093.jssora093dn {
        opacity: .6;
    }

    .jssora093.jssora093ds {
        opacity: .3;
        pointer-events: none;
    }


    /*Slide mobile*/
    .slide-mobile a img {
        /*height: 90px;*/
        -o-object-fit: cover;
        object-fit: cover;
        -webkit-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
    }
    #owl-slide-home .owl-nav button {
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        position: absolute;
        color: var(--primary-color);
        font-size: 35px;
    }

    #owl-slide-home .owl-nav button.owl-prev {
        left: 5px;
    }

    #owl-slide-home .owl-nav button.owl-next {
        right: 5px;
    }


    .card-title-style {
        min-height: 48px;
    }

    .card-title-style a {
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        color: #424242;
        line-height: 1.4;
        font-family: var(--second-font);
        font-size: 1.5rem;
    }

    .card-text-style {
        font-size: 14px;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        min-height: 60px;
    }

    .heading-page h1 {
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 30px;
    }

    .blog-posts .blog-loop {
        margin-bottom: 25px;
    }

    .blog-posts .blog-post .blog-post-title {
        margin-bottom: 10px;
        font-size: 18px;
        text-transform: none;
        letter-spacing: 0;
    }

    .blog-posts .blog-post .blog-post-title a {
        color: #5c5c5c;
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
    }

    .blog-posts .blog-post .blog-post-meta {
        margin-bottom: 15px;
        color: #999;
    }

    .blog-posts .blog-post .blog-post-thumbnail img {
        -webkit-transition: all 1s ease-in-out 0s;
        -o-transition: all 1s ease-in-out 0s;
        transition: all 1s ease-in-out 0s;
        -webkit-transform: scale(1);
        -khtml-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        height: 160px;
    }

    .blog-posts .blog-post .blog-post-thumbnail {
        display: block;
        overflow: hidden;
    }

    .blog-post .entry-content p {
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        margin-bottom: 0;
        font-size: 15px;
    }

    .blog-post .entry-content {
        margin-top: 0.5rem;
    }


    .card-image img {
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }
    h1._title_single_post {
        font-family: var(--second-font);
        font-size: 2.8rem;
        margin-bottom: 2rem;
        color: var(--primary-color);
        text-transform: capitalize;
    }



    /*sidebar*/
    h4._title_sidebar_category, h4._title_sidebar_product {
        text-align: center;
        background: var(--primary-color);
        padding: 10px 0;
        text-transform: uppercase;
        font-size: 2rem;
        margin: 0;
        font-family: 'Roboto';
        color: #fff;
    }
    li#woocommerce_product_categories-2>ul>li>a {
        display: block;
        padding: 10px 0;
        text-transform: uppercase;
        color: #333;
        border-bottom: 1px solid #3333;
        font-size: 14px;
    }

    li#woocommerce_product_categories-2>ul>li>a:before {
        font-family: fontawesome;
        content: '\f105';
        margin: 0 10px;
    }

    ._sidebar_category,
    ._sidebar_product_cate {
        margin-bottom: 3rem;
    }

    ._sidebar_category ul.ul_service {
        list-style: square!important;
        padding-left: 1.5rem;
        color: #3333;
        list-style: none;
    }

    .ul_service li:hover a {
        color: var(--second-color);
    }

    ._sidebar_category ul li a {
        color: #848484;
        -webkit-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
    }

    ._sidebar_category ul li:hover img {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }

    ._sidebar_category ul li:hover h5 {
        color: var(--second-color);
        -webkit-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
    }

    ._sidebar_category ul li {
        border-bottom: 1px solid #3333;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }

    ._sidebar_category ul li:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }

    li {}

    /*end sidebar*/

    /*------------------------ Error 404------------------------*/
    #error {
        padding: 40px 0;
        text-align: center;
    }

    .error_title {
        color: #000;
    }

    .error_title p {
        color: #ed3d3f;
        font-size: 18px;
        margin: 0;
        padding-top: 20px;
    }

    .error_title img {
        Padding-top: 50px;
        width: 100%;
        max-width: 500px;
    }

    .error_bottom {
        margin-top: 15px;
    }

    .error_bottom a {
        display: inline-block;
        padding: 10px 30px;
        color: #fff;
        background: #ed3d3f;
        border: 1px solid #fff;
        border-radius: 40px;
        text-decoration: none;
    }

    /*------------------------ END Error 404------------------------*/
    nav.woocommerce-breadcrumb {
        margin: 0 !important;
        position: relative;
        z-index: 9;
        font-family: 'Roboto';
        padding: 1rem !important;
        color: var(--second-color)!important;
    }

    .woocommerce  .crumbtrail nav.woocommerce-breadcrumb {
        font-size: 1.5rem!important;
        background: var(--second-color);
        color: #fff!important;
        margin-bottom: 2rem!important;
        padding: 1.05rem!important;
    }

    .woocommerce .crumbtrail nav.woocommerce-breadcrumb a {
     color: #fff;
     padding-left: 1.5rem;
 }



 .woocommerce .woocommerce-breadcrumb a,
 .woocommerce .woocommerce-breadcrumb a::before {
   color: var(--second-color);
}

.quantity input {
    padding-left: 0;
    padding-right: 0;
    display: inline-block;
    vertical-align: top;
    margin: 0;
    float: left;
    border: 1px solid #ddd !important;
    border-radius: 0 !important;
}

.quantity input[type="number"] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #ddd;
    padding: 0 .75em;
    height: 35px;
    font-size: .97em;
    border-radius: 0;
    max-width: 100%;
    width: 100%;
    vertical-align: middle;
    background-color: #fff;
    color: #333;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    -webkit-transition: color .3s, border .3s, background .3s, opacity .3s;
    -o-transition: color .3s, border .3s, background .3s, opacity .3s;
    transition: color .3s, border .3s, background .3s, opacity .3s;
}

.quantity input[type=number]::-webkit-inner-spin-button, .quantity input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity input[type="button"] {
    overflow: hidden;
    position: relative;
    background-color: #f9f9f9;
    text-shadow: 1px 1px 1px #fff;
    color: #666;
    border: 1px solid #ddd;
    text-transform: none;
    font-weight: normal;
    padding-left: 0.5em;
    padding-right: 0.5em;
    height: 35px;
    line-height: 17px;
}

.minus {
    border-right: 0 !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.plus {
    border-left: 0 !important;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

/*Archive Woocommerce*/
h2.woocommerce-products-header__title.page-title {
    font-size: 22px;
    padding: 5px;
    text-transform: uppercase;
    border-left: 3px solid #ff0000;
    padding-left: 8px;
    margin-bottom: 25px;
    background-color: #bebebe33;
}

.woocommerce ul.products li.product .button {
    margin: 5px auto;
    background-color: transparent;
    border: 1.5px solid #000;
    border-radius: 0;
    font-weight: 400;
    padding: 8px 16px;
    color: #000;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.woocommerce ul.products li.product .button:hover {
    background-color: #000;
    color: #fff;
}

.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
    text-align: center;
    margin-bottom: 2rem;
}

.woocommerce ul.products li.product a img {
    padding: 1rem;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.woocommerce ul.products li.product:hover img {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
}

/*Single woocommerce*/
.twist-pgs .slick-list {
    border: 1px solid #3333;
}

.slider-nav .slick-slide {
    border: 1px solid #3333;
    margin-right: 5px;
}

.twist-pgs .slick-list img {
    height: 350px !important;
    -o-object-fit: scale-down;
    object-fit: scale-down;
}

.slider-nav.slick-slide img {
    -o-object-fit: scale-down;
    object-fit: scale-down;
    height: 90px;
}

.woocommerce div.product div.summary {
    margin-top: 0;
}

.woocommerce div.product .product_title {
    font-size: 2rem;
    text-transform: uppercase;
    color: var(--second-color);
    margin-bottom: 2rem;
    border: none;
}

.summary.entry-summary p.price span.amount:before {
    content: "GiÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡: ";
    color: #000;
}

.summary.entry-summary p.price span {
    color: #ff0000;
    font-size: 22px;
}

.summary.entry-summary .quantity .qty {
    width: 5.5em;
    text-align: center;
    border: 1px solid #000;
    border-radius: 0;
}

.woocommerce div.product form.cart .button {
    border-radius: 0;
    height: 38px;
    background-color: #000;
    width: 150px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.woocommerce div.product form.cart {
    margin-bottom: 15px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    padding-left: 0;
    margin-bottom: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    background-color: var(--primary-color);
    color: #fff;
    border-bottom: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    background-color: transparent;
    border-radius: 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    border: none;
    -webkit-box-shadow: 1px 2px 6px #3333;
    box-shadow: 1px 2px 6px #3333;
    border: 1px solid #85858533;
    border-bottom: 0;
    margin: 0;
    padding: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    padding: 10px 25px;
    text-transform: uppercase;
    display: block;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
    border-bottom: 1px solid #aeaeae33;
}

.woocommerce div.product .woocommerce-tabs .panel {
    -webkit-box-shadow: 1px 2px 6px #3333;
    box-shadow: 1px 2px 6px #3333;
    padding: 15px;
}

section.related.products {
    clear: both;
}

section.related.products > h2 {
    text-transform: uppercase;
    font-size: 22px;
    border-left: 3px solid #ff0000;
    padding-left: 10px;
    margin-bottom: 25px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::after, 
.woocommerce div.product .woocommerce-tabs ul.tabs li::before {
    display: none;
}

/*TAB*/
._main_content_des {
    height: 200px;
    overflow: hidden;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
p._btn_show_more:before {
    height: 55px;
    margin-top: -45px;
    content: -webkit-gradient(linear,0% 100%,0% 0%,from(#fff),color-stop(.2,#fff),to(rgba(255,255,255,0)));
    display: block;
}
._main_content_des.show {
    height: auto;
}
p._btn_show_more a {
    width: 90px;
    display: block;
    overflow: hidden;
    position: relative; 
    line-height: 40px;
    font-size: 14px;
    color: #288ad6;
    margin: 10px auto;
    cursor: pointer;
}
p._btn_show_more a:after {
    content: '';
    width: 0;
    right: 0;
    border-top: 6px solid #288ad6;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    display: inline-block;
    vertical-align: middle;
    margin: -2px 0 0 5px;
}





/*Checkout*/
.woocommerce .checkout #customer_details {
    width: 49%;
    float: left;
}

.woocommerce .checkout .order-wrapper {
    width: 49%;
    float: right;
}

table.shop_table.woocommerce-checkout-review-order-table {
    border: 1px solid #ebebeb !important;
    margin-bottom: 30px;
    border-radius: 0;
}

.woocommerce .checkout #customer_details .col1, .woocommerce .checkout #customer_details .col2 {
    width: 100% !important;
    float: none !important;
}

.woocommerce .checkout .woocommerce-billing-fields h3 {
    font-family: "Roboto", sans-serif !important;
    font-size: 20px !important;
    color: #ffffff !important;
    margin-top: 0 !important;
}

.woocommerce form .form-row-wide, .woocommerce-page form .form-row-wide {
    clear: none;
}

#content .woocommerce-additional-fields h3 {
    display: none !important;
}

.woocommerce-order section {
    width: 49%;
}

.woocommerce .checkout .form-row {
    padding: 0 !important;
    margin: 0 0 10px !important;
}

.woocommerce .checkout label {
    display: inline-block !important;
    min-width: 180px !important;
    color: #484747 !important;
    font-weight: normal !important;
    margin: 0 !important;
}

.woocommerce .checkout input.input-text {
    width: 100% !important;
    margin: 0 !important;
    height: 38px !important;
    padding: 0 10px !important;
    border: 1px solid #e1e1e1 !important;
    border-radius: 0 !important;
    font-family: "Roboto", sans-serif !important;
}

.woocommerce .checkout textarea {
    border: 1px solid #e1e1e1 !important;
    border-radius: 0 !important;
    font-family: "Roboto", sans-serif !important;
    height: 120px !important;
    line-height: inherit !important;
    display: inline-block !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    width: 100% !important;
    padding: 10px !important;
}

.woocommerce .checkout #order_review_heading, .woocommerce .checkout #payment_heading, .woocommerce-billing-fields > h3, .woocommerce-additional-fields > h3 {
    background: #424242;
    color: #fff;
    font-family: "Roboto", sans-serif !important;
    font-size: 18px !important;
    display: block !important;
    text-align: left !important;
    padding: 12px 15px !important;
    font-weight: lighter !important;
    border-bottom: 1px solid #e1e1e1 !important;
    margin: 0;
}

.woocommerce .checkout ul.payment_methods {
    text-align: left !important;
    border: 1px solid #e1e1e1 !important;
    margin: 0 !important;
    list-style: none outside !important;
    padding: 15px 0 !important;
}

.woocommerce .checkout ul.payment_methods li {
    margin: 0 0 15px 0 !important;
    font-weight: normal !important;
    list-style: none !important
}

.woocommerce .checkout ul.payment_methods li input {
    margin: 0 1em 0 0 !important;
}

.woocommerce .checkout label {
    display: inline-block !important;
    width: 100%;
    color: #484747 !important;
    font-weight: normal !important;
    margin: 0 !important;
}

.woocommerce .checkout div.payment_box {
    width: 95% !important;
    position: relative !important;
    padding: 10px !important;
    margin: 15px 0 0px 15px !important;
    border-radius: 2px !important;
    background-clip: padding-box !important;
    background: #f8f8f8 !important;
}

.woocommerce .checkout div.payment_box:after {
    content: "" !important;
    display: block !important;
    border: 8px solid #f8f8f8 !important;
    border-right-color: transparent !important;
    border-left-color: transparent !important;
    border-top-color: transparent !important;
    position: absolute !important;
    top: -16px !important;
    left: 20px !important;
    margin: 0 !important;
}

#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
    background: none !important;
}

li.wc_payment_method.payment_method_cod {
    padding-left: 15px;
}

.woocommerce .checkout .form-row.place-order {
    margin: 20px 0 !important;
    text-align: center !important;
}

.woocommerce .checkout .form-row.place-order .button {
    height: 38px !important;
    line-height: 38px !important;
    padding: 0 40px !important;
    margin: 0 auto !important;
    display: table !important;
    float: none !important;
}

.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {
    float: right;
    width: 100%;
}

p#billing_email_field {
    width: 48%;
    float: right;
}

p#billing_phone_field {
    width: 48%;
    float: left;
}

div#order_review tr.cart-subtotal, .woocommerce-terms-and-conditions-wrapper {
    display: none;
}

@media (max-width:768px) {
    .woocommerce .checkout #customer_details, .woocommerce .checkout .order-wrapper {
        width: 100%;
    }

}

@media (min-width:769px) {
    section.woocommerce-customer-details {
        float: right;
    }

}

.woocommerce-billing-fields span.woocommerce-input-wrapper {
    width: 100%;
}

h3#payment_heading {
    margin-top: 10px !important;
}

#order_comments_field span.woocommerce-input-wrapper {
    width: 100%;
}

button#place_order {
    background-color: #000;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    background-color: #000;
}

/*Order*/
.woocommerce ul.order_details {
    -webkit-box-shadow: 1px 2px 6px #3333;
    box-shadow: 1px 2px 6px #3333;
    padding: 10px;
}

h2.woocommerce-order-details__title, h2.woocommerce-column__title {
    background-color: #000;
    color: #fff;
    font-size: 22px;
    text-transform: uppercase;
    padding: 8px;
    text-align: center;
}

table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details {
    -webkit-box-shadow: 1px 2px 6px #3333;
    box-shadow: 1px 2px 6px #3333;
}

#cart-page .cart_totals {
    width: 100%;
}

#cart-page thead th {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    color: #000;
    opacity: 0.7;
}

.title-woocommerce {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
    color: #000;
    opacity: 0.7;
}

#cart-page td.product-remove {
    padding: 0;
    text-align: center;
}

#cart-page td.product-remove a {
    margin-right: 0;
    display: inline-block;
}

#cart-page .product-thumbnail {
    max-width: 70px;
    padding: 10px 0;
}

#cart-page .product-thumbnail img {
    max-width: 90px;
    height: auto;
    width: 100%;
}

#cart-page .coupon label {
    width: 100%;
    color: #F26531;
    border-bottom: 2px solid #ebebeb;
    margin-bottom: 15px;
    padding-bottom: 7px;
}

#cart-page .coupon label svg {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

#cart-page .coupon input {
    width: 100%;
    height: 40px;
    padding: 0 8px;
    margin: 0 0 10px;
    border: 1px solid rgba(0, 0, 0, .1) !important;
    border-radius: 5px;
}

#cart-page .coupon button {
    width: 100%;
    margin-top: 10px;
    padding: 14px 0;
    background: #F26531;
    color: #fff;
    font-size: 18px;
}

#cart-page .actions button {
    font-size: 14px;
}

#cart-page .wc-proceed-to-checkout a {
    padding: 14px 0;
    text-transform: uppercase;
    background: #1abc9c;
}

#cart-empty {
    text-align: center;
}

#checkout-page .shop_table td:last-child, #checkout-page .shop_table th:last-child, .del-tksyou td:last-child, .del-tksyou th:last-child {
    text-align: right;
}

#checkout-page .class-form input, #checkout-page .class-form .select2-selection, #checkout-page textarea {
    width: 100%;
    height: 35px;
    border: 1px solid rgba(0, 0, 0, .1) !important;
    border-radius: 5px;
    padding: 0 8px;
}

#checkout-page .class-form textarea {
    height: 120px;
    padding: 8px;
}

#checkout-page .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 35px !important;
}

.woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover, .woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt, .woocommerce .checkout #order_review_heading, .woocommerce .checkout #payment_heading, .woocommerce-billing-fields > h3, .woocommerce-additional-fields > h3, h2.woocommerce-order-details__title, h2.woocommerce-column__title {
    background: var(--primary-color) !important;
    color: #fff !important;
    text-transform: uppercase;
    font-size: 1.6rem;
}

h1.entry-title {
    margin-bottom: 45px;
    font-weight: bold;
}

.woocommerce-order > p {
    display: none;
}

#add_payment_method #payment ul.payment_methods li input, .woocommerce-cart #payment ul.payment_methods li input, .woocommerce-checkout #payment ul.payment_methods li input {
    margin: 7px 5px 0 0;
    float: left;
}

.woocommerce ul.order_details li {
    float: none;
    border: none;
    font-size: 14px;
    text-transform: initial;
    margin: 0;
    width: 100%;
    padding: 0;
    position: relative;
    padding-left: 24px;
}

.woocommerce ul.order_details li:after {
    content: "-";
    position: absolute;
    left: 0;
    top: 4px;
    line-height: 10px;
    font-size: 40px;
}

ul.woocommerce-order-overview.woocommerce-thankyou-order-details.order_details {
    padding: 15px;
}

.woocommerce ul.order_details li strong {
    display: inline-block;
    font-size: 14px;
}

section.woocommerce-order-details {
    float: left;
}

.class-tksyou {
    background: #eee;
    padding: 15px;
    -webkit-box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(0, 0, 0, 0.07), inset 0 0 0 1px rgba(0, 0, 0, 0.05);
    box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(0, 0, 0, 0.07), inset 0 0 0 1px rgba(0, 0, 0, 0.05);
    margin-top: 39px;
}

.class-tksyou > p {
    font-size: 18px;
}

.button-mh {
    text-align: center;
}

.button-mh a {
    display: inline-block;
    padding: 7px 25px;
    background: #1abc9c;
    color: #ffffff;
    text-decoration: none;
}

.class-product li {
    text-align: center;
}

.price {
    color: red !important;
}

.price del {
    color: #888 !important;
    margin-right: 10px;
}

.price ins {
    color: red !important;
    text-decoration: none;
}

.woocommerce .quantity .qty {
    height: 35px;
    border-radius: 5px;
    border: 1px solid #ebebeb;
}

.woocommerce div.product form.cart .button {
    height: 35px;
    background: #e11b1e;
}

.woocommerce-notices-wrapper {
    display: none;
}

p.return-to-shop {
    text-align: center;
}

.woocommerce a.remove {
    width: 30px;
    height: 22px;
    position: relative;
    -webkit-transition: opacity 200ms;
    -o-transition: opacity 200ms;
    transition: opacity 200ms;
    vertical-align: top;
    display: block;
    -webkit-appearance: none;
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    text-indent: -9999px;
}

.woocommerce a.remove:before, .woocommerce a.remove:after {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAQCAQAAACMnYaxAAAAXUlEQVR4XsWQQQrAQAgD84Pti/JSoaftN1MCdgXxXgYvGfUQyABE4DEIUJmeuKgVlJI5em0RGTesFXXZuLwCzvL2pYbHmfCTNSXxpyyajLGClFy7K1dgaaho7YYovIpO3rju6hYFAAAAAElFTkSuQmCC) 0 0 no-repeat;
    left: 8px;
    position: absolute;
    right: 8px;
    top: 2px;
    display: inline-block;
    content: '';
}

.woocommerce a.remove:before {
    height: 6px;
    -ms-transform-origin: -7% 100%;
    transform-origin: -7% 100%;
    -moz-transform-origin: -7% 100%;
    -webkit-transform-origin: -7% 100%;
    -webkit-transition: -webkit-transform 150ms;
    transition: -webkit-transform 150ms;
    -o-transition: transform 150ms;
    transition: transform 150ms;
    transition: transform 150ms, -webkit-transform 150ms;
    -moz-transition: transform 150ms;
    -webkit-transition: transform 150ms;
    width: 14px;
}

.woocommerce a.remove:after {
    background-position: -1px -4px;
    height: 12px;
    margin-left: 1px;
    margin-right: 2px;
    margin-top: 4px;
    width: 11px;
}

.woocommerce a.remove:hover:before {
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -webkit-transition: -webkit-transform 250ms;
    transition: -webkit-transform 250ms;
    -o-transition: transform 250ms;
    transition: transform 250ms;
    transition: transform 250ms, -webkit-transform 250ms;
    -moz-transition: transform 250ms;
    -webkit-transition: transform 250ms;
}

.woocommerce a.remove:hover {
    background: transparent;
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input:focus, button:focus {
    outline: none;
}

.content-single-product-bg {
    display: inline-table;
    width: 100%;
    background: #ebebeb;
    padding: 30px;
    margin-bottom: 15px;
}

.panel {
    background: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
}

ol.flex-control-nav.flex-control-thumbs {
    margin-top: 15px !important;
}

.woocommerce-product-gallery__image.flex-active-slide {
    height: 326px;
    overflow: hidden;
}

input#submit {
    background: #1abc9c !important;
    color: #fff !important;
    padding: 10px 25px !important;
}

.flex-control-nav.flex-control-thumbs li {
    margin-right: 10px !important;
    width: 18.45% !important;
}

.flex-control-nav.flex-control-thumbs li img {
    border: 1px solid #fff;
    padding: 8px;
}

.flex-control-nav.flex-control-thumbs li img.flex-active {
    border: 1px solid #1abc9c;
    padding: 8px;
}

.add_to_cart_button {
    background: #1abc9c !important;
    color: #fff !important;
}

.woocommerce div.product .woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(5) {
    clear: initial;
    margin-right: 0 !important;
}

p#billing_country_field {
    display: none;
}

li#woocommerce_product_categories-2 {
    list-style: none;
}


/* Smartphones (portrait and landscape) ----------- */
@media (max-width:767px) {
    .blog-posts .blog-post .blog-post-title {
        margin: 12px 0;
    }

    .blog-posts .blog-post .blog-post-thumbnail img {
        height: 230px;
    }

    .blog-posts .blog-loop {
        margin-bottom: 30px;
    }
    td.product-subtotal {
        clear: both;
    }
    td.product-quantity {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    p#billing_phone_field, p#billing_email_field {
        width: 100%;
        clear: both;
    }

}


/* iPads (portrait and landscape) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) {
    td.product-subtotal {
        clear: both;
    }
    td.product-quantity {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

}  