body, html{overflow-x:hidden;}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: #333;
}

h1, h2, h3, h4, h5, h6 {
  color: #2B2D42;
  font-weight: 700;
  margin: 0 0 10px;
}

a {
  color: #2B2D42;
  font-weight: 500;
  -webkit-transition: 0.2s color;
  transition: 0.2s color;
}

a:hover, a:focus {
  color: #D10024;
  text-decoration: none;
  outline: none;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none
}

.dmtop {
  background-color: #000;
  z-index: 100;
  width: 50px;
  height: 50px;
  line-height: 47px;
  position: fixed;
  bottom: -100px;
  border-radius: 3px;
  right: 20px;
  text-align: center;
  font-size: 28px;
  color: #ffffff !important;
  cursor: pointer;
  -webkit-transition: all .7s ease-in-out;
  -moz-transition: all .7s ease-in-out;
  -o-transition: all .7s ease-in-out;
  -ms-transition: all .7s ease-in-out;
  transition: all .7s ease-in-out;
}
.dmtop.show {
  bottom: 20px;
}

.masker {
  width: 100vw;
  height: 100vh;
  background-color: #000;
  position: fixed;
  top:0;
  opacity: 0.5; /* 设置透明度为0.5 */
  z-index:19999;
  display: none;
}
.masker.active {
  display: block;
}


/*----------------------------*\
	Buttons
\*----------------------------*/

.banner-btn {
  display: inline-block;
  padding: 12px 30px;
  border: solid 1.5px #d0d0d0;
  color: #909090;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.banner-btn:hover, .banner-btn:focus {
  opacity: 0.9;
  color: #FFF;
  background-color: #D10024;
  border:none
}


@media only screen and (max-width: 481px) {
  .banner-btn {
    padding: 6px 6px;
    font-weight: 400;
    font-size:12px;
  }
}

/*----------------------------*\
	Section
\*----------------------------*/

.section {
  padding-top: 30px;
  padding-bottom: 30px;
}

.section-title {
  position: relative;
  margin-bottom: 30px;
  margin-top: 15px;
}

.section-title .title {
  display: inline-block;
  margin: 0px;
}

.section-title .section-nav {
  float: right;
}

.section-title .section-nav .section-tab-nav {
  display: inline-block;
}

.section-tab-nav li {
  display: inline-block;
  margin-right: 15px;
}

.section-tab-nav li:last-child {
  margin-right: 0px;
}

.section-tab-nav li a {
  font-weight: 700;
  color: #8D99AE;
}

.section-tab-nav li a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: #D10024;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.section-tab-nav li.active a {
  color: #D10024;
}

.section-tab-nav li a:hover:after, .section-tab-nav li a:focus:after, .section-tab-nav li.active a:after {
  width: 100%;
}

.section-title .section-nav .products-slick-nav {
  top: 0px;
  right: 0px;
}


@media only screen and (max-width: 767px) {
  .section-title .section-nav {
    float: none;
    margin-top: 10px;
  }
  .section-tab-nav li {
    margin-top: 10px;
  }

  .section-title .title {
    font-size:20px;
  }

  .section-title {
    margin-bottom: 15px;
  }
}

/*----------------------------*\
	Breadcrumb
\*----------------------------*/

#breadcrumb {
  margin-top:75px;
  padding: 30px 0px;
  background: #FBFBFC;
  border-bottom: 1px solid #E4E7ED;
}

#breadcrumb .breadcrumb-header {
  display: inline-block;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-right: 15px;
  text-transform: uppercase;
}

#breadcrumb .breadcrumb-tree {
  display: inline-block;
}

#breadcrumb .breadcrumb-tree li {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

#breadcrumb .breadcrumb-tree li+li {
  margin-left: 10px;
}

#breadcrumb .breadcrumb-tree li+li:before {
  content: '/';
  display: inline-block;
  color: #8D99AE;
  margin-right: 10px;
}

#breadcrumb .breadcrumb-tree li a {
  color: #8D99AE;
}

#breadcrumb .breadcrumb-tree li a:hover {
  color: #D10024;
}

@media (max-width: 481px) {
  #breadcrumb{
    margin-top:50px;
  }
}

/*=========================================================
	HEADER
===========================================================*/

/*----------------------------*\
	Logo
\*----------------------------*/

#header {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15161D;
  width: 100%;
  position: fixed;
  z-index: 20000;
  top:0;
  height: 75px;
}

.header-logo {
  float: left;
}

.header-logo .logo img {
  display: block;
}


/*----------------------------*\
	Menu
\*----------------------------*/

.header-ctn {
  float: right;
  padding: 0px 0px;
  margin-top:20px;
  margin-right: -20px;
}

.header-ctn>div {
  display: inline-block;
}

.header-ctn>div+div {
  margin-left: 15px;
}

.header-ctn>div>a {
  display: block;
  position: relative;
  width: 90px;
  text-align: center;
  color: #FFF;
}

.header-ctn>div>a>i {
  display: block;
  font-size: 30px;
}

.header-ctn>div>a>span {
  font-size: 12px;
}

.header-ctn .menu-toggle {
  display: none;
}

/*=========================================================
	RESPONSIVE header
===========================================================*/

@media only screen and (max-width: 991px) {
  .header-ctn .menu-toggle {
    display: inline-block;
  }
  #top-header .header-links.pull-left {
    float: none !important;
  }
  #top-header .header-links.pull-right {
    float: none !important;
    margin-top: 5px;
  }
  .header-logo {
    float: none;
    text-align: center;
  }
  .header-logo .logo {
    display: inline-block;
  }
}

@media only screen and (max-width: 480px) {
  #header {
    height: 50px;
  }
  .header-ctn {
    margin-top:15px;
  }
  .header-ctn>div>a>i{
    font-size: 20px;
  }
  .header-logo {
    float: none;
    text-align: left;
  }
  .header-logo .logo img{
    width:100%;
    min-width: 110px;
  }
}

/*=========================================================
	Navigation
===========================================================*/

#navigation {
  font-size:17px
}

/*----------------------------*\
	Main nav
\*----------------------------*/

.main-nav{
  margin:7.5px -15px;
}

.main-nav>li+li {
  margin-left: 30px;

}

.main-nav>li>a {
  color: #fff;
  padding: 20px 0px;
}

.main-nav>li>a:hover {
  color: #5FAF4B;
  background-color: transparent;
  text-decoration: none;
}

.main-nav>li>a:link {
  background-color: transparent;
  text-decoration: none;
}

.main-nav>li>a:hover:after, .main-nav>li>a:focus:after, .main-nav>li.active>a:after {
  width: 100%;
}

.header-ctn li.nav-toggle {
  display: none;
}


/*=========================================================
	RESPONSIVE Navigation
===========================================================*/

@media only screen and (max-width: 991px) {
  #responsive-nav {
    position: fixed;
    left: 0;
    top: 0;
    background: #fff;
    height: 100vh;
    max-width: 250px;
    width: 0%;
    overflow: hidden;
    z-index: 22;
    padding-top: 10px;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
    z-index:20001
  }
  #responsive-nav.active {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    width: 100%;
  }
  .main-nav {
    margin: 0px;
    float: none;
  }
  .main-nav>li {
    display: block;
    float: none;
  }
  .main-nav>li+li {
    margin-left: 0px;
  }
  .main-nav>li>a {
    padding: 15px;
    color: #000;
  }
}

@media only screen and (max-width: 767px) {
  .section-title .section-nav {
    float: none;
    margin-top: 10px;
  }
  .section-tab-nav li {
    margin-top: 10px;
  }
}

/*=========================================================
	BANNER
===========================================================*/

.banner {
  width: 100%;
  padding: 0;
  margin: 0;
}

.banner .swiper-container{
  margin-top:75px;
}

.banner .swiper-button-custom > div {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 30px;
  text-align: center;
  color:#fff;
}

.banner .swiper-button-custom > div:hover {
  background-color: #fff;
  color: #000;
  opacity: .2;
}

.banner .swiper-button-custom .swiper-button-prev-custom {
  position: absolute;
  top:50%;
  left: 10px;
  z-index: 100;
  margin:-20px auto;
}

.banner .swiper-button-custom .swiper-button-next-custom {
  position: absolute;
  top:50%;
  right: 10px;
  z-index: 100;
  margin:-20px auto;
}

.banner .swiper-button-custom > div {
  display: inline-block;
  background-color: rgba(255, 255, 255, .1);
  color: #d0d0d0;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  cursor: pointer;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  transition: all .4s ease;
  z-index: 9;
  border-radius: 300px;
}

.banner .swiper-button-custom > div:hover {
  background-color: white;
  color: #444;
}

.banner .swiper-button-custom > div.swiper-button-prev-custom {
  left: 10px;
}

.banner .swiper-button-custom > div.swiper-button-next-custom {
  right: 10px;
}

.banner .swiper-pagination-custom {
  position: absolute;
  left: 50%; /* 左边距离父容器的50% */
  bottom: 20px;
  width: 100%;
  z-index: 9;
  margin-left: -30px;
}

.banner .swiper-pagination-bullet {
  opacity: .6;
}

.banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

.banner__wrapper {
  padding: 100px 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.banner__title {
  font-size: 40px;
  color: #fff;
  margin-top: 0;
  margin-bottom: 20px;
}

.banner__desc {
  font-size: 16px;
  color: #fff;
  margin-bottom: 20px;
}

@media (min-width: 1201px) {
  .banner__title {
    font-size: 60px;
}
  .banner__desc {
    font-size: 25px;
  }
}

@media (min-width: 991px) {
  .banner__wrapper {
      height: calc(100vh - 75px);
      padding: 0;
  }

  .banner__inner {
      position: absolute;
      top: 50%;
      left: 0;
      width: 100%;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
  }

  .banner .swiper-button-custom {
      display: block;
  }
}


@media (max-width: 991px) {
  .banner__wrapper {
      height: 500px;
      padding: 0;
  }
}

@media (max-width: 481px) {
  .banner__wrapper {
    height: 300px;
    padding: 50px 0;
  }
  .banner__title {
    font-size: 20px;
    max-height:40px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /*多行超出省略*/
    -webkit-box-orient: vertical;
  }
  .banner__desc {
    font-size: 16px;
    max-height:50px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3; /*多行超出省略*/
    -webkit-box-orient: vertical;
  }
  .banner .swiper-container{
    margin-top:50px;
  }
}



/*=========================================================
	ABOUT
===========================================================*/

#about.section {
  padding: 0px 0px 30px 0px;
  margin: 30px 0px;
  color:#fff
}
#about .message-box {
  padding: 10px 30px;
  background-color: #000;
  height:300px;
  padding:50px;
}
#about .message-box text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3; /*多行超出省略*/
  -webkit-box-orient: vertical;
  white-space:nowrap；
}
#about [class*='col-md'] {
  padding:0;
}
.message-box h4 {
  text-transform: uppercase;
  padding: 0;
  margin: 0 0 5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 15px;
}

.message-box h2 {
  font-size: 38px;
  font-weight: 500;
  padding: 0 0 10px;
  margin: 0;
  line-height: 62px;
  margin-top: 0;
  text-transform: none;
  color:#fff
}

.message-box ul{
  margin-bottom: 20px;
}
.message-box ul li{
  display: inline-block;
}

.message-box ul li b{
  font-size: 22px;
  margin-right: 15px;
}
.message-box ul li a{
  background: #009bb7;
  font-size: 24px;
  width: 60px;
  height: 40px;
  display: inline-block;
  text-align: center;
  line-height: 40px;
  border-radius: 50px;
}
.message-box ul li a:hover{
  color: #faad3b;
}

#about .message-box.page {
  color:#000;
  background-color: #fff;
  height: auto;
  padding-top:0px;
}

#about .message-box.page h2 {
  color:#000
}

#about .message-box.page text {
  overflow:inherit;
}

@media only screen and (min-width: 991px) {
  #about .right-box-pro{
    height: 400px;
    overflow: hidden;
  }
  #about .right-box-pro img{
    width: 100%;
    height: 100%;
  }
  #about .left-box-pro{
    height: 700px;
    overflow: hidden;
  }
  #about .left-box-pro img{
    width: 100%;
    height: 100%;
  }
  #about img{
    height: 100%;
  }
  #about img:hover{
    transform: scale(1.1);
  }
}

@media only screen and (max-width: 480px) {
  .message-box h2 {
    font-size: 28px;
    font-weight: 500;
    padding: 0 0 10px;
    margin: 0;
    line-height: 56px;
    margin-top: 0;
    text-transform: none;
  }

  #about .left-box-pro img{
    width: 100%;
  }

  #about .right-box-pro img{
    width: 100%;
  }
}

/*=========================================================
	PRODUCT
===========================================================*/

/*----------------------------*\
	product
\*----------------------------*/

.product {
  position: relative;
  -webkit-box-shadow: 0px 0px 0px 0px #E4E7ED, 0px 0px 0px 0px #E4E7ED;
  box-shadow: 0px 0px 0px 0px #E4E7ED, 0px 0px 0px 0px #E4E7ED;
  -webkit-transition: 0.2s all;
  transition: 0.5s all;
}

.product:hover {
  -webkit-box-shadow: 0px 0px 10px 0px #E4E7ED, 0px 0px 10px 0px #868686;
  box-shadow: 0px 0px 10px 0px #E4E7ED, 0px 0px 10px 0px #868686;
}

.product.withoutcart{
  height:auto;
}

.product:hover.withoutcart {
  height:auto;
  -webkit-box-shadow: 0px 0px 0px 0px #E4E7ED, 0px 0px 0px 0px #868686;
  box-shadow: 0px 0px 0px 0px #E4E7ED, 0px 0px 0px 0px #868686;
}

.product:hover .product-img{
  transform: scale(1.1);
}

.product .product-img {
  position: relative;
  padding:5px;
}

.product .product-img>img {
  width: 100%;
}

.product .product-img .product-label {
  position: absolute;
  top: 15px;
  right: 15px;
}

.product .product-img .product-label>span {
  border: 2px solid;
  padding: 2px 10px;
  font-size: 12px;
}

.product .product-img .product-label>span.sale {
  background-color: #FFF;
  border-color: #D10024;
  color: #D10024;
}

.product .product-img .product-label>span.new {
  background-color: #D10024;
  border-color: #D10024;
  color: #FFF;
}

.product .product-body {
  position: relative;
  padding: 15px;
  background-color: #FFF;
  text-align: center;
  z-index: 20;
  min-height: 80px;
}

.product .product-body .product-category {
  text-transform: uppercase;
  font-size: 12px;
  color: #8D99AE;
}

.product .product-body .product-name {
  text-transform: uppercase;
  font-size: 14px;
  overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3; /*多行超出省略*/
	-webkit-box-orient: vertical;
}

.product .product-body .product-name>a {
  font-weight: 400;
}

.product .product-body .product-name>a:hover, .product .product-body .product-name>a:focus {
  color: #D10024;
}

.product .product-body .product-price {
  color: #D10024;
  font-size: 18px;
}

.product .product-body .product-price .product-old-price {
  font-size: 70%;
  font-weight: 400;
  color: #8D99AE;
}

.product .product-body .product-rating {
  position: relative;
  margin: 15px 0px 10px;
  height: 20px;
}

.product .product-body .product-rating>i {
  position: relative;
  width: 14px;
  margin-right: -4px;
  background: #FFF;
  color: #E4E7ED;
  z-index: 10;
}

.product .product-body .product-rating>i.fa-star {
  color: #ef233c;
}

.product .product-body .product-rating:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 1px;
  background-color: #E4E7ED;
}

.product .product-body .product-btns>button {
  position: relative;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: transparent;
  border: none;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product .product-body .product-btns>button:hover {
  background-color: #E4E7ED;
  color: #D10024;
  border-radius: 50%;
}

.product .product-body .product-btns>button .tooltipp {
  position: absolute;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, -15px);
  -ms-transform: translate(-50%, -15px);
  transform: translate(-50%, -15px);
  width: 150px;
  padding: 10px;
  font-size: 12px;
  line-height: 10px;
  background: #1e1f29;
  color: #FFF;
  text-transform: uppercase;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product .product-body .product-btns>button:hover .tooltipp {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, -5px);
  -ms-transform: translate(-50%, -5px);
  transform: translate(-50%, -5px);
}

.product .add-to-cart {
  padding:0 15px;
  text-align: center;
  z-index: 2;
}

.product .add-to-cart .add-to-cart-btn {
  position: relative;
  border: 2px solid transparent;
  height: 40px;
  padding: 0 30px;
  background-color: #5FAF4B;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 700;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product .add-to-cart .add-to-cart-btn>i {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  line-height: 38px;
  color: #D10024;
  opacity: 0;
  visibility: hidden;
}

.product .add-to-cart .add-to-cart-btn:hover {
  background-color: #D10024;
  color: #FFF;
}

.product .add-to-cart .add-to-cart-btn:hover>i {
  opacity: 0;
  visibility: visible;
}

/*=========================================================
	13 -> RESPONSIVE PRODUCT
===========================================================*/


@media only screen and (min-width: 1201px) {
  .product {
    height:330px;
    overflow: hidden;
  }
  .product:hover {
    height:410px;
  }
}

@media only screen and (max-width: 1201px) {
  .product {
    height:290px;
    overflow: hidden;
  }
  .product:hover {
    height:370px;
  }
}

@media only screen and (max-width: 991px) {
  .product {
    height:220px;
    overflow: hidden;
  }
  .product:hover {
    height:300px;
  }
  .product .add-to-cart .add-to-cart-btn{
    padding:0 10px;
    font-size: 12px;
  }
}

@media only screen and (max-width: 767px) {
  .product {
    height:auto;
    overflow: hidden;
  }
  .product:hover {
    height:auto;
  }
  .product .add-to-cart {
    display:none
  }
}

@media only screen and (max-width: 480px) {
  .product .add-to-cart {
    display:none
  }
}


/*----------------------------*\
	Products slick
\*----------------------------*/

.products-slick .slick-list {
  padding-bottom: 60px;
  margin-bottom: -60px;
  z-index: 2;
}

.products-slick .product.slick-slide {
  margin: 15px;
}

.products-tabs>.tab-pane {
  display: block;
  height: 0;
  opacity: 0;
  visibility: hidden;
  overflow-y: hidden;
  padding-bottom: 60px;
  margin-bottom: -60px;
}

.products-tabs>.tab-pane.active {
  opacity: 1;
  visibility: visible;
  height: auto;
}

.products-slick-nav {
  position: absolute;
  right: 15px;
  z-index: 10;
}

.products-slick-nav .slick-prev, .products-slick-nav .slick-next {
  position: static;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  width: 20px;
  height: 20px;
  display: inline-block !important;
  margin: 0px 2px;
}

.products-slick-nav .slick-prev:before, .products-slick-nav .slick-next:before {
  font-size: 14px;
}

/*=========================================================
	07 -> PRODUCTS PAGE
===========================================================*/

/*----------------------------*\
	Aside
\*----------------------------*/
#all-product.section{
  padding-top:0;
  padding-bottom:0;
}

.aside>.aside-title {
  text-transform: uppercase;
  font-size: 18px;
  margin: 15px 0px 30px;
  display:none;
  font-weight: 500;
}


@media only screen and (min-width: 991px) {
  .aside:after {
    content: "";
    display: block;
    border-bottom: 1px solid #d0d0d0;
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 0;
    margin-right:20px
  }
  .aside>.aside-title{
    display: inline-block;
  }
}

/*-- Store Pagination --*/

.store-pagination {
  float: right;
}

.store-pagination li {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #FFF;
  border: 1px solid #E4E7ED;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.store-pagination li+li {
  margin-left: 5px;
}

.store-pagination li:hover {
  background-color: #E4E7ED;
  color: #D10024;
}

.store-pagination li.active {
  background-color: #D10024;
  border-color: #D10024;
  color: #FFF;
  font-weight: 500;
  cursor: default;
}

.store-pagination li a {
  display: block;
}

.store-qty {
  margin-right: 30px;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 12px;
}

@media only screen and (max-width: 480px) {
  .store-pagination {
    float: none;
    margin-top: 10px;
  }
}

/*=========================================================
	08 -> PRODUCT DETAILS PAGE
===========================================================*/

/*----------------------------*\
	Product view
\*----------------------------*/

#product-main-img .slick-prev {
  -webkit-transform: translateX(-15px);
  -ms-transform: translateX(-15px);
  transform: translateX(-15px);
  left: 15px;
}

#product-main-img .slick-next {
  -webkit-transform: translateX(15px);
  -ms-transform: translateX(15px);
  transform: translateX(15px);
  right: 15px;
}

#product-main-img .slick-prev, #product-main-img .slick-next {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

#product-main-img:hover .slick-prev, #product-main-img:hover .slick-next {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
  opacity: 1;
  visibility: visible;
}

#product-main-img .zoomImg {
  background-color: #FFF;
}

#product-imgs .product-preview {
  margin: 5px 5px;
  border: 1px solid #E4E7ED;
}

#product-imgs .product-preview.slick-current {
  border-color: #D10024;
}

#product-imgs .slick-prev {
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

#product-imgs .slick-next {
  top: calc(100% - 20px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

#product-imgs .slick-prev:before {
  content: "\f106";
}

#product-imgs .slick-next:before {
  content: "\f107";
}

.product-preview img {
  width: 100%;
}

@media only screen and (min-width: 991px) {
  .col-md-1-2 { width: 9.99999999%; } 
  .col-md-5-8 { width: 48.3333333%; } 

  .col-md-push-1-2 { left: 9.99999999%; } 
  .col-md-pull-5-8 { right: 48.3333333%; } 
  
  
  .col-md-1-3 { width: 10.83333333%; } 
  .col-md-5-7 { width: 47.49999999%; } 

  .col-md-push-1-3 { left: 10.83333333%; } 
  .col-md-pull-5-7 { right: 47.49999999%; } 

  #product-main-img  {
    padding-top:25px;
  }
  
  #product-imgs {
    margin-bottom: 60px;
    margin-top: 15px;
  }
  
  .product-preview.slick-slide img {
    min-height: 65px;
	max-height: 65px;
  }
  
  .product-preview.left.slick-slide  img{
	max-height:360px;
  }
}

@media only screen and (min-width: 1201px) {
  .product-preview.slick-slide img {
    min-height: 85px;
	max-height: 85px;
  }
  
  .product-preview.left.slick-slide  img{
	max-height:450px;
  }
}

@media only screen and (max-width: 991px) {
  .product-preview.slick-slide img {
    min-width: 125px;
	max-height: 125px;
  }
  .product-preview.left.slick-slide  img{
	max-height:640px;
  }
}

@media only screen and (max-width: 767px) {
	.product-preview.slick-slide img {
    min-width: 64px;
	max-height: 125px;
  }
  .product-preview.left.slick-slide  img{
	max-height:440px;
  }
}

@media only screen and (max-width: 481px) {
  .product-preview.left.slick-slide  img{
	max-height:320px;
  }
}

/*----------------------------*\
	Product details
\*----------------------------*/

.product-details .product-name {
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 500;
}

.product-details .product-categary {
  font-size: 12px;
  font-weight: 400;
}

.product-details .product-rating {
  display: inline-block;
  margin-right: 15px;
}

.product-details .product-rating>i {
  color: #E4E7ED;
}

.product-details .product-rating>i.fa-star {
  color: #D10024;
}

.product-details .review-link {
  font-size: 12px;
}

.product-details .product-price {
  display: inline-block;
  font-size: 24px;
  margin-top: 10px;
  margin-bottom: 15px;
  color: #D10024;
}

.product-details .product-price .product-old-price {
  font-size: 70%;
  font-weight: 400;
  color: #8D99AE;
}

.product-details .product-available {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  margin-left: 30px;
  color: #D10024;
}

.product-details .product-options {
  margin-top: 30px;
  margin-bottom: 30px;
}

.product-details .product-options label {
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  margin-right: 15px;
  margin-bottom: 0px;
}

.product-details .product-options .input-select {
  width: 90px;
}

.product-details .add-to-cart {
  margin-bottom: 30px;
}

.product-details .add-to-cart .add-to-cart-btn {
  position: relative;
  border: 2px solid transparent;
  height: 40px;
  padding: 0 30px;
  background-color: #ef233c;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 40px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product-details .add-to-cart .add-to-cart-btn>i {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  line-height: 38px;
  color: #D10024;
  opacity: 0;
  visibility: hidden;
}

.product-details .add-to-cart .add-to-cart-btn:hover {
  background-color: #FFF;
  color: #D10024;
  border-color: #D10024;
  padding: 0px 30px 0px 50px;
}

.product-details .add-to-cart .add-to-cart-btn:hover>i {
  opacity: 1;
  visibility: visible;
}

.product-details .add-to-cart .qty-label {
  display: inline-block;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  margin-right: 15px;
  margin-bottom: 0px;
}

.product-details .add-to-cart .qty-label .input-number {
  width: 90px;
  display: inline-block;
}

.product-details .product-btns li {
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
}

.product-details .product-btns li+li {
  margin-left: 15px;
}

.product-details .product-links {
  margin-top: 15px;
}

.product-details .product-links li {
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
}

.product-details .product-links li+li {
  margin-left: 10px;
}

/*----------------------------*\
	 Product tab
\*----------------------------*/

#product-tab {
  margin-top: 60px;
}

#product-tab .tab-nav {
  position: relative;
  padding: 15px 0px;
  margin-bottom: 30px;
}

#product-tab .tab-nav li {
  display: inline-block;
  background: #FFF;
}

#product-tab .tab-nav li+li {
  margin-left: 15px;
}

#product-tab .tab-nav li a {
  display: block;
  font-weight: 700;
  color: #8D99AE;
}

#product-tab .tab-nav li.active a {
  font-size:36px;
  color: #000;
}

#product-tab .tab-nav li a:hover:after, #product-tab .tab-nav li a:focus:after, #product-tab .tab-nav li.active a:after {
  width: 100%;
}

@media only screen and (max-width: 991px) {
  #product-tab .tab-nav li.active a {
    font-size:24px;
  }
}

/*=========================================================
	FOOTER
===========================================================*/

#footer {
  background: #15161D;
  color: #B9BABC;
}

#bottom-footer {
  background: #1E1F29;
}

.footer {
  margin: 30px 0px;
}

.footer .footer-title {
  color: #FFF;
  text-transform: uppercase;
  font-size: 18px;
  margin: 0px 0px 30px;
}

.footer-links li+li {
  margin-top: 15px;
}

.footer-links li a {
  color: #B9BABC;
}

.footer-links li i {
  margin-right: 15px;
  color: #D10024;
  width: 14px;
  text-align: center;
}

.footer-links li a:hover {
  color: #D10024;
}

.copyright {
  margin-top: 30px;
  display: block;
  font-size: 12px;
}

.footer-payments li {
  display: inline-block;
  margin-right: 5px;
}

.footer-payments li a {
  color: #15161D;
  font-size: 36px;
  display: block;
}

/*=========================================================
	SLICK STYLE
===========================================================*/

/*----------------------------*\
	Arrows
\*----------------------------*/

.slick-prev, .slick-next {
  width: 40px;
  height: 40px;
  border: 1px solid #E4E7ED;
  background-color: #FFF;
  border-radius: 50%;
  z-index: 22;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
  background-color: #D10024;
  border-color: #D10024;
}

.slick-prev:before, .slick-next:before {
  font-family: FontAwesome;
  color: #2B2D42;
}

.slick-prev:before {
  content: "\f104";
}

.slick-next:before {
  content: "\f105";
}

.slick-prev:hover:before, .slick-prev:focus:before, .slick-next:hover:before, .slick-next:focus:before {
  color: #FFF;
}

.slick-prev {
  left: -20px;
}

.slick-next {
  right: -20px;
}

/*----------------------------*\
	Dots
\*----------------------------*/

.slick-dots li, .slick-dots li button, .slick-dots li button:before {
  width: 10px;
  height: 10px;
}

.slick-dots li button:before {
  content: "";
  opacity: 1;
  background: #E4E7ED;
  border-radius: 50%;
}

.slick-dots li.slick-active button:before {
  background-color: #D10024;
}

.custom-dots .slick-dots {
  position: static;
  margin: 15px 0px;
}

/*=========================================================
	Sidebar
===========================================================*/
.sidebar {
	font: 15px 'PT Sans Narrow', sans-serif;
	color: #3E4D5C;
	text-transform: uppercase;
}
.sidebar .list-group-item {
    border: none;
    display: block;
    margin-bottom: 2px;
    padding: 7px 10px;
    position: relative;
    border-radius: 0;
    background: #fff;
    padding: 8px 10px 6px;
}
.sidebar .list-group-item.active,.sidebar  .list-group-item.active:focus,.sidebar  .list-group-item.active:hover {
  background-color: #fff;
}
.sidebar .list-group-item:last-child {
	margin: 0;
}
.sidebar a {
	color: #3E4D5C;
}
.sidebar a:hover {
	color: #E02222;
}
.sidebar-menu a {
	display: block;
}
.sidebar-menu a:hover {
 	text-decoration: none;
}
.sidebar-menu .fa-angle-down {
	position: absolute;
	top: 10px;
	margin-right: 3px;
	right: 0;
  font-size: 16px;
}
.sidebar-menu  .dropdown .collapsed {
	transform: rotate(180deg);
}

.sidebar .dropdown.open .dropdown-toggle {
  background: #fff;
  color: #3E4D5C;
}
.sidebar .dropdown.open .dropdown-toggle:hover {
	color: #E02222;
}
.sidebar .dropup.open > .dropdown-toggle, .dropdown.open > .dropdown-toggle {
  border-color: none !important;
}

.sidebar .dropdown-menu {
  background-clip: padding-box;
  background: #fff;
  border: none;
  border-radius: 0;
  box-shadow: none;
  display: none;
  float: none;
  font-size: 14px;
  list-style: none;
  margin: 0 -10px;
  min-width: auto;
  padding: 5px 10px 1px 19px;
  position: relative;
  top: 0;
  left: 0;
  z-index: 1000;
  font: 15px 'PT Sans Narrow', sans-serif;
}

.sidebar .dropdown-menu:after,
.sidebar .dropdown-menu:before {
  display:none !important;
}

.sidebar .dropdown-menu .dropdown-menu {
	border-top: none;
	margin-bottom: -5px;
	margin-right: -10px;
}
.sidebar .open>.dropdown-menu {
	display: block;
}
.sidebar .dropdown-menu li {
	padding: 4px 0 3px 11px;
	position: relative;
}
.sidebar .dropdown-menu ul {
	padding: 0;
	margin: 0 0 0 4px;
	list-style: none;
	text-transform: none;
	font-size: 15px;
}
.sidebar .dropdown-menu > li > a {
  clear: both;
  line-height: inherit;
  padding: 0;
  white-space: inherit;
}
.sidebar-menu .dropdown-menu li > a:hover, .sidebar-menu .dropdown-menu li > a:focus, .sidebar-menu li.active > a, .sidebar-menu li.active > a:hover {
	background: none !important;
	color: #E02222;
}

.sidebar .list-group{
  margin-bottom: 0;
}

@media only screen and (max-width: 991px) {
  .sidebar {
    border: #d0d0d0 1px solid;
    margin:20px 20px 0 20px;
  }
}

/* --------------------------------------
  CONTACT
-----------------------------------------*/
.contact {
  font-family: "Poppins", sans-serif;
  background: url("../img/contact-bg.png") no-repeat center;
  background-size: cover; 
}
.contact .info {
  margin-top: 30px; 
}

.contact .info li {
  margin-bottom: 15px; 
}

.contact .info li:last-child {
  margin-bottom: 0; 
}

.contact .info li .icon,
.contact .info li i {
  float: left;
  color: #fff;
  background: #001942;
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  z-index: 1; 
}

.contact .info li p {
  display: inline-block;
  color: #353434;
  margin-left: 15px;
  font-size: 15px; 
}

.contact .info li h5 span {
  font-weight: 700;
  margin-left: 15px;
  display: inline-block;
  font-size: 16px; 
}

.contact .contact-form input {
  border-radius: .2rem; 
}

.contact .contact-form .button {
  display: inline-block;
  width: 40%;
  margin: 0 auto;
  padding: 1rem;
  z-index: 1;
  background: #fff;
  border-radius: .2rem; 
}

.contact .contact-form {
  margin-top: 30px; 
}

.contact .contact-info .item {
  margin-top: 30px; 
}

.contact .contact-info .item .icon {
  float: left;
  font-size: 25px;
  color: #d8d7d79c; 
}

.contact .contact-info .item .cont {
  margin-left: 50px; 
}

.contact .contact-info .item .cont h6 {
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 5px; 
}

.contact .contact-info .item .cont p {
  font-size: 13px; 
}

.contact .form input,
.contact .form textarea {
  width: 100%;
  padding: 10px;
  border: 0;
  background-color: #fff; 
}

.contact .form input:focus,
.contact .form textarea:focus {
  border: none;
  outline: none; 
}

.contact .form textarea {
  height: 160px;
  max-height: 160px;
  max-width: 100%; 
}

.contact .button.btn-hover {
  cursor: pointer;
  position: relative;
  border: 2px solid #F7CA18;
  -webkit-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1) 0s;
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1) 0s; 
}

.contact .button.btn-hover:hover {
  color: #000 !important;
  background-color: transparent;
  text-shadow: inherit; 
}

.contact .button.btn-hover:hover:before {
  left: 0%;
  right: auto;
  width: 100%; }

.contact .button.btn-hover:before {
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  height: 100%;
  width: 0px;
  z-index: -1;
  content: '';
  color: #000 !important;
  background: #F7CA18;
  -webkit-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1) 0s;
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1) 0s; 
}

.contact .button.disable {
  background-color: #aaaaaa;
}

.contact .help-block{
	color:#D10024
}


/* Transitions */
.animated {
  -moz-opacity: 0;
	-khtml-opacity: 0;
	-webkit-opacity: 0;
	opacity: 0;
	-ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0 * 100);
	filter: alpha(opacity=0 * 100);
}
.activate {
	-moz-opacity: 1 !important;
	-khtml-opacity: 1 !important;
	-webkit-opacity: 1 !important;
	opacity: 1 !important;
	-ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=1 * 100);
	filter: alpha(opacity=1 * 100);
}