body {
  font-family: "Khand", sans-serif;
}

.left-side-bar {
  background: #000;
  padding-bottom: 2400px;
  height: 100% !important;
}

.left-side-bar .logo {
  text-align: center;
  padding: 25px 0 40px;
}

.affix {
  z-index: 66666666;
  width: 8.33333333%;
}

body {
  overflow-x: hidden;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  *zoom: 1;
}

.container {
  position: relative;
  margin: 0px auto;
  padding: 50px 0;
  clear: both;
}

@media only screen and (min-width: 1200px) {
  .container {
    width: 1210px;
  }
}

@media only screen and (min-width: 960px) and (max-width: 1199px) {
  .container {
    width: 1030px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 959px) {
  .container {
    width: 682px;
  }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .container {
    width: 428px;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 479px) {
  .container {
    width: 320px;
    margin: 0 auto;
  }
}

.mcd-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  /*height: 100px;*/
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  /* == */
  /* == */
}

.mcd-menu li {
  position: relative;
  border-bottom: 1px solid #18202b;
  text-align: center;
  /*float:left;*/
}

.mcd-menu li:first-child {
  border-top: 1px solid #18202b;
}

.mcd-menu li a {
  display: block;
  text-decoration: none;
  padding: 12px 20px;
  font-family: "Khand", sans-serif;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  /*text-align: center;
  border-right: 1px solid #E7E7E7;*/
  /* == */
  position: relative;
  /* == */
}

.mcd-menu li a .fa-home {
  font-size: 30px;
  display: block;
}

.mcd-menu li a i {
  /*display: block;
  font-size: 30px;
  margin-bottom: 10px;*/
  /* == */
  text-align: center;
  font-size: 20px;
  margin: 0 10px 0 0;
  /* == */
}

/* == */
.mcd-menu li a p {
  float: left;
  margin: 0;
}

/* == */
.mcd-menu li a strong {
  display: block;
  text-transform: uppercase;
}

.mcd-menu li a small {
  display: block;
  font-size: 10px;
}

.mcd-menu li a i, .mcd-menu li a strong, .mcd-menu li a small {
  position: relative;
  transition: all 300ms linear;
  -o-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -webkit-transition: all 300ms linear;
}

.mcd-menu li:hover > a i {
  opacity: 1;
  -webkit-animation: moveFromTop 300ms ease-in-out;
  -moz-animation: moveFromTop 300ms ease-in-out;
  -ms-animation: moveFromTop 300ms ease-in-out;
  -o-animation: moveFromTop 300ms ease-in-out;
  animation: moveFromTop 300ms ease-in-out;
}

.mcd-menu li:hover a strong {
  opacity: 1;
  -webkit-animation: moveFromLeft 300ms ease-in-out;
  -moz-animation: moveFromLeft 300ms ease-in-out;
  -ms-animation: moveFromLeft 300ms ease-in-out;
  -o-animation: moveFromLeft 300ms ease-in-out;
  animation: moveFromLeft 300ms ease-in-out;
}

.mcd-menu li:hover a small {
  opacity: 1;
  -webkit-animation: moveFromRight 300ms ease-in-out;
  -moz-animation: moveFromRight 300ms ease-in-out;
  -ms-animation: moveFromRight 300ms ease-in-out;
  -o-animation: moveFromRight 300ms ease-in-out;
  animation: moveFromRight 300ms ease-in-out;
}

.mcd-menu li:hover > a {
  background: #00a9cf;
}

.mcd-menu li a.active {
  position: relative;
  color: #00a9cf;
  border: 0;
  /*border-top: 4px solid #00a9cf;
  border-bottom: 4px solid #00a9cf;
  margin-top: -4px;*/
  box-shadow: 0 0 5px #DDD;
  -moz-box-shadow: 0 0 5px #DDD;
  -webkit-box-shadow: 0 0 5px #DDD;
  /* == */
  border-left: 4px solid #00a9cf;
  border-right: 4px solid #00a9cf;
  margin: 0 -4px;
  /* == */
}

.mcd-menu li a.active:before {
  content: "";
  position: absolute;
  /*top: 0;
  left: 45%;
  border-top: 5px solid #00a9cf;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;*/
  /* == */
  top: 42%;
  left: 0;
  border-left: 5px solid #00a9cf;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  /* == */
}

/* == */
.mcd-menu li a.active:after {
  content: "";
  position: absolute;
  top: 42%;
  right: 0;
  border-right: 5px solid #00a9cf;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

/* == */
@-webkit-keyframes moveFromTop {
  from {
    opacity: 0;
    -webkit-transform: translateY(200%);
    -moz-transform: translateY(200%);
    -ms-transform: translateY(200%);
    -o-transform: translateY(200%);
    transform: translateY(200%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
  }
}

@-webkit-keyframes moveFromLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(200%);
    -moz-transform: translateX(200%);
    -ms-transform: translateX(200%);
    -o-transform: translateX(200%);
    transform: translateX(200%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@-webkit-keyframes moveFromRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(-200%);
    -moz-transform: translateX(-200%);
    -ms-transform: translateX(-200%);
    -o-transform: translateX(-200%);
    transform: translateX(-200%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
  }
}

.mcd-menu li ul,
.mcd-menu li ul li ul {
  position: absolute;
  height: auto;
  min-width: 210px;
  padding: 0;
  margin: 0;
  background: #FFF;
  /*border-top: 4px solid #00a9cf;*/
  opacity: 0;
  visibility: hidden;
  transition: all 300ms linear;
  -o-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -webkit-transition: all 300ms linear;
  /*top: 130px;*/
  z-index: 1000;
  /* == */
  left: 180px;
  top: -200px;
  border-left: 4px solid #00a9cf;
  /* == */
}

.mcd-menu li ul:before {
  content: "";
  position: absolute;
  /*top: -8px;
  left: 23%;
  border-bottom: 5px solid #00a9cf;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;*/
  /* == */
  top: 25px;
  left: -9px;
  // border-right: 5px solid #00a9cf;
  // border-bottom: 5px solid transparent;
  // border-top: 5px solid transparent;
  /* == */
}

.mcd-menu li:hover > ul,
.mcd-menu li ul li:hover > ul {
  display: block;
  opacity: 1;
  visibility: visible;
  /*top: 100px;*/
  /* == */
  left: 120px;
  /* == */
}

/*.mcd-menu li ul li {
  float: none;
}*/
.mcd-menu li ul li a {
  padding: 10px;
  text-align: left;
  border: 0;
  font-size: 15px;
  color: #1e1e1e;
  border-bottom: 1px solid #EEE;
  /* == */
  height: auto;
  /* == */
}

.mcd-menu li ul li a i {
  font-size: 24px;
  text-align: center;
  display: inline-block;
  margin: 0 10px 0 0;
}

.mcd-menu li ul li ul {
  left: 230px;
  top: 0;
  border: 0;
  border-left: 4px solid #00a9cf;
}

.mcd-menu li ul li ul:before {
  content: "";
  position: absolute;
  top: 15px;
  /*left: -14px;*/
  /* == */
  left: -9px;
  /* == */
  border-right: 5px solid #00a9cf;
  border-bottom: 5px solid transparent;
  border-top: 5px solid transparent;
}

.mcd-menu li ul li:hover > ul {
  top: 0px;
  left: 200px;
}

/*.mcd-menu li.float {
  float: right;
}*/
.mcd-menu li a.search {
  /*padding: 29px 20px 30px 10px;*/
  padding: 10px 10px 15px 10px;
  clear: both;
}

.mcd-menu li a.search i {
  margin: 0;
  display: inline-block;
  font-size: 18px;
}

.mcd-menu li a.search input {
  border: 1px solid #EEE;
  padding: 10px;
  background: #FFF;
  outline: none;
  color: #777;
  /* == */
  width: 170px;
  /* == */
}

.mcd-menu li a.search button {
  border: 1px solid #00a9cf;
  /*padding: 10px;*/
  background: #00a9cf;
  outline: none;
  color: #FFF;
  margin-top: 15px;
  /* == */
  padding: 10px 10px 10px 10px;
  /* == */
}

.mcd-menu li a.search input:focus {
  border: 1px solid #00a9cf;
}

.search-mobile {
  display: none !important;
  background: #00a9cf;
  border-left: 1px solid #00a9cf;
  border-radius: 0 3px 3px 0;
}

.search-mobile i {
  color: #FFF;
  margin: 0 !important;
}

.banner-next-btn, .banner-pre-btn {
  margin-top: 190px;
}

@media only screen and (min-width: 960px) and (max-width: 1199px) {
  .mcd-menu {
    margin-left: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 959px) {
  .mcd-menu {
    width: 200px;
  }
  .mcd-menu li a {
    height: 30px;
  }
  .mcd-menu li a i {
    font-size: 22px;
  }
  .mcd-menu li a strong {
    font-size: 12px;
  }
  .mcd-menu li a small {
    font-size: 10px;
  }
  .mcd-menu li a.search input {
    width: 120px;
    font-size: 12px;
  }
  .mcd-menu li a.search buton {
    padding: 8px 10px 9px 10px;
  }
  .mcd-menu li > ul {
    min-width: 180px;
  }
  .mcd-menu li:hover > ul {
    min-width: 180px;
    left: 200px;
  }
  .mcd-menu li ul li > ul, .mcd-menu li ul li ul li > ul {
    min-width: 150px;
  }
  .mcd-menu li ul li:hover > ul {
    left: 180px;
    min-width: 150px;
  }
  .mcd-menu li ul li ul li:hover > ul {
    left: 150px;
    min-width: 150px;
  }
  .mcd-menu li ul a {
    font-size: 12px;
  }
  .mcd-menu li ul a i {
    font-size: 14px;
  }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .mcd-menu {
    width: 150px;
  }
  .mcd-menu li a {
    position: relative;
    padding: 12px 16px;
    height: 20px;
  }
  .mcd-menu li a small {
    display: none;
  }
  .mcd-menu li a strong {
    display: none;
  }
  .mcd-menu li a:hover strong, .mcd-menu li a.active strong {
    display: block;
    font-size: 10px;
    padding: 3px 0;
    position: absolute;
    bottom: 0px;
    left: 0;
    background: #00a9cf;
    color: #FFF;
    min-width: 100%;
    text-transform: lowercase;
    font-weight: normal;
    text-align: center;
  }
  .mcd-menu li .search {
    display: none;
  }
  .mcd-menu li > ul {
    min-width: 180px;
    left: 70px;
  }
  .mcd-menu li:hover > ul {
    min-width: 180px;
    left: 50px;
  }
  .mcd-menu li ul li > ul, .mcd-menu li ul li ul li > ul {
    min-width: 150px;
  }
  .mcd-menu li ul li:hover > ul {
    left: 180px;
    min-width: 150px;
  }
  .mcd-menu li ul li ul li > ul {
    left: 35px;
    top: 45px;
    border: 0;
    border-top: 4px solid #00a9cf;
  }
  .mcd-menu li ul li ul li > ul:before {
    left: 30px;
    top: -9px;
    border: 0;
    border-bottom: 5px solid #00a9cf;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
  }
  .mcd-menu li ul li ul li:hover > ul {
    left: 30px;
    min-width: 150px;
    top: 35px;
  }
  .mcd-menu li ul a {
    font-size: 12px;
  }
  .mcd-menu li ul a .fa-home {
    font-size: 12px;
  }
  .mcd-menu li ul a i {
    font-size: 14px;
  }
  .banner-next-btn, .banner-pre-btn {
    margin-top: 50px;
    height: 100px;
  }
  .mcd-menu li a {
    font-size: 13px;
  }
  .mcd-menu li a .fa-home {
    font-size: 16px;
    line-height: 0px;
    margin: 0px !important;
  }
  .mcd-menu li:hover > ul,
  .mcd-menu li ul li:hover > ul {
    display: block;
    opacity: 1;
    visibility: visible;
    /*top: 100px;*/
    /* == */
    left: 200px;
    /* == */
  }
  .mcd-menu li ul li a {
    font-size: 12px;
  }
  .mcd-menu {
    min-width: 100%;
  }
  .mcd-menu li a {
    color: #fff;
  }
}

@media only screen and (max-width: 479px) {
  .mcd-menu {
    width: 120px;
  }
  .mcd-menu li a {
    position: relative;
    padding: 12px 16px;
    height: 20px;
  }
  .mcd-menu li a small {
    display: none;
  }
  .mcd-menu li a strong {
    display: none;
  }
  .mcd-menu li a:hover strong, .mcd-menu li a.active strong {
    display: block;
    font-size: 10px;
    padding: 3px 0;
    position: absolute;
    bottom: 0px;
    left: 0;
    background: #00a9cf;
    color: #FFF;
    min-width: 100%;
    text-transform: lowercase;
    font-weight: normal;
    text-align: center;
  }
  .mcd-menu li .search {
    display: none;
  }
  .mcd-menu li > ul {
    min-width: 180px;
    left: 70px;
  }
  .mcd-menu li:hover > ul {
    min-width: 180px;
    left: 50px;
  }
  .mcd-menu li ul li > ul, .mcd-menu li ul li ul li > ul {
    min-width: 150px;
  }
  .mcd-menu li ul li:hover > ul {
    left: 180px;
    min-width: 150px;
  }
  .mcd-menu li ul li ul li > ul {
    left: 35px;
    top: 45px;
    border: 0;
    border-top: 4px solid #00a9cf;
  }
  .mcd-menu li ul li ul li > ul:before {
    left: 30px;
    top: -9px;
    border: 0;
    border-bottom: 5px solid #00a9cf;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
  }
  .mcd-menu li ul li ul li:hover > ul {
    left: 30px;
    min-width: 150px;
    top: 35px;
  }
  .mcd-menu li ul a {
    font-size: 14px;
  }
  .mcd-menu li ul a ul li a {
    font-size: 14px;
  }
  .mcd-menu li ul a i {
    font-size: 12px;
  }
  .mcd-menu li ul li ul li:hover > ul {
    left: 150px;
    min-width: 100%;
  }
  .mcd-menu li a {
    color: #fff;
  }
}

.main-content-wraper {
  position: relative;
}

.main-content-wraper .main-banner .item img {
  width: 100% !important;
}

.top-bar {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 555;
  background: rgba(17, 2, 3, 0.7);
  width: 100%;

}

.top-bar ul > li {
  float: left;
  padding: 20px 14px;
  border-right: 1px solid #202020;
}

.top-bar ul > li a {
  color: #fff;
}

.top-bar ul > li a:hover {
  color: #9b9b9b;
}

.top-bar ul > li ul li {
  padding: 0px;
  float: none;
  border-right: none;
  position: relative;
}

.top-bar .dropdown-menu {
  display: none;
  position: absolute;
  top: 55px;
  left: -380%;
  width: 475px !important;
  font-family: "Khand", sans-serif;
}

.top-bar .dropdown-menu h1 {
  font-size: 20px;
  margin:5px 0;
}

.top-bar .dropdown-menu .signin-sec h5 {
  color: #130303;
  font-size: 20px;
  font-family: "Khand", sans-serif;
}

.top-bar .dropdown-menu .signin-sec button {
  font-size: 20px;
}

.top-bar .dropdown-menu .forget-pass {
  text-align: center;
  display: block;
  text-transform: uppercase;
  color: #000 !important;
  padding: 10px 0;
}

.top-bar .dropdown-menu .forget-pass a {
  color: #000;
}

.top-bar .dropdown-menu .forget-pass a:hover {
  color: #00a9cf;
}

.top-bar .dropdown-menu .creat-account-sec {
  text-align: center;
  font-size: 15px;
  padding: 10px 0;
}

.top-bar .dropdown-menu .creat-account-sec strong {
  display: block;
  margin-bottom: 10px;
}

.top-bar .dropdown-menu .creat-account-sec button {
  font-size: 20px;
}

.top-bar .dropdown-menu .checkout-footer {
  margin-top: 5px;
  font-size: 18px;
  background: #00a9cf;
  padding: 8px 0;
  color: #fff;
}

.top-bar .dropdown-menu .checkout-footer i.fa {
  margin: -2px 7px 0 0;
  vertical-align: 1px;
}

@media only screen and (min-width: 320px) and (max-width: 480px) {
  .top-bar .dropdown-menu {
    width: 100% !important;
    position: static;
  }
}

.top-bar .dropdown:hover .dropdown-menu {
  display: block;
}

.cat-section h2 {
  text-align: center;
  font-family: "Khand", sans-serif;
  font-size: 50px;
  color: #000;
  text-transform: uppercase;
}

@media only screen and (max-width: 479px) {
  .cat-section h2 {
    font-size: 24px;
  }
}

.feature-pro h2 {
  text-align: center;
  font-family: "Khand", sans-serif;
  font-size: 50px;
  color: #000;
  text-transform: uppercase;
}

@media only screen and (max-width: 479px) {
  .feature-pro h2 {
    font-size: 24px;
  }
}

.feature-pro .nbs-flexisel-nav-left,
.feature-pro .nbs-flexisel-nav-right {
  width: 64px;
  height: 24px;
  background-size: cover;
  top:-25px !important;
  position: absolute;
  cursor: pointer;
  z-index: 9999;
  opacity: 1;
}

.feature-pro .nbs-flexisel-nav-left {
  left: 10px;
  background: url(../images/PREV1-.png) no-repeat;
}

.feature-pro .nbs-flexisel-nav-right {
  right: 15px;
  background: url(../images/Next1-.png) no-repeat;
}

.pro-list li {
  margin: 1px 0;
}

.pro-list li .inside-carousel {
  padding: 10px;
  margin: 2px 2px;
}

.pro-list li a {
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
}

.pro-list li :hover h1 {
  color: #00a9cf;
}

.pro-list li :hover p {
  color: #00a9cf;
}

.pro-list .size {
  text-align: left;
  padding: 5px 0;
  min-height: 35px;

}

.pro-list .size p {
  font-size: 14px;
  margin: 0px;
  display: none;
}
.pro-list li:hover .size p {
  display: block;
}

.pro-list h1 {
  font-size: 18px;
  color: #000;
  font-weight: 600;
  border-top: 1px solid #c2c2c2;
  padding: 10px 0 0 0;
  margin: 2px 0 0 0;
}

.pro-list p {
  font-size: 18px;
  color: #000;
  display: block;
  font-weight: 600;
}

.pro-list .inside-carousel:hover {
  outline: 1px solid #c4c4c4;
}

.promo-banner {
  padding: 50px 0;
}

.footer-top {
  // padding: 15px 0;
  background: #1b1b1b;
}

.footer-top .footer-links h4 {
  padding: 15px 0;
  color: #a9a9a9;
  text-transform: uppercase;
  border-bottom: 1px solid #a9a9a9;
  margin-bottom: 10px;
}

.footer-top .footer-links li {
  line-height: 25px;
}

.footer-top .footer-links li a {
  display: block;
  color: #a9a9a9;
  font-size: 13px;
  text-transform: uppercase;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
}

.footer-top .footer-links li a:hover {
  color: #00a9cf;
}

.footer-top .footer-links li:hover a:before {
  content: "\f111";
  font-family: FontAwesome;
  margin-right: 5px;
}

.footer-top .footer-links address {
  color: #a9a9a9;
}

.footer-top .footer-links address i.fa, .footer-top .footer-links address span {
  color: #fff;
  display: inline-block;
  margin: 0 10px 10px 0;
  float: left;
}

.footer-top .footer-links address a {
  color: #a9a9a9;
}

.news-letter-sec {
  background: #161616;
  padding: 25px 0 0;
}

.news-letter-sec .social-icons li {
  float: left;

}

// .news-letter-sec .social-icons li a {
//   font-size: 22px;
//   color: #161616;
// }

// .news-letter-sec .social-icons li:hover {
//   background: #434343;
// }

// .news-letter-sec .social-icons li:hover a {
//   color: #fff;
// }

.news-letter-sec .helpline {
  color: #787777;
}

.news-letter-sec .helpline span {
  color: #fff;
}

.copy-right {
  padding: 15px 0;
  color: #7c7c7c;
  background: #222222;
}

.copy-right .powerdby {
  padding-top: 15px;
}

.copy-right .powerdby a {
  color: #fff;
}

.copy-right .powerdby a:hover {
  color: #00a9cf;
}

.pay-method ul li {
  float: left;
  margin-right: 15px;
}

.search-sec {
  text-align: center;
  font-size: 24px;
}

.search-sec i.fa {
  margin-bottom: 10px;
  font-weight: 400;
}

.search-field {
  display: none;
  text-align: left;
  font-weight: 400;
  width: 98%;
}

.outside-breadcrums {
  background: #00a9cf;
  height: 61px;
}

.outside-breadcrums .breadcrumb {
  background: none;
  margin: 15px 0 0 0;
}

.outside-breadcrums .breadcrumb li.breadcrumb-item a {
  color: #fff;
  font-size: 18px;
  font-family: "Khand", sans-serif;
}

.outside-breadcrums .breadcrumb li.breadcrumb-item.active {
  color: #000;
  font-family: "Khand", sans-serif;
  font-size: 18px;
}

.main-product-wraper {
  padding: 30px 0;
}

.inside-brows-cat {
  border-top: 2px solid #e5e3e3;
  border-left: 2px solid #e5e3e3;
  font-size: 25px;
  padding: 15px;
}

.inside-brows-cat h3 {
  color: #000;
  margin: 0px;
}

.inside-brows-cat h4 {
  margin: 0px;
  color: #424242;
}

.pro-cat-left-menu h1 {
  font-size: 20px;
  text-transform: uppercase;
}

.pro-cat-left-menu .heading-title:after {
  content: url(../images/dot.png);
  float: right;
}

.pro-cat-left-menu .panel-default > .panel-heading {
  background: #00a9cf;
  color: #fff;
}

.pro-cat-left-menu .panel-body {
  padding: 2px 5px;
  background: #252525;
}

.pro-cat-left-menu .panel-default {
  border-radius: 0px;
}

.pro-cat-left-menu .cat-list li {
  border-bottom: 1px solid #333333;
}

.pro-cat-left-menu .cat-list li a {
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  display: block;
  padding: 5px 0;
}

.pro-cat-left-menu .cat-list li a:before {
  content: "-";
  margin-right: 5px;
}

.pro-cat-left-menu .cat-list li a:hover {
  margin-left: 10px;
  color: #00a9cf;
}

.heading-main {
  font-size: 25px;
  text-transform: uppercase;
  color: #000;
  border: 2px solid #e5e3e3;
  border-right: none;
  margin: 0px 0 25px 0;
  padding: 20px;
}

.pro-section .feature-pro ul li {
  width: 290px;
  text-align: center;
  height: 410px;
  float: left;
  margin: 0 0 10px;
}

.pro-section .feature-pro ul li .pro-img {
  // width: 225px;
  height: 290px;
}

.pro-section .feature-pro ul li .pro-img img {
  width: 100%;
}

.large-content-wraper {
  margin: 20px 0;
}
.different-views ul li {
  margin:5px 0 0 0;
}

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

.other-views ul > li {
  float: left;
  width: 18%;
  margin-right: 4px;
  // border: 1px solid #ddd;
}

.other-views ul > li img {
  max-width: 100%;
}

.product-dec {
  border: 2px solid #ebebeb;
  outline: 2px solid #ebebeb;
  outline-offset: 7px;
}

.product-dec h1 {
  text-align: center;
  font-size: 22px;
}

.product-dec .pro-options {
  padding: 20px 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.product-dec .pro-options .qty-field {
  background: #00a9cf;
  outline-offset: 5px;
  outline: 1px solid #00a9cf;
  text-align: center;
  border: 1px solid #00a9cf;
  margin-left: 5px;
  width: 40px;
  color: #fff;
  margin-top: 2px;
}

.product-dec .pro-options .addtocart {
  background: #000;
  color: #fff;
  margin: 20px auto;
  display: block;
  font-size: 18px;
  padding: 5px 15px;
  text-transform: uppercase;
}

.share-social-media {
  width: 157px;
  text-align: center;
  font-weight: 600;
  font-size: 22px;
  text-transform: uppercase;
  margin: 20px auto;
}

.share-social-media ul li {
  float: left;
  margin: 0 0 0 10px;
  border-radius: 360px;
  width: 40px;
  text-align: center;
  height: 40px;
  padding: 5px 0 0 0;
  background: #434343;
}

.share-social-media ul li i.fa {
  font-size: 22px;
  color: #fff;
}

.product-description {
  margin: 50px 0 30px 0;
}

.product-description .nav-tabs {
  padding-left: 37%;
  border-bottom: 1px solid #000;
}

.product-description .nav-tabs > li {
  margin-right:17px;
}
.product-description .nav-tabs > li, .product-description .nav-tabs li.active {
  background: #000;
  border-radius: 0px;
  position: relative;
  top: 31px;
  border: none;
  box-shadow: none;
}

.product-description .nav-tabs > li a, .product-description .nav-tabs li.active a {
  background: #000;
  border-radius: 0px;
  font-size: 20px;
  color: #fff;
  border: 0px;
}

.product-description .nav-tabs li.active a {
  color: #00a9cf;
}

.product-description .tbs:before {
  position: absolute;
  left: -8px;
  content: url(../images/left-corner.png);
}

.product-description .tbs:after {
  position: absolute;
  right: -8px;
  top: 0px;
  content: url(../images/right-corner.png);
}

.product-description .tab-content {
  background: #000;
  padding: 30px 10px;
}

.product-description .tab-pane {
  color: #fff;
  text-align: center;
}

.sub-cat-wraper {
  text-align: center;
}

.sub-cat-wraper h1 {
  text-align: center;
  color: #1e1e1e;
  font-size: 24px;
}

.sub-cat-wraper .clickbtn {
  display: block;
  margin: 5px auto;
  color: #fff;
  background: #000;
  font-size: 16px;
  font-weight: 600;
}

.sub-cat-wraper:hover .clickbtn {
  background: #00a9cf;
  color: #000;
}

.black-logo {
  text-align: center;
}

.black-logo img {
  display: block;
  margin: 10px auto;
}

.black-logo p {
  font-size: 18px;
  margin-top: 25px;
}

.begin-checkout {
  padding: 15px 0px;
  background: #ebebeb;
}

.begin-checkout h4 {
  font-size: 25px;
}

.begin-checkout .login-checkout {
  border-right: 1px solid #b7b7b7;
}

.begin-checkout .fb-icon i.fa {
  display: inline-block;
  width: 70px;
  height: 70px;
  border-radius: 350px;
  text-align: center;
  padding: 20px 0 0 0;
  text-align: center;
  color: #fff;
  background: #3b5998;
}

.begin-checkout .fblogin {
  font-size: 25px;
  text-align: center;
}

.btn-login, .place-order {
  background: #00a9cf;
  font-size: 18px;
  color: #fff;
  box-shadow: 0 2px 0px 1px #12839c;
}

.order-summary .col-md-5, .order-summary .col-md-1 {
  padding-right: 0px;
}

.order-summary .col-md-1, .order-summary .col-md-2 {
  text-align: center;
}

.order-summary strong {
  display: block;
  text-align: center;
}

.order-summary h5 {
  font-size: 25px;
}

.order-summary h6 {
  font-size: 16px;
  text-transform: uppercase;
  color: #232323;
  background: #ebebeb;
  padding: 10px;
}

.order-summary .article {
  padding-bottom: 15px;
}

.order-summary .article h2 {
  font-size: 18px;
  color: #262626;
}

.order-summary .article p {
  color: #00a9cf;
}

.order-summary .article img {
  border: 1px solid #c0c0c0;
}

.order-summary strong.price {
  font-size: 25px;
  color: #00a9cf;
}

.order-summary i.fa-close.ddd {
  float: right;
  color: red;
  margin: -30px 0 0 0;
  right: 5px;
  top: 5px;
}

.total {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 25px 0;
  margin-bottom: 25px;
}

.sb-heading {
  font-size: 25px;
  color: #8b8b8b;
  text-transform: uppercase;
}

.shipment-detail, .comments, .shippment-content, .review-total {
  padding: 15px;
  background: #ebebeb;
}

.color {
  color: #00a9cf;
}

.red {
  color: #ff0000;
}

.shipping-method-review {
  border-top: 1px solid #ddd;
  padding: 20px 0;
  margin-top: 20px;
}

.bebit-card {
  color: #000;
  background: #fff;
  padding: 5px;
}

.bebit-card a {
  display: block;
}

.bebit-card span {
  float: left;
  margin-top: 13px;
  font-weight: 600;
  font-size: 22px;
}

.bebit-card img {
  float: right;
  width: 130px;
}

.bebit-card:hover {
  background: #00a9cf;
  color: #fff;
}

.bebit-card:hover span {
  color: #fff;
}

.review-total table > tbody > tr > td {
  border: none;
  font-weight: 500;
  font-size: 18px;
  color: #828282;
}

.warning-contents {
  background: #ffe2a3;
  text-align: center;
  padding: 15px;
  margin: 5px 0;
}

.warning-contents i.fa {
  color: #ffae00;
}

.brands-content-wraper {
  box-shadow: 0px 0px 16px #cccccc;
  margin-bottom: 20px;
}

.brands-content-wraper img {
  width: 100%;
  display: block;
  margin: 0px auto;
  height: 200px;
}

.brands-content-wraper strong {
  font-size: 25px;
  color: #000;
  padding: 15px;
  text-transform: uppercase;
  float: left;
}

.brands-content-wraper .view-detail {
  padding: 5px 25px;
  font-size: 16px;
  border-radius: 20px;
  border: 1px solid #b5b5b5;
  color: #b5b5b5;
  background: #fff;
  float: right;
  margin: 15px;
}

.brands-content-wraper:hover .view-detail {
  background: #00a9cf;
  color: #fff;
}

.brands-content-wraper:hover {
  box-shadow: 0 0 12px #4c4c4c;
}

.player-description {
  background: #efeff0;
}

.contact-info {
  background: #f1f1f1;
  color: #5e6467;
  padding: 15px;
}

.contact-info p {
  font-size: 17px;
}

.contact-info h6 {
  font-size: 25px;
}

.contact-info h6 span {
  border-bottom: 1px solid #00a9cf;
}

.contact-info address span {
  display: inline-block;
  margin-right: 10px;
}

.contact-details {
  background: #f1f1f1;
  color: #5e6467;
  padding: 15px;
}

.contact-details h6 {
  font-size: 25px;
  color: #4d4d4d;
  border-bottom: 1px solid #4d4d4d;
  margin-bottom: 15px;
}

.contact-details p {
  font-size: 17px;
}

.pic-gallery-banner {
  margin: 25px 0;
}

.pic-gallery-banner ~ h4 {
  text-align: center;
  color: #0d1117;
  font-size: 50px;
  text-transform: uppercase;
  font-weight: 600;
}

.pic-gallery-banner ~ h6 {
  text-align: center;
  font-size: 18px;
}

.pic-list li {
  width: 263px;
  float: left;
  margin: 10px 5px;
}

.pic-list li img {
  max-width: 100%;
}

.video-list li {
  float: left;
  width: 32.4%;
  margin: 5px 5px;
}

.video-list li img {
  width: 100%;
}

.qtynumber {
  font-size: 16px;
  font-weight: bold;
}

.btn-plus {
  background: #000;
  color: #fff;
}



.footer-links {
	// padding-left:10px;
	height: 240px;
	// box-shadow:5px 3px 8px 2px #070707;
}
.footer-top .col-md-2, .footer-top .col-md-4 {
	box-shadow:5px 3px 8px 2px #070707;
}

.carousel-control img {
  display: none;
}
.whole-sale-img img {
  width: 100%;
}



.check-img img {
  max-width: 100%;
}

.pro-list li .inside-carousel {
  position: relative;
}

.pro-list li:hover .ribbon img {
  display: block;
}

.ribbon img {
  position: absolute;
  width: 124px !important;
  top:10px;
  left: 10px;
  display: none;
}