* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
}

*::-moz-selection {
  background-color: var(--primary);
  color: #fff;
}

*::selection {
  background-color: var(--primary);
  color: #fff;
}

*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track {
  background-color: #ccc;
}

*::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 8px;
}

*::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

/**********************************************
   Start Global Style
**********************************************/
p {
  font-size: 15px;
  color: #555;
  line-height: 1.7rem;
}

a {
  color: #000;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

a:hover {
  color: var(--primary) !important;
  text-decoration: none;
}

a:focus {
  outline: 0;
}

del {
  text-decoration: line-through;
  color: #888;
  font-size: 80%;
}

ul {
  list-style-type: none;
  padding: 0;
}

button {
  border: none;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

button:active,
button:active:focus,
button:active:hover,
button:focus,
button:hover,
button:not(:disabled):not(.disabled).active,
button:not(:disabled):not(.disabled):active {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

form .form-control {
  font-size: 14px;
  background-color: #f6f6f6;
}

form .form-control:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: 1px solid var(--primary) !important;
}

form input,
form select {
  height: 46px !important;
}

form .custom-control-input:checked ~ .custom-control-label::before {
  border-color: var(--primary);
  background-color: var(--primary);
}

form .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: var(--primary);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.scroll-top-btn {
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  background: linear-gradient(-135deg, var(--secondary), var(--primary));
  text-align: center;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 1000;
  border-radius: 15px;
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.scroll-top-btn img {
  width: 22px;
  -webkit-filter: invert(99%) sepia(1%) saturate(0%) hue-rotate(163deg) brightness(116%) contrast(100%);
          filter: invert(99%) sepia(1%) saturate(0%) hue-rotate(163deg) brightness(116%) contrast(100%);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.scroll-top-btn:hover img {
  -webkit-animation: floating-y .5s infinite alternate;
          animation: floating-y .5s infinite alternate;
}

.center-vr {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.in-flex {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container,
.container-fluid,
.zi-5 {
  position: relative;
  z-index: 5;
}

.overflow_hidden {
  overflow: hidden !important;
}

.sec-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.text-end {
  text-align: end;
}

/**********************************************
   Start Animations
**********************************************/
@-webkit-keyframes floating-y {
  0% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
@keyframes floating-y {
  0% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}

@-webkit-keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

@keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

.text-focus-in {
  -webkit-animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
          animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

/**********************************************
   Start Edit Navbar & Footer
**********************************************/
.navbar {
  width: 100%;
  padding: 12px 0px;
  z-index: 999;
  -webkit-transition: all .4s linear;
  transition: all .4s linear;
}

.navbar .container-fluid {
  padding: 0 2vw;
}

.navbar .content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

.navbar .content .hamburger {
  display: none;
}

.navbar .content .hamburger .line {
  width: 30px;
  height: 3px;
  background-color: #000;
  display: block;
  margin: 8px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar .content .hamburger.active {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.navbar .content .hamburger.active .line:nth-child(2) {
  width: 0px;
}

.navbar .content .hamburger.active .line:nth-child(1), .navbar .content .hamburger.active .line:nth-child(3) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.navbar .content .hamburger.active .line:nth-child(1) {
  -webkit-transform: translateY(6.5px);
          transform: translateY(6.5px);
}

.navbar .content .hamburger.active .line:nth-child(3) {
  -webkit-transform: translateY(-15px) rotate(90deg);
          transform: translateY(-15px) rotate(90deg);
}

.navbar .content .logo {
  width: 70px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
}

.navbar .content .navbar-nav {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.navbar .content .navbar-nav .nav-item {
  margin: 0px 10px;
}

.navbar .content .navbar-nav .nav-item .nav-link {
  color: #777;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 5px;
  position: relative;
  text-transform: uppercase;
  z-index: 9;
}

.navbar .content .navbar-nav .nav-item .nav-link.active {
  color: var(--primary);
  font-weight: 600;
}

.navbar .navbar-links {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navbar .navbar-links .link-nav {
  font-size: 15px;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}

.navbar .navbar-links .link-nav i {
  color: #555;
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}

.navbar .navbar-links .link-icon {
  font-size: 18px;
}

@media (max-width: 900px) {
  .hamburger {
    display: block !important;
  }
  .navbar-nav {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 82px;
    background-color: #fff;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: start !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    -webkit-transition: all .5s linear;
    transition: all .5s linear;
    left: -100%;
  }
  .navbar .navbar-links .link-nav span {
    display: none;
  }
  .navbar .navbar-links .link-nav i {
    font-size: 18px;
  }
  .navbar-nav li {
    margin: 20px 0px !important;
    width: 100%;
  }
  .acitve-nav {
    left: 0px;
  }
}

.footer {
  position: relative;
  background-color: #efefef;
}

.footer .inner {
  padding: 4vw 7vw 0 7vw;
}

.footer .inner .content {
  margin-bottom: 25px;
}

.footer .inner .content .logo {
  width: 70px;
  margin-bottom: 25px;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer .inner .content .data a {
  display: block;
  margin: 10px 0;
}

.footer .inner .content .data a span {
  color: #888;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}

.footer .inner .content .title {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.footer .inner .content .links a {
  display: block;
  color: #888;
  margin: 10px 0;
  text-transform: capitalize;
}

.footer .inner .social-links a {
  -webkit-margin-start: 10px;
          margin-inline-start: 10px;
  color: #666;
  font-size: 18px;
}

.footer .inner .copytight_p {
  padding: 20px 0 10px 0;
  border-top: 1px solid #ccc;
  font-weight: bold;
  color: #666;
}

/**********************************************
    Start Public Classes
**********************************************/
.butn {
  position: relative;
  overflow: hidden;
  border: none;
  padding: .7rem 2.5rem;
  border-radius: 4px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  background-color: #111111;
  color: #fff;
  display: block;
}

.butn::after, .butn::before {
  content: '';
  width: 100%;
  height: 0%;
  position: absolute;
  left: 0;
  right: 0;
  background-color: var(--primary);
  opacity: 0;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.butn::before {
  top: 0;
}

.butn::after {
  bottom: 0;
}

.butn span {
  position: relative;
  z-index: 5;
}

.butn:hover {
  color: #fff !important;
}

.butn:hover::after, .butn:hover::before {
  height: 51%;
  opacity: 1;
}

.swiper-container .swiper-button-next,
.swiper-container .swiper-button-prev {
  width: 45px;
  height: 45px;
  background-image: none !important;
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.swiper-container .swiper-button-next::before,
.swiper-container .swiper-button-prev::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  text-align: center;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 45px;
  color: #ccc;
  font-size: 26px;
}

.swiper-container .swiper-button-next:hover,
.swiper-container .swiper-button-prev:hover {
  background-color: #000;
}

.swiper-container .swiper-button-next:hover::before,
.swiper-container .swiper-button-prev:hover::before {
  color: #fff;
}

.swiper-container .swiper-button-next::before {
  content: '\f054';
}

.swiper-container .swiper-button-prev::before {
  content: '\f053';
}

.swiper-container .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 0;
  margin: 0 6px !important;
  background-color: rgba(255, 255, 255, 0.3);
  opacity: 1;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.swiper-container .swiper-pagination-bullet-active {
  background-color: white;
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

.sec-title {
  font-weight: bold;
  letter-spacing: 3px;
  text-transform: capitalize;
}

.pg-header {
  position: relative;
  padding: 50px 0 70px 0;
}

.pg-header .breadcrumb {
  background-color: transparent;
}

.pg-header .breadcrumb a {
  color: #fff;
}

.pg-header .breadcrumb .active {
  color: #eee;
}

.pg-header .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #ccc;
  content: "-";
}

.pg-header .title {
  text-align: center;
  color: #fff;
  margin-bottom: 0;
}

.pg-header .bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.pagination-wrapper .page-link {
  padding: 0.5rem 1rem;
  color: #666;
  font-size: 14px;
  border-radius: 0 !important;
  margin: 0 3px;
}

.pagination-wrapper .page-link:hover {
  background-color: var(--primary);
  color: #fff !important;
}

.color1 {
  background-color: #545454;
}

.color2 {
  background-color: #006cf2;
}

.color3 {
  background-color: #ffb400;
}

.color4 {
  background-color: #f3241a;
}

/**********************************************
    Start Edit Home Page 
**********************************************/
.header .item {
  padding: 70px 0;
  position: relative;
}

.header .item .container-fluid {
  padding: 0 6vw;
}

.header .item .text-box {
  padding: 3vw;
}

.header .item .text-box .title {
  font-weight: bold;
  color: var(--primary);
}

.header .item .text-box .det {
  color: #fff;
}

.header .item .img-box {
  position: relative;
  overflow: hidden;
}

.header .item .img-box .sec-img {
  height: 500px;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  z-index: 5;
}

.header .item .img-box .word {
  position: absolute;
  z-index: 1;
  color: #fff;
  font-weight: 900;
  font-size: calc(35px + 5vw);
}

.header .item .img-box .word.word1 {
  left: 0;
  top: 155px;
}

.header .item .img-box .word.word2 {
  bottom: 65px;
  right: 80px;
}

.header .item .bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.header .item::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.header .swiper-slide-active .sec-img {
  -webkit-animation: zoomIn 1s both;
          animation: zoomIn 1s both;
}

.header .swiper-slide-active .word1 {
  -webkit-animation: fadeInUp 1s both;
          animation: fadeInUp 1s both;
}

.header .swiper-slide-active .word2 {
  -webkit-animation: fadeInDown 1s both;
          animation: fadeInDown 1s both;
}

.header .swiper-slide-active .text-box {
  -webkit-animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
          animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

.categ-sec {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
}

.categ-sec .card_categ {
  height: 300px;
  position: relative;
  -webkit-box-shadow: 0 0 35px 0 #eee;
          box-shadow: 0 0 35px 0 #eee;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 20px;
}

.categ-sec .card_categ .categ_name {
  position: absolute;
  top: 30px;
  left: 25px;
  font-weight: 600;
  font-size: 1.8rem;
  color: #777;
  text-transform: capitalize;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.categ-sec .card_categ .num {
  position: absolute;
  left: 20px;
  top: 70px;
  font-size: calc(45px + 2vw);
  font-weight: bold;
  -webkit-text-stroke-width: 0.5px;
  -webkit-text-stroke-color: #333;
  color: transparent;
  text-shadow: 0 0px 40px #ddd;
  padding: 0 5px;
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.categ-sec .card_categ:hover .categ_name {
  color: var(--primary);
}

.categ-sec .card_categ:hover .num {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.categ-sec .card_categ_lg {
  height: 620px;
  -webkit-box-shadow: 0 0 35px 0 #eee;
          box-shadow: 0 0 35px 0 #eee;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.categ-sec .card_categ:hover .sec-img,
.categ-sec .card_categ_lg:hover .sec-img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.products-sec {
  position: relative;
  padding: 70px 0;
}

.products-sec .prod_card {
  position: relative;
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 35px;
}

.products-sec .prod_card .img-box {
  height: 250px;
  position: relative;
  overflow: hidden;
}

.products-sec .prod_card .img-box .prod-img {
  -o-object-fit: contain;
     object-fit: contain;
}

.products-sec .prod_card .img-box .hvr-icons {
  position: absolute;
  right: 10px;
  top: 10px;
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 0;
  -webkit-filter: blur(10px);
          filter: blur(10px);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.products-sec .prod_card .img-box .hvr-icons .icon-link {
  width: 45px;
  height: 45px;
  line-height: 45px;
  background-color: #eee;
  border-radius: 5px;
  text-align: center;
  display: block;
  margin-bottom: 13px;
  -webkit-box-shadow: 0 0 10px 0 #ccc;
          box-shadow: 0 0 10px 0 #ccc;
}

.products-sec .prod_card .img-box .hvr-icons .icon-link:hover {
  background-color: #111111;
  color: var(--primary);
}

.products-sec .prod_card .img-box .badge {
  position: absolute;
  left: 10px;
  top: 10px;
}

.products-sec .prod_card .card-body {
  text-align: center;
  padding: 1.25rem 1.25rem 2.3rem 1.25rem;
}

.products-sec .prod_card .card-body .name {
  text-transform: capitalize;
}

.products-sec .prod_card .card-body .price span {
  font-weight: 300;
  color: #333;
}

.products-sec .prod_card .card-body .price b {
  color: var(--primary);
}

.products-sec .prod_card .card-body .cart-butn {
  font-weight: bold;
  color: #888;
  display: block;
  text-align: center;
  padding: 5px 0 0 0;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-filter: blur(10px);
          filter: blur(10px);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
}

.products-sec .prod_card .card-body .cart-butn i {
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}

.products-sec .prod_card:hover .hvr-icons {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
  -webkit-filter: blur(0px);
          filter: blur(0px);
}

.products-sec .prod_card:hover .cart-butn {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-filter: blur(0px);
          filter: blur(0px);
}

.banner-sec {
  position: relative;
  overflow: hidden;
}

.banner-sec .banner_card {
  height: 340px;
  position: relative;
  overflow: hidden;
}

.banner-sec .banner_card::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 30%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
          transform: skewX(-25deg);
}

.banner-sec .banner_card:hover::before {
  -webkit-animation: shine .75s;
          animation: shine .75s;
}

.banner-sec .banner_card:hover .sec-img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.about-sec {
  position: relative;
  padding: 100px 0;
}

.about-sec .img-box {
  position: relative;
  height: 550px;
}

.about-sec .img-box::before {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: -25px;
  top: -25px;
  background-color: #1b1b1b;
  z-index: -1;
}

.about-sec .text-box {
  padding: 0 6vw;
}

.about-sec .text-box .title {
  line-height: 2.3rem;
  text-transform: uppercase;
}

.newsletter-sec {
  padding: 50px 0;
}

/**********************************************
    Start Edit products Page 
**********************************************/
.products-pg .filter-heading {
  border-bottom: 1px solid #ddd;
}

.products-pg .filter-heading .title {
  font-weight: bold;
  border-right: 1px solid #ddd;
  padding: 20px 0;
  margin-bottom: 0;
  -webkit-padding-start: 20px;
          padding-inline-start: 20px;
}

.products-pg .filter-heading .sorts-wrapper {
  padding: 20px 25px;
  border-right: 1px solid #ddd;
}

.products-pg .filter-heading .sorts-wrapper .subtitle {
  color: #888;
  font-weight: bold;
}

.products-pg .filter-heading .sorts-wrapper .link {
  margin: 0 10px;
  color: #333;
}

.products-pg .filter-heading .sorts-wrapper .link.active {
  color: var(--primary);
  border-bottom: 1px dashed var(--primary);
}

.products-pg .filter-heading .butns-wrapper {
  width: 100%;
}

.products-pg .filter-heading .butns-wrapper .btn-view {
  width: 47%;
  background-color: transparent;
  color: #555;
  padding: 20px 0;
  border-right: 1px solid #ddd;
}

.products-pg .filter-heading .butns-wrapper .btn-view.active {
  color: var(--primary);
}

.products-pg .filtering {
  border-right: 1px solid #ddd;
}

.products-pg .filtering .filter-box {
  padding: 0 25px 15px 25px;
  border-bottom: 1px solid #ddd;
}

.products-pg .filtering .filter-box .heading .title {
  font-weight: bold;
}

.products-pg .filtering .filter-box .heading .redo-butn {
  background-color: transparent;
  color: var(--primary);
}

.products-pg .filtering .filter-box .heading .redo-butn:hover {
  color: var(--secondary);
}

.products-pg .filtering .filter-box.categ-links .link {
  margin: 5px 0;
  color: #555;
}

.products-pg .filtering .filter-box.brand-checks .custom-control {
  margin: 10px 0;
  color: #555;
  font-size: 14px;
}

.products-pg .filtering .filter-box.price-slider .price-wrapper .ui-slider-horizontal {
  width: 100%;
}

.products-pg .filtering .filter-box.price-slider .price-wrapper .ui-widget-header {
  background: var(--primary);
}

.products-pg .filtering .filter-box.price-slider .price-wrapper .price-range-field {
  width: 40%;
  background-color: transparent;
  border: 1px solid #ddd;
  margin: 0 4px;
}

.products-pg .filtering .filter-box.price-slider .price-wrapper .inputs-wrapper {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.products-pg .list-view .row > [class*='col-'] {
  max-width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

.products-pg .list-view .prod_card {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.products-pg .list-view .prod_card .img-box {
  width: 400px;
  height: 300px;
}

.products-pg .list-view .prod_card .card-body {
  display: inline-block;
  text-align: start !important;
}

@media (max-width: 575.98px) {
  .products-pg .list-view .prod_card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .products-pg .list-view .prod_card .img-box {
    width: 100%;
  }
}

.colors-checks .colors-wrapper {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.colors-checks .colors-wrapper .custom-control {
  padding: 0;
}

.colors-checks .colors-wrapper .custom-control-label {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-block;
  margin: 5px;
  border: 1px solid #ccc;
}

.colors-checks .colors-wrapper .custom-control-label::after {
  top: 3px;
  left: -2.4rem;
  width: 1.5rem;
  height: 1.5rem;
}

.colors-checks .colors-wrapper .custom-control-label::before {
  display: none;
}

.size-radios .sizes-wrapper {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.size-radios .sizes-wrapper .custom-control {
  padding: 0;
}

.size-radios .sizes-wrapper .custom-control-label {
  width: 65px;
  height: 40px;
  line-height: 40px;
  color: #555;
  margin: 5px;
  border: 1px solid #ddd;
  display: inline-block;
  text-align: center;
}

.size-radios .sizes-wrapper .custom-control-label::after,
.size-radios .sizes-wrapper .custom-control-label::before {
  display: none;
}

.size-radios .sizes-wrapper .custom-control-input:checked ~ .custom-control-label {
  border: 1px solid var(--primary);
  background-color: var(--primary);
  color: #fff;
}

/**********************************************
    Start Edit product details Page 
**********************************************/
.single-product {
  position: relative;
  padding: 70px 0 20px 0;
  background-color: #f7f7f7;
}

.single-product .text-box .title {
  font-weight: bold;
}

.single-product .text-box .inStock {
  font-weight: bold;
  color: #5b9500;
  font-size: 18px;
}

.single-product .text-box .subtitle {
  color: #777;
}

.single-product .text-box .butns-wrapper {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.single-product .text-box .butns-wrapper .form-control {
  width: 35%;
  background: transparent;
  height: 48px;
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}

.single-product .text-box .fav-butn {
  padding: 0.7rem 1.5rem;
}

.single-product .lg-slide-swiper {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  overflow-x: hidden;
}

.single-product .lg-slide-swiper .img-box {
  position: relative;
  overflow: hidden;
  height: 310px;
}

.single-product .lg-slide-swiper .img-box .lg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  z-index: 1;
}

.single-product .lg-slide-swiper .swiper-slide-active .lg-img {
  -webkit-animation: fadeIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
          animation: fadeIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.single-product .sm-slide-swiper {
  overflow: hidden;
  height: 200px;
}

.single-product .sm-slide-swiper .swiper-slide {
  opacity: .8;
  cursor: pointer;
}

.single-product .sm-slide-swiper .sm-bg-header {
  width: 100%;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 4px;
  border: 1px solid transparent;
  padding: 10px;
}

.single-product .sm-slide-swiper .swiper-slide-thumb-active {
  opacity: 1;
}

.single-product .sm-slide-swiper .swiper-slide-thumb-active .sm-bg-header {
  border: 1px solid var(--primary) !important;
}

.product-details {
  position: relative;
  padding: 50px 0;
}

.product-details .nav {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.product-details .nav .nav-link {
  margin: 0 10px;
  border-radius: 0;
  font-weight: bold;
  color: #777;
  border-bottom: 1px solid transparent;
}

.product-details .nav .nav-link.active {
  background-color: transparent;
  color: var(--primary);
  border-bottom: 1px solid var(--primary);
}

.product-details .tab-wrapper.desc-tab .custom-list .li {
  margin: 8px 0;
  color: #666;
}

.product-details .tab-wrapper.reviews-tab .review-card {
  background-color: #f8f8f8;
  padding: 30px 15px;
  border-radius: 25px;
}

.product-details .tab-wrapper.reviews-tab .review-card .profile-img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  display: block;
  margin: auto;
}

.product-details .tab-wrapper.reviews-tab .review-card .profile-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-details .tab-wrapper.reviews-tab .review-card .review-content .rate {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 5px;
  font-size: 13px;
}

.product-details .tab-wrapper.reviews-tab .review-card .review-content .rate i {
  margin-right: 3px;
  color: #ccc;
}

.product-details .tab-wrapper.reviews-tab .review-card .review-content .rate i.active {
  color: var(--primary);
}

.product-details .tab-wrapper.reviews-tab .review-card .review-content .det {
  font-size: 13px;
  margin-bottom: 0;
}
/*# sourceMappingURL=style.css.map */