/* PRODUCT BLOCK */
.catalog_inner { padding: 80px 0; overflow: hidden;}
.product_catalog { 
    overflow: hidden; 
    margin-bottom: 30px; 
    text-align: left;
    margin-left: -15px;
    margin-right: -15px;
}
.product_catalog:after {
    visibility: hidden;
    display: block;
    font-size: 0; 
    content: " ";
    clear: both;
    height: 0;
}
.product_catalog .catalog {
    background: #00A552;
    color: #fff;
    font-size: 18px;
    padding: 30px;
    height: 363px;
    margin: 12px 0;
    position: relative;
	text-align: left;
}
.product_catalog .catalog .title {
    font-family: 'Barlow Condensed';
    font-weight: 700;
    font-size: 34px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #fff;
}
.product_catalog .catalog .readmore {
    display: block;
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translate(-50%,0);
    width: 100%;
}
.product_catalog .catalog .readmore a {
    color: #fff; border-color: #fff; 
	font-weight: 500;
	font-size: 16px;
}
.product_catalog .catalog .readmore:hover a {
    border-color: #004436; 
}
.product_catalog .catalog .readmore a svg {
	padding-top: 5px;
}
.product_catalog .product {
    height: 363px;
    border: 1px solid rgba(0, 68, 54, 0.4);
    margin: 12px 0;
}
.product_catalog .product .thumb {
    height: 269px; 
    overflow: hidden;
    padding: 0;
}
.product_catalog .product .thumb img {
    width: 100%; height: 100%; object-fit: scale-down;
}
.product_catalog .product .title {
    font-family: 'Barlow Condensed';
    font-weight: 500;
    font-size: 20px;
	line-height: 30px;
    text-transform: uppercase;
    color: #004436;
    padding: 10px 30px; margin: 0;
}
.product_catalog .product .title a {
    color: #004436;
}
.product_catalog .product .title:hover a {
    color: #00A552;
}

/* PRODUCT PAGE */
.catalog_item {
    margin-bottom: 40px;
    background: #00A552; color: #fff;
    height: 275px;
    overflow: hidden;
}
.page_catalog .catalog_item:last-child { margin-bottom: 0;}
.catalog_item .content { 
    padding: 40px 30px 30px;
    font-size: 18px;
}
.catalog_item:nth-child(even) .content {
    padding: 40px 30px 0 0;
}
.catalog_item .content h2.title {
    margin: 0 0 10px; padding: 0;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Barlow Condensed';
    font-style: normal;
    font-weight: 700;
    font-size: 34px;
    text-overflow: ellipsis;
}
.catalog_item .content .intro { 
	margin: 25px 0; 
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 150%;
}
.catalog_item .content .readmore a {
    border: 1px solid #fff;
    color: #fff;
}
.catalog_item .content .readmore:hover a {
    border: 1px solid #004436;
}
.catalog_item .img img{ 
    width: 100%; height: 275px;
    object-fit: cover;
}

.page_catalog .col-left {
    margin-left: -15px;
    font-size: 16px;
}
.page_catalog .col-left .main-title, .page_catalog .col-right .main-title {
    font-family: 'Barlow Condensed';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    text-transform: uppercase;
    color: #004436;
    margin-bottom: 25px;
}
.page_catalog .catalog-filter {
    border: 1px solid rgba(0, 68, 54, 0.4);
    padding: 16px 0 ;
}
.page_catalog .catalog-filter ul { display: block; float: none;}
.page_catalog .catalog-filter .title {
    font-family: 'Barlow Condensed';
    font-weight: 500;
    font-size: 20px;
    color: #004436;
    padding: 0 16px 10px;
    text-transform: uppercase;
}
.page_catalog .catalog-filter a {
    color: #000; 
    font-weight: 500;
    padding: 8px 16px;
    display: block;
}
.page_catalog .catalog-filter li {
    margin-bottom: 1px; display: block; float: none !important;
}
.page_catalog .catalog-filter li:hover a, .page_catalog .catalog-filter li.active a {
    color: #004436; background: #EBF2E9;
}

/* Customize the label (the container) */
.page_catalog .catalog-filter .container {
    padding: 8px 0px;
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-weight: 500;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
/* Hide the browser's default checkbox */
/* .container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  } */
  
  /* Create a custom checkbox */
  .checkmark {
    position: absolute;
    top: 8px;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: #eee;
  }
  
  /* On mouse-over, add a grey background color */
  .container:hover input ~ .checkmark {
    background-color: #ccc;
  }
  
  /* When the checkbox is checked, add a blue background */
  .container input:checked ~ .checkmark {
    background-color: #004436;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .container input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the checkmark/indicator */
  .container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

.page_catalog .col-right {
    margin-right: -15px;
}
.page_catalog .col-right .main-title span {
    color: #4E4E54; 
    text-transform: lowercase;
    font-size: 16px;
    font-weight: 400;
    margin-left: 15px;
}
.advance_search {
    display: inline-flex;
}
.advance_search > div {
    width: 200px; line-height: 40px;
}
.advance_search select {
    color: #004436;
    background: #EBF2E9;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    height: 40px;
}

.box_filter {
    border: 1px solid rgba(0, 68, 54, 0.4);
    padding: 16px 24px;
    font-size: 16px;
    color: #333;
    margin-bottom: 24px;
    overflow: hidden;
}
.box_filter .filter_name {
    display: inline-table;
    color: #004436;
    background: #EBF2E9;
    font-size: 14px;
    padding: 8px 20px;
    margin-left: 15px;
}
.box_filter .filter_name .fa {
    color: #00A552;  margin-left: 10px; cursor: pointer;
}
.box_filter .filter_clear {
    color: #00A552;
    padding: 8px 0px;
    display: inline-table;
}


.catalog_plist { 
    overflow:hidden;
} 
.catalog_plist .box {
    margin-left: -15px;
    margin-right: -15px;
}
.catalog_plist .item { margin-bottom: 24px;}
.catalog_plist .item .border {
    border: 1px solid rgba(0, 68, 54, 0.4);
}
.catalog_plist .box-img {height:190px; margin-bottom:24px; overflow:hidden;display: block;}
.catalog_plist .box-img img {width:100%;height:100%;object-fit: scale-down;}
.catalog_plist .name {
    font-family: 'Barlow Condensed';
    font-weight: 500;
    font-size: 20px;
    color: #004436;
    text-transform:uppercase;
    overflow:hidden;
	padding: 16px 16px 0;
	white-space:nowrap;
	text-overflow:ellipsis;
    display: block;
}
.catalog_plist .price{
    font-family: 'Barlow Condensed';
    font-weight: 700;
    font-size: 34px;
    color: #00A552;
    padding: 0 16px 16px;
    text-align: left;
}

.page_catalog .pagination {
    margin: 20px 0 0px;
}
/* PRODUCT DETAIL PAGE */

.product_detail {
	background-image: none !important;
    background-color: #fff !important;
    height: 130px !important;
}

.product_detail .mask {
	background: none !important;
}
.product_detail .breadcrumb {
	color: rgba(0, 0, 0, 0.4) !important;
}
.product_detail .breadcrumb a {
	color: #004436 !important;
}
.product_detail .breadcrumb li:last-child a {
	color: #00A552 !important;
}
.body_product_detail { padding-top: 24px !important; }

.banner_product {
    height: 240px !important;
}
.banner_product .content {
    top: 80% !important;
}


  .panel-group {
    margin-bottom: 0;
  }
  .panel-group .panel {
    border-radius: 0;
    box-shadow: none;
  }
  .panel-group .panel .panel-heading {
    padding: 0 0 16px;
    background-color: #fff;
  }
  .panel-group .panel .panel-heading h4 a {
    background: #f8f8f8;
    display: block;
    font-size: 12px;
    font-weight: bold;
    padding: 15px;
    text-decoration: none;
    transition: 0.15s all ease-in-out;
  }
  .panel-group .panel .panel-heading h4 a:hover, .panel-group .panel .panel-heading h4 a:not(.collapsed) {
    background: #fff;
    transition: 0.15s all ease-in-out;
  }
  .panel-group .panel .panel-heading h4 a:not(.collapsed) i:before {
    content: "";
  }
  .panel-group .panel .panel-heading h4 a i {
    color: #999;
  }
  .panel-group .panel .panel-body {
    padding-top: 0;
  }
  .panel-group .panel .panel-heading + .panel-collapse > .list-group,
  .panel-group .panel .panel-heading + .panel-collapse > .panel-body {
    border-top: none;
  }
  .panel-group .panel + .panel {
    border-top: none;
    margin-top: 0;
  }
  .panel-title {
    color: #004436;
    border: 1px solid #004436;
    padding: 8px 16px;
    background-color: white;
    font-family: Barlow Condensed;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    text-transform: uppercase;
  }
  .panel-collapse { overflow: hidden;}
  .panel-default { border: 0}

@media (min-width: 1600px) {
    .banner_product {
        height: 340px !important;
        background-size: cover;
    }
}

.detail-product { overflow:hidden;}
.detail-product .inner {padding:80px 0px 0 0px !important;}
.detail-product .pro_info {background:#fff;}
.detail-product #pro_img { 
    padding-left: 0;
}
.detail-product .pro_info .info { padding-right:0}
.detail-product .thumb-detail { border: 1px solid rgba(0, 68, 54, 0.4); }

#slider-thumb {
	margin-top: 30px; 
	margin-left: -12px;
    margin-right: -12px;
	position: relative
}
#slider-thumb .img_item {
	margin: 0 12px; height: auto;
}
#slider-img {
    height: 407px;
    text-align: center;
    align-items: center;
}
#slider-img a { width: 100% !important}
.MagicZoom > img {
    height: 407px !important;
    object-fit: cover;
    margin: auto;
}
.slick-slide img {
	width: 100%; height: 130px;
    object-fit: cover;
	border: 1px solid rgba(0, 68, 54, 0.4); 
}
.slick-current img {
	border: 2px solid #00A552;
}
#slider-thumb .img-360 {
    position: relative;
}
#slider-thumb .img-360 .icon {
    position: absolute;
    z-index: 99;
    top: 50%;
    left: 50%;
    background: rgba(0, 68, 54, 0.60) url(../images/img-360.png) no-repeat center center;
    width: 60px;
    height: 38px;
    cursor: pointer;
    border-radius: 5px;
    transform: translate(-50%, -50%);
}
#slider-thumb .prev {
	position: absolute;
	left: 0; top: 50%;
	transform: translate(-50%,0);
}
.slick-next:before, .slick-prev:before {
	color: #004436 !important;
	font-size: 26px !important; 
}


/* IMAGE 360 VIEW */
#gallery_360view {
    position: fixed;
    top:0; left:0; right:0; bottom:0;
    width:100%; height:100%; overflow: hidden;
    background:#fff; display:none; 
    z-index:99999;
}
#gallery_360view .btn-close {
    position: absolute;
    top: 10px; right: 10px;
    width: 48px; height: 48px;
    padding: 3px;
    border-radius: 50%; 
    font-size: 22px;
    z-index: 9; 
    color: #fff; background:#00A552;
    text-align: center;
    cursor: pointer;
}
#gallery_360view .btn-close .fa { margin: auto; padding-top: 9px;}
#gallery_360view .btn-close .navbar-toggler-icon1 {
    transform: rotate(45deg);
    transform-origin: top;
    top: 24px;
    right: 9px;
    width: 26px;
}
#gallery_360view .btn-close .navbar-toggler-icon2 {
    transform: rotate(-45deg);
    transform-origin: top;
    top: 24px;
    right: 11px;
    width: 26px;
}

.img_viewer_360{
    width:800px; height:600px;
    margin:auto;
    background:#fff; cursor:pointer;
    overflow: hidden;
    position: relative;
}
.img_viewer_360 img{width:100%; height:100%; object-fit:cover}
.img_viewer_360 .tools{
    position:absolute;
    right: 10px;bottom: 10px;
}
.img_viewer_360 .tools .item{
    display:inline-block;
    padding:5px; margin:3px;
    background:#eee;
    cursor:pointer;
}
.img_viewer_360 .tools .item span{
    text-align:center;
    display:inline-block;
}
.icon-fullsize {
    width:23px; height:23px;
    background:url(../images/full-size.png) no-repeat center center;
}
.icon-zoomout {
    width:23px; height:23px;
    background:url(../images/zoom-out.png) no-repeat center center;
}


.detail-product .pro-detail {
    font-family:K2D; font-size:16px; color:#292929;
    padding: 30px 0 0 30px;
}
.detail-product .pro-detail:first-child { padding: 10px 0 0 30px}
.detail-product .pro-detail h1 {
    font-family: 'Barlow Condensed';
    font-weight: 700;
	font-size: 24px;
    line-height: 1.2;
    color: #004436;
    text-transform: uppercase;
    margin: 0px 0 10px;
}
.detail-product .price-txt {
    font-family: 'Barlow Condensed';
    font-weight: 700;
    font-size: 34px;
    color: #00A552;
}
.detail-product .pro-detail ul li {
    padding-top: 5px; padding-bottom: 5px;overflow: hidden;
}
.detail-product .pro_label {
    color:#6c798f; width:150px; float:left;
}
.detail-product .label_type {line-height: 35px;}
.detail-product .label_quantity {line-height: 35px; color:#292929;}
.unit-amount {
    width:120px; height:40px; line-height:40px;
    border:1px solid rgba(40, 47, 54, 0.15);
    border-radius: 4px;
}
.unit-amount .btn-minus {
    width:40px; border:0px;color: rgba(40, 47, 54, 0.3);
    background: transparent;
    font-size: 14px;
}
.unit-amount .btn-add {
    width:40px; border:0px;color: rgba(40, 47, 54, 0.3);
    background: transparent;
    font-size: 14px;
}
.unit-amount .btn-minus:hover,
.unit-amount .btn-add:hover {
    color: rgba(40, 47, 54, 0.6);
}
#number_product {
    float:left; width:38px; 
    height:38px; line-height:38px;
    border:0px; text-align:center;
    font-size: 14px; font-weight: bold;
}
.button-addcart {padding: 24px 0;clear: both;}
.addcart_detail {
    border-radius: 0; border: 0;
    background-color: #004436;
    color: #fff;
    font-family: 'Barlow Condensed';
    font-size: 16px;
    text-transform: uppercase;
}
.addcart_detail:hover {
    background-color:#0c6747;
}
.addcart_detail svg, .pro_contact svg { margin-left: 8px; vertical-align: middle;}
.addcart_detail:hover svg path, .pro_contact:hover svg path { stroke: #fff;}
.detail-product hr.space {
    color: #efefef; 
    height:1px; width:100%;
    margin:0 0 23px; padding: 0;
}
.detail-product .pro_contact {
    border-radius: 0;
    color: #004436;
    font-size: 14px;
    padding: 10px 40px;
    width: 250px;
    font-family: 'Barlow Condensed';
    font-size: 16px;
    text-transform: uppercase;
    background-color: #fff;
    border: 1px solid #004436;
    float: right;
}
.detail-product .pro_contact:hover {
    background-color: #004436;
    color: #fff;
}
.detail-product ._2tga {
    background-color: #3064ce;
}
.config_price li .btn_attr_config {
    border: 1px solid rgba(40, 47, 54, 0.15);
    background-color: #fff; text-transform:uppercase;
    box-shadow: none; border-radius: 4px;
    font-family: K2D;font-size: 12px; font-weight: bold;
    margin-right:8px;
}
.config_price li .active{ 
    border: 1px solid #0c6747; color:#0c6747;
}
.detail_product{
    background-color: #fff
}
.detail_product .nav-wrapper{
    text-align: left; height: 62px;
    border-bottom: 1px solid #ddd;
}
.detail_product .nav-tabs{
    height:62px; text-transform:uppercase;
    font-family: Oswald;
    font-size: 16px;font-weight: 500;
    text-align: left;
    display: inline-block;
    margin:auto;
}
.detail_product .nav-tabs li{}
.detail_product .nav-tabs a{
    color: rgba(40, 47, 54, 0.5);
    border: 0; border-bottom:5px solid #fff;
    margin-bottom: 0px;
    text-transform: uppercase;
    margin-right: 0px !important;
    font-weight: bold;
    padding:0 40px; height:61px; line-height:61px;
}
.detail_product .nav-tabs .active a {
    border: 0; border-bottom:5px solid #0c6747;
}
.detail_product .tab-content h2{
    font-family: Oswald;
    font-size: 18px;
    font-weight: 500;
    color: #282f36;
    line-height: 1.39;
    text-transform:uppercase;
}
.detail_product .tab-content{ 
    padding: 30px 0px 50px; text-align:justify; overflow: hidden;
}
.detail_product .tab-content img {max-width:100%;}
.nav-tabs > li.active > a, 
.nav-tabs > li.active > a:hover, 
.nav-tabs > li.active > a:focus {
    color: #0c6747 !important;
    border: none; border-radius: 0px;
    margin-bottom: 0px;
}
.fb-comments {background:#fff; margin:40px 0; padding:30px 40px;}
.fb_iframe_widget {
    display: inline-flex !important;
}
.fb_iframe_widget span {
	display: inline-table !important;
}
.fb_iframe_widget_fluid_desktop iframe {width:100%!important;}
.pro-related {background:#fff;overflow:hidden;margin-bottom: 40px;}
.pro-related .box-title{
    background:none; overflow: hidden;
    margin:0; padding:40px 0px 25px;
}
.pro-related .box-title .title{
    font-family: 'Barlow Condensed';
    font-weight: 700;
    font-size: 24px;
    color: #004436;	
}
.pro-related .related {padding:0 0px 40px; overflow:hidden}
.pro-related .related .item:first-child {padding-left: 0;}
.pro-related .related .item:last-child {padding-right: 0;}
.pro-related .related .item .border {
    border: 1px solid rgba(0, 68, 54, 0.4);
}
.pro-related .box-img {height:190px; margin-bottom:24px; overflow:hidden;display: block;}
.pro-related .box-img img {width:100%;height:100%;object-fit: scale-down;}
.pro-related .name {
    font-family: 'Barlow Condensed';
    font-weight: 500;
    font-size: 20px;
    color: #004436;
    text-transform:uppercase;
    overflow:hidden;
	padding: 16px 16px 0;
	white-space:nowrap;
	text-overflow:ellipsis;
    display: block;
}
.pro-related .related .price{
    font-family: 'Barlow Condensed';
    font-weight: 700;
    font-size: 34px;
    color: #00A552;
    padding: 0 16px 16px;
    text-align: left;
}

@media screen and (min-width: 1280px) {
    .catalog_inner { padding: 80px 0px 20px}
    #slider-thumb .thumb-box li img { height: 117px}
    .detail-product .addcart_detail, 
    .detail-product .pro_contact { width: 45%; padding: 10px; text-align: center;}
}
@media screen and (min-width: 1366px) {
    #slider-thumb .thumb-box li img {height: 127px}
}
@media screen and (min-width: 1440px) {
    .container {
        width: 1122px;
        padding-left: 0;
        padding-right: 0;
    }
    .container-fluid {
        width: 1360px;
        padding-left: 0;
        padding-right: 0;
    }
    .detail-product .addcart_detail, .detail-product .pro_contact {
        width: 250px; height: 49px;
    }
}  
@media screen and (max-width: 1280px) { 
    .menu-category li a { margin-right: 8px;}
    .page_catalog .catalog_item .col-md-7 {
        width: 55%;
    }
    .page_catalog .catalog_item .col-md-5 {
        width: 45%;
    }
}
@media screen and (max-width: 1024px) {
    #banner {
        height: 350px;
    }
    #banner .page-title {
        margin: 0;
        padding: 0; 
    }
    .catalog_inner {
        padding: 60px 0px 20px; 
    }
    .menu-category li { margin-bottom: 30px;}
    .catalog_item .content { padding: 20px 0 0; }
    .catalog_item:nth-child(2n) .content {
        padding: 20px 0 0 20px;
    }
    .catalog_item .img img { height: 300px;}
    .catalog_item .content .intro {
        margin: 15px 0;
    }
    .product_catalog .product .thumb {
        height: 190px;
    }
    .product_catalog .product .title {
        padding: 30px 15px;
    }
    .product_catalog .product, .product_catalog .catalog {
        height: 300px;
    }
    .catalog_plist .box-img { margin-bottom: 0}
    #slider-thumb .thumb-box li img { height: 85px}

    .detail-product .addcart_detail, 
    .detail-product .pro_contact { width: 45%; padding: 10px; text-align: center;}
    .detail-product .inner {
        padding: 40px 40px 0 40px !important;
    }
}
@media screen and (max-width: 950px) {
    .body_product_detail {
        padding-top: 50px !important;
    }
    .catalog_item { height: auto;}
    .catalog_inner {
        padding: 40px 0px 0;
    }
    .page_catalog .catalog_item .col-md-5,
    .page_catalog .catalog_item .col-md-7 {
        width: 100%;
    }
    .catalog_item .content, .catalog_item:nth-child(even) .content{
        padding: 25px;
    }
    .product_catalog .product .thumb {
        height: 300px
    }
    .product_catalog .product, .product_catalog .catalog {
        margin-bottom: 30px; height: 400px
    }
    .page_catalog .col-left {
        margin-left: 0;
    }
    .page_catalog .col-right {
        margin-right: 0;
        margin-top: 40px;
    }
    .catalog_plist .box-img {
        height: 300px;
    }
    #slider-thumb .thumb-box li img {
        height: auto;
        min-height: 158px;
    }
    .detail-product #pro_img, .detail-product .pro_info .info {
        padding-left: 0;
        padding-right: 0;
    }
    .detail-product .pro-detail:first-child,
    .detail-product .pro-detail {
        padding: 30px 0 0 0;
    }
    .detail-product .pro_contact { float: right}
    .detail_product {margin-top: 40px;}
    .detail_product .nav-tabs {padding: 0 40px}
    .detail_product .tab-content {padding: 40px}
    .pro-related .box-title {padding: 0px 40px;}
    .pro-related .related {padding: 0 25px;}
    .pro-related .related .item { margin: 20px 0}
    .pro-related .related .item:first-child {
        padding-left: 15px;
    }
    .pro-related .name,
    .pro-related .related .price { text-align: center;}
}

@media screen and (max-width: 768px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    #banner .page-title { font-size: 50px; margin: 30px 0 20px}
    .menu-category li a { padding: 8px 10px;}
    .menu-category li {
        margin-bottom: 20px;
    }
    .catalog_inner {
        padding: 40px 15px 10px;
    }
    .product_catalog .product .title {
        text-align: center; font-size: 30px;
    }
    .product_catalog .catalog .readmore {
        position: relative;
        bottom: unset;
        left: unset;
        transform: unset;
        width: 100%;
        padding-top: 20px;
    }
    .product_catalog .product .thumb {
        height: auto
    }
    .product_catalog .product, .product_catalog .catalog {
        margin-bottom: 30px; height: auto
    }
    .catalog_plist .box-img {
        height: auto;
    }
    .footer .inner { padding: 15px; }
}
@media screen and (max-width: 600px) {
    .product_detail { display: none;}
    .body_product_detail {
        padding-top: 80px !important;
    }
    #slider-thumb .thumb-box li img {min-height: 110px;}
    .detail_product .nav-tabs li {
        width: auto;
    }
    .detail_product .nav-tabs a {padding: 0 30px}
    .advance_search {
        display: inline-flex;
        margin-bottom: 10px;
    }
    .advance_search { margin-bottom: 10px;}
    .box_filter {overflow: hidden;}
}
@media screen and (max-width: 450px) {
	#banner.product_detail { 
        height: auto !important;
        margin-top: 100px;
    }
    #banner.product_detail .content { top: 0 !important }
    #banner.product_detail .page-title { margin: 30px 0 0; }
    #banner .page-title {font-size: 48px;}
    #banner .page-description {
        height: 110px; overflow: scroll;
    }
    #head-top { height: auto !important; margin-bottom: 0px !important}
    .product_block { height: 481px !important }
    .product_detail { 
        display: block; clear: both; 
        height: auto !important; 
        background-image: none !important;
        min-height: 120px;
    }
    .product_detail .mask { display: none;}    
    .product_detail .content { 
        position: relative !important; 
        top: unset !important;
        left: unset !important;
        right: unset !important;
        margin: 0 24px;
    }
    .product_detail .page-title { 
        color: #004436 !important;
        font-family: Barlow Condensed;
        font-size: 48px !important; 
        font-style: normal;
        font-weight: 700;
        line-height: 1.3;
        text-transform: uppercase;
        margin: 24px 0 32px;
    }    
    .body_product_detail { padding-top: 0px !important;}

    #slider-img { 
        height: 272px;
        border: 1px solid rgb(0, 68, 54, 40%);
        overflow: hidden;
        text-align: center;
    }
    #slider-img img { height: 272px; width: 100%; object-fit: cover; margin: auto;}
    #slider-img .carousel-inner > .item {
        height: 100%; 
    }
    #slider-img .carousel-control.right,
    #slider-img .carousel-control.left {
        background-image: unset;
    }
    #slider-img .carousel-control { color: #004436; text-shadow: unset; opacity: 1;}
    #slider-img .carousel-control .icon-prev, 
    #slider-img .carousel-control .glyphicon-chevron-left {
        left: 0;
        margin-left: -1px;
        width: 40px;
        height: 40px;
        border: 1px solid green;
        transform: translate(0,-50%);
        padding: 8px;
    }
    #slider-img .carousel-control .icon-next, 
    #slider-img .carousel-control .glyphicon-chevron-right {
        right: 0;
        margin-right: -1px;
        width: 40px;
        height: 40px;
        border: 1px solid green;
        transform: translate(0,-50%);
        padding: 8px;
    }
	
	.menu-category-box { width: 100%; height: 90px; overflow: hidden;}
    .mn-level1, .mn-level2 {
        min-width: 2000px;
        max-width: 20000px;
        height: 90px;
        overflow: hidden;
        overscroll-behavior: contain; 
    }
    .mn-level1 li, .mn-level2 li { width: 250px; }

	.menu-category li a { padding: 8px 0px;}
	.menu-category li { margin-bottom: 0; }

    .catalog_inner {
        padding: 48px 24px 8px;
    }
    .catalog_item .content, .catalog_item:nth-child(even) .content {
        padding: 40px 32px;
    }
    .catalog_item .content h2.title { line-height: 1.5;}
    .catalog_item .img img {
        height: 200px;
    }
    .catalog_item {
        margin-bottom: 40px; height: auto;
    }
    .catalog_item:last-child { margin-bottom: 0;}
    .catalog_item .content .intro {
        margin: 15px 0 30px;
    }
    .catalog_item .content .readmore a {
        width: 100%;
    }
    .page_catalog .col-left {
        margin-left: -15px;
        margin-right: -15px;
    }
    .col-left .main-title {
        background: #EBF2E9; padding: 15px 16px;
        text-align: center;
        margin-bottom: 0 !important;
        display: block;
    }
    .col-left .main-title .icon {
        background: url(../images/filter.png) no-repeat center center;
        height: 16px; width: 21px;
        margin-right: 10px;
        display: inline-block;
    }
    #CatalogNavbar { display: none;}
	#CatalogNavbar .navbar-nav { margin: 7.5px 0;}
	.page_catalog .col-right .main-title, .page_catalog .col-right .main-title span { display:block; width: 100% }
	.page_catalog .col-right .main-title span {margin-left: 0 !important}
    .page_catalog .detail-content { 
        clear: both;
        padding: 15px 0;
        margin-left: -15px;
        margin-right: -15px;
		text-align: justify;
    }
    .page_catalog .col-right { 
        margin-top: 30px;
        margin-left: -15px;
        margin-right: -15px;
    }
    .page_catalog .advance_search { margin-bottom: 20px; float: left !important;}
    .page_catalog .advance_search > div {
        width: 200px;
        line-height: 35px;
    }
    .page_catalog .box_filter { clear:both; padding: 16px;}
    .page_catalog .catalog_plist .box { padding: 0;}
    .catalog_plist .name, .catalog_plist .price { text-align: left;}
    .catalog_plist .price { font-size: 30px;}
	.catalog_plist .box-img {
		height: 162px;
	}
	.catalog_plist .name { font-size: 14px;}
	.catalog_plist .price { font-size: 24px }
	.catalog_plist { overflow: unset;}
	.catalog_plist .item {
		margin-bottom: 0;
		padding-left: 0;
		padding-right: 0;
	}
	.catalog_plist .box {
		margin-left: 0;
		margin-right: 0;
	}
	.catalog_plist .item::nth-child(odd) .border { border-left: 0;} 
	
    .product_catalog .catalog .readmore a { display: block;}
    .product_catalog .product .title { font-size: 20px;}
	
	.pagination > li > a { padding: 10px 20px; }

    .filter_right {
        clear: both;
        display: block !important;
        float: unset !important;
    }
    .detail_product {
        margin-top: 8px;
        margin-left: 24px;
        margin-right: 24px;
    }
    .detail-product .info { padding-left: 0; padding-right: 0}
    .detail-product .inner {
        padding: 10px 24px 0 !important;
    }
    .detail-product .pro-detail .pro_text, .pro_intro ul li span:last-child { float: right;}
    .config_price li .btn_attr_config { margin-right: 0}
    .unit-amount { float: right !important; }
    .detail-product .addcart_detail, .detail-product .pro_contact {
        width: 100%; margin: 8px 0;
    }

    #slider-thumb .thumb-box li img {
        min-height: 77px; 
    }
    .detail_product .nav-tabs {
        padding: 0 9px;
        width: 100%;
    }
    .detail_product .nav-tabs a {
        padding: 0 10px;
		font-size:14px;
    }
    .detail_product .tab-content {
        padding: 20px 24px 0;
    }
    .pro-related {
        margin-top: 20px;
        margin-bottom: 20px;
        margin-left: 0;
        margin-right: 0;
    }
    .pro-related .box-title {
        padding: 0px;
    }
    .pro-related .related {
        padding: 0;
        margin-left: 0;
        margin-right: 0;
    }
    
    .pro-related .related .item:last-child {
        padding-right: 15px;
    }
    .pro-related .box-img {height: 241px; margin-bottom: 10px;}
    .pro-related .name, .pro-related .related .price {
        text-align: left;
    }
    .pro-related .name {padding: 0 16px}
    .detail-product .pro-detail:first-child, .detail-product .pro-detail {
        padding: 15px 0 0 0;
    }
    .pro-related .related .item {
        margin: 5px 0 25px; width: 100%;
    }
    .footer .inner {
        padding: 33px 24px 10px;
    }
	.footer .copyright ul {
		float: left; 
	}
	.footer .copyright ul.privacy li {
		margin-right: 0;
		display: block;
		padding: 8px 0;
	}
	ul.social-icons li { float: left}
	ul.social-icons a {
		margin-left: 0; margin-right: 15px;
	}
    .copyright .container { 
        padding-left: 24px;
        padding-right: 24px;
    }
	
}

@media screen and (max-width: 375px) {
    .detail_product .nav-tabs a {
        font-size: 14px;
    }
    .detail_product .tab-content {
        padding: 15px;
    }
    .pro-related .related .price {
        font-size: 24px;
    }
    #slider-thumb {
        margin-top: 20px;
    }
    .box_filter .filter_name { margin-left: 0;}
    .detail_product .nav-tabs a {
        padding: 0 8px !important; 
    }
	#slider-img { height: 245px; }
    #slider-img img { height: 245px;}
}

@media screen and (max-width: 320px) {
    #slider-thumb .thumb-box li img {
        min-height: 53px;
    }
    .detail_product .nav-tabs a {
        font-size: 11px;
    }
    .pro-related .box-img {
        height: 128px;
    }
    .pro-related .name {
        padding: 0 5px;
        font-size: 16px;
    }
    .pro-related .related .price {
        font-size: 20px; padding: 0 5px 10px;
    }
    .box_filter .filter_name { padding: 8px 10px;}
	#slider-img { height: 204px; }
    #slider-img img { height: 204px;}
}