/* HTML */
html, body{
	/* font-family: 'Open Sans', 'Google Fonts' ; */
  /* font-family: "Google Sans", sans-serif; */
  font-family: "Muli", sans-serif;
  font-size: 16px;
    overflow-x: hidden;
    /* background: url(../images/bg.jpg) no-repeat 0px 0px; */ 
    /* background: #d5d8df; */
	background-size:cover;
  color: #363432;
}

a{
	transition: 0.5s all ease;
	-webkit-transition: 0.5s all ease;
	-moz-transition: 0.5s all ease;
	-o-transition: 0.5s all ease;
	-ms-transition: 0.5s all ease;
	text-decoration: none!important;
  font-size: 1rem;
}
a:hover { outline: none;text-decoration:none;}
  
a:focus {outline:none;outline-offset: 0;}

p {
  /* text-align: justify; */
  font-size: 1rem;
}

table p {
  margin-top: unset;
  margin-bottom: unset;
  margin-inline-start: unset;
  margin-inline-end: unset;
  margin-block-end: unset;
  margin-block-start: unset;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Roboto', sans-serif; }
h1 { font-size: 2rem;}
h2 { font-size: 1.5rem;}
h3 { font-size: 1.17rem;}
h4 { font-size: 1rem;}
h5 { font-size: .83rem;}
h6 { font-size: .67rem;}
ul li { list-style: none;  }
table thead tr th { white-space: nowrap;}
/* END HTML #####################################################*/


/* load-trang */
.loader{
	width: 100%;
	height: 100%;
	background: #FFF;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	display: block;
	overflow: hidden;
}
.loader .icon{
	font-size: 48px;
	color: #e40429;
	position: absolute; 
	top: 50%;
  width: 100%;
  text-align: center;
}
.xoay{
	animation: xoay 1.5s linear infinite;
	-moz-animation: xoay 1.5s linear infinite;
	-ms-animation: xoay 1.5s linear infinite;
	-o-animation: xoay 1.5s linear infinite;
	-webkit-animation: xoay 1.5s linear infinite;
}
@-webkit-keyframes xoay{
	from{
		-ms-transform:rotate(0deg);
		-moz-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to{
		-ms-transform:rotate(360deg);
		-moz-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes xoay{
	from{
		-ms-transform:rotate(0deg);
		-moz-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to{
		-ms-transform:rotate(360deg);
		-moz-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
/*END load-trang ########################################*/

/* Button */
/* .btn:hover, .btn:focus{
    outline: none;
    box-shadow: none;
} */
button:focus { outline: unset;}
.btn-danger { background: #d33f27;}
.btn-danger:focus { box-shadow: unset;}

.change_cart{
  display: none;
  position: absolute;
  top: -10px;
  background: #FF0000;
  height: 25px;
  width: 25px;
  line-height: 25px;
  text-align: center;
  border-radius: 12px;
  right: -6px;
  color: #FFFF00;
  font-size: 12px;
  box-shadow: rgb(50 50 93 / 25%) 0px 6px 12px -2px, rgb(0 0 0 / 30%) 0px 3px 7px -3px;
  z-index: 1;
}
 .btn-default:hover, .btn-default.active { 
    background: #e40429 !important;
    color: #fff !important;
    box-shadow: rgba(145, 143, 143, 0.35) 0px 5px 15px;
    
}
.btn-default{
  background: #FFF;
  border: 1px solid #e40429;
  color: #e40429 !important;
}

.btn-blue:disabled{ cursor: no-drop;}
.btn-blue{
  border: 2px solid #d33f27;
  border-radius: 50px;
  color: #d33f27 !important;
  font-weight: 600;
  padding: 7px 20px;
  margin-bottom: .5rem;
  display:inline-block;
  cursor: hand;
  text-align: center;
  position: relative;
  overflow: hidden!important;
  z-index:1;
}
.btn-blue:hover{
  border: 2px solid #e40429;
  color: #fff!important;
  /* box-shadow: 2px 0px 14px rgba(0,0,0,.6); */
}
.btn-blue::before {
  content: '';
  width: 0!important;
  height: 110%;
  display: block;
  background: #e40429;
  position: absolute;
  -ms-transform: skewX(-20deg);
  -webkit-transform: skewX(-20deg); 
  transform: skewX(-20deg);   
  left: -10%!important;
  opacity: 1;
  top: -1px;
  z-index: -12;
  -moz-transition: all .7s cubic-bezier(0.77, 0, 0.175, 1)!important;
  -o-transition: all .7s cubic-bezier(0.77, 0, 0.175, 1)!important;
  -webkit-transition: all .7s cubic-bezier(0.77, 0, 0.175, 1)!important;
  transition: all .7s cubic-bezier(0.77, 0, 0.175, 1)!important;
} 

.btn-blue::after {
  content: '';
  width: 0!important;
  height: 110%;
  display: block;
  background: #80ffd3;
  position: absolute;
  -ms-transform: skewX(-20deg);
  -webkit-transform: skewX(-20deg); 
  transform: skewX(-20deg);   
  left: -10%!important;
  opacity: 1;
  top: -1px;
  z-index: -15;
  -webkit-transition: all .4s cubic-bezier(.2,.95,.57,.99)!important;
  -moz-transition: all .4s cubic-bezier(.2,.95,.57,.99)!important;
  -o-transition: all .4s cubic-bezier(.2,.95,.57,.99)!important;
  transition: all .4s cubic-bezier(.2,.95,.57,.99)!important;
}
.btn-blue:hover::before, .btn-blue:hover::before, .btn-blue:hover::after, .btn-blue:hover::after{
  opacity:1!important;
  width: 130%!important;
}

/* END button ################################# */

#main-content { 
  display: flow-root; 
  /* margin-top: 1rem; */
}


/* header */


#header { display: none;}
.header-middle {
  position: fixed;
  top: 0;
  background: #fcb71e;
  width: 100%;
  height: 90px;
  line-height: 90px;
  box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
  position: fixed;
  z-index: 999;
}


.header-middle .container .row .col-sm-8, .header-middle .col-xs-12, .header-middle .col-sm-4, .header-middle .col-sm-6{
    padding-right:0;
}
.navbar-toggler span {
  display: block;
  width: 15px;
  height: 3px;
  background: #fff;
  margin: 0 auto 3px;
  -webkit-transition: ease 0.2s;
  -moz-transition: ease 0.2s;
  transition: ease 0.2s;
}


.navbar-toggler[aria-expanded="true"] { padding-top: 4px;}
.navbar-toggler[aria-expanded="true"] span:first-child {
  -webkit-transform: rotate(45deg) translate(5px, 5px);
  -moz-transform: rotate(45deg) translate(5px, 5px);
  transform: rotate(45deg) translate(5px, 5px);
  margin-bottom: 0;
}
.navbar-toggler[aria-expanded="true"] span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
  opacity: 0;
}
.navbar-toggler[aria-expanded="true"] span:last-child {
  -webkit-transform: rotate(-45deg) translate(2px, -1px);
  -moz-transform: rotate(-45deg) translate(2px, -1px);
  transform: rotate(-45deg) translate(2px, -1px);
  margin-bottom: 0;
}

.positionTop{
    white-space: nowrap;
    
  }
  
  .positionTop .pflex{
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
  }
  .postionBody{ 
    padding: 0px 10px;
    /* background: #fcb71e; */
    width: 100%;
    /* display: flex; */
    display: flex;
    position: relative;
  }
  .postionBody .show-cart-sm{ position: absolute; right: 70px; display: none;}
  
.logo { height: 90px; padding: 10px 0px;}
/* .mainmenu .navbar{ position: absolute; right: 0;} */
.navbar-collapse li { padding: 0px 10px;}
.navbar-collapse li:last-child { padding-right: unset;}
.navbar-toggler{
    padding: 10px;
    height: 40px;
    font-size: 17px;
    background: #d33f27;
    color: #fff;
    border-radius: 5px;
    display: none; 
    float: right;
    /* margin-right: 0px; */
  }
.navbar {
  min-height: unset;
  margin-bottom: unset;
  border: unset;
  /* position: fixed; */
  /* right: 85px; */
}
  /* .mainmenu .navbar-collapse a{ color: #e40429;} */
  .mainmenu .navbar-collapse a.active { font-weight: 600; border-bottom: 2px solid #e40429;}
    
  .mainmenu { 
    position: absolute;
    height: 90px;
    line-height: 90px;
    display: flex;
    right: 0px;
  }
  .mainmenu ul li a {
      color: #fff;
      font-size: 16px;
      padding-top: 7px;
      padding-bottom: 7px;
  }

  .mainmenu ul li a.btn-blue{ line-height: 20px;}
  /* 
  .mainmenu ul li.contact-mb a{color: #008000; } */

  
  .mainmenu li.nav-item{ height: 40px; line-height: 40px; position: relative;}
  .mainmenu ul li a.active {
    background: none;
    color:#e40429;
    border-bottom: 2px solid #e40429;
    transition: none;
  }
  .mainmenu ul li a::before, .mainmenu ul li a::after{ 
    content: '';
    width: 0%;
    border-bottom: 2px solid #e40429;
    position: absolute;
    left: 50%;
    bottom: -2px;
    transition: all .4s cubic-bezier(0.77, 0, 0.175, 1);
    /* width: 50%; */
  }
  .mainmenu ul li.nav-item a:hover { color:#e40429;}
  .mainmenu ul li.nav-item a:hover::before{  left: 0;    width: 50%;}
  .mainmenu ul li.nav-item a:hover::after{   left: 50%;  width: 50%; }

#header-pc  .container { display: flex; position: relative;}
#header-pc .header-middle { margin-top: 40px; position: unset; z-index: 1;}
#header-pc .header-top { background: #333; position: fixed; width: 100%; z-index: 999; top: 0; height: 40px;}
#header-pc  ul.ul-right, #header-pc  ul.ul-left  { padding-inline-start: 0; display: flex;}
#header-pc .header-top ul li{ 
  height: 40px;
  line-height: 40px;
}

#header-pc  ul.ul-right li, #header-pc ul.ul-left li,  #header-pc ul.ul-right li a, #header-pc  ul.ul-left li a { color: #fff; font-weight: 600; padding: 0 1rem;}
#header-pc  ul.ul-right li a:hover,#header-pc  ul.ul-left li a:hover { color: #e40429; text-decoration: line-through;}
#header-pc .ul-right { position: absolute; right: 0;}
#header-pc .ul-right .change_cart{ 
  top: 0;
  right: 10px;
  height: 20px;
  width: 20px;
  line-height: 20px;}
#header-pc .ul-right li.show-cart-md { position: relative;}
#header-pc .ul-right a.btn-blue{     
  height: 30px;
  line-height: 30px;
  margin-top: 5px;
  border-color: #fff;
  color: #fff!important;
}
#header-pc .header-middle ul.ul-right li{ padding: unset;}
.header-middle .ul-right { display: flex;}
.header-middle .header-icon  { vertical-align: middle;  }
.header-middle .header-icon img{  height: 60px; }
.header-middle .ul-right li span {
  display: inline-block;
  line-height: 24px;
}
.header-middle .ul-right li span.header-hashtag{ 
  width: 133px;
  vertical-align: middle;
}
.header-bottom{
  width: 100%;
  background: #fcb71e;
  margin-top: 2px;
  padding: .5rem 0;
  z-index: 998;
  top: 38px;
  
}
.header-bottom .menu-left{ position: relative; padding-left: 0;}
ul.nav-menu.active{ 
  display: block; 
  transition: opacity .4s ;
}
ul.nav-menu { 
  display: none;
  padding-inline-start: 0; 
  background: #000;
  opacity: .8; 
  z-index: 999; 
  position: absolute; 
  left: 0; 
  width: 250px; 
  margin-top: 5px;
}
ul.nav-menu > li{ padding: .5rem 1rem; transition: .4s all ease;}
ul.nav-menu > li a{ color: #fff;}
ul.nav-menu > li:hover{ background: #dc3545; opacity: .8;}
.btn-menu { width: 250px;}
/*  .input-search{ border: 2px solid #dc3545; border-right: unset;} */
#header input.input-search, #header-pc input.input-search { border: 1px solid #dc3545;}
#header span.input-group-btn button, #header-pc span.input-group-btn button  {     
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 0px 5px 5px 0px;
}
/* END header ############################*/

/* sidebar ####################*/
#sidebar { 
  background-color: #fff; 
  width: 30%; 
  float: left;
  margin-top: 110px;
}
.sidebar-main {border: 1px solid #e8e8e8;  border-radius: 2px; padding: 10px; margin-bottom: 16px; }
.sidebar-title {     font-size: 16px;
  line-height: 40px;
  font-weight: 600;
  margin-bottom: 10px;
  padding: 0 8px 0 15px;
  position: relative;
  text-transform: uppercase;
  width: fit-content;
  height: 40px;
  display: inline-block;
  background-color: #e40429;
  color: white;
 }
.sidebar-title::before {
  width: 0;
  position: absolute;
  right: -30px;
  top: 0px;
  height: 0;
  border-style: solid;
  border-width: 40px 0 0px 30px;
  content: "";
  border-color: transparent transparent transparent #e40429;
}
.sidebar-content ul { padding-inline-start: unset;}
.sidebar-content ul li { padding-top: 10px; padding-bottom: 1px; border-bottom: 1px solid #fff; }
.sidebar-content ul li:hover { border-bottom: 1px dotted #e40429; }
/* END sidebar ############################*/

/* SLIDER #######################*/
#slider {  margin-top: -46px;}
#slider img { height: 380px; object-fit: contain;}
#btn-show-posts { display: none; margin-top: 70px}
/* END SLIDER #######################*/

/* footer  */
footer {
    background-color: #fcb71e;
    padding-top: 24px;
    margin-top: 30px;
  }
  footer a {
    color: #e40429;
    text-decoration:none;
    font-weight: 600;
  }
  
  footer a:hover, footer a:focus {
    color: #696763;
    text-decoration:none;
    border-bottom:1px dotted #999;

  }
  footer .title{font-size: 1.25rem; font-weight: 600; border: unset; color: #fff;}  

footer ul li { height: 30px; line-height: 30px;}

.footer-logo { padding: 0px 10px 10px 10px;}
.footer-logo img{ width: 100%; height: auto;}

.copyRight{
    height: 40px;
    line-height: 40px;
    background: #333;
    text-align: center;
    color: #fff;
  }

a#scrollUp {
    position: fixed; 
    bottom: 30px;
    right: 33px;
    padding: 5px 10px;
    background: #e40429;
    color: #FFF;
    z-index: 999;
    opacity: 0.5;
    animation-name: leap;
    animation-duration: 3s;
    animation-iteration-count:infinite;
    font-size: 2rem; 
  }
  @keyframes leap{
    0%{
      bottom:30px;
      background-color: #e40429;
    }
    30%{
      bottom:50px;
      background-color: #ffa500;
    }
    50%{
      bottom:30px;
    }
    90%{
      bottom:35px;
    }
    100%{
      bottom:30px;
    }
  }
  a#scrollUp:hover{animation-name: none; transition: 2s; text-decoration: none;}

/* END footer ######################### */

/* content */
.title { color: #e40429; margin-top: 10px; margin-bottom: 24px; border-bottom: 2px solid #f2f2f2; text-align: center; font-weight: 600;}
.content{
  width: 100%; 
  padding-left: 16px;
  margin-top: -24px;
}
.breadcrumb {background: #fff;}
.img-banner{ width: 100%; object-fit: contain; height: auto;}
.home-commitment { background: #f8f8f8}
.home-commitment p {
    font-size: .9rem;
    padding: 1rem 0;
    color: #fcb71e;
    text-align: center;
    font-weight: 600;
}
.home-customer{ background: linear-gradient(to right,#230a94 ,#9c63e7);}
.home-customer p, .home-customer .title { border-bottom: unset; color: #FFF;}
.home-customer img { border-radius: .5rem;}

.home-sales-channel img { border-radius: 1rem; 
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}
.home-sales-channel img{ transition: all  .3s ease;}
.home-sales-channel img:hover { transform: scale(1.05);}
/* END content ################*/

/* product */
.products { display: contents;}
.products, .home-commitment, .home-partner, .home-customer { margin: 16px 0px; float: left;}
.product{ overflow: hidden;}
.product-img img { 
  /* background: #fff url('../../images/logo/logo-katec.jpg');
  background-repeat: no-repeat; 
  background-size: 100%; */
  background: #fff;
  object-fit: contain;
  width: 100%; 
  height: 250px; 
  transition: transform .5s;
}
.product-img img:hover {
  border-radius: 2px; 
  transform: scale(1.05); 
  /* box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px; */
}
.product-name {     
  text-align: center;
  padding: 10px 0px;
  height: 60px;
  overflow: hidden;
}
.product-price, .product-btn { text-align: center;}
.product-price .price-sub { font-style: italic; text-decoration: line-through; font-size: 0.9rem;}
.product-price .price-main { font-weight: 600; color: #e40429; font-size: 1.2rem;}
.product-btn { padding: 0 1rem 2rem 1rem}
.product-btn a { cursor: pointer;  color: #e40429!important; font-weight: 600; transition: all .4s ease!important;}
.product-btn a:hover { color: #0056b3!important;}
.change-info, .change-product {border-color: #d2d2d2; color: #696763; transition: .4s all ease;}
.change-info:hover, .change-product:hover { opacity: 0.7;}
.change-info.active, .change-product.active{ background: #e40429; color: #fff; border-color: #e40429; transition:  all ease .4s;}
.loadding {     
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.1;
  z-index: 4;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  transition: all .4s ease;
}
.loadding .fa-spin { color: #fff; position: absolute; top: 45%; font-size: 2rem;}
/* END product #############*/

/* posts */
.posts-detail p, .posts-related p { text-align: justify;}
.posts-related .media-body { padding-right: 16px; padding-left: 16px;}
.posts-related img.media-object {transition: transform .5s; border-radius: 7px; height: 150px; width: 150px; object-fit: contain; box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;}
.posts-related img.media-object:hover { transform: scale(1.05);}
.posts-related .media { margin: 16px 0px; }
.posts-content img {max-width: 100% !important; padding: 16px;}
.posts-title { color: #e40429; margin-bottom: 16px;}
/*END  posts ####################*/

/* category */
.category-menu, .topic-menu { padding-bottom: 16px; margin-top: -16px; display: flex; overflow: auto; width: 100%;}
.category-menu  a { width: 24%; margin-right: 1%;}
.topic-menu .btn{ margin-right: 5px;}
/* category ################################*/

/* pagination */
.flex.items-center.justify-between {height: 40px; line-height: 40px; text-align: center; margin-top: 30px; width: 100%; position:relative;}
.flex.justify-between.flex-1 {display: none;}
p.text-sm.text-gray-700.leading-5 {display: none;}
.inline-flex { margin-right: 2px; margin-left: 2px; word-spacing: 0px;}
.inline-flex.items-center{padding: 5px 7px !important; border: 1px solid #d2d2d2!important; border-radius: 5px;}
a.inline-flex:hover, span.items-center.inline-flex { background: #e40429!important; color: #FFF; transition: .4s all ease;}
span.items-center.inline-flex {padding: 5px 10px !important;}
.inline-flex svg{ width: 30px; height: 14px;}
.inline-flex [aria-current="page"]{ margin-right: -5px; }
/*END pagination */

/* Product */
.product { 
  margin-bottom: 16px; 
  margin-top: 16px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.view-product {
  position: relative;
}


.product-information {
  border: 1px solid #dcdcdc;
  min-height: 320px;
  overflow: hidden;
  padding: 2rem 1.5rem;
  position: relative;
  display: grid;
}

.newarrival {
  position: absolute;
  top: 0;
  left: 0;
}
.product-information h2 {
  color: #363432;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  margin-top: 0;
}
.product-information p {
  color: #696763;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 5px;
}
.product-information #price_qty {
  display: inline-block;
  margin-bottom: 8px;
  /* margin-top: 18px; */
}

.product-information .qty_input {
  border: 1px solid #DEDEDC;
  color: #696763;
  font-family: 'Roboto', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  height: 33px;
  outline: medium none;
  text-align: center;
  width: 80px;
}
.product-information #price_qty .change_price {
  color: #e40429;
  font-family: 'Roboto', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-top: 0px;
}
.change_price_sub {
  font-size: 18px;
  margin-top: -16px;
  margin-bottom: 10px;
  text-decoration: line-through;
  font-weight: bold;
  color: #9d9898;
  font-style: italic;
}
.product-details .product-desc {max-height: 700px; overflow: auto; border: 1px solid #dcdcdc; padding: 16px;}
/* .product-details .addCart { position: absolute; bottom: 20px;} */
.product-btn .addCart {position: unset;}
.product-details .carousel-control-next,.product-details .carousel-control-prev {color: #e40429; font-size: 30px;}
/* END Product #################################*/

/* Cart  #############################*/
.cart-id-product, .cart_price del{ font-size: 12px;}
.cart_price p, .cart_total p{ text-align: right;}
.select_cart ul {
  display: flex;
  background: #E6E4DF;
  align-content: center;
  align-items: center;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}
.select_cart ul li.active {
  color: #FFFFFF;
  background: #e40429;
  border-right: 1px solid #e40429;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  transition: .4s;
  font-weight: 700;
}
.select_cart ul li {
  text-align: center;
  background: #E6E4DF;
  color: #696763;
  padding: 7px 20px;
  border-right: 1px solid #FFFFFF;
  width: 100%;
  transition: .4s;
}
.table thead th { vertical-align: middle; text-align: center;}
.cart_items .cart_info {
  border: 1px solid #E6E4DF;
  margin-bottom: 16px;
}
.cart_items .cart_info .table.table-condensed tr:last-child {
  border-bottom: 0;
}
.cart_items .cart_info .table.table-condensed thead tr {
  height: 51px;
}
.cart_items .cart_info .table.table-condensed tr {
  border-bottom: 1px solid #F7F7F0;
}
.cart_items .cart_info .cart_menu {
  background: #e40429;
  color: #fff;
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
  font-weight: normal;
}
.cart_quantity_button {
  display: flex;
  justify-content: center;
}
.cart_quantity_button a {
  background: #d2d2d2;
  border: 1px solid #d2d2d2;
  color: #696763;
  display: inline-block;
  font-size: 16px;
  height: 28px;
  overflow: hidden;
  text-align: center;
  width: 35px;
  float: left;
}
.cart_quantity_button a:hover {
  cursor: default;
  background-color: #e40429;
  color: #fff!important;
}
.cart_quantity_input {
  border-top: 1px solid #d2d2d2;
  border-bottom: 1px solid #d2d2d2;
  border-left: none;
  border-right: none;
  color: #696763;
  float: left;
  font-size: 16px;
  text-align: center;
  font-family: 'Roboto',sans-serif;
}

.cart_delete a {
  background: #d2d2d2;
  color: #fff!important;
  padding: 5px 7px;
  font-size: 16px;
  cursor: pointer;
}
.cart_delete a:hover {
  background: #ff0000;
}

/* #do_action .total_area, #do_action .chose_area {
  border: 1px solid #E6E4DF;
  color: #696763;
  padding: 30px 40px 30px 0;
  margin-bottom: 80px;
} */
/* #do_action .total_area {
  padding-bottom: 18px !important;
} */
.total_area ul li {
  background: #E6E4DF;
  color: #696763;
  padding: 7px 20px;
}
.total_area span {
  float: right;
}


.from_input {
  width: 100%;
  padding: 5px 10px;
  border-radius: 5px;
  border: 1px solid #696763;
}
.customer-info { width: 100%; display: flex; margin-left: 16px; margin-right: 16px; border: 1px solid #ddd; }
.customer-info .content-left, .customer-info .content-right{ width: 50%; padding: 12px;}
.customer-info .form_box { margin-bottom: 15px; position: relative; }
.form_box select.from_input, .form_box input.from_input{ height: 52px; line-height: 52px;}
.from_input:focus{border:1px solid #e40429; box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;}
.form_box label{ 
  position: absolute;
  top: -11px;
  left: 20px;
  background: #fff;
  padding: 0px 7px;
}
.form_box, .form_box .from_input{  
  width: 100%;
}
.customer-info .btn-blue { margin-bottom: 5px!important; padding: 7px 10px!important}
.cart-show {display: none;}
/* END Cart  #############################*/

/* Banner - Top ###################*/
.home-slider {
  display: grid;
  grid-template-columns: 54.2% 45%;
  grid-gap: .5rem;
}
.home-slider img{
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}
.bannerright {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  grid-gap: .5rem;
}

.ef-bannerr img {
  height: auto;
  width: 100%;
  object-fit: cover;
}
.ef-bannerl img {
  transition: all 1s;
}

.ef-bannerl {
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
  -o-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
  overflow: hidden;
}

.ef-bannerl:hover img {
  transform: scale(1.1); 
}
.ef-bannerr > a {
  position: relative;
  display: block;
  overflow: hidden;
}

.ef-bannerr > a:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  bottom: 10px;
  right: 10px;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,.8);
  border-bottom: 1px solid rgba(255,255,255,.8);
  -ms-transform: scale(0,1);
  -webkit-transform: scale(0,1);
  transform: scale(0,1);
  -ms-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.ef-bannerr > a:after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  bottom: 10px;
  right: 10px;
  z-index: 1;
  border-left: 1px solid rgba(255,255,255,.8);
  border-right: 1px solid rgba(255,255,255,.8);
  -ms-transform: scale(1,0);
  -webkit-transform: scale(1,0);
  transform: scale(1,0);
  -ms-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.ef-bannerr> a:hover:before {
  -webkit-transform: scale(1,1);
  transform: scale(1,1);
}

.ef-bannerr > a:hover:after {
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$var2)";
  -ms-transform: scale(1,1);
  -webkit-transform: scale(1,1);
  transform: scale(1,1);
}

.content-home-page #carouselExampleIndicators .carousel-inner .carousel-item img {
  aspect-ratio: 3 / 1;
}
/*END Banner - Top ###################*/