@font-face {
    font-display: swap;
    font-style: normal;
    font-family: "SF pro Bold";
    font-weight: 500;
    src: url(fonts/sfp/SFProDisplay-Bold.woff) format("woff")
}

:root {
    --main-color: #29466e;
    --second-color: #29466e;
    --color-search: #29466e;
    --bg-header-bottom: #2f5180;
    --bg-btn-hover: #0f97db;
    --bg-btn-light: #de0b0b;
    --bg-footer: #333333;
    --bg-left-footer: #C30718;
    --bg-newsletters: rgba(30,30,30,0.8);
    --bg-box-product: rgba(227, 0, 15, 0.8);
    --news-date: #446084;
    --color-title: #4d4d4d;
    --color-border-content: #ebe6e9;

    --main-font: Arial,Helvetica,sans-serif;
    --title-font: "SF pro Bold";
}
body {
    font-family: var(--main-font);
    font-size: 15px;
    font-weight: 400;
    color: #545053;
    line-height: 1.6;
    top: 0!important;
    position: relative;
}
.container {
    width: unset!important;
    max-width: 1230px;
}
.row-no-mar {
    margin-right: 0;
    margin-left: 0;
}
.row-no-mar > div[class*="col-"] {
    padding-left: 0;
    padding-right: 0;
}
.row-mar2 {
    margin-right: 2px;
    margin-left: 2px;
}
.row-mar2 > div[class*="col-"] {
    padding-left: 2px;
    padding-right: 2px;
}
.row-mar5 {
    margin-right: -5px;
    margin-left: -5px;
}
.row-mar5 > div[class*="col-"] {
    padding-left: 5px;
    padding-right: 5px;
}
.row-mar75 {
    margin-right: -7.5px;
    margin-left: -7.5px;
}
.row-mar75 > div[class*="col-"] {
    padding-left: 7.5px;
    padding-right: 7.5px;
}
.row-mar10 {
    margin-right: -10px;
    margin-left: -10px;
}
.row-mar10 > div[class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
}
.row-flex {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.row-flex-none {
    display: flex;
    flex-wrap: wrap;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.5;
    color: #555;
    font-weight: 700;
    font-family: var(--title-font);
}
a {
    text-decoration: none;
    color: #333;
    cursor: pointer;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease ;
    -ms-transition: all .3s ease ;
    -o-transition: all .3s ease ;
    transition: all .3s ease ;
}
a:hover,a:focus,a:active {
    text-decoration: none;
    color: var(--main-color);

}
img{
    max-width: 100%;
    vertical-align: middle;
}
input[type='text'], input[type='password'], textarea{border-radius: 0;}
p {
    margin-top: 0px;
}



.btn-v, a.btn-v, .button {
    position: relative;
    background: var(--main-color);
    font-family: var(--title-font);
    font-size: 15px;
    border: 0;
    color: #fff;
    display: inline-block;
    padding: 5px 18px;
    border-radius: 25px;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    text-transform: uppercase;
    color: #fff;
    outline: none;
    overflow: hidden;
    box-shadow: 0 .15em .2em 0 #dbd3d3;
    z-index: 2;
}
.btn-v:hover, a.btn-v:hover, .button:hover{
    color: #fff;
}
.btn-v:after, a.btn-v:after, .button:after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    transition: height 0.3s;
    background: var(--bg-btn-hover);
    z-index: -1;
}
.btn-v:hover:after, a.btn-v:hover:after, .button:hover:after {
    height: 100%;
}

form {
    padding: 0;
    margin: 0;
    display: inline;
}

input[type='radio'] {
    margin-right: 4px;
}

select {
    background: #F8F8F8;
    border: 1px solid #CCCCCC;
    padding: 2px;
}

.loader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.mar-top1 {
    margin-top: 10px;
}
.mar-top2 {
    margin-top: 20px;
}
.mar-top3 {
    margin-top: 30px;
}
.mar-top4 {
    margin-top: 40px;
}
.mar-top6 {
    margin-top: 60px;
}
.mar-bt80{
    margin-bottom: 80px;
}
.mar-bt50{
    margin-bottom: 50px;
}
.mar-bt30{
    margin-bottom: 30px;
}
.mar-bt20{
    margin-bottom: 20px;
}
.mar-bt15{
    margin-bottom: 15px;
}
.pad-center1 {
    padding: 0 10px;
}
.pad-center2 {
    padding: 0 20px;
}
.pad-center3 {
    padding: 0 30px;
}
.pad-full5 {
    padding: 5px;
}

/* fix bootstrap */
.list-inline {
    margin: 0;
}
.tooltip {
    font-size: 13px;
    text-transform: unset;
    max-width: unset!important;
}

/*header*/
header#header {
    position: relative;
    z-index: 999;
}
.header-top {
    padding: 10px 0;
}
.header-top-inner {
    display: flex;
    align-items: center;
}
.header-top-item {
    display: flex;
    flex-grow: 1;
    align-items: center;
}
.header-top-item.header-top-left {
    justify-content: flex-start;
}
.header-top-item.header-top-center {
    justify-content: center;
}
.header-top-item.header-top-right {
    justify-content: flex-end;
}
.header-top .logo {
    margin-right: 20px;
}
.header-top .logo img {
    max-height: 80px;
}
.header-top .header-info {
    text-align: right;
}
.header-top .header-info h2 {
    text-transform: uppercase;
    font-size: 25.5px;
    margin: 0;
    white-space: nowrap;
    color: var(--main-color);
}
.header-top .header-info p {
    margin-bottom: 0;
    white-space: nowrap;
}
.box-search-top{
    position: relative;
    width: 100%;
}
.box-search-top input[type='text']{
    width: 100%;
    padding-left: 12px;
    padding-right: 50px;
    border: 1px solid var(--color-search);
    color: var(--color-search);
    height: 38px;
    line-height: 40px;
    font-size: 15px;
    background: transparent;
    outline: none!important;
}
.box-search-top input[type='text']::placeholder {
    color: var(--color-search);
}
.box-search-top button.button-search{
    background: transparent;
    border-radius: 0;
    border: 0;
    color: var(--main-color);
    padding: 0 14px;
    height: 32px;
    position: absolute;
    top: 3px;
    right: 3px;
}
.header-top-item.header-top-right > div {
    margin-left: 38px;
}
.header-link-item a {
    font-size: 14px;
    white-space: nowrap;
}
.header-link-item a i {
    margin-right: 5px;
}
.header-hotline {
    display: flex;
    align-items: center;
}
.header-hotline-icon {
    margin-right: 18px;
}
.header-hotline-icon i.fa {
    font-size: 36px;
    line-height: 1;
    color: var(--second-color);
}
.header-hotline-text {
    display: flex;
    flex-direction: column;
}
.header-hotline-text span.text {
    font-size: 13px;
    line-height: 16px;
    white-space: nowrap;
}
.header-hotline-text a {
    color: var(--second-color);
    font-weight: bold;
    font-size: 14px;
    line-height: 16px;
}
.header-hotline-text a:hover {
    color: var(--main-color);
}

/**/
.breadcrumb{    border-radius: 0 !important;}
.breadcrumb, .breadcrumb a:first-child i{
    margin-right: 0;
}
.content-map iframe{
    width: 100%; 
    height: 230px;
}
.banner_content_top {
    width: 100%;
    float: left;
    margin-top: 10px;
    margin-bottom: 30px;
}

/*cart*/
#cart-top-all {
    position: relative;
    float: right;
}
#cart-top-all .cart-inner {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    padding: 8px 15px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
}
#cart-top-all .cart-inner-icon {
    margin-left: 8px;
    font-size: 21px;
}
#cart-top-all span.cart-items {
    position: absolute;
    right: 0;
    top: 0;
    height: 20px;
    line-height: 21px;
    min-width: 20px;
    font-size: 11px;
    text-align: center;
    font-weight: 500;
    background: #fff;
    color: var(--main-color);
    border-radius: 50%;
    z-index: 1;
}
#cart > .content{
    margin-top: 0px;
    display: none;
    position: absolute;
    background: #fff;
    max-width: 385px;
    right: 0;
    top: 100%;
    padding: 0 15px;
    overflow: hidden;
    width: max-content;
    min-width: 250px;
    z-index: 1000;
    box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.1);
}
#cart > .content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
#cart>.content .mini-cart-info li {
    padding: 10px 0;
    position: relative;
    text-align: left;
    width: 100%;
    display: inline-block;
}
#cart>.content .mini-cart-info li .image {
    width: 30%;
    float: left;
}
#cart>.content .mini-cart-info li .info-cart-r{
    width: 70%;
    float: left;
    padding-left: 15px;
    padding-right: 15px;
}
#cart>.content .mini-cart-info li .info-cart-r .remove {
    position: absolute;
    top: 15px;
    right: 0px;
}
#cart>.content .mini-cart-info li .info-cart-r .name a {
    font-size: 13px;
    font-weight: 500;
}
#cart>.content .mini-cart-info li .info-cart-r .quantity,
#cart>.content .mini-cart-info li .info-cart-r .total {
    display: inline-block;
    font-size: 13px;
    text-transform: lowercase;
}
#cart>.content .mini-cart-total li {
    width: 100%;
    display: inline-block;
    padding-bottom: 10px;
}
#cart>.content .checkout a {
    text-align: center;
    width: 100%;
    display: inline-block;
    border: 1px solid #222;
    height: 35px;
    line-height: 32px;
    font-weight: 500;
    transition: all 0.3s;
    margin-bottom: 10px;
}
#cart>.content .checkout a:last-child{
    margin-bottom: 20px;
}
#cart>.content .checkout a:hover{
    color: #fff;
    background: #1c1c1c;
    border-color: #1c1c1c;
}
#cart>.content .empty {
    padding: 10px 0;
}
#cart .cart-qty{
    display: inline-block;
    padding: 0 5px;
    vertical-align: bottom;
    cursor: pointer;
    text-align: left;
}
#cart .cart-title{
    font-size: 14px;
    display: block;
    line-height: 25px;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
}
#cart #CartCount{
    display: inline-block;
    font-weight: 400;
    line-height: 20px;
    font-size: 14px;
    color: #000;
}
/*end*/

/* box-heading */
.box-heading h2 {
    font-size: 26px;
    margin: 0 0 20px;
    text-transform: uppercase;
    color: var(--main-color);
}
.box-heading a {
    color: var(--main-color);
}
.box-heading p {
    margin-bottom: 30px;
}
.box-heading ul {
    margin: 0;
    padding: 10px;
}
.box-heading ul li {
    display: inline-block;
    margin: 0 8px;
}
.box-heading ul li a {
    color: #fff;
    display: inline-block;
    padding-left: 10px;
}
.box-heading .view-more a {
    font-size: 14px;
    margin-left: auto;
    color: white;
    margin-right: 10px;
    font-weight: bold;
}

/* banner top */
.banner-top-all {
    background-color: #000;
    background-size: cover;
    background-position: center;
}
.banner-top-all .info {
    display: flex;
    padding: 60px 0;
    color: #fff;
    flex-direction: column;
}
.banner-top-all .info h1 {
    margin: 0;
    font-size: 25px;
    color: #fff;
}
.banner-top-all .info .sub {
    font-size: 16px;
    font-weight: bold;
    line-height: 22px;
    margin-top: 5px;
}

/* for all module*/
.box-product_{
    float: left;
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s;
    height: 100%;
}
.box-product_:hover {
    box-shadow: 0 0.04rem 0.08rem rgba(0, 0, 0, 0.1), 0 0.13rem 0.4rem rgba(0, 0, 0, 0.15);
}
.box-product_ .image {
    position: relative;
    text-align: center;
    width: 100%;
    overflow: hidden;
    border: 1px solid #fff7e6;
}
.box-product_ .image img{ 
    margin: auto;
    width: 100%;
    transition: all 0.3s;
}
.box-product_:hover .image img {
    opacity: 0.8;
}
.box-product_ .image a.quick-view {
    position: absolute;
    background: #393447;
    top: 50%;
    left: 50%;
    margin-top: -53px;
    margin-left: -40px;
    font-size: 12px;
    padding: 6px 10px;
    color: #fff;
    transition: all 0.3s;
    opacity: 0;
}
.box-product_ .image a.quick-view:before {
    content: "\f00e";    
    font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -25px;
    margin-top: 25px;
    border-radius: 50%;
    background-color: #fff;
    width: 50px;
    height: 50px;
    color: var(--main-color);
    line-height: 50px;
    font-size: 20px;
}
.box-product_ .image a.quick-view:after {
    position: absolute;
    content: "";
    border-top: 5px solid #393447;
    display: block;
    bottom: -5px;
    left: 50%;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    margin-left: -3px;
}
.box-product_ :hover .image a.quick-view {
    opacity: 1;
}
.box-product_ .info-p {
    float: left;
    width: 100%;
    text-align: left;
    position: relative;
    padding: 15px 7px;
}
.box-product_ .info-p p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 2px 0;
    text-align: center;
    font-size: 11px;
    text-transform: uppercase;
    color: rgb(119 119 119 / 70%);
}
.box-product_ .info-p .name {
    text-align: center;
}
.box-product_ .info-p .name a {
    font-size: 16px;
    font-family: var(--title-font);
    display: inline-block;
}
.box-product_ .info-p .price {
    text-align: center;
}
.box-product_ .info-p .price del {
    color: #cc1212;
    opacity: 0.5;
}
.box-product_ .info-p .price span {
    font-weight: bold;
    color: var(--main-color);
}

/* all  */
.content-mid .desc * {
    max-width: 100%;
}
.content-mid .desc image {
    height: auto!important;
    max-width: 100%;
}
.content-mid .desc iframe {
    max-width: 100%;
}

/* news detail */
.news-page h1.title-all-page {
    font-size: 25px;
    margin: 0 0 22px;
    padding: 0;
    color: var(--color-title);
}
.news-page .image-news {
    position: relative;
    margin-bottom: 45px;
}
.news-page .image-news img {
    width: 100%;
}
.news-page .news-info {
    display: flex;
    flex-wrap: wrap;
    padding: 8px 0;
    margin-bottom: 15px;
    border-top: 1px solid var(--color-border-content);
    border-bottom: 1px solid var(--color-border-content);
    color: #b39fac;
}
.news-page .news-info i {
    margin-right: 3px;
}
.news-page .date-add-full {
    margin-right: 20px;
}
.news-page .cats a {
    color: #b39fac;
}
.news-page .cats a:hover {
    color: var(--main-color);
}
.news-description {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--color-border-content);
}
.news-description .product-social-share {
    margin-top: 40px;
}
.tags-list {
    margin-bottom: 10px;
}
.news-related-heading {
    border-left: 4px solid #1a73b7;
    padding-left: 20px;
    margin-bottom: 20px;
    font-size: 21px;
    font-family: var(--title-font);
    line-height: 1.1;
    text-transform: uppercase;
}

.service-form {
    margin: 25px 0;
    padding: 15px;
    background: #f6f6f6;
    border-top: 2px solid #1a1a1a;
}
.service-form h3 {
    margin-top: 0;
}

.project-info {
    background: #f7f7f7;
    padding-top: 30px;
}
.project-info-inner {
    position: sticky;
    top: 0;
}
.project-info h2 {
    font-size: 25px;
    margin: 0 0 10px;
}
.project-info .title {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 5px;
}
.project-info .info {
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 8px;
}
.project-info .info:last-child {
    border-bottom: 0;
}
.project-info .info.info-more {
    max-height: 200px;
    overflow: hidden auto;
}
.project-info .info p {
    margin-bottom: 5px;
}

/* product cat */
.sort-title-cat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    margin-top: 30px;
}
h1.title-cat-product {
    font-size: 25px;
    margin: 0 20px 0 0;
}
.sort-title-cat select {
    height: 38px;
    padding: 0 8px;
    border: 1px solid var(--main-color);
    background: transparent;
    cursor: pointer;
}

/*-- product detail --*/
.tab-title {
    border-bottom: 1px solid #ddd;
    margin-bottom: 25px;
}
.tab-title span {
    display: inline-block;
    position: relative;
    font-family: var(--title-font);
    text-transform: uppercase;
    border-bottom: 2px solid var(--main-color);
    margin-bottom: -1px;
}
#tab-related .slide-news-related,
#tab-related .slide-news-related .item {
    padding: 0;
}
body[class*='product-product'] #column-right {
    position: sticky;
    top: 0;
}
#myModal .form-request {
    border-radius: 5px;
    overflow: hidden;
    padding: 8px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
#myModal .form-request h3 {
    color: #e02828;
    font-size: 18px;
    margin: 0 0 5px;
}
#myModal .form-request p.sub {
    font-size: 14px;
}

/* img product detail */

/*end*/


/* button slide */
.owl-carousel .owl-buttons [class*=owl-]{
    display: block;
    font-size: 0;
    color: #999999;
    position: absolute;
    text-align: center;
    top: 50%;
    margin-top: -20px;
    opacity: 1;
    background-color: #ebebeb;
    border-radius: 0;
    border: 1px solid transparent;
    width: 30px;
    height: 30px;
    text-shadow: none;
}
.owl-carousel .owl-buttons [class*=owl-]:hover { background: #000; }
.owl-carousel .owl-buttons .owl-prev, .owl-carousel:hover .owl-buttons .owl-prev{
    left: 10px;
}
.owl-carousel .owl-buttons .owl-next, .owl-carousel:hover .owl-buttons .owl-next{
    right: 10px;
}
.owl-carousel:hover .owl-buttons div{
    opacity: 1;
}
.owl-carousel .owl-buttons div i{
    font-size: 24px;
    line-height: 29px;
    margin: 0;
    font-weight: 600;
}
/*nav */
.nav-mobi{ display: none; }
.navbar-toggle {
    margin-top: 19px;
}
.navbar-default .navbar-toggle .icon-bar {
    background-color: #FFF;
}
.navbar-default .navbar-toggle {
    border-color: #FFF;
}
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
    background-color: #FB458F;
}
.navbar-default .navbar-nav > li > a {
    color: #FFFFFF;
    text-align: center;
}
.navbar-default .navbar-collapse, .navbar-default .navbar-form {
    border-color: #FB458F;
}
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
    color: #FFFFFF;
    background-color: transparent;
    text-decoration: underline;
}
.navbar-nav > li > a {
    padding-top: 27px;
    padding-bottom: 15px;
    font-size: 16px;
    padding-right: 25px;
    padding-right: 16px;
}
/*box list*/
.box-list{
    max-width: 100%;
    width: 100%;
    float: left;
    position: relative;
    z-index: 99;
}

/* language */
#language {
    display: inline-block;
    width: auto;
}
#language > ul > li{ display: inline-block; margin-right: 10px;}

#language .drop-button {
    background: none repeat scroll 0 0 #fff;
    border: 1px solid #fff;
    padding: 3px 5px;
    border-radius: 2px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

#language .drop-button span {
    margin: 0 4px;
}
/*banner-top-all (At the top of Breadcrumb)*/

/* breadcrumb */
.breadcrumb, .breadcrumb a {
    font-size: 16px;
    color: #222;
}
.breadcrumb {
    background: #f7f7f7;
    margin: 0 0 50px;
    padding: 10px 0;
}
body.information-contact .breadcrumb {
    margin: 0;
}
.breadcrumb, .breadcrumb a:first-child i {
    float: left;
    width: 100%;
}
.breadcrumb a:last-child {
    font-weight: 700;
}

.success, .warning, .attention, .information {
    padding: 10px 10px 10px 33px;
    margin-bottom: 15px;
    color: #555555;
}
.success i.fa, .warning i.fa, .attention i.fa, .information i.fa {
    margin-right: 10px;
}
.success {
    background: #EAF7D9;
    border: 1px solid #BBDF8D;
}
.warning {
    background: #FFD1D1 ;
    border: 1px solid #F8ACAC;
}

.attention {
    background: #FFF5CC;
    border: 1px solid #F2DD8C;
}

.success .close, .warning .close, .attention .close, .information .close {
    float: right;
    padding-top: 4px;
    padding-right: 4px;
    cursor: pointer;
}

.alert {
    padding: 4px;
    margin-bottom: 15px;
    color: #555555;
    background: #FFF5CC;
    border: 1px solid #F2DD8C;
    text-align: center;
}

.required {
    color: #FF0000;
    font-weight: bold;
}

.error {
    display: block;
    color: #FF0000;
}

.help {
    color: #999;
    font-size: 10px;
    font-weight: normal;
    display: block;
}

table.form {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table.form tr td:first-child {
    width: 150px;
}

table.form > * > * > td {
    color: #000000;
}

table.form td {
    padding: 4px;
}

input.large-field, select.large-field {
    width: 300px;
}

table.list {
    border-collapse: collapse;
    width: 100%;
    border-top: 1px solid #DDDDDD;
    border-left: 1px solid #DDDDDD;
    margin-bottom: 20px;
}

table.list td {
    border-right: 1px solid #DDDDDD;
    border-bottom: 1px solid #DDDDDD;
}

table.list thead td {
    background-color: #EFEFEF;
    padding: 0px 5px;
}

table.list thead td a, .list thead td {
    text-decoration: none;
    color: #222222;
    font-weight: bold;
}

table.list tbody td {
    padding: 0px 5px;
}

table.list .left {
    text-align: left;
    padding: 7px;
}

table.list .right {
    text-align: right;
    padding: 7px;
}

table.list .center {
    text-align: center;
    padding: 7px;
}

table.radio {
    width: 100%;
    border-collapse: collapse;
}

table.radio td {
    padding: 5px;
}

table.radio td label {
    display: block;
}

table.radio tr td:first-child {
    width: 1px;
}

table.radio tr td:first-child input {
    margin-top: 1px;
    margin-left: 0;
    position: static;
}

table.radio tr.highlight:hover td {
    background: #F1FFDD;
    cursor: pointer;
}

.pagenumber {
    display: inline-block;
    width: 100%;
    padding-top: 6px;
}

.pagenumber .links {
    float: left;
    padding-top: 6px;
}

.pagenumber .links .pagination {
    display: inline-block;
    margin: 0;
    padding-left: 0;
}

.pagenumber .links .pagination > li {
    display: inline;
}

.pagenumber .links .pagination > li > a,
.pagenumber .links .pagination > li > span {
    background-color: #ffffff;
    border: 1px solid #dddddd;
    color: #000;
    float: left;
    line-height: 1.42857;
    margin-left: -1px;
    padding: 4px 10px;
    position: relative;
    text-decoration: none;
}

.pagenumber .links .pagination > li:first-child > a,
.pagenumber .links .pagination > li:first-child > span {
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px;
    margin-left: 0;
}

.pagenumber .links .pagination > li:last-child > a,
.pagenumber .links .pagination > li:last-child > span {
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
}

.pagenumber .links .pagination > li > a:hover,
.pagenumber .links .pagination > li > span:hover,
.pagenumber .links .pagination > li > a:focus,
.pagenumber .links .pagination > li > span:focus {
    background-color: #eeeeee;
    border-color: #dddddd;
    color: #000;
}

.pagenumber .links .pagination > .active > a,
.pagenumber .links .pagination > .active > span,
.pagenumber .links .pagination > .active > a:hover,
.pagenumber .links .pagination > .active > span:hover,
.pagenumber .links .pagination > .active > a:focus,
.pagenumber .links .pagination > .active > span:focus {
    background: none repeat scroll 0 0 #000;
    border-color: #000;
    border-style: solid;
    border-width: 1px;
    box-shadow: 0 1px 0 rgba(120, 200, 230, 0.5) inset, 0 1px 0 rgba(0, 0, 0, 0.15);
    color: #ffffff;
    cursor: default;
    z-index: 2;
}

.pagenumber .links .pagination > .disabled > span,
.pagenumber .links .pagination > .disabled > span:hover,
.pagenumber .links .pagination > .disabled > span:focus,
.pagenumber .links .pagination > .disabled > a,
.pagenumber .links .pagination > .disabled > a:hover,
.pagenumber .links .pagination > .disabled > a:focus {
    background-color: #ffffff;
    border-color: #dddddd;
    color: #777777;
    cursor: not-allowed;
}

.pagenumber .results {
    float: right;
    padding-top: 6px;
    font-size: 12px;
}

/* button */
input.button {
    text-decoration: none;
}

.buttons .left {
    float: left;
    text-align: left;
}

.buttons .right {
    float: right;
    text-align: right;
}

.buttons .center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.htabs {
    padding: 0px 0px 0px 10px;
    height: 26px;
    line-height: 16px;
    border-bottom: 1px solid #DDDDDD;
}

.htabs a {
    background: #ffffff; /* Old browsers */
    /* IE9 SVG, needs conditional override of 'filter' to 'none' */
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPHJhZGlhbEdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY3g9IjUwJSIgY3k9IjUwJSIgcj0iNzUlIj4KICAgIDxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjZTVlNWU1IiBzdG9wLW9wYWNpdHk9IjEiLz4KICA8L3JhZGlhbEdyYWRpZW50PgogIDxyZWN0IHg9Ii01MCIgeT0iLTUwIiB3aWR0aD0iMTAxIiBoZWlnaHQ9IjEwMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-radial-gradient(center, ellipse cover, #ffffff 0%, #e5e5e5 100%); /* FF3.6+ */
    background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #ffffff), color-stop(100%, #e5e5e5)); /* Chrome,Safari4+ */
    background: -webkit-radial-gradient(center, ellipse cover, #ffffff 0%, #e5e5e5 100%); /* Chrome10+,Safari5.1+ */
    background: -o-radial-gradient(center, ellipse cover, #ffffff 0%, #e5e5e5 100%); /* Opera 12+ */
    background: -ms-radial-gradient(center, ellipse cover, #ffffff 0%, #e5e5e5 100%); /* IE10+ */
    background: radial-gradient(ellipse at center, #ffffff 0%, #e5e5e5 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e5e5e5', GradientType=1); /* IE6-8 fallback on horizontal gradient */
    border-top: 1px solid #DDDDDD;
    border-left: 1px solid #DDDDDD;
    border-right: 1px solid #DDDDDD;
    padding: 4px 12px;
    float: left;
    font-size: 12px;
    text-align: center;
    text-decoration: none;
    color: #000000;
    margin-right: 2px;
    display: none;
}

.htabs a.selected {
    padding-bottom: 5px;
    background: #FFFFFF;
    font-weight: bold;
}

.tab-content {
    border-left: 1px solid #DDDDDD;
    border-right: 1px solid #DDDDDD;
    border-bottom: 1px solid #DDDDDD;
    padding: 10px;
    margin-bottom: 20px;
    z-index: 2;
    min-height: 300px;
}
.tab-content img {
    max-width: 100%
}


/* box */
.box {
    width: 100%;
    float: left;
}
.box .box-red {
    background-color: #FE0000;
    color: #ffffff;
}

.box .box-black {
    background-color: #524F4C;
    color: #ffffff;
}

.box .box-brown {
    background-color: #CA6400;
    color: #ffffff;
}

.box .box-ghi {
    background-color: #F0F0F0;
    color: #3F4347;
}

.box .box-line {
    display: block;
}
.box .box-content .carousel {
    padding: 0;
}

.box .box-content .carousel .owl-carousel {
    box-shadow: none;
    margin: 0;
}


/* box category */
ul.box-category, ul.box-category ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

ul.box-category > li:first-child {
    padding: 0px;
}

ul.box-category > li {
    padding: 0px;
}

ul.box-category > li + li {
    border-top: 1px solid #ddd;
}

ul.box-category > li > a {
    text-decoration: none;
    color: #444444;
    line-height: 14px;
    padding: 8px 5px 7px;
    display: block;
    text-indent: 10px;
}
ul.box-category a i.fa, ul.box-category a span.fa {
    font-size: 9px;
    margin-right: 5px;
}

ul.box-category > li > a:hover {
    background-color: #eee;
}

ul.box-category > li ul {
    /*display: none;*/
}

ul.box-category > li a.active {
    font-weight: bold;
}

ul.box-category > li ul.active, ul.box-category > li a.active + ul.no-active {
    display: block;
}

ul.box-category > li ul.no-active {
    display: none;
}

ul.box-category > li ul > li {
    padding: 0;
}

ul.box-category > li ul > li > a {
    text-decoration: none;
    color: #444;
    line-height: 14px;
    padding: 8px 25px 7px;
    display: block;
}

ul.box-category > li ul > li > a:hover {
    background-color: #eee;
}

ul.box-category > li ul > li > a.active {
    font-weight: bold;
}

/* category news */
.box-news-content {
    background: #ffffff;
    box-shadow: 0 0.03rem 0.06rem rgba(0, 0, 0, 0.1), 0 0.1rem 0.3rem rgba(0, 0, 0, 0.1);
    transition-duration: 0.3s;
    height: 100%;
    position: relative;
}
.box-news-content:hover {
    box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.1), 0 0.33rem 1rem rgba(0, 0, 0, 0.15);
}
.box-news-content .news-cats {
    position: absolute;
    top: 18px;
    left: 18px;
    right: 18px;
    font-weight: bold;
    font-size: 11px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
}
.box-news-content .news-cats a {
    display: inline-block;
    padding: 5px 12px 4px;
    background: var(--main-color);
    color: #fff;
    text-transform: uppercase;
}
.box-news-content .news-cats a:hover {
    background: var(--color-title);
}
.box-news-content .info-p {
    padding: 25px 15px;
    text-align: center;
}
.box-news-content h3.name {
    margin: 0 0 15px;
    font-size: 16px;
}

/* news related */
.slide-news-related {
    padding: 0 15px 0 9px;
    overflow: hidden;
}
.slide-news-related .item {
    padding-left: 6px;
}
.box-news-content.news-related-item {
    flex-flow: column;
}
.box-news-content.news-related-item .image {
    width: 100%;
    position: relative;
}
.box-news-content.news-related-item p.date {
    position: absolute;
    top: 15px;
    background: #fff;
    border: 2px solid #383b97;
    color: #383b97;
    font-weight: 700;
    width: 45px;
    height: 45px;
    text-align: center;
    margin: 0 0 0 -6px;
    padding-top: 3px;
    transition: all 0.3s;
}
.box-news-content.news-related-item:hover p.date {
    color: #fff;
    background: #383b97;
}
.box-news-content.news-related-item p.date span {
    display: block;
    line-height: 1.2;
}
.box-news-content.news-related-item p.date span.month {
    font-size: 11px;
}
.box-news-content.news-related-item .info-p {
    width: 100%;
    padding: 10px;
}
.box-news-content.news-related-item .info-p h3.name:after {
    left: 50%;
    margin-left: -15px;
}
.news-related-item a.view-more {
    color: #383b97;
    border: 2px solid #383b97;
    padding: 0 20px;
    font-size: 11px;
    display: inline-block;
    line-height: 26px;
    font-weight: 700;
    margin-top: 10px;
}
.news-related-item a.view-more:hover {
    color: #fff;
    background: #383b97;
}
.slide-news-related.owl-carousel .owl-nav button {
    position: absolute;
    width: 30px;
    bottom: 50%;
    height: 30px;
    background-color: #fff!important;
    color: #111!important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    -webkit-box-shadow: 0 -150px 15px 0 rgba(0,0,0,.3);
    box-shadow: 0 -150px 15px 0 rgba(0,0,0,.3);
    transition: all 0.3s;
    opacity: 0.7;
}
.slide-news-related.owl-carousel:hover .owl-nav button {
    opacity: 0.7;
}
.slide-news-related.owl-carousel:hover .owl-nav button:hover {
    opacity: 1;
}
.slide-news-related.owl-carousel .owl-nav button.owl-next {
    right: -10px;
}
.slide-news-related.owl-carousel:hover .owl-nav button.owl-next {
    right: -5px;
}
.slide-news-related.owl-carousel .owl-nav button.owl-prev {
    left: -10px;
}
.slide-news-related.owl-carousel:hover .owl-nav button.owl-prev {
    left: -5px;
}


/* comment list*/
.comment-list > div {
    padding: 10px 2px;
    overflow: auto;
    margin-bottom: 2px;
}

.comment-list > div + div {
    border-top: 1px solid #EEEEEE;
}

.comment-list > div .left {
    float: left;
    width: 15%;
}

.comment-list > div .left .avata {
    text-align: center;
    position: relative;
    top: 20%;
    left: 10%;
    color: #C2C2C2;
    width: 50px;
    height: 50px;
    border: 2px solid #C2C2C2;
    border-radius: 50%;
    font-size: 30px;
}

.comment-list > div .left .avata:after, .comment-list > div .left .avata:before {
    left: 92%;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.comment-list > div .left .avata:after {
    border-color: rgba(136, 183, 213, 0);
    border-left-color: #fff;
    border-width: 13px;
    margin-top: -13px;
}

.comment-list > div .left .avata:before {
    border-color: rgba(194, 225, 245, 0);
    border-left-color: #C2C2C2;
    border-width: 16px;
    margin-top: -16px;
}

.comment-list > div .right {
    float: right;
    width: 85%;
}

.comment-list > div .info {
    width: 99%;
    background: none repeat scroll 0 0 #eee;
    box-shadow: 0 0 10px #ccc inset;
    padding: 9px;
}

.comment-list > div .info .author, .comment-list > div .info .date {
    color: #333;
}

.comment-list > div .info .author i.fa, .comment-list > div .info .date i.fa {
    width: 15px;
    margin-right: 5px;
}

span.on i.fa, span.on span.fa {
    color: #F0A600;
    font-size: 12px;
}

span.off i.fa, span.off span.fa {
    font-size: 12px;
}

.attribute {
    border-collapse: collapse;
    width: 100%;
    border-top: 1px solid #DDDDDD;
    border-left: 1px solid #DDDDDD;
    margin-bottom: 20px;
}

.attribute thead td, .attribute thead tr td:first-child {
    color: #000000;
    font-size: 14px;
    font-weight: bold;
    background: #F7F7F7;
    text-align: left;
}

.attribute tr td:first-child {
    color: #000000;
    font-weight: bold;
    text-align: right;
    width: 20%;
}

.attribute td {
    padding: 7px;
    color: #4D4D4D;
    text-align: center;
    vertical-align: top;
    border-right: 1px solid #DDDDDD;
    border-bottom: 1px solid #DDDDDD;
}

/*compare*/

.compare-info {
    border-collapse: collapse;
    width: 100%;
    border-top: 1px solid #DDDDDD;
    border-left: 1px solid #DDDDDD;
    margin-bottom: 20px;
}

.compare-info thead td, .compare-info thead tr td:first-child {
    color: #000000;
    font-size: 14px;
    font-weight: bold;
    background: #F7F7F7;
    text-align: center;
}

.compare-info tr td:first-child {
    color: #000000;
    font-weight: bold;
    text-align: right;
}

.compare-info td {
    padding: 7px;
    width: 20%;
    color: #4D4D4D;
    text-align: center;
    vertical-align: top;
    border-right: 1px solid #DDDDDD;
    border-bottom: 1px solid #DDDDDD;
}

.compare-info .name a {
    font-weight: bold;
}

.compare-info .price-new {
    font-weight: bold;
}


/* wishlist */
.wishlist-info table {
    width: 100%;
    border-collapse: collapse;
    border-top: 1px solid #DDDDDD;
    border-left: 1px solid #DDDDDD;
    border-right: 1px solid #DDDDDD;
    margin-bottom: 20px;
}

.wishlist-info td {
    padding: 7px;
}

.wishlist-info thead td {
    color: #4D4D4D;
    font-weight: bold;
    background-color: #F7F7F7;
    border-bottom: 1px solid #DDDDDD;
}
#search{
    height: 100%;
    width: 100%;
    position: relative;
}
.wishlist-info thead .image {
    text-align: center;
}

.wishlist-info thead .name, .wishlist-info thead .model, .wishlist-info thead .stock {
    text-align: left;
}

.wishlist-info thead .quantity, .wishlist-info thead .price, .wishlist-info thead .total, .wishlist-info thead .action {
    text-align: right;
}

.wishlist-info tbody td {
    vertical-align: top;
    border-bottom: 1px solid #DDDDDD;
}

.wishlist-info tbody .image img {
    border: 1px solid #DDDDDD;
}

.wishlist-info tbody .image {
    text-align: center;
}

.wishlist-info tbody .name, .wishlist-info tbody .model, .wishlist-info tbody .stock {
    text-align: left;
}

.wishlist-info tbody .quantity, .wishlist-info tbody .price, .wishlist-info tbody .total, .wishlist-info tbody .action {
    text-align: right;
}

.wishlist-info tbody .price s {
    color: #F00;
}

.wishlist-info tbody .action img {
    cursor: pointer;
}

/*login*/
.login-content {
    margin-bottom: 20px;
    overflow: auto;
}

.login-content .left {
    float: left;
    width: 48%;
}

.login-content .right {
    float: right;
    width: 48%
}

.login-content .left .content, .login-content .right .content {
    min-height: 190px;
}

/* comment */
h2.title-contact {
    font-size: 25px;
    margin-bottom: 15px;
    margin-top: 0;
    position: relative;
    z-index: 2;
}
p.title-page-contact {
    font-size: 21px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: var(--title-font);
    color: var(--main-color);
}

.contact-content { 
    margin-bottom: 30px;
}
.contact-content p {
    margin: 0;
}
.contact-content > div {
    margin-bottom: 15px;
    width: 100%;
    display: inline-block;
    vertical-align: top;
}
.contact-content > div i {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: var(--main-color);
    border-radius: 50%;
    color: #fff;
    margin-right: 10px;
}
.iframe-map iframe {
    width: 100%;
    height: 350px;
}
h2#comment-title {
    background: none repeat scroll 0 0 #fff;
    border-top: 1px solid #ddd;
    color: #333;
    padding: 8px;
    margin: 0 -10px;
}

.write-comment {
    margin-bottom: 20px;
}
.write-comment p {
    margin-bottom: 0;
    font-weight: 700;
}
/*.write-comment > div {
    margin-bottom: 10px;
}*/
.write-comment div.name {
    margin-bottom: 20px;
}
.write-comment div.buttons {
    border: none;
    background: none
}

.write-comment input[type="text"], .write-comment textarea {
    border: 1px solid var(--main-color);
    border-radius: 3px;
    background: none repeat scroll 0 0 #fff;
    padding: 5px;
    width: 100%;
    outline: none!important;
}
.write-comment .rating span {
    cursor: pointer;
}

/*captcha*/

.captcha {
    background: #a90329; /* Old browsers */
    background: -moz-linear-gradient(top, #a90329 0%, #8f0222 44%, #6d0019 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #a90329), color-stop(44%, #8f0222), color-stop(100%, #6d0019)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #a90329 0%, #8f0222 44%, #6d0019 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #a90329 0%, #8f0222 44%, #6d0019 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #a90329 0%, #8f0222 44%, #6d0019 100%); /* IE10+ */
    background: linear-gradient(to bottom, #a90329 0%, #8f0222 44%, #6d0019 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a90329', endColorstr='#6d0019', GradientType=0); /* IE6-9 */
    border-radius: 3px;
    box-shadow: 0 1px 0 rgba(120, 200, 230, 0.5) inset, 0 1px 0 rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
    width: 225px;
    padding: 5px;
}

.captcha .c_image {
    margin-bottom: 5px;
}

.captcha .c_image img {
    border: 3px;
}

.captcha .c_input {
    background: #f1e767; /* Old browsers */
    background: -moz-linear-gradient(top, #f1e767 0%, #feb645 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f1e767), color-stop(100%, #feb645)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #f1e767 0%, #feb645 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #f1e767 0%, #feb645 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #f1e767 0%, #feb645 100%); /* IE10+ */
    background: linear-gradient(to bottom, #f1e767 0%, #feb645 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f1e767', endColorstr='#feb645', GradientType=0); /* IE6-9 */
    border-radius: 3px;
    padding: 5px;
    width: 150px;
    display: inline-block;
}

.captcha .c_input input {
    width: 100px;
    padding: 3px;
    border: 1px solid #ccc;
    border-radius: 0;
}

.captcha .c_input p {
    font-weight: normal;
    font-size: 11px;
    color: #333333;
}

.captcha .c_input a {
    background: #ff3019; /* Old browsers */
    background: -moz-linear-gradient(top, #ff3019 0%, #cf0404 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ff3019), color-stop(100%, #cf0404)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #ff3019 0%, #cf0404 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #ff3019 0%, #cf0404 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #ff3019 0%, #cf0404 100%); /* IE10+ */
    background: linear-gradient(to bottom, #ff3019 0%, #cf0404 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3019', endColorstr='#cf0404', GradientType=0); /* IE6-9 */
    border: 1px solid #8B0221;
    color: #fff;
    padding: 1px 10px;
}

.captcha .c_input a:hover, .captcha .c_input a:focus, .captcha .c_input a.active {
    background: #8B0221;
}

.captcha .c_logo {
    display: inline-block;
    vertical-align: top;
    margin-top: 10px;
}

/* search */
.box-search {
    border: 1px solid #eeeeee;
    margin-bottom: 20px;
    padding: 10px;
}

.box-search div {
    margin-bottom: 10px;
}

.box-search .search input {
    color: #999;
    padding: 5px 10px;
}

.box-search .category select {
    display: block;
}

/* orders */
.order-list {
    margin-bottom: 10px;
}

.order-list .order-id {
    width: 49%;
    float: left;
    margin-bottom: 2px;
}

.order-list .order-status {
    width: 49%;
    float: right;
    text-align: right;
    margin-bottom: 2px;
}

.order-list .order-content {
    padding: 10px 0px;
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    border-top: 1px solid #EEEEEE;
    border-bottom: 1px solid #EEEEEE;
}

.order-list .order-content div {
    float: left;
    width: 33.3%;
}

.order-list .order-info {
    text-align: right;
}

.order-detail {
    background: #EFEFEF;
    font-weight: bold;
}

/* download */
.download-list {
    margin-bottom: 10px;
}

.download-list .download-id {
    width: 49%;
    float: left;
    margin-bottom: 2px;
}

.download-list .download-status {
    width: 49%;
    float: right;
    text-align: right;
    margin-bottom: 2px;
}

.download-list .download-content {
    padding: 10px 0px;
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    border-top: 1px solid #EEEEEE;
    border-bottom: 1px solid #EEEEEE;
}

.download-list .download-content div {
    float: left;
    width: 33.3%;
}

.download-list .download-info {
    text-align: right;
}

/*contact-info*/

.contact-info {
    overflow: auto;
}

.contact-info .left {
    float: left;
    width: 48%;
}

.contact-info .right {
    float: left;
    width: 48%;
}

/*location*/
.location-info {
    margin-bottom: 20px;
    border: 1px solid #eeeeee;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    min-height: 100px;
    overflow: auto;
}

.location-info .location-heading {
    background-color: #f5f5f5;
    border-color: #ddd;
    color: #333;
    padding: 10px 15px;
}

.location-info span,
.location-info i {
    margin-right: 5px;
}

.location-info .location-content {
    background: #FFFFFF;
    padding: 10px;
}

.location-info .location-content .column {
    float: left;
    width: 25%;
    min-height: 100px;
}


/* sitemap */

.sitemap-info {
    overflow: auto;
    margin-bottom: 40px;
}
.sitemap-info ul ul{
    margin-left: 30px;
    list-style: circle;
}
.sitemap-info .left {
    float: left;
    width: 48%;
}

.sitemap-info .right {
    float: left;
    width: 48%;
}

/* account */
.login div {
    margin-bottom: 10px;
}

.login div p {
    font-weight: bold;
    margin-bottom: 0;
}

/* layout */
[id *= column-] > div{
    width: 100%;
    float: left;
    margin-bottom: 30px;
}
[id *= column-] .box-list-heading {
    text-transform: uppercase;
    font-weight: bold;
    position: relative;
    font-size: 18px;
    padding: 8px 8px 6px;
    margin: -8px -8px 15px;
    background: var(--main-color);
    color: #fff;
    font-family: var(--title-font);
}
[id *= column-] .box-list-heading a {
    color: #fff;
}
#column-left {
    text-decoration: none;
    width: 100%;
    float: left;
}
#column-right {
    text-decoration: none;
    width: 100%;
    float: right;
}
.box-column {
    padding: 8px;
    border: 1px solid #f5f5f5;
    box-shadow: 3px 4px 6px -3px rgba(83, 83, 83, .51);
    -webkit-box-shadow: 3px 4px6px -3px rgba(83, 83, 83, .51);
    border-radius: 10px;
    overflow: hidden;
}
#content {
    text-decoration: none;
    margin-bottom: 25px;
}
#content .content {
    padding: 10px;
    overflow: auto;
    margin-bottom: 20px;
    border: 1px solid #EEEEEE;
}

#content .content .left {
    float: left;
    width: 49%;
}

#content .content .right {
    float: right;
    width: 49%;
}
#column-left + #column-right + #content, #column-left + #content {
    margin-left: 215px;
}
#column-right + #content {
    margin-right: 215px;
}
[id*="column-"] .box-content .owl-pagination{
    top: 0;
}
#column-left .product_featured{
    overflow: hidden;
    transition-duration: 0.5s;
    margin-bottom: 20px;
    border-bottom: 1px solid #f1f1f1;
    padding-bottom: 20px;
    transition-duration: 0.5s;
}
#column-left .product_featured .image{
    padding: 5px;
}
#column-left .product_featured:last-child{
    border-bottom:none;
}
#column-left .product_featured:hover{
    -webkit-box-shadow: 0px 5px 18px 1px rgba(251,67,143,0.28);
    -moz-box-shadow: 0px 5px 18px 1px rgba(251,67,143,0.28);
    box-shadow: 0px 5px 18px 1px rgba(251,67,143,0.28);
}
#column-left .product_featured img{
    transition-duration: 0.5s;
}
#column-left .product_featured:hover img{
    filter:saturate(5);
}

.featured-product-column .box-content {
    padding: 0 10px;
}
.box-product-column {
    width: 100%;
    display: inline-block;
    padding: 5px 0;
}
.box-product-column + .box-product-column {
    border-top: 1px solid #ececec;
}
.box-product-column .image {
    width: 60px;
    float: left;
}
.box-product-column .info-p {
    width: calc(100% - 60px);
    float: left;
    padding-left: 10px;
}

/*tabrelated*/
#tab-related {    
    padding: 45px 0 0;
}
#tab-related h3{ 
    margin: 0 0 20px;
}

.slide-related .item {
    padding: 10px;
    display: flex;
}
.slide-related.owl-carousel{ 
    background: transparent;
    margin-bottom: 0;
}

/*product/product..*/
.title-all-page-pro {
    float: left;
    margin-bottom: 20px;
}
.product-filter {
    float: right;
    margin-bottom: 20px;
}
.product-filter .limit {
    float: right;
}
.product-filter .sort {
    float: right;
    margin-right: 11px;
}

/* drop-box*/
.drop-box {
    position: relative;
}

.drop-box .drop-button {
    color: #444;
    display: block;
    font-size: 12px;
    font-weight: bold;
    position: relative;
    text-align: left;
    text-decoration: none;
}

.drop-box .drop-content {
    background-color: #fff;
    box-shadow: 0 6px 12px #80397b;
    clear: both;
    position: absolute;
    display: none;
    z-index: 1000;
}

.drop-box .drop-content p.wait {
    text-align: center;
    margin: 10px 0;
}

.drop-box .drop-content.left {
    left: 0;
}

.drop-box .drop-content.left:after,
.drop-box .drop-content.left:before {
    left: 10px;
}

.drop-box .drop-content.left:before {
    margin-left: -6px;
}

.drop-box .drop-content.right {
    right: 0;
}

.drop-box .drop-content.right:after,
.drop-box .drop-content.right:before {
    right: 10px;
}

.drop-box .drop-content.right:before {
    margin-right: -6px;
}

.drop-box .drop-content.top {
    border-top: 4px solid #80397b;
    border-radius: 0 0 5px 5px;
}

.drop-box .drop-content.top:after,
.drop-box .drop-content.top:before {
    bottom: 100%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.drop-box .drop-content.top:after {
    border-color: rgba(136, 183, 213, 0);
    border-bottom-color: #fff;
    border-width: 6px;
}

.drop-box .drop-content.top:before {
    border-color: rgba(194, 225, 245, 0);
    border-bottom-color: #80397B;
    border-width: 12px;
}

.drop-box .drop-content.bottom {
    border-bottom: 4px solid #80397b;
    border-radius: 5px 5px 0 0;
}

.drop-box .drop-content.bottom:after,
.drop-box .drop-content.bottom:before {
    top: 100%;
    left: 10px;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.drop-box .drop-content.bottom:after {
    border-color: rgba(136, 183, 213, 0);
    border-top-color: #fff;
    border-width: 6px;
}

.drop-box .drop-content.bottom:before {
    border-color: rgba(194, 225, 245, 0);
    border-top-color: #80397B;
    border-width: 12px;
}

.drop-box .drop-content .drop-title {
    border-bottom: 1px solid #e5e5e5;
    padding: 4px;
    position: relative;
    height: 20px;
}

.drop-box .drop-content .drop-title > i.fa {
    margin-right: 5px;
}

.drop-box .drop-content .drop-title .drop-close {
    color: #333;
    font-size: 12px;
    font-weight: bold;
    line-height: 1px;
    opacity: 1;
    padding: 3px 4px;
    position: absolute;
    right: 7px;
    top: 0;
    cursor: pointer;
}

.drop-box .drop-content .drop-title .drop-close:hover {
    background-color: #80397b;
    border-radius: 50%;
    color: #fff;
}

.drop-box .drop-content .drop-description ul.list-link {
    list-style: none;
    padding: 0;
}

.drop-box .drop-content .drop-description ul.list-link li {
    clear: both;
    width: 100%;
}

.drop-box .drop-content .drop-description ul.list-link li a {
    display: block;
    text-decoration: none;
    color: #333;
    margin: 1px;
    padding: 5px;
}

.drop-box .drop-content .drop-description ul.list-link li a:hover,
.drop-box .drop-content .drop-description ul.list-link li a.active {
    background: #80397B;
    color: #fff
}

.drop-box .drop-content .drop-description ul.list-link li a i.fa {
    margin-right: 5px;
}

/* livesearch */
#livesearch_search_results {
    position: absolute !important;
}

/*search */
.search{
    overflow: hidden;
    display: inline-block;
    vertical-align: top;
    border-radius: 0;
    margin: 10px 0;
    width: 100%;
}
.search-all {
    float: left;
    width: 100%;
}
.search input {
    float: left;
    border: 0;
    line-height: 40px;
    width: 100%;
}
.search #_button-search{
    cursor: pointer;
    border: none;
}
.search #_button-search:focus, #box-search-top select:focus, .search input:focus{
    outline: none;
}

/* product_list_index */
.product_list_index .image_product_left {
    width: 80px;
    height: 80px;
    float: left;
    background: #F00;
}

.product_list_index .image_product_left a {
    width: 80px;
    height: 80px;
}

.product_list_index .name_product_right {
    width: 96px;
    float: right;
}

/* quick view */
#popup-quick-view .modal-content,
#popup-quick-view .modal-body,
div[class*='slider-for'],
div[class*='slider-nav'] {
    width: 100%;
}
#popup-quick-view .modal-body {
    padding-left: 0;
    padding-right: 0;
}
div[class*='slider-for'] .easyzoom {
    position: relative;
}
div[class*='slider-for'] .item {
    border: 1px solid #ddd;
}
div[class*='slider-for'] a.zoom_plus,
div[class*='slider-for'] a.colorbox {
    position: absolute;
    top: 0;
    right: 0;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    z-index: 999;
    font-size: 20px;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .3);
}
div[class*='slider-for'] a.zoom_plus:hover, 
div[class*='slider-for'] a.colorbox:hover {
    background: rgb(0 0 0 / 20%);
}
div[class*='slider-nav'] .item {
    width: 25%;
    padding: 5px;
}
div[class*='slider-nav'] .img {
    border: 1px solid #ddd;
    text-align: center;
}
div[class*='slider-nav'] .is-selected .img {
    border: 2px solid var(--main-color);
}
div[class*='slider-nav'] .img img {
    width: 100%;
}

.easyzoom-flyout img {
    max-width: unset;
    cursor: grab!important;
}

.quick-info {
    padding: 0 0 10px;
}
.quick-info .breadcrumb {
    float: none;
    margin: 0 0 30px;
    padding: 10px;
}
.quick-info h2,
.quick-info h1 {
    font-size: 25px;
    margin: 0;
    padding-bottom: 15px;
    position: relative;
    color: #000;
}
.quick-info h2 a {
    color: #000;
}
.quick-info .product-cats {
    border-top: 1px dotted #ddd;
    border-bottom: 1px dotted #ddd;
    padding: 10px 0;
    font-size: 12px;
    margin-bottom: 15px;
}
.quick-info .product-cats span.posted_in {
    display: block;
}
.quick-info .product-cats span.posted_in.tags {
    margin-top: 5px;
}
.quick-info .product-cats a {
    color: var(--main-color);
}
.quick-info .product-cats a:hover {
    text-decoration: underline;
}
.quick-info .product-cats a:hover {
    color: #dd3333;
}
.quick-info .price {
    font-size: 18px;
    margin-bottom: 10px;
}
.quick-info .price del {
    opacity: 0.6
}
.quick-info .price span {
    font-weight: bold;
    color: var(--main-color);
}
.quick-info .list-button {
    padding: 10px 0;
    border-top: 1px solid var(--color-border-content);
}
.quick-info .button-cart {
    display: flex;
    align-items: center;
    gap: 15px;
}
.quick-info input#input-quantity {
    width: 68px;
    border: 1px solid var(--main-color);
    border-radius: 30px;
}
.quick-info .button-call {
    display: flex;
    align-items: center;
    margin-top: 20px;
    gap: 15px;
}
.quick-info a.readmore {
    position: relative;
    background: var(--main-color);
    display: inline-block;
    padding: 10px 30px;
    color: #fff;
    font-size: 16px;
}
.quick-info a.readmore:before {
    content: "\f290";
    font-family: 'FontAwesome';
    display: inline-block;
    vertical-align: text-bottom;
    margin-right: 6px;
}

.product-social-share {
    margin-top: 20px;
}
.product-social-share span {
    font-weight: bold;
    text-transform: uppercase;
    margin-right: 5px;
}
.product-social-share a {
    display: inline-block;
    text-align: center;
    line-height: 45px;
    color: #a9a7a9;
    margin: 3px 0 0;
    padding: 0 12px;
    border-right: 1px solid var(--color-border-content);
}
.product-social-share a:last-child {
    border-right: 0;
}
.product-social-share a:hover {
    color: var(--main-color);
}
#popup-quick-view button.close {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    color: #fff;
    opacity: .8;
}
#popup-quick-view button.close:hover {
    opacity: 1;
}

.product-contact {
    margin-top: 8px;
    padding: 10px 0 5px;
    border-top: 1px solid var(--color-border-content);
    border-bottom: 1px solid var(--color-border-content);
}
.product-contact p {
    margin-bottom: 5px;
}
.product-contact p.title {
    font-family: var(--title-font);
}

/* search page product */
.breadcrumbs-search-page {
    padding: 30px 0;
    font-size: 18px;
    color: #222;
    font-weight: 700;
}
.breadcrumbs-search-page a {
    color: rgba(102,102,102,0.7);
    font-weight: normal;
}
.breadcrumbs-search-page a:hover {
    color: rgba(102,102,102);
} 
.breadcrumbs-search-page .divider {
    display: inline-block;
    margin: 0 5px;
    color: rgba(102,102,102,0.7);
    font-weight: normal;
}
.map-iframe iframe,
.iframe-fb iframe {
    width: 300px;
    height: 150px;
    max-width: 100%;
}

/* about us page */
.box-heading-about h2 {
    margin: 0 0 15px;
    font-size: 20px;
    text-transform: uppercase;
}
hr.line {
    background-image: -webkit-linear-gradient(left, transparent, grey, transparent);
    background-image: linear-gradient(to right, transparent, grey, transparent);
    margin: 0 0 20px;
    border: 0;
    height: 1px;
}
section.box.about-us-row-1 {
    margin-bottom: 30px;
}
.about-us-row-1 a.view-product {
    padding: 10px 16px;
    font-size: 18px;
    background: var(--main-color);
    color: #fff;
    display: inline-block;
    margin-top: 20px;
}
section.box.about-us-row-2 {
    margin-bottom: 50px;
}
section.box.about-us-row-3 hr.line {
    margin-bottom: 35px;
} 
section.box.about-us-row-3 .box-heading-about {
    margin-bottom: 45px;
}
section.about-us-row-3 .item-history {
    width: 100%;
    display: inline-block;
    margin-bottom: 25px;
}
section.about-us-row-3 .info-about-img {
    background: transparent url(../image/bg-history.png) no-repeat 0 0;
    width: 227px;
    height: 160px;
    padding: 0;
    float: left;
}
section.about-us-row-3 .info-about-img img {
    border-radius: 50%;
    margin: 7px 8px;
    width: 145px;
    height: 145px;
}
section.about-us-row-3 .info-about-content {
    width: calc(100% - 227px);
    float: left;
    min-height: 115px;
    background: - webkit-linear-gradient(top, #fff 1%, #f9f9f9 98%) repeat scroll 0 0 #f5f5f5;
    background: linear-gradient(to bottom, #fff 1%, #f9f9f9 98%) repeat scroll 0 0 #f5f5f5;
    border-bottom: 1px solid #dfdfdf;
    border-left: 1px solid #ececec;
    border-right: 1px solid #ececec;
    border-top: 4px solid var(--main-color);
    box-shadow: 0 1px 1px 0 rgba(0,0,0,0.04);
    padding: 30px 30px 10px 30px;
}
section.about-us-row-3 .info-about-content > span {
    margin: 0 0 -27px 0;
    color: var(--main-color);
    font-size: 18px;
    font-weight: bold;
    display: block;
}
section.about-us-row-3 .info-about-desc {
    margin-left: 53px;
}

/* project */
.item-project {
    position: relative;
}
.item-project .info-project {
    position: absolute;
    left: 0;
    bottom: -1px;
    right: 0;
    padding: 75px 30px 22px;
    background: linear-gradient(0deg, #000000, rgba(0, 0, 0, 0.00));
    transition-duration: 0.4s;
    transform-origin: 50% 50%;
    transform: scale(1) translate(0%, 0%);
    opacity: 0;
}
.item-project:hover .info-project{
    transform: scale(1) translate(0%, 0%);
    opacity: 1;
}
.item-project .info-project h3 {
    font-size: 18px;
    margin: 0;
    transition-duration: 0.35s;
    transform-origin: 50% 50%;
    transform: scale(1) translate(0%, 35%);
}
.item-project:hover .info-project h3 {
    transform: scale(1) translate(0%, 0%);
}
.item-project .info-project h3 a {
    color: #fff;
}

/* footer */
#footer {
    border-top: 2px solid var(--color-title);
    background: #fff;
}
.footer-all {
    padding: 60px 0;
}
.footer-all-inner {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
}
.footer-all-left {
    display: grid;
    grid-template-columns: 1fr 4fr;
    gap: 20px;
}
.footer-logo {
    margin-bottom: 30px;
}
.footer-logo img {
    max-width: 99px;
}
.social-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.social-footer a {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--main-color);
    color: #fff;
}
.social-footer a.fb {
    background: #1e77f0;
}
.social-footer a.yt {
    background: red;
}
.footer-all-left h2,
.footer-all-right h3 {
    margin: 0;
    font-size: 21px;
    margin-bottom: 5px;
}
.footer-all-left h2 {
    color: var(--main-color);
}
ul.contact-footer {
    margin: 0;
}
ul.contact-footer li {
    margin-bottom: 10px;
}
ul.contact-footer li:last-child {
    margin-bottom: 0;
}

ul.footer-link > li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}
ul.footer-link > li > i.fa {
    color: #e8e8e8;
    font-size: 12px;
}
ul.footer-link > li span.icon-toggle {
    position: absolute;
    right: 0;
    top: 0;
    width: 38px;
    height: 38px;
    text-align: center;
    line-height: 38px;
    cursor: pointer;
}
ul.footer-link > li span.icon-toggle.up {
    transform: rotate(180deg);
}
ul.footer-link a {
    display: block;
}
ul.footer-link > li > a {
    padding: 6px 0;
}
ul.footer-link > li > a:first-child {
    padding-top: 0;
} 
ul.footer-link > li > ul {
    display: none;
    margin: 0 0 10px 3px;
    padding-left: 15px;
    border-left: 1px solid hsla(0, 0%, 100%, .08);
}
ul.footer-link > li > ul a {
    padding: 3px 0;
    font-size: 14px;
}
.footer-map iframe {
    width: 100%;
    height: 250px;
}

#powered{
    display: inline-block;
    vertical-align: top;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    background: #6b6b6b;
}
#powered p {
    margin: 0;
    font-size: 13px;
    line-height: 40px;
    color: #fff;
}
#powered span {
    opacity: 0.3;
}
#powered a {
    color: #fff;
}
#powered a:hover{
    color: #ddd;
    text-decoration: underline;
}

.scroll-head {
    transition: all 0.5s;
    width: 50px;
    height: 50px;
    line-height: 48px;
    background: var(--main-color);
    position: fixed;
    bottom: 110px;
    left: 20px;
    color: #fff;
    z-index: 9999;
    cursor: pointer;
    opacity: 0;
    text-align: center;
}
.scroll-head.visible {
    opacity: 0.5;
}
.scroll-head.visible:hover {
    opacity: 1;
}
#footer .footer-all .facebook-like-box {
    width: 100%;
    overflow: auto;
}

/* phone fix */
#button-contact-vr {
    position: fixed;
    bottom: 15px;
    z-index: 9999;
    left: 5px;
}
/*phone*/
#button-contact-vr .button-contact {
    position: relative;
}
#button-contact-vr .button-contact .phone-vr {
    position: relative;
    visibility: visible;
    background-color: transparent;
    width: 90px;
    height: 90px;
    cursor: pointer;
    z-index: 11;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transition: visibility .5s;
    left: 0;
    bottom: 0;
    display: block;
}
.phone-vr-circle-fill {
    width: 65px;
    height: 65px;
    top: 12px;
    left: 12px;
    position: absolute;
    box-shadow: 0 0 0 0 #c31d1d;
    background-color: rgba(230, 8, 8, 0.7);
    border-radius: 50%;
    border: 2px solid transparent;
    -webkit-animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
    animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animuiion: zoom 1.3s infinite;
    animation: zoom 1.3s infinite;
}
.phone-vr-img-circle {
    background-color: #e60808;
    width: 40px;
    height: 40px;
    line-height: 40px;
    top: 25px;
    left: 25px;
    position: absolute;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    -webkit-animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
    animation: phone-vr-circle-fill 1s infinite ease-in-out;
}
#zalo-vr .phone-vr-circle-fill {
    box-shadow: 0 0 0 0 #2196F3;
    background-color: rgba(33, 150, 243, 0.7);
}
#zalo-vr .phone-vr-img-circle {
    background-color: #2196F3;
}
#fanpage-vr img {
    max-width: 35px;
    max-height: 35px;
}
#fanpage-vr .phone-vr-img-circle {
    background-color: #1877f2;
}
#fanpage-vr .phone-vr-circle-fill {
    box-shadow: 0 0 0 0 rgb(24 119 242 / 65%);
    background-color: rgb(24 119 242 / 70%);
}
.phone-vr-img-circle a {
    display: block;
    line-height: 37px;
}
.phone-vr-img-circle img {
    max-height: 25px;
    max-width: 27px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
}
@-webkit-keyframes phone-vr-circle-fill {
  0% {-webkit-transform: rotate(0) scale(1) skew(1deg);  }
  10% {-webkit-transform: rotate(-25deg) scale(1) skew(1deg);}
  20% {-webkit-transform: rotate(25deg) scale(1) skew(1deg);}
  30% {-webkit-transform: rotate(-25deg) scale(1) skew(1deg);}
  40% {-webkit-transform: rotate(25deg) scale(1) skew(1deg);}
  50% {-webkit-transform: rotate(0) scale(1) skew(1deg);}
  100% {-webkit-transform: rotate(0) scale(1) skew(1deg);}
}
@-webkit-keyframes zoom{0%{transform:scale(.9)}70%{transform:scale(1);box-shadow:0 0 0 15px transparent}100%{transform:scale(.9);box-shadow:0 0 0 0 transparent}}
@keyframes zoom{0%{transform:scale(.9)}70%{transform:scale(1);box-shadow:0 0 0 15px transparent}100%{transform:scale(.9);box-shadow:0 0 0 0 transparent}}

/* fix cart */
.buttons {
    padding: 15px 0;
    margin-bottom: 0;
}
.buttons .center {
    display: inline-block;
    vertical-align: middle;
}
.buttons a.button.button_checkout,
.buttons a.button.button_shopping {
    width: 100%;
    margin-bottom: 20px;
    color: #fff!important;
    text-align: center;
}
.buttons a.button.button_shopping:hover,
.buttons a.button.button_checkout:hover {
    background: transparent;
    color: #fff!important;
}
.total-all-cart strong {
    font-size: 20px; 
    margin-right: 10px;
}
.total-all-cart strong:last-child { 
    margin-right: 0;
    color: #bf1e2e; 
}

/* checkout cart */
.cart-info-new th {
    font-size: 16px;
    color: #212121;
    text-transform: uppercase;
}
.cart-info-new .table>thead>tr>th, 
.cart-info-new .table>tbody>tr>th, 
.cart-info-new .table>tfoot>tr>th, 
.cart-info-new .table>thead>tr>td, 
.cart-info-new .table>tbody>tr>td, 
.cart-info-new .table>tfoot>tr>td,
.cart-info-new td {
    vertical-align: middle;
}
.cart-info-new td.item-pro-cart .img {
    width: 100px;
    display: inline-block;
    margin-right: 10px;
}
.cart-info-new td.item-pro-cart .info {
    display: inline-block;
    vertical-align: middle;
}
.cart-info-new td.item-pro-cart .info a {
    color: #141414;
    font-size: 15px;
    font-weight: bold;
    text-align: left;
    display: block;
}
.cart-info-new td.price-cart {
    font-size: 18px;
    color: #d50000;
}

.list-cart-product .item-pro-cart {
    width: 100%;
    float: left;
    border: 1px solid #ddd;
    padding: 10px;
    margin-bottom: 10px;
    position: relative;
    background: rgba(235,235,235,0.4);
}
.list-cart-product .item-pro-cart .thumb-pro-cart {
    width: 30%;
    float: left;
}
.list-cart-product .item-pro-cart .info-pro-cart {
    width: 70%;
    float: left;
    padding: 0 0 0 10px;
}
.list-cart-product a.remove {
    line-height: 32px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    padding: 0 10px;
}
body.checkout-cart .over-input {
    border: 1px solid #b5b5b5;
    padding: 3px 7px;
    background: #fff;
    display: inline-block;
}
body.checkout-cart .over-input .btn{
    width: 15px;
    height: 15px;
    font-size: 9px;
    padding: 0;
    border-radius: 0;
    margin-top: 5px;
    float: left;
}
body.checkout-cart .over-input input[type='text'] {
    float: left;
    width: 50px;
    padding: 4.5px 5px;
    outline: 0;
    font-size: 14px!important;
    height: 24px;
    border: 0;
    box-shadow: none;
    text-align: center;
}

/* checkout */
.info-checkout {
    border: 1px solid #e5e5e5;
    margin: 15px 0px;
}
.info-checkout h2 {
    padding: 15px 30px;
    font-size: 16px;
    text-transform: uppercase;
    border-bottom: 1px solid #e5e5e5;
    margin: 0;
}
.info-checkout .checkout {
    padding: 15px 30px;
}
.child_cart_detail {
    float: left;
    width: 100%;
    padding: 15px 30px;
    border-bottom: 1px solid #e9e9e9;
}
.child_cart_detail .img_a_cart {
    width: 80px;
    float: left;
}
.child_cart_detail .img_a_cart img {
    border: 1px solid #e5e5e5;
}
.child_cart_detail .name_cart_span1 {
    float: left;
    width: 250px;
    margin-left: 15px;
}
.child_cart_detail .name_cart_span1 a {
    color: #141414;
    font-weight: bold;
    font-size: 12px;
    padding-bottom: 5px;
}
.child_cart_detail .name_cart_span1 > b {
    font-size: 18px;
    font-weight: 100;
    color: #d50000;
    padding-top: 5px;
}
.child_cart_detail .name_cart_span2 {
    float: right;
    width: 50px;
}
.child_cart_detail .name_cart_span2 p {
    float: left;
    width: 100%;
    text-align: center;
    color: #141414;
    font-weight: bold;
}
.child_cart_detail .name_cart_span2 b {
    float: left;
    width: 100%;
    text-align: center;
    border: 1px solid #e9e9e9;
    padding: 5px 0px;
    color: #525252;
    font-weight: 200;
}
.child_cart_detail2 {
    float: left;
    width: 100%;
    padding: 10px 30px;
}
.child_cart_detail2 b {
    color: #5e5e5e;
    float: left;
    margin-top: 4px;
}
.child_cart_detail2 p {
    font-size: 20px;
    font-weight: bold;
    color: #d50000;
    float: right;
}
.desc-cat.clearfix {
    border: 1px solid #ddd;
    padding: 10px 15px;
    margin-bottom: 30px;
    background: #eee;
}
.desc-cat.clearfix .inner-desc-cat.hidden-text {
    height: 130px;
    overflow: hidden;
    margin-bottom: 30px;
}

/* contact_us_fixed */
.contact_us_fixed{
    position: fixed;
    bottom: 120px;
    right: 20px;
    width: 70px;
    height: 70px;
    z-index: 9999;
    border-radius: 50%;
    background-color: #008749;
    
}
.contact_us_fixed:after{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #008749;
    border-radius: 50%;
    -webkit-animation: scale_circle 2s infinite ease-in-out;
    animation: scale_circle 2s infinite ease-in-out;
}
@keyframes scale_circle {
    0% {
        -webkit-transform: scale(1) ;
        transform: scale(1);
        opacity: 0;
    }
    50% {
        -webkit-transform: scale(1.1) ;
        transform: scale(1.1);
        opacity: 0.4;
    }
    100% {
        -webkit-transform:  scale(1) ;
        transform: scale(1);
        opacity: 0;
    }
}
.contact_us_fixed .icon, .contact_us_fixed .close{
    width: 70px;
    height: 70px;
    padding: 13px;
    position: relative;
    cursor: pointer;
}
.contact_us_fixed .icons-main{
    display: block;
    background-color: #008749;
    text-align: center;
    padding-top: 5px;
    width: 44px;
    height: 44px;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 0;
}
.contact_us_fixed .icons-main p{
    color: #fff;
    font-size: 10px;
    margin: 0;
    white-space: nowrap;
    line-height: 11px;
}

.contact_us_fixed .icons-line{
    border-radius: 50%;
    width: 44px;
    height: 44px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    position: absolute;
    top: 13px;
    left: 13px;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 0;
}
.contact_us_fixed .icons-show{
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.contact_us_fixed .icons-line .svg-group{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 100%;
}
.contact_us_fixed .close{
    font-size: 20px;
    line-height: 40px;
    font-weight: normal;
    opacity: 1;
    color: #fff;
    text-align: center;
    text-shadow: none;
    float: unset;
    display: none;
}
.contact_us_fixed .content, .contact_us_fixed .form_call_back{
    position: absolute;
    bottom: 80px;
    right: 0;
    padding: 5px 0;
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #f7f7f7;
    box-shadow: 0px 2px 10px 2px #0d2a2e;
    white-space: nowrap;
    display: none;
}
.contact_us_fixed .content:after, .contact_us_fixed .form_call_back:after{
    position: absolute;
    top: 100%;
    right: 25px;
    content: "";
    border: 10px solid #fff;
    border-bottom-color: transparent;
    border-right-color: transparent;
    border-left-color: transparent;
    width: 0;
    height: 0;
}
.contact_us_fixed .content .item{
    font-size: 14px;
    margin: 10px;
}
.contact_us_fixed .content .item a{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.contact_us_fixed .content .item span.svg-group{
    display: inline-block;
    margin-right: 10px;
    height: 40px;
}

.contact_us_fixed .form_call_back{
    padding: 10px;
}
.contact_us_fixed .form_call_back p{
    text-align: center;
    margin:3px 10px 20px;
    max-width: 320px;
    color: #0b311c;
    font-size: 15px;
    line-height: 18px;
}
.contact_us_fixed .form_call_back #btn_callback{
    background-color: #0b311c;
    border-color: #0b311c;
    color: #fff;
}