@import url(https://fonts.googleapis.com/css?family=Montserrat:400,500);.icon {
  display: inline-block;
  background-size: cover;
}

.dropdown-right-icon {
  background-image: URL("../images/icon-dropdown-left.svg");
  width: 8px;
  height: 8px;
  margin-left: auto;
  margin-bottom: 2px;
}

.icon-menu-close {
  background-image: URL("../images/icon-menu-close.svg");
  width: 24px;
  height: 24px;
  margin-left: auto;
}

.icon-menu-close-adj {
  background-image: URL("../images/cross-icon-adj.svg");
  width: 32px;
  height: 32px;
  margin-left: auto;
}

.grid-view-icon {
  background-image: URL("../images/icon-grid-view.svg");
  width: 24px;
  height: 24px;
}

.list-view-icon {
  background-image: URL("../images/icon-list-view.svg");
  width: 24px;
  height: 24px;
}

.sort-icon {
  background-image: URL("../images/icon-sort.svg");
  width: 32px;
  height: 32px;
}

.filter-icon {
  background-image: URL("../images/icon-filter.svg");
  width: 32px;
  height: 32px;
}

.whishlist-icon {
  background-image: URL("../images/wishlist.svg");
  width: 24px;
  height: 24px;
}

.share-icon {
  background-image: URL("../images/icon-share.svg");
  width: 24px;
  height: 24px;
}

.icon-menu {
  background-image: URL("../images/icon-menu.svg");
  width: 24px;
  height: 24px;
}

.icon-search {
  background-image: URL("../images/icon-search.svg");
  width: 24px;
  height: 24px;
}

.icon-menu-back {
  background-image: URL("../images/icon-menu-back.svg");
  width: 24px;
  height: 24px;
}

.shipping-icon {
  background-image: url("../images/shipping.svg");
  width: 32px;
  height: 32px;
}

.payment-icon {
  background-image: url("../images/payment.svg");
  width: 32px;
  height: 32px;
}

.cart-icon {
  background-image: url("../images/icon-cart.svg");
  width: 24px;
  height: 24px;
  position: relative;
}

.cart-icon .count {
  width: 22px;
  background: #24bf02;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  right: -10px;
  top: -14px;
  color: #fff;
  font-size: 12px;
  padding: 2px 0;
}

@media all and (min-width: 720px) {
  .cart-icon .count {
    display: none;
  }
}

.wishlist-icon {
  background-image: url("../images/wishlist.svg");
  width: 32px;
  height: 32px;
}

.icon-arrow-up {
  background-image: url("../images/arrow-up.svg");
  width: 16px;
  height: 16px;
}

.icon-arrow-down {
  background-image: url("../images/arrow-down.svg");
  width: 16px;
  height: 16px;
}

.expand-icon {
  background-image: url("../images/Expand-Light.svg");
  width: 18px;
  height: 18px;
}

.expand-on-icon {
  background-image: url("../images/Expand-Light-On.svg");
  width: 18px;
  height: 18px;
}

.icon-menu-close-adj {
  background-image: url("../images/cross-icon-adj.svg");
  width: 32px;
  height: 32px;
}

.icon-facebook {
  background-image: url("../images/facebook.svg");
}

.icon-twitter {
  background-image: url("../images/twitter.svg");
}

.icon-google-plus {
  background-image: url("../images/google-plus.svg");
}

.icon-instagram {
  background-image: url("../images/instagram.svg");
}

.icon-linkedin {
  background-image: url("../images/linkedin.svg");
}

.icon-dropdown {
  background-image: url("../images/icon-dropdown.svg");
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

body {
  margin: 0;
  padding: 0;
  font-weight: 500;
  max-width: 100%;
  width: auto;
  color: #242424;
  font-size: 16px;
}

* {
  font-family: "Montserrat", sans-serif;
}

*::-webkit-input-placeholder {
  font-family: "Montserrat", sans-serif;
}

*::-moz-input-placeholder {
  font-family: "Montserrat", sans-serif;
}

textarea {
  resize: none;
}

input {
  font-family: "Montserrat", sans-serif;
}

.btn {
  border-radius: 3px !important;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.pagination.shop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (max-width: 770px) {
  .pagination.shop {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .pagination.shop .page-item {
    display: none;
  }
  .pagination.shop .page-item.previous, .pagination.shop .page-item.next {
    display: block;
  }
}

.bold {
  font-weight: bold;
  color: #3A3A3A;
}

/* The container */
.radio-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 16px;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  /* Create a custom radio button */
  /* Create the indicator (the dot/circle - hidden when not checked) */
}

.radio-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  top: 0px;
  left: 0px;
}

.radio-container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 16px;
  width: 16px;
  background-color: white;
  border: 2px solid #FF6472;
  border-radius: 50%;
}

.radio-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.radio-container .checkmark:after {
  top: 2px;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF6472;
}

/* Show the indicator (dot/circle) when checked */
.radio-container input:checked ~ .checkmark:after {
  display: block;
}

/* Show the indic */
.radio-container input:disabled ~ .checkmark {
  display: block;
  border: 2px solid rgba(255, 100, 113, 0.4);
}

.cp-spinner {
  width: 48px;
  height: 48px;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.cp-round:before {
  border-radius: 50%;
  content: " ";
  width: 48px;
  height: 48px;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-top: solid 6px #bababa;
  border-right: solid 6px #bababa;
  border-bottom: solid 6px #bababa;
  border-left: solid 6px #bababa;
  position: absolute;
  top: 0;
  left: 0;
}

.cp-round:after {
  border-radius: 50%;
  content: " ";
  width: 48px;
  height: 48px;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-top: solid 6px #24bf02;
  border-right: solid 6px transparent;
  border-bottom: solid 6px transparent;
  border-left: solid 6px transparent;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: spin 1s ease-in-out infinite;
          animation: spin 1s ease-in-out infinite;
}

.pull-right {
  float: right;
}

.add-to-wishlist .wishlist-icon:hover {
  background-image: url("../images/wishlist-added.svg");
}

.add-to-wishlist.already {
  pointer-events: none;
}

.add-to-wishlist.already .wishlist-icon {
  background-image: url("../images/wishlist-added.svg") !important;
}

.product-price {
  margin-bottom: 14px;
  width: 100%;
  font-weight: 600;
}

.product-price .price-label {
  font-size: 14px;
  font-weight: 400;
}

.product-price .regular-price {
  color: #A5A5A5;
  text-decoration: line-through;
  margin-right: 10px;
}

.product-price .special-price {
  color: #FF6472;
}

.horizontal-rule {
  display: block;
  width: 100%;
  height: 1px;
  background: #C7C7C7;
}

.account-head .account-heading {
  font-size: 28px;
  color: #242424;
  text-transform: capitalize;
  text-align: left;
}

.account-head .account-action {
  font-size: 17px;
  margin-top: 1%;
  color: #24bf02;
  float: right;
}

.account-head .horizontal-rule {
  margin-top: 1.1%;
  width: 100%;
  height: 1px;
  vertical-align: middle;
  background: #C7C7C7;
}

.account-item-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 125px;
}

.account-item-card .media-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.account-item-card .media-info .media {
  height: 125px;
  width: 110px;
}

.account-item-card .media-info .info {
  margin-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.account-item-card .media-info .info .stars .icon {
  height: 16px;
  width: 16px;
}

.account-item-card .operations {
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.account-item-card .operations a {
  width: 100%;
}

.account-item-card .operations a span {
  float: right;
}

.account-items-list {
  display: block;
  width: 100%;
}

.account-items-list .grid-container {
  margin-top: 40px;
}

.search-result-status {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.grid-container {
  margin-top: 20px;
}

.main-container-wrapper {
  max-width: 1300px;
  width: auto;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

.main-container-wrapper .content-container {
  display: block;
  margin-bottom: 40px;
}

.main-container-wrapper .product-grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(235px, 1fr));
  grid-auto-rows: auto;
  grid-column-gap: 30px;
  grid-row-gap: 15px;
  justify-items: center;
}

.main-container-wrapper .product-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(235px, 1fr));
  grid-gap: 27px;
  grid-auto-rows: auto;
  justify-items: center;
}

.main-container-wrapper .product-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, calc(50% - 14px));
  grid-gap: 27px;
  grid-auto-rows: auto;
  justify-items: center;
  margin: 0 0 10px 10px;
}

@media only screen and (max-width: 750px) {
  .main-container-wrapper .product-grid-2 {
    grid-gap: 20px;
  }
}

.main-container-wrapper .product-grid-2 img {
  width: 100%;
}

.main-container-wrapper .blog-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 27px;
  grid-auto-rows: auto;
  justify-items: center;
}

.main-container-wrapper .blog-grid-3 .blog-card {
  position: relative;
  width: 100%;
}

.main-container-wrapper .blog-grid-3 .blog-card .blog-image {
  width: 100%;
  height: 250px;
  margin-bottom: 10px;
  background: #F2F2F2;
}

.main-container-wrapper .blog-grid-3 .blog-card .blog-image img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.main-container-wrapper .blog-grid-3 .blog-card .blog-information {
  padding: 10px;
}

.main-container-wrapper .blog-grid-3 .blog-card .blog-information .title {
  margin-bottom: 14px;
  width: 100%;
  color: #242424;
}

.main-container-wrapper .blog-grid-3 .blog-card .blog-information .title a {
  color: #242424;
}

.main-container-wrapper .blog-grid-3 .blog-card:hover {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0px 2px 16px 4px rgba(40, 44, 63, 0.07);
  box-shadow: 0px 2px 16px 4px rgba(40, 44, 63, 0.07);
  -webkit-transition: .3s;
  transition: .3s;
}

.main-container-wrapper .product-card {
  position: relative;
}

.main-container-wrapper .product-card .product-information {
  padding: 10px;
}

.main-container-wrapper .product-card .product-image {
  max-height: 350px;
  max-width: 280px;
  margin-bottom: 10px;
  background: #F2F2F2;
}

.main-container-wrapper .product-card .product-image img {
  display: block;
  height: 100%;
}

.main-container-wrapper .product-card .product-name {
  margin-bottom: 14px;
  width: 100%;
  color: #242424;
}

.main-container-wrapper .product-card .product-name a {
  color: #242424;
}

.main-container-wrapper .product-card .product-description {
  display: none;
}

.main-container-wrapper .product-card .product-ratings {
  width: 100%;
}

.main-container-wrapper .product-card .product-ratings .icon {
  width: 16px;
  height: 16px;
}

.main-container-wrapper .product-card .cart-wish-wrap {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 40px;
}

.main-container-wrapper .product-card .cart-wish-wrap .addtocart {
  margin-right: 10px;
  text-transform: uppercase;
  text-align: left;
  -webkit-box-shadow: 1px 1px 0px #ccc;
          box-shadow: 1px 1px 0px #ccc;
}

.main-container-wrapper .product-card .cart-wish-wrap .add-to-wishlist {
  margin-top: 5px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
}

.main-container-wrapper .product-card .sticker {
  border-radius: 100px;
  position: absolute;
  top: 20px;
  left: 20px;
  text-transform: uppercase;
  padding: 4px 13px;
  font-size: 14px;
  color: #fff;
  -webkit-box-shadow: 1px 1px 1px #cccccc;
          box-shadow: 1px 1px 1px #cccccc;
}

.main-container-wrapper .product-card .sticker.sale {
  background: #FF6472;
}

.main-container-wrapper .product-card .sticker.new {
  background: #2ED04C;
}

.main-container-wrapper .product-card:hover {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0px 2px 16px 4px rgba(40, 44, 63, 0.07);
  box-shadow: 0px 2px 16px 4px rgba(40, 44, 63, 0.07);
  -webkit-transition: .3s;
  transition: .3s;
}

@media only screen and (max-width: 580px) {
  .main-container-wrapper .main-container-wrapper {
    padding: 0px;
  }
}

@media only screen and (max-width: 551px) {
  .main-container-wrapper .product-grid-3 {
    grid-template-columns: 48.5% 48.5%;
    grid-column-gap: 20px;
  }
}

@media only screen and (max-width: 854px) {
  .main-container-wrapper .product-image img {
    display: block;
    width: 100%;
  }
  .main-container-wrapper .product-grid-4 {
    grid-template-columns: 29.5% 29.5% 29.5%;
    grid-column-gap: 35px;
  }
  .main-container-wrapper .product-card:hover {
    padding: 5px;
  }
}

@media only screen and (max-width: 653px) {
  .main-container-wrapper .product-image img {
    display: block;
    width: 100%;
  }
  .main-container-wrapper .product-grid-4 {
    grid-template-columns: 48.5% 48.5%;
    grid-column-gap: 17px;
  }
  .main-container-wrapper .product-grid-2 {
    grid-template-columns: 48.5% 48.5%;
    grid-column-gap: 17px;
  }
}

@media only screen and (max-width: 425px) {
  .main-container-wrapper .product-card {
    font-size: 90%;
  }
  .main-container-wrapper .product-card .product-image img {
    display: block;
    width: 100%;
  }
  .main-container-wrapper .product-card .btn.btn-md {
    padding: 5px;
  }
  .main-container-wrapper .product-grid-4 {
    grid-template-columns: 48.5% 48.5%;
    grid-column-gap: 10px;
  }
  .main-container-wrapper .product-grid-2 {
    grid-template-columns: 48.5% 48.5%;
    grid-column-gap: 10px;
  }
}

.main-container-wrapper .product-list {
  min-height: 200px;
}

.main-container-wrapper .product-list .product-card {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

.main-container-wrapper .product-list .product-card .product-image {
  float: left;
  width: 30%;
  height: 350px;
}

.main-container-wrapper .product-list .product-card .product-image img {
  height: 100%;
}

.main-container-wrapper .product-list .product-card .product-information {
  float: right;
  width: 70%;
  padding-left: 30px;
}

.main-container-wrapper .product-list .product-card:last-child {
  margin-bottom: 0;
}

.main-container-wrapper .product-list.empty h2 {
  font-size: 20px;
}

.main-container-wrapper .featured-products {
  display: block;
  margin-bottom: 90px;
}

@media only screen and (max-width: 750px) {
  .main-container-wrapper .featured-products.featured .row {
    display: block;
  }
}

.main-container-wrapper .featured-products.featured .row > div {
  width: calc(50% - 10px);
  overflow: hidden;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

@media only screen and (max-width: 750px) {
  .main-container-wrapper .featured-products.featured .row > div {
    width: 100%;
  }
}

.main-container-wrapper .featured-products.featured .card-big {
  margin-right: 10px;
}

.main-container-wrapper .featured-products.featured .card-big:hover {
  -webkit-box-shadow: 0px 2px 16px 4px rgba(40, 44, 63, 0.07);
          box-shadow: 0px 2px 16px 4px rgba(40, 44, 63, 0.07);
  -webkit-transition: .3s;
  transition: .3s;
}

@media only screen and (max-width: 750px) {
  .main-container-wrapper .featured-products.featured .card-big {
    margin-right: 0px;
    margin-bottom: 15px;
  }
  .main-container-wrapper .featured-products.featured .card-big img {
    width: 100%;
  }
}

.main-container-wrapper .featured-products.featured .card-big > a {
  display: table-cell;
  vertical-align: middle;
  overflow: hidden;
}

.main-container-wrapper .featured-products.featured .card-big > a.btn {
  display: inline-block;
}

.main-container-wrapper .featured-products.featured .card-big .product-information {
  padding: 10px;
}

.main-container-wrapper .featured-products.featured .card-big .product-information .product-name {
  margin-bottom: 14px;
  width: 100%;
  color: #242424;
}

.main-container-wrapper .featured-products.featured .card-big .product-information .product-name a {
  color: #242424;
}

.main-container-wrapper .featured-products .featured-heading {
  width: 100%;
  text-transform: uppercase;
  font-size: 45px;
  margin-bottom: 20px;
}

.main-container-wrapper .featured-products .featured-heading .featured-separator {
  color: lightgray;
}

.main-container-wrapper section.news-update {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  margin-bottom: 5%;
}

.main-container-wrapper section.news-update .news-update-grid {
  display: grid;
  grid-template-columns: 58.5% 40%;
  grid-gap: 20px;
}

.main-container-wrapper section.news-update .news-update-grid .block1 {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.main-container-wrapper section.news-update .news-update-grid .block1 img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: 100%;
}

.main-container-wrapper section.news-update .news-update-grid .block2 {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: grid;
  grid-template-rows: repeat(2, minmax(50%, 1fr));
  grid-row-gap: 20px;
}

.main-container-wrapper section.news-update .news-update-grid .block2 .sub-block1 {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.main-container-wrapper section.news-update .news-update-grid .block2 .sub-block1 img {
  width: 100%;
}

.main-container-wrapper section.news-update .news-update-grid .block2 .sub-block2 {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.main-container-wrapper section.news-update .news-update-grid .block2 .sub-block2 img {
  width: 100%;
}

.main-container-wrapper .category-images {
  -webkit-box-pack: normal;
      -ms-flex-pack: normal;
          justify-content: normal;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 100px;
}

.main-container-wrapper .category-images > div {
  text-align: center;
  margin: 8px;
}

@media (max-width: 800px) {
  .main-container-wrapper .category-images > div {
    margin: 10px;
  }
}

.main-container-wrapper .category-images > div a {
  display: block;
  color: #242424;
}

.main-container-wrapper .category-images > div a img {
  width: 150px;
  height: 150px;
}

@media (max-width: 800px) {
  .main-container-wrapper .category-images > div a img {
    width: 115px;
    height: 115px;
  }
}

@media (max-width: 430px) {
  .main-container-wrapper .category-images > div a img {
    width: 90px;
    height: 90px;
  }
}

.main-container-wrapper .category-images > div a div {
  margin-top: 5px;
}

.slider-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

.slider-block div.slider-content {
  position: relative;
  height: 500px;
  margin-left: auto;
  margin-right: auto;
}

.slider-block div.slider-content ul.slider-images .show-content {
  display: none;
}

.slider-block div.slider-content ul.slider-images li {
  position: absolute;
  visibility: hidden;
}

.slider-block div.slider-content ul.slider-images li.show {
  display: block;
  position: relative;
  visibility: visible;
  width: 100%;
  -webkit-animation-name: example;
          animation-name: example;
  -webkit-animation-duration: 4s;
          animation-duration: 4s;
}

.slider-block div.slider-content ul.slider-images li.show .show-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #242424;
  height: 100%;
  width: 100%;
  top: 0px;
}

@-webkit-keyframes example {
  0% {
    opacity: 0.1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes example {
  0% {
    opacity: 0.1;
  }
  100% {
    opacity: 1;
  }
}

.slider-block div.slider-content ul.slider-images li img {
  height: 500px;
  width: 100%;
}

.slider-block div.slider-content div.slider-control {
  display: block;
  cursor: pointer;
  position: absolute;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  bottom: 2%;
  right: 2%;
}

.slider-block div.slider-content div.slider-control .dark-left-icon {
  background-color: #F2F2F2;
  height: 48px;
  width: 48px;
  max-height: 100%;
  max-width: 100%;
  border-radius: 50%;
}

.slider-block div.slider-content div.slider-control .light-right-icon {
  background-color: #242424;
  height: 48px;
  width: 48px;
  max-height: 100%;
  max-width: 100%;
  border-radius: 50%;
}

@media only screen and (max-width: 770px) {
  section.slider-block div.slider-content div.slider-control {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    bottom: 46%;
    right: 0%;
    width: 100%;
  }
}

.header {
  margin-top: 16px;
  margin-bottom: 21px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.header .header-top {
  margin-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
  width: auto;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header .header-top div.left-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .header-top div.left-content ul.logo-container {
  margin-right: 12px;
}

.header .header-top div.left-content ul.logo-container li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header .header-top div.left-content ul.logo-container li img {
  max-width: 120px;
  max-height: 40px;
}

.header .header-top .search-group {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .header-top .search-group .search-field {
  height: 38px;
  border: 2px solid #C7C7C7;
  border-radius: 3px;
  border-right: none;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  padding-left: 12px;
  font-size: 14px;
  -webkit-appearance: none;
}

.header .header-top .search-group .search-icon-wrapper {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 38px;
  width: 38px;
  border: 2px solid #C7C7C7;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.header .header-top .search-group .search-icon-wrapper button {
  background: #fff;
  border: 0;
  padding: 3px 5px;
}

.header .header-top div.right-content .right-content-menu > li {
  display: inline-block;
  border-right: 2px solid #C7C7C7;
  padding: 0 15px;
  min-height: 15px;
  padding-top: 3px;
}

.header .header-top div.right-content .right-content-menu > li:first-child {
  padding-left: 0;
}

.header .header-top div.right-content .right-content-menu > li:last-child {
  border-right: 0;
  padding-right: 0;
}

.header .header-top div.right-content .right-content-menu > li .icon {
  vertical-align: middle;
}

.header .header-top div.right-content .right-content-menu > li .icon:not(.arrow-down-icon) {
  margin-right: 5px;
}

.header .header-top div.right-content .right-content-menu > li .arrow-down-icon {
  width: 12px;
  height: 6px;
}

.header .header-top div.right-content .right-content-menu .cart-dropdown-container {
  border-right: 0;
  padding-right: 0;
}

.header .header-top div.right-content .right-content-menu .cart-link {
  pointer-events: none;
}

.header .header-top div.right-content .right-content-menu ul.dropdown-list {
  display: none;
  margin-top: 14px;
}

.header .header-top div.right-content .right-content-menu ul.dropdown-list li {
  border-right: none;
  padding: 5px 10px 5px 10px;
  display: block;
}

.header .header-top div.right-content .right-content-menu ul.dropdown-list li a {
  color: #333333;
}

.header .header-top div.right-content .right-content-menu .currency {
  position: absolute;
  right: 0px;
  width: 100px;
}

.header .header-top div.right-content .right-content-menu .account {
  position: absolute;
  right: 0px;
}

.header .header-top div.right-content .right-content-menu .account li {
  padding: 20px !important;
}

.header .header-top div.right-content .right-content-menu .account li ul {
  margin-top: 5px;
}

.header .header-top div.right-content .right-content-menu .account li ul > li {
  padding: 5px 10px 5px 0px !important;
}

.header .header-top div.right-content .right-content-menu .guest {
  width: 300px;
}

.header .header-top div.right-content .right-content-menu .guest .btn.btn-sm {
  padding: 9px 25px;
}

.header .header-top div.right-content .right-content-menu .cart-dropdown-container .dropdown-list {
  width: 387px;
}

.header .header-top div.right-content .right-content-menu .cart-dropdown-container .dropdown-list .dropdown-container {
  padding: 0;
}

.header .header-top div.right-content .right-content-menu .cart-dropdown-container .dropdown-list .dropdown-container .dropdown-cart {
  color: #242424;
}

.header .header-top div.right-content .right-content-menu .cart-dropdown-container .dropdown-list .dropdown-container .dropdown-cart > .dropdown-header {
  width: 100%;
  padding: 8px 16px;
  border-bottom: 1px solid #C7C7C7;
}

.header .header-top div.right-content .right-content-menu .cart-dropdown-container .dropdown-list .dropdown-container .dropdown-cart > .dropdown-header p {
  display: inline;
  line-height: 25px;
}

.header .header-top div.right-content .right-content-menu .cart-dropdown-container .dropdown-list .dropdown-container .dropdown-cart > .dropdown-header i {
  float: right;
  height: 22px;
  width: 22px;
}

.header .header-top div.right-content .right-content-menu .cart-dropdown-container .dropdown-list .dropdown-container .dropdown-cart > .dropdown-header p.heading {
  font-weight: lighter;
}

.header .header-top div.right-content .right-content-menu .cart-dropdown-container .dropdown-list .dropdown-container .dropdown-content {
  padding-top: 8px;
  margin-bottom: 55px;
  width: 100%;
  max-height: 329px;
  overflow-y: auto;
}

.header .header-top div.right-content .right-content-menu .cart-dropdown-container .dropdown-list .dropdown-container .dropdown-content .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  border-bottom: 1px solid #C7C7C7;
  padding: 8px 16px;
}

.header .header-top div.right-content .right-content-menu .cart-dropdown-container .dropdown-list .dropdown-container .dropdown-content .item img {
  height: 75px;
  width: 75px;
  margin-right: 8px;
}

.header .header-top div.right-content .right-content-menu .cart-dropdown-container .dropdown-list .dropdown-container .dropdown-content .item-details {
  height: auto;
}

.header .header-top div.right-content .right-content-menu .cart-dropdown-container .dropdown-list .dropdown-container .item-details .item-name {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
}

.header .header-top div.right-content .right-content-menu .cart-dropdown-container .dropdown-list .dropdown-container .item-details .item-options {
  font-size: 16px;
  margin-bottom: 8px;
}

.header .header-top div.right-content .right-content-menu .cart-dropdown-container .dropdown-list .dropdown-container .item-details .item-price {
  margin-bottom: 8px;
}

.header .header-top div.right-content .right-content-menu .cart-dropdown-container .dropdown-list .dropdown-container .item-details .item-qty {
  font-weight: lighter;
  margin-bottom: 8px;
}

.header .header-top div.right-content .right-content-menu .cart-dropdown-container .dropdown-list .dropdown-container .dropdown-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 16px;
  position: absolute;
  bottom: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid #C7C7C7;
}

.header .header-top div.right-content .right-content-menu .cart-dropdown-container .dropdown-list .dropdown-container .dropdown-footer .btn {
  margin: 0;
}

.header .header-top div.right-content .right-content-menu .cart-dropdown-container .dropdown-list .dropdown-container .dropdown-footer .btn {
  max-width: 170px;
  text-align: center;
}

.header .header-top div.right-content .search-box,
.header .header-top div.right-content .menu-box {
  display: none;
}

.header .header-bottom {
  height: 47px;
  margin-left: auto;
  margin-right: auto;
  border-top: 1px solid #C7C7C7;
  border-bottom: 1px solid #C7C7C7;
  display: block;
  /* submenu positioning */
}

.header .header-bottom ul.nav {
  display: block;
  font-size: 16px;
  max-width: 100%;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}

.header .header-bottom .nav ul {
  margin: 0;
  padding: 0;
  border: 1px solid #C7C7C7;
  -webkit-box-shadow: 1px 1px 1px 0 rgba(0, 0, 0, 0.4);
          box-shadow: 1px 1px 1px 0 rgba(0, 0, 0, 0.4);
}

.header .header-bottom .nav a {
  display: block;
  color: #242424;
  text-decoration: none;
  padding: 0.8em 0.3em 0.8em 0.5em;
  text-transform: capitalize;
  letter-spacing: -0.38px;
  position: relative;
}

.header .header-bottom .nav li > .icon {
  display: none;
}

.header .header-bottom .nav {
  vertical-align: top;
  display: inline-block;
}

.header .header-bottom .nav li {
  position: relative;
}

.header .header-bottom .nav > li {
  float: left;
  margin-right: 1px;
  height: 45px;
}

.header .header-bottom .nav > li > a {
  margin-bottom: 1px;
}

.header .header-bottom .nav > li > a .icon {
  display: none;
}

.header .header-bottom .nav li li a {
  margin-top: 1px;
  white-space: initial;
  word-break: break-word;
  width: 200px;
}

.header .header-bottom .nav li a:first-child:nth-last-child(2):before {
  content: "";
  position: absolute;
  height: 0;
  width: 0;
  border: 5px solid transparent;
  top: 50%;
  right: 5px;
}

.header .header-bottom .nav ul {
  position: absolute;
  white-space: nowrap;
  border: 1px solid #C7C7C7;
  background-color: white;
  z-index: 10000;
  left: -99999em;
}

.header .header-bottom .nav > li:hover {
  background-color: #F2F2F2;
}

.header .header-bottom .nav > li:hover > ul {
  left: auto;
  min-width: 100%;
}

.header .header-bottom .nav > li li:hover {
  background-color: #F2F2F2;
}

.header .header-bottom .nav > li li:hover > ul {
  left: 100%;
  margin-left: 1px;
  top: -2px;
}

.header .header-bottom .nav > li:hover > a:first-child:nth-last-child(2):before {
  margin-top: -5px;
}

.header .header-bottom .nav li li > a:first-child:nth-last-child(2):before {
  margin-top: -5px;
}

.header .header-bottom .nav li li:hover > a:first-child:nth-last-child(2):before {
  right: 10px;
}

.header .search-responsive {
  display: none;
}

.header .search-responsive .search-content {
  border-bottom: 1px solid #C7C7C7;
  border-top: 1px solid #C7C7C7;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header .search-responsive .search-content .search {
  width: 80%;
  border: none;
  font-size: 16px;
}

.header .search-responsive .search-content .right {
  float: right;
}

@media all and (max-width: 720px) {
  .header .currency-switcher {
    display: none !important;
  }
  .header .header-top div.right-content {
    display: inherit;
  }
  .header .header-top div.right-content .menu-box {
    display: inline-block;
    margin-left: 10px;
  }
  .header .header-top div.right-content .search-box {
    display: inline-block;
    margin-right: 10px;
    cursor: pointer;
  }
  .header .header-top div.right-content .right-content-menu > li {
    border-right: none;
    padding: 0 2px;
  }
  .header .header-top div.right-content .right-content-menu > li .icon:not(.arrow-down-icon) {
    margin-right: 0px;
  }
  .header .header-top div.right-content .right-content-menu .cart-link {
    pointer-events: all;
  }
  .header .header-top div.right-content .right-content-menu .arrow-down-icon,
  .header .header-top div.right-content .right-content-menu .name {
    display: none;
  }
  .header .header-top div.right-content .right-content-menu .cart-dropdown-container .dropdown-container {
    display: none;
  }
  .header .header-bottom {
    height: auto;
    display: none;
  }
  .header .header-bottom .nav a {
    display: inline-block;
  }
  .header .header-bottom ul.nav,
  .header .header-bottom .nav li {
    height: auto;
  }
  .header .header-bottom .nav > li {
    float: none;
  }
  .header .header-bottom .nav li > .icon {
    float: right;
    display: block;
  }
  .header .header-bottom .icon.icon-arrow-down {
    margin-right: 5px;
  }
  .header .header-bottom .nav li .left {
    height: 16px;
    width: 16px;
  }
  .header .header-bottom .nav li a > .icon {
    display: none;
  }
  .header .header-bottom .nav ul {
    position: unset;
    border: none;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .header .header-bottom .nav > li li:hover > ul {
    margin-left: 0px;
    top: 0px;
  }
  ul.search-container {
    display: none !important;
  }
  ul.account-dropdown-container {
    display: none !important;
  }
  ul.cart-dropdown-container {
    display: none !important;
  }
}

@media all and (max-width: 400px) {
  .header .header-top div.right-content .right-content-menu .guest {
    width: 240px;
  }
  .header .header-top div.right-content .right-content-menu .guest .btn.btn-sm {
    padding: 7px 14px;
  }
}

.footer {
  max-width: 1300px;
  width: auto;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  background-color: #F2F2F2;
}

.footer .footer-list-container {
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 10px;
  padding-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer .footer-list-container .list-container .list-heading {
  text-transform: uppercase;
  color: #a5a5a5;
}

.footer .footer-list-container .list-container .form-container {
  padding-top: 5px;
}

.footer .footer-list-container .list-container .form-container .control-group .subscribe-field {
  width: 100%;
}

.footer .footer-list-container .list-container .form-container .control-group .btn-primary {
  background-color: #242424;
  margin-top: 8px;
  border-radius: 0px;
  text-align: center;
}

.footer .footer-list-container .list-container .form-container .control-group .locale-switcher {
  width: 100%;
}

.footer .footer-list-container .list-container .currency {
  display: none;
}

.footer .list-group {
  padding-top: 25px;
}

.footer .list-group a {
  color: #242424;
}

.footer .list-group li {
  margin-bottom: 12px;
  list-style-type: none;
  text-transform: uppercase;
}

.footer .list-group li span.icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  height: 24px;
  width: 24px;
}

.footer-small {
  max-width: 900px;
  width: auto;
  margin-left: auto;
  margin-right: auto;
  display: block;
  background-color: #F2F2F2;
}

.footer-small .footer-list-container {
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 10px;
  padding-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer-small .footer-list-container .list-container .list-heading {
  text-transform: uppercase;
  color: #a5a5a5;
}

.footer-small .footer-list-container .list-container .form-container {
  padding-top: 5px;
}

.footer-small .footer-list-container .list-container .form-container .control-group .subscribe-field {
  width: 100%;
}

.footer-small .footer-list-container .list-container .form-container .control-group .btn-primary {
  background-color: #242424;
  margin-top: 8px;
  border-radius: 0px;
  text-align: center;
}

.footer-small .footer-list-container .list-container .form-container .control-group .locale-switcher {
  width: 100%;
}

.footer-small .footer-list-container .list-container .currency {
  display: none;
}

.footer-small .list-group {
  padding-top: 25px;
}

.footer-small .list-group a {
  color: #242424;
}

.footer-small .list-group li {
  margin-bottom: 12px;
  list-style-type: none;
  text-transform: uppercase;
}

.footer-small .list-group li span.icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  height: 24px;
  width: 24px;
}

@media all and (max-width: 720px) {
  .footer .currency {
    display: block !important;
  }
}

.footer-bottom {
  width: 100%;
  height: 70px;
  font-size: 16px;
  color: #A5A5A5;
  letter-spacing: -0.26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer-bottom p {
  padding: 0px 15px;
}

.main .category-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 70%;
  margin: auto;
}

@media only screen and (max-width: 960px) {
  .main .category-container {
    width: 100%;
  }
}

.main .category-container .layered-filter-wrapper, .main .category-container .responsive-layred-filter {
  width: 25%;
  float: left;
  padding-right: 20px;
  min-height: 1px;
}

.main .category-container .layered-filter-wrapper .filter-title, .main .category-container .responsive-layred-filter .filter-title {
  border-bottom: 1px solid #C7C7C7;
  color: #242424;
  padding: 10px 0;
}

.main .category-container .layered-filter-wrapper .filter-attributes .filter-attributes-item, .main .category-container .responsive-layred-filter .filter-attributes .filter-attributes-item {
  border-bottom: 1px solid #C7C7C7;
  padding-bottom: 10px;
}

.main .category-container .layered-filter-wrapper .filter-attributes .filter-attributes-item .filter-attributes-title, .main .category-container .responsive-layred-filter .filter-attributes .filter-attributes-item .filter-attributes-title {
  padding: 10px 40px 0 10px;
  color: #5E5E5E;
  cursor: pointer;
  position: relative;
}

.main .category-container .layered-filter-wrapper .filter-attributes .filter-attributes-item .filter-attributes-title .remove-filter-link, .main .category-container .responsive-layred-filter .filter-attributes .filter-attributes-item .filter-attributes-title .remove-filter-link {
  font-weight: 400;
  color: #24bf02;
  margin-right: 10px;
}

.main .category-container .layered-filter-wrapper .filter-attributes .filter-attributes-item .filter-attributes-title .icon, .main .category-container .responsive-layred-filter .filter-attributes .filter-attributes-item .filter-attributes-title .icon {
  background-image: url("../images/icon-dropdown.svg") !important;
  width: 10px;
  height: 10px;
  position: absolute;
  right: 15px;
  top: 14px;
}

.main .category-container .layered-filter-wrapper .filter-attributes .filter-attributes-item .filter-attributes-content, .main .category-container .responsive-layred-filter .filter-attributes .filter-attributes-item .filter-attributes-content {
  padding: 10px;
  display: none;
}

.main .category-container .layered-filter-wrapper .filter-attributes .filter-attributes-item .filter-attributes-content ol.items, .main .category-container .responsive-layred-filter .filter-attributes .filter-attributes-item .filter-attributes-content ol.items {
  padding: 0;
  margin: 0;
  list-style: none none;
}

.main .category-container .layered-filter-wrapper .filter-attributes .filter-attributes-item .filter-attributes-content ol.items li.item, .main .category-container .responsive-layred-filter .filter-attributes .filter-attributes-item .filter-attributes-content ol.items li.item {
  padding: 8px 0;
  color: #5E5E5E;
}

.main .category-container .layered-filter-wrapper .filter-attributes .filter-attributes-item .filter-attributes-content ol.items li.item .checkbox, .main .category-container .responsive-layred-filter .filter-attributes .filter-attributes-item .filter-attributes-content ol.items li.item .checkbox {
  margin: 0;
}

.main .category-container .layered-filter-wrapper .filter-attributes .filter-attributes-item .filter-attributes-content ol.items li.item .checkbox .checkbox-view, .main .category-container .responsive-layred-filter .filter-attributes .filter-attributes-item .filter-attributes-content ol.items li.item .checkbox .checkbox-view {
  height: 16px;
  width: 16px;
  background-image: url("../images/checkbox.svg");
}

.main .category-container .layered-filter-wrapper .filter-attributes .filter-attributes-item .filter-attributes-content ol.items li.item .checkbox input:checked + .checkbox-view, .main .category-container .responsive-layred-filter .filter-attributes .filter-attributes-item .filter-attributes-content ol.items li.item .checkbox input:checked + .checkbox-view {
  background-image: url("../images/checkbox-checked.svg");
}

.main .category-container .layered-filter-wrapper .filter-attributes .filter-attributes-item .filter-attributes-content ol.items li.item .color-swatch, .main .category-container .responsive-layred-filter .filter-attributes .filter-attributes-item .filter-attributes-content ol.items li.item .color-swatch {
  display: inline-block;
  margin-right: 5px;
  min-width: 20px;
  height: 20px;
  border: 1px solid #c7c7c7;
  border-radius: 3px;
  float: right;
}

.main .category-container .layered-filter-wrapper .filter-attributes .filter-attributes-item .filter-attributes-content .price-range-wrapper, .main .category-container .responsive-layred-filter .filter-attributes .filter-attributes-item .filter-attributes-content .price-range-wrapper {
  margin-top: 21px;
}

.main .category-container .layered-filter-wrapper .filter-attributes .filter-attributes-item.active .filter-attributes-content, .main .category-container .responsive-layred-filter .filter-attributes .filter-attributes-item.active .filter-attributes-content {
  display: block;
}

.main .category-container .layered-filter-wrapper .filter-attributes .filter-attributes-item.active .filter-attributes-title .icon, .main .category-container .responsive-layred-filter .filter-attributes .filter-attributes-item.active .filter-attributes-title .icon {
  background-image: url("../images//arrow-up.svg") !important;
}

.main .category-container .responsive-layred-filter {
  display: none;
  width: 100%;
  float: none;
  padding-right: 0px;
  margin-top: -25px !important;
}

.main .category-container .category-block {
  width: 100%;
  display: block;
}

.main .category-container .category-block .hero-image {
  display: inline-block;
  visibility: visible;
  width: 100%;
}

.main .category-container .category-block .hero-image img {
  height: auto;
  /*400px;*/
  width: 100%;
}

.main .top-toolbar {
  width: 100%;
  display: inline-block;
}

.main .top-toolbar .page-info {
  float: left;
  color: #242424;
  line-height: 45px;
}

.main .top-toolbar .page-info span {
  display: none;
}

.main .top-toolbar .page-info span:first-child {
  display: inline;
}

.main .top-toolbar .pager {
  float: right;
}

.main .top-toolbar .pager label {
  margin-right: 5px;
}

.main .top-toolbar .pager select {
  background: #F2F2F2;
  border: 1px solid #C7C7C7;
  border-radius: 3px;
  color: #242424;
  padding: 10px;
}

.main .top-toolbar .pager .view-mode {
  display: inline-block;
  margin-right: 20px;
}

.main .top-toolbar .pager .view-mode a,
.main .top-toolbar .pager .view-mode span {
  display: inline-block;
  vertical-align: middle;
}

.main .top-toolbar .pager .view-mode a.grid-view,
.main .top-toolbar .pager .view-mode span.grid-view {
  margin-right: 10px;
}

.main .top-toolbar .pager .view-mode .sort-filter {
  display: none;
}

.main .top-toolbar .pager .sorter {
  display: inline-block;
  margin-right: 10px;
}

.main .top-toolbar .pager .limiter {
  display: inline-block;
}

.main .bottom-toolbar {
  display: block;
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
}

@media only screen and (max-width: 840px) {
  .main .layered-filter-wrapper, .main .category-container .responsive-layred-filter {
    display: none;
  }
  .main .category-block {
    width: 100% !important;
  }
  .main .category-block .top-toolbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .main .category-block .top-toolbar .page-info {
    border-bottom: 1px solid #C7C7C7;
    line-height: 15px;
    margin-top: 10px;
  }
  .main .category-block .top-toolbar .page-info span {
    display: inline;
  }
  .main .category-block .top-toolbar .page-info span:first-child {
    display: none;
  }
  .main .category-block .top-toolbar .page-info .sort-filter {
    float: right;
    cursor: pointer;
  }
  .main .category-block .top-toolbar .pager {
    margin-top: 20px;
    display: none;
  }
  .main .category-block .top-toolbar .pager .view-mode {
    display: none;
  }
  .main .category-block .responsive-layred-filter {
    display: block;
  }
}

.product-detail {
  color: #242424;
}

.product-detail .category-breadcrumbs {
  display: inline;
}

.product-detail .layouter {
  display: block;
  margin-top: 20px;
  margin-bottom: 20px;
}

.product-detail .layouter .form-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
}

.product-detail .layouter .form-container .details {
  width: 50%;
  overflow-wrap: break-word;
  margin-top: 30px;
}

.product-detail .layouter .form-container .details .product-price {
  margin-bottom: 14px;
}

.product-detail .layouter .form-container .details .product-price .sticker {
  display: none;
}

.product-detail .layouter .form-container .details .product-ratings {
  margin-bottom: 20px;
}

.product-detail .layouter .form-container .details .product-ratings .icon {
  width: 16px;
  height: 16px;
}

.product-detail .layouter .form-container .details .product-ratings .total-reviews {
  display: inline-block;
  margin-left: 15px;
}

.product-detail .layouter .form-container .details .product-heading {
  font-size: 24px;
  color: #242424;
  margin-bottom: 15px;
}

.product-detail .layouter .form-container .details .product-price {
  margin-bottom: 15px;
}

.product-detail .layouter .form-container .details .product-price .special-price {
  font-size: 24px;
}

.product-detail .layouter .form-container .details .stock-status {
  margin-bottom: 15px;
  font-weight: 600;
  color: #FC6868;
}

.product-detail .layouter .form-container .details .stock-status.active {
  color: #4CAF50;
}

.product-detail .layouter .form-container .details .description {
  margin-bottom: 15px;
}

.product-detail .layouter .form-container .details .description ul {
  padding-left: 40px;
  list-style: disc;
}

.product-detail .layouter .form-container .details .quantity {
  padding-top: 15px;
  border-top: solid 1px rgba(162, 162, 162, 0.2);
}

.product-detail .layouter .form-container .details .full-description * {
  max-width: 100%;
}

.product-detail .layouter .form-container .details .full-description ul {
  padding-left: 40px;
  list-style: disc;
}

.product-detail .layouter .form-container .details .full-specifications td {
  padding: 10px 0;
  color: #5E5E5E;
}

.product-detail .layouter .form-container .details .full-specifications td:first-child {
  padding-right: 40px;
}

.product-detail .layouter .form-container .details .accordian .accordian-header {
  padding-left: 0;
  font-weight: 600;
}

.product-detail .layouter .form-container .details .accordian .accordian-content {
  padding: 20px 0px;
}

.product-detail .layouter .form-container .details .attributes {
  display: block;
  width: 100%;
  border-bottom: solid 1px rgba(162, 162, 162, 0.2);
}

.product-detail .layouter .form-container .details .attributes .attribute.control-group {
  margin-bottom: 20px;
}

.product-detail .layouter .form-container .details .attributes .attribute.control-group .swatch-container {
  margin-top: 10px;
  display: inline-block;
}

.product-detail .layouter .form-container .details .attributes .attribute.control-group .swatch-container .swatch {
  display: inline-block;
  margin-right: 5px;
  min-width: 40px;
  height: 40px;
}

.product-detail .layouter .form-container .details .attributes .attribute.control-group .swatch-container .swatch span {
  min-width: 38px;
  height: 38px;
  float: left;
  border: 1px solid #C7C7C7;
  border-radius: 3px;
  line-height: 36px;
  text-align: center;
  cursor: pointer;
  padding: 0 10px;
}

.product-detail .layouter .form-container .details .attributes .attribute.control-group .swatch-container .swatch img {
  width: 38px;
  height: 38px;
  border: 1px solid #C7C7C7;
  border-radius: 3px;
  cursor: pointer;
  background: #f2f2f2;
}

.product-detail .layouter .form-container .details .attributes .attribute.control-group .swatch-container .swatch input:checked + span,
.product-detail .layouter .form-container .details .attributes .attribute.control-group .swatch-container .swatch input:checked + img {
  border: 1px solid #242424;
}

.product-detail .layouter .form-container .details .attributes .attribute.control-group .swatch-container .swatch input {
  display: none;
}

.product-detail .layouter .form-container .details .attributes .attribute.control-group .swatch-container .no-options {
  color: #fb3949;
}

.product-detail .layouter .form-container .details .quantity-change {
  cursor: pointer;
  text-align: center;
}

.product-detail .layouter .form-container .details .quantity-change:focus {
  border-color: #C7C7C7 !important;
}

.product-image-group {
  margin-right: 30px;
  width: 45%;
  max-width: 604px;
  position: -webkit-sticky;
  position: sticky;
  top: 10px;
}

.product-image-group div {
  /*
                    display: flex;
                    flex-direction: row;*/
  cursor: pointer;
}

.product-image-group div .thumb-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: 10px 0;
  overflow: hidden;
  position: relative;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
}

.product-image-group div .thumb-list .thumb-frame {
  border: 2px solid transparent;
  background: #F2F2F2;
  width: 10vw;
  height: 10vw;
  max-width: 120px;
  max-height: 120px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

.product-image-group div .thumb-list .thumb-frame.active {
  border-color: #24bf02;
}

.product-image-group div .thumb-list .thumb-frame img {
  height: 100%;
  width: 100%;
}

.product-image-group div .thumb-list .gallery-control {
  width: 18px;
  position: absolute;
  text-align: center;
  cursor: pointer;
  z-index: 1;
}

.product-image-group div .thumb-list .gallery-control .overlay {
  opacity: 0.3;
  background: #242424;
  width: 100%;
  height: 120px;
  position: absolute;
  left: 0;
  z-index: -1;
}

.product-image-group div .thumb-list .gallery-control .icon {
  z-index: 2;
  margin-top: 4vw;
}

.product-image-group div .thumb-list .gallery-control.left {
  left: 0;
}

.product-image-group div .thumb-list .gallery-control.right {
  right: 0;
}

.product-image-group div .product-hero-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 100%;
  max-height: 480px;
}

.product-image-group div .product-hero-image img {
  max-width: 100%;
  max-height: 100%;
}

.product-image-group div .product-hero-image .add-to-wishlist {
  background-image: url("../images/wishlist.svg");
  position: absolute;
  top: 10px;
  right: 12px;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
}

.product-image-group div .product-hero-image .add-to-wishlist:hover {
  background-image: url("../images/wishlist-added.svg");
}

.product-image-group div .product-hero-image .add-to-wishlist.already {
  background-image: url("../images/wishlist-added.svg") !important;
}

.product-image-group div .product-hero-image .share {
  position: absolute;
  top: 10px;
  right: 45px;
}

@media only screen and (min-width: 768px) {
  .product-image-group div .product-hero-image {
    height: 50vw;
  }
}

.add-to-buttons {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.add-to-buttons .addtocart {
  width: 49%;
  background: #fff;
  padding: 16px 20px;
  border: 1px solid #24bf02;
  cursor: pointer;
  border-radius: 4px;
  color: #24bf02;
  text-align: center;
  font-size: 16px;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2), 0 0 8px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2), 0 0 8px 0 rgba(0, 0, 0, 0.1);
}

.add-to-buttons .buy-now-lnk {
  width: 49%;
  text-align: center;
  padding: 16px 20px;
  background-color: #24bf02;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2), 0 0 8px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2), 0 0 8px 0 rgba(0, 0, 0, 0.1);
}

.add-to-buttons .buynow {
  border: none;
  background: transparent;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

.product-detail-rep .add-to-buttons {
  width: 60%;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  section.product-detail div.layouter .form-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  section.product-detail div.layouter .form-container div.product-image-group {
    margin-right: 0px;
    max-width: none;
    width: auto;
    min-height: auto;
    height: auto;
    position: unset;
  }
  section.product-detail div.layouter .form-container div.product-image-group .loader {
    margin-left: 47%;
  }
  section.product-detail div.layouter .form-container div.product-image-group div .thumb-list {
    margin-top: 5px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    overflow-x: scroll;
    margin-right: 0px;
  }
  section.product-detail div.layouter .form-container div.product-image-group div .thumb-list .thumb-frame {
    width: 20vw;
    height: 20vw;
  }
  section.product-detail div.layouter .form-container div.product-image-group div .thumb-list .thumb-frame img {
    height: 100%;
    width: 100%;
  }
  section.product-detail div.layouter .form-container div.product-image-group div .thumb-list .gallery-control {
    display: none;
  }
  section.product-detail div.layouter .form-container div.product-image-group div .product-hero-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  section.product-detail div.layouter .form-container div.product-image-group div .product-hero-image img {
    margin-left: auto;
    margin-right: auto;
    width: auto;
  }
  section.product-detail div.layouter .form-container div.product-image-group div .wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100% !important;
  }
  section.product-detail div.layouter .form-container .details {
    width: 100%;
    margin-top: 20px;
  }
}

@media only screen and (max-width: 510px) {
  section.product-detail div.layouter .form-container div.product-image-group .product-hero-image img {
    width: 100% !important;
  }
}

.rating-reviews .rating-header {
  padding: 20px 0;
}

.rating-reviews .stars .icon {
  width: 16px;
  height: 16px;
}

.rating-reviews .overall {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.rating-reviews .overall .review-info .number {
  font-size: 34px;
}

.rating-reviews .overall .review-info .total-reviews {
  margin-top: 10px;
}

.rating-reviews .reviews {
  margin-top: 40px;
  margin-bottom: 40px;
}

.rating-reviews .reviews .review {
  margin-bottom: 25px;
}

.rating-reviews .reviews .review .title {
  margin-bottom: 5px;
}

.rating-reviews .reviews .review .stars {
  margin-bottom: 15px;
  display: inline-block;
}

.rating-reviews .reviews .review .message {
  margin-bottom: 10px;
}

.rating-reviews .reviews .review .reviewer-details {
  color: #5e5e5e;
}

.rating-reviews .reviews .view-all {
  margin-top: 15px;
  color: #24bf02;
  margin-bottom: 15px;
}

/* cart pages and elements css begins here */
.cart {
  width: 100%;
  color: #242424;
  margin: 60px 0 50px;
}

.cart .title {
  font-size: 24px;
}

.cart-content {
  margin-top: 20px;
  width: 100%;
  display: inline-block;
}

.cart-content .left-side {
  width: 70%;
  float: left;
}

.cart-content .left-side .misc-controls {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 20px;
}

.cart-content .right-side {
  width: 30%;
  display: inline-block;
  padding-left: 40px;
}

.cart-content .right-side .update-accounting-block {
  display: none;
}

.update-accounting-block .update {
  background: #fff;
  padding: 7px 20px;
  border: 1px solid #24bf02;
  line-height: normal;
  cursor: pointer;
  border-radius: 4px;
  color: #24bf02;
  text-align: center;
  font-size: 16px;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2), 0 0 8px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2), 0 0 8px 0 rgba(0, 0, 0, 0.1);
}

.update-accounting-block .accounting {
  text-align: center;
  padding: 7px 20px;
  background-color: #24bf02;
  border: 1px solid #24bf02;
  line-height: normal;
  color: #fff;
  display: inline-block;
  margin-left: 10px;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2), 0 0 8px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2), 0 0 8px 0 rgba(0, 0, 0, 0.1);
}

/*Success Page CSS Start*/
.order-success-content {
  text-align: center;
  margin: 60px 0 50px;
}

.cart-item-list .item {
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  border: 1px solid #C7C7C7;
  border-radius: 2px;
}

.cart-item-list .item .item-image {
  margin-right: 15px;
}

.cart-item-list .item .item-image img {
  height: 160px;
  width: auto;
  max-width: -webkit-fit-content !important;
  max-width: -moz-fit-content !important;
  max-width: fit-content !important;
}

.cart-item-list .item .item-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
}

.cart-item-list .item .item-details .item-title {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

.cart-item-list .item .item-details .item-title a {
  color: #242424;
}

.cart-item-list .item .item-details .price {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
}

.cart-item-list .item .item-details .summary {
  margin-bottom: 17px;
}

.cart-item-list .item .item-details .misc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.cart-item-list .item .item-details .misc .control-group {
  font-size: 16px !important;
  width: 220px;
  margin: 0px;
}

.cart-item-list .item .item-details .misc .control-group .wrap {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cart-item-list .item .item-details .misc .control-group label {
  margin-right: 15px;
}

.cart-item-list .item .item-details .misc .control-group .control {
  height: 38px;
  width: 60px;
  border-radius: 3px;
  text-align: center;
  line-height: 38px;
}

.cart-item-list .item .item-details .misc .remove,
.cart-item-list .item .item-details .misc .towishlist {
  margin-top: 18px;
  margin-right: 15px;
}

.cart-item-list .item .item-details .misc .quantity-change {
  cursor: pointer;
}

.cart-item-list .item .item-details .misc .quantity-change:focus {
  border-color: #C7C7C7 !important;
}

.cart-item-list .item .error-message {
  color: #FF6472;
}

.order-summary h3 {
  font-size: 16px;
  margin-top: 0;
}

.order-summary .item-detail {
  margin-top: 12px;
}

.order-summary .item-detail label.right {
  float: right;
}

.order-summary .payable-amount {
  margin-top: 17px;
  border-top: 1px solid #C7C7C7;
  padding-top: 12px;
}

.order-summary .payable-amount label {
  font-weight: bold;
}

.order-summary .payable-amount label.right {
  float: right;
}

@media only screen and (max-width: 767px) {
  .update-accounting-block {
    display: none;
  }
  .update-accounting-block .update {
    width: 100%;
    margin: 0 0 10px;
    font-size: 18px;
  }
  .update-accounting-block .accounting {
    width: 100%;
    margin: 0px;
    font-size: 18px;
  }
  .cart .cart-content .left-side {
    width: 100%;
    float: none;
    margin: 0 0 20px;
  }
  .cart .cart-content .right-side {
    width: 100%;
    padding-left: 0px;
    position: relative;
  }
  .cart .cart-content .right-side .update-accounting-block {
    display: inline-block;
    width: 100%;
    margin: 20px 0 0;
  }
}

@media only screen and (max-width: 600px) {
  .cart .cart-content .left-side .cart-item-list .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .cart .cart-content .left-side .cart-item-list .item .item-details {
    margin-top: 10px;
  }
  .cart .cart-content .left-side .cart-item-list .item .item-details .misc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    line-height: 40px;
  }
}

.checkout-method-group .line-one {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.checkout-method-group .line-one .radio-container {
  padding-left: 28px;
}

.checkout-method-group .line-one .method-label {
  margin-top: 4px;
}

.checkout-method-group .line-two {
  margin-left: 30px;
}

.checkout-process {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 16px;
  color: #242424;
}

.checkout-process .col-main {
  width: 70%;
  margin-right: 5%;
}

.checkout-process .col-main ul.checkout-steps {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding-bottom: 15px;
  border-bottom: 1px solid #C7C7C7;
}

.checkout-process .col-main ul.checkout-steps li {
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.checkout-process .col-main ul.checkout-steps li .decorator {
  height: 48px;
  width: 48px;
  border: 1px solid black;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border: 1px solid #C7C7C7;
  background-repeat: no-repeat;
  background-position: center;
}

.checkout-process .col-main ul.checkout-steps li .decorator.address-info {
  background-image: url("../images/address.svg");
}

.checkout-process .col-main ul.checkout-steps li .decorator.shipping {
  background-image: url("../images/shipping.svg");
}

.checkout-process .col-main ul.checkout-steps li .decorator.payment {
  background-image: url("../images/payment.svg");
}

.checkout-process .col-main ul.checkout-steps li .decorator.review {
  background-image: url("../images/finish.svg");
}

.checkout-process .col-main ul.checkout-steps li.completed {
  cursor: pointer;
}

.checkout-process .col-main ul.checkout-steps li.completed .decorator {
  background-image: url("../images/complete.svg");
}

.checkout-process .col-main ul.checkout-steps li span {
  margin-left: 7px;
  margin-top: auto;
  margin-bottom: auto;
}

.checkout-process .col-main ul.checkout-steps li.active {
  color: #24bf02;
}

.checkout-process .col-main ul.checkout-steps li.active .decorator {
  border: 1px solid #24bf02;
}

.checkout-process .col-main .step-content {
  padding-top: 20px;
}

.checkout-process .col-main .step-content .form-header {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 30px;
}

.checkout-process .col-main .step-content .form-header .checkout-step-heading {
  font-size: 24px;
  font-weight: bold;
  float: left;
}

.checkout-process .col-main .step-content .form-header .btn {
  float: right;
  font-size: 14px;
}

.checkout-process .col-main .step-content .form-container {
  border-bottom: 1px solid #C7C7C7;
  padding-top: 20px;
  padding-bottom: 20px;
}

.checkout-process .col-main .step-content .shipping-methods {
  font-size: 16px;
}

.checkout-process .col-main .step-content .shipping-methods .ship-method-carrier {
  margin-bottom: 15px;
  font-weight: bold;
}

.checkout-process .col-main .step-content .payment-methods .radio-container {
  padding-left: 28px;
}

.checkout-process .col-main .step-content .payment-methods .control-info {
  margin-left: 28px;
}

.checkout-process .col-main .step-content .address-summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin: 0 0 20px;
}

.checkout-process .col-main .step-content .address-summary div.billing-address {
  margin-right: 25%;
}

.checkout-process .col-main .step-content .address-summary div.billing-address .horizontal-rule,
.checkout-process .col-main .step-content .address-summary div.shipping-address .horizontal-rule {
  width: 40px;
  background: #242424;
}

.checkout-process .col-main .step-content .address-summary .label {
  width: 10%;
}

.checkout-process .col-main .step-content .address-summary .address-card-list {
  width: 85%;
}

.checkout-process .col-main .step-content .cart-item-list .item .row .title {
  width: 100px;
  display: inline-block;
  color: #A5A5A5;
  font-weight: 500;
  margin-bottom: 10px;
}

.checkout-process .col-main .step-content .cart-item-list .item .row .value {
  font-size: 18px;
  font-weight: 600;
}

.checkout-process .col-right {
  width: 25%;
  padding-left: 40px;
}

.cardplay-item-list {
  margin: 0 0 20px;
}

.cardplay-item-list .cardplay-item {
  border: 1px solid #C7C7C7;
  border-radius: 2px;
  overflow: hidden;
  padding: 10px;
  margin: 0 auto;
}

.cardplay-item-list .cardplay-item .cardplay-item-image {
  width: 30%;
  float: left;
  padding: 0 10px;
}

.cardplay-item-list .cardplay-item .cardplay-item-details {
  float: left;
  width: 70%;
  padding: 0 10px;
}

.cardplay-item-list .cardplay-item .cardplay-item-details .cardplay-item-common {
  margin: 0 0 13px;
}

.cardplay-item-list .cardplay-item .cardplay-item-details .cardplay-item-common .value {
  float: right;
}

.order-description {
  overflow: hidden;
  margin-left: -10px;
  margin-right: -10px;
}

.order-description .order-description-left {
  width: 60%;
  float: left;
  padding: 0 10px;
}

.order-description .order-description-left .shipping-payment {
  margin: 0 0 20px;
}

.order-description .order-description-left .shipping {
  margin-bottom: 20px;
}

.order-description .order-description-right {
  width: 40%;
  float: left;
  padding: 0 10px;
}

.order-description .decorator {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  border: 1px solid #C7C7C7;
  vertical-align: middle;
  display: inline-block;
  text-align: center;
}

.order-description .decorator .icon {
  margin-top: 7px;
}

.order-description .text {
  font-weight: 600;
  vertical-align: middle;
  display: inline-block;
}

.order-description .text .info {
  font-weight: 500;
  margin-top: 2px;
}

.credit-card-block {
  background-color: #cbf3c8;
  padding: 20px;
}

.formcard-wrapper .credit-card-img {
  display: inline-block;
  width: 100%;
  margin: 0 0 10px;
}

.formcard-wrapper .credit-card-img img {
  float: right;
  width: 150px;
}

.formcard-wrapper .common {
  margin: 0 0 14px;
}

.formcard-wrapper .common iframe {
  border: none;
}

.formcard-wrapper .common.outer {
  overflow: hidden;
  margin-left: -10px;
  margin-right: -10px;
}

.formcard-wrapper .col_6 {
  width: 50%;
  float: left;
  padding: 0 10px;
}

.credit-card-button {
  text-align: right;
}

.credit-card-button button.back {
  background: transparent;
  border: none;
  color: #24BF02;
  font-weight: 700;
  font-size: 16px;
  margin-right: 10px;
  padding: 6px 16px;
  cursor: pointer;
}

.credit-card-button button.order {
  background-color: #0fc200;
  border: none;
  padding: 9px 35px;
  font-size: 16px;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2), 0 0 8px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2), 0 0 8px 0 rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 770px) {
  .checkout-process .col-main {
    width: 100%;
    margin: 0px;
  }
  .checkout-process .col-main ul.checkout-steps {
    border-bottom: none;
    padding-bottom: 0px;
  }
  .checkout-process .col-main ul.checkout-steps span {
    display: none;
  }
  .checkout-process .col-main ul.checkout-steps .line {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    border-bottom: 1px solid #C7C7C7;
    margin-left: 5px;
    margin-right: 5px;
  }
  .checkout-process .step-content {
    padding-top: 0px;
  }
  .checkout-process .step-content .control-group .control {
    width: 100%;
  }
  .checkout-process .col-right {
    display: none;
  }
  .cardplay-item-list .cardplay-item .cardplay-item-image {
    width: 100%;
  }
  .cardplay-item-list .cardplay-item .cardplay-item-details {
    width: 100%;
  }
  .order-description {
    margin: 0px;
  }
  .order-description .order-description-left {
    width: 100%;
    padding: 0px;
  }
  .order-description .order-description-left .shipping-payment {
    margin: 0 0 20px;
  }
  .order-description .order-description-left .shipping {
    margin: 0px;
    display: inline-block;
  }
  .order-description .order-description-left .shipping .decorator {
    height: 40px;
    width: 40px;
  }
  .order-description .order-description-left .shipping .decorator .shipping-icon {
    width: 24px;
    height: 24px;
  }
  .order-description .order-description-left .shipping .text {
    font-size: 14px;
  }
  .order-description .order-description-left .payment {
    display: inline-block;
    padding: 0 0 0 12px;
  }
  .order-description .order-description-left .payment .decorator {
    height: 40px;
    width: 40px;
  }
  .order-description .order-description-left .payment .decorator .payment-icon {
    width: 24px;
    height: 24px;
  }
  .order-description .order-description-left .payment .text {
    font-size: 14px;
  }
  .order-description .order-description-left .credit-card-block {
    padding: 10px;
    margin: 0 0 20px;
  }
  .order-description .order-description-right {
    width: 100%;
    padding: 0px;
  }
  .formcard-wrapper .credit-card-img img {
    width: 100px;
  }
  .credit-card-button button.back {
    font-size: 14px;
  }
  .credit-card-button button.order {
    padding: 7px 30px;
    font-size: 14px;
  }
}

.attached-products-wrapper {
  margin-bottom: 80px;
}

.attached-products-wrapper .title {
  margin-bottom: 40px;
  font-size: 18px;
  color: #242424;
  text-align: center;
  position: relative;
}

.attached-products-wrapper .title .border-bottom {
  border-bottom: 1px solid rgba(162, 162, 162, 0.2);
  display: inline-block;
  width: 100px;
  position: absolute;
  top: 40px;
  left: 50%;
  margin-left: -50px;
}

.attached-products-wrapper .horizontal-rule {
  height: 1px;
  background: #C7C7C7;
  width: 148px;
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
}

section.review .category-breadcrumbs {
  display: inline;
}

section.review .review-layouter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

section.review .review-layouter .product-info {
  font-size: 24px;
  max-width: 25%;
}

section.review .review-layouter .product-info .product-image img {
  height: 280px;
  width: 280px;
}

section.review .review-layouter .product-info .product-name a {
  color: #242424;
}

section.review .review-layouter .product-info .product-price .pro-price {
  color: #FF6472;
}

section.review .review-layouter .product-info .product-price .pro-price-not {
  margin-left: 10px;
  font-size: 16px;
  color: #A5A5A5;
}

section.review .review-layouter .product-info .product-price .offer {
  margin-left: 10px;
  font-size: 16px;
}

section.review .review-layouter .review-form {
  margin-left: 20px;
  width: 55%;
}

section.review .review-layouter .review-form .heading {
  color: #242424;
  font-weight: 600;
}

section.review .review-layouter .review-form .heading .right {
  float: right;
  margin-top: -10px;
}

section.review .review-layouter .review-form .star {
  font-size: 23px;
  color: #d4d4d4;
  -webkit-transition: all .2s;
  transition: all .2s;
}

section.review .review-layouter .review-form .star:before {
  content: '\2605';
}

section.review .review-layouter .review-form .control-group .control {
  width: 100%;
}

section.review .review-layouter .review-form .review-detail {
  height: 150px;
  border: 1px solid firebrick;
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

section.review .review-layouter .review-form .review-detail .rating-review {
  margin-top: 40px;
  margin-left: 20px;
  width: 48%;
}

section.review .review-layouter .review-form .review-detail .rating-review .avg-rating-count span {
  font-size: 34px;
  text-align: center;
}

section.review .review-layouter .review-form .review-detail .rating-calculate .progress-only {
  width: 20px;
  border: 1px solid blue;
}

section.review .review-layouter .ratings-reviews {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

section.review .review-layouter .ratings-reviews .left-side {
  padding: 40px 20px 40px 20px;
  width: 50%;
}

section.review .review-layouter .ratings-reviews .left-side .rate {
  font-size: 34px;
}

section.review .review-layouter .ratings-reviews .left-side .stars .icon {
  height: 16px;
  width: 16px;
}

section.review .review-layouter .ratings-reviews .right-side {
  width: 50%;
}

section.review .review-layouter .ratings-reviews .right-side .rater {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 5px;
  width: 100%;
}

section.review .review-layouter .ratings-reviews .right-side .rater .star-name {
  margin-right: 5px;
  width: 35px;
}

section.review .review-layouter .ratings-reviews .right-side .rater .rate-number {
  width: 15px;
}

section.review .review-layouter .ratings-reviews .right-side .rater .percentage {
  width: 50px;
  margin-right: 10px;
}

section.review .review-layouter .ratings-reviews .right-side .rater .percentage span {
  float: right;
  white-space: nowrap;
}

section.review .review-layouter .ratings-reviews .right-side .rater .line-bar {
  height: 4px;
  width: calc(100% - 100px);
  margin-right: 5px;
  margin-left: 5px;
  background: #D8D8D8;
}

section.review .review-layouter .ratings-reviews .right-side .rater .line-bar .line-value {
  background-color: #24bf02;
}

@media only screen and (max-width: 770px) {
  section.review .category-breadcrumbs {
    display: none;
  }
  section.review .review-layouter {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  section.review .review-layouter .product-info {
    max-width: 100%;
  }
  section.review .review-layouter .product-info .product-image,
  section.review .review-layouter .product-info .product-name,
  section.review .review-layouter .product-info .product-price {
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
  section.review .review-layouter .review-form {
    width: 100%;
    margin-left: 0px;
  }
  section.review .review-layouter .review-form .heading .right {
    margin-top: 50px;
  }
  section.review .review-layouter .review-form .ratings-reviews {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  section.review .review-layouter .review-form .ratings-reviews .left-side {
    width: 100%;
    padding: 0px 0px 40px 0px;
    margin-top: -30px;
  }
  section.review .review-layouter .review-form .ratings-reviews .right-side {
    width: 100%;
  }
  section.review .review-layouter .review-form .ratings-reviews .right-side .rater .percentage {
    margin-right: 0px;
  }
}

.auth-content {
  padding-top: 5%;
  padding-bottom: 5%;
}

.auth-content .sign-up-text {
  margin-bottom: 2%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 18px;
  color: #A5A5A5;
  text-align: center;
}

.auth-content .login-form {
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #C7C7C7;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 500px;
  min-width: 320px;
  padding: 25px;
}

.auth-content .login-form .login-text {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
}

.auth-content .login-form .control-group {
  margin-bottom: 15px;
}

.auth-content .login-form .control-group i {
  font-size: 26px;
  vertical-align: middle;
}

.auth-content .login-form .control-group span {
  padding: 0 0 0 10px;
  vertical-align: middle;
}

.auth-content .login-form .control-group .control {
  width: 100% !important;
}

.auth-content .login-form .forgot-password-link {
  font-size: 17px;
  color: #24bf02;
  margin-bottom: 5%;
}

.auth-content .login-form .signup-confirm {
  margin-bottom: 5%;
}

.auth-content .login-form .btn-primary {
  width: 100%;
  text-transform: uppercase;
}

.account-content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-top: 5.5%;
  margin-bottom: 5.5%;
}

.account-content .sidebar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 20%;
  height: 100%;
}

.account-content .menu-block {
  margin-bottom: 30px;
}

.account-content .menu-block:last-child {
  margin-bottom: 0;
}

.account-content .menu-block .menu-block-title {
  padding-bottom: 10px;
  font-size: 18px;
}

.account-content .menu-block .menu-block-title .right {
  display: none;
}

.account-content .menu-block .menubar {
  border: 1px solid #C7C7C7;
  color: #A5A5A5;
  position: relative;
}

.account-content .menu-block .menubar li {
  width: 95%;
  height: 50px;
  margin-left: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #C7C7C7;
  text-align: center;
}

.account-content .menu-block .menubar li a {
  color: #5E5E5E;
  width: 100%;
  text-align: left;
}

.account-content .menu-block .menubar li .icon {
  display: none;
  position: absolute;
  right: 12px;
}

.account-content .menu-block .menubar li:first-child {
  border-top: none;
}

.account-content .menu-block .menubar li:last-child {
  border-bottom: none;
}

.account-content .menu-block .menubar li.active a {
  color: #24bf02;
}

.account-content .menu-block .menubar li.active .icon {
  display: inline-block;
}

.account-content .account-layout {
  margin-left: 40px;
  width: 80%;
}

.account-content .account-layout .responsive-empty {
  display: none;
}

.account-head .back-icon {
  display: none;
}

.account-table-content {
  color: #242424;
  margin-top: 1.4%;
}

.account-table-content table {
  width: 100%;
}

.account-table-content table tbody tr {
  height: 45px;
}

.account-table-content table tbody tr td {
  width: 250px;
}

.address-holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.address-card {
  width: 260px;
  border: 1px solid #C7C7C7;
  padding: 15px;
  margin-right: 15px;
  margin-bottom: 15px;
}

.address-card .control-group {
  width: 15px;
  height: 15px;
  margin-top: 10px;
}

.address-card .details {
  font-weight: lighter;
}

.address-card .details span {
  display: block;
}

.address-card .details .control-links {
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.address-card .details .control-links .btn {
  height: 30px;
}

.edit-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #C7C7C7;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 345px;
  padding: 25px;
}

@media only screen and (max-width: 770px) {
  .account-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .account-content .sidebar {
    width: 100%;
  }
  .account-content .sidebar .menu-block .menu-block-title {
    height: 50px;
    padding-top: 13px;
    border-bottom: 1px solid #C7C7C7;
    border-top: 1px solid #C7C7C7;
  }
  .account-content .sidebar .menu-block .menu-block-title .right {
    display: block;
    float: right;
    -ms-flex-item-align: center;
        align-self: center;
  }
  .account-content .sidebar .menu-block .menubar {
    border: 0;
    display: none;
  }
  .account-content .sidebar .menu-block .menubar > li {
    margin-left: 0;
    width: 100%;
  }
  .account-content .sidebar .menu-block .menubar > li .icon {
    right: 0px;
  }
  .account-content .sidebar .menu-block .menubar > li:last-child {
    border-bottom: 1px solid #C7C7C7;
  }
  .account-content .account-layout {
    margin-left: 0%;
    margin-top: 20px;
    width: 100%;
  }
  .account-content .account-layout .account-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-bottom: 1px solid #C7C7C7;
    border-top: 1px solid #C7C7C7;
    height: 50px;
    margin-top: 10px;
  }
  .account-content .account-layout .account-head .account-action {
    margin-top: 12px;
    margin-left: 15px;
  }
  .account-content .account-layout .account-head span {
    margin-top: 13px;
    font-size: 18px;
  }
  .account-content .account-layout .account-head .horizontal-rule {
    display: none;
  }
  .account-content .account-layout .account-table-content {
    margin-top: 2%;
  }
  .account-content .account-layout .account-table-content table tbody tr {
    height: 70px;
  }
  .account-content .account-layout .account-table-content table tbody tr td {
    display: block;
  }
  .account-content .account-layout .account-table-content .address-holder {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .account-content .account-items-list,
  .account-content .edit-form {
    margin-top: 20px;
  }
  .account-content .account-items-list .responsive-empty,
  .account-content .edit-form .responsive-empty {
    display: block;
  }
  .account-content .control-group .control {
    width: 100%;
  }
}

.sale-container {
  color: #5E5E5E;
}

.sale-container .sale-section .secton-title {
  font-size: 18px;
  color: #8E8E8E;
  padding: 15px 0;
  border-bottom: 1px solid #C7C7C7;
}

.sale-container .sale-section .section-content {
  display: block;
  padding: 20px 0;
  border-bottom: 1px solid #E8E8E8;
}

.sale-container .sale-section .section-content .row {
  display: block;
  padding: 7px 0;
}

.sale-container .sale-section .section-content .row .title {
  width: 200px;
  letter-spacing: -0.26px;
  display: inline-block;
}

.sale-container .sale-section .section-content .row .value {
  letter-spacing: -0.26px;
  display: inline-block;
}

.sale-container .sale-section .section-content .order-box-container {
  display: inline-block;
  width: 100%;
}

.sale-container .sale-section .section-content .order-box-container .box {
  float: left;
  width: 25%;
}

.sale-container .sale-section .section-content .order-box-container .box .box-title {
  padding: 10px 0;
  font-size: 18px;
  color: #8E8E8E;
}

.sale-container .sale-section .section-content .order-box-container .box .box-content {
  color: #3A3A3A;
  padding-right: 10px;
}

.sale-container .sale-section .section-content .qty-row {
  display: block;
}

.sale-container .totals {
  padding-top: 20px;
  display: inline-block;
  width: 100%;
  border-top: solid 1px #E8E8E8;
}

.sale-container .totals .sale-summary {
  height: 130px;
  float: right;
  border-collapse: collapse;
}

.sale-container .totals .sale-summary tr td {
  padding: 5px 8px;
  width: auto;
  color: #3A3A3A;
}

.sale-container .totals .sale-summary tr.bold {
  font-weight: 600;
  font-size: 15px;
}

.sale-container .totals .sale-summary tr.border td {
  border-bottom: 1px solid #C7C7C7;
}

@media only screen and (max-width: 770px) {
  .sale-container .sale-section .section-content {
    border-bottom: none;
    padding: 10px 0;
  }
  .sale-container .sale-section .section-content .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .sale-container .sale-section .section-content .row .title {
    line-height: 20px;
  }
  .sale-container .sale-section .section-content .totals {
    border-top: none;
  }
  .sale-container .sale-section .section-content .totals .sale-summary {
    width: 100%;
  }
  .sale-container .sale-section .section-content .totals .sale-summary tr td:nth-child(2) {
    display: none;
  }
  .sale-container .sale-section .section-content .order-box-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .sale-container .sale-section .section-content .order-box-container .box {
    width: 100%;
    margin: 10px auto;
  }
  .sale-container .sale-section .section-content .qty-row {
    display: inline;
  }
}

.verify-account {
  text-align: center;
  background: #204d74;
  width: 200px;
  margin-right: auto;
  margin-left: auto;
  border-radius: 4px;
}

.verify-account a {
  color: #fff !important;
}

.cp-spinner {
  position: absolute;
  left: calc(50% - 24px);
  margin-top: calc(40% - 24px);
}

@media only screen and (max-width: 720px) {
  .cp-spinner {
    left: 50%;
    margin-left: -24px;
    top: 50%;
    margin-top: -24px;
  }
}

@media only screen and (max-width: 720px) {
  .error-container .wrapper {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
    margin: 10px 0px 20px 0px !important;
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: start !important;
    height: 100% !important;
  }
}

@media only screen and (max-width: 770px) {
  .table table {
    width: 100%;
  }
  .table table thead {
    display: none;
  }
  .table table tbody tr td:before {
    content: attr(data-value);
    font-size: 15px;
    font-weight: 600;
    display: inline-block;
    width: 120px;
  }
  .table table tbody td {
    border-bottom: none !important;
    display: block;
    width: 100% !important;
  }
  .table table tbody td div {
    position: relative;
    left: 100px;
    top: -20px;
  }
  .table table tbody tr {
    border: 1px solid #C7C7C7;
  }
}

.show-wishlist {
  z-index: -1 !important;
}

.filter-row-one .dropdown-filters {
  position: relative !important;
  right: 1px !important;
}

@media only screen and (max-width: 770px) {
  .table .grid-container {
    margin-top: 10px;
    overflow-x: hidden;
  }
  .table .grid-container .filter-row-one {
    display: block;
  }
  .table .grid-container .filter-row-one .dropdown-filters {
    margin-top: 10px;
  }
}

.rtl {
  direction: rtl;
}

.rtl .header .header-top div.left-content ul.logo-container {
  margin-right: 0px;
  margin-left: 12px;
}

.rtl .header .header-top div.left-content ul.search-container li.search-group .search-field {
  border: 2px solid #C7C7C7;
  padding-right: 12px;
  padding-left: 0px;
  border-radius: 2px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}

.rtl .header .header-top div.left-content ul.search-container li.search-group .search-icon-wrapper {
  border: 2px solid #C7C7C7;
  border-right: none;
  border-radius: 2px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}

.rtl .header .header-top div.right-content .right-content-menu > li {
  border-right: 2px solid #C7C7C7;
  padding: 0 15px 0 15px;
}

.rtl .header .header-top div.right-content .right-content-menu > li:last-child {
  padding-left: 0;
}

.rtl .header .header-top div.right-content .right-content-menu > li:first-child {
  border-right: 0;
  padding-right: 0;
}

.rtl .header .header-top div.right-content .right-content-menu .cart-dropdown-container .dropdown-list {
  left: 0px;
  right: unset !important;
}

.rtl .header .header-top div.right-content .right-content-menu .cart-dropdown-container .count {
  display: inline-block;
}

.rtl .header .header-top div.right-content .right-content-menu .account,
.rtl .header .header-top div.right-content .right-content-menu .currency {
  right: unset;
  left: 0px;
}

.rtl .header .header-top div.right-content .right-content-menu .guest div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.rtl .header .header-bottom .nav > li {
  float: right;
  margin-right: 0px;
  margin-left: 1px;
}

.rtl .header .header-bottom .nav a {
  padding: 0.8em 0.5em 0.8em 0.3em !important;
}

.rtl .header .header-bottom .nav li a > .icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.rtl .header .header-bottom .nav > li li:hover > ul {
  left: unset !important;
  right: 100% !important;
}

.rtl .header .header-bottom .nav ul {
  left: 99999em;
}

.rtl .header .search-responsive .search-content .right {
  float: left;
}

.rtl .dropdown-list {
  text-align: right;
}

.rtl .dropdown-list.bottom-right {
  left: 0px;
  right: auto;
}

@media only screen and (max-width: 720px) {
  .rtl .header .header-top div.right-content .menu-box {
    margin-left: 0px;
    margin-right: 5px;
  }
  .rtl .header .header-top div.right-content .right-content-menu .account {
    position: absolute;
    left: 0px;
    right: auto;
  }
  .rtl .header .header-top div.right-content .right-content-menu > li {
    padding: 0;
    border: 0;
  }
  .rtl .header .header-top div.right-content .search-box {
    margin-left: 5px;
  }
  .rtl .header .header-bottom .nav > li {
    float: none;
  }
  .rtl .header .header-bottom .nav li > .icon {
    float: left;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .rtl .header .header-bottom .icon.icon-arrow-down {
    margin-left: 5px;
  }
}

.rtl section.slider-block div.slider-content div.slider-control {
  left: 2%;
  right: auto;
}

.rtl section.slider-block div.slider-content div.slider-control .slider-left {
  float: left;
}

.rtl section.slider-block div.slider-content div.slider-control .slider-right {
  margin-left: 5px;
}

@media only screen and (max-width: 720px) {
  .rtl section.slider-block div.slider-content div.slider-control {
    left: 0%;
  }
}

.rtl .main-container-wrapper .product-card .sticker {
  left: auto;
  right: 20px;
}

.rtl .main-container-wrapper .product-card .cart-wish-wrap .addtocart {
  margin-right: 0px;
  margin-left: 10px;
}

.rtl section.product-detail div.layouter .form-container div.product-image-group {
  margin-right: 0px;
  margin-left: 30px;
}

.rtl section.product-detail div.layouter .form-container div.product-image-group .add-to-buttons {
  float: left !important;
}

.rtl section.product-detail div.layouter .form-container div .thumb-list {
  margin-left: 4px;
  margin-right: 0px;
}

.rtl section.product-detail div.layouter .form-container .details .accordian .accordian-header {
  padding: 20px 0px 20px 15px;
}

.rtl section.product-detail div.layouter .form-container .details .accordian .accordian-header .icon {
  float: left;
}

.rtl section.product-detail div.layouter .form-container .details .accordian .accordian-header .expand-icon {
  margin-left: 10px;
}

.rtl section.product-detail div.layouter .form-container .details .full-specifications td:first-child {
  padding-right: 0px;
  padding-left: 40px;
}

.rtl section.product-detail div.layouter .form-container .details .product-ratings .total-reviews {
  margin-left: 0px;
  margin-right: 15px;
}

@media only screen and (max-width: 720px) {
  .rtl section.product-detail div.layouter .form-container div.product-image-group {
    margin-right: 0px;
    margin-left: 0px;
  }
}

.rtl .main .category-container .layered-filter-wrapper, .rtl .main .category-container .responsive-layred-filter,
.rtl .main .category-container .responsive-layred-filter {
  padding-right: 0px;
  padding-left: 20px;
}

.rtl .main .top-toolbar .pager {
  float: left;
}

.rtl .main .top-toolbar .pager .view-mode {
  margin-right: 0px;
  margin-left: 20px;
}

.rtl .main .top-toolbar .pager .sorter {
  margin-right: 0px;
  margin-left: 10px;
}

.rtl .main .top-toolbar .pager label {
  margin-right: 0px;
  margin-left: 5px;
}

.rtl .main .top-toolbar .page-info {
  float: right;
}

.rtl section.review .review-layouter .review-form {
  margin-left: 0px;
  margin-right: 20px;
}

.rtl section.review .review-layouter .review-form .heading .right {
  float: left;
}

.rtl section.review .review-layouter .review-form .ratings-reviews .right-side .rater .star-name {
  margin-right: 0px;
  margin-left: 5px;
}

@media only screen and (max-width: 770px) {
  .rtl section.review .review-layouter .review-form {
    margin-right: 0px;
  }
}

.rtl section.cart .cart-content .left-side {
  width: 70%;
  float: right;
}

.rtl section.cart .cart-content .left-side .misc-controls a.link {
  margin-left: 15px;
  margin-right: 0px;
}

.rtl section.cart .cart-content .right-side {
  width: 30%;
  padding-right: 40px;
  padding-left: 0px;
}

.rtl .order-summary .item-detail label.right,
.rtl .payable-amount label.right {
  float: left;
}

.rtl .item div {
  margin-left: 15px;
  margin-right: 0px !important;
}

.rtl .cart-item-list .item .item-details .misc div.qty-text {
  margin-right: 0px;
  margin-left: 10px;
}

.rtl .cart-item-list .item .item-details .misc input.box {
  margin-right: 0px;
  margin-left: 30px;
}

.rtl .cart-item-list .item .item-details .misc .remove {
  margin-left: 30px;
  margin-right: 0px;
}

.rtl .cart-item-list .item .item-details .misc .control-group label {
  margin-left: 15px;
  margin-right: 0px;
}

@media only screen and (max-width: 770px) {
  .rtl section.cart .cart-content .left-side {
    width: 100%;
    float: none;
  }
  .rtl section.cart .cart-content .left-side .misc-controls div button {
    margin-right: 0px;
  }
  .rtl section.cart .cart-content .right-side {
    width: 100%;
    padding-right: 0px;
  }
}

.rtl .checkout-process .col-right {
  padding-left: 0px;
  padding-right: 40px;
}

.rtl .checkout-process .col-main {
  padding-left: 40px;
  padding-right: 0px;
}

.rtl .checkout-process .col-main ul.checkout-steps li span {
  margin-right: 7px;
  margin-left: 0px;
}

.rtl .checkout-process .col-main .step-content .form-header h1 {
  float: right;
}

.rtl .checkout-process .col-main .step-content .form-header .btn {
  float: left;
}

.rtl .checkout-process .col-main .step-content .payment-methods .control-info {
  margin-right: 28px;
  margin-left: 0px;
}

.rtl .checkout-process .col-main .step-content .order-description .pull-left,
.rtl .checkout-process .col-main .step-content .order-description .billing-address,
.rtl .checkout-process .col-main .step-content .address .pull-left,
.rtl .checkout-process .col-main .step-content .address .billing-address {
  float: right !important;
}

.rtl .checkout-process .col-main .step-content .order-description .pull-right,
.rtl .checkout-process .col-main .step-content .order-description .shipping-address,
.rtl .checkout-process .col-main .step-content .address .pull-right,
.rtl .checkout-process .col-main .step-content .address .shipping-address {
  float: left !important;
}

.rtl .checkbox {
  margin: 10px 0px 5px 5px;
}

.rtl .radio {
  margin: 10px 0px 5px 5px;
}

.rtl .radio .radio-view {
  margin-left: 5px;
  margin-right: 0px;
}

.rtl .radio input {
  right: 0;
  left: auto;
}

@media only screen and (max-width: 770px) {
  .rtl .checkout-process .col-main {
    padding-left: 0px;
  }
}

.rtl .account-content .account-layout {
  margin-left: 0px;
  margin-right: 40px;
}

.rtl .account-content .menu-block .menubar li {
  margin-left: 0%;
  margin-right: 5%;
}

.rtl .account-content .menu-block .menubar li a {
  text-align: right;
}

.rtl .account-content .menu-block .menubar li .icon {
  right: unset;
  left: 12px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.rtl .account-head .account-action {
  float: left;
}

.rtl .account-item-card .media-info .info {
  margin-right: 20px;
  margin-left: 0px;
}

.rtl .account-item-card .operations a span {
  float: left;
}

.rtl .table table {
  text-align: right;
}

.rtl .sale-container .totals .sale-summary {
  float: left;
}

.rtl .sale-container .sale-section .section-content .order-box-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media all and (max-width: 770px) {
  .rtl .account-content .account-layout {
    margin-right: 0px;
  }
  .rtl .account-content .account-layout .account-head .account-action {
    margin-left: 0px;
  }
  .rtl .account-content .sidebar .menu-block .menu-block-title .right {
    float: left;
  }
  .rtl .account-content .sidebar .menu-block .menubar > li {
    margin-right: 0%;
  }
}

.rtl .footer .footer-content .footer-list-container .list-container .list-group li span.icon {
  margin-left: 5px;
  margin-right: 0px;
}

@media all and (max-width: 720px) {
  .rtl .footer {
    padding-right: 15px;
    padding-left: 10%;
  }
  .rtl .footer .footer-list-container {
    padding-right: 0px !important;
  }
}

.rtl .cp-spinner {
  position: absolute;
  right: calc(50% - 24px);
  margin-top: calc(40% - 24px);
}

@media only screen and (max-width: 720px) {
  .rtl .cp-spinner {
    right: 50%;
    margin-right: -24px;
    left: auto;
  }
}

.rtl .product-list .product-card .product-information {
  padding-left: 0px;
  padding-right: 30px;
  float: left;
}

.rtl .zoom-image-direction {
  left: 0;
  right: 476px !important;
}

.banner-container {
  width: 100%;
  float: left;
  margin-bottom: 7%;
}

.banner-container .left-banner {
  padding-right: 20px;
  width: 60%;
  float: left;
}

.banner-container .left-banner img {
  width: 100%;
}

.banner-container .right-banner {
  padding-left: 20px;
  width: 40%;
  float: left;
}

.banner-container .right-banner img {
  width: 100%;
}

.banner-container .right-banner img:first-child {
  padding-bottom: 20px;
  height: 50%;
  display: block;
}

.banner-container .right-banner img:last-child {
  padding-top: 20px;
  height: 50%;
  display: block;
}

@media all and (max-width: 720px) {
  .banner-container .left-banner {
    padding-right: 0;
    width: 100%;
  }
  .banner-container .right-banner {
    padding-left: 0;
    width: 100%;
  }
  .banner-container .right-banner img:first-child {
    padding-bottom: 0;
    padding-top: 25px;
  }
  .banner-container .right-banner img:last-child {
    padding-top: 25px;
  }
}

.static-container {
  display: block;
  width: 100%;
  padding: 10px;
  margin-left: auto;
  margin-right: auto;
}

.static-container.one-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.static-container.two-column {
  display: grid;
  grid-template-columns: 48% 48%;
  grid-column-gap: 4%;
}

.static-container.three-column {
  display: grid;
  grid-template-columns: 30% 30% 30%;
  grid-column-gap: 4%;
}

@media (max-width: 720px) {
  .web-slider {
    display: none;
  }
  section.slider-block div.slider-content ul.slider-images li img {
    height: auto !important;
  }
  section.slider-block div.slider-content {
    height: auto;
  }
  section.slider-block div.slider-content div.slider-control .dark-left-icon {
    height: 35px !important;
    width: 35px !important;
  }
  section.slider-block div.slider-content div.slider-control .light-right-icon {
    height: 35px !important;
    width: 35px !important;
  }
  section.slider-block div.slider-content div.slider-control {
    bottom: 43% !important;
  }
}

@media (min-width: 720px) {
  section.mobile-slider {
    display: none;
  }
}

.a-center {
  text-align: center !important;
}

/*======Ronde-B_square Fonts CSS Start==========*/
@font-face {
  font-family: 'Ronde-B-Square';
  src: url("/fonts/Ronde-B-Square.eot");
  src: url("/fonts/Ronde-B-Square.eot?#iefix") format("embedded-opentype"), url("/fonts/Ronde-B-Square.woff2") format("woff2"), url("/fonts/Ronde-B-Square.woff") format("woff"), url("/fonts/Ronde-B-Square.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

.featured-heading {
  font-family: 'Ronde-B-Square';
}

.mr-20 {
  margin-right: 20px;
}

.contact-inner {
  padding: 30px;
  border: 3px solid #666d09;
  border-radius: 30px;
}

.contact-inner form {
  padding: 30px;
  position: relative;
  margin: 0 auto 40px;
  max-width: 520px;
}

.contact-inner .form-group {
  margin: 0 0 40px;
}

.contact-inner label {
  font-size: 15px;
  font-weight: 500;
  margin: 0 0 10px;
  display: block;
}

.contact-inner label.radio-btn {
  display: inline-block;
  font-size: 16px;
  padding: 8px;
  width: 160px;
  text-align: center;
  border: 1px solid #e2f4da;
  color: #000;
  background: #ebf5ec;
  margin: 5px 8px;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 2px !important;
}

.contact-inner label.radio-btn.selected, .contact-inner label.radio-btn:hover {
  background: #24bf02;
  color: #fff;
}

.contact-inner label.radio-btn.number {
  width: 30px;
  height: 30px;
  padding: 5px;
  border-radius: 50% !important;
}

.contact-inner label.radio-btn input[type="radio"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
  display: none;
}

.contact-inner textarea {
  width: 100%;
  background-color: #f6fdf1;
  height: 100px;
  border: 1px solid #e2f4da;
  border-radius: 4px;
  padding: 10px;
  font-size: 15px;
}

.contact-inner small {
  float: right;
  font-size: 13px;
}

.contact-inner input {
  width: 100%;
  padding: 10px;
  background-color: #f6fdf1;
  border: 1px solid #e2f4da;
  border-radius: 4px;
  font-size: 15px;
}

.contact-inner .button-block {
  text-align: right;
}

.contact-inner .button-block button {
  background-color: #24bf02;
  color: #fff;
  padding: 8px 60px;
  border: none;
  font-size: 18px;
  cursor: pointer;
  border-radius: 5px;
}

/*==Responsive CSS Start==*/
@media all and (max-width: 1024px) {
  /*==Product Page CSS Start==*/
  .add-to-buttons .addtocart {
    padding: 16px 10px;
  }
  .add-to-buttons .buy-now-lnk {
    padding: 16px 10px;
  }
}

@media all and (max-width: 960px) {
  /*==Product Page CSS Start==*/
  .product-detail-rep .add-to-buttons {
    width: 80%;
  }
}

@media screen and (max-width: 767px) {
  /*==Home Page CSS Start==*/
  .main-container-wrapper .category-images {
    margin-bottom: 40px;
  }
  .main-container-wrapper .featured-products {
    margin-bottom: 40px;
  }
  .main-container-wrapper .featured-products .featured-heading {
    font-size: 30px;
  }
  .main-container-wrapper .featured-products.featured .card-big > a {
    height: auto;
  }
  .main-container-wrapper .blog-grid-3 {
    display: inline-block;
  }
  .contact-inner label.radio-btn {
    width: 126px;
    margin: 5px 2px;
  }
  .contact-inner label.radio-btn.number {
    width: 22px;
    height: 22px;
    line-height: 22px;
    font-size: 12px;
    padding: 0px;
    margin: 0px;
  }
  .contact-inner .form-group {
    margin: 0 0 20px;
  }
  .buy-option span {
    font-size: 11px;
    margin: 0 2px;
  }
  /*==Product Page CSS Start==*/
  .add-to-buttons {
    display: inline-block !important;
    width: 100%;
  }
  .add-to-buttons .addtocart {
    padding: 10px 0;
    font-size: 18px;
    width: 100%;
    margin: 0 0 14px;
  }
  .add-to-buttons .buy-now-lnk {
    width: 100%;
    display: inline-block;
    padding: 10px 0;
  }
  .add-to-buttons .buy-now-lnk .buynow {
    font-size: 18px;
  }
  .product-detail-rep .add-to-buttons {
    width: 100%;
  }
  /*==Footer CSS Start==*/
  .list-container {
    text-align: center;
  }
  .list-container:nth-child(3) {
    text-align: left;
    max-width: 140px;
    margin: 0 auto 20px;
  }
  .footer .footer-list-container {
    display: inline-block;
    padding-left: 0px;
    padding-right: 0px;
    width: 100%;
  }
  .footer .list-group {
    padding-top: 15px;
  }
  .footer-small .footer-list-container {
    display: inline-block;
    padding-left: 0px;
    padding-right: 0px;
    width: 100%;
  }
  /*===address holder and address card==*/
  .address-card {
    width: 100%;
    margin: 0px;
  }
}

.col_12 {
  width: 100%;
}

.col_5 {
  width: 40%;
}

.col_7 {
  width: 60%;
}

.product-detail-rep {
  max-width: 900px;
  margin: 0 auto;
}

.product-detail-image {
  text-align: center;
  margin: 0 0 50px;
}

.product-detail-image img {
  margin: 0 auto;
  width: 100%;
}

.product-detail-image h4 {
  text-align: left;
  font-size: 20px;
  font-weight: 500;
}

.specification-main {
  margin: 0 0 60px;
  border: 2px solid #000001;
  padding: 3px;
  border-radius: 12px;
}

.specification-inner {
  padding: 50px 70px;
  border: 2px solid #000001;
  border-radius: 8px;
}

.specification-top {
  border-bottom: 3px solid #e4e4e4;
  padding: 0 0 26px;
  margin: 0 0 26px;
}

.specification-top a {
  display: inline-block;
  vertical-align: middle;
}

.specification-top a img {
  width: 150px;
}

.specification-top h3 {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 0 210px;
  font-size: 45px;
  font-weight: 900;
  line-height: normal;
  font-family: 'Ronde-B-Square';
}

.specification-bottom {
  padding: 0 120px;
}

.specification-bottom ul li {
  display: inline-block;
  width: 100%;
  padding: 10px 0;
}

.specification-bottom ul li h3 {
  display: inline-block;
  margin: 0;
  width: 50%;
  font-size: 25px;
  color: #000000;
  font-family: 'Ronde-B-Square';
  line-height: normal;
}

.specification-bottom ul li h4 {
  float: right;
  margin: 0;
  font-size: 25px;
  color: #000000;
  width: 40%;
  font-family: 'Ronde-B-Square';
  line-height: normal;
}

.description-block {
  margin: 0 0 70px;
}

.description-block h2.title {
  border-bottom: 3px solid #e4e4e4;
  line-height: normal;
  margin: 0 0 20px;
  font-family: 'Ronde-B-Square';
  font-size: 45px;
}

.description-block p {
  line-height: 30px;
  margin: 0 0 24px;
}

.description-video-block {
  padding: 0 80px;
  margin: 0 0 70px;
}

.description-video-block video {
  width: 100%;
}

.sub-pictures-block {
  overflow: hidden;
  margin-left: -8px;
  margin-right: -8px;
  margin-bottom: 70px;
}

.sub-pictures-common {
  float: left;
  width: 33.33%;
  padding: 0 8px 8px;
}

.sub-pictures-common img {
  width: 100%;
  border: 3px solid #e4e4e4;
}

.contact-main-block {
  margin: 340px 0 130px;
  background-color: #FFFFD9;
  position: relative;
  border-radius: 30px;
  width: 80%;
  margin-left: 80px;
}

.contact-main-block .one {
  position: absolute;
  top: -136px;
  right: -70px;
  z-index: 9;
  width: 90%;
}

.contact-main-block .two {
  position: absolute;
  right: -12%;
  top: 17%;
  z-index: -1;
}

.contact-main-block .three {
  position: absolute;
  right: -14.5%;
  top: 28%;
  z-index: 9;
}

.contact-main-block .four {
  position: absolute;
  right: -13%;
  bottom: -10%;
  z-index: -1;
}

.contact-main-block .five {
  position: absolute;
  left: -16%;
  bottom: -10%;
  z-index: 9;
}

.contact-main-block .six {
  position: absolute;
  left: -10%;
  top: 30%;
  z-index: -1;
}

.contact-main-block .seven {
  position: absolute;
  left: -12%;
  top: -11%;
  z-index: -1;
}

.rules-policy-block {
  margin: 30px 0 150px;
}

.rules-policy-block h2.title {
  border-bottom: 3px solid #e4e4e4;
  line-height: normal;
  margin: 0 0 20px;
  font-family: 'Ronde-B-Square';
  font-size: 45px;
}

.rules-policy-block ul li {
  padding: 8px;
}

.related-products-block h2.title {
  border-bottom: 3px solid #e4e4e4;
  line-height: normal;
  margin: 0 0 20px;
  font-family: 'Ronde-B-Square';
  font-size: 45px;
}

.related-products-inner {
  overflow: hidden;
  margin-left: -8px;
  margin-right: -8px;
  margin-bottom: 70px;
}

.related-products-inner .related-products-common {
  float: left;
  width: 33.33%;
  padding: 0 8px 8px;
}

.related-products-inner .related-products-common img {
  width: 100%;
  border: 3px solid #e4e4e4;
}

.related-products-inner .related-products-common .product-name {
  display: block;
  margin-top: 10px;
  color: #242424;
}

/*Eye CSS Start*/
.eyes,
.eye-lid {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.65em;
  width: 3em;
  height: 3em;
  position: absolute;
  left: 0.25em;
  top: 0.3em;
}

.eye-lid {
  top: 17%;
  right: 30%;
  left: auto;
}

.eye {
  position: relative;
  display: inline-block;
  border-radius: 50%;
  width: 75%;
  height: 75%;
  background-color: black;
  border-radius: 50%;
}

.eye-lid {
  background-color: white;
  border-radius: 1.5em 1.5em 1.5em 1.5em / 1.6em 1.6em 1.4em 1.4em;
  -webkit-box-shadow: 0.03em 0.14em rgba(0, 0, 0, 0.1);
          box-shadow: 0.03em 0.14em rgba(0, 0, 0, 0.1);
  -webkit-animation: blink forwards infinite 10s ease-in-out;
          animation: blink forwards infinite 10s ease-in-out;
}

.eye:after {
  /*white shadow*/
  --pupil-size: 0.5em;
  position: absolute;
  top: 0.05em;
  left: 0.3em;
  width: var(--pupil-size);
  height: var(--pupil-size);
  background: white;
  border-radius: 50%;
  content: " ";
}

@-webkit-keyframes blink {
  0%,
  2%,
  60%,
  62%,
  100% {
    -webkit-transform: scaleX(1) scaleY(1);
            transform: scaleX(1) scaleY(1);
  }
  1%,
  61% {
    -webkit-transform: scaleX(1.3) scaleY(0.1);
            transform: scaleX(1.3) scaleY(0.1);
  }
}

@keyframes blink {
  0%,
  2%,
  60%,
  62%,
  100% {
    -webkit-transform: scaleX(1) scaleY(1);
            transform: scaleX(1) scaleY(1);
  }
  1%,
  61% {
    -webkit-transform: scaleX(1.3) scaleY(0.1);
            transform: scaleX(1.3) scaleY(0.1);
  }
}

/*======Responsive CSS Start=======*/
@media all and (max-width: 1024px) {
  .contact-main-block {
    margin: 35% 0 7%;
    width: 100%;
  }
  .contact-main-block .one {
    display: block;
    top: 0;
    right: 0;
    margin-top: -19%;
    width: 90%;
  }
  .contact-main-block .one img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  .contact-main-block .two {
    display: none;
  }
  .contact-main-block .three {
    display: none;
  }
  .contact-main-block .four {
    display: none;
  }
  .contact-main-block .five {
    display: none;
  }
  .contact-main-block .six {
    display: none;
  }
  .contact-main-block .seven {
    display: none;
  }
  .contact-inner {
    padding: 60px 10px 5px 10px;
  }
  .contact-inner form {
    padding: 0px;
  }
  .featured-heading {
    font-size: 45px;
  }
}

@media all and (max-width: 960px) {
  .specification-bottom {
    padding: 0px;
  }
}

@media screen and (max-width: 767px) {
  .product-detail-image {
    margin: 0 0 30px;
  }
  .product-detail-image h4 {
    font-size: 16px;
    margin: 8px 0 0;
  }
  .specification-main {
    margin: 0 0 30px;
  }
  .specification-inner {
    padding: 16px;
    border: 1px solid #000001;
  }
  .specification-top a img {
    width: 80px;
  }
  .specification-top {
    padding: 0 0 10px;
    margin: 0px 0 10px;
  }
  .specification-top h3 {
    margin: 0px 0px 0px 40px;
    font-size: 26px;
  }
  .specification-bottom ul li {
    padding: 4px 0;
  }
  .specification-bottom ul li h3 {
    margin: 0 0 4px;
    font-size: 16px;
  }
  .specification-bottom ul li h4 {
    padding: 0px;
    font-size: 16px;
  }
  .description-video-block {
    padding: 0;
    margin: 0 0 40px;
  }
  .description-block iframe {
    width: 100%;
    height: auto;
  }
  .description-block h2 {
    line-height: 26px;
  }
  .description-block p {
    line-height: 22px;
    margin: 0 0 18px;
  }
  .description-block h2.title {
    font-size: 26px;
    line-height: 30px;
  }
  .contact-main-block {
    margin: 35% 0 12%;
  }
  .rules-policy-block {
    margin: 0px 0 30px;
  }
  .rules-policy-block h2.title {
    font-size: 26px;
    line-height: 30px;
  }
  .related-products-block h2.title {
    font-size: 30px;
  }
  .related-products-block .related-products-inner {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 600px) {
  .eyes,
  .eye-lid {
    width: 1.5em;
    height: 1.5em;
  }
  .eye-lid {
    top: 15%;
    right: 29%;
  }
}
