/*
Shop Area Style
======================================================*/
.fww-single-product-card {
  margin-bottom: 30px;
}
.fww-single-product-card .product-img {
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.fww-single-product-card .product-img img {
  overflow: hidden;
  transition: var(--transition);
}
.fww-single-product-card .product-img .tags {
  position: absolute;
  left: 30px;
  top: 30px;
}
.fww-single-product-card .product-img .tags span {
  display: inherit;
  padding: 3px 15px;
  font-size: 12px;
  color: var(--whiteColor);
  margin-bottom: 10px;
}
.fww-single-product-card .product-img .tags span:last-child {
  margin-bottom: 0;
}
.fww-single-product-card .product-img .tags span.new {
  background-color: #76bc42;
}
.fww-single-product-card .product-img .tags span.out-stock {
  background-color: var(--redColor);
}
.fww-single-product-card .product-img .tags span.sale {
  background-color: var(--redColor);
}
.fww-single-product-card .product-img .tags span.offer {
  background-color: var(--redColor);
}
.fww-single-product-card .product-img .tags span.hot {
  background-color: #e9a400;
}
.fww-single-product-card .product-img .shop-btns {
  padding-left: 0;
  margin-bottom: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  text-align: center;
  transform: translateY(-50%);
  transition: var(--transition);
  opacity: 0;
}
.fww-single-product-card .product-img .shop-btns li {
  display: inline-block;
  margin-right: 10px;
}
.fww-single-product-card .product-img .shop-btns li:last-child {
  margin-right: 0;
}
.fww-single-product-card .product-img .shop-btns li a {
  height: 40px;
  width: 40px;
  line-height: 42px;
  border-radius: 100%;
  text-align: center;
  background-color: var(--whiteColor);
  display: inline-block;
  font-size: 16px;
  color: var(--headingColor);
  transition: var(--transition);
}
.fww-single-product-card .product-img .shop-btns li a img {
  transition: var(--transition);
  position: relative;
  top: -3px;
  width: auto;
  display: inline-block;
}
.fww-single-product-card .product-img .shop-btns li a:hover {
  color: var(--whiteColor);
  background-color: var(--headingColor);
}
.fww-single-product-card .product-img .shop-btns li a:hover img {
  filter: invert(1);
}
.fww-single-product-card .product-img .delete {
  position: absolute;
  right: 20px;
  top: 20px;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 100%;
  color: var(--headingColor);
  background-color: var(--whiteColor);
  transition: var(--transition);
  opacity: 0;
}
.fww-single-product-card .product-img .delete:hover {
  background-color: var(--headingColor);
  color: var(--whiteColor);
}
.fww-single-product-card .tab-menu {
  padding-left: 0;
  margin-bottom: 0;
}
.fww-single-product-card .tab-menu li {
  display: inline-block;
}
.fww-single-product-card .tab-menu li a img {
  height: 60px;
  width: 40px;
  border: 1px solid transparent;
  transition: var(--transition);
}
.fww-single-product-card .tab-menu li a.active img, .fww-single-product-card .tab-menu li a:hover img, .fww-single-product-card .tab-menu li a:focus img {
  border-color: var(--headingColor);
}
.fww-single-product-card .tab-box {
  display: none;
}
.fww-single-product-card .tab-box:first-child {
  display: block;
}
.fww-single-product-card .content {
  margin-top: 20px;
  position: relative;
  padding-right: 70px;
}
.fww-single-product-card .content h3 {
  font-size: 16px;
  margin-bottom: 8px;
}
.fww-single-product-card .content h3 a {
  color: var(--headingColor);
  transition: var(--transition);
}
.fww-single-product-card .content h3 a:hover {
  color: var(--redColor);
}
.fww-single-product-card .content span {
  color: var(--headingColor);
}
.fww-single-product-card .content span del {
  color: var(--paragraphColor);
  padding-left: 5px;
}
.fww-single-product-card .content .colors {
  padding-left: 0;
  margin-bottom: 0;
  position: absolute;
  top: 20px;
  right: 0;
}
.fww-single-product-card .content .colors li {
  display: inline-block;
  margin-right: 5px;
}
.fww-single-product-card .content .colors li:last-child {
  margin-right: 0;
}
.fww-single-product-card .content .colors li a {
  display: inline-block;
  position: relative;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  transition: var(--transition);
}
.fww-single-product-card .content .colors li a::before {
  position: absolute;
  content: "";
  height: 19px;
  width: 19px;
  border-radius: 100%;
  border: 1px solid var(--headingColor);
  left: -2px;
  top: -2px;
  transition: var(--transition);
  opacity: 0;
}
.fww-single-product-card .content .colors li a.color-17171d {
  background-color: #17171d;
}
.fww-single-product-card .content .colors li a.color-d1b5a6 {
  background-color: #d1b5a6;
}
.fww-single-product-card .content .colors li a.color-964c39 {
  background-color: #964c39;
}
.fww-single-product-card .content .colors li a.color-b1adbb {
  background-color: #b1adbb;
}
.fww-single-product-card .content .colors li a.color-red {
  background-color: var(--redColor);
}
.fww-single-product-card .content .colors li a.color-018c8d {
  background-color: #018c8d;
}
.fww-single-product-card .content .colors li a.color-d9d3d3 {
  background-color: #d9d3d3;
}
.fww-single-product-card .content .colors li a.color-d57371 {
  background-color: #d57371;
}
.fww-single-product-card .content .colors li a.color-7f8fca {
  background-color: #7f8fca;
}
.fww-single-product-card .content .colors li a.color-dcdbe3 {
  background-color: #dcdbe3;
}
.fww-single-product-card .content .colors li a.color-1c1922 {
  background-color: #1c1922;
}
.fww-single-product-card .content .colors li a.color-264769 {
  background-color: #264769;
}
.fww-single-product-card .content .colors li a.color-dacfcc {
  background-color: #dacfcc;
}
.fww-single-product-card .content .colors li a.color-636a82 {
  background-color: #636a82;
}
.fww-single-product-card .content .colors li a.color-977d76 {
  background-color: #977d76;
}
.fww-single-product-card .content .colors li a.color-cbc6c4 {
  background-color: #cbc6c4;
}
.fww-single-product-card .content .colors li a.color-575663 {
  background-color: #575663;
}
.fww-single-product-card .content .colors li a.color-c79e01 {
  background-color: #c79e01;
}
.fww-single-product-card .content .colors li a.color-3d5483 {
  background-color: #3d5483;
}
.fww-single-product-card .content .colors li a.color-ececeb {
  background-color: #ececeb;
}
.fww-single-product-card .content .colors li a.color-a47c6b {
  background-color: #a47c6b;
}
.fww-single-product-card .content .colors li a.color-271510 {
  background-color: #271510;
}
.fww-single-product-card .content .colors li a.color-d8bab5 {
  background-color: #d8bab5;
}
.fww-single-product-card .content .colors li a.color-bb977f {
  background-color: #bb977f;
}
.fww-single-product-card .content .colors li a.color-dcc7c7 {
  background-color: #dcc7c7;
}
.fww-single-product-card .content .colors li a.color-86554f {
  background-color: #86554f;
}
.fww-single-product-card .content .colors li a.color-c5b6b3 {
  background-color: #c5b6b3;
}
.fww-single-product-card .content .colors li a.color-8b9496 {
  background-color: #8b9496;
}
.fww-single-product-card .content .colors li a.color-cecddb {
  background-color: #cecddb;
}
.fww-single-product-card .content .colors li a.color-2a2722 {
  background-color: #2a2722;
}
.fww-single-product-card .content .colors li a.color-c6aa9d {
  background-color: #c6aa9d;
}
.fww-single-product-card .content .colors li a.color-d4cedc {
  background-color: #d4cedc;
}
.fww-single-product-card .content .colors li a.color-f8cbd8 {
  background-color: #f8cbd8;
}
.fww-single-product-card .content .colors li a.color-ceccda {
  background-color: #ceccda;
}
.fww-single-product-card .content .colors li a.color-ddad96 {
  background-color: #ddad96;
}
.fww-single-product-card .content .colors li a.color-cca9b0 {
  background-color: #cca9b0;
}
.fww-single-product-card .content .colors li a.color-cb977b {
  background-color: #cb977b;
}
.fww-single-product-card .content .colors li a.color-392d30 {
  background-color: #392d30;
}
.fww-single-product-card .content .colors li a.color-5d7371 {
  background-color: #5d7371;
}
.fww-single-product-card .content .colors li a.color-b0bce2 {
  background-color: #b0bce2;
}
.fww-single-product-card .content .colors li a.color-839fac {
  background-color: #839fac;
}
.fww-single-product-card .content .colors li a.color-bbc1d3 {
  background-color: #bbc1d3;
}
.fww-single-product-card .content .colors li a.color-efb99b {
  background-color: #efb99b;
}
.fww-single-product-card .content .colors li a.color-e6e9f2 {
  background-color: #e6e9f2;
}
.fww-single-product-card .content .colors li a.color-3d2924 {
  background-color: #3d2924;
}
.fww-single-product-card .content .colors li a.color-d5b5bc {
  background-color: #d5b5bc;
}
.fww-single-product-card .content .colors li a.color-beaed3 {
  background-color: #beaed3;
}
.fww-single-product-card .content .colors li a.color-e3d8db {
  background-color: #e3d8db;
}
.fww-single-product-card .content .colors li a.color-728488 {
  background-color: #728488;
}
.fww-single-product-card .content .colors li a.color-d0cfcd {
  background-color: #d0cfcd;
}
.fww-single-product-card .content .colors li a.color-323c53 {
  background-color: #323c53;
}
.fww-single-product-card .content .colors li a.color-dfdbd7 {
  background-color: #dfdbd7;
}
.fww-single-product-card .content .colors li a.color-2b1e21 {
  background-color: #2b1e21;
}
.fww-single-product-card .content .colors li a.color-ae3b35 {
  background-color: #ae3b35;
}
.fww-single-product-card .content .colors li a.color-89a7c7 {
  background-color: #89a7c7;
}
.fww-single-product-card .content .colors li a.color-a6bfda {
  background-color: #a6bfda;
}
.fww-single-product-card .content .colors li a.color-76cca8 {
  background-color: #76cca8;
}
.fww-single-product-card .content .colors li a.color-321f1a {
  background-color: #321f1a;
}
.fww-single-product-card .content .colors li a.color-bf97a1 {
  background-color: #bf97a1;
}
.fww-single-product-card .content .colors li a.color-e1b9a9 {
  background-color: #e1b9a9;
}
.fww-single-product-card .content .colors li a.color-2e282d {
  background-color: #2e282d;
}
.fww-single-product-card .content .colors li a.color-6471af {
  background-color: #6471af;
}
.fww-single-product-card .content .colors li a.color-c0cae9 {
  background-color: #c0cae9;
}
.fww-single-product-card .content .colors li a.color-d5b3a2 {
  background-color: #d5b3a2;
}
.fww-single-product-card .content .colors li a.color-9dabb8 {
  background-color: #9dabb8;
}
.fww-single-product-card .content .colors li a.color-dfdfdf {
  background-color: #dfdfdf;
}
.fww-single-product-card .content .colors li a.color-666e83 {
  background-color: #666e83;
}
.fww-single-product-card .content .colors li a.color-06050a {
  background-color: #06050a;
}
.fww-single-product-card .content .colors li a.color-c2c0c9 {
  background-color: #c2c0c9;
}
.fww-single-product-card .content .colors li a.color-9a8990 {
  background-color: #9a8990;
}
.fww-single-product-card .content .colors li a.color-d2ca66 {
  background-color: #d2ca66;
}
.fww-single-product-card .content .colors li a.color-242125 {
  background-color: #242125;
}
.fww-single-product-card .content .colors li a.color-6b6a73 {
  background-color: #6b6a73;
}
.fww-single-product-card .content .colors li a.color-c1b8c5 {
  background-color: #c1b8c5;
}
.fww-single-product-card .content .colors li a.color-46434e {
  background-color: #46434e;
}
.fww-single-product-card .content .colors li a.color-121212 {
  background-color: #121212;
}
.fww-single-product-card .content .colors li a.color-814db4 {
  background-color: #814db4;
}
.fww-single-product-card .content .colors li a.color-01aa69 {
  background-color: #01aa69;
}
.fww-single-product-card .content .colors li a.color-b4b7c3 {
  background-color: #b4b7c3;
}
.fww-single-product-card .content .colors li a.color-4b4141 {
  background-color: #4b4141;
}
.fww-single-product-card .content .colors li a.color-dbbeb2 {
  background-color: #dbbeb2;
}
.fww-single-product-card .content .colors li a.color-dd71b0 {
  background-color: #dd71b0;
}
.fww-single-product-card .content .colors li a.color-f0f0f2 {
  background-color: #f0f0f2;
}
.fww-single-product-card .content .colors li a.color-1f171f {
  background-color: #1f171f;
}
.fww-single-product-card .content .colors li a.color-3f4160 {
  background-color: #3f4160;
}
.fww-single-product-card .content .colors li a.color-eaddc9 {
  background-color: #eaddc9;
}
.fww-single-product-card .content .colors li a.color-26242a {
  background-color: #26242a;
}
.fww-single-product-card .content .colors li a.color-050405 {
  background-color: #050405;
}
.fww-single-product-card .content .colors li a.color-cac8cd {
  background-color: #cac8cd;
}
.fww-single-product-card .content .colors li a.color-b67961 {
  background-color: #b67961;
}
.fww-single-product-card .content .colors li a.color-845240 {
  background-color: #845240;
}
.fww-single-product-card .content .colors li a.color-564543 {
  background-color: #564543;
}
.fww-single-product-card .content .colors li a.color-350302 {
  background-color: #350302;
}
.fww-single-product-card .content .colors li a.color-0c0d11 {
  background-color: #0c0d11;
}
.fww-single-product-card .content .colors li a.color-c3a397 {
  background-color: #c3a397;
}
.fww-single-product-card .content .colors li a.color-565162 {
  background-color: #565162;
}
.fww-single-product-card .content .colors li a.color-edc7b8 {
  background-color: #edc7b8;
}
.fww-single-product-card .content .colors li a.color-cfc5c3 {
  background-color: #cfc5c3;
}
.fww-single-product-card .content .colors li a.color-f6f6f8 {
  background-color: #f6f6f8;
}
.fww-single-product-card .content .colors li a.color-dbcfcc {
  background-color: #dbcfcc;
}
.fww-single-product-card .content .colors li a.color-09080b {
  background-color: #09080b;
}
.fww-single-product-card .content .colors li a.color-7e5b57 {
  background-color: #7e5b57;
}
.fww-single-product-card .content .colors li a.color-cbc7ca {
  background-color: #cbc7ca;
}
.fww-single-product-card .content .colors li a.color-6a859b {
  background-color: #6a859b;
}
.fww-single-product-card .content .colors li a.color-893a24 {
  background-color: #893a24;
}
.fww-single-product-card .content .colors li a.color-242c38 {
  background-color: #242c38;
}
.fww-single-product-card .content .colors li a.color-8f8d7e {
  background-color: #8f8d7e;
}
.fww-single-product-card .content .colors li a.color-3c3a32 {
  background-color: #3c3a32;
}
.fww-single-product-card .content .colors li a.color-5e7da8 {
  background-color: #5e7da8;
}
.fww-single-product-card .content .colors li a.color-ccc3c0 {
  background-color: #ccc3c0;
}
.fww-single-product-card .content .colors li a.color-a2928f {
  background-color: #a2928f;
}
.fww-single-product-card .content .colors li a.color-87a8bb {
  background-color: #87a8bb;
}
.fww-single-product-card .content .colors li a.color-b99c89 {
  background-color: #b99c89;
}
.fww-single-product-card .content .colors li a.color-bf8c84 {
  background-color: #bf8c84;
}
.fww-single-product-card .content .colors li a.color-9e7a5f {
  background-color: #9e7a5f;
}
.fww-single-product-card .content .colors li a.color-dcd7dc {
  background-color: #dcd7dc;
}
.fww-single-product-card .content .colors li a.color-422617 {
  background-color: #422617;
}
.fww-single-product-card .content .colors li a.color-41618c {
  background-color: #41618c;
}
.fww-single-product-card .content .colors li a.color-96837c {
  background-color: #96837c;
}
.fww-single-product-card .content .colors li a.color-d6d1cf {
  background-color: #d6d1cf;
}
.fww-single-product-card .content .colors li a:hover::before, .fww-single-product-card .content .colors li a.active::before {
  opacity: 1;
}
.fww-single-product-card:hover .product-img:hover img {
  transform: scale(1.03);
}
.fww-single-product-card:hover .product-img .shop-btns {
  opacity: 1;
}
.fww-single-product-card:hover .product-img .delete {
  opacity: 1;
}
.fww-single-product-card.style2 {
  border: 1px solid #dfdfdf;
  padding: 30px;
}
.fww-single-product-card.style2 .image-content {
  position: relative;
  flex: 0 0 25%;
  max-width: 25%;
  padding-left: 50px;
  margin-right: 40px;
}
.fww-single-product-card.style2 .image-content .product-img {
  margin-bottom: 0;
}
.fww-single-product-card.style2 .image-content .tab-menu {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.fww-single-product-card.style2 .image-content .tab-menu li {
  display: block;
  margin-bottom: 10px;
}
.fww-single-product-card.style2 .content {
  flex: 0 0 75%;
  max-width: 75%;
  text-align: left;
  display: inline-block;
}
.fww-single-product-card.style2 .content .colors {
  position: unset;
  margin-bottom: 15px;
  margin-top: 15px;
}
.fww-single-product-card.style2 .content .tag {
  position: absolute;
  right: 50px;
  top: 0;
  color: #76bc42;
}

.fww-product-slider.owl-carousel .owl-nav .owl-next, .fww-product-slider.owl-carousel .owl-nav .owl-prev {
  background-color: var(--whiteColor);
  box-shadow: 0px 4px 4px rgba(18, 18, 18, 0.05);
  height: 50px;
  width: 50px;
  border-radius: 100%;
  color: var(--headingColor);
  transition: var(--transition);
  position: absolute;
  left: -30px;
  top: 38%;
}
.fww-product-slider.owl-carousel .owl-nav .owl-next.owl-next, .fww-product-slider.owl-carousel .owl-nav .owl-prev.owl-next {
  right: -30px;
  left: auto;
}
.fww-product-slider.owl-carousel .owl-nav .owl-next:hover, .fww-product-slider.owl-carousel .owl-nav .owl-prev:hover {
  background-color: var(--headingColor);
  color: var(--whiteColor);
}

.fww-latest-and-best-selling-area .latest-and-best-selling-tab {
  justify-content: center;
  margin-bottom: 45px;
  border-bottom: 1px solid rgba(18, 18, 18, 0.2);
  padding-bottom: 15px;
}
.fww-latest-and-best-selling-area .latest-and-best-selling-tab li {
  margin-right: 70px;
}
.fww-latest-and-best-selling-area .latest-and-best-selling-tab li:last-child {
  margin-right: 0;
}
.fww-latest-and-best-selling-area .latest-and-best-selling-tab li button {
  font-size: 32px;
  font-weight: 500;
  padding: 0;
  border: unset;
  padding: 0;
  background-color: unset;
  color: var(--paragraphColor);
  transition: var(--transition);
  position: relative;
}
.fww-latest-and-best-selling-area .latest-and-best-selling-tab li button::before {
  position: absolute;
  content: "";
  height: 2px;
  width: 100%;
  background-color: #121212;
  bottom: -16px;
  left: 0;
  transition: var(--transition);
  transform: scaleX(0);
}
.fww-latest-and-best-selling-area .latest-and-best-selling-tab li button.active {
  color: var(--headingColor);
}
.fww-latest-and-best-selling-area .latest-and-best-selling-tab li button.active::before {
  transform: scaleX(1);
}

.fww-hot-sale-product-slider.owl-carousel .owl-nav .owl-next, .fww-hot-sale-product-slider.owl-carousel .owl-nav .owl-prev {
  background-color: var(--whiteColor);
  box-shadow: 0px 4px 4px rgba(18, 18, 18, 0.05);
  height: 50px;
  width: 50px;
  border-radius: 100%;
  color: var(--headingColor);
  transition: var(--transition);
  position: absolute;
  left: -30px;
  top: 38%;
}
.fww-hot-sale-product-slider.owl-carousel .owl-nav .owl-next.owl-next, .fww-hot-sale-product-slider.owl-carousel .owl-nav .owl-prev.owl-next {
  right: -30px;
  left: auto;
}
.fww-hot-sale-product-slider.owl-carousel .owl-nav .owl-next:hover, .fww-hot-sale-product-slider.owl-carousel .owl-nav .owl-prev:hover {
  background-color: var(--headingColor);
  color: var(--whiteColor);
}

/*================================================
Modal CSS
=================================================*/
.productsQuickView .modal-dialog {
  max-width: 1090px;
  margin: 0 auto;
}
.productsQuickView .modal-content {
  border: none;
  padding: 70px;
  border-radius: 0;
}
.productsQuickView .modal-content button.close {
  position: absolute;
  right: 30px;
  top: 30px;
  outline: 0;
  opacity: 1;
  color: var(--headingColor);
  transition: var(--transition);
  line-height: 35px;
  padding: 0;
  margin: 0;
  font-size: 25px;
  width: 35px;
  text-shadow: unset;
  height: 35px;
  border: none;
  background-color: transparent;
}
.productsQuickView .modal-content button.close:hover {
  color: var(--redColor);
}
.productsQuickView .modal-content .fww-products-content .top-content .top-tag {
  color: #76bc42;
  display: inline-block;
}
.productsQuickView .modal-content .fww-products-content .top-content .top-tag i {
  margin-right: 7px;
}
.productsQuickView .modal-content .fww-products-content .top-content h3 {
  font-size: 22px;
}
.productsQuickView .modal-content .fww-products-content .top-content .price {
  transition: var(--transition);
  margin-top: 12px;
  margin-bottom: 15px;
  font-size: 20px;
  color: var(--headingColor);
}
.productsQuickView .modal-content .fww-products-content .top-content .price .old-price {
  text-decoration: line-through;
  color: var(--paragraphColor);
}
.productsQuickView .modal-content .fww-products-content .top-content .products-review {
  margin-bottom: 25px;
}
.productsQuickView .modal-content .fww-products-content .top-content .products-review .rating {
  display: inline-block;
  padding-right: 5px;
}
.productsQuickView .modal-content .fww-products-content .top-content .products-review .rating i {
  color: var(--headingColor);
  display: inline-block;
  margin-right: -2px;
}
.productsQuickView .modal-content .fww-products-content .top-content .products-review .rating-count {
  display: inline-block;
  color: var(--headingColor);
  border-bottom: 1px solid var(--headingColor);
  line-height: initial;
  position: relative;
  top: -1px;
}
.productsQuickView .modal-content .fww-products-content .top-content .products-review .rating-count:hover {
  color: var(--redColor);
  border-color: var(--redColor);
}
.productsQuickView .modal-content .fww-products-content .top-content p {
  font-size: 16px;
  margin-bottom: 20px;
}
.productsQuickView .modal-content .fww-products-content .products-color-switch {
  margin-bottom: 30px;
}
.productsQuickView .modal-content .fww-products-content .products-color-switch h5 {
  font-size: 14px;
  font-weight: 500;
  color: var(--headingColor);
  margin-bottom: 10px;
}
.productsQuickView .modal-content .fww-products-content .products-color-switch ul {
  padding-left: 0;
  margin-bottom: 0;
}
.productsQuickView .modal-content .fww-products-content .products-color-switch ul li {
  display: inline-block;
  margin-right: 6px;
}
.productsQuickView .modal-content .fww-products-content .products-color-switch ul li:last-child {
  margin-right: 0;
}
.productsQuickView .modal-content .fww-products-content .products-color-switch ul li a {
  display: inline-block;
  position: relative;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  transition: var(--transition);
}
.productsQuickView .modal-content .fww-products-content .products-color-switch ul li a::before {
  position: absolute;
  content: "";
  height: 19px;
  width: 19px;
  border-radius: 100%;
  border: 1px solid var(--headingColor);
  left: -2px;
  top: -2px;
  transition: var(--transition);
  opacity: 0;
}
.productsQuickView .modal-content .fww-products-content .products-color-switch ul li a.color-96b6a3 {
  background-color: #96b6a3;
}
.productsQuickView .modal-content .fww-products-content .products-color-switch ul li a.color-c5ccd4 {
  background-color: #c5ccd4;
}
.productsQuickView .modal-content .fww-products-content .products-color-switch ul li a.color-cfa58c {
  background-color: #cfa58c;
}
.productsQuickView .modal-content .fww-products-content .products-color-switch ul li a:hover::before, .productsQuickView .modal-content .fww-products-content .products-color-switch ul li a.active::before {
  opacity: 1;
}
.productsQuickView .modal-content .fww-products-content .price-guid {
  color: var(--headingColor);
  font-weight: 500;
}
.productsQuickView .modal-content .fww-products-content .price-guid img {
  position: relative;
  top: -1px;
}
.productsQuickView .modal-content .fww-products-content .products-size-wrapper {
  margin-top: 30px;
  margin-bottom: 30px;
}
.productsQuickView .modal-content .fww-products-content .products-size-wrapper h5 {
  font-size: 14px;
  font-weight: 500;
  color: var(--headingColor);
  margin-bottom: 8px;
}
.productsQuickView .modal-content .fww-products-content .products-size-wrapper ul {
  padding-left: 0;
  margin-bottom: 0;
}
.productsQuickView .modal-content .fww-products-content .products-size-wrapper ul li {
  display: inline-block;
  list-style-type: none;
  margin-right: 15px;
}
.productsQuickView .modal-content .fww-products-content .products-size-wrapper ul li .form-check .form-check-input {
  height: 16px;
  width: 16px;
  background-color: unset;
  border-radius: 0;
  box-shadow: unset;
  border-color: var(--headingColor);
}
.productsQuickView .modal-content .fww-products-content .products-size-wrapper ul li .form-check .form-check-input:checked[type=checkbox] {
  background-image: url(../images/icon/check-icon.svg);
  background-size: 10px;
}
.productsQuickView .modal-content .fww-products-content .products-size-wrapper ul li .form-check label {
  color: var(--headingColor);
  position: relative;
  top: 1px;
}
.productsQuickView .modal-content .fww-products-content .products-add-to-cart h5 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
}
.productsQuickView .modal-content .fww-products-content .products-add-to-cart ul {
  padding-left: 0;
  margin-bottom: 0;
}
.productsQuickView .modal-content .fww-products-content .products-add-to-cart ul li {
  display: inline-block;
  margin-right: 15px;
}
.productsQuickView .modal-content .fww-products-content .products-add-to-cart ul li:last-child {
  margin-right: 0;
}
.productsQuickView .modal-content .fww-products-content .products-add-to-cart ul li .input-counter {
  max-width: 100px;
  min-width: 100px;
  text-align: center;
  display: inline-block;
  position: relative;
}
.productsQuickView .modal-content .fww-products-content .products-add-to-cart ul li .input-counter span {
  position: absolute;
  top: 0;
  background-color: transparent;
  cursor: pointer;
  width: 40px;
  height: 100%;
  line-height: 36px;
  transition: var(--transition);
  font-size: 14px;
}
.productsQuickView .modal-content .fww-products-content .products-add-to-cart ul li .input-counter span.minus-btn {
  left: 0;
}
.productsQuickView .modal-content .fww-products-content .products-add-to-cart ul li .input-counter span.plus-btn {
  right: 0;
}
.productsQuickView .modal-content .fww-products-content .products-add-to-cart ul li .input-counter span:hover {
  color: var(--headingColor);
}
.productsQuickView .modal-content .fww-products-content .products-add-to-cart ul li .input-counter input {
  height: 36px;
  color: var(--headingColor);
  outline: 0;
  display: block;
  border: none;
  background-color: #f6f6f8;
  text-align: center;
  width: 100%;
  font-size: 17px;
  font-weight: 600;
}
.productsQuickView .modal-content .fww-products-content .products-add-to-cart ul li .input-counter input::-moz-placeholder {
  color: var(--headingColor);
}
.productsQuickView .modal-content .fww-products-content .products-add-to-cart ul li .input-counter input::placeholder {
  color: var(--headingColor);
}
.productsQuickView .modal-content .fww-products-content .products-add-to-cart ul li .default-btn {
  padding: 5px 20px;
}
.productsQuickView .modal-content .fww-products-content .products-add-to-cart ul li .wishlist-btn {
  color: var(--paragraphColor);
  transition: var(--transition);
}
.productsQuickView .modal-content .fww-products-content .products-add-to-cart ul li .wishlist-btn i {
  color: var(--headingColor);
  margin-right: 5px;
  transition: var(--transition);
}
.productsQuickView .modal-content .fww-products-content .products-add-to-cart ul li .wishlist-btn:hover {
  color: var(--redColor);
}
.productsQuickView .modal-content .fww-products-content .products-add-to-cart ul li .wishlist-btn:hover i {
  color: var(--redColor);
}

.fww-shop-modal .modal-dialog {
  max-width: 1320px;
  margin: 0 auto;
}
.fww-shop-modal .modal-content {
  border: none;
  padding: 70px;
  padding-bottom: 40px;
  border-radius: 0;
}
.fww-shop-modal .modal-content button.close {
  position: absolute;
  right: 30px;
  top: 30px;
  outline: 0;
  opacity: 1;
  color: var(--headingColor);
  transition: var(--transition);
  line-height: 35px;
  padding: 0;
  margin: 0;
  font-size: 22px;
  width: 35px;
  text-shadow: unset;
  height: 35px;
  border: none;
  background-color: transparent;
}
.fww-shop-modal .modal-content button.close:hover {
  color: var(--redColor);
}

.fww-modal-shop-slider.owl-carousel .owl-nav .owl-next, .fww-modal-shop-slider.owl-carousel .owl-nav .owl-prev {
  background-color: var(--whiteColor);
  box-shadow: 0px 4px 4px rgba(18, 18, 18, 0.05);
  height: 50px;
  width: 50px;
  border-radius: 100%;
  color: var(--headingColor);
  transition: var(--transition);
  position: absolute;
  left: -30px;
  top: 38%;
}
.fww-modal-shop-slider.owl-carousel .owl-nav .owl-next.owl-next, .fww-modal-shop-slider.owl-carousel .owl-nav .owl-prev.owl-next {
  right: -30px;
  left: auto;
}
.fww-modal-shop-slider.owl-carousel .owl-nav .owl-next:hover, .fww-modal-shop-slider.owl-carousel .owl-nav .owl-prev:hover {
  background-color: var(--headingColor);
  color: var(--whiteColor);
}

.shoppingCartModal.modal.right .modal-dialog {
  position: fixed;
  margin: auto;
  width: 450px;
  height: 100%;
  transform: translate3d(0%, 0, 0);
}
.shoppingCartModal.modal.right .modal-content {
  height: 100%;
  overflow-y: auto;
}
.shoppingCartModal.modal.right.fade .modal-dialog {
  right: -500px;
  transition: opacity 0.3s linear, right 0.3s ease-out;
}
.shoppingCartModal.modal.right.fade.show .modal-dialog {
  right: 0;
}
.shoppingCartModal .modal-content {
  border-radius: 0;
  border: none;
}
.shoppingCartModal .modal-content .modal-body {
  padding: 50px 30px 30px 30px;
}
.shoppingCartModal .modal-content .modal-body h3 {
  font-size: 26px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.shoppingCartModal .modal-content .modal-body .products-cart-content .products-cart {
  position: relative;
  border-bottom: 1px solid #dfdfdf;
  padding-bottom: 12px;
  margin-bottom: 12px;
}
.shoppingCartModal .modal-content .modal-body .products-cart-content .products-cart:last-child {
  border: unset;
}
.shoppingCartModal .modal-content .modal-body .products-cart-content .products-cart .products-image {
  width: 100px;
  margin-right: 10px;
}
.shoppingCartModal .modal-content .modal-body .products-cart-content .products-cart .products-image a {
  display: block;
}
.shoppingCartModal .modal-content .modal-body .products-cart-content .products-cart .products-content {
  position: relative;
}
.shoppingCartModal .modal-content .modal-body .products-cart-content .products-cart .products-content h3 {
  font-size: 16px;
  text-transform: initial;
  margin-bottom: 5px;
}
.shoppingCartModal .modal-content .modal-body .products-cart-content .products-cart .products-content h3 a {
  display: inline-block;
  color: var(--headingColor);
}
.shoppingCartModal .modal-content .modal-body .products-cart-content .products-cart .products-content .size-and-price {
  padding-left: 0;
  margin-bottom: 15px;
}
.shoppingCartModal .modal-content .modal-body .products-cart-content .products-cart .products-content .size-and-price li {
  list-style-type: none;
  color: var(--headingColor);
  margin-bottom: 10px;
}
.shoppingCartModal .modal-content .modal-body .products-cart-content .products-cart .products-content .size-and-price li:last-child {
  margin-bottom: 0;
}
.shoppingCartModal .modal-content .modal-body .products-cart-content .products-cart .products-content .size-and-price li span {
  color: var(--paragraphColor);
}
.shoppingCartModal .modal-content .modal-body .products-cart-content .products-cart .btns {
  padding-left: 0;
  margin-bottom: 0;
}
.shoppingCartModal .modal-content .modal-body .products-cart-content .products-cart .btns li {
  display: inline-block;
  margin-right: 10px;
}
.shoppingCartModal .modal-content .modal-body .products-cart-content .products-cart .btns li:last-child {
  margin-right: 0;
}
.shoppingCartModal .modal-content .modal-body .products-cart-content .products-cart .btns li .input-counter {
  max-width: 100px;
  min-width: 100px;
  text-align: center;
  display: inline-block;
  position: relative;
}
.shoppingCartModal .modal-content .modal-body .products-cart-content .products-cart .btns li .input-counter span {
  position: absolute;
  top: 0;
  background-color: transparent;
  cursor: pointer;
  width: 40px;
  height: 100%;
  line-height: 36px;
  transition: var(--transition);
  font-size: 14px;
}
.shoppingCartModal .modal-content .modal-body .products-cart-content .products-cart .btns li .input-counter span.minus-btn {
  left: 0;
}
.shoppingCartModal .modal-content .modal-body .products-cart-content .products-cart .btns li .input-counter span.plus-btn {
  right: 0;
}
.shoppingCartModal .modal-content .modal-body .products-cart-content .products-cart .btns li .input-counter span:hover {
  color: var(--headingColor);
}
.shoppingCartModal .modal-content .modal-body .products-cart-content .products-cart .btns li .input-counter input {
  height: 36px;
  color: var(--headingColor);
  outline: 0;
  display: block;
  border: none;
  background-color: #f6f6f8;
  text-align: center;
  width: 100%;
  font-size: 17px;
  font-weight: 600;
}
.shoppingCartModal .modal-content .modal-body .products-cart-content .products-cart .btns li .input-counter input::-moz-placeholder {
  color: var(--headingColor);
}
.shoppingCartModal .modal-content .modal-body .products-cart-content .products-cart .btns li .input-counter input::placeholder {
  color: var(--headingColor);
}
.shoppingCartModal .modal-content .modal-body .products-cart-content .products-cart .btns li .delete-btn {
  color: var(--redColor);
}
.shoppingCartModal .modal-content .modal-body .products-cart-btn {
  margin-top: 20px;
}
.shoppingCartModal .modal-content .modal-body .products-cart-btn ul {
  padding-left: 0;
  margin-bottom: 0;
}
.shoppingCartModal .modal-content .modal-body .products-cart-btn ul li {
  margin-bottom: 10px;
  list-style-type: none;
}
.shoppingCartModal .modal-content .modal-body .products-cart-btn ul li:last-child {
  margin-bottom: 0;
}
.shoppingCartModal .modal-content .modal-body .products-cart-btn ul li .default-btn {
  width: 100%;
  margin-bottom: 10px;
}
.shoppingCartModal .close {
  color: var(--headingColor);
  font-size: 30px;
  outline: 0 !important;
  line-height: initial;
  transition: var(--transition);
  position: absolute;
  right: 25px;
  top: 25px;
  z-index: 1;
  background-color: transparent;
  border: none;
}
.shoppingCartModal .close:not(:disabled):not(.disabled):hover, .shoppingCartModal .close:not(:disabled):not(.disabled):focus {
  color: red;
  text-decoration: none;
  opacity: 1;
}

.fww-newsletter-modal.modal.fade .modal-dialog {
  max-width: 1090px;
  margin: 0 auto;
}
.fww-newsletter-modal .modal-content {
  border-radius: unset;
}
.fww-newsletter-modal .modal-content .modal-body {
  padding: 0;
}
.fww-newsletter-modal .modal-content button.close {
  position: absolute;
  right: 30px;
  top: 30px;
  outline: 0;
  opacity: 1;
  color: var(--headingColor);
  transition: var(--transition);
  line-height: 35px;
  padding: 0;
  margin: 0;
  font-size: 25px;
  width: 35px;
  text-shadow: unset;
  height: 35px;
  border: none;
  background-color: transparent;
  z-index: 99;
}
.fww-newsletter-modal .modal-content button.close:hover {
  color: var(--redColor);
}
.fww-newsletter-modal .modal-content .newsletter-modal-content .newsletter-content {
  padding: 100px;
}
.fww-newsletter-modal .modal-content .newsletter-modal-content .newsletter-content h4 {
  font-size: 18px;
  margin-bottom: 10px;
}
.fww-newsletter-modal .modal-content .newsletter-modal-content .newsletter-content p {
  margin-bottom: 30px;
}
.fww-newsletter-modal .modal-content .newsletter-modal-content .newsletter-content .newsletter-form .form-control {
  margin-bottom: 20px;
}
.fww-newsletter-modal .modal-content .newsletter-modal-content .newsletter-content .newsletter-form .default-btn {
  width: 100%;
}
.fww-newsletter-modal .modal-content .newsletter-modal-content .newsletter-content .newsletter-form .validation-danger {
  color: var(--redColor);
  margin-top: 5px;
}
.fww-newsletter-modal .modal-content .newsletter-modal-content .newsletter-content ul {
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 40px;
}
.fww-newsletter-modal .modal-content .newsletter-modal-content .newsletter-content ul li {
  list-style-type: none;
}
.fww-newsletter-modal .modal-content .newsletter-modal-content .newsletter-content ul li .social-content a {
  color: var(--paragraphColor);
  font-size: 18px;
  transition: var(--transition);
  margin-right: 15px;
}
.fww-newsletter-modal .modal-content .newsletter-modal-content .newsletter-content ul li .social-content a:last-child {
  margin-right: 0;
}
.fww-newsletter-modal .modal-content .newsletter-modal-content .newsletter-content ul li .social-content a:hover {
  color: var(--redColor);
}
.fww-newsletter-modal .modal-content .newsletter-modal-content .newsletter-content ul li .form-check .form-check-input {
  height: 16px;
  width: 16px;
  box-shadow: unset;
  position: relative;
  top: -1px;
}

.productsFilterModal.modal.left .modal-dialog {
  position: fixed;
  margin: auto;
  width: 320px;
  height: 100%;
  transform: translate3d(0%, 0, 0);
}
.productsFilterModal.modal.left.fade .modal-dialog {
  left: -320px;
  transition: opacity 0.3s linear, left 0.3s ease-out;
}
.productsFilterModal.modal.left.fade.show .modal-dialog {
  left: 0;
}
.productsFilterModal .modal-content {
  height: 100%;
  overflow-y: auto;
  border-radius: 0;
  border: none;
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 30px;
  padding-right: 30px;
}
.productsFilterModal .modal-content .modal-body {
  padding: 0;
}
.productsFilterModal button.close {
  position: absolute;
  left: 20px;
  top: 20px;
  outline: 0;
  padding-left: 25px;
  text-shadow: unset;
  opacity: 1;
  line-height: initial;
  transition: var(--transition);
  border: none;
  background-color: transparent;
}
.productsFilterModal button.close i {
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 1px;
}
.productsFilterModal button.close:hover {
  color: var(--redColor);
}

.fww-shop-sidebar {
  margin-right: 40px;
}
.fww-shop-sidebar h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 30px;
}
.fww-shop-sidebar .fww-single-shop-sidebar-widget {
  margin-bottom: 30px;
}
.fww-shop-sidebar .fww-single-shop-sidebar-widget .title {
  padding-bottom: 2px;
  margin-bottom: 25px;
  border-bottom: 1px solid #dfdfdf;
  position: relative;
}
.fww-shop-sidebar .fww-single-shop-sidebar-widget .title h4 {
  font-size: 14px;
  font-weight: 500;
}
.fww-shop-sidebar .fww-single-shop-sidebar-widget .title i {
  position: absolute;
  right: 0;
  top: 5px;
  color: var(--headingColor);
}
.fww-shop-sidebar .fww-single-shop-sidebar-widget ul {
  padding-left: 0;
  margin-bottom: 0;
}
.fww-shop-sidebar .fww-single-shop-sidebar-widget ul li {
  list-style-type: none;
  margin-bottom: 10px;
}
.fww-shop-sidebar .fww-single-shop-sidebar-widget .form-check {
  margin-bottom: 10px;
}
.fww-shop-sidebar .fww-single-shop-sidebar-widget .form-check .form-check-input {
  height: 16px;
  width: 16px;
  background-color: #f6f6f8;
  border-radius: 0;
  box-shadow: unset;
  border-color: #dfdfdf;
}
.fww-shop-sidebar .fww-single-shop-sidebar-widget .form-check .form-check-input:checked[type=checkbox] {
  background-image: url(../images/icon/check-icon.svg);
  background-size: 10px;
  border-color: var(--headingColor);
}
.fww-shop-sidebar .fww-single-shop-sidebar-widget .form-check label {
  color: var(--paragraphColor);
  position: relative;
  top: 1px;
  margin-left: 5px;
}
.fww-shop-sidebar .fww-single-shop-sidebar-widget.size ul li {
  display: inline-block;
}
.fww-shop-sidebar .fww-single-shop-sidebar-widget.color button {
  background-color: transparent;
  margin-bottom: 10px;
  padding: 0;
  padding-left: 25px;
  border: unset;
  position: relative;
}
.fww-shop-sidebar .fww-single-shop-sidebar-widget.color button::before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.fww-shop-sidebar .fww-single-shop-sidebar-widget.color button.white-color::before {
  background-color: var(--whiteColor);
  border: 1px solid #dfdfdf;
}
.fww-shop-sidebar .fww-single-shop-sidebar-widget.color button.black-color::before {
  background-color: #000000;
}
.fww-shop-sidebar .fww-single-shop-sidebar-widget.color button.red-color::before {
  background-color: var(--redColor);
}
.fww-shop-sidebar .fww-single-shop-sidebar-widget.color button.blue-color::before {
  background-color: #1790c8;
}
.fww-shop-sidebar .fww-single-shop-sidebar-widget.color button.green-color::before {
  background-color: #7bba3c;
}
.fww-shop-sidebar .fww-single-shop-sidebar-widget.color button.grey-color::before {
  background-color: #808080;
}
.fww-shop-sidebar .fww-single-shop-sidebar-widget.color button.brown-color::before {
  background-color: #825d41;
}
.fww-shop-sidebar .fww-single-shop-sidebar-widget.color button.orange-color::before {
  background-color: #f36b26;
}
.fww-shop-sidebar .fww-single-shop-sidebar-widget.color button.pink-color::before {
  background-color: #f0728f;
}
.fww-shop-sidebar .fww-single-shop-sidebar-widget.color button.purple-color::before {
  background-color: #8d429f;
}
.fww-shop-sidebar .fww-single-shop-sidebar-widget.color button.yellow-color::before {
  background-color: #fed533;
}
.fww-shop-sidebar .fww-single-shop-sidebar-widget.color button.violet-color::before {
  background-color: #ab67d7;
}
.fww-shop-sidebar .fww-single-shop-sidebar-widget.tags a {
  font-size: 12px;
  color: var(--paragraphColor);
  padding: 4px 12px;
  background-color: #f6f6f8;
  transition: var(--transition);
  display: inline-block;
  margin-right: 8px;
  margin-bottom: 10px;
}
.fww-shop-sidebar .fww-single-shop-sidebar-widget.tags a:hover {
  background-color: var(--headingColor);
  color: var(--whiteColor);
}
.fww-shop-sidebar .fww-single-shop-sidebar-widget.categories ul {
  max-height: 340px;
  overflow-y: scroll;
}
.fww-shop-sidebar .fww-single-shop-sidebar-widget.material ul {
  max-height: 320px;
  overflow-y: scroll;
}
.fww-shop-sidebar.style2 {
  margin-right: 0;
  margin-left: 40px;
}

.fww-top-filter-content .shorting-content {
  justify-content: end;
  margin-bottom: 20px;
}
.fww-top-filter-content .shorting-content span {
  color: var(--headingColor);
  display: inline-block;
  margin-right: 7px;
}
.fww-top-filter-content .shorting-content .form-control {
  width: 180px;
  height: 40px;
}
.fww-top-filter-content .shorting-content .form-control option {
  color: var(--paragraphColor);
}
.fww-top-filter-content.style2 .shorting-content {
  justify-content: start;
}
.fww-top-filter-content.style2 .grid-view-content {
  justify-content: end;
}

.grid-view-content {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
.grid-view-content .sub-title {
  color: var(--headingColor);
  display: inline-block;
  padding-right: 5px;
  font-weight: 600;
}
.grid-view-content .sub-title a {
  text-transform: uppercase;
  color: var(--headingColor);
  font-weight: 700;
  margin-right: 15px;
  padding-left: 22px;
  display: block;
  position: relative;
}
.grid-view-content .sub-title a i {
  font-size: 18px;
  position: absolute;
  left: 0;
  top: 1px;
}
.grid-view-content .sub-title a:hover {
  color: var(--redColor);
}
.grid-view-content .view-list-row {
  position: relative;
}
.grid-view-content .view-list-row .view-column {
  padding: 10px 15px 8px 15px;
  background-color: #f6f6f8;
  border: 1px solid #dfdfdf;
  width: 155px;
}
.grid-view-content .view-list-row .view-column a {
  display: inline-block;
}
.grid-view-content .view-list-row .view-column .icon-view-one span {
  cursor: pointer;
  width: 2.3px;
  height: 16px;
  display: block;
  float: left;
  background-color: #dfdfdf;
  transition: var(--transition);
}
.grid-view-content .view-list-row .view-column .icon-view-one.active span, .grid-view-content .view-list-row .view-column .icon-view-one:hover span {
  background-color: var(--headingColor);
}
.grid-view-content .view-list-row .view-column .icon-view-two {
  margin-left: 20px;
}
.grid-view-content .view-list-row .view-column .icon-view-two span {
  cursor: pointer;
  width: 2.3px;
  height: 16px;
  display: block;
  float: left;
  background-color: #dfdfdf;
  transition: var(--transition);
}
.grid-view-content .view-list-row .view-column .icon-view-two span:not(:first-child) {
  margin-left: 1px;
}
.grid-view-content .view-list-row .view-column .icon-view-two.active span, .grid-view-content .view-list-row .view-column .icon-view-two:hover span {
  background-color: var(--headingColor);
}
.grid-view-content .view-list-row .view-column .icon-view-three {
  margin-left: 20px;
}
.grid-view-content .view-list-row .view-column .icon-view-three span {
  width: 2.3px;
  height: 16px;
  display: block;
  float: left;
  background-color: #dfdfdf;
  transition: var(--transition);
}
.grid-view-content .view-list-row .view-column .icon-view-three span:not(:first-child) {
  margin-left: 1px;
}
.grid-view-content .view-list-row .view-column .icon-view-three.active span, .grid-view-content .view-list-row .view-column .icon-view-three:hover span {
  background-color: var(--headingColor);
}
.grid-view-content .view-list-row .view-column .icon-view-four {
  margin-left: 20px;
}
.grid-view-content .view-list-row .view-column .icon-view-four span {
  width: 2.3px;
  height: 16px;
  display: block;
  float: left;
  background-color: #dfdfdf;
  transition: var(--transition);
}
.grid-view-content .view-list-row .view-column .icon-view-four span:not(:first-child) {
  margin-left: 2px;
}
.grid-view-content .view-list-row .view-column .icon-view-four.active span, .grid-view-content .view-list-row .view-column .icon-view-four:hover span {
  background-color: var(--headingColor);
}
.grid-view-content .view-list-row .view-column .icon-view-five {
  margin-left: 20px;
}
.grid-view-content .view-list-row .view-column .icon-view-five span {
  width: 2.3px;
  height: 16px;
  display: block;
  float: left;
  background-color: #dfdfdf;
  transition: var(--transition);
}
.grid-view-content .view-list-row .view-column .icon-view-five span:not(:first-child) {
  margin-left: 1px;
}
.grid-view-content .view-list-row .view-column .icon-view-five.active span, .grid-view-content .view-list-row .view-column .icon-view-five:hover span {
  background-color: var(--headingColor);
}
.grid-view-content .view-list-row .view-column .icon-view-six {
  margin-left: 20px;
}
.grid-view-content .view-list-row .view-column .icon-view-six span {
  width: 2.3px;
  height: 16px;
  display: block;
  float: left;
  background-color: #dfdfdf;
  transition: var(--transition);
}
.grid-view-content .view-list-row .view-column .icon-view-six span:not(:first-child) {
  margin-left: 1px;
}
.grid-view-content .view-list-row .view-column .icon-view-six.active span, .grid-view-content .view-list-row .view-column .icon-view-six:hover span {
  background-color: var(--headingColor);
}
.grid-view-content .view-list-row .view-column .view-grid-switch span {
  width: 16px;
  height: 2.3px;
  display: block;
  position: relative;
  background-color: #dfdfdf;
  transition: var(--transition);
}
.grid-view-content .view-list-row .view-column .view-grid-switch span:not(:first-child) {
  margin-top: 2px;
}
.grid-view-content .view-list-row .view-column .view-grid-switch.active span, .grid-view-content .view-list-row .view-column .view-grid-switch:hover span {
  background-color: var(--headingColor);
}

#products-collections-filter.products-col-one .products-col-item {
  flex: 0 0 100%;
  max-width: 100%;
}
#products-collections-filter.products-col-three .products-col-item {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
#products-collections-filter.products-col-three .products-col-item .fww-single-product-card.style2 {
  display: inherit !important;
}
#products-collections-filter.products-col-three .products-col-item .fww-single-product-card.style2 .image-content {
  flex: 0 0 100%;
  max-width: 100%;
  margin-right: 0;
}
#products-collections-filter.products-col-three .products-col-item .fww-single-product-card.style2 .image-content .product-img {
  flex: 0 0 100%;
  max-width: 100%;
}
#products-collections-filter.products-col-three .products-col-item .fww-single-product-card.style2 .content {
  padding: 0;
  flex: 100%;
  max-width: 100%;
}
#products-collections-filter.products-col-three .products-col-item .fww-single-product-card.style2 .content p {
  display: none;
}
#products-collections-filter.products-col-three .products-col-item .fww-single-product-card.style2 .content .colors {
  margin-bottom: 0;
}
#products-collections-filter.products-col-three .products-col-item .fww-single-product-card.style2 .content .tag {
  display: none;
}
#products-collections-filter.products-row-view .products-col-item {
  flex: 0 0 100%;
  max-width: 100%;
}
#products-collections-filter.products-row-view .products-col-item .fww-single-product-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center !important;
  background-color: #fdfdfd;
}
#products-collections-filter.products-row-view .products-col-item .fww-single-product-card .product-img {
  position: relative;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}
#products-collections-filter.products-row-view .products-col-item .fww-single-product-card .content {
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
  text-align: left;
  padding-left: 30px;
  padding-right: 30px;
}
#products-collections-filter.products-row-view .products-col-item .fww-single-product-card.style2 .image-content {
  flex: 0 0 25%;
  max-width: 25%;
}
#products-collections-filter.products-row-view .products-col-item .fww-single-product-card.style2 .image-content .product-img {
  flex: 0 0 100%;
  max-width: 100%;
}
#products-collections-filter.products-row-view .products-col-item .fww-single-product-card.style2 .content {
  padding: 0;
  flex: 70%;
  max-width: 70%;
}
#products-collections-filter.products-row-view .products-col-item.col-lg-4 {
  flex: 0 0 50%;
  max-width: 50%;
}
#products-collections-filter.products-col-two .products-col-item {
  flex: 0 0 50%;
  max-width: 50%;
}
#products-collections-filter.products-col-two .products-col-item .fww-single-product-card.style2 {
  display: inherit !important;
}
#products-collections-filter.products-col-two .products-col-item .fww-single-product-card.style2 .image-content {
  flex: 0 0 100%;
  max-width: 100%;
  margin-right: 0;
}
#products-collections-filter.products-col-two .products-col-item .fww-single-product-card.style2 .image-content .product-img {
  flex: 0 0 100%;
  max-width: 100%;
}
#products-collections-filter.products-col-two .products-col-item .fww-single-product-card.style2 .content {
  padding: 0;
  flex: 100%;
  max-width: 100%;
}
#products-collections-filter.products-col-two .products-col-item .fww-single-product-card.style2 .content p {
  display: none;
}
#products-collections-filter.products-col-two .products-col-item .fww-single-product-card.style2 .content .colors {
  margin-bottom: 0;
}
#products-collections-filter.products-col-two .products-col-item .fww-single-product-card.style2 .content .tag {
  display: none;
}
#products-collections-filter.products-col-four .products-col-item {
  flex: 0 0 25%;
  max-width: 25%;
}
#products-collections-filter.products-col-four .products-col-item .fww-single-product-card.style2 {
  display: inherit !important;
}
#products-collections-filter.products-col-four .products-col-item .fww-single-product-card.style2 .image-content {
  flex: 0 0 100%;
  max-width: 100%;
  margin-right: 0;
}
#products-collections-filter.products-col-four .products-col-item .fww-single-product-card.style2 .image-content .product-img {
  flex: 0 0 100%;
  max-width: 100%;
}
#products-collections-filter.products-col-four .products-col-item .fww-single-product-card.style2 .content {
  padding: 0;
  flex: 100%;
  max-width: 100%;
}
#products-collections-filter.products-col-four .products-col-item .fww-single-product-card.style2 .content p {
  display: none;
}
#products-collections-filter.products-col-four .products-col-item .fww-single-product-card.style2 .content .colors {
  margin-bottom: 0;
}
#products-collections-filter.products-col-four .products-col-item .fww-single-product-card.style2 .content .tag {
  display: none;
}

.fww-full-with-area .container-fluid {
  padding-left: 20px;
  padding-right: 20px;
  max-width: unset;
}

.fww-btn-list {
  text-align: center;
}
.fww-btn-list ul {
  padding-left: 0;
  margin-bottom: 0;
}
.fww-btn-list ul li {
  margin-right: 30px;
  display: inline-block;
}
.fww-btn-list ul li:last-child {
  margin-right: 0;
}

.compareModal .modal-dialog {
  max-width: 940px;
  margin: 0 auto;
}
.compareModal .modal-content {
  border: none;
  padding: 70px;
  padding-bottom: 40px;
  border-radius: 0;
}
.compareModal .modal-content button.close {
  position: absolute;
  right: 30px;
  top: 30px;
  outline: 0;
  opacity: 1;
  color: var(--headingColor);
  transition: var(--transition);
  line-height: 35px;
  padding: 0;
  margin: 0;
  font-size: 22px;
  width: 35px;
  text-shadow: unset;
  height: 35px;
  border: none;
  background-color: transparent;
}
.compareModal .modal-content button.close:hover {
  color: var(--redColor);
}
.compareModal .compare-table .table {
  margin-bottom: 0;
}
.compareModal .compare-table .table tr td {
  border-top: none;
  white-space: nowrap;
  vertical-align: middle;
  padding: 20px;
  text-align: center;
}
.compareModal .compare-table .table tr td.title {
  color: var(--headingColor);
  font-weight: 600;
  padding: 0 50px;
}
.compareModal .compare-table .table tr td.shop-image img {
  height: 160px;
  width: 120px;
}

.startShopping .modal-dialog {
  max-width: 505px;
  margin: 0 auto;
}
.startShopping .modal-content {
  border: none;
  padding: 30px;
  padding-top: 45px;
  border-radius: unset;
}
.startShopping .modal-content button.close {
  position: absolute;
  right: 25px;
  top: 25px;
  outline: 0;
  opacity: 1;
  color: var(--headingColor);
  transition: var(--transition);
  line-height: 35px;
  padding: 0;
  margin: 0;
  font-size: 22px;
  text-shadow: unset;
  border: none;
  background-color: transparent;
}
.startShopping .modal-content button.close:hover {
  color: var(--redColor);
}
.startShopping .start-shopping-content h2 {
  font-size: 26px;
  margin-bottom: 15px;
}
.startShopping .start-shopping-content p {
  margin-bottom: 20px;
}
.startShopping .start-shopping-content .privacy-policy {
  margin-bottom: 23px;
}
.startShopping .start-shopping-content .privacy-policy a {
  color: var(--headingColor);
  text-decoration: underline;
}
.startShopping .start-shopping-content .btn-list {
  padding-left: 0;
  margin-bottom: 0;
}
.startShopping .start-shopping-content .btn-list li {
  list-style-type: none;
  margin-bottom: 10px;
}
.startShopping .start-shopping-content .btn-list li .default-btn {
  width: 100%;
}
.startShopping .start-shopping-content .btn-list li:last-child {
  margin-bottom: 0;
}

.productsQuickViewStyle2 .modal-dialog {
  max-width: 1100px;
  margin: 0 auto;
}
.productsQuickViewStyle2 .modal-content {
  border: none;
  padding: 70px;
  border-radius: unset;
}
.productsQuickViewStyle2 .modal-content button.close {
  position: absolute;
  right: 25px;
  top: 25px;
  outline: 0;
  opacity: 1;
  color: var(--headingColor);
  transition: var(--transition);
  line-height: 35px;
  padding: 0;
  margin: 0;
  font-size: 22px;
  text-shadow: unset;
  border: none;
  background-color: transparent;
}
.productsQuickViewStyle2 .modal-content button.close:hover {
  color: var(--redColor);
}
.productsQuickViewStyle2 .fww-products-content .top-content .top-tag {
  color: #76bc42;
  display: inline-block;
}
.productsQuickViewStyle2 .fww-products-content .top-content .top-tag i {
  margin-right: 7px;
}
.productsQuickViewStyle2 .fww-products-content .top-content h3 {
  font-size: 22px;
}
.productsQuickViewStyle2 .fww-products-content .top-content .price {
  transition: var(--transition);
  margin-top: 12px;
  margin-bottom: 15px;
  font-size: 20px;
  color: var(--headingColor);
}
.productsQuickViewStyle2 .fww-products-content .top-content .price .old-price {
  text-decoration: line-through;
  color: var(--paragraphColor);
}
.productsQuickViewStyle2 .fww-products-content .top-content .products-review {
  margin-bottom: 25px;
}
.productsQuickViewStyle2 .fww-products-content .top-content .products-review .rating {
  display: inline-block;
  padding-right: 5px;
}
.productsQuickViewStyle2 .fww-products-content .top-content .products-review .rating i {
  color: var(--headingColor);
  display: inline-block;
  margin-right: -2px;
}
.productsQuickViewStyle2 .fww-products-content .top-content .products-review .rating-count {
  display: inline-block;
  color: var(--headingColor);
  border-bottom: 1px solid var(--headingColor);
  line-height: initial;
  position: relative;
  top: -1px;
}
.productsQuickViewStyle2 .fww-products-content .top-content .products-review .rating-count:hover {
  color: var(--redColor);
  border-color: var(--redColor);
}
.productsQuickViewStyle2 .fww-products-content .top-content p {
  font-size: 16px;
  margin-bottom: 20px;
}
.productsQuickViewStyle2 .fww-products-content .products-color-switch {
  margin-bottom: 30px;
}
.productsQuickViewStyle2 .fww-products-content .products-color-switch h5 {
  font-size: 14px;
  font-weight: 500;
  color: var(--headingColor);
  margin-bottom: 10px;
}
.productsQuickViewStyle2 .fww-products-content .products-color-switch ul {
  padding-left: 0;
  margin-bottom: 0;
}
.productsQuickViewStyle2 .fww-products-content .products-color-switch ul li {
  display: inline-block;
  margin-right: 6px;
}
.productsQuickViewStyle2 .fww-products-content .products-color-switch ul li:last-child {
  margin-right: 0;
}
.productsQuickViewStyle2 .fww-products-content .products-color-switch ul li a {
  display: inline-block;
  position: relative;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  transition: var(--transition);
}
.productsQuickViewStyle2 .fww-products-content .products-color-switch ul li a::before {
  position: absolute;
  content: "";
  height: 19px;
  width: 19px;
  border-radius: 100%;
  border: 1px solid var(--headingColor);
  left: -2px;
  top: -2px;
  transition: var(--transition);
  opacity: 0;
}
.productsQuickViewStyle2 .fww-products-content .products-color-switch ul li a.color-96b6a3 {
  background-color: #96b6a3;
}
.productsQuickViewStyle2 .fww-products-content .products-color-switch ul li a.color-c5ccd4 {
  background-color: #c5ccd4;
}
.productsQuickViewStyle2 .fww-products-content .products-color-switch ul li a.color-cfa58c {
  background-color: #cfa58c;
}
.productsQuickViewStyle2 .fww-products-content .products-color-switch ul li a:hover::before, .productsQuickViewStyle2 .fww-products-content .products-color-switch ul li a.active::before {
  opacity: 1;
}
.productsQuickViewStyle2 .fww-products-content .price-guid {
  color: var(--headingColor);
  font-weight: 500;
}
.productsQuickViewStyle2 .fww-products-content .price-guid img {
  position: relative;
  top: -1px;
}
.productsQuickViewStyle2 .fww-products-content .products-size-wrapper {
  margin-top: 30px;
  margin-bottom: 30px;
}
.productsQuickViewStyle2 .fww-products-content .products-size-wrapper h5 {
  font-size: 14px;
  font-weight: 500;
  color: var(--headingColor);
  margin-bottom: 8px;
}
.productsQuickViewStyle2 .fww-products-content .products-size-wrapper ul {
  padding-left: 0;
  margin-bottom: 0;
}
.productsQuickViewStyle2 .fww-products-content .products-size-wrapper ul li {
  display: inline-block;
  list-style-type: none;
  margin-right: 15px;
}
.productsQuickViewStyle2 .fww-products-content .products-size-wrapper ul li .form-check .form-check-input {
  height: 16px;
  width: 16px;
  background-color: unset;
  border-radius: 0;
  box-shadow: unset;
  border-color: var(--headingColor);
}
.productsQuickViewStyle2 .fww-products-content .products-size-wrapper ul li .form-check .form-check-input:checked[type=checkbox] {
  background-image: url(../images/icon/check-icon.svg);
  background-size: 10px;
}
.productsQuickViewStyle2 .fww-products-content .products-size-wrapper ul li .form-check label {
  color: var(--headingColor);
  position: relative;
  top: 1px;
}
.productsQuickViewStyle2 .fww-products-content .products-add-to-cart h5 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
}
.productsQuickViewStyle2 .fww-products-content .products-add-to-cart ul {
  padding-left: 0;
  margin-bottom: 0;
}
.productsQuickViewStyle2 .fww-products-content .products-add-to-cart ul li {
  display: inline-block;
  margin-right: 15px;
}
.productsQuickViewStyle2 .fww-products-content .products-add-to-cart ul li:last-child {
  margin-right: 0;
}
.productsQuickViewStyle2 .fww-products-content .products-add-to-cart ul li .input-counter {
  max-width: 100px;
  min-width: 100px;
  text-align: center;
  display: inline-block;
  position: relative;
}
.productsQuickViewStyle2 .fww-products-content .products-add-to-cart ul li .input-counter span {
  position: absolute;
  top: 0;
  background-color: transparent;
  cursor: pointer;
  width: 40px;
  height: 100%;
  line-height: 36px;
  transition: var(--transition);
  font-size: 14px;
}
.productsQuickViewStyle2 .fww-products-content .products-add-to-cart ul li .input-counter span.minus-btn {
  left: 0;
}
.productsQuickViewStyle2 .fww-products-content .products-add-to-cart ul li .input-counter span.plus-btn {
  right: 0;
}
.productsQuickViewStyle2 .fww-products-content .products-add-to-cart ul li .input-counter span:hover {
  color: var(--headingColor);
}
.productsQuickViewStyle2 .fww-products-content .products-add-to-cart ul li .input-counter input {
  height: 36px;
  color: var(--headingColor);
  outline: 0;
  display: block;
  border: none;
  background-color: #f6f6f8;
  text-align: center;
  width: 100%;
  font-size: 17px;
  font-weight: 600;
}
.productsQuickViewStyle2 .fww-products-content .products-add-to-cart ul li .input-counter input::-moz-placeholder {
  color: var(--headingColor);
}
.productsQuickViewStyle2 .fww-products-content .products-add-to-cart ul li .input-counter input::placeholder {
  color: var(--headingColor);
}
.productsQuickViewStyle2 .fww-products-content .products-add-to-cart ul li .default-btn {
  padding: 5px 20px;
}
.productsQuickViewStyle2 .fww-products-content .products-add-to-cart ul li .wishlist-btn {
  color: var(--paragraphColor);
  transition: var(--transition);
}
.productsQuickViewStyle2 .fww-products-content .products-add-to-cart ul li .wishlist-btn i {
  color: var(--headingColor);
  margin-right: 5px;
  transition: var(--transition);
}
.productsQuickViewStyle2 .fww-products-content .products-add-to-cart ul li .wishlist-btn:hover {
  color: var(--redColor);
}
.productsQuickViewStyle2 .fww-products-content .products-add-to-cart ul li .wishlist-btn:hover i {
  color: var(--redColor);
}
.productsQuickViewStyle2 .fww-default-product-image .tab-menu li a img {
  height: 70px;
  width: 50px;
}

.deliveryInfoModal .modal-dialog {
  max-width: 1320px;
  margin: 0 auto;
}
.deliveryInfoModal .modal-content {
  border: none;
  padding: 70px;
  border-radius: unset;
}
.deliveryInfoModal .modal-content button.close {
  position: absolute;
  right: 25px;
  top: 25px;
  outline: 0;
  opacity: 1;
  color: var(--headingColor);
  transition: var(--transition);
  line-height: 35px;
  padding: 0;
  margin: 0;
  font-size: 22px;
  text-shadow: unset;
  border: none;
  background-color: transparent;
}
.deliveryInfoModal .modal-content button.close:hover {
  color: var(--redColor);
}
.deliveryInfoModal .delivery-info-content h2 {
  text-align: center;
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 15px;
}
.deliveryInfoModal .delivery-info-content .location-content {
  max-width: 310px;
  margin-bottom: 25px;
}
.deliveryInfoModal .delivery-info-content .location-content span {
  font-weight: 500;
  color: var(--headingColor);
  display: inline-block;
  margin-right: 10px;
}
.deliveryInfoModal .delivery-info-content .info-list {
  border: 1px solid #dfdfdf;
  padding-left: 0;
  margin-bottom: 25px;
}
.deliveryInfoModal .delivery-info-content .info-list li {
  border-bottom: 1px solid #dfdfdf;
  padding: 15px;
  list-style-type: none;
}
.deliveryInfoModal .delivery-info-content .info-list li span {
  font-weight: 500;
  color: var(--headingColor);
  display: inline-block;
  margin-right: 10px;
}
.deliveryInfoModal .delivery-info-content .another-info h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}
.deliveryInfoModal .delivery-info-content .another-info p {
  font-size: 16px;
}
.deliveryInfoModal .delivery-info-content .another-info .list {
  padding-left: 0;
  margin-bottom: 0;
}
.deliveryInfoModal .delivery-info-content .another-info .list li {
  list-style-type: none;
  margin-bottom: 12px;
  position: relative;
  padding-left: 15px;
  font-size: 16px;
}
.deliveryInfoModal .delivery-info-content .another-info .list li:last-child {
  margin-bottom: 0;
}
.deliveryInfoModal .delivery-info-content .another-info .list li::before {
  position: absolute;
  content: "";
  height: 6px;
  width: 6px;
  border-radius: 100%;
  background-color: var(--headingColor);
  left: 0;
  top: 9px;
}

@media only screen and (max-width: 767px) {
  .fww-product-slider.owl-carousel .owl-nav .owl-next, .fww-product-slider.owl-carousel .owl-nav .owl-prev {
    height: 40px;
    width: 40px;
    left: 0;
    top: 35%;
  }
  .fww-product-slider.owl-carousel .owl-nav .owl-next.owl-next, .fww-product-slider.owl-carousel .owl-nav .owl-prev.owl-next {
    right: 0;
  }
  .fww-single-product-card .product-img .tags {
    left: 20px;
    top: 20px;
  }
  .fww-single-product-card .product-img .shop-btns {
    opacity: 1;
  }
  .fww-single-product-card .content .colors {
    top: 30px;
  }
  .fww-single-product-card.style2 {
    padding: 20px;
    display: inherit !important;
  }
  .fww-single-product-card.style2 .image-content {
    display: inherit;
    padding-left: 50px;
    margin-right: 0;
    flex: 100%;
    max-width: 100%;
  }
  .fww-single-product-card.style2 .content {
    flex: 100%;
    max-width: 100%;
    padding-right: 0;
  }
  .fww-single-product-card.style2 .content h3 {
    padding-right: 60px;
  }
  .fww-single-product-card.style2 .content .tag {
    right: 0;
  }
  .fww-latest-and-best-selling-area .latest-and-best-selling-tab {
    margin-bottom: 30px;
  }
  .fww-latest-and-best-selling-area .latest-and-best-selling-tab li {
    margin-right: 5px;
  }
  .fww-latest-and-best-selling-area .latest-and-best-selling-tab li button {
    font-size: 15px;
  }
  .fww-latest-and-best-selling-area .latest-and-best-selling-tab li button::before {
    display: none;
  }
  .fww-hot-sale-product-slider.owl-carousel .owl-nav .owl-next, .fww-hot-sale-product-slider.owl-carousel .owl-nav .owl-prev {
    height: 40px;
    width: 40px;
    left: 0;
    top: 35%;
  }
  .fww-hot-sale-product-slider.owl-carousel .owl-nav .owl-next.owl-next, .fww-hot-sale-product-slider.owl-carousel .owl-nav .owl-prev.owl-next {
    right: 0;
  }
  .shoppingCartModal.modal.right .modal-dialog {
    width: 320px;
  }
  .shoppingCartModal .modal-content .modal-body {
    padding: 40px 20px 20px 20px;
  }
  .shoppingCartModal .modal-content .modal-body h3 {
    font-size: 20px;
  }
  .shoppingCartModal .modal-content .modal-body .products-cart-content .products-cart.d-flex {
    display: inherit !important;
  }
  .shoppingCartModal .modal-content .modal-body .products-cart-content .products-cart .products-image {
    width: 100%;
    margin-bottom: 15px;
  }
  .fww-newsletter-modal .modal-content .newsletter-modal-content .newsletter-content {
    padding: 25px;
  }
  .fww-newsletter-modal .modal-content .newsletter-modal-content .newsletter-content ul {
    margin-top: 30px;
  }
  .fww-newsletter-modal .modal-content .newsletter-modal-content .newsletter-content ul.d-flex {
    display: inherit !important;
  }
  .fww-newsletter-modal .modal-content .newsletter-modal-content .newsletter-content ul li {
    margin-bottom: 15px;
  }
  .fww-newsletter-modal .modal-content .newsletter-modal-content .newsletter-content ul li:last-child {
    margin-bottom: 0;
  }
  .fww-shop-modal .modal-content {
    padding: 15px;
    padding-top: 40px;
    padding-bottom: 0;
  }
  .fww-shop-modal .modal-content button.close {
    right: 10px;
    top: 10px;
    font-size: 18px;
  }
  .fww-modal-shop-slider.owl-carousel .owl-nav .owl-next, .fww-modal-shop-slider.owl-carousel .owl-nav .owl-prev {
    height: 40px;
    width: 40px;
    left: -23px;
    top: 34%;
  }
  .fww-modal-shop-slider.owl-carousel .owl-nav .owl-next.owl-next, .fww-modal-shop-slider.owl-carousel .owl-nav .owl-prev.owl-next {
    right: -23px;
  }
  .productsQuickView .modal-content {
    padding: 20px;
  }
  .productsQuickView .modal-content .fww-products-image {
    margin-bottom: 20px;
  }
  .productsQuickView .modal-content .fww-products-content .top-content h3 {
    font-size: 18px;
  }
  .productsQuickView .modal-content .fww-products-content .products-add-to-cart ul li {
    margin-right: 10px;
    margin-bottom: 10px;
  }
  .fww-shop-sidebar-area .fww-shop-sidebar {
    display: none;
  }
  .fww-top-filter-content .shorting-content .form-control {
    width: 140px;
  }
  .productsFilterModal .modal-content {
    padding-top: 60px;
    padding-bottom: 30px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .fww-shop-sidebar {
    margin-right: 0;
  }
  .fww-shop-sidebar .fww-single-shop-sidebar-widget .form-check label {
    margin-left: 2px;
    font-size: 13px;
  }
  .fww-btn-list ul li {
    margin-right: 10px;
    margin-bottom: 10px;
  }
  .fww-btn-list ul li:last-child {
    margin-bottom: 0;
  }
  .compareModal .modal-content {
    padding: 40px 20px 25px 20px;
  }
  .compareModal .modal-content button.close {
    right: 10px;
    top: 10px;
    font-size: 20px;
  }
  .startShopping .modal-content {
    padding: 20px;
    padding-top: 35px;
  }
  .startShopping .modal-content button.close {
    right: 10px;
    top: 10px;
    font-size: 20px;
  }
  .startShopping .start-shopping-content h2 {
    font-size: 20px;
  }
  .productsQuickViewStyle2 .modal-content {
    padding: 25px;
    padding-top: 45px;
  }
  .productsQuickViewStyle2 .modal-content button.close {
    right: 10px;
    top: 10px;
    font-size: 20px;
  }
  .productsQuickViewStyle2 .fww-default-product-image .tab-menu {
    margin-bottom: 25px;
  }
  .productsQuickViewStyle2 .fww-default-product-image .tab-menu li a img {
    height: 65px;
    width: 45px;
  }
  .productsQuickViewStyle2 .fww-products-content .top-content h3 {
    font-size: 18px;
  }
  .productsQuickViewStyle2 .fww-products-content .products-add-to-cart ul li {
    margin-right: 10px;
    margin-bottom: 10px;
  }
  .deliveryInfoModal .modal-content {
    padding: 25px;
    padding-top: 45px;
  }
  .deliveryInfoModal .modal-content button.close {
    right: 10px;
    top: 10px;
    font-size: 20px;
  }
  .deliveryInfoModal .delivery-info-content h2 {
    font-size: 20px;
    text-align: start;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .fww-latest-and-best-selling-area .latest-and-best-selling-tab li {
    margin-right: 20px;
  }
  .fww-latest-and-best-selling-area .latest-and-best-selling-tab li button {
    font-size: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .fww-product-slider.owl-carousel .owl-nav .owl-next, .fww-product-slider.owl-carousel .owl-nav .owl-prev {
    height: 40px;
    width: 40px;
    left: 0;
    top: 35%;
  }
  .fww-product-slider.owl-carousel .owl-nav .owl-next.owl-next, .fww-product-slider.owl-carousel .owl-nav .owl-prev.owl-next {
    right: 0;
  }
  .fww-single-product-card .content {
    margin-top: 15px;
  }
  .fww-single-product-card.style2 {
    padding: 15px;
  }
  .fww-single-product-card.style2 .image-content {
    margin-right: 10px;
    padding-left: 0;
  }
  .fww-single-product-card.style2 .image-content .tab-menu {
    position: unset;
    transform: translateY(0);
    margin-top: 5px;
  }
  .fww-single-product-card.style2 .image-content .tab-menu li {
    display: inline-block;
    margin-bottom: 0;
  }
  .fww-single-product-card.style2 .image-content .tab-menu li a img {
    height: 40px;
    width: 25px;
  }
  .fww-latest-and-best-selling-area .latest-and-best-selling-tab li {
    margin-right: 30px;
  }
  .fww-latest-and-best-selling-area .latest-and-best-selling-tab li button {
    font-size: 24px;
  }
  .fww-single-product-card .content h3 {
    font-size: 15px;
  }
  .fww-single-product-card .content .colors {
    top: 30px;
  }
  .fww-hot-sale-product-slider.owl-carousel .owl-nav .owl-next, .fww-hot-sale-product-slider.owl-carousel .owl-nav .owl-prev {
    height: 40px;
    width: 40px;
    left: 0;
    top: 35%;
  }
  .fww-hot-sale-product-slider.owl-carousel .owl-nav .owl-next.owl-next, .fww-hot-sale-product-slider.owl-carousel .owl-nav .owl-prev.owl-next {
    right: 0;
  }
  .shoppingCartModal.modal.right .modal-dialog {
    width: 430px;
    height: 100%;
  }
  .shoppingCartModal .modal-content .modal-body {
    padding: 40px 25px 25px 25px;
  }
  .shoppingCartModal .modal-content .modal-body h3 {
    font-size: 22px;
  }
  .fww-newsletter-modal.modal.fade .modal-dialog {
    max-width: 730px;
  }
  .fww-newsletter-modal .modal-content .newsletter-modal-content .newsletter-content {
    padding: 30px;
  }
  .fww-shop-modal .modal-dialog {
    max-width: 680px;
  }
  .fww-shop-modal .modal-content {
    padding: 15px;
    padding-top: 40px;
    padding-bottom: 0;
  }
  .fww-shop-modal .modal-content button.close {
    right: 10px;
    top: 10px;
    font-size: 18px;
  }
  .fww-modal-shop-slider.owl-carousel .owl-nav .owl-next, .fww-modal-shop-slider.owl-carousel .owl-nav .owl-prev {
    height: 40px;
    width: 40px;
    left: -23px;
    top: 34%;
  }
  .fww-modal-shop-slider.owl-carousel .owl-nav .owl-next.owl-next, .fww-modal-shop-slider.owl-carousel .owl-nav .owl-prev.owl-next {
    right: -23px;
  }
  .productsQuickView .modal-content {
    padding: 20px;
  }
  .productsQuickView .modal-content .fww-products-content .top-content h3 {
    font-size: 18px;
  }
  .productsQuickView .modal-content .fww-products-content .top-content .products-review {
    margin-bottom: 20px;
  }
  .productsQuickView .modal-content .fww-products-content .top-content p {
    margin-bottom: 15px;
  }
  .productsQuickView .modal-content .fww-products-content .products-color-switch {
    margin-bottom: 20px;
  }
  .productsQuickView .modal-content .fww-products-content .products-size-wrapper {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .productsQuickView .modal-content .fww-products-content .products-add-to-cart ul li {
    margin-right: 10px;
    margin-bottom: 10px;
  }
  .fww-shop-sidebar-area .fww-shop-sidebar {
    display: none;
  }
  #products-collections-filter.products-col-four .col-lg-4 .fww-single-product-card .content .colors {
    top: 45px;
  }
  #products-collections-filter.products-col-four .col-lg-4 .fww-single-product-card .content .colors li {
    margin-right: 3px;
  }
  #products-collections-filter.products-col-four .col-lg-4 .fww-single-product-card .content .colors li a {
    width: 12px;
    height: 12px;
  }
  #products-collections-filter.products-col-four .col-lg-4 .fww-single-product-card .content .colors li a::before {
    height: 16px;
    width: 16px;
  }
  .productsFilterModal .modal-content {
    padding-top: 60px;
    padding-bottom: 30px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .fww-shop-sidebar {
    margin-right: 0;
  }
  .fww-shop-sidebar .fww-single-shop-sidebar-widget .form-check label {
    margin-left: 2px;
    font-size: 13px;
  }
  .compareModal .modal-content {
    padding: 40px 20px 25px 20px;
  }
  .compareModal .modal-content button.close {
    right: 10px;
    top: 10px;
    font-size: 20px;
  }
  .productsQuickViewStyle2 .modal-content {
    padding: 25px;
    padding-top: 45px;
  }
  .productsQuickViewStyle2 .modal-content button.close {
    right: 10px;
    top: 10px;
    font-size: 20px;
  }
  .productsQuickViewStyle2 .fww-default-product-image .tab-menu {
    margin-bottom: 25px;
  }
  .productsQuickViewStyle2 .fww-default-product-image .tab-menu li a img {
    height: 65px;
    width: 45px;
  }
  .productsQuickViewStyle2 .fww-products-content .top-content h3 {
    font-size: 18px;
  }
  .productsQuickViewStyle2 .fww-products-content .products-add-to-cart ul li {
    margin-right: 10px;
    margin-bottom: 10px;
  }
  .deliveryInfoModal .modal-content {
    padding: 25px;
    padding-top: 45px;
  }
  .deliveryInfoModal .modal-content button.close {
    right: 10px;
    top: 10px;
    font-size: 20px;
  }
  .deliveryInfoModal .delivery-info-content h2 {
    font-size: 20px;
    text-align: start;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .fww-product-slider.owl-carousel .owl-nav .owl-next, .fww-product-slider.owl-carousel .owl-nav .owl-prev {
    height: 40px;
    width: 40px;
    left: 0;
    top: 25%;
  }
  .fww-product-slider.owl-carousel .owl-nav .owl-next.owl-next, .fww-product-slider.owl-carousel .owl-nav .owl-prev.owl-next {
    right: 0;
  }
  .fww-single-product-card .content {
    margin-top: 15px;
  }
  .fww-single-product-card.style2 {
    padding: 15px;
  }
  .fww-single-product-card.style2 .image-content {
    margin-right: 10px;
    padding-left: 0;
  }
  .fww-single-product-card.style2 .image-content .tab-menu {
    position: unset;
    transform: translateY(0);
    margin-top: 5px;
  }
  .fww-single-product-card.style2 .image-content .tab-menu li {
    display: inline-block;
    margin-bottom: 0;
  }
  .fww-single-product-card.style2 .image-content .tab-menu li a img {
    height: 40px;
    width: 25px;
  }
  .fww-latest-and-best-selling-area .latest-and-best-selling-tab li {
    margin-right: 40px;
  }
  .fww-latest-and-best-selling-area .latest-and-best-selling-tab li button {
    font-size: 26px;
  }
  .fww-single-product-card .content .colors {
    top: 30px;
  }
  .fww-hot-sale-product-slider.owl-carousel .owl-nav .owl-next, .fww-hot-sale-product-slider.owl-carousel .owl-nav .owl-prev {
    height: 40px;
    width: 40px;
    left: 0;
    top: 35%;
  }
  .fww-hot-sale-product-slider.owl-carousel .owl-nav .owl-next.owl-next, .fww-hot-sale-product-slider.owl-carousel .owl-nav .owl-prev.owl-next {
    right: 0;
  }
  .fww-newsletter-modal.modal.fade .modal-dialog {
    max-width: 730px;
  }
  .fww-newsletter-modal .modal-content .newsletter-modal-content .newsletter-content {
    padding: 30px;
  }
  .fww-shop-modal .modal-dialog {
    max-width: 900px;
  }
  .fww-shop-modal .modal-content {
    padding: 25px;
    padding-top: 50px;
    padding-bottom: 20px;
  }
  .fww-shop-modal .modal-content button.close {
    right: 10px;
    top: 10px;
    font-size: 18px;
  }
  .fww-modal-shop-slider.owl-carousel .owl-nav .owl-next, .fww-modal-shop-slider.owl-carousel .owl-nav .owl-prev {
    height: 40px;
    width: 40px;
    left: -23px;
    top: 34%;
  }
  .fww-modal-shop-slider.owl-carousel .owl-nav .owl-next.owl-next, .fww-modal-shop-slider.owl-carousel .owl-nav .owl-prev.owl-next {
    right: -23px;
  }
  .productsQuickView .modal-dialog {
    max-width: 900px;
  }
  .productsQuickView .modal-content {
    padding: 40px;
  }
  .productsQuickView .modal-content button.close {
    right: 20px;
    top: 20px;
  }
  .productsQuickView .modal-content .fww-products-content .top-content h3 {
    font-size: 18px;
  }
  .productsQuickView .modal-content .fww-products-content .top-content .products-review {
    margin-bottom: 20px;
  }
  .productsQuickView .modal-content .fww-products-content .top-content p {
    margin-bottom: 15px;
  }
  .productsQuickView .modal-content .fww-products-content .products-color-switch {
    margin-bottom: 20px;
  }
  .productsQuickView .modal-content .fww-products-content .products-size-wrapper {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .productsQuickView .modal-content .fww-products-content .products-add-to-cart ul li {
    margin-right: 10px;
    margin-bottom: 10px;
  }
  #products-collections-filter.products-col-four .col-lg-4 .fww-single-product-card .content .colors {
    top: 45px;
  }
  #products-collections-filter.products-col-four .col-lg-4 .fww-single-product-card .content .colors li {
    margin-right: 3px;
  }
  #products-collections-filter.products-col-four .col-lg-4 .fww-single-product-card .content .colors li a {
    width: 12px;
    height: 12px;
  }
  #products-collections-filter.products-col-four .col-lg-4 .fww-single-product-card .content .colors li a::before {
    height: 16px;
    width: 16px;
  }
  .fww-shop-sidebar {
    margin-right: 0;
  }
  .fww-shop-sidebar.style2 {
    margin-left: 0;
  }
  .compareModal .modal-content {
    padding: 40px 25px 25px 25px;
  }
  .compareModal .modal-content button.close {
    right: 10px;
    top: 10px;
    font-size: 20px;
  }
  .productsQuickViewStyle2 .modal-content {
    padding: 30px;
    padding-top: 50px;
  }
  .productsQuickViewStyle2 .modal-content button.close {
    right: 10px;
    top: 10px;
    font-size: 20px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .fww-product-slider.owl-carousel .owl-nav .owl-next, .fww-product-slider.owl-carousel .owl-nav .owl-prev {
    height: 40px;
    width: 40px;
    left: 0;
    top: 30%;
  }
  .fww-product-slider.owl-carousel .owl-nav .owl-next.owl-next, .fww-product-slider.owl-carousel .owl-nav .owl-prev.owl-next {
    right: 0;
  }
  .fww-single-product-card .content {
    margin-top: 15px;
  }
  .fww-single-product-card.style2 {
    padding: 15px;
  }
  .fww-single-product-card.style2 .image-content {
    margin-right: 10px;
    padding-left: 0;
  }
  .fww-single-product-card.style2 .image-content .tab-menu {
    position: unset;
    transform: translateY(0);
    margin-top: 5px;
  }
  .fww-single-product-card.style2 .image-content .tab-menu li {
    display: inline-block;
    margin-bottom: 0;
  }
  .fww-single-product-card.style2 .image-content .tab-menu li a img {
    height: 45px;
    width: 30px;
  }
  .fww-single-product-card .content h3 {
    font-size: 15px;
  }
  .fww-single-product-card .content .colors {
    top: 30px;
  }
  .fww-hot-sale-product-slider.owl-carousel .owl-nav .owl-next, .fww-hot-sale-product-slider.owl-carousel .owl-nav .owl-prev {
    height: 40px;
    width: 40px;
    left: -20px;
    top: 35%;
  }
  .fww-hot-sale-product-slider.owl-carousel .owl-nav .owl-next.owl-next, .fww-hot-sale-product-slider.owl-carousel .owl-nav .owl-prev.owl-next {
    right: -20px;
  }
  .fww-newsletter-modal.modal.fade .modal-dialog {
    max-width: 850px;
  }
  .fww-newsletter-modal .modal-content .newsletter-modal-content .newsletter-content {
    padding: 50px;
  }
  .fww-shop-modal .modal-dialog {
    max-width: 1000px;
  }
  .fww-shop-modal .modal-content {
    padding: 30px;
    padding-top: 50px;
    padding-bottom: 20px;
  }
  .fww-shop-modal .modal-content button.close {
    right: 10px;
    top: 10px;
    font-size: 18px;
  }
  .fww-shop-sidebar {
    margin-right: 0;
  }
  .fww-shop-sidebar.style2 {
    margin-left: 0;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .fww-single-product-card .content .colors {
    top: 30px;
  }
  .fww-single-product-card.style2 .tab-menu li a img {
    height: 50px;
    width: 35px;
  }
  .fww-hot-sale-product-slider.owl-carousel .owl-nav .owl-next, .fww-hot-sale-product-slider.owl-carousel .owl-nav .owl-prev {
    height: 40px;
    width: 40px;
    left: -20px;
    top: 35%;
  }
  .fww-hot-sale-product-slider.owl-carousel .owl-nav .owl-next.owl-next, .fww-hot-sale-product-slider.owl-carousel .owl-nav .owl-prev.owl-next {
    right: -20px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1920px) {
  #products-collections-filter .view-5 {
    width: 20%;
  }
}/*# sourceMappingURL=shop.css.map */