/* BASE - Base styles*/
/*Font colors*/
/*Background colors*/
/*Font Awesome*/
/* Responsive */
/*Mixins*/
/* NORMALIZE STYLES */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
}

p {
  margin-top: 0;
  margin-bottom: 15px;
}

/* SECTION STYLES */
section {
  margin: 40px 0 0;
}

/* SECTION HEADER STYLES */
.section-header {
  margin-bottom: 20px;
}
.section-header span {
  font-size: 14px;
  color: #e1688b;
  text-transform: uppercase;
  font-weight: 400;
  display: block;
}
.section-header h2 {
  color: #6a6a6a;
  text-transform: uppercase;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 0;
}

/* CTA TEXTHOLDER STYLES */
.sv-cta .sv-cta-text span {
  font-size: 28px;
  color: #e1688b;
  margin-bottom: 0;
  display: block;
  text-transform: uppercase;
}
.sv-cta .sv-cta-text h2 {
  color: white;
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  /* line 38, ../scss/base/_normalize.scss */
  .sv-cta .sv-cta-text h2{
    font-size: 22px;
  }
  .sv-cta .sv-cta-text span {
    font-size: 20px;
  }
}

/* FOOTER HEADER STYLES */
h3.sv-footer-header {
  font-size: 18px;
  color: white;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 25px;
}

/* PRODUCT CATEGORY STYLES */
.sv-product-wrapper .sv-item-img {
  position: relative;
  border: 1px solid #f1f1f1;
  margin-bottom: 15px;
}
.sv-product-wrapper .sv-item-img .sv-img-holder {
  overflow: hidden;
}
.sv-product-wrapper .sv-item-img .sv-tag,
.sv-product-wrapper .sv-item-img .sv-box-hover {
  position: absolute;
}
.sv-product-wrapper .sv-item-img .sv-tag {
  right: 0;
  background: #c0d153;
  padding: 9px 13px;
  top: 2px;
  text-transform: uppercase;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  color: white;
}
.sv-product-wrapper .sv-item-img .sv-tag.sv-tag-color {
  background: #f00;
}
.sv-product-wrapper .sv-item-img .sv-tag:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 0 10px;
  border-color: transparent transparent transparent #859230;
  bottom: -9px;
  right: 0;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
}
.sv-product-wrapper .sv-item-img .sv-tag.sv-tag-color:before {
  border-color: transparent transparent transparent #6f1717;
}
.sv-product-wrapper .sv-item-img .sv-box-hover {
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  background: #e1688b;
  color: white;
  width: 40px;
  height: 40px;
  padding: 9px;
  cursor: pointer;
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  opacity: 0;
  visibility: hidden;
  text-align: center;
}
.sv-product-wrapper .sv-item-img .sv-box-hover a {
  color: #fff;
}
.sv-product-wrapper .sv-item-img .sv-box-hover:hover {
  background: rgba(192, 209, 83, 0.8);
}
.sv-product-wrapper .sv-item-img img {
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  transform: scale(1);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
}
.sv-product-wrapper .sv-item-img:hover .sv-box-hover {
  opacity: 1;
  visibility: visible;
}
.sv-product-wrapper .sv-item-img:hover img {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
}
.sv-product-wrapper .sv-block-item-title {
  line-height: 1.5;
  margin-bottom: 15px;
}
.sv-product-wrapper .sv-block-item-title span {
  text-transform: uppercase;
  color: #9e9e9e;
  font-size: 10px;
  display: block;
  margin-bottom: 5px;
  display: block;
}
.sv-product-wrapper .sv-block-item-title h3 a {
  font-weight: 500;
  text-transform: capitalize;
  color: #000;
  font-size: 18px;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.sv-product-wrapper .sv-block-item-title h3 a:hover {
  color: #e1688b;
}
.sv-product-wrapper .sv-product-price {
  margin-bottom: 13px;
  border: 1px solid #eeeeee;
  border-left: none;
  border-right: none;
  display: block;
  padding: 5px 0;
}
.sv-product-wrapper .sv-product-price span.price {
  font-weight: 600;
}
.sv-product-wrapper .sv-add-to-list ul li {
  display: inline-block;
  font-size: 10px;
  text-transform: uppercase;
  margin: 0 10px;
  padding-left: 15px;
  position: relative;
}
.sv-product-wrapper .sv-add-to-list ul li a:before {
  content: '';
  position: absolute;
  font-size: 10px;
  line-height: 1.5;
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
}
.sv-product-wrapper .sv-add-to-list ul li a.sv-quick-view:before {
  content: '\f002';
  left: 0;
}
.sv-product-wrapper .sv-add-to-list ul li a.sv-add-to:before {
  content: '\f08a';
  left: 0;
}
.sv-product-wrapper .sv-add-to-list ul li a:hover,
.sv-product-wrapper .sv-add-to-list ul li a:hover:before {
  color: #e1688b;
}

/* WIDGET HEADER STYLES */
h4.widget-title {
  border-bottom: 1px solid #eaeaea;
  padding: 14px 15px;
  text-transform: uppercase;
  margin: 0 -20px 20px;
  font-size: 20px;
  text-transform: uppercase;
  color: #e1688b;
}

/* INPUT STYLES */
input,
textarea {
  border: 1px solid #eaeaea;
  padding: 5px 10px;
  height: 40px;
  width: 100%;
}

/* BASE STYLES */
* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
}

body {
  font-family: Open Sans;
  font-size: 14px;
  line-height: 1.5;
  color: #333333;
}

a {
  color: #333333;
  text-decoration: none;
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  cursor: pointer;
  display: block;
}

a:hover {
  text-decoration: none;
  color: #e1688b;
}

a:hover,
a:focus,
a.active,
input,
textarea {
  outline: 0;
  text-decoration: none;
  color: inherit;
}

ul {
  margin: 0;
  padding: 0;
}

ul, li {
  list-style: none;
}

input, textarea, button {
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

/*Before & After*/
:before,
:after {
  font-family: FontAwesome;
  line-height: 1.2;
}

/*CUSTOM CSS*/
.vcenter {
  float: none;
  vertical-align: middle;
  display: inline-block;
  margin: 0 -2px;
}

.sv-nopadding {
  padding: 0 !important;
  margin: 0 !important;
}

/* LAYOUT - Layout styles*/
/* HEADER STYLES*/
#header {
  font-size: 12px;
  padding: 10px 0 0;
}
/* line 9, ../scss/layouts/_header.scss */
#header ul li {
  display: inline-block;
  margin-right: 15px;
}
/* line 13, ../scss/layouts/_header.scss */
#header ul li a {
  position: relative;
  display: inline-block;
  padding-left: 19px;
}
/* line 18, ../scss/layouts/_header.scss */
#header ul li a:before {
  content: '';
  position: absolute;
  left: 0;
  font-size: 13px;
  transition: all ease 0.5s;
  -webkit-transition: all ease 0.5s;
  -ms-transition: all ease 0.5s;
}
/* line 27, ../scss/layouts/_header.scss */
#header ul li.email a:before {
  content: '\f0e0';
}
/* line 30, ../scss/layouts/_header.scss */
#header ul li.tel a {
  padding-left: 15px;
}
/* line 33, ../scss/layouts/_header.scss */
#header ul li.tel a:before {
  content: '\f095';
}
/* line 36, ../scss/layouts/_header.scss */
#header ul li.address:before {
  content: '\f041';
  padding-right: 8px;
}
@media screen and (max-width: 990px) {
  /* line 41, ../scss/layouts/_header.scss */
  #header .sv-top-left {
    text-align: left;
  }
}
@media screen and (max-width: 768px) {
  /* line 41, ../scss/layouts/_header.scss */
  #header .sv-top-left {
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  /* line 41, ../scss/layouts/_header.scss */
  #header .sv-top-left {
    text-align: center;
  }
}
/* line 53, ../scss/layouts/_header.scss */
#header .sv-top-right {
  text-align: right;
  font-size: 11px;
}
@media screen and (max-width: 768px) {
  /* line 53, ../scss/layouts/_header.scss */
  #header .sv-top-right {
    text-align: center;
    margin-top: 20px;
  }
}
/* line 62, ../scss/layouts/_header.scss */
#header .sv-top-right li {
  padding-left: 15px;
  margin-right: 0;
}
/* line 66, ../scss/layouts/_header.scss */
#header .sv-top-right li a {
  padding-left: 5px;
}
/* line 70, ../scss/layouts/_header.scss */
#header .sv-top-right li.sv-login:before {
  content: '\f007';
  line-height: 1;
}
/* line 74, ../scss/layouts/_header.scss */
#header .sv-top-right li.sv-wishlist {
  padding-left: 20px;
}
/* line 77, ../scss/layouts/_header.scss */
#header .sv-top-right li.sv-wishlist:before {
  content: '\f08a';
}
/* line 80, ../scss/layouts/_header.scss */
#header .sv-top-right a {
  text-transform: uppercase;
}
/* line 84, ../scss/layouts/_header.scss */
#header .sv-top-right li:hover a,
#header .sv-top-right li:hover:before {
  color: #c0d153;
}
/* line 89, ../scss/layouts/_header.scss */
#header .sv-bottom-header {
  padding: 40px 0;
}
@media screen and (max-width: 990px) {
  /* line 89, ../scss/layouts/_header.scss */
  #header .sv-bottom-header {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  /* line 95, ../scss/layouts/_header.scss */
  #header .sv-bottom-header .row {
    margin: 0;
  }
}
#header .sv-bottom-header .shopping-cart {
  padding-top: 1px;
  text-align: right;
}
@media screen and (max-width: 990px) {
  #header .sv-bottom-header .shopping-cart {
    margin-top: 20px;
    text-align: center;
  }
}
#header .sv-bottom-header .shopping-cart .header-icon,
#header .sv-bottom-header .shopping-cart .text-holder {
  display: inline-block;
  vertical-align: top;
}
#header .sv-bottom-header .shopping-cart .text-holder {
  width: 110px;
  min-height: 47px;
}
#header .sv-bottom-header .shopping-cart .text-holder span.name-text {
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  color: #000;
  display: block;
  margin-bottom: 5px;
}
#header .sv-bottom-header .shopping-cart .header-icon {
  background: #e1688b;
  color: white;
  width: 45px;
  height: 45px;
  text-align: center;
  font-size: 24px !important;
  padding: 1px 0;
  margin-right: 6px;
  transition: all ease 0.5s;
  -webkit-transition: all ease 0.5s;
  border: 1px solid #e1688b;
}
#header .sv-bottom-header .shopping-cart .header-icon:hover {
  background: transparent;
  color: #e1688b;
}
#header .sv-bottom-header .search {
  border: 1px solid #cbcbcb;
  padding: 0 2px;
}
@media screen and (max-width: 990px) {
  #header .sv-bottom-header .search {
    margin-top: 20px;
  }
}
#header .sv-bottom-header .search .sv-search-wrap,
#header .sv-bottom-header .search .sv-search-form {
  display: inline-block;
  vertical-align: middle;
  margin: 0 -2px;
}
#header .sv-bottom-header .search .sv-search-wrap {
  width: 30%;
  background: #eeeeee;
  position: relative;
  border-right: 1px solid #cbcbcb;
}
#header .sv-bottom-header .search .sv-search-wrap select {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  height: 45px;
  font-size: 13px;
  font-family: Open Sans;
  padding: 0 2px 0 15px;
  color: #8e8e8e;
  margin-right: 3px;
  cursor: pointer;
  outline: none;
  box-shadow: none;
  background: none;
}
#header .sv-bottom-header .search .sv-search-wrap:before {
  content: '';
  position: absolute;
  background: url(../images/arrow.png) no-repeat;
  z-index: 999;
  top: 50%;
  right: 10px;
  height: 10px;
  width: 10px;
  background-size: 10px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
#header .sv-bottom-header .search .sv-search-form {
  width: 70%;
}
#header .sv-bottom-header .search .sv-search-form input[type="text"] {
  width: 100%;
  height: 45px;
  padding: 0 10px;
  border-radius: 0;
  border: none;
  color: #8e8e8e;
  font-style: normal;
  font-size: 13px;
  text-transform: capitalize;
}
#header .sv-bottom-header .search .sv-search-form button[type="submit"] {
  background: #e1688b;
  border: medium none;
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  height: 45px;
  position: absolute;
  right: 0;
  text-shadow: none;
  top: 0;
  width: 46px;
  transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  padding: 10px;
  color: white;
}
#header .sv-bottom-header .search .sv-search-form button[type="submit"]:hover {
  background: rgba(0, 0, 0, 0.3);
}

/* NAV STYLES */
.navbar {
  background: #e1688b;
  border: none;
  margin-bottom: 0;
  border-radius: 0;
}
@media screen and (max-width: 990px) {
  /* line 3, ../scss/layouts/_nav.scss */
  .navbar {
    min-height: auto;
  }
}
/* line 13, ../scss/layouts/_nav.scss */
.navbar ul.nav li {
  text-transform: capitalize;
  position: relative;
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
}
@media screen and (max-width: 990px) {
  /* line 13, ../scss/layouts/_nav.scss */
  .navbar ul.nav li {
    width: 100%;
  }
}
/* line 24, ../scss/layouts/_nav.scss */
.navbar ul.nav li a {
  color: white;
  display: block;
  padding: 20px 25px;
}
@media screen and (max-width: 990px) {
  /* line 24, ../scss/layouts/_nav.scss */
  .navbar ul.nav li a {
    padding: 15px 20px;
  }
}
/* line 35, ../scss/layouts/_nav.scss */
.navbar ul.nav li a:hover,
.navbar ul.nav li a:focus {
  background: transparent;
}
/* line 38, ../scss/layouts/_nav.scss */
.navbar ul.nav li ul.sub-menu {
  background: #e1688b;
  width: 200px;
  position: absolute;
  z-index: 999999;
}
@media screen and (max-width: 990px) {
  /* line 38, ../scss/layouts/_nav.scss */
  .navbar ul.nav li ul.sub-menu {
    width: 100%;
    position: relative;
  }
}
/* line 49, ../scss/layouts/_nav.scss */
.navbar ul.nav li ul.sub-menu a {
  padding: 10px 15px;
}
@media screen and (max-width: 990px) {
  /* line 49, ../scss/layouts/_nav.scss */
  .navbar ul.nav li ul.sub-menu a {
    padding-left: 45px;
  }
}
/* line 56, ../scss/layouts/_nav.scss */
.navbar ul.nav li ul.sub-menu ul {
  top: 0;
  left: 120%;
  position: absolute;
  background: #e1688b;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  width: 200px;
}
@media screen and (max-width: 990px) {
  /* line 56, ../scss/layouts/_nav.scss */
  .navbar ul.nav li ul.sub-menu ul {
    position: static;
    opacity: 1;
    visibility: visible;
    width: 100%;
  }
}
/* line 79, ../scss/layouts/_nav.scss */
.navbar li.active,
.navbar li:hover {
  background: rgba(0, 0, 0, 0.3);
}
/* line 82, ../scss/layouts/_nav.scss */
.navbar ul.nav li:hover ul {
  opacity: 1;
  visibility: visible;
  left: 0;
}
/* line 87, ../scss/layouts/_nav.scss */
.navbar ul.nav li ul li:hover > ul {
  opacity: 1;
  visibility: visible;
  left: 100%;
  width: 100%;
}
@media screen and (max-width: 990px) {
  /* line 94, ../scss/layouts/_nav.scss */
  .navbar ul.nav li ul li > ul {
    position: static;
    opacity: 1;
    visibility: visible;
    width: 100%;
  }
}
@media screen and (max-width: 990px) {
  /* line 103, ../scss/layouts/_nav.scss */
  .navbar ul ul ul li a {
    padding-left: 65px !important;
    width: 100%;
  }
}
@media screen and (max-width: 990px) {
  /* line 111, ../scss/layouts/_nav.scss */
  .navbar .navbar-nav {
    margin-top: 0;
    margin-bottom: 0;
  }
  /* line 115, ../scss/layouts/_nav.scss */
  .navbar .toggle {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  /* line 121, ../scss/layouts/_nav.scss */
  .navbar .toggle .navbar-toggle {
    float: left;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    display: block;
  }
  /* line 128, ../scss/layouts/_nav.scss */
  .navbar .toggle .navbar-toggle span {
    background: #fff;
    width: 30px;
    display: block;
    height: 5px;
    border-radius: 5px;
    margin-bottom: 3px;
  }
  /* line 138, ../scss/layouts/_nav.scss */
  .navbar .navbar-collapse {
    padding: 0 10px;
  }
  /* line 141, ../scss/layouts/_nav.scss */
  .navbar .navbar-collapse.collapse {
    display: none !important;
    width: 100%;
  }
  /* line 145, ../scss/layouts/_nav.scss */
  .navbar .navbar-collapse.collapse.in {
    display: block !important;
    width: 100%;
  }
}
/* line 151, ../scss/layouts/_nav.scss */
.navbar .mCSB_inside > .mCSB_container {
  margin-right: 0;
}

/* CONTENT STYLES */
#content {
  margin-top: 40px;
}
#content .main-content .blog-article {
  margin-bottom: 60px;
  cursor: pointer;
}
#content .main-content .blog-article .sv-img-holder {
  border: 1px solid #f1f1f1;
  overflow: hidden;
}
#content .main-content .blog-article .sv-img-holder img {
  transition: all ease 0.5s;
  -webkit-transition: all ease 0.5s;
  -ms-transition: all ease 0.5s;
}
#content .main-content .blog-article .sv-img-holder img:hover {
  transform: scale(1.3);
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
}
#content .main-content .blog-article .sv-blog-text {
  width: 90%;
  padding: 30px;
  background: white;
  margin: -100px auto 0;
  z-index: 999;
  position: relative;
  box-shadow: 0px 6px 7px #ccc;
}
#content .main-content .blog-article .sv-blog-text a.sv-readmore {
  background: #e1688b;
  color: white;
  border: 1px solid #e1688b;
  font-size: 15px;
  text-transform: uppercase;
  padding: 7px 15px;
}
#content .main-content .blog-article .sv-blog-text a.sv-readmore:hover {
  background: transparent;
  color: #e1688b;
}
#content .sidebar .widget {
  padding: 0 20px 20px;
  border: 1px solid #eaeaea;
  margin-bottom: 30px;
}
#content .sidebar .widget ul li {
  margin-bottom: 8px;
  line-height: 1.7;
  font-size: 13px;
  text-transform: capitalize;
}
#content .sidebar .widget ul li a {
  position: relative;
  display: block;
  padding-left: 12px;
}
#content .sidebar .widget ul li a:hover,
#content .sidebar .widget ul li a:hover:before {
  color: #e1688b;
}
#content .sidebar .widget ul li a:before {
  content: '\f105';
  position: absolute;
  font-size: 13px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
}
#content .sidebar .widget ul li a:hover:before {
  left: 3px;
}
#content .sidebar .widget ul li ul {
  padding-left: 10px;
  margin-top: 5px;
}
#content .sidebar .widget ul li ul li a:before {
  content: '\f0da';
  position: absolute;
}
#content .sidebar .widget .form-wrap {
  position: relative;
}
#content .sidebar .widget .form-wrap button.sv-button {
  position: absolute;
  right: 0;
  top: 0;
}
#content .sidebar .widget .sv-product {
  margin-bottom: 15px;
}
#content .sidebar .widget .sv-product .sv-img-holder,
#content .sidebar .widget .sv-product .sv-price-holder {
  float: left;
}
#content .sidebar .widget .sv-product .sv-img-holder {
  width: 25%;
  border: 1px solid #eaeaea;
}
#content .sidebar .widget .sv-product .sv-price-holder {
  width: 65%;
  padding-left: 15px;
  padding-top: 10px;
}
#content .sidebar .widget .sv-product .sv-price-holder h6 a {
  font-size: 16px;
  text-transform: capitalize;
}
#content .sidebar .widget .sv-product .sv-price-holder h6 a:hover {
  color: #e1688b;
}
#content .sidebar .widget .sv-product .sv-price-holder span.sv-product-price {
  font-weight: 600;
}
#content .sidebar .widget .sv-product:last-child {
  margin-bottom: 0;
}
#content .sidebar .widget.sv-addvertisement-image div {
  margin-bottom: 15px;
}
#content .sidebar .widget.sv-addvertisement-image div:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 990px) {
  #content .sv-product-page {
    margin-bottom: 50px;
    border-bottom: 1px dotted #e1688b;
  }
}
#content .sv-product-page .sv-product-top {
  margin-bottom: 80px;
}
@media screen and (max-width: 990px) {
  #content .sv-product-page .sv-product-top .sv-product-image-holder {
    margin-bottom: 30px;
  }
}
#content .sv-product-page .sv-product-top h1 {
  text-transform: uppercase;
  font-size: 26px;
}
#content .sv-product-page .sv-product-top .sv-customer-review {
  width: 90px;
  margin-bottom: 15px;
}
#content .sv-product-page .sv-product-top .sv-product-category {
  padding: 10px 0;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 20px;
}
#content .sv-product-page .sv-product-top ul.sv-social-icon li {
  display: inline-block;
  width: 35px;
  margin-right: 5px;
}
#content .sv-product-page .sv-product-top .sv-product-img .sv-img-holder {
  margin-bottom: 10px;
  overflow: hidden;
}
#content .sv-product-page .sv-product-top .sv-product-img ul.sv-image-list li {
  float: left;
  width: 33.33%;
  padding: 5px;
}
#content .sv-product-page .sv-product-bottom {
  text-align: center;
}
#content .sv-product-page .sv-product-bottom h2 {
  text-align: left;
  text-transform: uppercase;
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 10px;
  margin-bottom: 40px;
}
#content .sv-product-page .sv-product-bottom .col-product {
  margin-bottom: 45px;
}
#content .sv-product-page .sv-product-bottom .sv-button-holder a {
  float: none;
  margin: 0 auto 5px;
}
#content .sv-contact-page .sv-contact-form,
#content .sv-contact-page .sv-address {
  padding: 20px;
  background: #f1f1f1;
  margin-bottom: 50px;
}
#content .sv-contact-page .sv-contact-form div,
#content .sv-contact-page .sv-address div {
  margin-bottom: 20px;
}
#content .sv-contact-page .sv-contact-form div textarea,
#content .sv-contact-page .sv-address div textarea {
  min-height: 200px;
}
#content .sv-contact-page .sv-contact-form div button.sv-button,
#content .sv-contact-page .sv-address div button.sv-button {
  width: 100%;
  text-transform: uppercase;
}
#content .sv-contact-page .sv-contact-form div:last-child,
#content .sv-contact-page .sv-address div:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 990px) {
  #content .sv-contact-page .sv-single-col {
    text-align: center;
  }
}
#content .sv-contact-page .sv-address {
  border-top: 5px solid #e1688b;
}
#content .sv-contact-page .sv-address .sv-add-icon {
  display: inline-block;
  vertical-align: middle;
}
#content .sv-contact-page .sv-address .sv-add-icon i {
  border: 1px solid #666;
  border-radius: 50%;
  color: #666;
  font-size: 30px;
  height: 74px;
  line-height: 70px;
  text-align: center;
  width: 74px;
}
#content .sv-contact-page .sv-address .sv-add-text {
  display: inline-block;
  vertical-align: middle;
  margin-left: 30px;
  text-transform: capitalize;
}
@media screen and (max-width: 990px) {
  #content .sv-contact-page .sv-address .sv-add-text {
    text-align: center;
    margin-left: 0;
    width: 100%;
  }
}
#content .sv-contact-page .sv-address .sv-add-text h3 {
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}
#content .sv-login-page label {
  font-weight: 400;
  vertical-align: middle;
}
#content .sv-login-page label sup {
  color: #f00;
  padding-left: 3px;
}
#content .sv-login-page .sv-checkbox input[type="checkbox"] {
  width: auto;
  display: inline-block;
  vertical-align: baseline;
  height: auto;
}
#content .sv-login-page button.sv-button {
  width: auto !important;
}
#content .sv-login-page a.sv-lost-password {
  text-decoration: underline;
  text-transform: capitalize;
}
#content .sv-login-page a.sv-lost-password:hover {
  color: #f00;
}
#content .sv-blog-single-page .sv-blog-text {
  text-align: left;
  margin: 0 !important;
  width: 100% !important;
}
#content .sv-blog-single-page .sv-blog-text h4 a {
  font-weight: 600;
  font-size: 23px;
  margin-bottom: 8px;
}
#content .sv-pagination ul {
  text-align: center;
}
#content .sv-pagination ul li {
  display: inline-block;
}
#content .sv-pagination ul li a {
  width: 40px;
  height: 40px;
  border: 1px solid #e1688b;
  text-align: center;
  padding: 8px;
  text-transform: capitalize;
  color: #e1688b;
}
#content .sv-pagination ul li a:hover {
  background: #e1688b;
  color: white;
}
#content .sv-pagination ul li a.sv-page-prev,
#content .sv-pagination ul li a.sv-page-next {
  width: auto;
  background: #e1688b;
  color: white;
}
#content .sv-pagination ul li a.sv-page-prev:hover,
#content .sv-pagination ul li a.sv-page-next:hover {
  background: white;
  color: #e1688b;
}
#content .sv-right-align {
  float: right;
}
#content .sv-left-align {
  float: left;
}

/* FOOTER STYLES */
#footer {
  margin-top: 60px;
}
#footer .footer-top {
  background: #333333;
  padding: 40px 0 10px;
}
#footer .footer-top .row div {
  margin-bottom: 20px;
}
#footer .footer-top ul li {
  margin-bottom: 8px;
  line-height: 1.7;
  font-size: 13px;
  text-transform: capitalize;
}
#footer .footer-top ul li a {
  color: #b9b9b9;
  position: relative;
  display: block;
  padding-left: 12px;
}
#footer .footer-top ul li a:hover,
#footer .footer-top ul li a:hover:before {
  color: #e1688b;
}
#footer .footer-top ul li a:before {
  content: '\f105';
  position: absolute;
  font-size: 13px;
  color: #b9b9b9;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
}
#footer .footer-top ul li a:hover:before {
  left: 3px;
}
#footer .footer-top ul li ul {
  padding-left: 10px;
  margin-top: 5px;
}
#footer .footer-top ul li ul li a:before {
  content: '\f0da';
  position: absolute;
}
#footer .footer-bottom {
  background: #2f2f2f;
  padding: 15px 0;
}
#footer .footer-bottom .sv-copyright {
  color: #b9b9b9;
}
@media screen and (max-width: 768px) {
  #footer .footer-bottom .sv-copyright {
    text-align: center;
    margin-bottom: 20px;
  }
}
#footer .footer-bottom .sv-copyright a {
  display: inline-block;
  padding-left: 5px;
  color: white;
  text-transform: capitalize;
}
#footer .footer-bottom .sv-copyright a:hover {
  color: #e1688b;
}
#footer .footer-bottom .sv-copyright p {
  margin-bottom: 0;
}
#footer .footer-bottom .sv-payment-accept {
  text-align: right;
}
@media screen and (max-width: 768px) {
  #footer .footer-bottom .sv-payment-accept {
    text-align: center;
  }
}
#footer .footer-bottom .sv-payment-accept ul li {
  display: inline-block;
  margin-left: 5px;
}
#footer .footer-bottom .sv-payment-accept ul li img {
  width: 52px;
  height: 30px;
}

/* Modules - Modules styles*/
/* SECTION STYLES */
.sv-banner .sv-add-section .sv-img-holder.top {
  margin-bottom: 40px !important;
}
@media screen and (max-width: 990px) {
  .sv-banner .sv-add-section .sv-img-holder.top {
    padding-right: 10px !important;
    padding-left: 0 !important;
    margin-bottom: 0 !important;
  }
}
.sv-banner .sv-add-section .sv-img-holder {
  overflow: hidden;
}
.sv-banner .sv-add-section .sv-img-holder a {
  overflow: hidden;
}
.sv-banner .sv-add-section .sv-img-holder a img {
  transform: scale(1);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
}
.sv-banner .sv-add-section .sv-img-holder a:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
}
@media screen and (max-width: 990px) {
  .sv-banner .sv-banner-layout-1 .sv-slider-wrapper,
  .sv-banner .sv-banner-layout-2 .sv-slider-wrapper,
  .sv-banner .sv-banner-layout-3 .sv-slider-wrapper {
    margin-bottom: 30px;
  }
}
.sv-banner .sv-banner-layout-1 .sv-slider-wrapper .sv-slider .lslide,
.sv-banner .sv-banner-layout-2 .sv-slider-wrapper .sv-slider .lslide,
.sv-banner .sv-banner-layout-3 .sv-slider-wrapper .sv-slider .lslide {
  position: relative;
}
.sv-banner .sv-banner-layout-1 .sv-slider-wrapper .sv-slider .lslide .sv-banner-slider-info,
.sv-banner .sv-banner-layout-2 .sv-slider-wrapper .sv-slider .lslide .sv-banner-slider-info,
.sv-banner .sv-banner-layout-3 .sv-slider-wrapper .sv-slider .lslide .sv-banner-slider-info {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  color: #fff;
  right: 50px;
  font-size: 18px;
  font-family: Open Sans;
  text-transform: uppercase;
  font-weight: 400;
  max-width: 400px;
}
@media screen and (max-width: 480px) {
  .sv-banner .sv-banner-layout-1 .sv-slider-wrapper .sv-slider .lslide .sv-banner-slider-info,
  .sv-banner .sv-banner-layout-2 .sv-slider-wrapper .sv-slider .lslide .sv-banner-slider-info,
  .sv-banner .sv-banner-layout-3 .sv-slider-wrapper .sv-slider .lslide .sv-banner-slider-info {
    font-size: 14px;
    right: 0;
  }
}
.sv-banner .sv-banner-layout-1 .sv-slider-wrapper .sv-slider .lslide .sv-banner-slider-info h2.caption-title,
.sv-banner .sv-banner-layout-2 .sv-slider-wrapper .sv-slider .lslide .sv-banner-slider-info h2.caption-title,
.sv-banner .sv-banner-layout-3 .sv-slider-wrapper .sv-slider .lslide .sv-banner-slider-info h2.caption-title {
  font-family: Open Sans;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  font-size: 36px;
}
@media screen and (max-width: 480px) {
  .sv-banner .sv-banner-layout-1 .sv-slider-wrapper .sv-slider .lslide .sv-banner-slider-info h2.caption-title,
  .sv-banner .sv-banner-layout-2 .sv-slider-wrapper .sv-slider .lslide .sv-banner-slider-info h2.caption-title,
  .sv-banner .sv-banner-layout-3 .sv-slider-wrapper .sv-slider .lslide .sv-banner-slider-info h2.caption-title {
    font-size: 16px;
  }
}
.sv-banner .sv-banner-layout-1 .sv-slider-wrapper .sv-slider .lslide .sv-banner-slider-info h2.caption-title span,
.sv-banner .sv-banner-layout-2 .sv-slider-wrapper .sv-slider .lslide .sv-banner-slider-info h2.caption-title span,
.sv-banner .sv-banner-layout-3 .sv-slider-wrapper .sv-slider .lslide .sv-banner-slider-info h2.caption-title span {
  color: #f85570;
}
.sv-banner .sv-banner-layout-1 .sv-slider-wrapper .sv-slider .lslide:before,
.sv-banner .sv-banner-layout-2 .sv-slider-wrapper .sv-slider .lslide:before,
.sv-banner .sv-banner-layout-3 .sv-slider-wrapper .sv-slider .lslide:before {
  position: absolute;
  content: '';
  background: rgba(0, 0, 0, 0.4);
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}
.sv-banner .sv-banner-layout-1 .sv-slider-wrapper .lSPager.lSpg,
.sv-banner .sv-banner-layout-2 .sv-slider-wrapper .lSPager.lSpg,
.sv-banner .sv-banner-layout-3 .sv-slider-wrapper .lSPager.lSpg {
  margin: 0;
  padding: 0;
  text-align: center;
  position: absolute;
  width: 97%;
  bottom: 10px;
}
.sv-banner .sv-banner-layout-1 .sv-slider-wrapper .lSPager.lSpg a,
.sv-banner .sv-banner-layout-2 .sv-slider-wrapper .lSPager.lSpg a,
.sv-banner .sv-banner-layout-3 .sv-slider-wrapper .lSPager.lSpg a {
  background-color: white;
  height: 10px;
  width: 10px;
}
.sv-banner .sv-banner-layout-1 .sv-slider-wrapper .lSPager.lSpg li.active a,
.sv-banner .sv-banner-layout-1 .sv-slider-wrapper .lSPager.lSpg li:hover a,
.sv-banner .sv-banner-layout-2 .sv-slider-wrapper .lSPager.lSpg li.active a,
.sv-banner .sv-banner-layout-2 .sv-slider-wrapper .lSPager.lSpg li:hover a,
.sv-banner .sv-banner-layout-3 .sv-slider-wrapper .lSPager.lSpg li.active a,
.sv-banner .sv-banner-layout-3 .sv-slider-wrapper .lSPager.lSpg li:hover a {
  background-color: #e1688b;
}
.sv-banner .sv-banner-layout-2 .sv-img-holder {
  margin-top: 30px;
}
@media screen and (max-width: 990px) {
  .sv-banner .sv-banner-layout-2 .sv-img-holder {
    margin-top: 0;
  }
}
@media screen and (max-width: 480px) {
  .sv-banner .sv-banner-layout-2 .sv-img-holder {
    text-align: center;
    margin-bottom: 30px;
  }
  .sv-banner .sv-banner-layout-2 .sv-img-holder:last-child {
    margin-bottom: 0;
  }
}
.sv-banner .sv-banner-layout-3 .sv-banner-slider-info {
  right: 0 !important;
  left: 0;
  margin: 0 auto;
  text-align: center;
  max-width: 500px !important;
}

.sv-cta-wrapper .sv-cta {
  min-height: 350px;
  text-align: center;
  padding: 30px 0;
  position: relative;
}
.sv-cta-wrapper .sv-cta .sv-cta-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 9999;
}
.sv-cta-wrapper .sv-cta:before {
  position: absolute;
  content: '';
  background: rgba(0, 0, 0, 0.4);
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}
.sv-cta-wrapper .sv-cta.sv-cta-layout-1 {
  background: url(../images/cta-img-1.jpg) no-repeat;
  background-size: cover;
}
.sv-cta-wrapper .sv-cta.sv-cta-layout-2 {
  background: url(../images/cta-img-2.jpg) no-repeat;
  background-size: cover;
}

.sv-category-section {
  background: url(../images/category-bg.jpg) no-repeat;
  background-size: cover;
  padding: 40px 0;
}
.sv-category-section .section-header {
  position: relative;
}
.sv-category-section .section-header span,
.sv-category-section .section-header h2 {
  color: white;
}
.sv-category-section .sv-controls {
  position: absolute;
  right: 0;
  top: 17px;
}
.sv-category-section .sv-controls div {
  width: 30px;
  height: 30px;
  border: 1px solid white;
  display: inline-block;
  position: relative;
  cursor: pointer;
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
}
.sv-category-section .sv-controls div:hover {
  background: white;
}
.sv-category-section .sv-controls div:hover.sv-prev:before,
.sv-category-section .sv-controls div:hover.sv-next:before {
  color: #e1688b;
}
.sv-category-section .sv-controls div.sv-prev:before,
.sv-category-section .sv-controls div.sv-next:before {
  color: white;
  font-size: 21px;
  position: absolute;
}
.sv-category-section .sv-controls div.sv-prev:before {
  content: '\f104';
  left: 9px;
}
.sv-category-section .sv-controls div.sv-next:before {
  content: '\f105';
  left: 10px;
}
.sv-category-section .lSSlideWrapper {
  background: white;
}
.sv-category-section .lSSlideWrapper .sv-cat-slide {
  padding: 44px 24px;
  border-left: 1px solid #eeeeee;
}
.sv-category-section .sv-cat-caption {
  text-align: center;
  position: relative;
}
.sv-category-section .sv-cat-caption img {
  width: 100%;
}
.sv-category-section .sv-cat-caption .sv-text-holder {
  position: absolute;
  background: rgba(255, 255, 255, 0.7);
  padding: 20px;
  bottom: 30px;
  width: 100%;
  text-transform: capitalize;
}
.sv-category-section .sv-cat-caption .sv-text-holder h4 {
  font-weight: 400;
  font-size: 26px;
  color: #000;
  margin: 0 0 5px;
}
.sv-category-section .sv-cat-caption .sv-text-holder span {
  font-size: 12px;
}

.sv-product-section .sv-product-wrap {
  border: 1px solid #eeeeee;
  overflow: hidden;
}
.sv-product-section .sv-product-wrap .sv-product {
  border-right: 1px solid #eeeeee;
}
.sv-product-section .sv-product-wrap .sv-product {
  border-left: 1px solid #eeeeee;
  border-right: none;
}
.sv-product-section .sv-product-wrap .slide {
  text-align: center;
  padding: 20px;
  border-right: 1px solid #e4e2e2;
}
@media screen and (max-width: 560px) {
  .sv-product-section .sv-product-wrap .slide {
    border-right: none;
  }
}
.sv-product-section .sv-product-wrap .section-header {
  margin-bottom: 0;
  padding: 20px 26px;
}
@media screen and (max-width: 768px) {
  .sv-product-section .sv-product-wrap .sv-home-block-inner {
    border-top: 1px solid #eeeeee;
  }
}

.sv-blog .row {
  border: 1px solid #eeeeee;
}
.sv-blog .sv-blog-text {
  text-align: center;
  padding: 43px 30px;
}
@media screen and (max-width: 768px) {
  .sv-blog .sv-blog-text {
    display: table-cell;
  }
}
@media screen and (max-width: 480px) {
  .sv-blog .sv-blog-text {
    padding: 43px 10px;
  }
}
.sv-blog .sv-blog-text h4 a {
  font-size: 16px;
  margin-bottom: 15px;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sv-blog .sv-blog-text h4 a:hover {
  color: #e1688b;
}
.sv-blog .sv-blog-text .sv-post-meta {
  margin-bottom: 10px;
}
.sv-blog .sv-blog-text .sv-post-meta ul li {
  display: inline-block;
  position: relative;
  padding-left: 20px;
  margin: 0 8px;
}
.sv-blog .sv-blog-text .sv-post-meta ul li:before {
  position: absolute;
  content: '';
  left: 0;
  line-height: 1.5;
}
.sv-blog .sv-blog-text .sv-post-meta ul li.sv-comments:before {
  content: '\f0e5';
}
.sv-blog .sv-blog-text .sv-post-meta ul li.sv-date:before {
  content: '\f017';
}
.sv-blog .sv-blog-text a.sv-readmore {
  color: #e1688b;
  text-transform: uppercase;
  font-size: 16px;
  display: inline-block;
}
.sv-blog .sv-blog-text a.sv-readmore:hover {
  color: #cccccc;
}
.sv-blog .sv-blog-image {
  cursor: pointer;
  overflow: hidden;
}
.sv-blog .sv-blog-image img {
  transition: all ease 0.5s;
  -webkit-transition: all ease 0.5s;
  -ms-transition: all ease 0.5s;
  transform: scale(1);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
}
.sv-blog .sv-blog-image img:hover {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
}
@media screen and (max-width: 768px) {
  .sv-blog .sv-table-footer {
    display: table-footer-group;
  }
}

.sv-feature {
  background: #f1f1f1;
  padding: 30px 0;
}
.sv-feature .sv-feature-box {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sv-feature .sv-feature-box {
    margin-bottom: 25px;
  }
}
.sv-feature .sv-feature-box span {
  display: inline-block;
  height: 75px;
  width: 75px;
  border-radius: 100%;
  border: 1px solid #e1688b;
  color: #e1688b;
  text-align: center;
  font-size: 34px;
  line-height: 70px;
  vertical-align: middle;
  margin-bottom: 15px;
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  cursor: pointer;
}
.sv-feature .sv-feature-box span:hover {
  color: white;
  background: #e1688b;
}
.sv-feature .sv-feature-box .sv-feat-content {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
}
.sv-feature .sv-feature-box .sv-feat-content h3 {
  font-size: 16px;
  text-transform: uppercase;
  color: #333333;
  margin-bottom: 5px;
  font-weight: 600;
}
.sv-feature .sv-feature-box .sv-feat-content p {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .sv-feature .sv-feature-box:last-child {
    margin-bottom: 0;
  }
}

.sv-horizontal-tab .nav-tabs {
  margin-bottom: 15px;
  padding-bottom: 5px;
}
.sv-horizontal-tab .nav-tabs li,
.sv-horizontal-tab .nav-tabs li.active {
  margin-bottom: 0;
  margin-right: 15px;
  padding-right: 15px;
  position: relative;
}
.sv-horizontal-tab .nav-tabs li a,
.sv-horizontal-tab .nav-tabs li.active a {
  background: none;
  font-size: 20px;
  text-transform: uppercase;
  color: #666666;
  font-family: Open Sans;
  font-weight: 300;
  position: relative;
  padding: 0 0 9px;
  border: none;
  position: relative;
  border-radius: 0;
}
.sv-horizontal-tab .nav-tabs li a:before,
.sv-horizontal-tab .nav-tabs li.active a:before {
  content: '';
  background: #e1688b;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  transition: all ease 0.5s;
  -webkit-transition: all ease 0.5s;
  -ms-transition: all ease 0.5s;
}
.sv-horizontal-tab .nav-tabs li a:hover:before,
.sv-horizontal-tab .nav-tabs li.active a:hover:before {
  width: 100%;
}
.sv-horizontal-tab .nav-tabs li.active a:before {
  content: '';
  background: #e1688b;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  transition: all ease 0.5s;
  -webkit-transition: all ease 0.5s;
  -ms-transition: all ease 0.5s;
}
.sv-horizontal-tab .nav-tabs li:before {
  position: absolute;
  content: '';
  height: 15px;
  width: 1px;
  background: #dddddd;
  right: 0;
  top: 7px;
}
.sv-horizontal-tab .nav-tabs li:last-child:before {
  display: none;
}
.sv-horizontal-tab .tab-content.sv-product-section .sv-product-wrap {
  border: none;
}
.sv-horizontal-tab .tab-content.sv-product-section .sv-product-wrap .slide {
  border-right: none;
}
@media screen and (max-width: 1200px) {
  .sv-horizontal-tab .tab-content.sv-product-section .sv-product-wrap .slide .sv-button-holder a.product-button {
    float: none;
    display: block;
    margin: 0 auto 5px;
  }
}

.sv-vertical-tab .nav-tabs {
  border: 1px solid #ddd;
  border-right: none;
}
@media screen and (max-width: 990px) {
  .sv-vertical-tab .nav-tabs {
    border-right: 1px solid #ddd;
  }
}
.sv-vertical-tab .nav-tabs li,
.sv-vertical-tab .nav-tabs li.active {
  margin-bottom: 0;
  position: relative;
  width: 100%;
}
.sv-vertical-tab .nav-tabs li a,
.sv-vertical-tab .nav-tabs li.active a {
  background: none;
  font-size: 16px;
  text-transform: uppercase;
  color: #666666;
  font-family: Open Sans;
  font-weight: 400;
  position: relative;
  padding: 10px 18px;
  border: none;
  position: relative;
  border-bottom: 1px solid #ddd;
  width: 100%;
  cursor: pointer;
  border-radius: 0;
}
.sv-vertical-tab .nav-tabs li.active a,
.sv-vertical-tab .nav-tabs li:hover a {
  background: #e1688b;
  color: white;
}
.sv-vertical-tab .nav-tabs li:last-child a {
  border-bottom: none;
}
.sv-vertical-tab .tab-content .slide {
  border-bottom: 1px solid #e4e2e2;
}
@media screen and (max-width: 480px) {
  .sv-vertical-tab .tab-content .slide {
    width: 100%;
  }
}
@media screen and (max-width: 1200px) {
  .sv-vertical-tab .tab-content .slide .sv-button-holder a {
    float: none;
    display: block;
    margin: 0 auto 5px;
  }
}
@media screen and (max-width: 768px) {
  .sv-vertical-tab .tab-content .slide {
    border-right: none;
  }
}
.sv-vertical-tab .tab-content .slide:nth-child(3n) {
  border-right: 0;
}
@media screen and (max-width: 990px) {
  .sv-vertical-tab .tab-content .slide:nth-child(3n) {
    border-right: 1px solid #e4e2e2;
  }
}
@media screen and (max-width: 768px) {
  .sv-vertical-tab .tab-content .slide:nth-child(3n) {
    border-right: none;
  }
}
@media screen and (max-width: 990px) {
  .sv-vertical-tab .tab-content .slide:nth-child(2n) {
    border-right: none;
  }
}

.homepage-layout-1 .sv-cta.sv-cta-layout-1 {
  background: url(../images/cta.bg.jpg) no-repeat;
  background-size: cover;
}
.homepage-layout-1 .sv-cta.sv-cta-layout-2 {
  background: url(../images/cta.bg.jpg) no-repeat;
  background-size: cover;
}
.homepage-layout-1 .sv-category-section {
  background: url(../images/cta.bg.jpg) no-repeat;
  background-size: cover;
}

.homepage-layout-2 .sv-cta.sv-cta-layout-1 {
  background: url(../images/cta.bg.jpg) no-repeat;
  background-size: cover;
}
.homepage-layout-2 .sv-cta.sv-cta-layout-2 {
  background: url(../images/cta.bg.jpg) no-repeat;
  background-size: cover;
}
.homepage-layout-2 .sv-category-section {
  background: url(../images/cta.bg.jpg) no-repeat;
  background-size: cover;
}
.homepage-layout-2 #footer {
  margin-top: 0;
}

/* BUTTON STYLES */
/* Banner button */
.sv-banner-slider-info a.slider-button {
  border: 2px solid white;
  color: white;
  text-transform: uppercase;
  font-size: 14px;
  padding: 13px 31px;
  display: inline-block;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: ease-out;
}
@media screen and (max-width: 480px) {
  /* line 4, ../scss/modules/_button.scss */
  .sv-banner-slider-info a.slider-button {
    font-size: 10px;
    padding: 4px 13px;
  }
}
.sv-banner-slider-info a.slider-button:hover {
  background: white;
  color: #000;
  transform: translateY(-8px);
  -webkit-transform: translateY(-8px);
  -ms-transform: translateY(-8px);
}

/* CTA button */
.sv-cta a.sv-cta-shop {
  display: inline-block;
  color: white;
  padding: 9px 20px 10px;
  background: #e1688b;
  text-transform: uppercase;
  border: 2px solid #e1688b;
  font-size: 14px;
}

.sv-cta a.sv-cta-shop:hover {
  background: transparent;
  border-color: white;
}

/* PRODUCT BUTTON */
.sv-button-holder {
  margin-bottom: 20px;
}
.sv-button-holder a.product-button {
  font-size: 10px;
  font-weight: 600;
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  padding: 8px 10px;
  overflow: hidden;
  white-space: nowrap;
  color: white;
  background: #e1688b;
  border: 1px solid #e1688b;
  text-transform: uppercase;
  float: left;
  width: 117px;
  padding-left: 30px;
  position: relative;
}
@media screen and (max-width: 1200px) {
  /* line 52, ../scss/modules/_button.scss */
  .sv-button-holder a.product-button {
    float: none;
    display: block;
    margin: 0 auto 5px;
  }
}
@media screen and (max-width: 480px) {
  /* line 52, ../scss/modules/_button.scss */
  .sv-button-holder a.product-button {
    width: 110px;
  }
}
.sv-button-holder a.view-detail {
  float: right;
}
@media screen and (max-width: 1200px) {
  /* line 80, ../scss/modules/_button.scss */
  .sv-button-holder a.view-detail {
    float: none;
    display: block;
    margin: 0 auto 5px;
  }
}
.sv-button-holder a:hover {
  background: transparent;
  color: #e1688b;
}
.sv-button-holder a:before {
  content: '';
  position: absolute;
  font-size: 12px;
  color: white;
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  left: 16px;
}
.sv-button-holder a:hover:before {
  color: #e1688b;
}
.sv-button-holder a.product-button:before {
  content: '\f07a';
}
.sv-button-holder a.view-detail:before {
  content: '\f064';
}

/* BUTTON STYLE */
.sv-button {
  color: white;
  background: #e1688b;
  height: 40px;
  border: none;
  padding: 10px 15px;
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
}

.sv-button:hover {
  background: #869236;
}
