/*

    1. Reset

    2. Header

    3. Content

    4. Footer

    5.0 List-product

    6.0 Detail-product

    7.0 List-new

    8.0 Detail-new

    9.0 Addition

    10.0 Responsive


/**
 * 1.0 - Reset
 * -----------------------------------------------------------------------------
 */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  border: 0;
  font-size: 100%;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
}

a {
  color: #008bd2;
  text-decoration: none;
}

a:hover {
  color: #444;
  text-decoration: none;
}

a:focus {
  text-decoration: none;
  color: inherit;
  outline: none;
}

a,
button,
input {
  transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="search"],
textarea {
  border: 1px solid #b5b5b5;
  padding: 8px 15px;
  font-size: 14px;
  color: #757575;
  border-radius: 0;
  font-family: "Roboto", sans-serif;
}

button,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
textarea:focus {
  border-color: #fbf063;
  outline: none;
}

/* Let's get this party started */
::-webkit-scrollbar {
  width: 10px;
  height: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
  -webkit-border-radius: 0px;
  border-radius: 0px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  -webkit-border-radius: 0px;
  border-radius: 0px;
  background: #010101;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb:window-inactive {
  background: #333;
}

@font-face {
  font-family: "Roboto-Bold";
  src: url("../fonts/Roboto-Bold.ttf");
}

@font-face {
  font-family: "Roboto-Regular";
  src: url("../fonts/Roboto-Regular.ttf");
}

@font-face {
  font-family: "Roboto-Medium";
  src: url("../fonts/Roboto-Medium.ttf");
}

@font-face {
  font-family: "RobotoCondensed";
  src: url("../fonts/RobotoCondensed.ttf");
}

@font-face {
  font-family: "RobotoCondensed-Bold";
  src: url("../fonts/RobotoCondensed-Bold.ttf");
}

@font-face {
  font-family: "RobotoCondensed-Regular";
  src: url("../fonts/RobotoCondensed-Regular.ttf");
}

@font-face {
  font-family: "Titan";
  src: url("../fonts/Titan.ttf");
}

@font-face {
  font-family: "SonySketch";
  src: url("../fonts/SonySketch.ttf");
}

body {
  position: relative;
  overflow-x: hidden;
  font-size: 14px;
  font-family: "Roboto", "Roboto Condensed", sans-serif;
  color: #333;
  background: #fff;
}

.container {
  width: 1200px;
}

.box-img {
  position: relative;
  overflow: hidden;
}

.box-img img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

img {
  border: none;
  height: auto;
}

li {
  list-style: none;
}

.img-zoom {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transition: 0.6s all ease;
  -webkit-transition: 0.6s all ease;
  -moz-transition: 0.6s all ease;
  -ms-transition: 0.6s all ease;
  -o-transition: 0.6s all ease;
}

.img-zoom:hover {
  transform: scale(1.15);
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  -ms-transform: scale(1.15);
  -o-transform: scale(1.15);
  transition: 0.6s all ease;
  -webkit-transition: 0.6s all ease;
  -moz-transition: 0.6s all ease;
  -ms-transition: 0.6s all ease;
  -o-transition: 0.6s all ease;
}

.img-op {
  opacity: 1;
  transition: 0.6s all ease;
  -webkit-transition: 0.6s all ease;
  -moz-transition: 0.6s all ease;
  -ms-transition: 0.6s all ease;
  -o-transition: 0.6s all ease;
}

.img-op:hover {
  opacity: 0.8;
}

.padding-0-15 {
  padding: 0 15px;
}

.padding-15-0 {
  padding: 15px 0;
}

.margin-0-15 {
  margin: 0 15px;
}

.margin-15-0 {
  margin: 15px 0;
}

.padding-0-10 {
  padding: 0 10px;
}

.padding-10-0 {
  padding: 10px 0;
}

.margin-0-10 {
  margin: 0 10px;
}

.margin-10-0 {
  margin: 10px 0;
}

/**
 *   2.0 Header
 * -----------------------------------------------------------------------------
 */

/*header-top*/
.header-top {
  height: 101px;
}

.header-top-content {
  font-family: "Roboto-Regular";
  font-size: 12px;
}

.header-top-content .logo {
  width: 280px;
  float: left;
}
.header-top-content .logo a {
  display: block;
}
.header-top-content .logo .box-img {
  margin-top: 20px;
  height: 75px;
}
.header-top-content .logo .box-img img {
  /*height: 100%;*/
  max-height: 100%;
}
.header-top-contact {
  margin-left: 325px;
  padding-top: 18px;
}

.dis-ht {
  display: inline-block;
}
.dis-ht.call-ht span {
  color: #008bd2;
  font-size: 14px;
  font-weight: 500;
}

.dis-ht img {
  padding: 0px 3px 3px 0px;
}

.address-ht {
  padding-right: 60px;
}

.login-ht {
  float: right;
}

.cart-login {
  display: inline-block;
  float: right;
}

/*shoppingcart-header*/
.shoppingcart {
  width: 35px;
  float: left;
}

.shoppingcart .content a {
  background: url(img/i_card.png) no-repeat;
  position: relative;
  width: 30px;
  height: 20px;
  display: block;
}

.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  background-color: #777;
  border-radius: 10px;
}

.badge:empty {
  display: none;
}

.badge-sh {
  position: absolute;
  top: -8px;
  right: -5px;
  background: #ff4800;
  font-size: 10px;
  padding: 4px;
}

/*login*/
.login {
  float: left;
  /*display: table;*/
  display: inline-flex;
  padding-right: 30px;
}

.login ul li {
  float: left;
  list-style: none;
  position: relative;
}

.login ul li:last-child:before {
  content: "/";
}

.login ul li a,
.login ul li:last-child:before {
  font-size: 12px;
  padding: 1px 2px;
}

.login ul li:hover a {
  color: #888;
}

/**
 *   2.2 Nav
 * -----------------------------------------------------------------------------
 */

#nav {
  position: relative;
  width: 100%;
  height: 43px;
  z-index: 9;
}

#nav .container {
  position: relative;
}

#nav::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 43px;
  background-color: #008bd2;
}

#cssmenu > ul > li > a {
  font-family: "Titan";
}

@media (min-width: 993px) {
  #cssmenu {
    margin-left: auto;
    position: relative;
    background-color: #363f45;
    padding-right: 30px;
    width: 100%;
    max-width: 900px;
    height: 43px;
    padding-top: 10px;  
  }
  #cssmenu:before {
    position: absolute;
    content: "";
    left: -48px;
    top: 0;
    width: 50px;
    height: 43px;
    background: url(img/icon-menu-left1.png) no-repeat;
  }
  #cssmenu > ul > li > a {
    color: #fff;
    text-transform: uppercase;
    font-size: 15px;
    padding: 5px 15px;
    border-radius: 20px;
    border: 1px solid transparent;
    transition: 0.5s all ease;
    -webkit-transition: 0.5s all ease;
    -moz-transition: 0.5s all ease;
    /*z-index: 99;*/
  }
  #cssmenu > ul > li:hover > a,
  #cssmenu > ul > li.active > a {
    border: 1px solid #fff;
  }
}

#cssmenu > ul > li:first-child > a {
  /*padding-left: 0px;*/
}

/*box-timkiem*/

.box-timkiem {
  z-index: 99999;
  position: absolute;
  top: 2px;
  right: 10px;
}

.timkiem:before {
  content: "";
  position: absolute;
  top: -8px;
  right: 16px;
  width: 6px;
  height: 4px;
  border-bottom: 6px solid #144b9e;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  display: block;
}

.timkiem {
  width: 316px;
  position: absolute;
  bottom: -60px;
  right: 0;
  z-index: 9;
  display: none;
  padding: 8px;
  background: #fff;
  border-top: 2px solid #144b9e;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.52);
}

.timkiem .form-control {
  width: 220px;
  float: left;
  font-size: 12px;
  font-family: tahoma;
  border-radius: 0;
  border-right: none;
}

.timkiem .btn-default {
  width: 80px;
  border-radius: 0px;
  border-color: rgba(0, 0, 0, 0);
  border-radius: 0;
  background: #363f45;
  color: #fff;
}

.icon-tk {
  background: url(img/i_search.png) no-repeat;
  width: 20px;
  height: 20px;
  display: block;
  margin: 10px 0px 0 0;
  cursor: pointer;
}

.timkiem.open {
  display: block;
}

/**
 *   3.0 Content - Main
 * -----------------------------------------------------------------------------
 */
.main {
  padding: 0px 0px 60px 0px;
}

/*slider*/

.slider .carousel-control .is {
  top: 40%;
  position: absolute;
  background: url(img/a17.png) no-repeat;
  width: 40px;
  height: 80px;
  cursor: pointer;
}

.slider .carousel-control .is.is-left {
  background-position: 4px 10px;
}

.slider .carousel-control .is.is-right {
  background-position: -40px 10px;
  right: 20px;
}

.carousel-control.left,
.carousel-control.right {
  background-image: none;
  width: 5%;
  opacity: 0;
}
.carousel-control.left:hover,
.carousel-control.right:hover {
  opacity: 1;
}

.carousel-inner > .item.active {
  text-align: center;
}

.carousel-indicators li {
  height: 12px;
  width: 12px;
  background: #fff;
  margin: 0px 4px;
}

.carousel-indicators .active {
  border: 1px solid #008bd2;
  height: 12px;
  width: 12px;
  margin: 0px 4px;
}

/*End-slider*/

/*door*/
.door {
  padding: 34px 0px 26px 0px;
}

.title-door {
  text-align: center;
  overflow: hidden;
  margin: 0px 5px;
  padding-bottom: 25px;
}

.title-door h2,
.title-door h2 a {
  font-size: 20px;
  font-family: "Titan";
  color: #008bd2;
  padding: 0px 5px;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  top: 50%;
}
.title-door h2 a:hover {
  color: #d04505;
}
.bg-title {
  border-top: 1px solid #d7d7d7;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  width: 2000px;
}

.bg-title-left {
  left: 100%;
  margin-left: 10px;
}

.bg-title-right {
  right: 100%;
  margin-right: 10px;
}

.content-door {
}

.view-all {
  text-transform: uppercase;
  font-family: "Roboto-Regular";
}

.view-all a {
  padding: 3px 10px 3px 10px;
  border: 1px solid #008bd2;
  border-radius: 5px;
}

.view-all a:hover {
  /*background: #000;*/
  background: #008bd2;
  border: 1px solid #008bd2;
  color: #fff;
}

/*door1*/

.content-door-owl {
  margin: 0px -10px;
}

.content-door-owl .owl-theme .owl-controls .owl-pagination {
  display: none;
}

.content-door-owl .owl-theme .owl-controls .owl-buttons div.owl-prev {
  position: absolute;
  top: 80px;
  left: 15px;
  background: url(img/next.png) no-repeat 0px 0px !important;
  color: rgba(0, 0, 0, 0);
  width: 25px;
  height: 45px;
  border-radius: 0px;
}

.content-door-owl .owl-theme .owl-controls .owl-buttons div.owl-next {
  position: absolute;
  top: 80px;
  right: 15px;
  background: url(img/next.png) no-repeat -48px 0px !important;
  color: rgba(0, 0, 0, 0);
  width: 25px;
  height: 45px;
  border-radius: 0px;
}

.content-door-owl .owl-theme .owl-controls .owl-buttons div.owl-prev:hover,
.content-door-owl .owl-theme .owl-controls .owl-buttons div.owl-next:hover {
  opacity: 1;
}

.item-hot-product {
  padding: 0px 10px;
}

.item-hot-product .product-image {
  position: relative;
}

.item-hot-product .product-image .box-img {
  height: 225px;
}

.item-hot-product .product-info {
  position: absolute;
  text-align: center;
  left: 0px;
  right: 0px;
  bottom: 0px;
  height: 39px;
  padding-top: 10px;
  /*line-height: 39px;*/
  overflow: hidden;
  background: rgba(0, 0, 0, 0.32);
  text-transform: uppercase;
}

.item-hot-product .product-info a {
  color: #fff;
  font-size: 18px;
  font-family: "Roboto-Bold";
  line-height: 1.2;
}

.item-hot-product .product-info:hover {
  background: rgba(0, 0, 0, 0.6);
}

.item-hot-product .product-info:hover a {
  color: #f95006;
}

/*door2*/

.door2 {
}

.introduce-content .intro-right {
  width: 510px;
  float: right;
}

.introduce-content .intro-right .intro-content .box-img {
  height: 283px;
}

.introduce-content .intro-left {
  margin-right: 550px;
  font-family: "Roboto-Regular";
}

.description {
  line-height: 1.5;
  margin-bottom: 20px;
}

.description p {
  margin-bottom: 5px;
}

.description-intro {
  padding-right: 20px;
  text-align: justify;
  max-height: 210px;
  overflow: hidden;
}

/*door3*/
.door3 {
}

.content-new .box-img {
  height: 245px;
}

.content-new .box-info h3 {
  margin: 20px 0px 12px 0px;
  max-height: 38px;
  overflow: hidden;
  line-height: 1.2;
}

.content-new .box-info h3 a {
  font-size: 16px;
  font-family: "RobotoCondensed-Bold";
  color: #333333;
  text-transform: uppercase;
}

.content-new .box-info h3 a:hover {
  color: #008bd2;
}

.date img {
  padding: 0px 5px 5px 0px;
}

.date span {
  font-style: italic;
  font-size: 12px;
}

.sort-describe {
  margin: 12px 0px 20px 0px;
  font-family: "RobotoCondensed";
  height: 110px;
  /*max-height: 110px;*/
  overflow: hidden;
}

.door3 .view-all a {
  font-size: 12px;
}

/*door4*/
.door4 {
}

.door4-content .content-door .row {
  margin-left: -8px;
  margin-right: -8px;
}

.door4-content .content-door .row .col-ty {
  padding-left: 8px;
  padding-right: 8px;
}

.content-ty .box-img {
  height: 230px;
}

.content-ty .box-info h3 {
  margin: 20px 0px 12px 0px;
  max-height: 38px;
  min-height: 38px;
  overflow: hidden;
  line-height: 1.2;
}

.content-ty .box-info h3 a {
  font-size: 16px;
  font-family: "RobotoCondensed-Bold";
  color: #333333;
  text-transform: uppercase;
}

.content-ty .box-info h3 a:hover {
  color: #008bd2;
}

.price {
  font-family: "Roboto-Regular";
  font-size: 16px;
}

.order {
  margin: 10px 0px 10px 0px;
  font-family: "SonySketch";
}

.order a {
  background: #008bd2;
  color: #fff;
  padding: 5px 15px 5px 15px;
  border: 1px solid #008bd2;
  border-radius: 5px;
  text-transform: uppercase;
}

.order a:hover {
  color: #008bd2;
  background: #fff;
  border: 1px solid #008bd2;
}

/*door5*/
.door5 {
}

.content-project .row {
  margin-left: -8px;
  margin-right: -8px;
}

.content-project .row .col-proj {
  padding-left: 8px;
  padding-right: 8px;
  margin-bottom: 16px;
}

.content-col-proj {
  position: relative;
  height: 310px;
}

.content-col-proj .box-img {
  height: 310px;
}

.vertical-style {
  position: absolute;
  height: 100%;
  width: 100%;
  background: url(img/bg-trans.png) center center repeat;
  top: 0px;
  left: -300px;
  display: table;
  opacity: 0;
  transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
}

.vertical-style a {
  font-size: 19px;
  display: table-cell;
  color: #fff;
  text-transform: uppercase;
  vertical-align: middle;
  text-align: center;
}

.content-col-proj:hover .vertical-style {
  left: 0px;
  opacity: 1;
}

/**
*   4.0 Footer
* -----------------------------------------------------------------------------
*/

/*footer-top*/
.footer-top {
  background: #363f45;
}

.footer-top-content .title-fc {
  padding: 40px 0px 25px 0px;
}

.footer-top-content .title-fc span {
  color: #ffffff;
  text-transform: uppercase;
  font-family: "RobotoCondensed-Bold";
}

.footer-top-content .content-fc {
  padding: 0px 0px 25px 0px;
}

.social-ctf {
  height: 35px;
  margin: 10px 0px 0px 0px;
  display: block;
}

.social-ctf ul {
  margin: 0px;
}

.footer-top-content .content-fc .social-ctf ul li {
  float: left;
  padding: 0 2px;
}

.social-ctf ul li:hover {
  opacity: 0.7;
}

.social-ctf ul li a {
  background: url(img/i_social.png) no-repeat 0px 0px;
  height: 35px;
  width: 35px;
  display: block;
}

.social-ctf ul li:nth-child(1) a {
  padding-left: 0px;
}

.social-ctf ul li.fb-ft a {
  background-position: 0px 0px;
}

.social-ctf ul li.twitter-ft a {
  background-position: -36px 0px;
}

.social-ctf ul li.youtobe-ft a {
  background-position: -72px 0px;
}

.social-ctf ul li.ins-ft a {
  background-position: -108px 0px;
}

.social-ctf ul li.google-ft a {
  background-position: -146px 0px;
}

.social-ctf ul li.sky-ft a {
  background-position: -183px 0px;
}

.footer-top-content .content-fc ul li {
  color: #ffffff;
  padding: 0px 0px 10px 0px;
  line-height: 1.3;
  font-family: "Roboto-Regular";
}

.footer-top-content .content-fc ul li a {
  color: #ffffff;
}

.footer-top-content .content-fc ul li a:hover {
  color: #008bd2;
}

.about-fc .content-fc ul li {
  width: 50%;
  float: left;
}

/*footer-bottom*/
.footer-bottom {
  background: #4d5458;
  font-family: "Roboto-Regular";
}

.footer-bottom-content {
  height: 40px;
  line-height: 40px;
  color: #efefef;
}

.coppyright {
  float: left;
  font-size: 11px;
}

.nano {
  float: right;
}

.nano a {
  color: #efefef;
  font-size: 11px;
}

/**
*   5.0 List-product
* -----------------------------------------------------------------------------
*/
.main-in {
  padding-bottom: 40px;
}
/*content-in*/
.content-in {
}

.banner-in {
  padding: 0px 0px 20px 0px;
}

.breadcrumb {
  padding-bottom: 8px;
  margin-bottom: 0px;
  border-bottom: none;
  /*border-bottom: 1px solid #ca7b7d;*/
}

/*product-all*/
.product-all {
}

.title-product-all h2 {
  text-transform: uppercase;
  font-size: 18px;
  margin: 0px 0px 20px 0px;
  padding-top: 5px;
}

.content-product-all .row {
  margin-left: -10px;
  margin-right: -10px;
}

.content-product-all .col-ty {
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 20px;
}
.content-product-all .col-ty:last-child {
  /*display: none;*/
}
.content-product-all .content-ty:hover {
  box-shadow: 0px 0px 6px #5d5d5d;
}
.content-product-all .content-ty {
  border: 1px solid #ececec;
  padding: 10px;
}
.content-product-all .content-ty .box-img {
  height: 230px;
}

.content-product-all .content-ty .box-info h3 {
  margin: 20px 0px 12px 0px;
  /* max-height: 38px; */
  height: 38px;
  overflow: hidden;
  line-height: 1.2;
}

.content-ty .box-info h3 a {
  font-size: 16px;
  font-family: "RobotoCondensed-Bold";
  color: #333333;
  text-transform: uppercase;
}

.content-ty .box-info h3 a:hover {
  color: #008bd2;
}

/**
*   6.0 Detail-product
* -----------------------------------------------------------------------------
*/

/*detail-product*/
.detail-product {
  font-family: "RobotoCondensed";
}

.top-product-detail {
  margin-bottom: 10px;
}

/**********/
.product-detail-left {
  width: 400px;
  float: left;
}

.product-detail-right {
  margin-left: 420px;
  overflow: hidden;
}

.img-detail img {
  max-width: inherit;
}
.img-detail .sp-large a img {
  width: 100%;
}
.img-detail .sp-wrap {
  max-width: 100%;
  width: 100%;
}
.img-detail .sp-thumbs {
  text-align: center;
  display: inline-block;
  width: 100%;
  margin-top: 15px;
}
.img-detail .sp-thumbs a {
  margin: 3px;
}
.img-detail .sp-current {
  border: 1px solid #000;
}

.title-product-detail {
  font-size: 23px;
  margin-bottom: 10px;
  padding-top: 3px;
  text-transform: uppercase;
}

.description-detail ul {
  margin: 5px 0px 0px 0px;
}

.description-detail ul li {
  padding: 1px 0px;
  color: #333333;
}

.price-detail .price {
  font-size: 20px;
  color: #ff0000;
  margin-bottom: 0;
}

.price-detail .old-price {
  text-decoration: line-through;
  color: #666;
  font-size: 18px;
}

.product-detail-right .price-detail-description span {
  width: 50%;
  float: left;
  font-size: 14px;
  color: #ff0000;
}
.product-detail-right .price-detail-description span.old-price {
  color: #999999;
}

.price-cri-detail span {
  color: #f00;
}

.box-product-list-bottom {
  padding: 10px 0px 0px 0px;
}
.box-product-list-bottom .box-qty {
  float: left;
  width: 35%;
}

.box-product-list-bottom .box-add-cart {
  float: left;
  width: 35%;
  text-align: left;
  margin-top: 5px;
  margin-left: 30px;
  height: 27px;
}

.box-qty .form-control {
  box-shadow: none;
  font-size: 16px;
  color: #990000;
  float: left;
  margin: 2px 6px 0 6px;
  width: 48px;
  padding: 0;
  padding-left: 18px;
  border: 1px solid #e5d5cc !important;
  background: transparent;
  height: 27px;
}

.reduction,
.increase {
  width: 30px;
  height: 30px;
  background: url(img/i_next.png) no-repeat;
  display: block;
  float: left;
}

.reduction {
  background-position: 1px 2px;
}

.increase {
  background-position: -41px 2px;
}

.reduction:hover,
.increase:hover {
  opacity: 0.6;
}

.box-product-list-bottom .box-add-cart a {
  border: 1px solid #e5d5cc;
  font-size: 14px;
  padding: 4px 35px 3px 35px;
  /*    margin-top: 0px;*/
  color: #990000;
}

.box-product-list-bottom .box-add-cart a:hover {
  background: #ab180a;
  color: #fff;
}

.title-door-l {
  text-align: left;
  margin-left: 0px;
  padding: 20px 0px 10px 0px;
}
.title-door-l h2,
.title-door-l h2 a {
  padding-left: 0px;
}

/*bottom-product-detail*/

.bottom-product-detail {
}
.bottom-product-detail .content-door-l {
  padding: 5px;
}

.bottom-product-detail .row {
  margin-left: -10px;
  margin-right: -10px;
}
.bottom-product-detail .col-ty {
  padding-left: 10px;
  padding-right: 10px;
  /*margin-bottom: 10px;*/
}
.bottom-product-detail .col-ty:last-child {
  display: none;
}
.bottom-product-detail .content-ty {
  border: 1px solid #ececec;
  padding: 10px;
}

.bottom-product-detail .content-ty:hover {
  box-shadow: 0px 0px 6px #5d5d5d;
}

/**
*   7.0 List-new
* -----------------------------------------------------------------------------
*/

.categories .panel-default > .panel-heading,
.album .panel-default > .panel-heading {
  background: #008bd2;
  padding: 5px;
}

.left-page {
  width: 280px;
  float: left;
}

.left-page .album,
left .categories,
.categories .menu {
  background: #f7f7f7;
}

.makeup .panel-default,
.album .panel-default {
  background: none;
}

.right-page {
  margin-left: 310px;
  overflow: hidden;
}

.categories .panel-default > .panel-heading h2,
.featured .panel-default > .panel-heading h2,
.album .panel-default > .panel-heading h2,
.statistic .panel-default > .panel-heading h3 {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
  padding: 5px 0 5px 10px;
}

.panel-heading {
  padding: 5px 5px 5px 10px;
}

.list.grid {
  margin-left: -10px;
}

.categories .panel-body,
.featured .panel-body,
.album .panel-body,
.statistic .panel-body {
  padding: 0;
}

.categories .menu li > a {
  font-size: 14px;
  color: #333;
  text-transform: uppercase;
  padding: 4px 10px 4px 18px;
}

.categories .menu li ul li {
  color: #fff !important;
  border-top: 1px solid rgba(208, 208, 208, 0.38);
}

.categories .submenu .menu li {
  width: 270px;
}

.categories .menu li ul li:hover a {
  color: #000 !important;
}

.submenu .menu li:hover > a {
  border-left: none;
}

.categories .menu.menu-list > li {
  border-bottom: 1px solid #e3e3e3;
  border-right: 1px solid #e3e3e3;
}

.left-page .box-img-news {
  width: 80px;
  height: 54px;
  float: left;
}

.left-page .box-info-news h4 a {
  color: #6f4417;
}

.left-page .box-info-news h4:hover a {
  color: #966129;
}

.left-page .box-info-news {
  margin-left: 90px;
}

.left-page .box-info-news p {
  display: none;
}

.left-page .box-news {
  height: auto;
}

.categories .menu.menu-list li:hover a,
.left-page .menu.menu-list li.active a {
  color: #fff;
}

.categories .menu.menu-list li:hover,
.categories .menu.menu-list li:hover li {
  background: #008bd2;
}

.categories .panel {
  border-color: #e3e3e3;
  border-bottom: none;
  border-right: none;
}

.listnews .list-item:first-child {
  padding-top: 0px;
}
.list-content .list-content-img {
  position: relative;
  height: 130px;
}

.list-content .list-content-img img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  height: 100%;
  width: 100%;
}

.list-content .list-content-body {
  margin-left: 220px;
  overflow: hidden;
}

.right-page .centerContent {
  padding: 0px;
  margin: 0;
}

.album ul {
  margin-top: 15px;
}

.album li {
  list-style: none;
  padding-left: 65px;
  line-height: 40px;
  margin-bottom: 10px;
  float: none;
}

.hotline,
.yahoo,
.skype,
.panel-body .email {
  background: url(img/icon-support.png) no-repeat;
}

.hotline {
  background-position: 10px -149px;
}

.yahoo {
  background-position: 10px -50px;
}

.panel-body .email {
  background-position: 10px -100px;
}

.skype {
  background-position: 10px 0px;
}

.album .everslider.es-slides-ready {
  height: auto;
}

.album.video .panel-default {
  border: none;
}

.album.video .panel {
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
}

.album.video .fullwidth-title {
  background: rgba(0, 0, 0, 0.4);
}

.album .es-navigation .es-prev {
  right: inherit;
  left: 0;
}

.album .fullwidth-slider .es-navigation a {
  top: 45%;
}

.album ul li a {
  color: #333;
}

ul.W3NPager .active a {
  background: #008bd2;
  border: 1px solid #008bd2;
  color: #fff;
}

ul.W3NPager li {
  margin-right: 5px;
}

.box-product-page {
  margin-bottom: 30px;
}

.centerContent .welcome {
  margin: 0;
  padding-bottom: 35px;
  border-bottom: 1px solid #e3e3e3;
  margin-bottom: 10px;
}

.title-w h2 {
  font-size: 18px;
  color: #643a12;
  font-weight: bold;
  text-transform: uppercase;
}

.product-all .list-content-body .list-content-title a {
  color: #008bd2;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold !important;
  text-align: center;
  display: table;
  margin: 0 auto;
}

.list-content-body .list-content-title:hover a {
  color: #008bd2;
}

.makeup .panel-default {
  border: none;
}

.makeup .cont {
  padding-top: 15px;
}

.right-page .list-content-body .list-content-title {
  margin: 0;
}

/**
*   8.0 Detail-new
* -----------------------------------------------------------------------------
*/

.newsdetail {
  padding-top: 0px;
}

.social .social-item {
  float: left;
}

/**
*   9.0 Addition
* -----------------------------------------------------------------------------
*/
/*project-all*/
.project-all {
}

.title-project-all h2 {
  padding-top: 10px;
}

.btn-next-step {
  background-color: #008bd2 !important;
}

/**
*   10.0 Responsive
* -----------------------------------------------------------------------------
*/

@media (max-width: 1200px) {
  .container {
    width: 100%;
    padding: 0px;
    /* margin: 0px; */
  }

  .header-top,
  .door,
  .footer-top,
  .footer-bottom,
  .content-in {
    padding-left: 10px;
    padding-right: 10px;
  }

  .address-ht {
    padding-right: 10px;
  }

  .header-top-contact {
    margin-left: 300px;
  }

  .number-call-3 {
    display: none;
  }

  #nav .container:before {
    display: none;
  }
}
@media (max-width: 1140px) {
  /*    .product-detail-left,
        .product-detail-right {
            width:  100%;
            float: left;
            margin-left: 0px;
        }
        .product-detail-right {
            margin-top: 10px;
        }*/
  .box-product-list-bottom .box-add-cart,
  .box-product-list-bottom .box-qty {
    width: 50%;
    margin-left: 0px;
  }
}

@media (max-width: 1024px) {
  #cssmenu > ul > li > a {
    font-size: 14px;
    /*        padding: 15px 18px 14px 18px;*/
  }
}

@media (max-width: 992px) {
  .slider .carousel-control .is {
    background-size: 240px;
  }
  .slider .carousel-control .is.is-left {
    background-position: 7px 10px;
  }
  .slider .carousel-control .is.is-right {
    background-position: -30px 10px;
  }

  .header-top {
    height: 70px;
  }

  .header-top-content .logo .box-img {
    margin-top: 5px;
  }

  #nav {
    /*height: auto;*/
    margin-top: 0px;
    background: #008bd2;
    padding: 0px 0px 0px 0px;
  }

  /*    #cssmenu > ul > li:hover > a,
        #cssmenu > ul > li.active > a {
            border: none;
        }*/

  .slider .carousel-control .is {
    background-size: 240px;
  }

  .slider .carousel-control .is.is-left {
    background-position: 7px 10px;
  }

  .slider .carousel-control .is.is-right {
    background-position: -30px 10px;
  }
  .bottom-product-detail .col-ty:last-child,
  .content-product-all .col-ty:last-child {
    display: block;
  }

  .bottom-product-detail .col-ty {
    margin-bottom: 15px;
  }

  .footer-top-content {
    padding-top: 20px;
    padding-bottom: 10px;
  }

  .footer-top-content .col-fc:nth-child(3) {
    width: 51%;
  }

  .footer-top-content .title-fc {
    padding: 15px 0px 8px 0px;
  }

  .footer-top-content .content-fc {
    padding-bottom: 10px;
  }
  .product-detail-left,
  .product-detail-right {
    width: 100%;
    float: left;
    margin-left: 0px;
  }
  .product-detail-right {
    margin-top: 10px;
  }
}

@media (max-width: 990px) {
  .number-call-2 {
    display: none;
  }

  .door4-content .content-door .row .col-ty:nth-child(4) {
    display: none;
  }
}

@media (max-width: 900px) {
  .address-ht {
    display: none;
  }
}

@media (max-width: 840px) {
}

@media (max-width: 768px) {
  .main {
    padding-bottom: 20px;
  }

  .introduce-content .intro-right {
    width: 340px;
  }

  .introduce-content .intro-left {
    margin-right: 350px;
  }

  .introduce-content .intro-right .intro-content .box-img {
    height: auto;
  }

  .introduce-content .intro-right .intro-content .box-img img {
    position: relative;
    width: 100%;
  }

  .door {
    padding-top: 25px;
    padding-bottom: 15px;
  }

  .content-new .box-img {
    height: 130px;
  }

  .content-ty .box-img {
    height: 190px;
  }

  .content-col-proj .box-img img {
    width: 100%;
    position: relative;
  }

  .vertical-style {
    opacity: 1;
    left: 0px;
    bottom: 0px;
    height: 50px;
    top: inherit;
  }
}

@media (max-width: 767px) {
  .door3-content .content-door .col-new,
  .door4-content .content-door .row .col-ty {
    margin-bottom: 20px;
  }

  .door4-content .content-door .row .col-ty:nth-child(4) {
    display: block;
  }

  .door3-content .content-door .col-new:nth-child(3) {
    display: none;
  }

  .content-new .box-img {
    height: 220px;
    /* height: auto;*/
  }

  .content-new .box-img img,
  .content-ty .box-img img {
    /* position: relative;*/
    width: 100%;
  }

  .footer-top-content .col-fc:nth-child(3) {
    width: 100%;
  }

  .content-project .row .col-proj.wow {
    animation-duration: 0s !important;
    animation-delay: 0s !important;
  }

  .left-page {
    display: none;
  }
  .right-page {
    margin-left: 0px;
  }
}

@media (max-width: 700px) {
}

@media (max-width: 640px) {
  .introduce-content .intro-right,
  .introduce-content .intro-left {
    width: 100%;
    float: left;
  }

  .introduce-content .intro-left {
    margin-right: 0px;
    margin-top: 10px;
  }

  .description-intro {
    max-height: 100%;
  }

  .content-col-proj {
    height: auto;
  }

  .content-col-proj .box-img {
    height: 170px;
  }

  .content-project .col-sm-12 .content-col-proj {
    height: 177px;
  }

  .call-ht {
    display: none;
  }
}

@media (max-width: 550px) {
  .header-top-content .logo {
    width: 190px;
  }

  .header-top-contact {
    margin-left: 195px;
  }

  .bottom-product-detail .col-ty .box-img,
  .content-product-all .content-ty .box-img {
    height: 190px;
  }
}

@media (max-width: 480px) {
  .login {
    padding-right: 10px;
  }

  .slider .carousel-control .is {
    display: none;
  }

  .coppyright,
  .nano {
    width: 100%;
    float: left;
    line-height: 1.2;
    margin-top: 10px;
    margin-bottom: 5px;
  }
  .list-content .list-content-img {
    height: auto;
    width: 120px;
  }
  .list-content .list-content-img img {
    position: relative;
  }
  .list-content .list-content-body {
    margin-left: 130px;
  }
  .list-content-body .list-content-detail {
    height: 42px;
    overflow: hidden;
  }
  .bottom-product-detail .col-ty,
  .content-product-all .col-ty {
    /*width: 100%;*/
  }
  .bottom-product-detail .col-ty .box-img,
  .content-product-all .content-ty .box-img {
    height: 150px;
  }
  .bottom-product-detail .col-ty:last-child {
    display: none;
  }
}

@media (max-width: 420px) {
  .content-ty .box-img {
    height: 150px;
  }

  .door {
    padding-top: 20px;
    padding-bottom: 10px;
  }
}

@media (max-width: 380px) {
  .login {
    /* display: none;*/
  }

  .item-hot-product .product-image .box-img {
    height: 205px;
  }

  .box-product-list-bottom .box-qty,
  .box-product-list-bottom .box-add-cart {
    width: 100%;
    float: left;
    margin-left: 0px;
  }
  .box-product-list-bottom .box-add-cart {
    margin-top: 10px;
  }
}

@media (max-width: 360px) {
  .timkiem {
    width: 260px;
  }

  .timkiem .form-control {
    width: 160px;
  }

  .door3-content .content-door .col-new,
  .door4-content .content-door .row .col-ty {
    /* width: 100%;*/
    float: left;
  }

  /* .content-ty .box-img {
        height: auto;
    }*/
}

@media (max-width: 320px) {
  .item-hot-product .product-image .box-img {
    height: 175px;
  }

  .content-project .col-sm-12 .content-col-proj {
    height: 150px;
  }

  .content-project .col-sm-12 .content-col-proj .box-img {
    height: 150px;
  }
}
/*viet 7/11/2016*/
.navigation-box {
  margin-bottom: 20px;
  border-bottom: 1px dotted #ccc;
}
/*.carousel-inner .item img { height: 500px !important;}*/
