body {
  font-family: 'Sintony', sans-serif;
  color: #e5e5e5;
  font-size: 12px;
  background: #bfbfbf;
  line-height: 1;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}


html,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* fit cứng giao diện */
/* html,
body {
  margin: 0;
  padding: 0;
  overflow-x: auto;
  min-width: 1200px;
} */

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

header h2 {
  margin: 25px 10px;
  font-size: 28px;
  text-align: center;
  color: cornsilk;
}

/* .container {
  display: table;
  max-width: 1140px;
  width: 100%;
} */

.container:after,
.container:before {
  content: "" clear: both;
}

nav.menu {
  /* background: coral; */
  position: relative;
  min-height: 45px;
  height: 100%;
}

.menu>ul>li {
  list-style: none;
  display: inline-block;
  color: #fff;
  line-height: 45px;

}

.menu>ul li a,
.xs-menu li a {
  text-decoration: none;
  color: #fff;
  display: block;
  padding: 0px 24px;
}

.menu>ul li a:hover {
  /* background: #ffffff; */
  color: #000000;
  transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
}


.displaynone {
  display: none;
}

.xs-menu-cont {
  display: none;
}

.xs-menu-cont>a {
  background: none repeat scroll 0 0 var(--main-color);
  border-radius: 3px;
  padding: 3px 6px;
  display: block;
  border-bottom: 1px solid var(--main-color);
  box-shadow: 0 1px 2px var(--main-color);
  -webkit-box-shadow: 0 1px 2px var(--main-color);
  -moz-box-shadow: 0 1px 2px var(--main-color);
}

.xs-menu-cont>a:hover {
  cursor: pointer;
}

.xs-menu li {
  color: #fff;
  padding: 14px 0px;
  border-bottom: 1px solid #ccc;
  background: var(--main-color);

}

.xs-menu a {
  text-decoration: none;
}

.mega-menu {
  background: none repeat scroll 0 0 #ffffff;
  color: black;
  left: 0;
  margin-top: 3px;
  position: absolute;
  width: 70%;
  /* padding: 15px; */
  display: none;
  border: 1px solid #f2f4f7;
  transition-duration: 0.9s;
  margin-left: 20%;
  margin-top: -1px;
  z-index: 90000000000000000;
}

#menutoggle i {
  color: #fff;
  font-size: 33px;
  margin: 0;
  padding: 0;
}


/*--column--*/
.mm-6column:after,
.mm-6column:before,
.mm-3column:after,
.mm-3column:before {
  content: "";
  display: table;
  clear: both;


}

.mm-6column,
.mm-3column {
  float: left;
  position: relative;
}

.mega-menu .mm-6column {
  width: 75%;
  min-height: 450px;
  max-height: 450px;
  overflow-y: auto;
}

.mega-menu .mm-3column {
  width: 25%;
  min-height: 450px;
  max-height: 450px;
  overflow-y: auto;
}

.responsive-img {
  display: block;
  max-width: 100%;

}


.categories-list li {
  display: block;
  line-height: normal;
  margin: 0;
  padding: 5px 0;
}

.categories-list li :hover {
  background: inherit !important;
}


.categories-list span {
  font-size: 18px;
  padding-bottom: 5px;
  text-transform: uppercase;
}

.mm-view-more {
  background: none repeat scroll 0 0 #ff7f50;
  color: #fff;
  display: inline !important;
  line-height: normal;
  padding: 5px 8px !important;
  margin-top: 10px;
}

.display-on {
  display: block;
  transition-duration: 0.9s;
}

.drop-down>a:after {
  content: "\f103";
  color: #fff;
  font-family: FontAwesome;
  font-style: normal;
  margin-left: 5px;


}

/*MediaQuerys*/
@media (max-width: 1200px) {
  .menu {
    display: none;
  }

  .xs-menu li a {

    padding: 0px;
  }

  .xs-menu-cont {
    display: block;
  }
}


/*Animation--*/

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

.categories-list ul {
  margin: 0;
  padding: 0;
}

.mm-3column .categories-list ul {
  background-color: #f2f4f7;
  padding: -10px;
  margin: 0;
  padding: 10px;
}

.categories-list li:hover {
  color: blue;
  font-weight: bold;
  background-color: white;
}



.submenu {
  display: none;
}




.css_select_div {
  text-align: center;
}

.css_select {
  display: inline-table;
  width: 25%;
  padding: 5px;
  margin: 5px 2%;
  border: solid 1px #686868;
  border-radius: 5px;
}

/* input plus mi */
.quantity-control {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #fff;
  padding: 5px 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.quantity-control input {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 8px;
  text-align: center;
  width: 40px;
  font-size: 16px;
  outline: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.quantity-control .qty {
  width: 70px;
}

.quantity-control input:focus {
  border-color: #007bff;
}

.qty-minus,
.qty-plus {
  background-color: #f8f8f8;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.qty-minus:hover,
.qty-plus:hover {
  background-color: #007bff;
  color: #fff;
}

.qty {
  width: 50px;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
}

.quantity-control input:disabled {
  background-color: #f0f0f0;
  cursor: not-allowed;
  color: #ccc;
}

/* search */
.search-item.active {
  background-color: #1b456e;
  font-weight: 500;
}
