:root {
  --main: #0e0e0e;
  --second: #fbd630;
  --gray: #eee;
  --gray-bg: rgba(236,243,253,1);
  --gray-dark: rgba(0, 0, 0, 0.4);
  --gray-light: rgba(0, 0, 0, 0.1);
  --white: #ffffff;
  --white-light: rgba(255, 255, 255, 0.35);
  --white-bg: rgba(255, 255, 255, 0.8);
  --white-text: rgba(255, 255, 255, 0.75);
  --black-darker: #0a182d;
  --black: #000;
  --black-text: #282834;
  --black-light: rgba(19, 19, 19, 0.7);
  --black-dark: rgba(19, 19, 19, 0.9);
  --yellow: #ffdc01;
  --green: #0ab106;
  --green-light: rgba(138, 202, 1, .9);
  --red: #e41f27;
  --red-light: #e76769;
  --blue: #2c4585;
  --blue-light: rgba(102,186,232,1);
  --font-main: 'Lexend Deca';
}
body,
td,
th,
input,
textarea,
select,
a {outline: 0 none;}
a,button,[role="button"],input,label,select,textarea{
    touch-action:manipulation
}
html {
    height: 100%;
    overflow-x: hidden!important;
    margin: 0!important;
    -webkit-transition: all 1.3s ease-out;
    -moz-transition: all 1.3s ease-out;
    -o-transition: all 1.3s ease-out;
    -ms-transform: all 1.3s ease-out;
    transition: all 1.3s ease-out;
    scroll-behavior: smooth;
}
body {
    color:#333;
    font-size: 16px;
    line-height: 1.4;
    font-family: var(--font-main), Arial, Helvetica, sans-serif;
    font-weight: 300;
    top: 0 !important;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    overflow-y: auto;
    overflow-x: hidden!important;
    -webkit-transition: all 1.3s ease-out;
    -moz-transition: all 1.3s ease-out;
    -o-transition: all 1.3s ease-out;
    -ms-transform: all 1.3s ease-out;
    transition: all 1.3s ease-out;
    background-color: var(--main);
}
body.template-article-detail {background-color: var(--gray-bg);}
body.modal-open {position: fixed; overflow: hidden;}
.clr{
    clear:both;
    display:table;
    float:none
}
a{
    outline:none;
    text-decoration:none;
    color: #111;
    vertical-align: baseline;
    background: 0 0;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
a:hover,
a:focus {
    color: var(--main);
    -webkit-transition: color 0.4s ease 0s;
    transition: color 0.4s ease 0s;
    text-decoration: none;
}
::-webkit-scrollbar{width:7px; height: 7px;}
::-webkit-scrollbar-track{-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,0); -webkit-border-radius:18px;border-radius:18px}
::-webkit-scrollbar-thumb{-webkit-border-radius:18px;border-radius:18px;background:rgba(162,163,167,.9);-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,0)}
::-webkit-scrollbar-thumb:window-inactive{background:rgba(74,144,226,.1)}
.font-size-18 {font-size: 1.125rem;}
.font-size-20 {font-size: 1.25rem;}
.sortable-handler { touch-action: none; }
img {
    display: inline-block;
    max-width: 100%;
    height: auto !important;
    object-fit: cover;
    object-position: center;
}
.img-rounded {border-radius: .313rem;}
.nums_tab,capcha{
    user-select:none;
    -moz-user-select:none;
    -webkit-user-select:none;
    -o-user-select:none;
    -ms-user-select:none
}

strong,strong *,b,b *{
    font-weight:bold
}
em,em *,i,i *{
    font-style:italic
}
u,u *{
    text-decoration:underline
}
.cap{
    text-transform:uppercase
}
ul, ol {padding-left: 2rem;}
.site-wrap::before {
    display: none;
    content: 'mobile';
}

.box_shadow {
    -webkit-box-shadow: 0px 5px 20px 0px rgba(0,0,0,0.15);
    -moz-box-shadow: 0px 5px 20px 0px rgba(0,0,0,0.15);
    box-shadow: 0px 5px 20px 0px rgba(0,0,0,0.15);
}
.box_border {
    border: 1px solid #e5e5e5;
}
.box_border_2x {
    border: 2px solid #ced4da;
}
.box_radius {
    -webkit-border-radius:4px !important;
    border-radius:4px !important;
    overflow: hidden;
}
.box_radius_05rem {
    -webkit-border-radius:.5rem !important;
    border-radius:.5rem !important
}
.box_radius_1rem {
    -webkit-border-radius:1rem !important;
    border-radius:1rem !important
}
.box_radius_2rem {
    -webkit-border-radius:2rem !important;
    border-radius:2rem !important
}
.btn.btn_round {border-radius: 25px;}
.btn.btn_radius {border-radius: .25rem;}
.btn.btn_border {border: 2px solid var(--main);}
.btn.btn_border:hover {background-color: var(--main); color: var(--white);}
.btn.btn-primary {
    border-radius: 0;
    border: none;
    color: var(--black);
    background-color: var(--second);
    outline: none;
}
.btn.btn-primary:hover {
    color: var(--white);
    background-color: var(--black);
} 
.text-bold {font-weight: 700;}
.text-green {color: var(--green);}
.text-blue {color: var(--blue);}
.text-red {color: var(--red);}
.bg-blue,
.bg-blue-light,
.bg-red,
.bg-red-light,
.bg-green,
.bg-yellow,
.bg-orange {
  color: var(--white) !important;
}
.bg-blue {background-color: var(--main);}
.bg-blue-light {background-color: var(--blue-light);}
.bg-green {background-color: var(--green);}
.bg-yellow {background-color: var(--yellow);}
.bg-red {background-color: var(--red);}
.bg-red-light {background-color: var(--red-light);}
.bg-orange {background-color: #ff7500 !important;}
.bg-gray {background-color: #f4f4f4;}
.bg-gray-light {background-color: #f4f4f4;}
.text-link{
    display:inline;
    border:0 none;
    background:none;
    padding:0;
    margin:0
}
.text-link--accent{
    color:#9fb2c1;
    border-bottom:1px solid currentColor;
    padding-bottom:1px
}
.text-link--accent:not([disabled]):hover,.text-link--accent:focus{
    color:#8099ad
}
.dash_hr {border-top-style: dashed;}
.hidden{
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter:alpha(opacity=0);
    opacity:0;
    visibility:hidden;
    display: none;
}
.visible{
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter:alpha(opacity=100);
    opacity:1;
    visibility:visible
}
.header--fixed {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
}
/*layout*/
.search-box,#masthead,#masthead .on_menu_left,.section-element, .section-foreground,section.section-element .features-inner,
.section-element .feature-block,.section-element .elementor-container,.box,.box-heading {
    position: relative;
}
.widget-toc ol li,.article__time,.article__other li,.article__other li a,.box-heading,.box-heading.line-bottom:after,.category_tab_menu ul li a,.article-grid .cat_info,.article-grid .i-Thumbs a,
.article-inner .article-meta:after,.article-meta .cate:after,.article-grid .article-meta .readmore,.article-grid .article-meta .readmore a,.box-category li,.box-category li a {
    display: block;
}
.box-special-menu > ul,.article__vote,.category_tab_menu ul,.view-carousel .featured .article-block .i-Thumbs,.article-meta .author,.article-meta .box-price,.product-box-price,
#product-page .product-detail-page .product_desc .tabs-container .nav-tabs li,.material-field,.review-block, .review-block__inner,.formQuick,.toggable__item-checkbox,.toggable_items .form-check-inline .icon-ok,.mega.rootmenu-hovercate > ul,
.rootmenu-hovercate:not(.mega) ul li .submenu:after,.mega.rootmenu-hovercate ul li li a:after,header nav#stickyNavigation,#search_block_top .block_content,
.hotline-info,.hotline-info .hotline-icon,.navbar-search,.search-content,.product-cat .product-cat-wrap > ul,.product-cat .product-cat-wrap > ul > li > .tab_item_wrap,
.element_cert .line_element_cert,.element_cert .line_element_logo,.step__footer{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.numbered-list li:before,.product-cat .product_box.box_lists .product-hover .product-simple-info ul,.product-info .item-cart-box .add-cart-button,.product-info .item-cart-box .add-cart-button .btnCall,
.form-group #reloadImg,.footer-item .box-content .content .link-list li {
    display: flex;
}
/*color*/
.article-meta .readmore a {color: var(--second);}
.content-section .item-title,.article__share a i, .article__print a i,.navbar-info .hotline a {
    color: var(--main);
}
.article-meta .readmore a:hover {color: #2374a0;}
.footer-item .box-content .content .link-list a:hover {color: var(--main);}
.toc-title {color: #ed1c24;}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {background-color: var(--main);}

.product-info .item-cart-box .row,.postcomment .row {margin-left: -5px; margin-right: -5px;}
.product-info .item-cart-box .row [class*="col-"],.postcomment .row [class*="col-"] {padding-left: 5px; padding-right: 5px;}
.protectview:after {
    content: attr(data-updated);
}
.box-category.boss-menu-cate li a.title:after,.box-category li a.title:before,.toggable-box__header--close::after,.toggable-box__header--open::after,
.toggable_items .form-check-inline .icon-ok,.breadcrumb>li+li:before {font-family: "FontAwesome";}
/*end*/
section {
    -webkit-transition: max-height .8s;
    -moz-transition: max-height .8s;
    -o-transition: max-height .8s;
    transition: max-height .8s;
}
.site-header {
    max-width: 100%;
    margin: auto;
    color: #43484e;
    background-color: var(--white);
}
.shoppingcart.template-article .site-header {
    border-bottom: 1px solid rgba(0,0,0,.1);
}
.site-header.transparent_white{
    background-color: rgba(255,255,255,0);
    color: var(--white);
}
.header--fixed.header-scroll .site-header.header-scroll.transparent_white {
    background-color: rgba(255,255,255,1);
    color: #43484e;
    -webkit-box-shadow: 0 10px 50px 0 rgba(0,0,0,.06);
    box-shadow: 0 10px 50px 0 rgba(0,0,0,.06);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}

.section-element {z-index: 1;}
.section-background {
    top: 0;
    min-height: 417px;
}
.container_inner {
    margin: 0 auto;
}
section.section-element{
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
section.section-element .container {
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: var(--white);
}
section.section-element.section-gmap .container {
    padding: 0;
    background-color: transparent;
}
section.section-element .features-inner {
    -webkit-touch-callout: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    line-height: normal;
    -moz-transform: translate(50%,50%);
    -ms-transform: translate(50%,50%);
    -o-transform: translate(50%,50%);
    -webkit-transform: translate(50%,50%);
    transform: translate(50%,50%);
    padding: 0;
    margin: 0;
    background-color: rgba(0,0,0,0);
    display: inline-block;    
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    -webkit-transform: none;
    transform: none;
}
section.section-element .features-inner.no-background {
    background-color: transparent;
    color: #111;
}
section.section-element.about-story .btn{padding: .5rem 1.5rem;}
section.section-element .features-inner .box-heading { margin-bottom: 2rem;}
section.section-element .features-inner .name {margin-bottom: 0;}

.background-image {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.section-element.featured-widget, .section-career {
    padding: 3rem 0;
}

.section-element.section-element-main,
.section-element.section-element-breadcrumb {
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}
.section-element.section-element-main {
    padding: 45px 0 25px;
}
.section-element.section-element-block {
    padding: 2rem 0;
}
.section-element .elementor-container {
    margin-right: auto;
    margin-left: auto;
}
.section-element.section-element-block .elementor-container {
    max-width: 790px;
}

/**/
.btn {white-space: normal; padding: .375rem 1.125rem;}
.btn .gruxIcon {font-size: 1.5rem; vertical-align: middle;}
.btn-container {display: block; position: relative;}
.btn.btn-link {
    border: 1px solid var(--main);
    color: var(--main);
}
.widget-toc {
    background-color: #F9F9F9;
    border: 1px solid #e6e6e6;
    margin-bottom: 1rem;
    padding: 1rem;
}
.widget-toc.float-right,.widget-toc.float-left {width: 280px;}
.widget-toc.float-right {float: right; margin-left: 10px;}
.widget-toc.float-left {float: left; margin-right: 10px;}
.toc-title {
    font-size: 1.125rem;
    padding-left: 1rem;
    font-weight: 600;
}
.widget-toc ol {
    padding-left: 1.75rem;
    list-style: none;
    counter-reset: item;
    font-size: .875rem;
    margin-bottom: 0;
}
.widget-toc ol li {
    margin: 4px 0;
    position: relative;
}
.widget-toc  ol li:before {
    position: absolute;
    margin-right: 100%;
    right: 0.5rem;
}
.article-section {
    position: relative;
}
.article__title {
    line-height: 1.2;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: var(--black);
}
.article__title .name {
    font-size: 2.5rem;
}
.article__time {
    color: var(--blue); 
    margin-top: .5rem; 
    font-size: 14px; 
    font-weight: 400;
}
.blog_more_action {
    background-color: #f2f8de;
    padding: .75rem 1rem;
    border-radius: 10px;
}
.article-section {padding: 1.5rem;}
.article-section .article__desc {
    font-weight: 600;
    font-size: 1.077rem;
    color: #333;
    margin-bottom: 20px;
}
.article-section .article__entry {
    padding-bottom: .75rem;
}
.header_special {
    position: relative; 
    padding: 1rem 1rem 1rem 2.5rem;
}
.header_special .icon_special {
    position: absolute;
    font-size: 4.25rem;
    color: #FEEDCD;
    left: 0;
    top: -10px;
    line-height: 40px;
    z-index: -1;
}
.header_special .icon_special:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -5px;
    width: 35px;
    height: 1px;
    background-color: var(--yellow);
}
.content_special {padding-left: 2.5rem;}
.article__entry h1,.article__entry h2,.article__entry h3,.article__entry h4 {font-weight: 600; margin-bottom: 1rem;}
.article__entry .article_ulstyle,.article__entry .article_ulstyle_2 {
    list-style: none;
    padding-left: 0;
}
.article__entry .article_ulstyle li {
    position: relative;
    padding: 1rem .75rem 1rem 3.25rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    background-color: var(--white);
    -webkit-box-shadow: 0px 5px 20px 0px rgba(0,0,0,0.15);
    -moz-box-shadow: 0px 5px 20px 0px rgba(0,0,0,0.15);
    box-shadow: 0px 5px 20px 0px rgba(0,0,0,0.15);
}
.article__entry .article_ulstyle li:after {
    content: '';
    width: 24px;
    height: 24px;
    position: absolute;
    background-image: url(../images/icons/icon_tick_blue.png);
    background-position: 0 0;
    background-size: contain;
    left: 1rem;
    top: .75rem;
}
.article__entry .article_ulstyle_2 li {
    position: relative;
    padding: .25rem .25rem .25rem 2.25rem;
    margin-bottom: 1rem;
}
.article__entry .article_ulstyle_2 li:after {
    content: '';
    width: 24px;
    height: 24px;
    position: absolute;
    background-image: url(../images/icons/icon_dot.png);
    background-position: 0 0;
    background-size: contain;
    left: 0;
    top: .325rem;
}
.numbered-list {
    counter-reset: numList;
    list-style: none;
    padding: 0 0 1px;
    margin: 0;
}
.numbered-list>* {
    margin-bottom: 1.5em;
}
.numbered-list li:before {
    border-radius: 16px;
    background: #e2f2c1;
    counter-increment: numList;
    content: counter(numList);
    float: left;
    width: 32px;
    height: 32px;
    line-height: 30px;
    font-size: 14px;
    margin: 0 15px 0 0;
    align-items: center;
    justify-content: center;
    color: #111;
    font-weight: 600;
    text-align: center;
}
.numbered-list li>* {
    overflow: auto;
    position: relative;
}
.article-form-inner {
    background-color: rgba(0,0,0,.5);
    padding: 4rem 2rem;
}
.article-form-inner .form-group label {color: var(--white);}
.article-section .article__info {
    padding: .5rem 0;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}
.article__info>span {
    line-height: 1;
}
.article__info>span:not(:last-child) {
    margin-right: 15px;
}
.article-section .article__info .article__author {
    margin-left: 20px;
}
.article__vote {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.article__vote .vote_result {margin-left: .5rem;}
.article__share {
    display: flex;
    width: 100%;
    align-items: center;
}
.article__share a {
    cursor: pointer;
    font-size: 11px;
    font-weight: bold;
    color: #444;
    display: inline-block;
    margin: 0 .35rem;
    white-space: nowrap;
    text-transform: uppercase;
}
.article__share a i {
    margin-right: 11px;
    font-size: 15px;
}
.article__share a:hover, .article__share a:focus {
    color: #0090C5;
    text-decoration: none;
}
.share-title {
    display: inline-block;
    vertical-align: middle;
}
.article__other {
    list-style: none;
    padding: 0;
    margin: 0;
}
.article__other li {
    margin: .188rem 0;
}
.article__other li a {
    padding: .313rem 0;
    position: relative;
}
.article__other li a:before {
    content: '\f0f6';
    font-family: 'FontAwesome';
    font-size: .875rem;
    margin-right: .5rem;
}
section.section-gmap .row {margin-left: -5px; margin-right: -5px;}
section.section-gmap .row [class*="col-"] {padding-left: 5px; padding-right: 5px;}
.section-gmap .add_stores {
    overflow-y: auto;
    height: 510px;
    background-color: var(--white);
}
.add_stores ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.add_stores ul li {
    padding: 20px 10px;
    border-bottom: 1px dotted #ccc;
    margin-left: 0;
    overflow: hidden;
    text-indent: 0;
    font-size: .813rem;
    cursor: pointer;
}
.add_stores ul li p {margin-bottom: 0;}
.add_stores ul li p.name {
    font-weight: 500;
    font-size: .875rem;
    text-transform: uppercase;
    color: #337ab7;
}
/**/
.section-element.bg-breadcrumb {}
.bg-breadcrumb .box-heading{
    margin-bottom: 0;
    color: var(--second);
    letter-spacing: 1px
}
.image_banner .container{
    position: relative;
    z-index: 3
}
.centered-txt-banner{
    overflow: hidden;
    position: relative
}
.banner-breadcrumb {
    padding: 2rem .5rem;
    position: relative;
    z-index: 2;
}
.dark_cta {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: url(../images/bg/bg_moody.jpg);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
}
.dark_cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0, 0.5), rgba(0,0,0, 0.45));
    z-index: 2;
}

.breadcrumb {
    padding: .5rem 0;
    margin-bottom: 0;
    font-size: .875rem;
    background-color: transparent;
    border-radius: 0;
    letter-spacing: 1px;
    color: var(--white);
}
.breadcrumb::-webkit-scrollbar { display: none;}
.breadcrumb>li+li:before {
    content: "/\00a0";
    color: inherit;
    padding: 0 6px;
}
.breadcrumb a,.breadcrumb>.active a{
    color: var(--white);
}

.social>a{
    width:32px;
    height:32px;
    line-height:32px;
    border-radius: 16px;
    text-align:center;
    color:var(--white);
    font-size:18px;
}
.social>a:not(:first-child){margin-left:.75rem;}
.social>a,.social>span{
    float:left
}
.social>span a{
    display:block;
    line-height:30px;
    background:#999;
    color:var(--white);
    padding:0 20px
}
.social-share .social-share-item {
    float: left;
    position: relative;
    top: 0;
}
.social-share .social-share-item:not(:first-child) {
    margin-left: 20px;
}
.hide{
    display:none
}
.content-section {padding: 2rem 0 0;}
.box {margin-bottom: 1rem;}
.box-heading {
    font-size: 1.6rem;
    margin: 0 0 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.box-heading > * {
    padding: 0;
    margin-bottom: 0;
    display: block;
    line-height: 1.8;
    position: relative;
}

.box-heading .name {
    font-size: 2rem;
    line-height: 1.4;
}
.box-heading .name.bold {font-weight: 700;}
#slider .box-heading .name.special {font-size: 1.875rem;}
.box-heading .name.special {font-weight: 300;}
.box-heading .name.black-title {
    background-color: var(--black);
    color: var(--white);
    padding: 7px 15px;
    display: inline-block;
    text-transform: uppercase;
}
.box-heading .name.extra {font-size: 4rem;}
.box-heading .name.h1 {font-size: 3rem;}
.box-heading .name.h2 {font-size: 2.75rem;}
.box-heading .name.h3 {font-size: 1.875rem;}
.box-heading .name.h4 {font-size: 1.5rem;}
.box-heading > .viewall {
    position: absolute; 
    right: 0;
    top: auto;
    bottom: 0;
    font-weight: 400;
    transition: all .3s;
    color: var(--white);
    display: flex;
    align-items: center;
    font-size: initial;
    text-transform: uppercase;
    padding: .5rem 1.35rem;
    background-color: var(--blue-light);
    border-radius: .35rem;
}
.box-heading > .viewall i {margin-left: .5rem;}
.box-heading > .viewall:hover {
    color: var(--second);
}

.left-column .box-heading {
    margin-bottom: 0;
    padding: 0;
}
.left-column .box-heading .name {
    padding: 0;
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: 0;
    line-height: 3;
    color: var(--black);
    display: block;
    display: -webkit-box;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.left-column .box-heading .name span {margin-right: 0;}

.box-heading .sub-heading {
    margin-bottom: 0;
    margin-top: .5rem;
    color: rgba(67,72,78,0.85);
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 400;
    overflow: hidden;
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}
.featured-product .box-heading, .featured-product .box-heading .sub-heading {color: var(--white);}
.box-heading.text-center .sub-heading {
    margin-left: auto;
    margin-right: auto;
    max-width: 725px;
}
.other-product {
    background-color: var(--white);
    padding: .5rem;
    font-size: 0.813rem;
}
.other-product .box-heading {
    padding: 0 0 8px;
    border-bottom: #ececec 1px solid;
    margin-bottom: 8px;
}
.other-product .box-heading .name {
    font-size: 1.143rem;
}
/*section*/
.section {margin-bottom: 20px;}
.category_tab_menu {position: relative; padding: 1.5rem 0;}
.category_tab_menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    cursor: pointer;
    position: relative;
    width: auto;
}
.category_tab_menu ul::-webkit-scrollbar { display: none;}
.category_tab_menu ul li:not(:first-child) {margin-left: 3rem;}
.category_tab_menu ul li a {
    padding: .5rem 0;
    font-size: 1rem;
    color: var(--main);
    font-weight: 600;
}
.category_tab_menu ul li a:hover {color: var(--black-light);}
.category_tab_menu ul li.selected a {color: var(--black);}
.article-scroll {
    height: 100%;
    max-height: 455px;
    overflow-x: hidden;
    overflow-y: auto;
}
.article-grid {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}
.article-grid .items {position: relative; margin-bottom: 2.5rem;}
.latest-news .article-grid .items {margin-bottom: 1.75rem;}
.article-grid.owl-carousel .items {margin-bottom: 0;}
.article-grid .row:nth-child(odd) .article-block,.article-grid .article-block.blog-box {
    background-color: var(--black);
}
.article-grid .article-block {
    position: relative;
    background-color: #b7b7b7;
    height: 100%;
    -webkit-flex-shrink: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    -webkit-transition: .3s all;
    -o-transition: .3s all;
    transition: .3s all;
}
.our-clients .article-grid .article-block a {
    display: block;
    overflow: hidden;
    border-radius: .5rem;
    background-color: var(--white);
}
.article-grid.owl-carousel .row > .article-block + .article-block {margin-top: 2rem;}
.owl-carousel.owl-theme .owl-nav.disabled+.owl-dots {margin-top: 1.5rem;}
.owl-theme .owl-dots {text-align: left;}
.owl-theme .owl-dots .owl-dot span {
    width: 20px;
    height: 20px;
}
.owl-theme .owl-dots .owl-dot.active span {
    width: 20px;
}
.article-grid .article-block:not(.noshadow):hover {
    -o-transition: box-shadow .1s ease-in-out;
    transition: box-shadow .1s ease-in-out;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .15);
}
.article-grid .article-block:hover .rounded-circle {
    -o-transition: box-shadow .1s ease-in-out;
    transition: box-shadow .1s ease-in-out;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .15);
}
.view-carousel .article-grid .article-block:hover {
    box-shadow: none;
}
.article-grid .article-block:hover .readmore {display: block;}
.featured .article-grid .article-block {
    z-index: 1;
    -webkit-box-shadow: 0px 0 10px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 0 10px 0px rgba(0,0,0,0.1);
    box-shadow: 0px 0 10px 0px rgba(0,0,0,0.1);
}

.article-grid .article-block.no-bg {background-color: transparent;}
.article-meta {
    padding-top: 1rem;
    padding-bottom: .75rem;
}
.featured .article-meta {
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: stretch;
}
.article-grid .article-block .article-meta {
    padding: 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.featured .article-block .article-meta {
    padding-top: .35rem;
}
.article-grid .row:nth-child(odd) .article-block .article-meta,.article-grid .article-block.blog-box .article-meta{
    color: var(--white);
}
.view-carousel {position: relative;}
.view-carousel .carousel-control {
    position: absolute;
    color: var(--main);
    text-align: center;
    opacity: 1;
    top: 20px;
    right: 20px;
    z-index: 10;
    text-shadow: none;
    line-height: 42px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    border: 1px solid var(--main);
    border-radius: 0;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0,0);
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-other.view-carousel .carousel-control {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);    
} 
.view-carousel .carousel-control:hover {
    color: var(--black);
}
.view-carousel .carousel-control.left {
    right: 70px;
}
.product-other.view-carousel .carousel-control.left {right: auto; left: 0;}
.product-other.view-carousel .carousel-control.right {right: 0;}
.section-element.featured-product .owl-theme .owl-dots .owl-dot span, 
.section-element.featured-product .owl-theme .owl-dots .owl-dot.active span,.section-element.featured-product .owl-theme .owl-dots .owl-dot:hover span {background-color: var(--white)}
.article-list .article-meta {padding: 0;}
.article-list.linebottom .article-block {
    border-bottom: 1px dashed rgba(173,173,173,.3);
    padding-bottom: .625rem;
    margin-bottom: .625rem;
}
.article-grid .i-Thumbs {
    display:block; 
    overflow: hidden; 
    position: relative;
    margin-bottom: 0;
}

.store_brand .article-grid .i-Thumbs {
    padding: 1rem .35rem;  
    border-radius: .35rem;
}
.store_brand .article-grid .article-block:hover {
    background-color: rgba(255,255,255,.65);
     border-radius: .35rem;
}
.article-grid .cat_info {
    position: absolute;
    z-index: 3;
    top: .5rem;
    right: .5rem;
    border-radius: 1rem;
    background-color: var(--yellow);
    color: var(--white-text);
    font-size: .75rem;
    padding: .25rem .75rem;
}
.product-hover figure img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
}
.article-block .i-Thumbs img {
    transform: scale(1);
    -webkit-transition: 0.8s ease;
    transition: 0.8s ease;
}
.cbp-item-off .product-hover figure img {
    -webkit-transition : unset;
    transition: unset;
}
.article-block:hover .i-Thumbs img {
    transform: scale(1.05);
}
.article-grid .i-Thumbs .box-label {
    position: absolute;
    right: .5rem;
    top: .5rem;
    z-index: 5;
    height: 24px;
    line-height: 1.6;
    font-size: 0.857rem;
    color: var(--white);
    border-radius: 3px;
    text-transform: uppercase;
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
    background-color: #f59b90;
}
.view-carousel .featured .article-block .i-Thumbs {
    margin: 0 auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.article-grid .i-Thumbs :after, .article-grid .i-Thumbs :before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: hsla(0,0%,100%,.3);
    opacity: 0;
    z-index: 1;
}
.article-grid .i-Thumbs :before {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.article-grid .i-Thumbs :after {
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}
.article-grid .article-block:hover .i-Thumbs :before {
    -webkit-animation: effect-height .7s ease-in;
    animation: effect-height .7s ease-in;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
.article-grid .article-block:hover .i-Thumbs :after {
    -webkit-animation: effect-width .7s ease-in;
    animation: effect-width .7s ease-in;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
.article-grid .i-Thumbs a img {
    transform: scale(1);
    transition: 0.8s ease;
}
@-webkit-keyframes effect-height {
  0% {
    height: 0;
    opacity: 1;
    visibility: visible;
  }
  to {
    height: 100%;
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes effect-height {
  0% {
    height: 0;
    opacity: 1;
    visibility: visible;
  }
  to {
    height: 100%;
    opacity: 0;
    visibility: hidden;
  }
}
@-webkit-keyframes effect-width {
  0% {
    width: 0;
    opacity: 1;
    visibility: visible;
  }
  to {
    width: 100%;
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes effect-width {
  0% {
    width: 0;
    opacity: 1;
    visibility: visible;
  }
  to {
    width: 100%;
    opacity: 0;
    visibility: hidden;
  }
}
.article-inner .article-meta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.75rem;
    z-index: 3;
}
.article-inner .article-meta:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    background-image: -o-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,.5));
    background-image: linear-gradient(to bottom,rgba(0,0,0,0),rgba(0,0,0,.5));
}
.article-featured .article-meta {
    padding: 1rem;
}
.article-meta .name {
    margin-top: 0;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    display: block;
    overflow: hidden;
    text-shadow: 0px 1px 6px rgba(0,0,0,0.5);
}
.article-list .article-meta .name {font-size: .857rem; margin-bottom: .357rem;}
.featured .article-meta .name {
    font-size: 1.438rem;
}
.article-meta p {font-weight: 300; font-size: .875rem;}
.article-meta .cate {
    display: block;
    position: relative;
}
.article-meta .description {
    margin: 1rem 0 0;
    color: rgba(67,72,78,0.9);
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.featured .article-meta .description {margin-top: 1.5rem;}
.article-meta .source {
    margin: .5rem 0 0;
    display: block;
    color: var(--main);
}
.featured .article-meta .source {
    margin-top: auto;
}
.featured .article-meta .source:before {
    content: '';
    height: 15px;
    display: block;
    margin-bottom: .5rem;
    background: url(../images/bg/line_body.png) repeat-x 0 50%;
}
.article-meta .description > i, .article-meta .author svg {
    display: inline-block;
    margin-right: .5rem;
    font-style: normal;
}
.article-meta .description > i::before {
    background-color: #a87e72;
    border-radius: 10px;
    width: 20px;
    height: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 13px;
}
.article-meta .author {
    color: var(--black-light);
    margin-top: .625rem;
    align-items: center;
}
.article-inner .article-meta .name a {color: var(--white);}
.article-inner .article-meta .author {color: var(--white-text);}
.article-meta p.description+p {margin-top: .5rem;}

.clamp-1,.clamp-2,.clamp-3,.clamp-4 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}
.clamp-1 {
    -webkit-line-clamp: 1;
}
.clamp-2 {
    -webkit-line-clamp: 2;
}
.clamp-3 {
    -webkit-line-clamp: 3;
}
.clamp-4 {
    -webkit-line-clamp: 4;
}
.article-meta .name.clamp-2 {
    height: 2.938rem;
}
.featured .article-meta .name.clamp-2 {
    height: 3.125rem;
}
.article-list .article-meta .name.clamp-2 {height: auto;}
.article-meta .description.line-content {
    padding: .625rem 0;
    margin-bottom: .375rem;
    border-top: 1px solid rgba(123,123,123,.2);
    border-bottom: 1px solid rgba(123,123,123,.2);
} 
.article-meta .box-price {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}
.featured .box-price .price__regular {
    color: var(--white);
}
.featured .article-meta .box-price {
    margin: .75rem 0;
    padding: .75rem 1.75rem;
    background-color: var(--second);
    border-radius: 1.5rem;
    font-size: 1.125rem;
    color: var(--white);
}
.box-price .price__regular {color: #df0000;}
.box-price .price__old {
    margin-left: 15px; 
    text-decoration: line-through;
    color: #ffd892;
}
.article-meta .box-control {
    padding: .75rem 0;
}
.article-meta .box-control .btn {
    padding: .375rem 1.875rem;
    font-size: .813rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.article-meta .box-control .btn.bg-orange-dark:hover {
    background-color: #f59b90!important;
}
.article-list.linebottom .article-block:last-child {border-bottom-width: 0;}
.article-meta .block-top {flex: 1;}
.article-meta .block-bottom {flex-shrink: 0; margin-top: auto;}
.article-meta .cat {
    display: block;
    margin-top: 10px;
    margin-bottom: 30px;
    font-weight: 500;
}
.article-meta .date {
    position: relative;
}
.article-meta .date:after {
    content: attr(data-updated);
}
.article-grid .article-meta .readmore{
    line-height: 18px; 
    text-transform: uppercase; 
    font-size: 0.75rem;
    letter-spacing: 2px; 
    margin-top: 1.25rem;
}
.article-grid .article-meta .readmore a{
    position: relative;
    transition: all 0.3s;
}
.article-grid .article-meta .readmore a:after{
    font-family: FontAwesome;
    content: '\f178';
    margin-left: 5px;
    display: inline-block;
}
/**/
.box-category-heading {
    position:relative;
    cursor:pointer;
    margin-bottom: 1rem;
}
.box-category-heading .name {
    background-color: var(--black);
    font-size: 1.875rem;
    color: var(--white);
    padding: 7px 15px;
    display: inline-block;
    text-transform: uppercase;
}
.box_radius .box-category-heading {border-top-left-radius: 3px; border-top-right-radius: 3px;}
.box-category-heading p {
    margin: 0;
    padding: 0;
    line-height: 24px;
    display: block;
    overflow: hidden; 
    white-space: nowrap;
    text-overflow: ellipsis;
}
.box-category {
    list-style: none;
    margin: 0;
    padding: 0;
}
.box-category li {
    padding: 0;
    border-bottom: 1px solid rgba(0,0,0,.1);
    position: relative;
}
.box-category li:last-child {border-bottom: 0;}
.box-category a:hover {text-decoration:none}
.box-category li a {
    line-height: 18px;
    padding: 10px 5px 10px 30px;
    font-size: 14px;
    font-weight: 600;
    position: relative;
}
.box-category li ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.box-category li li {
    background-color: var(--white);
}
.box-category li li a {
    color: #0f59a7;
    font-weight: 400;
}
.box-category.boss-menu-cate li a.title:after {
    position: absolute;
    content: '\f105';
    top: 10px;
    right: 5px;
    font-family: 'FontAwesome';
}
.box-category li a.title:before {
    position: absolute;
    content: '\f0f6';
    top: 8px;
    left: 10px;
    font-family: 'FontAwesome';
}
.box-category li li a.title:before {display: none;}
/*product*/
#product-filter {
    text-align: center;
    margin-bottom: 2rem;
}
#product-filter .inner {
    display: flex;
    justify-content: center;
}
#product-filter .cbp-filter-item {
    background-color: var(--gray);
    padding: .75rem 2rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: .35rem;
    cursor: pointer;
    position: relative;
    -webkit-transition: all ease .238s;
    -moz-transition: all ease .238s;
    transition: all ease .238s;
}
#product-filter .cbp-filter-item:hover {color: var(--blue-light);}
#product-filter .cbp-filter-item.cbp-filter-item-active {
    background-color: var(--blue-light);
    color: var(--white);
}
.products-grid.products-list figure {margin-bottom: 0;}
.product_title {
    font-size: 1.6rem;
    color: #111;
    margin: 0 0 20px;
    font-weight: 600;
    line-height: 1.4;
    position: relative;
}
.product_title.bg_title {
    background: #f6f6f6;
    padding: 8px 10px;
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,.1);
}
.result-products-list .product_title:not(:first-child) {
    margin-top: 1rem;
}
.product_title .name {margin-bottom: 0;}
.product_title.bg_title .name {font-size: 1.375rem; font-weight: 600;}
.box.result-products-list {margin-top: 2rem;}
.products-grid .product_box {margin-bottom: 2.5rem;}
.view-carousel .products-grid .product_box {margin-bottom: 0;}
.product_box:hover {
    box-shadow: unset;
}
.product_box.box_lists .product-hover {
    text-align: left;
    -webkit-flex-shrink: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    position: relative;
}
.product_box.box_lists:not(.cbp-item-off) .product-hover {
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}
.product_box.box_lists .product-hover:not(.noshadow) {
    -webkit-box-shadow: 0 0 1px 0 rgba(0,0,0,.35);
    -moz-box-shadow: 0 0 1px 0 rgba(0,0,0,.35);
    box-shadow: 0 0 1px 0 rgba(0,0,0,.35);
}
.product_box:hover .product-hover:not(.noshadow) {
    display: block;
    z-index: 1;
    -o-transition: box-shadow .1s ease-in-out;
    transition: box-shadow .1s ease-in-out;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .15);
}

.product-cat .product_box.box_lists .product-hover {
    background: var(--gray);
    border-radius: 10px;
    border: 1px dashed var(--second);
}
.product-cat .product_box:hover .product-hover,.product-cat .product_box.active .product-hover {
    background: var(--white);
    z-index: 1;
    -webkit-box-shadow: 0px 0 15px 0px rgba(0,0,0,0.15);
    -moz-box-shadow: 0px 0 15px 0px rgba(0,0,0,0.15);
    box-shadow: 0px 0 15px 0 rgba(0,0,0,0.15);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.product-cat .product_box.active .product-hover {
    border:2px solid var(--main);
}
.product_box .product-hover .smart-box-hover {
    display: block;
    position: relative;
}
.product_box.cbp-item-off .product-hover .smart-box-hover {
    -webkit-transition: unset; 
    -moz-transition: unset;
    -o-transition: unset;
    transition: unset;
}
.article-block .i-Thumbs .product-box-label,.product_box .product-hover .product-box-label,.product_box .product-hover .icon_label,.product_box .product-hover .text_label {
    position: absolute;
    z-index: 9;
    top: 0;
    right: 0;
    text-align: center;
    font-size: 14px;
    color: var(--white);
    display: block;
}
.product_box .product-hover .text_label {
    left: 0;
    right: auto;
    padding: .5rem .75rem;
    background-color: var(--red-light);
    border-radius: .35rem;
}
.product_box.box_lists .product-hover figure {
    position: relative;
    margin-bottom: 0;
    overflow: hidden;
    z-index: 1;
    height: 0;
    padding-bottom: 100%;
}
.product_box.box_lists .product-hover figure.p-2 {padding-bottom: 0!important;}
.product_box .product-hover .product-simple-info {display: block; margin-top: .5rem;}
.product_box .product-hover .product-box-name {
    font-weight: 500;
    font-size: .875rem;
    margin-bottom: 0;
    display: block;
}
.featured-product .product_box .product-hover .product-box-name { color: var(--white);}
.products-list .product_box .product-hover .product-box-name {font-size: .813rem;}
.product_box.box_lists .product-hover .product-box-name {
    overflow: hidden;
}
.product_box.box_lists .product-hover .product-box-desc {
    margin-top: 8px;
    font-size: .875rem;
    color: #888;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}
.product_box.box_lists .product-hover .product-box-desc ul {padding-left: 1.5rem;}
.product_box.box_lists .product-hover .product-box-desc ul li {margin-bottom: .313rem;}
.product_box.box_lists .product-hover .product-box-desc:not(.full-clamp) {-webkit-line-clamp: 4;}
.product-cat .product_box.box_lists .product-simple-info {
    padding: .75rem;
}
.product-cat .product_box.box_lists .product-hover figure {padding: .5rem 1.75rem}
.product-cat .product_box.box_lists .product-simple-info .product-box-name {
    display: inline-block;
    min-width: 150px;
    padding: .375rem 0;
}
.product-cat .product_box.box_lists.active .product-simple-info .product-box-name {color: var(--main);}
.product-cat .product_box.box_lists .product-hover .product-simple-info a {color: var(--white);} 
.product-cat .product_box.box_lists .product-hover .product-simple-info ul {
    justify-content: center; 
    margin: 0;
} 
.product-cat .product_box.box_lists .product-hover .product-simple-info ul li h4 { margin-bottom: 0;}
.product-cat .product_box.box_lists .product-hover .product-simple-info ul li { position: relative;}
.product-cat .product_box.box_lists .product-hover .product-simple-info ul li:not(:first-child):before { 
    border-left: 1px solid var(--white);
    content: '';
    height: 10px;
    position: absolute;
    left: 0;
    top: 2px;
}
.product-cat .product_box.box_lists .product-hover .product-simple-info ul li a { font-size: 12px; display: block; padding: 0 8px;}
.product-box-price {
    height: 30px;
    font-size: 1.125rem;
    color: var(--main);
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}
.box-price .price__regular,.product-box-price .price__regular {font-weight: 600;}
.products-list .product-box-price .price__regular {color: #f00;}
.product-box-price .price__old {
    margin-left: 15px;
    font-size: 0.938rem; 
    text-decoration: line-through;
    color: #999;
}
.product-cat .sub_catagory .owl-carousel {
    padding: .75rem 4rem;
    background-color: var(--gray);
    border-radius: 2rem;
}
.product-cat .sub_catagory .owl-carousel .item {display: block; text-align: center;}
.product-cat .sub_catagory .owl-carousel a {
    display: block;
    margin: 0 auto;
    background-color: transparent;
    border-radius: 2rem;
    text-align: center;
    padding: .5rem .5rem;
}
.product-cat .sub_catagory .owl-carousel a:hover {background-color: var(--main); color: var(--white);}
.sub_catagory .owl-theme .owl-nav [class*=owl-] {
    height: 24px;
    width: 24px;
    border-radius: 1rem;
    top: calc(50% - 12px);
}
.sub_catagory .owl-theme .owl-nav .owl-prev {
    left: 15px;
    background-position: 0 -126px;
}
.sub_catagory .owl-theme .owl-nav .owl-next {
    right: 15px;
    background-position: -65px -126px;
}
/**/
.product-detail-container {
    background: rgba(0,0,0,.8);
    width: 100%;
    padding: 0 1rem;
    color: var(--white);
}
.magnifyarea {margin-left: 19px;}
.magnifyarea img {max-width: unset; height: unset!important;}
.product-img-box, .product-img-box .product-image, .product-image-gallery,.product-image-gallery.loading {position: relative;}
.product-image-gallery {margin: 0; padding: 0; list-style: none;}
.product-image-gallery li a {display: block;}
.product-img-box {margin-bottom: 1rem; margin-right: 2rem;}
.product-img-box .product-image {
    padding:1rem;
    border-radius: 1rem;
    background-color: var(--white);
}
.no-touch .product-img-box .product-image:not(.zoom-available):hover {
    position: relative;
    display: block;
}
.no-touch .product-image:hover {
    border-color: #3399cc;
}
.product-img-box .product-image img {
    max-width: 100%;
    max-height: 750px;
    margin: 0 auto;
}
.product-image-gallery .gallery-image { display: none;}
.product-image-gallery .gallery-image.visible { display: block;}
.product-image-gallery .gallery-image.visible.hidden { visibility: hidden;}
.product-image-gallery:before, .product-image-gallery:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}
.product-image-gallery:before {
    background-color: white;
    opacity: 0.8;
    z-index: 2;
}
.product-image-gallery:after {
    background-image: url(../images/opc-ajax-loader.gif);
    background-repeat: no-repeat;
    background-position: center;
    z-index: 3;
}
.product-image-gallery.loading:before, .product-image-gallery.loading:after {display: block;}

.product-description {margin-left: 2rem;}
.product-description hr, .article__entry hr {
    background: url(../images/bg/line_body.png) repeat-x 0 50%;
    height: 5px;
    border-top-width: 0;
}
.product-description .box-heading {
    background-color: var(--black);
    color: var(--white);
    padding: 10px;
}
.price-box-info {padding: 1rem 0;}
.product-detail-container .price-box-info {padding-left: 1rem;}
.price-box-info .price__regular, .price-box-info .price__old {
    display: inline-block;
    line-height: 30px;
    text-decoration: none;
}
.product_news {padding: 3rem 0 1rem;}
.product-single .price-box-info .amount {
    color: var(--blue-light);
    font-size: 1.125rem;
    font-weight: 700;
}
.price-box-info .price__old {
    text-decoration: line-through;
    color: #999;
    margin-left: 1.5rem;
    font-size: 1.5rem;
}

.product-content {position: relative;}
.icon-svg--size-10 {
    width: 10px;
    height: 10px;
}
.view360 {
    width: 100%; height: 100%; 
    overflow: hidden;
    user-select: none;
    cursor: url(../images/openhand360.cur), w-resize;
    pointer-events: auto;
}
.view360 ul {padding: 0; margin: 0; list-style: none;}
.view360 img {width: 100%; display: block;}
.product-info .item-code, .product-info .item-info, .product-info .item-promo, .product-info .item-price, .product-info .item-cart, .product-info .item-guide {
    display: block;
    position: relative;
    margin-bottom: 1rem;
}
.product-info .item-info .name {
    display: flex;
    align-items: center;
    height: 100%;
    padding-left: 28px;
    height: 32px;
    position: relative;
    margin-bottom: 0;
}
.product-info .item-info .list_netweight {
    display: flex;
    align-items: center;
}
.product-info .item-info .list_netweight span {
    display: block;
    padding: .35rem .75rem;
    border: 1px solid var(--main);
    border-radius: .25rem;
    color: var(--main);
    font-weight: 700;
    cursor: pointer;
}
.product-info .item-info .list_netweight span+span {margin-left: .5rem;}
.product-info .item-info .list_netweight span.selected {
    background-color: var(--blue-light);
    color: var(--white);
    border-color: var(--blue-light);
}
.product-info .item-info .ul_info_list,.ul_check_list,.ul_address_list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.product-info .item-info .ul_info_list li,.ul_check_list li {
    padding-left: 28px;
    position: relative;
}
.product-info .item-info .ul_info_list li+li,.ul_check_list li+li {margin-top: .875rem;}
.product-info .item-info .ul_info_list li:before,.ul_check_list li:before,.product-info .item-info .name:before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 18px;
    height: 18px;
}
.product-info .item-info .name:before {
    top: 50%; 
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.product-info .item-info .ul_info_list li:before,.product-info .item-info .name:before {background: url(../images/icons/icon_cube.svg) no-repeat 50% 50%;}
.ul_check_list li:before {background: url(../images/icons/icon_check_blue.svg) no-repeat 50% 50%;}
.product-info .price-box-info {padding: .5rem 0 0;}
.product-info .item-code {line-height: 2;}
.product-info .item-code b {color: #777; font-weight: 400;}
.product-info .detail-stock {
    font-weight: bold;
    line-height: 16px;
    display: inline-block;
    vertical-align: middle;
    padding: 0px;
}
.product-info .detail-stock.instock {
    color: rgb(73, 168, 63);
}
.product-info .item-promo {
    border: 1px dashed #2698d6;
    background-color: #eff8ff;
    border-radius: 4px;
    padding: .813rem;
    font-size: 0.813rem;
    color: #555;
}
.product-info .item-promo .name {
    font-size: 1rem;
    font-weight: 600;
    color: #f00;
    margin-bottom: .5rem;
}
.product-info .item-promo p:last-child {
    padding-bottom: 0;
}
.product-info .product-description .item-cart .product-quantity {
    position: relative;
}
.product-quantity input {
    width: 100%;
    color: var(--black);
    text-align: center;
    padding: 0 45px 0 0;
}
.item-cart input[type=number] {
    -moz-appearance:textfield;
}
.item-cart input[type=number]::-webkit-inner-spin-button, 
.item-cart input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none; 
    margin: 0; 
}
.product-quantity .quantity-nav {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
}
.product-quantity .quantity-button {
    position: absolute;
    cursor: pointer;
    border: 0;
    width: 35px;
    padding: 0 10px;
    height: 19px;
    text-align: center;
    color: #111;
    font-size: 13px;
    display: flex;
    line-height: normal;
    -moz-transition: color 0.2s linear;
    -o-transition: color 0.2s linear;
    -webkit-transition: color 0.2s linear;
    transition: color 0.2s linear;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.product-quantity .quantity-button .fa {
    width: 16px;
    height: 7px;
    line-height: 7px;
}
.product-quantity .quantity-button.quantity-reduced {
    right: 0;
    top: 0;
    align-items: flex-end;
    border-top-right-radius: 4px!important;
}
.product-quantity .quantity-button.quantity-increase {
    right: 0;
    bottom: 0;
    vertical-align: bottom;
    border-bottom-right-radius: 4px!important;
}
.product-info .item-cart-box .add-cart-button {margin-bottom: 10px;}
.product-info .item-cart-box .add-cart-button .btnBuyNow {padding:  0.75em 2.25em;}
.product-info .item-cart-box .add-cart-button .btnCall {
    align-items: center;
    margin-left: 1rem;
    padding: .75em 1.125em;
    width: 50px;
    white-space: nowrap;
    background-color: var(--yellow);
    border-radius: 25px;
    color: var(--white);
    position: relative;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}
.product-info .item-cart-box .add-cart-button .btnCall .fa {font-size: 1.35rem;}
.product-info .item-cart-box .add-cart-button .btnCall .call-text {
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    opacity: 0;
    filter: alpha(opacity=0);
    left: -35px;
    display: inline-block;
    left: -35px;
    letter-spacing: 0.5px;
    padding: 0 6px;
    position: relative;
}
.product-info .item-cart-box .add-cart-button .btnCall:hover {
    width: auto;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}
.product-info .item-cart-box .add-cart-button .btnCall:hover .call-text{
    left: 0;
    opacity: 1;
    filter: alpha(opacity=100);
}
.product-option .item {
    border-radius: 4px;
    margin: .313rem;
    display: block;
    padding: .5rem;
    -webkit-box-shadow: 0 0 0 1px rgba(0,0,0,0.15);
    -moz-box-shadow: 0 0 0 1px rgba(0,0,0,0.15);
    box-shadow: 0 0 0 1px rgba(0,0,0,0.15);
    background-color: var(--white);
}
.product-option .item.active {
    -webkit-box-shadow: 0 0 0 1px rgba(0,144,197,0.75);
    -moz-box-shadow: 0 0 0 1px rgba(0,144,197,0.75);
    box-shadow: 0 0 0 1px rgba(0,144,197,0.75);
}
.product-option .item a {
    display: block;
    text-align: center;
}
.product-option .item a span {
    font-size: 13px;
    line-height: 16px;
    height: 17px;
    display: block;
    overflow: hidden;
}
.product-option .item a strong {
    color: #f00; display: block;
    margin-top: .313rem;
}
.product-option .item a span:before {
    content: '';
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    background-image: url(../images/uncheck.png);
    background-repeat: no-repeat;
    background-position: center center;
}
.product-option .item.active a span:before {
    background-image: url(../images/check.png);
}
.product-option.owl-theme .owl-nav [class*=owl-] {width: 32px;}
.product-option.owl-theme .owl-nav .owl-prev,.product-option.owl-theme .owl-nav .owl-next { background-color: transparent;}
.product-option.owl-theme .owl-nav .owl-prev {left: -20px; background-position: 0px 10px;}
.product-option.owl-theme .owl-nav .owl-next {right: -20px; background-position: -60px 10px;}
.product-detail-page, .other_products {
    margin-top: 1rem;
}
#product-page .product-detail-page .product_desc .tabs-container .nav-tabs {
    background: var(--white);
    padding: 0;
    margin-bottom: -1px;
    border: 0;
    border-bottom: 1px solid #dfe4e8;
    height: 40px;
}
#product-page .product-detail-page .product_desc .tabs-container .nav-tabs li {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: #999;
    cursor: pointer;
    text-align: center;
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    top: 0;
}
#product-page .product-detail-page .product_desc .tabs-container .nav-tabs li a {
    padding: 10px 30px 11px;
    color: #111;
    text-transform: uppercase;
    display: block;
    border-top: 0 solid transparent;
}
#product-page .product-detail-page .product_desc .tabs-container .nav-tabs .active {
    color: var(--white);
    font-weight: 600;
    background-color: #007ec4;
    border-top-color: #ffea00;
}
#product-page .product-detail-page .product_desc .tab-content {
    padding: 15px 30px;
}
.video-background {
    overflow: hidden;
    margin-bottom: 0;
    margin-right: -50px;
    position: relative;
    z-index: 1;
}
.video-background.right {
    margin-left: -50px;
    margin-right: unset;
}
.video-background  a.video__link {
    display: block; color: var(--white);
    position: relative;
    text-indent: -9999px;
}
.video-background  a.video__link {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 128px;
    height: 128px;
    background: url(../images/icons/icon_play.png) no-repeat 50% 50%;
    background-size: contain;
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
.section-career { background-color: var(--white);}
.section-career .table thead th {background-color: var(--gray-bg); border-top-width: 0; white-space: nowrap;}
.section-career .table th,.section-career .table td {
    padding: 1.25rem .75rem;
}
.section-career td:nth-child(1) {font-weight: 700;}
.section-career td:nth-child(2) {width: 120px;}
.section-career td:nth-child(4) {width: 140px;}
/**/
.section-faqs .faq_input {
    padding-right: 45px;
}
.section-faqs .faq_btn_search {
    position: absolute;
    width: 40px;
    top: 0;
    bottom: 0;
    right: 0;
    border-width: 0;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}
.section-faqs .faq_btn_search:focus {outline: none; box-shadow: none;}
.section-faqs .card {
    margin-bottom: .5rem;
    border-width: 0;
    background-color: transparent;
}
.section-faqs .card .card-header {
    border: 0;
    padding: 0;
    background-color: transparent;
}

.section-faqs .card .card-header .btn-header-link {
    display: block;
    text-align: left;
    font-weight: 700;
    padding: 1rem 0;
    color: var(--main);
}
.section-faqs .card .card-header .btn-header-link:focus {
    outline: none;
    box-shadow: none;
}
.section-faqs .card .card-header .btn-header-link:after {
    content: "\f106";
    font-family: 'FontAwesome';
    font-weight: 400;
    float: right;
}
.section-faqs .card .card-header .btn-header-link.collapsed {color: var(--black);}
.section-faqs .card .card-header .btn-header-link.collapsed:after {
  content: "\f107";
}

.section-faqs .card .collapsing {
  background: var(--white);
  line-height: 30px;
}

.section-faqs .card .collapse {
  border: 0;
}

.section-faqs .card .collapse.show {
    background: var(--white);
    border-radius: .5rem;
    line-height: 30px;
    -webkit-box-shadow: 0 0 20px 0 rgba(213, 213, 213, 0.5);
    box-shadow: 0 0 20px 0 rgba(213, 213, 213, 0.5);
}
/**/
.section-store {
    background-color: var(--gray-bg);
}
/**/
.about-story .card,.about-inner.card {
    border-width: 0;
    margin-left: -50px;
    border-radius: 1rem;
    overflow: hidden;
    -o-transition: box-shadow .1s ease-in-out;
    transition: box-shadow .1s ease-in-out;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .15);
    position: relative;
    z-index: 2;
}
.about-story .card.left,.about-inner.card.left {
    margin-left: unset;
    margin-right: -50px;
}
.about-story .card .card-body {
    padding: 2rem;
}
.about-story .card .card-footer {
    background-image: url(../images/bg/FooterBg.jpg);
    background-position: 50% 50%;
    background-repeat: no-repeat;
}
.wrap-scroll-nav {position: relative; margin-bottom: .5rem;}
.section-element-about .nav-tabs,.product-content .nav-tabs {
    justify-content: center;
    border-bottom-width: 0;
    position: relative;
}
.section-element-about .nav-tabs .nav-item, .product-content .nav-tabs .nav-item {
    margin-bottom: 0;
}
.section-element-about .nav-tabs .nav-item + .nav-item, .product-content .nav-tabs .nav-item + .nav-item {margin-left: 1rem;}
.section-element-about .nav-tabs .nav-item .nav-link, .product-content .nav-tabs .nav-item .nav-link {
    background-color: var(--gray);
    padding: .75rem 2rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: .35rem;
}
.section-element-about .nav-tabs .nav-item.show .nav-link, .section-element-about .nav-tabs .nav-link.active,
.product-content .nav-tabs .nav-item.show .nav-link, .product-content .nav-tabs .nav-link.active {
    background-color: var(--blue-light);
    color: var(--white);
    border-color: transparent;
}
.product-content .tab-content {
    padding: 1rem 0;
}
.section-element-about .content_about.bg_arrow {
    background-image: url(../images/bg/decoration_arrow.png);
    background-position: top center;
    background-repeat: no-repeat;
}
.section-element-about .content_about {
    padding: 3.5rem 0;
}
.about-quanlity,.about-certificate {
    background-color: var(--gray-bg);
    padding: 3.5rem 0;
}
.about-certificate .video-background {
    background-color: var(--white);
    padding: 2.5rem 3rem;
}
.about-privacy {padding-bottom: 3.5rem;}
.about-quanlity .quanlity_inner {position: relative;}
.about-quanlity .quanlity_inner:after {
    content: '';
    position: absolute;
    height: 18px;
    left: 0;
    right: 0;
    top: 143px;
    background: url(../images/bg/arrow_line.png) no-repeat 0 50%;
    z-index: 1;
}
.about-quanlity figure {
    margin-bottom: 4.5rem;
}
.quanlity_wrap {
    position: relative;
    border-radius: .5rem;
    padding: 1.35rem 1.5rem;
    background-color: var(--white);
}
.quanlity_wrap:before {
    position: absolute;
    content: '';
    top: -50px;
    left: 15%;
    width: 20px;
    height: 20px;
    background-color: var(--red-light);
    border-radius: 50%;
    z-index: 2;
}
.quanlity_wrap:after {
    position: absolute;
    content: '';
    top: -15px;
    left: 15%;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 15px solid var(--white);
}
.quanlity_wrap .title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: .75rem;
}
.quanlity_wrap .content {
    color: var(--black-light);
}
.content_about .item_about + .item_about {margin-top: 3rem;}
.content_about .item_about .social_left {padding-right: 1.5rem;}
.content_about .item_about .social_right {padding-left: 1.5rem;}
.content_about .item_about .about_card_top {margin-top: 50px;}
.content_about .item_about .icon_checklist {
    margin: 0;
    padding: 0;
    list-style: none;
}
.content_about .item_about .icon_checklist li {
    padding-left: 2rem;
    position: relative;
}
.content_about .item_about .icon_checklist li + li {margin-top: .75rem;}
.content_about .item_about .icon_checklist li:before {
    position: absolute;
    content: '';
    width: 24px;
    height: 24px;
    left: 0;
    top: 0;
    background: url(../images/icons/icon_check_circle.svg) no-repeat 50% 50%;
}
.item_about .view-carousel .carousel-control {
    bottom: 1rem;
    top: auto;
    background-color: var(--gray-bg);
}
.content_about .card .box-heading .name {
    color: var(--main);
}
.content_about .card .card-body {
    padding: 2.5rem 3rem;
}
.ckeditor-html5-audio audio {height: 36px;}
.modal-backdrop.show {opacity: .9;}
button.close {text-shadow: none;}

/**/
.ul_address_list li {padding-left: 68px; position: relative;}
.ul_address_list li .view {color: var(--blue-light);}
.ul_address_list li b,.ul_address_list li strong {display: block; margin-bottom: .75rem;}
.ul_address_list li+li {margin-top: 2rem;}
.ul_address_list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 46px;
    height: 40px;
}
.ul_address_list li.add:before {
    background: url(../images/icons/Map_Icon.svg) no-repeat 50% 50%;
}
.ul_address_list li.phone:before {
    background: url(../images/icons/Phone_Icon.svg) no-repeat 50% 50%;
}
.ul_address_list li.mail:before {
    background: url(../images/icons/Envelope_Icon.svg) no-repeat 50% 50%;
}
.form-group #reloadImg {
    border: 1px solid #ced4da; 
    border-radius: 4px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    padding: .375rem;
    align-items: center;
    height: 100%;
}
.form-group .form-control {font-size: .813rem; }
.form-group .form-control:focus {outline: none; box-shadow: none;}
.contact-form .form-group textarea,.contact-form .form-group .security-input,.contact-form .form-group select {background-color: var(--white);}
.contact-form .form-group select {height: 46px; border-color: #ddd;}
.contact-form .form-group .security-input {height: 46px;}
.contact-form .btnContact {
    padding: .75rem 1.75rem;
    font-size: 1.125rem;
    text-transform: uppercase;
}
.material-field {
    position: relative;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--white);
    border: 1px solid #ddd;
    border-radius: 5px;
}
.material-field:before {
    position: absolute;
    z-index: 5;
    top: 10px;
    right: 15px;
    color: var(--main);
    font-family: FontAwesome;
    font-size: 1.25rem;
}
.material-field.fullname:before {
    content: '\f2bb';
}
.material-field.address:before {
    content: '\f277';
}
.material-field.telephone:before {
    content: '\f095';
}
.material-field.email:before {
    content: '\f0e0';
}
.material-field label {
    position: absolute;
    font-size: 12px;
    line-height: 16px;
    padding: 0 10px;
    pointer-events: none;
    -o-transition: .1s ease all;
    transition: .1s ease all;
    left: 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    top: 14px;
    color: #999;
}
.material-field label span {font-size: 16px; line-height: 10px; height: 10px; padding-top: 2px; margin-left: .25rem;}
.material-field input,.material-field .field__input {
    position: relative;
    top: 0;
    box-sizing: border-box;
    float: left;
    border: none;
    color: #333;
    background: 0 0;
    height: 48px;
    padding: 16px 10px 10px;
    width: 100%;
    font-size: 13px;
    box-shadow: none;
    z-index: 100;
}
.material-field input[type=date]{
    width:100%
}
.material-field input[type=date]::-webkit-calendar-picker-indicator{
    -webkit-appearance:none
}
.material-field.is-dirty input~label,.material-field.is-dirty .field__input~label,.material-field input:focus~label{
    font-size:10px;
    top:6px;
    color:#999
}
.material-field.is-dirty input~label,.material-field.is-dirty .field__input~label,.material-field input:focus~label span.required{color:#999}
.material-field.material-disabled{
    background:#ddd;
    color:#999
}
.material-field.readonly{
    background:#ddd;
    color:#999
}
.material-radio__input>* {
    display: inline-block;
    vertical-align: middle;
}
.material__required {
    margin-left: 2px;
    color: #d90000;
}
.material-field input.form-control:disabled, .material-field input.form-control[readonly] {background-color: transparent;}
.material-field input:focus,.material-field .field__input:focus {
    outline: 0;
    background-color: transparent;
    box-shadow: none;
}
.formError {margin-top: -36px!important;}
.content-box {
    border: 1px solid rgba(175,175,175,0.25);
    border-radius: 5px;
}
.content-box__row {
    padding: 1.14286em;
    position: relative;
    zoom: 1;
}
.content-box__row ~ .content-box__row{
    border-top:1px solid rgba(173,173,173, 0.25)
}
.content-box__row:after, .content-box__row:before {
    content: "";
    display: table;
}
.content-box__row:after {
    clear: both;
}
.display-table .content-box__row {
    display: table;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
}
.content-box__row:first-child{
    border-top-left-radius:4px;
    border-top-right-radius:4px
}
.content-box__row:last-child{
    border-bottom-left-radius:4px;
    border-bottom-right-radius:4px
}
.content-box__row-spacing-vertical {
    padding-top: 0.85714em;
    padding-bottom: 0.85714em;
}
.content-box__row--secondary{
    background-color:#f9f9f9
}
.review-block ~ .review-block {
    margin-top: 0.85714em;
    padding-top: 0.85714em;
    border-top: 1px solid rgba(173,173,173,0.25);
}
.review-block__inner {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.review-block__link {
    max-width: 10em;
    font-size: 0.85714em;
}
.review-block__label {
    color: #999;
    padding-right: 1.14286em;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 6em;
    -ms-flex: 0 1 6em;
    flex: 0 1 6em;
}
.review-block__content {
    -webkit-box-flex: 5;
    -webkit-flex: 5;
    -ms-flex: 5;
    flex: 5;
    padding-right: 1.14286em;
}
.radio-wrapper, .checkbox-wrapper {
    zoom: 1;
    margin-bottom: 1em;
}
.radio-wrapper:after, .radio-wrapper:before, .checkbox-wrapper:after, .checkbox-wrapper:before {
    content: "";
    display: table;
}
.radio-wrapper:after, .checkbox-wrapper:after {
    clear: both;
}
.radio-wrapper:last-child,.checkbox-wrapper:last-child{
    margin-bottom:0
}
.radio-wrapper.content-box__row,.checkbox-wrapper.content-box__row{
    margin-bottom:0
}
.radio__input, .checkbox__input {
    padding-right: 0.75em;
    white-space: nowrap;
}
.radio__label, .checkbox__label {
    cursor: pointer;
    vertical-align: middle;
    font-weight: 400;
}
.radio__label__primary {
    cursor: inherit;
    font-family: inherit;
    vertical-align: top;
}
.radio__label__accessory {
    text-align: right;
    padding-left: 0.75em;
    white-space: nowrap;
}
.display-table .radio-wrapper, .display-table .checkbox-wrapper {
    display: table;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
}
.display-table .radio__input, .display-table .checkbox__input,.display-table .radio__label, .display-table .checkbox__label,.display-table .radio__label__primary, .display-table .radio__label__accessory {
    display: table-cell;
}
.display-table .radio__label, .display-table .checkbox__label,.display-table .radio__label__primary {
    width: 100%;
}

.content-box .input-checkbox,.content-box .input-radio{
    border-color:#d9d9d9;
    background-color:var(--white)
}
.content-box .input-checkbox:hover,.content-box .input-radio:hover{
    border-color:#cccccc
}
.content-box .input-checkbox:disabled,.content-box .input-radio:disabled{
    background-color:#fafafa;
    border-color:#cccccc
}

.input-checkbox:after,.input-radio:after{
    content:"";
    display:block;
    position:absolute;
    top:50%;
    left:50%;
    -webkit-transform:scale(0.2);
    transform:scale(0.2);
    -webkit-transition:all 0.2s ease-in-out 0.1s;
    transition:all 0.2s ease-in-out 0.1s;
    opacity:0
}
.input-checkbox,.input-radio{
    width:18px;
    height:18px;
    -webkit-box-shadow:0 0 0 0 #ed1c24 inset;
    box-shadow:0 0 0 0 #ed1c24 inset;
    -webkit-transition:all 0.2s ease-in-out;
    transition:all 0.2s ease-in-out;
    position:relative;
    cursor:pointer;
    vertical-align:-4px;
    border:1px solid;
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-font-smoothing: inherit;
}
.input-radio { border-radius: 50%;}
.input-radio:after{
    width:6px;
    height:6px;
    margin-left:-3px;
    margin-top:-3px;
    background-color:var(--white);
    border-radius:50%
}
.input-checkbox{
    border-radius:4px
}
.input-checkbox:after{
    width:10px;
    height:8px;
    margin-left:-5px;
    margin-top:-4px;
    background-image:url(../images/checkbox-tick.png);
    background-image:url(../images/checkbox-tick.svg),none
}
.input-checkbox:focus,.input-radio:focus{
    border:2px solid #ed1c24
}
.input-checkbox:checked,.input-radio:checked{
    border:none;
    -webkit-box-shadow:0 0 0 10px #ed1c24 inset;
    box-shadow:0 0 0 10px #ed1c24 inset
}
.input-checkbox:checked:after,.input-radio:checked:after{
    -webkit-transform:scale(1);
    transform:scale(1);
    opacity:1
}
.input-checkbox:checked:focus,.input-radio:checked:focus{
    border-color:#b1151b
}
.content-box__emphasis {
    font-weight: 600;
}
.blank-slate{
    padding:1.14286em;
    text-align:center;
}
.section--shipping-method .blank-slate p {font-size: 12px;}
.blank-slate__icon{
    margin-bottom:1.14286em
}
.icon--offsite{
    width:102px;
    height:52px;
    background-image:url(../images/offsite-small.png);
    background-image:url(../images/offsite-small.svg),none
}
/**/
.formQuickMain {
    background-position:center center;
    background-repeat:no-repeat;
    background-size:cover;
    display:block;
    position:relative
}
.formQuick {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.formQuick .quickMain, .formQuick .form {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px;
}
.formQuick .quickMain .box-content {padding: 2.5rem 0; color: var(--white);}
.formQuick .quickMain .box-heading {color: var(--white);}
.formQuick .quickMain .box-heading .sub-heading {color: var(--white-text);}
.formQuick .form .form-warp {
    background-color: var(--white); position: relative; margin: 60px 0;
    border-radius: .75rem;
    overflow: hidden;
}
.formQuickMain .form .tit{
    background:url(../images/bg-form-count.png) no-repeat center bottom;
    color:var(--black);
    font-weight:600;
    line-height:1.4;
    text-align:justify;
    display:block;
    padding:25px 30px 40px 30px
}
.formQuickMain .form form{
    padding:10px 40px
}
.formQuickMain .form form .btn{
    height:40px;
    border-radius: .375rem;
}
/**/
.section-element.about-story,.about-factory {
    padding: 4rem 0 3rem;
    background-image: url(../images/bg/Ice_Cylinder_Pattern.png),url(../images/bg/Dot_Pattern_Blue.png),url(../images/bg/bg_about.jpg) ;
    background-position: 3rem 5rem, 90% 10%, center center;
    background-repeat: no-repeat, no-repeat, repeat;
    background-size: unset;
}
.about-process {
    padding: 3.5rem 0 1rem;
}
.feature-block-one {
    position: relative;
    display: block;
    text-align: center;
    padding: 10px;
}
.feature-block-one .inner-box .icon-box {
    position: relative;
    display: inline-block;
    margin-bottom: 28px;
    transition: all 500ms ease;
    color: var(--main);
}
.feature-block-one:hover .inner-box .icon-box {
    color: var(--second);
}
.feature-block-one .inner-box h3 {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}
.feature-block-one .inner-box h3 a {
    display: inline-block;
    color: #222;
}
.feature-block-one .inner-box h3 a:hover {
    color: var(--main);
}
.feature-block-one .inner-box .text {
    position: relative;
}

.section-element.store_buy {
    padding: 3.5rem 0;
}
.mega_store {
    padding: .75rem 0;
    background-color: var(--white);
}
.store_buy_bg {
    background-image: url(../images/bg/FooterBg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 1rem;
    overflow: hidden;
}
.water_hp {
    border-radius: .75rem;
    border: 1px solid var(--main);
    padding: 1rem 1.5rem;
    height: 100%;
}
.water_hp .name {
    font-weight: 700; margin-top: .5rem; 
    color: var(--main);
    display: block;
}
.mega .store_buy_bg {border-radius: .75rem;}
.store_buy .store_title, .store_buy .store_brand {
    min-height: 200px;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 1.5rem 1rem;
}
.mega .store_buy .store_title, .mega .store_buy .store_brand {min-height: unset; padding: 1.35rem 1rem;} 
.store_buy .store_title {background-color: rgba(102,186,232,.55);}
.mega .store_buy .store_title {background-color: transparent;}
.store_buy .store_title figure {
    margin-bottom: 0;
    margin-right: .75rem;
    width: 120px;
}
.store_buy .store_title .name {
    font-size: 2.75rem;
    line-height: 1.2;
    color: var(--white);
    letter-spacing: 1px;
    position: relative;
    z-index: 5;
}
.mega .store_buy .store_title .name {font-size: 1.5rem;text-transform: none;}
.store_buy .store_title .name span {
    position: relative; 
    display: inline-flex; 
    padding-right: 1.5rem;
    z-index: 2;
}
.mega .store_buy .store_title .name span {padding-right: 0;}
.store_buy .store_title .name span:after {
    content: '';
    position: absolute;
    top: 20px;
    right: 0;
    z-index: -1;
    width: 190px;
    height: 40px;    
    background: url(../images/bg/Decoration_Blue.png) no-repeat 50% 100%;
    background-size: contain;
}
.mega .store_buy .store_title .name span:after {display: none;}
.section-element.ice_is_food {
    padding: 3.5rem 0;
    background: url(../images/bg/Ice_is_Food_bg.jpg) no-repeat 50% 0;
    background-size: unset;
    background-color: var(--main);
}

/**/
.section-element.our-clients .bgclients {
    background-image: url(../images/bg/two-men-shaking-hands.jpg);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
}
.clients-register {
    padding: 7rem 4.5rem; 
    margin-left: 8rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
}
.clients-register .title {
    font-size: 3.25rem;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 2rem;
}
.clients-register .btn {
    padding: .75rem 2rem;
    text-transform: uppercase;
}
.clients_list {
    padding: 7rem 4.5rem;
    margin-right: 8rem;
}
.section-element.info-newsletter {
    padding: 3.5rem 0;
    background-image: url(../images/bg/footer_form_bg.jpg);
}
.section-element.info-newsletter .content {
    color: var(--white); 
    font-size: 1.5rem; 
    letter-spacing: 1px;
}
.section-element.testimonial {padding: 1.5rem 0 3.5rem;}
.page-contact {padding: 1rem 0;}
.contact-form.form-vertical {
    position: relative;
}
.contact-form .form-header {
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1.125rem;
}
.contact-form .form-desc {
    margin-bottom: 1rem;
}
.contact-form .group-inner > div {
    display: inline-block;
    vertical-align: top;
}
.contact-form.form-vertical .form-control {
    font-size: .813rem;
    background-color: #f7efec;
    border: 0;
    padding: .625rem 1.125rem;
    border-radius: 0;
    height: 2.625rem;
}
.contact-form.form-vertical textarea.form-control {height: auto;}
.component-google-map {position: relative;}
/**/
.section-element .product-wrap {
    background-color: #f4f4f4;
    padding: 20px 0;
}
.section-element .product-wrap+.product-wrap {margin-top: 10px;}
.product-wrap .box-heading {margin-bottom: 15px; margin-top: 20px;}
.product-preview .__item {
    width: 100%;
    display: block;
    height: 250px;
    position: relative;
    background-position: 50% 50%;
    background-size: cover;
    margin-bottom: 30px;
}
.product-preview .__item .__content {
    position: absolute;
    width: 100%;
    bottom: 0;
    padding: 20px 0;
    text-transform: uppercase;
}
.product-preview .__item .__title {
    color: var(--second);
    padding-left: 20px;
    padding-right: 20px;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 0px 2px 6px rgba(0,0,0,0.5);
}
.product-preview .__item .__title b {color: var(--white);}
/*left column*/
#box-vertical-megamenus .box-category .nav-heading {
    color: var(--black);
    display: block;
    font-size: .913rem;
    height: 41px;
    line-height: 41px;
    margin: 0;
    padding: 0 0 0 20px;
    border-bottom: 1px solid rgba(0,0,0,.1);
    position: relative;
}
#box-vertical-megamenus .box-category .nav-heading:before {
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
#box-vertical-megamenus .box-category .nav-heading:last-child {border-bottom-width: 0;}
#box-vertical-megamenus .box-category .nav-heading.selected, #box-vertical-megamenus .box-category .nav-heading:hover {font-weight: 700; }
#box-vertical-megamenus .box-category .nav-heading:last-child:hover {border-bottom-left-radius: 3px; border-bottom-right-radius: 3px;}
#box-vertical-megamenus .box-category .nav-heading a {
    display: block;
    color: var(--black);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
#box-vertical-megamenus .box-category .nav-heading i.fa {
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    width: 35px;
    height: 41px;
    font-size: .714rem;
    line-height: 41px;
    text-align: center;
}
#box-vertical-megamenus .box-category .nav-heading i.fa:not(.collapsed):before {
    content: '\f077';
}
.box-category {
    list-style: none;
    margin: 0;
    padding: 0;
}
.box-category li {
    padding: 0;
    border-bottom: 1px solid rgba(0,0,0,.1);
    position: relative;
    display: block;
}
.box-category li:last-child {border-bottom: 0;}
.box-category a:hover {font-weight: 600;}
.box-category li a {
    color: #333;
    line-height: 18px;
    padding: 10px 5px 10px 30px;
    display: block;
    position: relative;
}
.box-category li a:not(.fa):before {
    left: 12px;
}
.box-category li ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.box-category li li {
    background-color: var(--white);
}
.box-category li li a {
    color: #007ec4;
    font-weight: 400;
}
.box-category.boss-menu-cate li a.title:after {
    position: absolute;
    content: '\f105';
    top: 10px;
    right: 5px;
}
.box-category li a.title:before {
    position: absolute;
    content: '\f0f6';
    top: 8px;
    left: 10px;
}
.box-category li li a.title:before {display: none;}
.box-category.boss-menu-cate li a.title:before {display: none;}

.applied-filters {
    position: relative;
    margin-bottom: 1rem;
}
.applied-filters .filter_box {padding: 0;}
.applied-filters .filter-clear:hover {text-decoration: none}
.applied-filters__filter {
    padding: 7px 10px;
    border: 1px solid #66b1e4;
    color: #66b1e4;
    font-size: 12px;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative;
    border-radius: 3px;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 2px 0;
}
.applied-filters__filter span {display: block; padding-right: 5px;}
.filter-sidebar .filter-container {
    position: relative;
    overflow: auto;
    height: 100%;
    padding: .75rem;
}
.mobile_filter_id .clickable-filters {margin-bottom: 55px;}
.filter-result-box .btn {font-size: 13px;}
.filter-sidebar .filterby-component {
    background: var(--gray);
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 22;
    padding: .375rem .75rem;
    transition: all .2s ease-in-out;
}
.clickable-filters ul {
    list-style: none;
    margin: 0;
    padding: 0;
    outline: 0;
    vertical-align: baseline;
}
.toggable-box {
    border-bottom: 1px solid var(--gray-light);
}
.clickable-filters .toggable-box:last-child {border-bottom-width: 0;}
.toggable-box__header {
    min-height: 45px;
    font-size: 1rem;
    letter-spacing: 0.1rem;
    font-weight: 900;
    position: relative;
    padding: 0;
    cursor: pointer;
    text-transform: uppercase;
}
.toggable-box__header .toggable-box__title {
    line-height: 45px;
    margin-bottom: 0
}
.mobile-list-filters .toggable-box__header--open {
    background-color: #eeedeb;
}
.toggable-box__header--close::after, .toggable-box__header--open::after {
    speak: none;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    right: 10px;
    top: 50%;
    font-size: 15px;
    font-style: normal;
}
.toggable-box__header--close::after,.toggable-box__header--open::after {
    font-size: .714rem;
    position: absolute;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.toggable-box__header--close::after {
    content: "\f078";
}
.toggable-box__header--open::after {
    content: "\f077";
}
.toggable_items {
    padding: .5rem 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}
.toggable_items .inner_items_wrap {
    overflow-x: hidden;
    position: relative
}
.toggable-box--close .toggable_items {
    display: none;
}
.toggable__item-checkbox {
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    line-height: 36px;
}
.toggable__item-checkbox .form-check-label:hover {color: var(--main);}
.form-check-inline {margin-right: 0;}
.form-group .form-check-inline+.form-check-inline {
    margin-left: 1.25rem;
}
.form-check-inline .form-check-label {
    vertical-align: middle;
}
.form-check-label {
    position: relative;
    cursor: pointer;
}
.checked .toggable__item-checkbox .form-check-inline .form-check-label {
    pointer-events: none;
}
.toggable_items .form-check-inline input[type=checkbox] {
    padding: 5px;
    width: 14px;
    height: 14px;
    margin-right: 10px;
    display: inline-block;
    position: relative;
    background-color: var(--white);
    border: 1px solid #7e7e7e;
    border-radius: 2px;
    cursor: pointer;
    -webkit-appearance: none;
}
.toggable_items .form-check-inline input[type=checkbox]:checked {
    content: "";
    speak: none;
}
.toggable_items .form-check-inline input[type=checkbox]:focus {outline: none;}
.toggable_items .form-check-inline .icon-ok {
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    top: 50%;
    width: 14px;
    height: 14px;
    left: 2px;
    color: var(--main);
    transform: translateY(-50%);
    font-size: 16px;
    border-radius: 2px;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.toggable_items .form-check-inline .icon-ok:before {content: '\f00c';}
.toggable_items .form-check-inline .toggable__item-description {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    max-width: 85%;
    font-size: 13px;
}

.filters-toolbar-wrapper{
    padding: 0;
    margin-bottom:1rem
}
.filters-toolbar{
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex;
    width:100%;
    -ms-flex-align:center;
    -webkit-align-items:center;
    -moz-align-items:center;
    -ms-align-items:center;
    -o-align-items:center;
    align-items:center;
    -webkit-flex-wrap:wrap;
    -moz-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
    padding: 0;
}
.filters-toolbar .box-heading, .filters-toolbar .box-heading .name {
    margin-bottom: 0;
    color: var(--black);
}
.filters-toolbar .box-heading .name {font-size: 2rem;}
.filters-toolbar--has-filter{
    position:relative
}
.filters-toolbar__item-wrapper{
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex;
}
.filters-toolbar__item-child label {margin-bottom: 0;}
.select-label{
    font-size:0.75rem;
}
.filters-toolbar__label,.filters-toolbar__input-wrapper{
    display:inline-block
}
.select-group{
    position:relative;
    z-index:2
}
.select-group select{
    font-size: 13px;
    background-image:none;
    background-color: var(--white);
}
.select-group .icon{
    height:calc(8em / 16);
    position:absolute;
    right:6px;
    top:50%;
    transform:translateY(-50%);
    width:calc(8em / 16);
    z-index:1
}
.filters-toolbar__input{
    border:1px solid var(--gray-light);
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    max-width:100%;
    padding-left: 10px;
    padding-right: 30px;
    height:36px;
    border-radius: 4px;
    opacity:1;
    position:relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.filters-toolbar__input:focus {outline: none;}
.filters-toolbar__item:first-child .filters-toolbar__input{
    padding-left:0
}
.filters-toolbar__input.hidden{
    opacity:0
}
.filters-toolbar__input option{
    text-overflow:ellipsis;
    overflow:hidden
}
.filters-toolbar__item--count{
    min-width:0;
    -webkit-flex:0 1 auto;
    -moz-flex:0 1 auto;
    -ms-flex:0 1 auto;
    flex:0 1 auto;
    text-align:center
}
.filters-toolbar__product-count{
    font-size:0.92857em;
    font-style:italic;
    line-height:40px;
    margin-bottom:0;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap
}
/**/
.box-social {position: relative;}
#footer .box-social {
    border-top: 1px solid var(--white-text);
    border-bottom: 1px solid var(--white-text);
    padding: 14px 0;
}
#footer .box-social .social-link {
    width: 40px;
    height: 40px;
    font-size: 20px;
    line-height: 40px;
    background: var(--white);
    color: var(--black);
    text-align: center;
    border-radius: 50%;
}
.box-social a {
    display: inline-block;
    vertical-align: middle;
    color: var(--white);
    margin-left: 1.35rem;
}
.box-social a:first-child {margin-left: 0;}

#footer{
    color: var(--white);
    font-size: .875rem;
    line-height: 1.6;
    border-top: 0 solid var(--main);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}
.footer-item .box-content .content h3,.footer-item .box-content .content h4,.footer-item .box-content .content .link-list h3 {font-size: 0.813rem; color:#a6c9d6}
#footer a{
    text-decoration:none;
}
#footer .container {
    padding-top: 2.5rem;
    padding-bottom: 2.25rem;
    background-color: #1b1b1b;
}
#footer .footer-item {margin-bottom: 1rem;}
#footer .footer-item address {line-height: 1.8; display: block;}
#footer .footer-item address .fa {font-size: 1.25rem;}
#footer .footer-item address p {padding-left: 30px; position: relative;}
#footer .footer-item address p:not(:last-child) {margin-bottom: 10px;}
#footer .footer-item address p .fa {
    position: absolute;
    left: 0;
    top: 3px;
    width: 18px;
    text-align: center;
}
.footer-item h2, .footer-item .title{
    font-size: 1.25rem; 
    text-transform: uppercase;
    font-weight: 700; 
    line-height: 22px; 
    margin-top: 0;
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    position: relative;
}
.footer-item .title {margin-bottom: 1.125rem;}
.footer-item .box-content .content h3,.footer-item .box-content .content h4,.footer-item .box-content .content .link-list h3 {margin-bottom: 0;}
.footer-item .box-content .content ul {list-style: none; padding: 0; margin: 0;}
.footer-item .box-content .content .link-list a{
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    display: block;
    color: var(--white);
    transition: all 0.3s;
}
.footer-item .box-content .content .link-list li:not(:last-child) a {padding-bottom: .75rem; }
.footer-item .box-content .content .link-list li {
    align-items: center;
}
.footer-item .box-content .content .link-list .ltx-icon {font-size: 1.5rem; margin-right: .5rem;}
.footer-item .box-content .content .link-list li.phone-special {margin-bottom: .5rem;}
.footer-item .box-content .content .link-list li.phone-special .ltx-phone{
    border: 1px solid rgba(255,255,255,.6);
    background: rgba(10,180,253,1);
    background: -moz-linear-gradient(left, rgba(10,180,253,1) 0%, rgba(0,219,102,1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(10,180,253,1)), color-stop(100%, rgba(0,219,102,1)));
    background: -webkit-linear-gradient(left, rgba(10,180,253,1) 0%, rgba(0,219,102,1) 100%);
    background: -o-linear-gradient(left, rgba(10,180,253,1) 0%, rgba(0,219,102,1) 100%);
    background: -ms-linear-gradient(left, rgba(10,180,253,1) 0%, rgba(0,219,102,1) 100%);
    background: linear-gradient(to right, rgba(10,180,253,1) 0%, rgba(0,219,102,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0ab4fd', endColorstr='#00db66', GradientType=1 );
    border-radius: 22px;
    padding: .313rem 1.125rem;
    color: var(--white);
    width:100%;
    font-size: 1.083rem;
}
.footer-item .box-content .content .link-list .ltx-hide:after {content: attr(data-updated);}
.footer-item .box-content .content .link-list a:hover{ 
    padding-left: 5px;
    text-decoration: none;
}
.footer-item p .fa {
    width: 14px;
    margin-right: 5px;
}
.contact-address-info .content-map {border: 5px solid var(--white);}
.content-map {
    height: 425px;
    overflow: hidden;
    position: relative;
}
.content-map iframe {
    border: 0;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.footer__text {color: #444; font-weight: 300;}
.footer__link {
    font-size: .75rem;
    margin-bottom: .75rem;
}
.footer__link a {
    font-weight: 300;
    color: var(--white-text);
}
.footer__link a:hover {color: var(--second);}
.footer__link a+a:before {
    content: '|';
    padding: 0 8px;
    color: var(--white-text);
}
#masthead  {
    width: 100%;
    z-index: 1021;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: var(--main);
}
.header-main-nav {
    position: relative;
    height: 80px;
    top: 0;
    left: 0;
    z-index: 20;
}
.nav-control {text-align: right;}
/*mega menu*/
.box-special-menu > ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.box-special-menu ul.main-navigation {
    justify-content: space-around;
    align-content: center;    
}
.box-special-menu > ul > li:not(.mega) {
    position: relative;
}
.box-special-menu > ul > li.root {
    width: 100%;
    text-align: center;
}
.box-special-menu > ul > li.root:last-child {border-right: 0;}
.box-special-menu ul > li > a {
    padding: .5rem 1rem;
    display: block;
    line-height:32px;
    position: relative;
    text-decoration:none;
    white-space: nowrap;
}
.box-special-menu > ul > li.root > a {
    font-size: 1.125rem;
    padding: 1.5rem 1rem;
    color: var(--white);
    letter-spacing: 0.1px;
    line-height:32px;
    white-space: nowrap;
}
.box-special-menu > ul > li.root > a:before,.box-special-menu > ul > li.root:last-child > a:after {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    bottom: 0;
    display: flex;
    background-color: var(--white-text);
}
.box-special-menu > ul > li.root > a:before {left: 0;}
.box-special-menu > ul > li.root:last-child > a:after {right: 0;}
.box-special-menu > ul > li.root.language > a {padding-left: .35rem!important; padding-right: .35rem!important;}
.box-special-menu > ul > li.root > a span {display: inline-block;}
.box-special-menu > ul > li.root > a span+span {margin-left: 1rem; color: var(--second); font-size: 1rem;}
.box-special-menu > ul > li.root:hover > a,#masthead.is-scroll .box-special-menu > ul > li.root:hover > a, .template-article #masthead .box-special-menu > ul > li.root:hover > a {color: var(--second);}

body.template-article-detail #masthead {background-color: var(--white);}
.rootmenu-hovercate {
    min-width: 190px;
    line-height: 20px;
    list-style: none;
    font-weight: 400;
    padding: 0;
    position: absolute;
    top: 100%;
    z-index: 20;
    display: none;
    background: var(--second);
    -webkit-box-shadow: 0 0 5px 0px rgba(50, 50, 50, 0.25);
    -moz-box-shadow:    0 0 5px 0px rgba(50, 50, 50, 0.25);
    box-shadow:         0 0 5px 0px rgba(50, 50, 50, 0.25);
}
.rootmenu-hovercate ul {
    padding: 0;
    margin: 0;
    list-style: none;
    min-width: 280px;
}
.rootmenu-hovercate:not(.mega) ul li:not(:first-child) {border-top: 1px solid var(--black);}
.rootmenu-hovercate ul li {text-align: left;}
.rootmenu-hovercate ul li li a {font-size: .813rem;}
.mega.rootmenu-hovercate {
    padding: 0;
    left: 0;
    right: 0;
    background-color: var(--gray-bg);
}
.mega.rootmenu-hovercate .mega_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.mega.rootmenu-hovercate .mega_wrap > * {
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    position: relative;
    width: 100%;
}
.mega.rootmenu-hovercate  ul.bx-menu3 {
    width: 230px;
    overflow: hidden;
    z-index: 30;
    margin: 2.5rem 0 1rem;
    padding: 0;
    -webkit-overflow-scrolling: touch;
}
.mega.rootmenu-hovercate  ul.bx-menu3 li.active {
    background-color: var(--white);
    border-top-left-radius: .35rem;
    border-bottom-left-radius: .35rem;
}
.mega.rootmenu-hovercate  ul.bx-menu3 li a {
    padding: .5rem 1rem;
    font-size: initial;
    font-weight: 700;
    height: 42px;
    display: flex;
    color: var(--main);
    align-items: center;
}
.mega.rootmenu-hovercate  .bx-menu3__content {
    background-color: var(--white);
    padding: 1rem;
}
.mega.rootmenu-hovercate .bx-menu3__content:after {
    content: '';
    position: absolute;
    top:0;
    bottom: 0;
    left: 100%;
    width: 100%;
    background-color: var(--white);
}
.mega.rootmenu-hovercate .nav-r {
    height: 100%;
    display: none;
    -webkit-overflow-scrolling: touch;
}
.mega.rootmenu-hovercate .nav-r.active {display: block;}
.mega.rootmenu-hovercate > ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.mega.rootmenu-hovercate > ul > li {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}
.mega.rootmenu-hovercate ul li a {
    padding: 6px 10px;
    font-size: 13px;
    line-height: 1.2;
    display: block;
    position: relative;
}
.rootmenu-hovercate:not(.mega) ul li .submenu:after {
    font-family: FontAwesome;
    content: '\f105';
    position: absolute;
    right: 1rem;
    top: 0;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.mega.rootmenu-hovercate ul li li a {color: #111;}
.mega.rootmenu-hovercate ul li li a:after {
    font-family: FontAwesome;
    content: '\f105';
    position: absolute;
    left: 2px;
    top: 0;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.rootmenu-hovercate ul li a:hover {
    text-decoration: none;
    color: var(--main);
    -webkit-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}
.rootmenu-hovercate:not(.mega) ul li ul {
    visibility:hidden;
    opacity:0;
    position:absolute;
    left:100%;
    top:0;
    z-index:22;
    box-shadow:0 0 10px rgba(0,0,0,0.2);
    -moz-box-shadow:0 0 10px rgba(0,0,0,0.2);
    -webkit-box-shadow:0 0 10px rgba(0,0,0,0.2);
    background:var(--second);
    padding: 0;
    transition:transform 0.4s ease 0s;
    -webkit-transition:-webkit-transform 0.4s ease 0s;
    -moz-transition:-moz-transform 0.4s ease 0s;
    transform:scale(0.7, 1);
    -webkit-transform:scale(0.7, 1);
    -moz-transform:scale(0.7, 1);
    transform-origin:0 0 0;
    -webkit-transform-origin:0 0 0;
    -moz-transform-origin:0 0 0;
}
.mega.rootmenu-hovercate ul li ul,.rootmenu-hovercate ul li:hover ul {
    visibility:visible;
    opacity:1;
    transform:scale(1,1);
    -webkit-transform:scale(1, 1);
    -moz-transform:scale(1, 1);
}

.rootmenu-hovercate ul li a span {
    position: absolute;
    right: 6px;
    top: 6px;
    font-size: 11px;
    text-align: right;
    font-weight: 400;
    color: #999;
}
.template-article #masthead,#masthead.is-scroll {
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,.1);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,.1);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,.1);
    -webkit-animation-name: animationFade;
    -o-animation-name: animationFade;
    animation-name: animationFade;
    -webkit-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}
.template-article #masthead {
    position: relative;
    top: 0;
}
#masthead.is-scroll {
    position: fixed;
}
@-webkit-keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@-o-keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        -o-transform: none;
        transform: none;
    }
}

@keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        -o-transform: none;
        transform: none;
    }
}
#masthead #langmobile {
    position: absolute;
    right: 60px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 0;
    margin: 0;
    list-style: none;
    display: none;
    align-items: center;    
}
#masthead #langmobile a {
    display: block;
    padding: .125rem .3rem;
}
#masthead .on_menu_left {
    border: 0 solid rgba(0, 0, 0, 0);
    margin-left: 0;
    background-color: transparent;
    display: none;
    border-radius: 0;
    width: 40px;
    line-height: 39px;
    height: 39px;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);    
}
#masthead .on_menu_left span, #masthead .on_menu_left span::before, #masthead .on_menu_left span::after {
    position: absolute;
    display: inline-block;
    height: 2px;
    width: 32px;
    background: var(--white-text);    
}
#masthead .on_menu_left span {
    border: 0;
    top: 50%;
    right: 3px;
    margin-top: -1px;
    -webkit-transition: background 0.2s;
    -moz-transition: background 0.2s;
    transition: background 0.2s;
}
#masthead .on_menu_left span::before, #masthead .on_menu_left span::after {
    content: '';
    right: 0;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-origin: 0% 50%;
    -moz-transform-origin: 0% 50%;
    -ms-transform-origin: 0% 50%;
    -o-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
    -webkit-transition: -webkit-transform 0.2s;
    -moz-transition: -moz-transform 0.2s;
    transition: transform 0.2s;
}
#masthead .on_menu_left span:before {
    top: -8px;
}
#masthead .on_menu_left span:after {
    top: 8px;
}
#masthead .on_menu_left.nav-is-visible span { background: rgba(170, 170, 170, 0);}
#masthead .on_menu_left.nav-is-visible span::before {
    -webkit-transform: translateX(6px) translateY(0) rotate(45deg);
    -moz-transform: translateX(6px) translateY(0) rotate(45deg);
    -ms-transform: translateX(6px) translateY(0) rotate(45deg);
    -o-transform: translateX(6px) translateY(0) rotate(45deg);
    transform: translateX(6px) translateY(0) rotate(45deg);
}
#masthead .on_menu_left.nav-is-visible span::after {
    -webkit-transform: translateX(5px) translateY(6px) rotate(-45deg);
    -moz-transform: translateX(5px) translateY(6px) rotate(-45deg);
    -ms-transform: translateX(5px) translateY(6px) rotate(-45deg);
    -o-transform: translateX(5px) translateY(6px) rotate(-45deg);
    transform: translateX(5px) translateY(6px) rotate(-45deg);
}
header nav#stickyNavigation {
    z-index: 4001;
    background-color: rgba(245,245,245,.9);
    position: fixed;
    top: -70px;
    width: 100%;
    height: 70px;
    margin-left: 0;
}
header nav#stickyNavigation .brandLogo {
    height: 70px;
    width: 90px;
    background-size: 70px;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 0;
}
header nav#stickyNavigation.brandLogo a {display: block;}
header nav#stickyNavigation #header-Menu {
    padding: 0;
    margin: 0;
    background-color: #f6f6f6;
}
.menu_left {
    height: 100%;
    display: table;
    margin: 0;
    padding: 0;
}
.menu_left>li {
    display: table-cell;
    vertical-align: middle;
    float: none !important;
    cursor: pointer;
}
.menu_left>li>a {
    font-size: 1.1rem;
    line-height: 1.2rem;
    padding: 0 20px;
    width: 100%;
    border-bottom: none;
    margin: 0;
    outline: none;
    display: block;
    overflow: auto;
}
.menu_left ul {
    margin: 0;
    padding: 0;
    border-bottom: none;
    border-color: #c5c5c5;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
.navbar-nav>li>.dropdown-menu {
    margin-top: 0;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}
.brandnav {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 80px;
    z-index: 2;
    -webkit-transition: all 0.6s ease;
    -khtml-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}
.brandnav .navbar-logo {
    align-items: center;
    width: 136px;
    height: 80px;
    padding: .35rem;
    text-align: center;
    z-index: 25;
    -webkit-transition: all 0.6s ease;
    -khtml-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}
.brandnav .navbar-logo a.logo {
    max-width: 120px;
    display: block;
}
.brandnav .navbar-logo .logo img {
    transition: 0.2s;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
}
.titleSeo {
    position: absolute;
    line-height: 0;
    left: 0;
    top: -999px
}
.video-wrapper,.maps-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe, .maps-wrapper iframe {
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
}
.sub_nav {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.sub_nav .sub_nav--link {
    background-color: var(--gray);
    padding: .75rem 2rem;
    margin: 0 10px 10px 10px;
    font-weight: 700;
    line-height: 1.6;
    text-transform: uppercase;
    border-radius: .35rem;
    cursor: pointer;
    position: relative;
}
.sub_nav .sub_nav--link:hover {color: var(--blue-light);}
.sub_nav .sub_nav--link.active {
    background-color: var(--blue-light);
    color: var(--white);
}
.blog_pagelist .card  {
    border-width: 0;
    overflow: hidden;
}
.blog_pagelist .card.featured {margin-bottom: 2.5rem;}
.card .card-block {
    display: flex;
    padding: 3rem 2.5rem;
    height: 100%;
}

.productsearch-result {
    position: relative;
    width: 100%;
}
.hotline-info {
    cursor: pointer;
    overflow: hidden;
    position: relative;
    align-items: center;
    justify-content: flex-end;
    -webkit-tap-highlight-color: transparent;
    color: var(--white);
}
.hotline-info:hover {color: var(--second);}
.hotline-info .hotline-icon {
    height: 28px;
    width: 28px;
    align-items: center;
    justify-content: flex-start;
}
.hotline-info .hotline-phone {
    line-height: 28px;
    height: 28px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.space-search {display: block; height: 50px;}
.navbar-search {
    align-items: center;
    justify-content: center;
    z-index: 2;
    width: 100%;
}
.right_navmenu a {color: var(--white); position: relative; display: inline-block;}
.right_navmenu a:hover {color: var(--second);}
.right_navmenu a + a {margin-left: .5rem; padding-left: .5rem;}
.right_navmenu a:not(:first-child):before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    height: 100%;
    background-color: var(--white);
}
.search-content {
    margin-right: 1rem;
    position: relative;
    align-items: center;
    flex-grow: 1;
}
.search_query {
    width: 100%;
    color: #333;
    border-radius: 0;
    border: none;
    position: relative;
}
.search_query:focus {outline: none;}
.search_query.placeholder {color: #333; }
.search-content .btn {
    position: absolute;
    right: 0;
    top: 0;
    border: 0;
    height: 32px;
    padding: .375rem;
    line-height: 20px;
    background: transparent;
}
.search-content input[type="text"] {
    text-transform: none;
    padding: 0 50px 0 10px;
    height: 32px;
    background-color: transparent;
    transition: none;
    -moz-transition: none;
    -webkit-transition: none;
    -o-transition: none;
    box-shadow: none!important;
    -moz-box-shadow: none!important;
    -webkit-box-shadow: none!important;
    -o-box-shadow: none!important;
    font-size: .875rem;
    background-color: var(--second);
}

.owl-theme .owl-nav [class*=owl-] {
    height: 40px;
    width: 40px;
    border-radius: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.owl-theme .owl-nav .owl-next {
    right: 0;
    background-position: -60px -55px;
    background-color: rgba(0,0,0,.9);
}
.owl-theme .owl-nav .owl-prev {
    left: 0;
    background-position: 10px -55px;
    background-color: rgba(0,0,0,.9);
}
.store_buy .owl-theme .owl-nav [class*=owl-] {height: 0; width: 0; padding: 0;}
.store_buy .owl-theme .owl-nav .owl-next {right: -40px;}
.store_buy .owl-theme .owl-nav .owl-prev{left: -40px;} 
.featured-product .owl-theme .owl-nav .owl-next {right: -50px;}
.featured-product .owl-theme .owl-nav .owl-prev {left: -50px;}
/**/
#panel {
    opacity: 0;
    display: none;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 1023!important;
    position: fixed;
    overflow-x: auto;
}
#panel.nav-is-visible {
    opacity: 1;
    display: block;
    -webkit-overflow-scrolling: touch;
    -webkit-transition: opacity 0.2s 0s, visibility 0s 0s;
    -moz-transition: opacity 0.2s 0s, visibility 0s 0s;
    transition: opacity 0.2s 0s, visibility 0s 0s;
}
.navigationMenu .panel {border: none;}
.navigationMenu .nav-heading {
    color: #333;
    display: block;
    font-size: 15px;
    font-weight: 400;
    height: 43px;
    line-height: 42px;
    margin: 0;
    padding: 0 50px 0 15px;
    border-bottom: 1px solid #eee;
    text-transform: uppercase;
    position: relative;
}
.navigationMenu .nav-heading a {display: block;color: #333;}
.navigationMenu .nav-heading .fa-chevron-down {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
    line-height: 40px;
    margin: 0;
    padding: 0 15px 0 30px;
    width: auto;
    font-size: 10px
}
.navigationMenu .nav-heading [data-toggle="collapse"].fa-chevron-down:before {content:"\f077"}
.navigationMenu .nav-heading [data-toggle="collapse"].collapsed.fa-chevron-down:before {content:"\f078"}
.navigationMenu .navi-nofollow {
    color: #333;
    background-color: #f4f4f4;
    border-bottom: 1px solid #ddd;
    height: 40px;
    line-height: 40px;
    display: block;
    padding: 0 15px;
    font-family: RobotoSlab-Regular;
    font-size: 14px
}
.sub-list {
    border-bottom: 1px solid #eee;
    padding: 0;
    margin-bottom: 0;
    background: #f7f7f7
}
.panel .sub-list {background-color: #f7f7f7;}
.panel .sub-list .sub-list {
    background-color: #eee;
}
.sub-list li {
    border-bottom: 1px solid rgba(0,0,0,.1);
}
.sub-list li:last-child {border-bottom-width: 0;}
.sub-list a {
    display: block;
    padding: 9px 50px 9px 32px;
    color: #333;
    font-size: 14px;
    position: relative;
}
.sub-list .sub-list a {
    padding-left: 50px;
}
.sub-list a:not(.fa):before {
    position: absolute;
    font-family: "FontAwesome";
    content: "\f138";
    left: 15px;
    top: 10px;
    font-size: 12px;
    color: var(--main);
}
.sub-list .sub-list a:not(.fa):before {
    left: 35px;
    content: "\f10c";
}
.sub-list .fa-angle-down {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
    line-height: 37px;
    margin: 0;
    padding: 0 15px 0 25px;
    width: auto;
}
.panel .sub-list .nav-level-sub {
    position: relative;
    padding-right: 50px;
}
.bx-main-slider,.bx-product-slider,.bx-main-ads {
    position: relative; 
    z-index: 1;
    overflow: hidden;
}
.bx-main-ads a {display: block;}
.bx-main-ads a+a {margin-top: 10px;}
.bx-product-slider .container {margin-top: 2.5rem;}
.bx-product-slider .container .master-slider-parent {border-radius: 1rem; overflow: hidden;}
.ms-layer.ms-caption {
    color: var(--white);
    min-width: 380px;
}
.ms-layer .numcount {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    padding-right: 20px;
    font-size: 36px;
    font-weight: 900;
    color: var(--white);
}
.ms-layer .numcount:after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    display: inline-block;
    height: 1px;
    width: 60px;
    background-color: rgba(122,122,124,.9);
    -webkit-transform: translateX(10px) translateY(0) rotate(-45deg);
    -moz-transform: translateX(10px) translateY(0) rotate(-45deg);
    -ms-transform: translateX(10px) translateY(0) rotate(-45deg);
    -o-transform: translateX(10px) translateY(0) rotate(-45deg);
    transform: translateX(10px) translateY(0) rotate(-45deg);
}
.ms-layer .name {
    font-size: 3rem;
    line-height: 1.1;
    padding-bottom: 15px;
    margin-bottom: .5rem;
    text-shadow: 0px 2px 6px rgba(0,0,0,0.5);
}
.ms-layer .name b {color: var(--white); font-weight: 700;}
.ms-layer p {
    font-size: 1.071rem; line-height: 1.4;
    font-weight: 300;
}
.ms-layer .ext-link {
    display: inline-block;
    letter-spacing: 1px; 
    margin-top: .5rem;
    padding: .75rem 1.75rem;
    line-height: 16px;
    font-size: .875rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--black);
    background-color: var(--second);
}
/**/
.filter-cat.product-cat {
    overflow: hidden;
    margin-bottom: 2rem;
}
.product-cat .product-cat-wrap > ul {
    flex-grow: 1;
    justify-content: space-between;
    position: relative;
    list-style: none;
    padding: 0;
    margin-bottom: 0;
    flex-direction: row;
}
.filter-cat.product-cat .product-cat-wrap > ul {
    padding-bottom: 48px;
}
.product-cat .product-cat-wrap > ul > li {
    width: 100%;
    padding: 0 1rem;
    cursor: pointer;
}
.product-cat .product-cat-wrap > ul > li:not(:first-child) {border-left: 1px solid rgba(255,255,255,.3);}
.product-cat .product-cat-wrap > ul > li > .tab_item_wrap {
    align-items: center;
    position: relative;
}
.product-cat .product-cat-wrap > ul > li.active > .tab_item_wrap:after {
    content: '';
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 0;
    height: 0;
    bottom: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--gray);
}
.product-cat .product-cat-wrap > ul > li > .tab_item_wrap .product-box-name {
    font-size: 1.125rem;
    margin-bottom: 0;
}

.element_cert {position: relative;}
.element_cert .icon_award {
    position: absolute;
    top: -2rem;
    right: -2rem;
    width: 101px;
    height: 161px;
    background: url(../images/award.png) no-repeat 0 0;
}
.element_cert_inner {padding: 2rem;}
.element_cert .diver {position: relative; text-align: center;}
.element_cert .diver span {display: inline-block; padding: .313rem; background-color: var(--white);}
.element_cert .diver:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    z-index: -1;
    border-bottom: 1px dashed #bab2b1;
}
.element_cert .line_element_cert,.element_cert .line_element_logo {
    flex: 1 1 0;
    justify-content: space-evenly;
}
.element_cert .line_element_logo .item {max-width: 180px; width: 100%; padding: .75rem 1.5rem; text-align: center;}
.element_cert .line_element_cert .item {max-width: 280px; width: 100%; padding: .75rem 1.5rem; text-align: center;}
/**/
.shopping-cart .checkout .shopping-cart__inner {padding-right: 0; border-right-width: 0;}
.shopping-cart .shopping-cart__inner .shopping-cart__product {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px dotted rgba(175,175,175,0.25);
}
.shopping-cart .shopping-cart__inner .shopping-cart__product:last-child {border-bottom-width: 0; margin-bottom: 0;}
.shopping-cart .shopping-cart__inner .shopping-cart__product .media {overflow: initial;}
.shopping-cart .shopping-cart__inner .shopping-cart__product .media>a{
    max-width: 120px;
    position: relative;
    border: 1px solid rgba(175,175,175,0.25);
    border-radius: 10px;
    margin-right: 20px;
}
.shopping-cart .checkout .shopping-cart__inner .shopping-cart__product .media>a {max-width: 85px}
.shopping-cart .shopping-cart__inner .shopping-cart__product .media .product-image {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    padding: 3px;
}
.shopping-cart .shopping-cart__inner .shopping-cart__product .media img {
    max-width: 100%; height: auto !important; display: inline-block;
}
.product-thumbnail__quantity {
    font-size: 0.85714em;
    font-weight: 500;
    line-height: 1.75em;
    white-space: nowrap;
    text-align: center;
    border-radius: 1.75em;
    background-color: rgba(114,114,114,0.9);
    color: var(--white);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    min-width: 1.75em;
    height: 1.75em;
    padding: 0 0.58333em;
    position: absolute;
    right: -0.75em;
    top: -0.75em;
    z-index: 3;
}
.shopping-cart .shopping-cart__inner .product-name {
    font-weight: 600;
    display: block;
    color: var(--main);
}
.shopping-cart .shopping-cart__inner .product-option {
    display: block;
    font-size: 12px;
    color: #999;
}

.shopping-cart .checkout .cart_subtotal {
    font-size: 1.5em;
    border-top:1px solid rgba(175,175,175,0.25); 
    margin-top:20px; 
    padding-top: 20px;
}
.shopping-cart .shopping-cart__inner .product-price {
    font-size: 16px;
    font-weight: bold;
    color: #ed1c24;
    display: block;
    margin-top: 10px;
}
.section--total-lines {
    padding: 1.5em 0;
    border-top: 1px solid rgba(175,175,175,0.25);
}
.section--total-lines .cart_total-price, .section--total-lines .cart_total-shipping {font-weight: 600;}
.section--total-lines .cart_total-shipping .small-text {font-size: 12px; color: #999; font-weight: 400;}

.step__footer {
    margin-top: 1.5em;
    margin-bottom: 1.5em;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.step__footer__continue-btn {
    float: right;
    padding: 0.65em 1.7em;
}
.step__footer__previous-link {
    margin-right: 1em;
}
#myAjxModal .modal-dialog .modal-content {
    border-radius: 1rem;
    overflow: hidden;
}
.modal-contact-form .form-group label {
    font-size: 13px;
    margin-bottom: 3px;
    font-weight: 600;
}
.modal-dialog .modal-content .modal-header{
    background-color: #2e8ec7;
    color: var(--white);
}
.modal-dialog .modal_img_left .modal-header {
    padding: 0;
    border-bottom: none;
    position: relative;
    z-index: 9;
}
.modal-dialog .modal_img_left .modal-header .close {
    width: 40px;
    height: 40px;
    line-height: 40px;
    -webkit-border-radius: .35rem;
    -moz-border-radius: .35rem;
    -ms-border-radius: .35rem;
    -o-border-radius: .35rem;
    border-radius: .35rem;
    border: 1px solid var(--main);
    position: absolute;
    z-index: 99;
    padding: 0;
    top: 35px;
    right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.modal-dialog .modal_img_left .modal-body {
    padding: 0;
}
.modal-dialog .modal-body .alert {display: none;}
.subscribe_image {
    position: relative;
    top: 0;
    display: block;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
}
.subscribe_form {
    padding: 2rem;
}
.subscribe_form .box-heading {margin-bottom: 1.75rem; color: var(--main);}
/**/
.pageNumber {
    line-height: 100%;
    padding:0;
    display:block;
    line-height:46px;
    text-align:center;
    position: relative;
    margin:1rem 0 1.5rem 0;
}
.pageNumber a {
    display: inline-block;
    width:46px;
    height:46px;
    text-align:center;
    margin: 0 .313rem;
    font-size: 1rem;
    background: var(--white);
    font-weight:700;
    color: var(--main);
    border-radius: 0;
    border:1px solid var(--main);
    text-decoration: none;
}
.pageNumber a:hover {
    background: var(--main);
    color: var(--white);
    border-color: var(--main);
}
.pageNumber a.current {
    background: var(--second);
    color: var(--black);
    border:1px solid var(--second);
}
.grecaptcha-badge {visibility: hidden; opacity: 0;}
#goog-gt-tt {display:none !important;}
.goog-te-banner-frame {display:none !important;}
.goog-te-menu-value:hover {text-decoration:none !important;}
.goog-text-highlight {background-color:transparent !important;box-shadow:none !important;}
#google_translate_element2 {display:none!important;}
/*shutdown website*/
.template-shutdown {
    height: 100vh;
    text-align: center;
}
.shutdown-page__wrapper {
    display: table;
    height: 100%;
    width: 100%;
    background-image: url(../images/password-page-background.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    color: #ffffff;
}
.shutdown-page__header {
    display: table-row;
    height: 1px;
}
.shutdown-page__header__inner {
    display: table-cell;
    padding: 15px 30px;
}
.shutdown-page__logo {
    margin-top: 90px;
    color: inherit;
}
.shutdown-page__main {
    display: table-row;
    width: 100%;
    height: 100%;
    margin: 0 auto;
}
.shutdown-page__main__inner {
    display: table-cell;
    vertical-align: middle;
    padding: 15px 30px;
}
.shutdown-page__hero {
    font-family: "HelveticaNeue","Helvetica Neue",sans-serif;
    font-weight: 500;
    font-size: 3.75rem;
    line-height: 1.4;
    text-transform: none;
    letter-spacing: 0;
    text-rendering: optimizeLegibility;
}
.shutdown-page__message {
    font-style: italic;
    font-size: 1.125rem;
    line-height: 1.8;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    padding: 30px;
}
/**/
.audioPlayer {
    position: relative;
    width: 100%;
    height: 24px;
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    align-items: center;
    justify-content: center;
    padding: .25rem 1rem;
    color: var(--white);
}
.audioPlayer figure {
    width: 24px;
    height: 24px;
    margin: 0;
}
.audioPlayer .info {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    padding: 0 16px;
}
.audioPlayer .info .name {
    letter-spacing: 1px;
}
.audioPlayer .btns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
}
.audioPlayer .btns > div {
    font-size: 24px;
}

.audioPlayer .progress {
    position: absolute;
    height: 0px;
    left: 0;
    top: 0;
    background-color: #00a8ff;
}
.icon-play, .icon-stop {
    font-family: "FontAwesome";
    font-size: 16px;
    font-style: normal;
    font-weight: 100;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}
.icon-stop:before {
    content: '\f28e';
}
.icon-play:before {
    content: '\f01d';
}
/**/
.aml_dk-wrap {
    font-size: 14px !important;
    position: fixed;
    z-index: 999;
    bottom: 54px;
    overflow: visible !important;
    transition: transform 0.2s ease 0s;
}
@media only screen and (max-width: 767px){
    .aml_dk-wrap {bottom: 104px;}
}
div.aml_dk-wrap div {
    overflow: visible !important;
}
.aml_dk-wrap.aml_dk-bottom-right {
    right: 0;
}
.aml_dk-wrap .aml_dk-flex-container {
    flex-direction: column;
    display: flex;
    justify-content: center;
}
.aml_dk-flex-container > a {
    width: 44px!important;
    height: 44px!important;
    margin: 5px!important;
    text-align: center;
    background-repeat: no-repeat;
    background-position: center center;
    cursor: pointer;
    position: relative;
    overflow: visible !important;
    background-size: 100%!important;
    border: 0 solid #fff!important;
    border-radius: 50%!important;
}
.aml_dk-channel-facebook {
    background-image: url(../images/widget_icon_messenger.svg);
}
.aml_dk-channel-zalo {
    background-image: url(../images/widget_icon_zalo.svg);
}
.aml_dk-channel-click_to_call {
    background-image: url(../images/widget_icon_click_to_call.svg);
}
.aml_dk-channel-contact_form {
    background-image: url(../images/widget_icon_contact_form.svg);
}
.aml-tooltip .aml-tooltiptext {
    visibility: hidden;
    font-size: 12px !important;
    line-height: 16px !important;
    text-align: center;
    white-space: nowrap;
    border-radius: 4px;
    padding: 8px;
    position: absolute;
    top: calc(50% - 16px);
    z-index: 1;
    opacity: 0;
    transition: opacity .5s;
}
.aml-tooltip .aml-tooltiptext::after {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
}
.aml-tooltip .aml-tooltiptext {
    background-color: var(--main);
    color: var(--white);
}

.aml_dk-bottom-right .aml-tooltip .aml-tooltiptext {
    right: 120%;
}
.aml_dk-bottom-right .aml-tooltip .aml-tooltiptext::after {
    border-color: transparent transparent transparent var(--main);
    left: 100%;
}
.aml-tooltip:hover .aml-tooltiptext {
    visibility: visible;
    opacity: 1;
}