﻿@charset "UTF-8";
/************ TABLE OF CONTENTS ***************

    01. common CSS
    02. header CSS
    03. banner CSS
    04. product CSS
    05. category CSS
    06. features CSS
    07. blog CSS
    08. testimonial CSS
    09. newsletter CSS
    10. page-title CSS
    11. about CSS
    12. error CSS
    13. contact CSS
    14. shop CSS
    15. faq CSS
    16. register CSS
    17. footer CSS

**********************************************/
/*

*/
/*----------------------------------------
    01. common CSS
----------------------------------------*/
@font-face {
    font-family: SF UI Display;
    font-weight: 400;
    src: url("../fonts/SF UI Display Light.otf") format("opentype");
}
@font-face {
    font-family: SF UI Display;
    font-weight: 500;
    src: url("../fonts/SF UI Display Regular.otf") format("opentype");
}
@font-face {
    font-family: SF UI Display;
    font-weight: 600;
    src: url("../fonts/SF UI Display Medium.otf") format("opentype");
}
@font-face {
    font-family: SF UI Display;
    font-weight: 700;
    src: url("../fonts/SF UI Display Bold.otf") format("opentype");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "SF UI Display", sans-serif;
  font-size: 16px;
  font-weight: normal;
  color: var(--clr-common-text);
  line-height: 26px;
}

a {
  text-decoration: none;
}

.w-img img {
  width: 100%;
}

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

a,
.btn,
button,
span,
p,
i,
input,
select,
textarea,
li,
img,
svg path,
*::after,
*::before,
.transition-3,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
  border: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Jost", sans-serif;
  color: var(--clr-common-heading);
  margin-top: 0px;
  font-weight: 600;
  line-height: 1.2;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 14px;
}
b{color: #000000}
ul {
  margin: 0px;
  padding: 0px;
}

li {
  list-style: none;
}

p {
  font-size: 16px;
  font-weight: normal;
  color: var(--clr-common-text);
  margin-bottom: 15px;
  line-height: 26px;
}

*::-moz-selection {
  background: var(--clr-common-black);
  color: var(--clr-common-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--clr-common-black);
  color: var(--clr-common-white);
  text-shadow: none;
}

::selection {
  background: var(--clr-common-black);
  color: var(--clr-common-white);
  text-shadow: none;
}

/*--
    - Input Placeholder
-----------------------------------------*/
*::-moz-placeholder {
  color: var(--clr-common-placeholder);
  font-size: 16px;
  opacity: 1;
}

*::placeholder {
  color: var(--clr-common-placeholder);
  font-size: 16px;
  opacity: 1;
}

/*--
    - Common Classes
-----------------------------------------*/
.hovery5{transform: translateY(10px);transition: all 0.35s ease-in-out;}
.hovery5:hover{transform: translateY(0px);}
.hovery10{transform: translateY(10px);transition: all 0.35s ease-in-out;}
.hovery10:hover{transform: translateY(0px);}
.shadowh{box-shadow: 0 0 10px -4px #0000001a !important}
.shadowh:hover{box-shadow: 0 0 12px -1px #0003!important}
.radius20{border-radius: 15px; overflow: hidden;}
.radius30{border-radius: 30px; overflow: hidden;}
.border-black{border-color: #000!important}
.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.z-index-1 {
  z-index: 1;
}

.z-index-11 {
  z-index: 11;
}

.overflow-y-visible {
  overflow-x: hidden;
  overflow-y: visible;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.pos-rel {
  position: relative;
}

.pos-abs {
  position: absolute;
}

/*--
    - Background color
-----------------------------------------*/
.grey-bg {
  background: var(--clr-bg-grey);
}

.pink-bg {
  background: var(--clr-common-black);
}

.white-bg {
  background: var(--clr-common-white);
}

.black-bg {
  background: var(--clr-common-black);
}

.footer-bg {
  background: var(--clr-bg-footer);
}

/*--
    - color
-----------------------------------------*/
.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
  color: var(--clr-common-white) !important;
}

.white-color {
  color: var(--clr-common-white);
}

.theme-color {
  color: var(--clr-common-black) !important;
}
.blue-color{color: #1e77bd!important}
.black-color {
  color: var(--clr-common-black);
}

.body-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 99;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.body-overlay:hover {
  cursor: pointer;
}

.body-overlay.opened {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 575px) {
  .progress-wrap {
    right: 15px;
    bottom: 15px;
  }
}

/* link btn */
.link-btn {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: var(--clr-common-black);
  text-transform: uppercase;
  padding-right: 15px;
}
.link-btn i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  -moz-transition: all ease 0.2s;
  -ms-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
}
.link-btn i:first-child {
  left: -100%;
  visibility: hidden;
  opacity: 0;
}
.link-btn i:last-child {
  right: 0;
}
.link-btn:hover {
  color: var(--clr-common-black);
}
.link-btn:hover i:first-child {
  left: 0;
  visibility: visible;
  opacity: 1;
}
.link-btn:hover i:last-child {
  right: -100%;
  visibility: hidden;
  opacity: 0;
}

.link-btn-2 {
  position: relative;
  font-size: 14px;
  color: var(--clr-common-black);
  font-weight: 500;
  padding-right: 22px;
  display: inline-block;
  text-transform: uppercase;
  font-family: "Jost", sans-serif;
}
.link-btn-2 i {
  position: absolute;
  top: 45%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  -moz-transition: all ease 0.2s;
  -ms-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  font-size: 12px;
}
.link-btn-2 i:first-child {
  right: 10%;
  visibility: hidden;
  opacity: 0;
}
.link-btn-2 i:last-child {
  right: 0;
}
.link-btn-2:hover {
  color: var(--clr-common-black);
}
.link-btn-2:hover i:first-child {
  right: 0;
  visibility: visible;
  opacity: 1;
}
.link-btn-2:hover i:last-child {
  right: -10%;
  visibility: hidden;
  opacity: 0;
}
.link-btn-2.pink {
  color: var(--clr-common-black);
}
.link-btn-2.pink:hover {
  color: var(--clr-common-black);
}

/* pulse btn */
.pulse-btn {
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 84px;
  text-align: center;
  background-color: var(--clr-common-white);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  color: var(--clr-common-black);
  animation: pulse 2s infinite;
}
.pulse-btn:hover {
  background-color: var(--clr-common-black);
  color: var(--clr-common-white);
}
.pulse-btn i {
  padding-left: 2px;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
.border-left {
  position: relative;
}
.border-left:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background: #eaebee;
  left: 0;
  top: 0;
}

:root {
  /**
     @color declaration
     */
  --clr-common-white: #fff;
  --clr-common-black: #000;
  --clr-common-blue: #2785ff;
  --clr-common-heading: #171717;
  --clr-common-text: #333333;
  --clr-common-border: #eaebee;
  --clr-common-placeholder: #707070;
  --clr-theme-1: #171717;
  --clr-theme-2: #fb5050;
  --clr-bg-gray: #f3f4f6;
  --clr-bg-black: #000;
  --clr-bg-footer: #f6f6f6;
}

.bg-gray {
  background-color: var(--clr-bg-gray);
}

.fill-btn {
  font-size: 16px;
  color: var(--clr-common-white);
  background: #007fdc;
  height: 40px;
  display: inline-block;
  line-height: 38px;
  border-radius: 5px;
  padding: 0 26px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.fill-btn:hover {background: #f4ad34;color: var(--clr-common-white);}

.border-btn {
  font-size: 16px;
  color: #007fdc;
  border: 1px solid #007fdc;
  padding: 0 20px;
  height: 50px;
  border-radius: 5px;
  display: inline-block;
  line-height: 48px;
  text-align: center;
}
.border-btn:hover {
  color: var(--clr-common-white);
  background: #007fdc;
}

.section-main-title {
  font-size: 38px;
  line-height: 1.26;
  font-weight: 600;
  color: var(--clr-common-heading);
  margin-top: -8px;
}
@media (max-width: 575px) {
  .section-main-title {
    font-size: 32px;
  }
}
@media (max-width:499px) {
  .section-main-title {
    font-size: 28px;
  }
}

.hr1 {
  border-bottom: 1px solid #dcdcdc;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl,
.container-cx {
  width: 100%;
  padding-right: var(--bs-gutter-x, 15px);
  padding-left: var(--bs-gutter-x, 15px);
  margin-right: auto;
  margin-left: auto;
}
.container-cx{
  max-width: 1600px;
}
.row {
  --bs-gutter-x: 30px;
}

@media (min-width: 1400px) {
  .container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    max-width: 1208px;
  }
}
@media (min-width: 1200px) {
  .container-small {
    max-width: 1200px;
  }
}

/*----------------------------------------
    02. header CSS
----------------------------------------*/
.header-top-right {
  display: flex;
  gap: 40px;
  justify-content: end;
  align-items: center;
}
.header-top-right .nice-select {
  line-height: 20px;
  border-radius: 0;
  font-size: 16px;
  color: #171717;
  border: none;
  padding-right: 16px;
  height: 20px;
}
.header-top-right .nice-select::after {
  right: 3px;
}
.header-top-right .text-btn {
  color: #171717;
  line-height: 1;
  height: 20px;
}

.header-top-link {
  display: flex;
  gap: 20px;
}
.header-top-link .text-btn {
  color: #171717;
  line-height: 1;
  height: 20px;
}
.header-top-link a:not(:last-child) {
  border-right: 1px solid #eaebee;
  padding-right: 20px;
}

.header-top {
  border-bottom: 1px solid #eaebee;
  padding: 10px 0;
  overflow-x: clip;
}

.nice-select {
  font-size: 16px;
  color: #171717;
  border: none;
  padding-left: 0;
  padding-right: 15px;
}
.nice-select:after {
  right: 12px;
  border-bottom: 1px solid #171717;
  border-right: 1px solid #171717;
  width: 7px;
  height: 7px;
}

.text-btn {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.header-top-right .nice-select.border-left:before {
  left: -20px;
}

.main-menu {
  display: inline-block;
}
.main-menu ul li {
  display: inline-block;
  margin: 0px 20px;
  position: relative;
}
.main-menu ul li.lang img{max-width: 22px;}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .main-menu ul li {
    margin: 0px 15px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .main-menu ul li {
    margin: 0px 13px;
  }
}
.main-menu ul li a {
  font-size: 18px;
  color: var(--clr-common-heading);
  text-transform: inherit;
  display: inline-block;
  padding: 35px 0;
  line-height: 20px;
}
.main-menu ul li .sub-menu {
  background: var(--clr-common-white) none repeat scroll 0 0;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176);
  left: 0;
  opacity: 0;
  position: absolute;
  top: 120%;
  transition: all 0.3s ease 0s;
  visibility: hidden;
  min-width: 240px;
  z-index: 99;
  border-top: 4px solid var(--clr-common-heading);
  text-align: left;
  padding: 15px 0;
}
.main-menu ul li .sub-menu .sub-menu {
  left: 100%;
  top: 100%;
}
.main-menu ul li .sub-menu li {
  display: flex;
  margin: 0px;
  padding: 8px 25px 8px 25px;
  justify-content: space-between;
}
.main-menu ul li .sub-menu li a {
  padding: 0px;
  display: block;
  color: var(--clr-common-heading);
  position: relative;
  font-weight: 400;white-space: nowrap;
}
.main-menu ul li .sub-menu li a:before {
  content: "";
  width: 0;
  height: 1px;
  bottom: 0;
  position: absolute;
  left: auto;
  right: 0;
  z-index: -1;
  transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  background: var(--clr-common-heading);
  opacity: 0;
}
.main-menu ul li .sub-menu li:hover > a {
  color: var(--clr-common-text);
  padding-left: 5px;
}
.main-menu ul li .sub-menu li:hover > a:before {
  width: 100%;
  left: 0;
  right: auto;
}
.main-menu ul li:hover > a {
  color: var(--clr-common-text);
}
.main-menu ul li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.main-menu ul li:hover > .sub-menu li:hover > .sub-menu {
  top: 0;
}
.main-menu ul li:hover.menu-item-has-children::after {
  color: var(--clr-common-text);
}
.main-menu ul li.menu-item-has-children {
  position: relative;
}
.main-menu ul li.menu-item-has-children.pronav_top{position: initial;}
.main-menu ul li.menu-item-has-children:after {
  content: "";
  font-size: 12px;
  color: var(--clr-common-heading);
  font-family: "Font Awesome 5 Pro";
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.main-menu ul.productnav{display: flex;flex-wrap: wrap;justify-content: space-between; border-top: none!important; width: 100%; max-width: 1208px; margin: auto; left: 0;right: 0}
.main-menu ul.productnav dl {
  width: 33.333%;
  padding: 15px 20px;margin-bottom: 0
}
.main-menu ul.productnav dl dt {
  float: left;
  margin-right: 20px;
  height: 100%;
}
.main-menu ul.productnav dl dt img {
  max-width: 110px;
}
.main-menu ul.productnav dl dd {
  margin: 0;
}
.main-menu ul.productnav dl dd a{font-size: 14px; padding: 5px 0;display: inherit;}
.main-menu ul.productnav dl dd h3 {
  margin-top: -12px;
  margin-bottom: 12px;
}
.main-menu ul.productnav dl dd h3 a {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2em
}

.main-menu ul.productnav dl dd a:hover{color: #1e77bd}
.main-menu ul .new-relese {padding: 10px 20px;position: relative;width: 100%;column-count: 3;column-gap: 10px;}
.main-menu ul .new-relese .new-item{flex-grow: 1;break-inside: avoid-column; margin-bottom: 10px; border-radius: 8px; overflow: hidden;}
.main-menu ul .new-relese .new-item a{padding: 0}
.main-menu ul .new-relese .new-item a img{width: 100%}
.action-list.action-list-header1 {
  display: flex;
  gap: 18px;
}

.action-item {
  display: inline-block;
}
.action-item a {
  display: inline-block;
  position: relative;
  padding-right: 13px;
}
.action-item a i {
  font-size: 20px;
  color: var(--clr-common-heading);
}
.action-item .action-item-number {
  width: 20px;
  height: 20px;
  background: var(--clr-common-heading);
  display: inline-block;
  text-align: center;
  line-height: 18px;
  color: var(--clr-common-white);
  border-radius: 50%;
  position: absolute;
  right: 0px;
  top: -4px;
  font-size: 13px;
}
.action-item .cart-items-price {
  font-weight: 600;
  color: var(--clr-common-heading);
}

.action-list-header2 {
  display: inline-flex;
  gap: 20px;
}
.action-list-header2 .action-item a {
  width: 55px;
  height: 55px;
  border: 1px solid var(--clr-common-border);
  text-align: center;
  line-height: 55px;
  border-radius: 50%;
  padding-right: 0;
}
.action-list-header2 .action-item .action-item-number {
  right: 0px;
  top: 0px;
}
.action-list-header2 .action-item.action-item-cart .action-item-number {
  background: #9c24c7;
}
.action-list-header2 .action-item .cart-items-price {
  font-weight: 600;
  color: var(--clr-common-heading);
  height: inherit;
  width: inherit;
  border: 0;
}
.action-list-header2 .action-item-cart {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.filter-search-input {
  position: relative;
}
.filter-search-input input {
  width: 100%;
  height: 50px;
  border: 1px solid var(--clr-common-border);
  border-radius: 5px;
  padding: 0 50px 0 30px;
  outline: none;
}
.filter-search-input input:focus {
  border-color: var(--clr-common-heading);
}
.filter-search-input button {
  position: absolute;
  right: 20px;
  top: 12px;
  color: var(--clr-common-heading);
}

.header-main-right.header-main-right-header1 {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: end;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .header-main-right.header-main-right-header1 {
    gap: 10px;
  }
}
@media (max-width: 575px) {
  .header-main-right.header-main-right-header1 {
    gap: 0;
  }
}

.header-main-left.header-main-left-header1 {
  display: flex;
  align-items: center;
}

.header1-logo {
  margin-right: 60px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .header1-logo {
    margin-right: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header1-logo {
    margin-right: 0;
  }
}

.header-search {
  width: 240px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header-search {
    width: 200px;
  }
}

.header-main-content-wrapper {
  display: flex;
  justify-content: space-between; position: relative;
}

/* bar-icon style start */
.bar-icon {
  width: 20px;
  height: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.bar-icon span {
  width: 100%;
  height: 2px;
  background: #000;
  display: inline-block;
}

.bar-icon span:nth-child(2) {
  margin-left: 9px;
  transition: 0.3s;
}

.bar-icon:hover span:nth-child(2) {
  margin-left: 0;
}

/* bar-icon style end */
.sticky {
  position: fixed;
  top: 0;
  background: var(--clr-common-white);
  z-index: 800;
  right: 0;
  left: 0;
  width: 100%;
  transition: 0.4s;
  box-shadow: 0 0 60px 0 rgba(53, 57, 69, 0.15);
  animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
  border: none;
}
.header4{min-height: 80px;}
.header-main1{box-shadow: 0 0 20px 0 rgba(53, 57, 69, 0.15);}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-main1 {
    padding: 25px 0;
  }
}

.header-note {
  background: var(--clr-common-heading);
  position: relative;
  padding: 7px 15px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-note {
    display: none;
  }
}

.header-note p {
  color: var(--clr-common-white);
  margin-bottom: 0;
  text-align: center;
}
.header-note p span {
  font-weight: 600;
}

.note-close-btn {
  font-size: 12px;
  position: absolute;
  right: 20px;
  top: 8px;
  color: var;
  color: var(--clr-common-white);
}

.header2 .header-note {
  background: #8f4da7;
}

.user-icon {
  width: 55px;
  height: 55px;
  text-align: center;
  line-height: 55px;
  background: var(--clr-bg-footer);
  border-radius: 50%;
}

.user-btn span {
  font-size: 16px;
  font-weight: 500;
  color: var(--clr-common-heading);
}

.user-btn span span {
  font-size: 14px;
  font-weight: 400;
  display: block;
}

.user-btn a {
  display: inline-flex;
  gap: 10px;
}

.main-menu2.main-menu ul li:hover > a {
  color: #8f4da7;
}
.main-menu2.main-menu ul li:hover.menu-item-has-children::after {
  color: #8f4da7;
}
.main-menu2.main-menu ul li .sub-menu li:hover > a {
  color: #8f4da7;
}
.main-menu2.main-menu ul li .sub-menu {
  border-color: #8f4da7;
}

.category-click {
  height: 70px;
  background: var(--clr-theme-1);
  border-radius: 5px;
  line-height: 70px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
  width: 270px;
  color: var(--clr-common-white);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  cursor: pointer;
}

.category-click.items-open::after {
  transform: rotate(180deg);
}

.bar-icon.bar-icon-2 span {
  background: var(--clr-common-white);
}

.bar-icon.bar-icon-2 span:nth-child(2) {
  margin-left: 0;
}

.category-click:after {
  position: absolute;
  content: "";
  font-family: "Font Awesome 5 Pro";
  color: var(--clr-common-white);
  right: 20px;
}

.header-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.filter-search-input.header-search-2 {
  flex-grow: 1;
  margin-left: 30px;
}

.filter-search-input.header-search-2 input {
  height: 70px;
  border-color: var(--clr-bg-footer);
  background: var(--clr-bg-footer);
}

.filter-search-input.header-search-2 button {
  top: 22px;
}

.irc-item.footer-support.header-bottom-support {
  position: relative;
  margin-left: 50px;
  margin-right: 60px;
}

.irc-item.footer-support.header-bottom-support:after {
  position: absolute;
  content: "";
  width: 1px;
  height: 50px;
  background: var(--clr-common-border);
  right: -30px;
}

.header-support-social {
  display: flex;
  align-items: center;
}

.header-bottom {
  padding-top: 5px;
  padding-bottom: 15px;
}

.category-menu .category-items {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 270px;
  padding: 30px 20px;
  background: var(--clr-theme-1);
  border-radius: 5px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.category-menu .category-items a {
  color: var(--clr-common-white);
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

.category-menu .category-items a:last-child {
  margin-bottom: 0;
}

.category-menu:not(items-open) .category-items {
  display: none;
}

.action-list-header4 {
  display: flex;
  gap: 18px;
}

.action-list-header4 .action-item.action-item-cart .action-item-number {
  background: #1e77bd;
}

.main-menu4.main-menu ul li:hover > a {
  color: #1e77bd;
}
.main-menu4.main-menu ul li:hover.menu-item-has-children::after {
  color: #1e77bd;
}
.main-menu4.main-menu ul li .sub-menu li:hover > a {
  color: #1e77bd;
}
.main-menu4.main-menu ul li .sub-menu {
  border-color: #1e77bd;
}

.header3 .header-note {
  background: #b28a59;
}

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

.action-list-header3 {
  display: flex;
  gap: 30px;
  justify-content: end;
}

.action-list-header3 .user-icon {
  height: inherit;
  width: inherit;
  line-height: inherit;
  background: transparent;
}

.action-item .action-btn-text {
  padding-right: 0;
  font-size: 13px;
  line-height: 1;
  padding-top: 5px;
}

.user-btn.action-item a {
  padding-right: 0;
}

.action-list-header3 .action-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0px;
}

.action-list-header3 .action-item:hover a {
  color: var(--clr-common-heading);
}

.action-item .action-btn-text:hover {
  color: var(--clr-common-heading);
}

.header-search-3 {
  width: 375px;
  max-width: 100%;
}

.header3-top {
  padding: 15px 0;
  border-bottom: 1px solid var(--clr-common-border);
}

.header-main3 .header-main-content-wrapper {
  justify-content: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-main3 .header-main-content-wrapper {
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
  }
}

.main-menu.main-menu3 ul li a {
  padding: 20px 0;
}

.action-list-header3 .action-item.action-item-cart .action-item-number {
  background: #b28a59;
}

.main-menu3.main-menu ul li:hover > a {
  color: #b28a59;
}
.main-menu3.main-menu ul li:hover.menu-item-has-children::after {
  color: #b28a59;
}
.main-menu3.main-menu ul li .sub-menu li:hover > a {
  color: #b28a59;
}
.main-menu3.main-menu ul li .sub-menu {
  border-color: #b28a59;
}

.offcanvas-overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #000;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.offcanvas-overlay.overlay-open {
  opacity: 0.4;
  visibility: visible;
}

.offcanvas-overlay-white {
  position: fixed;
  height: 100%;
  width: 100%;
  background: var(--clr-common-white);
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.offcanvas-overlay-white.overlay-open {
  opacity: 0;
  visibility: visible;
}

.side-info-close {
  background: none;
  border: 0;
  color: var(--clr-common-heading);
  font-size: 20px;
  padding: 0;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

.side-info {
  background: var(--clr-common-white);
  height: 100%;
  position: fixed;
  z-index: 99999;
  right: -100%;
  top: 0;
  width: 365px;
  padding: 45px 35px 45px 45px;
  transition: 0.6s;
  overflow-y: scroll;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .side-info {
    width: 300px;
    padding: 15px 25px;
  }
}

.side-info.info-open {
  right: 0;
}

/* mean menu */
div.mean-container .mean-bar {
  background: transparent;
}
div.mean-container .mean-nav {
  background: none;
  margin-bottom: 40px;
  overflow: hidden;
}
div.mean-container .mean-nav > ul {
  display: block !important;
}
div.mean-container .mean-nav ul li a {
  width: 100%;
  color: var(--clr-common-heading);
  border-top: 1px solid var(--clr-common-border);
  font-size: 16px;
  text-transform: none;
  opacity: 1;
  padding-left: 0;
}
div.mean-container .mean-nav ul li a:hover {
  color: var(--clr-theme-1);
}
div.mean-container .mean-nav ul li a i {
  display: none;
}
div.mean-container .mean-nav ul li a.mean-expand {
  height: 26px;
  border: none;
  background: var(--clr-bg-footer);
  padding: 10px 5%;
}
div.mean-container .mean-nav ul li a.mean-expand::before {
  position: absolute;
  content: "+";
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
div.mean-container .mean-nav ul li a.mean-expand.mean-clicked::before {
  content: "-";
}
div.mean-container .mean-nav ul li li a {
  padding: 10px 5%;
}
div.mean-container .mean-nav ul li li li a {
  padding: 10px 10%;
}
div.mean-container a.meanmenu-reveal {
  display: none !important;
}

/*----------------------------------------
    03. banner CSS
----------------------------------------*/
.banner-800 {
  min-height: 800px;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-800 {
    min-height: 700px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-800 {
    min-height: 600px;
  }
}
@media (max-width: 575px) {
  .banner-800 {
    min-height: 500px;
  }
}

.banner-900 {
  min-height: 900px;
  position: relative;
}

.banner-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}
.banner-area .swiper-button-next, .banner-area .swiper-button-prev{color: #007aff; width: 44px; height: 44px; z-index: 10; font-size: 44px;}

.banner-area3 img{max-width: 100%}
.banner-meta-text {
  margin-bottom: 25px;
}
.banner-meta-text span {
  font-size: 24px;
  font-weight: 600;
  color: var(--clr-common-heading);
}

.banner-title {
  font-size: 110px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 35px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .banner-title {
    font-size: 100px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-title {
    font-size: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-title {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .banner-title {
    font-size: 48px;
  }
}
@media (max-width:499px) {
  .banner-title {
    font-size: 40px;
  }
}

.banner-btn .fill-btn {
  height: 60px;
  padding: 0 52px;
  line-height: 58px;
}

.banner-btn .border-btn {
  height: 60px;
  padding: 0 52px;
  line-height: 58px;
}

.banner-content1 {
  max-width: 800px;
}
@media (max-width: 575px) {
  .banner-content1 {
    max-width: 400px;
  }
}

@media (max-width: 575px) {
  .banner-content2 {
    max-width: 400px;
  }
}

.banner-content2-3 {
  max-width: 780px;
  margin-left: auto;
}
@media (max-width: 575px) {
  .banner-content2-3 {
    max-width: 450px;
    margin-left: 0;
  }
}

.slider-pagination.slider1-pagination {
  position: absolute;
  right: 30px;
  top: 50%;
  display: flex;
  flex-direction: column;
  left: auto;
  width: inherit;
  z-index: 10;
  transform: translateY(-50%);
  height: 100%;
  justify-content: center;
  gap: 20px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .slider-pagination.slider1-pagination {
    display: none;
  }
}
.slider-pagination.slider1-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 2px;
  border-radius: 2px;
  background: var(--clr-common-heading);
  opacity: 1;
  margin-left: auto;
}
.slider-pagination.slider1-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 30px;
}

.slider2-pagination-container {
  position: absolute;
  bottom: 30px;
  width: 100%;
  left: 0;
}

.slider-pagination.slider2-pagination {
  position: relative;
  z-index: 5;
  display: flex;
  gap: 10px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .slider-pagination.slider2-pagination {
    display: none;
  }
}
.slider-pagination.slider2-pagination .swiper-pagination-bullet {
  position: relative;
  width: 16px;
  height: 16px;
  background: transparent;
  opacity: 1;
}
.slider-pagination.slider2-pagination .swiper-pagination-bullet:before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  background: var(--clr-common-heading);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.slider-pagination.slider2-pagination .swiper-pagination-bullet::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  border: 1px solid var(--clr-common-heading);
  border-radius: 50%;
  transition: 0.3s;
  opacity: 0;
}
.slider-pagination.slider2-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
  opacity: 1;
}

.banner-pricing {
  font-size: 24px;
  font-weight: 500;
  color: var(--clr-common-white);
  width: 250px;
  height: 250px;
  background: var(--clr-common-heading);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: absolute;
  right: 905px;
  bottom: -35px;
  gap: 5px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .banner-pricing {
    transform: scale(0.5);
    transform-origin: top left;
    position: static;
    margin-top: 45px;
    margin-bottom: -125px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-pricing {
    transform: scale(0.4);
    transform-origin: top left;
    position: static;
    margin-top: 40px;
    margin-bottom: -150px;
  }
}

.banner-pricing .price-now {
  font-size: 80px;
  font-weight: 500;
  color: var(--clr-common-white);
  display: block;
}

/*----------------------------------------
    04. product CSS
----------------------------------------*/
.single-product {
  max-width: 100%;position: relative; box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1)
}
.products-wrapper-slide .swiper-container{padding: 0 10px}
.product-image img {
  width: 100%;
}

.product-name {
  font-size: 18px; height: 52px;
  color: var(--clr-common-heading);
  margin-bottom: 40px;
}
.show-product-name {
  font-size: 20px;
  color: var(--clr-common-heading);
}
.product-more {text-align: center;}
.product-more a.learn-more-btn{border:1px solid #000; border-radius: 8px;padding: 6px 20px; font-size: 17px; color: #000; display: inline-block;}
.price-now {
  font-size: 18px;
  font-weight: 500;
  color: var(--clr-common-heading);
}

.price-old {
  font-size: 15px;
  font-weight: 500;
  color: #8f8f8f;
  text-decoration: line-through;
  line-height: 1;
}

.product-desc .product-price {
  display: flex;
  gap: 5px;
}

.product-desc {
  padding: 20px 0 30px;
}

.product-color-nav {
  display: flex;
  gap: 10px;
}
.product-color-nav img {
  width: 100%;
  height: 100%;
  cursor: pointer;
  position: absolute;
  z-index: 2;
  opacity: 0;
}
.product-color-nav li {
  width: 18px;
  height: 18px;
  position: relative;
  overflow: hidden;
}
.product-color-nav li:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  box-sizing: border-box;
  border: 1px solid #dddfe3;
  border-radius: 50%;
}
.product-color-nav li:after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.product-color-nav li.cl-pink:after {
  background: #eacbd0;
}
.product-color-nav li.cl-black::after {
  background: #171717;
}
.product-color-nav li.cl-blue::after {
  background: #044cba;
}
.product-color-nav li.cl-red::after {
  background: #c31f31;
}
.product-color-nav li.cl-light-white::after {
  background: #e5e6e0;
}
.product-color-nav li.cl-navy::after {
  background: #42495d;
}
.product-color-nav li.cl-brown::after {
  background: #ae8f7a;
}
.product-color-nav li.cl-ash::after {
  background: #797782;
}
.product-color-nav li.cl-yellow::after {
  background: #c69f5a;
}
.product-color-nav li.cl-orange::after {
  background: #d86f30;
}
.product-color-nav li.cl-wood::after {
  background: #6b4e43;
}
.product-color-nav li.cl-green::after {
  background: #656317;
}
.product-color-nav li.active:before {
  border-color: #707070;
}

.product-desc .product-color-nav {
  margin-top: 18px;
}

.product-sticker {
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-common-white);
  height: 25px;
  display: inline-block;
  background: #0080DD;
  padding: 0 10px; border-top-left-radius: 10px; border-bottom-right-radius: 10px;
}

.product-sticker-wrapper {
  display: flex;
  gap: 5px;
  position: absolute;
  top: 0;
  left: 0;
}

.product-sticker.new {
  background: #0080DD;
}

.product-sticker.discount {
  background: #de646c;
}

.product-action {
  position: absolute;
  right: -100px;
  top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: 0.3s;
  z-index: 2;
}
.product-action a {
  width: 45px;
  height: 45px;
  background: #fff;
  border-radius: 3px;
  text-align: center;
  line-height: 45px;
  color: var(--clr-common-heading);
  padding: 0;
  border: none;
  transition: 0.3s;
}
.product-action a:hover {
  color: var(--clr-common-white);
  background: var(--clr-common-heading);
}

.product-image {
  overflow: hidden;
}
.image-square {
  overflow: hidden;padding-bottom: 100%; height: 0;
}
.product-image:hover .product-action {
  right: 20px;
}

.add-cart-btn {
  display: flex;
  gap: 10px;
  align-items: center;
  height: 45px;
  line-height: 43px;
  background: #007fdc;
  border-radius: 3px;
  padding: 0 35px;
  color: var(--clr-common-white);
  justify-content: center;
  transition: 0.3s;
  white-space: nowrap;
}
.add-cart-btn:hover {
  background-color: #f4ad34;
  color: #ffffff;
}

.product-action-bottom {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 20px; right: 20px;
  transition: 0.3s;
  z-index: 2;
}
.product-action-bottom .add-cart-btn{letter-spacing: 1px; padding: 0 20px; height: 35px; line-height: 33px}
.single-product:hover .learn-more-btn {background: #1e77bd; color: #fff; border-color: #1e77bd}

.products-wrapper {
  display: flex;
  flex-wrap: wrap;
  column-gap: 30px;
}

.products-wrapper .single-product {
  margin-bottom: 50px; padding: 20px; background: #fff; position: relative;border-radius: 1rem;
}

.products-wrapper > div {
  width: calc((100% - 120px) / 5);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .products-wrapper > div {
    width: calc((100% - 90px) / 4);
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .products-wrapper > div {
    width: calc((100% - 60px) / 3);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .products-wrapper > div {
    width: calc((100% - 30px) / 2);
  }
}
@media (max-width: 575px) {
  .products-wrapper > div {
    width: calc((100% - 0px) / 1);
  }
}

.nav-tabs {
  border-bottom: 0;
}

.nav-tabs .nav-link {
  border: 0;
  padding: 0;
  border-radius: 0;
}

.product-tab-nav .nav-tabs {
  display: flex;
  gap: 20px;
  justify-content: center;
}
@media (max-width: 575px) {
  .product-tab-nav .nav-tabs {
    gap: 10px;
  }
}
.product-tab-nav .nav-tabs .nav-link {
  font-size: 18px;
  font-weight: 500;
  height: 20px;
  line-height: 20px;
  border-right: 1px solid var(--clr-common-border);
  padding-right: 20px;
  position: relative;
}
@media (max-width: 575px) {
  .product-tab-nav .nav-tabs .nav-link {
    border-right: 0;
    padding: 0 10px;
  }
}
.product-tab-nav .nav-tabs .nav-link:last-child {
  padding-right: 0;
  border-right: 0;
}
.product-tab-nav .nav-tabs .nav-link.active {
  color: var(--clr-common-heading);
}
.product-tab-nav .nav-tabs .nav-link.active .total-product {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 575px) {
  .product-tab-nav .nav-tabs .nav-link.active .total-product {
    opacity: 0;
    visibility: hidden;
  }
}

.nav-link .total-product {
  font-size: 12px;
  position: absolute;
  top: -22px;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.featured-product {
  position: relative;
  overflow: hidden;
}
.featured-product .product-desc {
  padding: 30px;
  display: inline-block;
  position: absolute;
  bottom: -200px;
  left: 0;
  background: var(--clr-common-white);
  transition: 0.3s;
}
@media (max-width:499px) {
  .featured-product .product-desc {
    padding: 20px;
  }
}
.featured-product:hover .product-desc {
  bottom: 0;
}
.featured-product:hover .product-action {
  right: 20px;
}

.bunle-pack-area {
  background: var(--clr-bg-footer);
}

.bundle-pack-wrapper {
  max-width: 1050px;
  margin: 0 auto;
}

.pack-items-wrapper {
  background: var(--clr-common-white);
  padding: 55px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
  .pack-items-wrapper {
    padding: 35px;
  }
}
@media (max-width:499px) {
  .pack-items-wrapper {
    padding: 30px 20px;
  }
}

.pack-item-single {
  display: flex;
  padding-left: 23px;
  gap: 18px;
}
@media (max-width:499px) {
  .pack-item-single {
    padding-left: 13px;
    gap: 15px;
  }
}
.pack-item-single .product-image {
  width: 120px;
}
.pack-item-single .product-desc {
  padding: 0px 0 0px;
}
.pack-item-single .product-name {
  font-size: 20px;
  margin-bottom: 12px;
}
@media (max-width:499px) {
  .pack-item-single .product-name {
    font-size: 18px;
  }
}
.pack-item-single .product-price {
  margin-bottom: 12px;
}
.pack-item-single .product-price .price-now {
  font-size: 15px;
  font-weight: 600;
}

.pack-items {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.pack-items .pack-item-single {
  counter-increment: pack-item-num;
  position: relative;
}
.pack-items .pack-item-single:before {
  position: absolute;
  content: counter(pack-item-num);
  top: 0;
  left: 0;
  font-size: 22px;
  font-weight: 500;
  color: var(--clr-common-heading);
  height: 38px;
  width: 38px;
  border: 1px solid var(--clr-common-heading);
  z-index: 2;
  text-align: center;
  line-height: 36px;
  border-radius: 50%;
}
@media (max-width:499px) {
  .pack-items .pack-item-single:before {
    font-size: 18px;
    height: 28px;
    width: 28px;
    line-height: 26px;
  }
}

.product-rating {
  font-size: 14px;
  display: inline-flex;
  color: var(--clr-common-heading);
}

.pack-price-btn {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.pack-price-btn .add-cart-btn {
  height: 50px;
  padding: 0 65px;
  border-radius: 5px;
}
.pack-price-btn .pack-total-price {
  height: 50px;
  border: 1px solid var(--clr-common-heading);
  border-radius: 5px;
  line-height: 48px;
  text-align: center;
  font-weight: 600;
  padding: 0 15px;
  flex-grow: 1;
  color: var(--clr-common-heading);
}

.product-package-photo {
  height: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .product-package-photo {
    padding-top: 30px;
  }
}
.product-package-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-image-nav {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
@media (max-width:499px) {
  .product-image-nav {
    display: none;
  }
}

.product-nav-item {
  width: 25px;
  height: 25px;
  background: var(--clr-common-white);
  border-radius: 50%;
  text-align: center;
  line-height: 25px;
  color: var(--clr-common-heading);
}
.product-nav-item:hover .pack-item-single.hover-content {
  opacity: 1;
  visibility: visible;
}

.pack-1-1 {
  position: absolute;
  top: 23%;
  left: 36%;
}

.pack-1-2 {
  position: absolute;
  top: 46%;
  left: 39%;
}

.pack-1-3 {
  position: absolute;
  top: 87%;
  left: 25%;
}

.pack-item-single.hover-content {
  width: 160px;
  display: flex;
  flex-direction: column;
  background: var(--clr-common-white);
  padding: 10px;
  border-radius: 8px;
  position: absolute;
  top: -7px;
  left: 50px;
  text-align: left;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.pack-item-single.hover-content .product-img {
  width: 100%;
}
.pack-item-single.hover-content .product-image {
  width: 100%;
  border-radius: 5px;
}
.pack-item-single.hover-content .product-name {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}
.pack-item-single.hover-content .product-price {
  margin-bottom: 0;
}
.pack-item-single.hover-content .product-price .price-now {
  font-size: 12px;
  font-weight: 500;
}
.pack-item-single.hover-content .product-desc {
  padding: 10px 0 10px;
}
.pack-item-single.hover-content:before {
  position: absolute;
  content: "";
  width: 6px;
  height: 10px;
  background: var(--clr-common-white);
  left: -6px;
  top: 15px;
  clip-path: polygon(0% 50%, 100% 0%, 100% 100%);
}

.single-product-st2 .add-cart-btn {
  padding: 0 22px;
  border-radius: 0;
}
.single-product-st2 .quick-view-btn {
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 43px;
  background: var(--clr-common-white);
  border-radius: 3px 0 0 3px;
  border: 1px solid var(--clr-common-white);
  color: var(--clr-common-heading);
}
.single-product-st2 .quick-view-btn:hover {
  border-color: var(--clr-common-heading);
}
.single-product-st2 .wishlist-btn {
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 43px;
  background: var(--clr-common-white);
  border-radius: 0 3px 3px 0;
  border: 1px solid var(--clr-common-white);
  color: var(--clr-common-heading);
}
.single-product-st2 .wishlist-btn:hover {
  border-color: var(--clr-common-heading);
}
.single-product-st2 .product-color-nav {
  display: flex;
  gap: 10px;
  display: none;
}

.product-nav-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  background: var(--clr-common-white);
  border-radius: 3px;
  color: var(--clr-common-heading);
  font-size: 18px;
  left: 10px;
  transition: 0.3s;
}
.product-nav-prev:hover {
  color: var(--clr-common-white);
  background: var(--clr-common-heading);
}

.product-nav-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  background: var(--clr-common-white);
  border-radius: 3px;
  color: var(--clr-common-heading);
  font-size: 18px;
  right: 10px;
  transition: 0.3s;
}
.product-nav-next:hover {
  color: var(--clr-common-white);
  background: var(--clr-common-heading);
}

.product-tab-slider-button-prev {
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 48px;
  position: absolute;
  top: 45%;
  left: -60px;
  transition: 0.3s;font-size: 40px;
}
.product-tab-slider-button-prev:hover {
  border-color: var(--clr-common-heading);
  background: var(--clr-common-heading);
  color: var(--clr-common-white);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .product-tab-slider-button-prev {
    display: none;
  }
}

.product-tab-slider-button-next {
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 48px;
  position: absolute;
  top: 45%;
  right: -60px;
  transition: 0.3s;font-size: 40px;
}
.product-tab-slider-button-next:hover {
  border-color: var(--clr-common-heading);
  background: var(--clr-common-heading);
  color: var(--clr-common-white);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .product-tab-slider-button-next {
    display: none;
  }
}

.product-tab-pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.product-tab-pagination .swiper-pagination-bullet {
  display: inline-block;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  opacity: 1;
  background: #ebebeb;
}
.product-tab-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--clr-common-heading);
}

.product-tab-pagination-container {
  margin-top: 30px;
}

/*----------------------------------------
    05. category CSS
----------------------------------------*/
.category-banner-single {
  overflow: hidden;
}
.category-banner-single:hover .category-banner-img img {
  transform: scale(1.05);
}

.category-banner-inner {
  padding: 30px 40px 30px;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px) {
  .category-banner-inner {
    padding: 20px 20px 20px;
  }
}
@media (max-width:499px) {
  .category-banner-inner {
    position: static;
    padding: 20px 0px 10px;
    justify-content: start !important;
  }
}

.category-banner-content .product-category {
  font-size: 28px;
  display: inline-block;
  color: var(--clr-common-heading);
  font-weight: 600;
  margin-bottom: 5px;
}
@media (max-width: 575px) {
  .category-banner-content .product-category {
    font-size: 24px;
  }
}
@media (max-width:499px) {
  .category-banner-content .product-category {
    font-size: 24px;
  }
}
.category-banner-content .category-short-desc {
  color: var(--clr-common-heading);
  margin-bottom: 23px;
}
.category-banner-content .border-btn {
  font-size: 14px;
  height: 35px;
  line-height: 33px;
  padding: 0 20px;
  font-weight: 500;
}

.category-banner-img {
  overflow: hidden;
}
.category-banner-img img {
  object-fit: cover;
  width: 100%;
  transition: 0.6s;
}

.category-banner2 .category-banner-content .product-category {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 15px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px) {
  .category-banner2 .category-banner-content .product-category {
    font-size: 34px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .category-banner2 .category-banner-content .product-category {
    font-size: 30px;
  }
}
@media (max-width: 575px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .category-banner2 .category-banner-content .product-category {
    font-size: 24px;
  }
}
@media (max-width:499px) {
  .category-banner2 .category-banner-content .product-category {
    font-size: 24px;
  }
}
.category-banner2 .category-banner-content .product-category span {
  font-weight: 600;
  display: block;
}
.category-banner2 .category-banner-content .category-short-desc {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 44px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px) {
  .category-banner2 .category-banner-content .category-short-desc {
    font-size: 18px;
    margin-bottom: 34px;
  }
}
@media (max-width: 575px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .category-banner2 .category-banner-content .category-short-desc {
    font-size: 16px;
    margin-bottom: 34px;
  }
}
@media (max-width:499px) {
  .category-banner2 .category-banner-content .category-short-desc {
    font-size: 16px;
  }
}
.category-banner2 .category-banner-content .category-short-desc span {
  font-weight: 600;
}
.category-banner2 .category-banner-inner {
  padding: 30px 50px 70px;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .category-banner2 .category-banner-inner {
    padding: 30px 50px 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px) {
  .category-banner2 .category-banner-inner {
    padding: 20px 50px 20px;
  }
}
@media (max-width: 575px) {
  .category-banner2 .category-banner-inner {
    padding: 20px 30px 20px;
  }
}
@media (max-width:499px) {
  .category-banner2 .category-banner-inner {
    padding: 20px 0px 20px;
  }
}

.product-category-wrapper {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.product-category-wrapper > div {
  width: calc((100% - 40px) / 5);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .product-category-wrapper > div {
    width: calc((100% - 20px) / 3);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .product-category-wrapper > div {
    width: calc((100% - 10px) / 2);
  }
}
@media (max-width: 575px) {
  .product-category-wrapper > div {
    width: calc((100% - 0px) / 1);
  }
}

.product-category-single {
  display: inline-block;
  overflow: hidden;
}
.product-category-single:hover .product-category-img img {
  transform: scale(1.05);
}

.product-category-img a {
  position: relative;
  display: block;
}
.product-category-img a:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: var(--clr-common-heading);
  opacity: 0.4;
  left: 0;
  top: 0;
}
.product-category-img a img {
  width: 100%;
  transition: 0.6s;
}

.product-category-inner {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 30px 20px;
}

.product-category-content .product-category {
  font-size: 20px;
  font-weight: 500;
  color: var(--clr-common-white);
  margin-bottom: 5px;
  display: inline-block;
}

.product-meta-item {
  display: flex;
  gap: 5px;
  justify-content: center;
}
.product-meta-item .product-available {
  font-size: 14px;
  color: var(--clr-common-white);
  line-height: 1;
}
.product-meta-item .product-meta-type {
  font-size: 14px;
  color: var(--clr-common-white);
  line-height: 1;
}

.product-category2-wrapper {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.product-category2-wrapper > div {
  width: calc((100% - 90px) / 4);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .product-category2-wrapper > div {
    width: calc((100% - 60px) / 3);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product-category2-wrapper > div {
    width: calc((100% - 30px) / 2);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .product-category2-wrapper > div {
    width: calc((100% - 30px) / 2);
  }
}
@media (max-width: 575px) {
  .product-category2-wrapper > div {
    width: calc((100% - 0px) / 1);
  }
}

.product-category2-single {
  overflow: hidden;
}
.product-category2-single:hover .product-category-img img {
  transform: scale(1.05);
}
.product-category2-single .product-category-content .product-category {
  font-size: 16px;
  font-weight: 600;
  color: var(--clr-common-heading);
  height: 50px;
  text-align: center;
  padding: 0 35px;
  border: 1px solid var(--clr-common-white);
  border-radius: 5px;
  line-height: 48px;
  background: var(--clr-common-white);
  margin-bottom: 0;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .product-category2-single .product-category-content .product-category {
    padding: 0 28px;
  }
}
.product-category2-single .product-category-content .product-category:hover {
  color: var(--clr-common-white);
  border-color: var(--clr-common-heading);
  background: var(--clr-common-heading);
}
.product-category2-single .product-category-inner {
  padding: 30px 10px;
}
.product-category2-single .product-category-img a::after {
  opacity: 0;
}

/*----------------------------------------
    06. features CSS
----------------------------------------*/
.features-single {
  padding: 44px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .features-single {
    padding: 0 0 45px;
  }
}
.features-single .irc-item-heading {
  font-size: 18px;
  color: var(--clr-common-heading);
  font-weight: 600;
  margin-bottom: 0;
}
.features-single .irc-item-content p {
  margin-bottom: 0;
}
.features-single .irc-item {
  justify-content: center;
  align-items: center;
  display: flex;
  gap: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .features-single .irc-item {
    align-items: flex-start;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .features-wrapper {
    padding-top: 45px;
  }
}

.features-area1 {
  background: var(--clr-bg-footer);
}

.features-area4 .features-single {
  border-right: 1px solid var(--clr-common-border);
  padding: 49px 0;
}
.features-area4 .row > div:last-child .features-single {
  border-right: none;
}
.features-area4 .features-single .irc-item {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 30px;
  align-items: center;
}
.features-area4 .features-single .irc-item i{font-size: 60px; color: #666}
/*----------------------------------------
    07. blog CSS
----------------------------------------*/
.blog-meta-item {
  display: flex;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1;
}

.blog-meta-content a:hover {
  color: var(--clr-common-heading);
}

.blog-meta-list {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-bottom: 14px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-meta-list {
    gap: 20px;
  }
}

.blog-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
  .blog-title {
    font-size: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-title {
    font-size: 18px;
  }
}

.blog-content {
  text-align: center;
  padding: 25px 60px 0;
}
.blog-content img{max-width: 100%;}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .blog-content {
    padding: 25px 30px 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-content {
    padding: 25px 15px 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px) {
  .blog-content {
    padding: 25px 20px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-content {
    padding: 20px 10px 0;
  }
}

.blog-items-wrapper {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.blog-items-wrapper > div {
  width: calc((100% - 60px) / 3);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-items-wrapper > div {
    width: calc((100% - 30px) / 2);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-items-wrapper > div {
    width: calc((100% - 30px) / 2);
  }
}
@media (max-width: 575px) {
  .blog-items-wrapper > div {
    width: calc((100% - 0px) / 1);
  }
}

.blog-single {
  overflow: hidden;
}
.blog-single:hover .blog-img img {
  transform: scale(1.05);
}

.blog-img {
  overflow: hidden;
}
.blog-img img {
  width: 100%;
  transition: 0.6s;
}

/*----------

12. blog style

----------*/
.blog-thumb {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  overflow: hidden;
}
.blog-thumb{box-shadow: 0px 20px 40px rgba(28, 51, 84, 0.1)}
.blog-thumb img {
  transition: all 1.5s cubic-bezier(0, 0, 0.2, 1);
  width: 100%;
}

.blog-wrapper:hover .blog-thumb img {
  transform: scale3d(1.05, 1.05, 1.05);
}
.blog-meta {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.blog-meta i {
  font-size: 16px;
  margin-right: 10px;
  line-height: 1;
}

.blog-meta span {
  font-size: 16px;
  margin-right: 40px;
}
@media (max-width:499px) {
  .blog-meta span {
    font-size: 14px;
    margin-right: 20px;
  }
}

.blog-meta > div {
  display: flex;
  align-items: center;
}

.blog-content h3 {
  font-size: 22px;
  margin-bottom: 30px;
  line-height: 1.5;
}

.blog-content h3:hover {
  color: var(--clr-theme-1);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .blog-content h3 {
    font-size: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .blog-content h3 {
    font-size: 18px;
    font-weight: 600;
  }
}
.blog-content-wrapper {
  padding: 30px 30px 32px 30px;
  background: #ffffff;
  box-shadow: 0px 20px 40px rgba(28, 51, 84, 0.1);
  border-radius: 0 0 5px 5px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
  .blog-content-wrapper {
    padding: 30px 20px 32px 20px;
  }
}
.blog-wrapper {
  border-radius: 5px;
}

.sidebar__search input {
  width: 100%;
  height: 60px;
  line-height: 56px;
  background: #ffffff;
  border: 1px solid #edeef2;
  box-shadow: 0px 10px 30px rgba(28, 51, 84, 0.08);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  padding-left: 30px;
  padding-right: 45px;
  outline: 0;
}
.sidebar__search input:focus {
  border-color: var(--clr-theme-1);
}

.sidebar__search input::placeholder {
  color: #575757;
  font-weight: 500;
}

.sidebar__search button {
  position: absolute;
  top: 50%;
  right: 20px;
  left: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.sidebar__search button svg {
  width: 18px;
  height: 18px;
}

.sidebar__search button svg .st0 {
  fill: #575757;
}

.sidebar__search button svg .st1 {
  fill: #575757;
}

.rc__post:not(:last-child) {
  margin-bottom: 30px;
}

.rc__meta span {
  color: #575757;
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  display: inline-block;
  margin-bottom: 10px;
}

.rc__thumb img {
  width: 75px;
  height: 75px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  object-fit: cover;
}

.rc__title {
  font-size: 18px;
  color: #141517;
  margin-bottom: 0px;
  font-weight: 600;
  line-height: 1.1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .rc__title {
    font-size: 16px;
    font-weight: 600;
  }
}
.rc__title a:hover {
  color: var(--clr-theme-1);
}

.sidebar__widget {
  border: 1px solid #edeef2;
  padding: 30px 30px;
  border-radius: 5px;
  box-shadow: 0px 10px 30px rgba(28, 51, 84, 0.08);
  background-color: #ffffff;
}

@media (max-width: 575px) {
  .sidebar__widget {
    padding: 30px 20px;
  }
}
.category-banner-area .sidebar__widget{border:none; border-left:1px solid #edeef2; box-shadow: none;background: none;padding: 0 30px;}
.sidebar__category ul li:not(:last-child) {
  margin-bottom: 15px;
}

.sidebar__category ul li a {
  font-size: 16px;
  font-weight: 500;
  color: #575757;
  padding-left: 20px;
  position: relative;
}

.sidebar__category ul li a::after {
  position: absolute;
  content: "";
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: #adaeba;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.sidebar__category ul li a:hover {
  color: var(--clr-theme-1);
}

.sidebar__category ul li a:hover::after {
  background: var(--clr-theme-1);
}

.sidebar__widget .sidebar__tag {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sidebar__tag a {
  display: inline-block;
  height: 35px;
  line-height: 35px;
  padding: 0 15px;
  font-size: 15px;
  font-weight: 500;
  background: var(--clr-bg-gray);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.sidebar__tag a:hover {
  color: #ffffff;
  background: var(--clr-theme-1);
}

.post-text blockquote p {
  margin-bottom: 10px !important;
  line-height: 1.3;
  font-size: 20px;
  color: var(--clr-common-heading);
  font-weight: 400;
}

blockquote cite {
  font-size: 18px;
  display: block;
  margin-top: 10px;
  color: var(--clr-common-heading);
  font-style: inherit;
  font-weight: 600;
}

blockquote cite::before {
  content: "";
  font-size: 28px;
  color: #ff5421;
  padding-bottom: 0px;
  display: inline-block;
  background: var(--clr-theme-1);
  height: 2px;
  width: 40px;
  font-weight: 400;
  text-align: center;
  top: -4px;
  margin-right: 10px;
  position: relative;
}

.blog-details-wrapper img {
  width: 100%;
}

.blog-details-wrapper p img {
  border-radius: 5px;
}

blockquote p {
  font-size: 18px;
  color: var(--clr-common-heading);
  font-style: italic;
  font-weight: 600;
}

div.tagcloud a {
  display: inline-block;
  height: 36px;
  line-height: 38px;
  padding: 0 15px;
  font-size: 15px;
  font-weight: 500;
  background: var(--clr-bg-gray);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  margin-right: 8px;
  margin-bottom: 8px;
}

div.tagcloud a:hover {
  color: #ffffff;
  background: var(--clr-theme-1);
}

.blog__details__tag span {
  font-weight: 600;
  margin-right: 10px;
  color: #141517;
}

.blog-main-wrapper .blog-content {
  text-align: left;
  padding: 0;
}

.blog-btn {
  background: transparent;
  display: inline-block;
  border-radius: 5px;
  height: 40px;
  line-height: 38px;
  padding: 0 30px;
  color: var(--clr-common-heading);
  font-size: 16px;
  font-weight: 600;
  border: 1px solid var(--clr-common-border);
  text-align: center;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.blog-btn:hover {
  background-color: var(--clr-common-heading);
  color: var(--clr-common-white);
}

/* comment box */
.latest-comments h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .latest-comments h3 {
    font-size: 22px;
  }
}

.latest-comments ul li {
  margin-bottom: 10px;
}

.latest-comments ul li.children {
  margin-left: 100px;
}
@media (max-width: 575px) {
  .latest-comments ul li.children {
    margin-left: 15px;
  }
}

.latest-comments ul li ul li.children-2 {
  margin-left: 100px;
  margin-top: 10px;
}
@media (max-width: 575px) {
  .latest-comments ul li ul li.children-2 {
    margin-left: 15px;
  }
}

.comments-box {
  padding: 30px;
  padding-top: 30px;
  padding-right: 30px;
  padding-right: 40px;
  padding-top: 25px;
  background: #fff;
  border: 1px solid var(--clr-common-border);
  border-radius: 5px;
}

.comments-avatar img {
  width: 50px;
  height: 50px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.avatar-name {
  margin-bottom: 5px;
}

.avatar-name h5 {
  font-size: 16px;
  line-height: 1;
  margin-bottom: 0;
}

.avatar-name span {
  font-size: 14px;
  color: var(--clr-common-text);
}

@media (max-width: 575px) {
  .comments-text {
    margin-left: 0;
    margin-top: 15px;
  }
}

.comments-text p {
  font-size: 16px;
  color: var(--clr-common-text);
  margin-bottom: 15px;
}

.comments-replay {
  margin-top: 10px;
}
.comments-replay a {
  display: inline-block;
  color: var(--clr-theme-1);
  background: var(--clr-bg-gray);
  height: 25px;
  line-height: 25px;
  padding: 0 12px;
  font-weight: 500;
  font-size: 14px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.comments-replay a:hover {
  color: var(--clr-common-white);
  background: var(--clr-theme-1);
}

.blog__comment h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 40px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .blog__comment h3 {
    font-size: 22px;
  }
}
.blog__comment-input input, .blog__comment-input textarea {
  width: 100%;
  height: 60px;
  line-height: 60px;
  border: 1px solid var(--clr-common-border);
  background: transparent;
  color: var(--clr-theme-1);
  font-size: 15px;
  outline: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  margin-bottom: 20px;
  padding: 0 24px;
}
.blog__comment-input input::placeholder, .blog__comment-input textarea::placeholder {
  font-size: 15px;
  color: var(--clr-common-text);
}
.blog__comment-input textarea {
  height: 180px;
  resize: none;
  line-height: 1.2;
  padding: 23px;
  padding-top: 19px;
  margin-bottom: 13px;
}
.blog__comment-agree {
  padding-left: 5px;
}
.blog__comment-agree input {
  margin: 0;
  appearance: none;
  -moz-appearance: none;
  display: block;
  width: 14px;
  min-width: 14px;
  height: 14px;
  background: var(--clr-common-white);
  border: 1px solid #b9bac1;
  outline: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.blog__comment-agree input:checked {
  position: relative;
  background-color: var(--clr-theme-1);
  border-color: transparent;
}
.blog__comment-agree input:checked::after {
  box-sizing: border-box;
  content: "";
  position: absolute;
  font-family: "Font Awesome 5 Pro";
  font-size: 10px;
  color: var(--clr-common-white);
  top: 46%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.blog__comment-agree input:hover {
  cursor: pointer;
}
.blog__comment-agree label {
  padding-left: 8px;
  color: var(--clr-common-text);
}
.blog__comment-agree label a {
  color: var(--clr-theme-1);
  font-weight: 600;
  padding-left: 4px;
}
.blog__comment-agree label a:hover {
  color: var(--clr-theme-1);
}
.blog__comment-agree label:hover {
  cursor: pointer;
}

.blog-main-wrapper .blog-content h3 {
  font-size: 36px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-main-wrapper .blog-content h3 {
    font-size: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-main-wrapper .blog-content h3 {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .blog-main-wrapper .blog-content h3 {
    font-size: 26px;
  }
}
@media (max-width:499px) {
  .blog-main-wrapper .blog-content h3 {
    font-size: 20px;
  }
}

.blog-main-wrapper h4 {
  font-size: 28px;
}
@media (max-width: 575px) {
  .blog-main-wrapper h4 {
    font-size: 26px;
  }
}

.common-pagination ul {
  display: flex;
  align-items: center;
}
.common-pagination li {
  margin-right: 15px;
}
.common-pagination li a {
  font-weight: 600;
}
.common-pagination li:hover a {
  color: var(--clr-theme-1);
}
.common-pagination i {
  height: 45px;
  width: 45px;
  background: var(--clr-common-white);
  line-height: 43px;
  text-align: center;
  border-radius: 50%;
  color: var(--clr-common-text);
  font-size: 20px;
  border: 1px solid var(--clr-common-border);
  font-weight: 400;
  transition: 0.3s;
}
.common-pagination i:hover {
  border-color: var(--clr-theme-1);
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
}

.common-pagination ul li.active a {
  color: var(--clr-theme-1);
}

/*----------------------------------------
    08. testimonial CSS
----------------------------------------*/
.testimonial-wrapper {
  text-align: center;
  margin: 0 auto;
  position: relative;
}

.testimonial-author {
  margin-bottom: 25px;
}
.testimonial-author .author-name {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 2px;
}
.testimonial-author .author-desc {
  font-size: 15px;
}

.author-text p {
  font-size: 28px;
  line-height: 1.35;
  font-style: italic;
  margin-bottom: 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .author-text p {
    font-size: 22px;
  }
}
@media (max-width:499px) {
  .author-text p {
    font-size: 20px;
  }
}

.author-thumb {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .author-thumb {
    width: 100px;
    height: 100px;
  }
}
.author-thumb:after {
  position: absolute;
  content: "";
  font-family: "Font Awesome 5 Pro";
  width: 42px;
  height: 42px;
  background: var(--clr-common-heading);
  text-align: center;
  line-height: 42px;
  border-radius: 50%;
  right: 5px;
  top: 0;
  font-weight: 700;
  color: var(--clr-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .author-thumb:after {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
  }
}
.author-thumb img {
  border-radius: 50%;
  width: 100%;
}

.testimonial-pagination {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 50px;
}
.testimonial-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #e6e8ec;
  opacity: 1;
}
.testimonial-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--clr-common-heading);
}

.testimonial-button-prev {
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 48px;
  font-size: 16px;
  color: #aeaeae;
  transition: 0.3s;
  position: absolute;
  top: 40%;
  left: -60px;font-size: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial-button-prev {
    display: none;
  }
}
.testimonial-button-prev:hover {
  color: var(--clr-common-white);
  background: var(--clr-common-heading);
  border-color: var(--clr-common-heading);
}

.testimonial-button-next {
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 48px;
  font-size: 16px;
  color: #aeaeae;
  transition: 0.3s;
  position: absolute;
  top: 40%;
  right: -60px;font-size: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial-button-next {
    display: none;
  }
}
.testimonial-button-next:hover {
  color: var(--clr-common-white);
  background: var(--clr-common-heading);
  border-color: var(--clr-common-heading);
}

/*----------------------------------------
    09. newsletter CSS
----------------------------------------*/
.newsletter-wrapper {
  background: var(--clr-bg-footer);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 88px 20px 85px 20px;
}

.newsletter-content {
  text-align: center;
}
.newsletter-content .section-main-title {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.277;
}
@media (max-width: 575px) {
  .newsletter-content .section-main-title {
    font-size: 26px;
  }
}
.newsletter-content p {
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.subscribe-form.subscribe-form-newsletter {
  width: 645px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .subscribe-form.subscribe-form-newsletter {
    width: 500px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .subscribe-form.subscribe-form-newsletter {
    width: 100%;
  }
}
.subscribe-form.subscribe-form-newsletter input {
  height: 60px;
  line-height: 60px;
  margin-bottom: 0;
  padding: 0 190px 0 50px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .subscribe-form.subscribe-form-newsletter input {
    padding: 0 20px 0 50px;
    margin-bottom: 20px;
  }
}
.subscribe-form.subscribe-form-newsletter:before {
  top: 17px;
}
.subscribe-form.subscribe-form-newsletter button {
  height: 60px;
  width: auto;
  border-radius: 0 5px 5px 0;
  padding: 0 36px;
  position: absolute;
  right: 0;
  top: 0;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .subscribe-form.subscribe-form-newsletter button {
    position: static;
    width: 100%;
    border-radius: 5px;
  }
}

/*----------------------------------------
    10. page-title CSS
----------------------------------------*/
.page-title-area {
  display: flex;
  align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.page-title {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.277;
}
@media (max-width: 575px) {
  .page-title {
    font-size: 32px;
  }
}
.product-show .breadcrumb-menu{border-bottom: 2px solid rgba(0, 0, 0, 0.3);}
.breadcrumb-menu li {
  position: relative;color: #00000080
}
.breadcrumb-menu li span{font-size: 16px;
  font-weight: 500;color: #00000080}
.breadcrumb-menu li a span {
  color: var(--clr-common-heading);
}

.breadcrumb-menu li:not(:last-child):after {
  display: inline-block;
  color: #00000080;
  content: "";
  position: absolute;
  right: -16px;
  top: 0px;
  font-family: "Font Awesome 5 Pro";
}
.breadcrumb-menu ul {
  display: flex;
  justify-content: left;
  gap: 25px;
}

/*----------------------------------------
    11. about CSS
----------------------------------------*/
.heading-title {
  font-size: 60px;
  font-weight: 600;
  line-height: 1.166;
  max-width: 1030px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .heading-title {
    font-size: 56px;
    max-width: 990px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .heading-title {
    font-size: 52px;
    max-width: 920px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .heading-title {
    font-size: 48px;
    max-width: 840px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .heading-title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .heading-title {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .heading-title {
    font-size: 30px;
    max-width: 520px;
  }
}

.about-heading-content {
  text-align: center;
}

.about-heading {
  padding: 110px 0;
}

.about-thumb {
  padding-bottom: 37px;
  max-width: 570px;
  padding-right: 30px;
}
.about-thumb .about-thumb-main {
  width: 100%;
}

.about-thumb .est-time-img {
  position: absolute;
  bottom: 0;
  right: 0;
}

.about-content .section-main-title {
  font-size: 36px;
  max-width: 450px;
}
@media (max-width: 575px) {
  .about-content .section-main-title {
    font-size: 32px;
  }
}
@media (max-width:499px) {
  .about-content .section-main-title {
    font-size: 28px;
  }
}

.about-btn {
  line-height: 1;
}
.about-btn .fill-btn {
  padding: 0 38px;
}

.align-pb-35 {
  padding-bottom: 35px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .align-pb-35 {
    padding-bottom: 0;
  }
}

.speciality-content {
  max-width: 470px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .speciality-content {
    margin-bottom: 50px;
  }
}
.speciality-content .section-main-title {
  font-size: 36px;
  max-width: 400px;
}
@media (max-width: 575px) {
  .speciality-content .section-main-title {
    font-size: 32px;
  }
}
@media (max-width:499px) {
  .speciality-content .section-main-title {
    font-size: 28px;
  }
}

.speciality-point-single .irc-item-heading {
  font-size: 20px;
  font-weight: 500;
  color: var(--clr-common-heading);
  margin-bottom: 12px;
}
.speciality-point-single .irc-item {
  display: flex;
  gap: 40px;
  align-items: start;
}
.speciality-point-single .irc-item-icon {
  padding-top: 5px;
}
.speciality-point-single .irc-item-content p {
  margin-bottom: 0;
}

.speciality-points {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.speciality-thumb {
  max-width: 570px;
}
.speciality-thumb img {
  width: 100%;
}

/*----------------------------------------
    12. error CSS
----------------------------------------*/
.error-number {
  font-size: 220px;
  font-weight: 700;
  color: var(--clr-common-heading);
  line-height: 160px;
  margin-bottom: 25px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .error-number {
    font-size: 180px;
    line-height: 130px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .error-number {
    font-size: 160px;
    line-height: 120px;
  }
}
@media (max-width: 575px) {
  .error-number {
    font-size: 140px;
    line-height: 100px;
  }
}
@media (max-width: 450px) {
  .error-number {
    font-size: 120px;
    line-height: 90px;
  }
}

.error-content {
  text-align: center;
}
.error-content p {
  max-width: 590px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}
@media (max-width: 575px) {
  .error-content p {
    max-width: 490px;
  }
}

.error-text {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 25px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .error-text {
    font-size: 44px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .error-text {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .error-text {
    font-size: 36px;
  }
}
@media (max-width: 450px) {
  .error-text {
    font-size: 34px;
  }
}
@media (min-width: 450px) {
  .error-text br {
    display: none;
  }
}

.error-btn {
  line-height: 1;
}

.error-area {
  padding: 189px 0;
}

/*----------------------------------------
    13. contact CSS
----------------------------------------*/
.contact-main-wrapper{margin: 0 auto;box-shadow: 0 10px 40px rgb(0 0 0 / 7%); border-radius: 8px; padding: 30px;}
.contact-main-wrapper .section-main-title {
  font-size: 36px; 
}
@media (max-width: 575px) {
  .contact-main-wrapper .section-main-title {
    font-size: 32px;
  }
}
@media (max-width:499px) {
  .contact-main-wrapper .section-main-title {
    font-size: 28px;
  }
}
.contact-main-wrapper .page-content,.contact-main-wrapper .page-content p{font-size: 20px; line-height: 1.5}
.contact-main-wrapper .page-content img{max-width: 100%;}
.single-form-input {
  margin-bottom: 20px;
}
.single-form-input input {
  height: 60px;
  border: 1px solid var(--clr-common-border);
  border-radius: 4px;
  padding: 0 20px;
  width: 100%;
  outline: 0;
}
.single-form-input textarea {
  height: 170px;
  width: 100%;
  border: 1px solid var(--clr-common-border);
  border-radius: 4px;
  resize: none;
  padding: 15px 20px;
  outline: 0;
}

.contact-btn {
  line-height: 1;
}
.contact-btn .fill-btn {
  padding: 0 45px;
}

.sidebar-widget {
  border: 1px solid var(--clr-common-border);
  border-radius: 5px;
  padding: 25px 30px;
}

.sidebar-widget-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
}

.contact-list-item .irc-item {
  display: flex;
  gap: 20px;
}
.contact-list-item .irc-item-heading {
  font-size: 18px;
  font-weight: 600;
  color: var(--clr-common-heading);
  margin-bottom: 10px;
}
.contact-list-item .irc-item-content > span {
  display: block;
}
.contact-list-item .irc-item-content > span a:hover {
  color: var(--clr-common-heading);
}
.contact-list-item .irc-item-content > span a span {
  font-weight: 600;
  color: var(--clr-common-heading);
  white-space: nowrap;
}

.sidebar-widget-content .contact-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-map-wrapper iframe {
  height: 420px;
  width: 100%;
  border-radius: 10px;
}

/*----------------------------------------
    14. shop CSS
----------------------------------------*/
.filter-widget-title {
  font-size: 20px;
  font-weight: 600;
  position: relative;
  margin-bottom: 0;
  cursor: pointer;
}

.filter-widget-title:before {
  position: absolute;
  content: "";
  font-family: "Font Awesome 5 Pro";
  right: 0;
  top: 0;
  font-weight: 300;
  color: var(--clr-common-heading);
  transition: 0.3s;
  transform: rotate(180deg);
}

.child-content-hidden .filter-widget-title::before {
  transform: rotate(0deg);
}

.filter-widget-search input {
  width: 100%;
  height: 50px;
  border-radius: 5px;
  border: 1px solid var(--clr-common-border);
  padding: 0 10px;
  padding-right: 30px;
  outline: none;
}

.filter-widget-search button {
  position: absolute;
  right: 10px;
  top: 12px;
}

.filter-widget-search {
  position: relative;
}

.filter-widget .category-items {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.filter-widget .category-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.filter-widget .category-sizes {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.filter-widget .category-ratings {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.filter-widget .category-brands {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

input.check-box {
  border: 1px solid var(--clr-common-border);
  border-radius: 2px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 18px;
  height: 18px;
  cursor: pointer;
  position: relative;
  top: 5px;
  font-size: 15px;
  margin-right: 8px;
  background: #fbfbfb;
}

input.check-box[type=checkbox]:checked {
  border: none;
  background-color: var(--clr-common-heading);
  color: var(--clr-common-white);
}

input.check-box[type=checkbox]:checked::before {
  position: absolute;
  content: "";
  font-family: "Font Awesome 5 Pro";
  line-height: 16px;
  top: 0;
  left: 2px;
  font-size: 14px;
}

input.radio-box[type=radio] {
  border: 1px solid var(--clr-common-border);
  border-radius: 9px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 18px;
  height: 18px;
  cursor: pointer;
  position: relative;
  top: 5px;
  font-size: 15px;
  margin-right: 8px;
}

input.radio-box[type=radio]:checked::before {
  position: absolute;
  content: "";
  font-family: "Font Awesome 5 Pro";
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  background: var(--clr-common-heading);
  border-radius: 50%;
}

.category-tags a {
  padding: 0 5px;
  flex-grow: 1;
  max-width: 110px;
}

.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.category-tags a:hover {
  color: var(--clr-common-heading);
}

.sidebar-widget-wrapper {
  position: sticky;
  top: 90px;
}

.product-filters {
  display: flex;
  flex-direction: column;
  gap: 35px;
  padding: 10px;
  background: var(--clr-common-white);
}

.filter-widget {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.content-hidden {
  display: none;
}
.content img{max-width: 100%}
.radio-star i.fas {
  color: var(--clr-common-heading);
}

.shop-main-wrapper-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.sorting-type {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sorting-list {
  border: 1px solid var(--clr-common-border);
  padding: 0 15px;
  min-width: 130px;
}

.sorting-type span {
  color: var(--clr-common-heading);
}

.sorting-list span {
  color: var(--clr-common-text);
}

.sorting-list:after {
  right: 15px;
}

.sort-type-filter {
  display: flex;
  align-items: center;
}

.action-item-filter {
  margin-left: 20px;
}

.shop-main-wrapper .products-wrapper > div {
  width: calc((100% - 90px) / 4);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .shop-main-wrapper .products-wrapper > div {
    width: calc((100% - 60px) / 3);
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .shop-main-wrapper .products-wrapper > div {
    width: calc((100% - 30px) / 2);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .shop-main-wrapper .products-wrapper > div {
    width: calc((100% - 60px) / 3);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .shop-main-wrapper .products-wrapper > div {
    width: calc((100% - 30px) / 2);
  }
}
@media (max-width:499px) {
  .shop-main-wrapper .products-wrapper > div {
    width: calc((100% - 0px) / 1);
  }
}

.swowing-list span {
  color: var(--clr-common-heading);
}

@media (min-width: 1400px) {
  .shop-main-wrapper .products-wrapper.products-5-column > div {
    width: calc((100% - 120px) / 5);
  }
}

@media (min-width: 1400px) {
  .shop-main-wrapper .products-wrapper.products-4-column > div {
    width: calc((100% - 90px) / 4);
  }
}

@media (min-width: 1400px) {
  .shop-main-wrapper .products-wrapper.products-3-column > div {
    width: calc((100% - 60px) / 3);
  }
}

@media (min-width: 1400px) {
  .shop-main-wrapper .products-wrapper.products-full-6-column > div {
    width: calc((100% - 150px) / 6);
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .shop-main-wrapper .products-wrapper.products-full-6-column > div {
    width: calc((100% - 120px) / 5);
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .shop-main-wrapper .products-wrapper.products-full-6-column > div {
    width: calc((100% - 90px) / 4);
  }
}

@media (min-width: 1400px) {
  .shop-main-wrapper .products-wrapper.products-full-5-column > div {
    width: calc((100% - 120px) / 5);
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .shop-main-wrapper .products-wrapper.products-full-5-column > div {
    width: calc((100% - 90px) / 4);
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .shop-main-wrapper .products-wrapper.products-full-5-column > div {
    width: calc((100% - 60px) / 3);
  }
}

@media (min-width: 1400px) {
  .shop-main-wrapper .products-wrapper.products-full-4-column > div {
    width: calc((100% - 90px) / 4);
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .shop-main-wrapper .products-wrapper.products-full-4-column > div {
    width: calc((100% - 90px) / 4);
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .shop-main-wrapper .products-wrapper.products-full-4-column > div {
    width: calc((100% - 60px) / 3);
  }
}

@media (min-width: 1400px) {
  .shop-main-wrapper .products-wrapper.products-full-3-column > div {
    width: calc((100% - 90px) / 3);
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .shop-main-wrapper .products-wrapper.products-full-3-column > div {
    width: calc((100% - 90px) / 3);
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .shop-main-wrapper .products-wrapper.products-full-3-column > div {
    width: calc((100% - 60px) / 3);
  }
}

.product-details-nav .nav-tabs {
  display: flex;
  gap: 20px;
}

.product-details-nav .nav-tabs > li {
  width: calc((100% - 60px) / 4);
}

.product-details-nav .nav-tabs > li img {
  width: 100%;
}

.product-details-tab .tab-content .tab-pane img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
}

.product-details-tab .tab-content {
  margin-bottom: 20px;
}

.product-quantity-cart {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.product-details-tab-wrapper .nav-tabs .nav-link:not(.active) {
  opacity: 0.8;
}

.product-side-info .product-price {
  font-size: 32px;
  color: var(--clr-common-heading);
  font-weight: 600;
}

.product-side-info .border-btn {
  height: 40px;
  line-height: 38px;
}

.product__details__tag a {
  padding: 0 10px;
  background: var(--clr-bg-gray);
  height: 30px;
  display: inline-block;
  line-height: 30px;
  border-radius: 3px;
}

.product__details__tag a:hover {
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
}

.available-sizes .spec-title{color: #000000; font-weight: 600; display: block;margin-bottom: 5px}
.available-sizes .product-available-sizes li{display: inline-block;}
.goods-spec-text li a{display:block;margin:0;padding:5px 15px;height:35px;font-size:.9em;line-height:23px;color:#666;border:1px solid #ccc;cursor:pointer;overflow:hidden;position:relative}
.goods-spec-text li a img{width:20px;height:20px}
.goods-spec-text li a:hover{border-color:#007bff;text-decoration:none}
.goods-spec-text li.selected a{border-color:#007bff}
.goods-spec-text li.disabled a{border-color:#ddd;color:rgba(0,0,0,.3);background-color:#f7f7f7}
.goods-spec-text li.selected a:after,.goods-spec-text li.selected a:before{position:absolute;right:0;bottom:0;content:""}
.goods-spec-text li.selected a:before{width:0;height:0;right:-11px;line-height:0;border:11px solid #fff;border-bottom:11px solid #007bff}
.goods-spec-text li.selected a:after{width:10px;height:10px;background:url(../../assets/addons/shop/img/check.png) no-repeat 100% 100%;background-size:6px auto}
.goods-spec-text li.selected i{display:block}
.product-details-tab .tab-content .tab-pane {
  width: 100%;
  padding-top: 110%;
  position: relative;
}

.product-details-nav .nav-item {
  position: relative;
  border: 0;
  padding: 10px 0;
  font-size: 16px;
  margin-right: 0px;
  font-weight: 600;
  color: var(--clr-common-text);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px) {
  .product-details-nav .nav-item {
    font-size: 20px;
  }
}

.product-details-nav .nav-item.active {
  color: var(--clr-common-heading);
  font-weight: 600;
}

.product-details-nav .nav-item::before {
  position: absolute;
  content: "";
  width: 0%;
  height: 1px;
  background: var(--clr-common-heading);
  bottom: 0;
  left: 0;
  right: 0;
  transition: 0.3s;
}

.product-details-nav .nav-item.active::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: var(--clr-common-heading);
  bottom: 0;
  left: 0;
  right: 0;
}

.product_info-faq-area .nav-tabs {
  border-bottom: 1px solid var(--clr-bg-gray);
}
#commentlist h4{font-size: 16px;}
.course-review-item {
  display: flex;
  align-items: normal; border-bottom: 1px solid rgba(0, 0, 0, 0.15);padding-bottom: 20px;
}
.course-review-item .course-reviews-img img{width: 50px; border-radius: 50%}
.course-review-list {
  margin-left: 20px;width: 100%
}
.course-review-list h4,.course-review-list p{color: #00000080}
.course-review-list .seemore{color: #007FDC}
.course-review-list .hide{display: none}
.course-review-list h5{margin: 0; color: #007FDC}
.course-review-list span {
  font-size: 14px;
  font-weight: 400;
}
.course-review-list video{float: left; margin-right: 3px;}
.course-start-icon i {
  color: var(--clr-theme-1);
  font-size: 13px;
}
.course-start-icon .date{margin-left: 10px; float: right;}
.comment-title h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}

.comment-title p {
  color: #454545;
}

.comment-rating span {
  font-size: 15px;
  margin-right: 5px;
}

.comment-rating ul li {
  display: inline-block;
}

.comment-rating ul li a {
  font-size: 14px;
  color: var(--clr-theme-1);
}

.comment-agree input {
  margin: 0;
  appearance: none;
  display: inline-block;
  width: 18px;
  height: 18px;
  background: transparent;
  border: 2px solid var(--clr-common-border);
  border-radius: 2px;
  outline: none;
}

.comment-agree label {
  margin-left: 5px;
  font-size: 15px;
  color: #454545;
}

.comment-agree input::placeholder {
  color: var(--clr-common-text);
  font-size: 14px;
  opacity: 1;
}

.comment-input input {
  height: 60px;
  width: 100%;
  background: #f8f8f9;
  border: none;
  padding: 15px 20px;
  border-radius: 4px;
  outline: 0;
}

.comment-input input::placeholder {
  color: var(--clr-common-text);
  font-size: 14px;
  opacity: 1;
}

.comment-textarea {
  height: 170px;
  width: 100%;
  background: #f8f8f9;
  border: none;
  padding: 15px 20px;
  border-radius: 4px;
  resize: none;
  outline: 0;
}

.comment-textarea::placeholder {
  color: var(--clr-common-text);
  font-size: 14px;
  opacity: 1;
}

.product-available-sizes span {
  border: 1px solid var(--clr-common-border);
  width: 30px;
  height: 30px;
  display: inline-block;
  text-align: center;
  border-radius: 3px;
}

.cart-area .table-content table {
  background: #ffffff;
  border-color: #edeef2;
  border-radius: 0;
  border-style: solid;
  border-width: 1px 0 0 1px;
  text-align: center;
  width: 100%;
  margin-bottom: 0;
}
.cart-area .table-content .product-quantity {
  float: none;
}
.cart-area .table-content table td.product-name {
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
}
.cart-area .table > :not(:last-child) > :last-child > * {
  border-bottom-color: #edeef2;
}
.cart-area .table-content table td.product-name a:hover {
  color: var(--clr-common-heading);
}
.cart-area .table-content table td {
  border-top: medium none;
  padding: 20px 10px;
  vertical-align: middle;
  font-size: 16px;
}
.cart-area .table-content table th,
.cart-area .table-content table td {
  border-bottom: 1px solid #edeef2;
  border-right: 1px solid #edeef2;
}
.cart-area .table td,
.cart-area .table th {
  border-top: 1px solid #edeef2;
}
.cart-area .table-content table td.product-subtotal {
  font-size: 16px;
}
.cart-area .table-content table td .cart-plus-minus {
  float: none;
  margin: 0 auto;
}
.cart-area .coupon-all {
  margin-top: 50px;
}
.cart-area .coupon {
  float: left;
  gap: 15px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cart-area .coupon {
    float: none;
  }
}
.cart-area #coupon_code {
  height: 50px;
  border: 1px solid #edeef2;
  padding: 0 15px;
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.cart-area #coupon_code:focus {
  border-color: var(--clr-common-heading);
}
.cart-area .coupon2 {
  float: right;
}
@media (max-width: 767px) {
  .cart-area .coupon2 {
    float: none;
    margin-top: 15px;
  }
}
.cart-area .cart-page-total {
  padding-top: 50px;
}
.cart-area .cart-page-total > h2 {
  font-size: 20px;
  margin-bottom: 20px;
  text-transform: capitalize;
}
.cart-area .cart-page-total > ul {
  border: 1px solid #edeef2;
}
.cart-area .cart-page-total > ul > li {
  list-style: none;
  font-size: 15px;
  color: #575757;
  padding: 14px 30px;
  border-bottom: 1px solid #edeef2;
  font-weight: 400;
}
.cart-area .cart-page-total ul > li > span {
  float: right;
}
.cart-area .cart-page-total li:last-child {
  border-bottom: 0;
}
.cart-area td.product-thumbnail img {
  width: 125px;
}
.cart-area .product-quantity-form {
  margin: auto;
  width: 122px;
  height: 58px;
  border: 1px solid var(--clr-common-border);
  text-align: center;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.cart-area .product-quantity-form:hover {
  border-color: var(--clr-common-heading);
}
.cart-area .cart-plus, .cart-area .cart-minus {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 45px;
  height: 40px;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  font-size: 14px;
  background: transparent;
  border: none;
  outline: none;
}
.cart-area .cart-plus:hover, .cart-area .cart-minus:hover {
  cursor: pointer;
  color: var(--clr-common-heading);
  background: transparent;
}
.cart-area .cart-plus {
  left: auto;
  right: 0;
}
.cart-area .cart-input {
  height: 58px;
  width: 32px;
  text-align: center;
  font-size: 14px;
  border: none;
  display: inline-block;
  vertical-align: middle;
  margin: 0 -3px;
  padding-bottom: 4px;
  background: transparent;
}
.cart-area .cart-input:focus {
  outline: none;
}

.cart-area .coupon .fill-btn {
  height: 40px;
  line-height: 38px;
}

.cart-area .coupon2 .fill-btn {
  height: 40px;
  line-height: 38px;
}

.product-quantity a {
  white-space: nowrap;
}

.coupon-accordion h3 {
  background-color: #f6f6f6;
  border-top: 3px solid var(--clr-common-heading);
  font-size: 14px;
  font-weight: 400;
  margin: 0 0 25px;
  padding: 1em 2em 1em 3.5em;
  position: relative;
  width: auto;
}

.coupon-accordion h3::before {
  content: "";
  left: 15px;
  top: 13px;
  position: absolute;
  color: #575757;
  font-family: "Font Awesome 5 Pro";
  font-weight: 700;
}

.coupon-accordion span {
  color: #575757;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 500;
}

.coupon-accordion span:hover,
p.lost-password a:hover {
  color: var(--clr-common-heading);
}

.coupon-content {
  border: 1px solid var(--clr-common-border);
  display: none;
  margin-bottom: 20px;
  padding: 30px;
}

.coupon-info p.coupon-text {
  margin-bottom: 15px;
}

.coupon-info p {
  margin-bottom: 0;
}

.coupon-info p.form-row-first label,
.coupon-info p.form-row-last label {
  display: block;
  color: var(--clr-common-heading);
}

.coupon-info p.form-row-first label span.required,
.coupon-info p.form-row-last label span.required {
  color: var(--clr-common-heading);
  font-weight: 700;
}

.coupon-info p.form-row-first input,
.coupon-info p.form-row-last input {
  border: 1px solid var(--clr-common-border);
  height: 60px;
  line-height: 60px;
  margin: 0 0 14px;
  max-width: 100%;
  padding: 0 0 0 10px;
  width: 100%;
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.coupon-info p.form-row-first input:focus,
.coupon-info p.form-row-last input:focus {
  border-color: var(--clr-common-heading);
}

.coupon-info p.form-row input[type=submit]:hover,
p.checkout-coupon input[type=submit]:hover {
  background: #3e976c none repeat scroll 0 0;
}

.coupon-info p.form-row input[type=checkbox] {
  position: relative;
  top: 2px;
}

.form-row > label {
  margin-top: 15px;
  margin-left: 15px;
  color: #575757;
}

.buttons-cart input,
.coupon input[type=submit],
.buttons-cart a,
.coupon-info p.form-row input[type=submit] {
  background: #252525 none repeat scroll 0 0;
  border: medium none;
  color: #fff;
  display: inline-block;
  float: left;
  font-size: 12px;
  font-weight: 700;
  height: 40px;
  line-height: 40px;
  margin-right: 15px;
  padding: 0 15px;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
}

p.lost-password {
  margin-top: 15px;
}

p.lost-password a {
  color: #6f6f6f;
}

p.checkout-coupon input[type=text] {
  height: 60px;
  line-height: 60px;
  padding: 0 20px;
  width: 100%;
  border: 1px solid var(--clr-common-border);
  margin-bottom: 15px;
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
p.checkout-coupon input[type=text]:focus {
  border-color: var(--clr-common-border);
}

.coupon-checkout-content {
  display: none;
}

.checkbox-form .ship-different-title {
  border-bottom: 1px solid var(--clr-common-border);
  margin: 0 0 20px;
  padding-bottom: 10px;
  width: 100%;
}

.country-select {
  margin-bottom: 30px;
  position: relative;
}

.country-select select {
  width: 100%;
  background-color: transparent;
  border: 1px solid var(--clr-common-border);
  padding: 0 10px;
  height: 50px;
}

.country-select label,
.checkout-form-list label {
  color: var(--clr-common-heading);
  display: block;
  margin: 0 0 5px;
}

.country-select label span.required,
.checkout-form-list label span.required {
  color: var(--clr-common-heading);
}

.country-select .nice-select {
  border: 1px solid var(--clr-common-border);
  height: 48px;
  line-height: 48px;
  padding-left: 20px;
  width: 100%;
  color: #575757;
  margin-bottom: 20px;
}

.country-select .nice-select .list {
  width: 100%;
}
.paymethod-list{border:1px solid var(--clr-common-border); border-radius: 5px;}
.checkout-form-list {
  margin-bottom: 10px;
}

.checkout-form-list label {
  color: var(--clr-common-heading);
}

.checkout-form-list input[type=text],
.checkout-form-list input[type=password],
.checkout-form-list input[type=email] {
  background: #ffffff;
  border: 1px solid var(--clr-common-border);
  border-radius: 5px;
  height: 48px;
  line-height: 48px;
  padding: 0 0 0 14px;
  width: 100%;
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.checkout-form-list input[type=text]:focus,
.checkout-form-list input[type=password]:focus,
.checkout-form-list input[type=email]:focus {
  border-color: var(--clr-common-border);
}

.checkout-form-list input[type=text]::-moz-placeholder,
.checkout-form-list input[type=password]::-moz-placeholder,
.checkout-form-list input[type=email]::-moz-placeholder {
  color: #575757;
  opacity: 1;
}

.checkout-form-list input[type=text]::placeholder,
.checkout-form-list input[type=password]::placeholder,
.checkout-form-list input[type=email]::placeholder {
  color: #575757;
  opacity: 1;
}

.checkout-form-list input[type=checkbox] {
  display: inline-block;
  margin-right: 10px;
  position: relative;
  top: 1px;
}
.order-back a{color: #008ebc; font-size: 14px;}
.checksafeinfo p{color: #00000080;}
.checkpolicy {border-top: 1px solid #00000026}
.checkpolicy a{color: #007FDC; font-size: 14px;}
.checkpolicy a:not(:last-child){margin-right: 30px;}
.create-acc label {
  color: #575757;
  display: inline-block;
}

.create-account {
  display: none;
}

.ship-different-title label {
  display: inline-block;
  margin-right: 10px;
}

.order-notes textarea {
  border: 1px solid var(--clr-common-border);
  height: 90px;
  padding: 15px;
  width: 100%;
  resize: none;
  padding-left: 20px;
  outline: none;
}

.order-notes textarea::-moz-placeholder {
  color: #575757;
  opacity: 1;
}

.order-notes textarea::placeholder {
  color: #575757;
  opacity: 1;
}

#ship-box-info {
  display: none;
}

.panel-group .panel {
  border-radius: 0;
}

.panel-default > .panel-heading {
  border-radius: 0;
}

.your-order {
  padding: 30px 40px 45px;
  background: #fafafa
}

@media (max-width: 767px) {
  .your-order {
    padding: 15px;
  }
}
.your-order h3 {
  border-bottom: 1px solid var(--clr-common-border);
  font-size: 24px;
  margin: 0 0 20px;
  padding-bottom: 10px;
  width: 100%;
}

.your-order-table table {
  background: none;
  border: 0;
  width: 100%;
}

.your-order-table table th,
.your-order-table table td {
  border-bottom: 1px solid var(--clr-common-border);
  border-right: medium none;
  color: #575757;
  font-size: 16px;
  padding: 15px 0;
  text-align: left;
}

@media (max-width: 767px) {
  .your-order-table table th,
.your-order-table table td {
    padding-right: 10px;
  }
}
.your-order-table table th {
  border-top: medium none;
  color: var(--clr-common-heading);
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
  white-space: nowrap;
  width: 250px;
}

.panel-body > p {
  color: #222;
}

.your-order-table table .shipping ul li input {
  position: relative;
  top: 2px;
}

.your-order-table table .shipping ul li label {
  color: #575757;
}

.your-order-table table .shipping th {
  vertical-align: top;
}

.your-order-table table .order-total th {
  border-bottom: 0;
}

.your-order-table table .order-total td {
  border-bottom: medium none;
}

.your-order-table table tr.cart_item:hover {
  background: #f9f9f9;
}

.your-order-table table tr.order-total td span {
  color: var(--clr-common-heading);
  font-size: 18px;
  font-weight: 500;
}

.payment-method {
  margin-top: 40px;
}
.payment-method .accordion-item:last-of-type {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.payment-method .accordion-item {
  background-color: #fff;
  border: 0;
  border-bottom: 1px solid var(--clr-common-border);
}
.payment-method .accordion-button {
  font-size: 16px;
  font-weight: 500;
  color: var(--clr-common-heading);
  padding: 23px 0;
  border: none;
}
.payment-method .accordion-button:focus {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.payment-method .accordion-button::after {
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: "Font Awesome 5 Pro";
  font-size: 16px;
  font-weight: 400;
  margin-left: 0;
  background-image: none;
}
.payment-method .accordion-button:not(.collapsed) {
  color: var(--clr-common-heading);
  background-color: var(--clr-common-white);
  box-shadow: none;
}
.payment-method .accordion-button:not(.collapsed)::after {
  content: "";
}
.payment-method .accordion-body {
  padding: 8px 0;
  padding-bottom: 40px;
}
.payment-method .accordion-collapse {
  border: none;
}

.panel-title > a {
  display: block;
}

.order-button-payment input {
  background: #232323 none repeat scroll 0 0;
  border: medium none;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  height: 40px;
  margin: 0px 0 0;
  padding: 0;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
  width: 100%;
}

.order-button-payment input:hover {
  background: #3e976c none repeat scroll 0 0;
}

.payment-method .btn-link {
  user-select: none;
  -moz-user-select: none;
  background: no-repeat;
  border: medium none;
  border-radius: 0;
  color: #444;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 0;
  padding: 3px 10px;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
  vertical-align: middle;
  white-space: nowrap;
  text-decoration: none;
}

.payment-method .card {
  background-color: #ffffff;
  border: 1px solid var(--clr-common-border);
  border-radius: 0;
  margin-bottom: 10px;
}

.payment-method .accordion .card:first-of-type {
  border: 1px solid var(--clr-common-border);
}

.card-header:first-child {
  border-radius: 0;
}

.payment-method .card-header {
  background-color: #ffffff;
  border-bottom: 1px solid var(--clr-common-border);
}

.order-button-payment button {
  width: 100%;
}

.product-details-img {
  margin-right: 50px;
}
@media (max-width: 575px) {
  .product-details-img {
    margin-right: 0;
  }
}
.product-details-img img {
  width: 100%;
}

.product-side-info .product-name {
  font-size: 20px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .product-side-info .product-name {
    font-size: 1rem;
  }
}

.product-side-info .product-price {
  font-size: 32px;
  font-weight: 600;
  color: var(--clr-theme-1);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .product-side-info .product-price {
    font-size: 18px;
  }
}
.btn-stock{font-size: 16px;line-height: 38px; border:1px solid var(--clr-common-border); border-radius: 5px;padding: 0 22px}
.amazon-btn{display: flex; gap: 20px;}
.b2gary{border-top: 2px solid #ececec;padding-top: 15px;padding-bottom: 15px;}
.product-quantity-cart {
  display: flex;
  gap: 20px;
  flex-wrap: wrap; 
}

.product-quantity-cart .cart-minus {
  height: 40px;
  width: 40px;
  border: none;
}

.product-quantity-form .cart-plus {
  height: 40px;
  width: 40px;
  border: none;
}

.product-quantity-cart .cart-input {
  height: 40px;
  width: 40px;
  border: none;
  text-align: center;
}

.product-quantity-cart .product-quantity-form {
  border: 1px solid var(--clr-common-border);
  border-radius: 4px;
}

/*range slider css start*/
#slider-range {
  position: relative;
  margin-bottom: 25px;
}

.ui-widget.ui-widget-content {
  border: none;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  background: #fff;
  border-radius: 50%;
  border: none;
  outline: none;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.004);
}

.ui-slider-horizontal {
  height: 6px;
}

.ui-widget-content {
  background: #f0f0f0;
}

.ui-widget-header {
  background: #222;
}

.ui-slider-horizontal .ui-slider-handle {
  top: -5px;
}

.ui-slider .ui-slider-handle {
  height: 15px;
  width: 15px;
}

.ui-slider .ui-slider-handle:before {
  position: absolute;
  content: "";
  height: 6px;
  width: 6px;
  background: #222;
  left: 4.5px;
  top: 4.5px;
  border-radius: 50%;
}

.slider-range p {
  line-height: 1;
  margin-top: 25px;
  margin-bottom: 0;
}

.slider-range p label {
  font-size: 14px;
  font-weight: 400;
  color: #6b6b6b;
  margin-top: 7px;
}

.slider-range input {
  font-size: 14px;
  font-weight: 400;
  color: #6b6b6b;
  border: none;
  outline: none;
  background: none;
  margin-left: 10px;
  width: 100px;
}

.slider-active-2 .slider-pagination > * {
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.slider-active-2 .slider-pagination > *:hover {
  background-color: var(--clr-common-black);
}

.slider-active-2 .slider-pagination > *:hover i {
  color: var(--clr-common-white);
}

.ui-widget.ui-widget-content {
  border: none;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  background: var(--clr-theme-1);
  border-radius: 50%;
  border: none;
  outline: none;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.004);
}

.ui-slider-horizontal {
  height: 6px;
}

.ui-widget-content {
  background: #f0f0f0;
}

.ui-widget-header {
  background: var(--clr-theme-1);
}

.ui-slider-horizontal .ui-slider-handle {
  top: -5px;
}

.ui-slider .ui-slider-handle {
  height: 15px;
  width: 15px;
  -webkit-transition: all 0s linear 0s;
  -moz-transition: all 0s linear 0s;
  -ms-transition: all 0s linear 0s;
  -o-transition: all 0s linear 0s;
  transition: all 0s linear 0s;
}

.ui-slider .ui-slider-handle:before {
  position: absolute;
  content: "";
  height: 6px;
  width: 6px;
  background: var(--clr-common-white);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.sidebar-action {
  background: var(--clr-common-white);
  height: 100%;
  position: fixed;
  z-index: 99999;
  top: 0;
  width: 390px;
  padding: 30px 30px;
  transition: 0.6s;
  overflow-y: scroll;
}
@media (max-width: 575px) {
  .sidebar-action {
    width: 320px;
  }
}

.close-sidebar {
  background: var(--clr-theme-1);
  display: flex;
  align-items: center;
  gap: 10px;
  height: 30px;
  padding: 0 10px;
  border-radius: 4px;
  color: var(--clr-common-white);
  position: absolute;
  right: 30px;
  top: 30px;
}

.sidebar-cart {
  right: -100%;
}
.sidebar-cart.cart-open {
  right: 0;
}

.sidebar-wishlist {
  right: -100%;
}
.sidebar-wishlist.wishlist-open {
  right: 0;
}

.sidebar-filter {
  right: -100%;
}
.sidebar-filter.filter-open {
  right: 0;
}
.sidebar-filter .product-filters {
  padding: 0px;
}
.sidebar-filter .filter-widget-title {
  font-size: 18px;
}

.sidebar-action-title {
  font-size: 20px;
  margin-bottom: 20px;
}
.sidebar-action-title span{font-weight: 400;font-size: 16px;}
.sidebar-list-item {
  display: flex;
  gap: 20px;
}

.sidebar-action-btn {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sidebar-action-btn a {
  width: 100%;
  flex-wrap: wrap;
  white-space: nowrap;
}

.sidebar-action-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-pricing span {
  font-size: 15px;
  font-weight: 500;
  color: var(--clr-common-heading);
  line-height: 1;
}

.sidebar-list-item {
  display: flex;
  gap: 20px;
  border-top: 1px solid var(--clr-common-border);
  padding-top: 20px;
  position: relative;
  padding-right: 20px;
}
.sidebar-list-item .product-image {
  min-width: 100px;
  height: 100px;
}
.sidebar-list-item .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sidebar-list-item .product-desc {
  padding: 0px 0 0px;
}
.sidebar-list-item .remove-item {
  position: absolute;
  right: 0;
  top: 20px;
  color: var(--clr-common-heading);
}

.product-price-total {
  padding-top: 20px;
  border-top: 1px solid var(--clr-common-border);
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}

.product-price-total span {
  color: var(--clr-common-heading);
  font-weight: 500;
}

.sidebar-action-btn a {
  flex-grow: 1;
  height: 60px;
  line-height: 58px;
}

/*----------------------------------------
    15. faq CSS
----------------------------------------*/
.choose-right .accordion-button:focus {
  z-index: 3;
  border: none;
  outline: 0;
  box-shadow: none;
}

.choose-right .accordion-item {
  border: 1px solid var(--clr-common-border);
  margin-bottom: 20px;
  border-radius: 5px;
}

.choose-right .accordion-collapse {
  border: 0;
}

.choose-right .accordion-button {
  padding: 25px;
  font-size: 16px;
  color: #242629;
  font-weight: 600;
  padding-right: 35px;
  border: 0;
}

.choose-right .accordion-button:not(.collapsed) {
  color: var(--clr-common-heading);
  background-color: #fff;
  box-shadow: none;
  border: 0;
}

.choose-right .accordion-body {
  padding: 0px 25px 20px 25px;
}

.choose-right .accordion-body p {
  line-height: 30px;
  margin-bottom: 0;
}

.choose-right .accordion-button:not(.collapsed)::after {
  background: none;
  transform: rotate(180deg);
  content: "";
  position: absolute;
  right: 25px;
  top: 25px;
  font-family: "Font Awesome 5 Pro";
}

@media (max-width: 767px) {
  .choose-right .accordion-button:not(.collapsed)::after {
    right: 20px;
  }
}
.choose-right .accordion-button::after {
  background: none;
  color: var(--clr-common-heading);
  content: "";
  position: absolute;
  right: 20px;
  top: 25px;
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

@media (max-width: 767px) {
  .choose-right .accordion-button::after {
    right: 15px;
  }
}
/*----------------------------------------
    16. register CSS
----------------------------------------*/
.signin-area-wrapper {
  display: flex;
}

.sign-up-wrapper {
  display: flex;
}

.signup-wrapper input {
  width: 100%;
  height: 60px;
  background: transparent;
  border: 1px solid var(--clr-common-border);
  border-radius: 4px;
  margin-bottom: 20px;
  display: flex;
  padding: 10px 20px;
  outline: none;
  color: var(--clr-common-text);
  font-size: 16px;
}

.signup-input-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.signup-input-wrapper input {
  width: 100%;
  height: 60px;
  background: transparent;
  border: 1px solid var(--clr-common-border);
  border-radius: 4px;
  margin-bottom: 20px;
  display: flex;
  padding: 10px 20px;
  outline: none;
  color: var(--clr-common-text);
  font-size: 16px;
}

.sign-check a {
  color: var(--clr-theme-1);
  font-weight: 600;
  text-decoration: underline;
}
.sign-check a:hover {
  color: var(--clr-common-heading);
}

.signup-box {
  background: #f5f5f5;
  padding: 45px 30px;
}

.signup-thumb img {
  max-width: 100%;
}

.signup-form-wrapper {
  background: var(--clr-common-white);
}

.signup-action {
  margin-bottom: 25px;
}

.sing-buttom {
  height: 60px;
  background: var(--clr-theme-1);
  text-align: center;
  line-height: 58px;
  color: var(--clr-common-white);
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
  border: 1px solid var(--clr-theme-1);
}
.sing-buttom:hover {
  color: var(--clr-common-heading);
  background: var(--clr-common-white);
}

.registered.wrapper {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.forget-password a:hover {
  color: var(--clr-common-heading);
}

.not-register a:hover {
  color: var(--clr-common-heading);
}

.acount-login {
  margin-bottom: 30px;
}
.acount-login a {
  font-weight: 600;
  color: var(--clr-theme-1);
  margin-left: 5px;
  text-decoration: underline;
}
.acount-login a:hover {
  color: var(--clr-common-heading);
}

.sign-social {
  position: relative;
  z-index: 2;
  margin-bottom: 25px;
}
.sign-social span {
  background: var(--clr-common-white);
  display: inline-block;
  padding: 0 10px;
}
.sign-social:before {
  position: absolute;
  height: 1px;
  background: var(--clr-common-border);
  content: "";
  width: 100%;
  top: 15px;
  left: 0;
  z-index: -1;
}

.sign-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 19px;
}

.signup-text h3 {
  font-size: 28px;
  margin-bottom: 106px;
}

.signup-message img {
  max-width: 100%;
  margin-bottom: 5px;
}

.not-register a {
  font-weight: 600;
  color: var(--clr-theme-1);
  text-decoration: revert;
  margin-left: 5px;
}

.sign-gmail {
  border: 1px solid var(--clr-common-border);
  padding: 10px 20px;
  border-radius: 4px;
}
.sign-gmail a {
  font-weight: 600;
}
.sign-gmail a:hover {
  color: var(--clr-common-heading);
}

.sign-facebook {
  border: 1px solid var(--clr-common-border);
  padding: 10px 20px;
  border-radius: 4px;
}
.sign-facebook a {
  font-weight: 600;
}
.sign-facebook a:hover {
  color: var(--clr-common-heading);
}

/*----------------------------------------
    17. footer CSS
----------------------------------------*/
.footer-widget-title h4 {
  font-size: 22px;
  margin-bottom: 15px; color: #fff; border-bottom: 1px solid rgba(255,255,255,.3);padding-bottom: 10px;font-weight: 400
}

.footer-widget ul li {
  margin-bottom: 6px;
}
.footer-widget ul li:last-child {
  margin-bottom: 0;
}
.footer-widget ul li a {
  font-size: 16px;
  line-height: 20px;
  color: rgba(255,255,255,.7);
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.footer-widget > ul li a:hover {
  padding-left: 20px;
  color: #fff;
}
.footer-widget > ul li a:hover:before {
  left: 0;
}
.footer-widget > ul li a:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 1px;
  background: #fff;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}

.subscribe-form {
  position: relative;
}
.subscribe-form input {
  width: 100%;
  height: 50px;
  border: 1px solid #D9D9D9;
  background: none;
  border-radius: 5px;
  padding: 0 20px 0 20px;
  margin-bottom: 20px; color: #999
}
.subscribe-form input:focus {
  outline: none;
}
.subscribe-form button {
  position: absolute;
  width: 40px;
  font-size: 16px;
  font-weight: 600;
  height: 50px;
  line-height: 48px;
  top: 0; right: 10px;
}
.footer-area1-bg {
  background: #111111;
}

.copyright1-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .copyright1-inner {
    justify-content: center;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 576px) and (max-width: 767px) {
  .copyright1-inner .cards-wrapper {
    flex-direction: column;
  }
}
@media (max-width: 575px) {
  .copyright1-inner .cards-wrapper {
    justify-content: center;
  }
}

.social-wrapper {
  display: flex;
  gap: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .social-wrapper {
    flex-grow: 1;
    justify-content: center;
  }
}
.social-wrapper p {
  color: var(--clr-common-heading);
  margin-bottom: 0;
}
.sociallinks ul li{}
.sociallinks ul li i{width: 22px;height: 22px; overflow: hidden;display: inline-block;margin-right: 10px; background: url(../img/social.png) 0 0 no-repeat;float: left;}
.sociallinks ul li.twitter i{background-position: 0 -31px}
.sociallinks ul li.youtube i{background-position: 0 -63px}
.sociallinks ul li.instagram i{background-position: 0 -94px}
.sociallinks ul li.tiktok i{background-position: 0 -125px}
.sociallinks ul li a{}
.social__links ul {
  display: flex;
  gap: 15px;
}
.social__links ul li a{font-size: 26px;}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .social__links ul {
    gap: 15px;
  }
}
.social__links ul li {
  margin-bottom: 0;
}
.social__links ul li a {
  color: var(--clr-common-heading);
}
.footer1-widget p,.copyright-text{color: #999}
.copyright-text a {
  font-weight: 400;
  color: #999;
}

.copyright-link {
  display: flex;
  gap: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .copyright-link {
    gap: 10px;
  }
}
.copyright-link .text-btn {
  line-height: 1;
  height: 20px;
}
.copyright-link .text-btn:not(:last-child) {
  border-right: 1px solid #eaebee;
  padding-right: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .copyright-link .text-btn:not(:last-child) {
    padding-right: 10px;
  }
}
.copyright-link .text-btn:hover {
  color: var(--clr-common-heading);
}
.copyright-area{background: #111111}
.copyright-area.copyright1-area {
  padding: 17px 0;
  border-top: 1px solid rgba(255,255,255,.3);
}

.copyright-area.copyright2-area {
  padding: 17px 0;
}

.copyright2-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footnotice{background: #111111;}
.footnotice p{margin-bottom: 0; padding-bottom: 10px;}
.footer-bottom-area{background: #111111}
.footershop {border-top: 1px solid rgba(255,255,255,.3); padding-bottom: 30px;}
.footershop .item{margin-top: 20px;}
.footershop .item a{ color: #999; font-weight: 200}
.footershop .item a:hover{color: #fff}
.footershop .item img{margin-right: 10px;width: 30px;}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .copyright2-inner {
    justify-content: center;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .copyright2-inner .cards-wrapper {
    flex-grow: 1;
    justify-content: center;
  }
}

.footer-bottom1-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-bottom1-inner {
    justify-content: center;
    padding-top: 30px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-bottom1-inner .cards-wrapper {
    flex-direction: column;
  }
}
.footer-bottom1-inner .cards-wrapper {
  padding: 45px 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-bottom1-inner .cards-wrapper {
    padding: 25px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-bottom1-inner .cards-wrapper {
    padding: 5px 0;
  }
}

.irc-item.footer-support {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .irc-item.footer-support {
    flex-grow: 1;
    justify-content: center;
  }
}
.irc-item.footer-support .irc-item-content p {
  font-size: 14px;
  margin-bottom: 4px;
  line-height: 1;
}
.irc-item.footer-support .support-number {
  font-size: 18px;
  font-weight: 600;
  color: var(--clr-common-heading);
}

.cards-wrapper {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cards-wrapper {
    flex-grow: 1;
    justify-content: center;
  }
}
.cards-wrapper p {
  margin-bottom: 0;
}

.card-links ul {
  display: flex;
  gap: 15px;
}
.card-links ul li a img {
  border-radius: 2px;
}

.apps-download {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .apps-download {
    flex-grow: 1;
    justify-content: center;
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .apps-download {
    flex-wrap: wrap;
  }
}

.apps-download-text {
  text-align: right;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .apps-download-text {
    text-align: center;
  }
}
.apps-download-text h5 {
  font-size: 16px;
  margin-bottom: 0;
}
.apps-download-text p {
  font-size: 14px;
  margin-bottom: 0;
}

.app-links ul {
  display: flex;
  gap: 10px;
}
@media (max-width: 575px) {
  .app-links ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .app-links img {
    width: 150px;
  }
}

.cards-wrapper-lines {
  position: relative;
}
.cards-wrapper-lines:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background: var(--clr-common-border);
  top: 0;
  left: -100px;
}
@media only screen and (min-width: 1501px) and (max-width: 1600px) {
  .cards-wrapper-lines:before {
    left: -75px;
  }
}
@media only screen and (min-width: 1401px) and (max-width: 1500px) {
  .cards-wrapper-lines:before {
    left: -50px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .cards-wrapper-lines:before {
    left: -30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cards-wrapper-lines:before {
    display: none;
  }
}
.cards-wrapper-lines:after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background: var(--clr-common-border);
  top: 0;
  right: -100px;
}
@media only screen and (min-width: 1501px) and (max-width: 1600px) {
  .cards-wrapper-lines:after {
    right: -75px;
  }
}
@media only screen and (min-width: 1401px) and (max-width: 1500px) {
  .cards-wrapper-lines:after {
    right: -50px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .cards-wrapper-lines:after {
    right: -30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cards-wrapper-lines:after {
    display: none;
  }
}

.footer-area2-bg {
  background: var(--clr-common-heading);
}

.footer2-widget .footer-widget-title h4 {
  color: var(--clr-common-white);
}

.footer-widget.footer2-widget ul li a {
  color: #959595;
}
.footer-widget.footer2-widget ul li a::before {
  background: var(--clr-common-white);
}
.footer-widget.footer2-widget ul li a:hover {
  color: var(--clr-common-white);
}
.footer-widget.footer2-widget p {
  color: #959595;
}
.footer-widget .social-wrapper{margin-top: 10px;}
.footer-widget .social-wrapper p{color: rgba(255,255,255,.7);}
.footer-widget .social__links ul li a{color: rgba(255,255,255,.7);}
.social__links.social-border ul {
  gap: 10px;
}
.social__links.social-border ul li a {
  width: 35px;
  height: 35px;
  border: 1px solid #5b5b5b;
  text-align: center;
  line-height: 33px;
  color: var(--clr-common-white);
  border-radius: 50%;
  font-size: 15px;
}
.social__links.social-border ul li a:hover {
  padding-left: 0;
  background: var(--clr-common-white);
  border-color: var(--clr-common-white);
  color: var(--clr-common-heading);
}
.social__links.social-border ul li a::before {
  display: none;
}

.subscribe-form.subscribe-form-footer2 input {
  background: #2c2c2c;
  border-color: #2c2c2c;
  color: var(--clr-common-white);
}
.subscribe-form.subscribe-form-footer2 button {
  background: var(--clr-common-white);
  color: var(--clr-common-heading);
}
.subscribe-form.subscribe-form-footer2 button:hover {
  border-color: var(--clr-common-white);
  background: var(--clr-common-heading);
  color: var(--clr-common-white);
}
.subscribe-area .subscribe-form{max-width: 380px;margin: 0 auto}
.subscribe-area .subscribe-form input{border-color: #000}
.subscribe-area .subscribe-form button{width: 100px; right: 0; background: #000; color: #fff; border-bottom-right-radius: 5px; border-top-right-radius: 5px;}
.footer2-widget2 {
  padding-left: 40px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer2-widget2 {
    padding-left: 0;
    margin-right: -20px;
  }
}

.footer2-widget3 {
  padding-left: 40px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer2-widget3 {
    padding-left: 0;
    margin-right: -20px;
  }
}

.footer2-widget4 {
  padding-left: 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer2-widget4 {
    padding-left: 0;
    margin-right: -20px;
  }
}
.rating{overflow:hidden;display:inline-block;position:relative;font-size:14px;color:#ffca00}
.rating-star{padding:0 2px;margin:0;cursor:pointer;display:block;float:right}
.rating-star:after{position:relative;font-family:"Font Awesome 5 Pro";content:'\f005'}
@media (max-width:1200px){.rating-star{padding:0 1px}
}
.rating-star.checked:after,.rating-star.checked~.rating-star:after{content:'\f005';font-weight: 900}
.rating.vote .rating:hover .rating-star:after{content:'\f005'}
.rating.vote .rating-star:hover:after,.rating.vote .rating-star:hover~.rating-star:after{font-weight: 900}

.show-rating{overflow:hidden;display:inline-block;position:relative;font-size:14px;color:#ffca00}
.show-rating-star{padding:0 2px;margin:0;cursor:pointer;display:block;float:right}
.show-rating-star:after{position:relative;font-family:"Font Awesome 5 Pro";content:'\f005'}
@media (max-width:1200px){.show-rating-star{padding:0 1px}
}
.show-rating-star.checked:after,.show-rating-star.checked~.show-rating-star:after{content:'\f005';font-weight: 900}
.show-rating.vote .show-rating:hover .show-rating-star:after{content:'\f005'}
.show-rating.vote .show-rating-star:hover:after,.show-rating.vote .show-rating-star:hover~.show-rating-star:after{font-weight: 900}

.hidden{display: none}

.product-side-info .star{overflow: hidden;}
.product-side-info .star .item{float: left; margin-right: 10px;}
.product-side-info .star .review{color: #007FDC}
.indexabout{background: linear-gradient(90deg, #0080DD 0%, #4BB49C 50%, #FFB32F 100%);padding: 40px;}
.indexabout h3{color: #fff; font-weight: 400; border-bottom: 1px solid rgba(255, 255, 255, 0.3); padding-bottom: 10px;}
.indexabout .abouttxt p{color: #fff; font-size: 16px; line-height: 1.5;letter-spacing: 1px; font-weight: 200}
.indexabout .border-btn{border-color: #fff; color: #fff;margin: 0 auto; width: 150px; display: block; font-size: 17px; font-weight: normal;}
.indexabout .border-btn:hover{border-color:#007fdc;}
.indexnews .rc__thumb{height: 130px;width: 185px;}
.indexnews .rc__thumb img{width: 100%; height: auto;}
.indexnews .rc__content {flex: 1}
.indexnews .sidebar__widget-head a{color: #333; text-decoration: underline;}
.indexnews .rc__post:not(:last-child){margin-bottom: 20px;}
.indexyoushi .youshiitem{text-align: center;}
.indexyoushi h3{font-size: 32px;}
.indexyoushi .youshiitem .title{font-size: 25px;letter-spacing: 2.5%; margin-top: 20px; margin-bottom: 10px; padding-bottom: 20px;font-weight: bold;color: #0080DD;border-bottom: 1px solid rgba(0, 0, 0, 0.3);}
.indexyoushi .youshiitem:nth-child(3) .title{color: #4BB49C}
.indexyoushi .youshiitem:nth-child(4) .title{color: #FFB32F}
.indexyoushi .youshiitem .title span{font-size: 45px;letter-spacing: 2.5%}
.indexyoushi .youshiitem p{color: #333}
.featured h3{font-size: 32px;}
.indexsocial .social__links{max-width: 600px;margin: 0 auto;}
.indexsocial .social__links ul li{flex: 1}

.cart_tips{background: linear-gradient(90deg, #007FDC 0%, #4BB39C 50%, #FFB32F 100%);padding: 20px;color: #fff;}
.whyus ul{padding: 20px 0;}
.whyus ul li{color: #000; line-height: 50px;margin-bottom: 40px;}
.whyus ul li i{ float: left; margin-right: 10px; font-size: 28px;}
.whyus ul li svg{float: left; margin-right: 10px;}
.whyus ul li p{color: #000}
.brand-area .page-title{color: #fff; border-bottom: 1px solid rgba(255,255,255,.2)}
.brand-area .page-title i{font-size: 6px;}
.brand-area .brand-content p {
  color: #fff;
  text-indent: 2em;
  font-size: 25px;
  font-weight: 300;
  margin-bottom: 1.5rem;
  line-height: 1.5
}
.brand-area .brand-content strong{font-weight: 700}
.brand-area .brand img{max-width: 100%}


.gbook-items-area .btn-menu{margin-bottom:35px; border-bottom: 1px solid rgba(255,255,255,.2); padding-bottom: 10px;}
.gbook-items-area .btn-menu a{background:0 0;font-weight:600;padding:0 10px;color:#fff;outline:0;font-size:24px; border-right: 1px solid #eee}
.gbook-items-area .btn-menu a:last-child{border-right: none}
.gbook-items-area .btn-menu a.active{color:#0071CE;}
.gbook-items-area .gbookbox h3,.gbook-items-area .gbookbox p{color: #fff; font-size: 20px; font-weight: 200; line-height: 1.6}
.gbook-items-area .gbookbox h3 em{margin-right: 15px; font-size: 22px;color: #fff;}
.gbook-items-area .gbookbox .social{text-align: center;}
.gbook-items-area .gbookbox .social li{display: inline-block; margin-left: 30px; margin-right: 30px;position: relative;}
.gbook-items-area .gbookbox .social li a.on:after{content: ""; width: 6px; height: 6px;display: block; background: #fff; border-radius: 50%;position: absolute; left: 0;right: 0; margin: auto;top: 69px;}
.gbook-items-area .cooperation-form{border-top: 1px solid rgba(255,255,255,.2); padding-top: 25px;margin-top: 25px}
.gbook-items-area .cooperation-form input{background: none; color: #fff; border-color: #fff;border-radius: 50px; font-weight: 200; padding-left: 30px;padding-right: 20px;}
.gbook-items-area .cooperation-form input::-webkit-input-placeholder {color: #fff;}
.gbook-items-area .cooperation-form input:-moz-placeholder {color: #fff;}
.gbook-items-area .cooperation-form input::-moz-placeholder {color: #fff;}
.gbook-items-area .cooperation-form input:-ms-input-placeholder {color: #fff;} 
.gbook-items-area .cooperation-form select{background: none;border-radius: 50px; border-color: #fff; color: #fff; min-height: 50px;padding-left: 30px;font-weight: 200;}
.gbook-items-area .cooperation-form select option{background: #fff; color: #000}
.gbook-items-area .cooperation-form textarea{background: none; border-radius: 30px;border-color: #fff; color: #fff;padding-left: 30px;font-weight: 200;}
.gbook-items-area .cooperation-form textarea::-webkit-input-placeholder {color: #fff;}
.gbook-items-area .cooperation-form textarea:-moz-placeholder {color: #fff;}
.gbook-items-area .cooperation-form textarea::-moz-placeholder {color: #fff;}
.gbook-items-area .cooperation-form textarea:-ms-input-placeholder {color: #fff;} 
.gbook-items-area .cooperation-form .submit {margin-top: 50px; } 
.gbook-items-area .cooperation-form .submit button{padding: 6px 63px;background: rgba(242,242,242,.5); border: none; color: #fff;}
.gbook-items-area .cooperation-form .submit:hover button{background: #fff;color: #0071CE;box-shadow: 0 .5rem 1rem rgba(0,0,0,.2)}
.gbook-items-area .currentadd{width:100%}
.gbook-items-area .currentadd h2{font-size:1rem; color:#fff;padding-left:30px;font-weight:300; cursor:pointer}
.gbook-items-area .form-group{margin-bottom: 1rem}
.gbook-items-area .nice-select{display: block; width: 100%; background: none; border: 1px solid #fff; border-radius: 50px; padding: 0 15px 0 30px; float: none}
.gbook-items-area .nice-select span{color: #fff; display: block; overflow: hidden;}
.gbook-items-area .product-image{border-radius: 10px;}
.gbook-items-area .product-name{font-size: 14px; color: #fff}
.dynamic-checkout__title {
  color: #737373;
  font-size: 1em;
  font-weight: 500;
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  text-align: center;
}
.dynamic-checkout__title::before, .dynamic-checkout__title::after {
  content: '';
  border: 1px #e6e6e6 solid;
  border-bottom: 0;
  height: 0.5em;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 2em;
  -ms-flex: 1 0 2em;
  flex: 1 0 2em;
}
.dynamic-checkout__title::before {
  border-right: 0;
  border-top-left-radius: 5px;
  margin-right: 1em;
}
.dynamic-checkout__title::after {
  border-left: 0;
  border-top-right-radius: 5px;
  margin-left: 1em;
}
.dynamic-checkout__content {
  border: 1px #e6e6e6 solid;
  border-top: 0;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  padding: 0.9285714286em 1.4285714286em 1.4285714286em;
}
.dynamic-checkout__buttons {
  display: block;
}
.paypal-button-label-container img{max-height: 22px;}
.cx-paypal form{display: inline-block;}
.alternative-payment-separator {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 0.8571428571em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
  color: #737373;
}
.alternative-payment-separator::after, .alternative-payment-separator::before {
  content: '';
  display: inline-block;
  height: 1px;
  background-color: #e6e6e6;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.alternative-payment-separator {
  font-size: 0.8571428571em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
  color: #737373;
}
.alternative-payment-separator__content {
  display: inline-block;
  padding: 0 1em; color: #000
}

.shop-main-area{background: #f2f2f2}

.proslide {
  position: sticky;
  top: 100px;
  align-self: flex-start;
  z-index: 9;
}
.proslide img{max-width: 100%}
.pd-small-img-style.pd-small-img-style-modify {
  margin: 20px 0 0;
}
.product-details-small-img img{cursor: pointer;}
.shippings ul{display: flex;}
.shippings ul li{flex:1; text-align: center;padding: 0 5px}
.shippings ul li i{display: block; color: #000; font-size: 30px}
.shippings ul li p{color: #000}
.product_info-faq-area .video {
  margin-top: 10px;
  width: 100%;
  position: relative;
}
.product_info-faq-area .video video {
  width: 100%;
  cursor: pointer;
}
.btn-guide{border-bottom: 1px solid #ccc}
.btn-guide a{border:1px solid #000; color: #000;padding: 5px 50px; border-radius: 30px; display: inline-block;}
.btn-guide a:not(:last-child){margin-right: 20px;}
.btn-guide a.active,.btn-guide a:hover{background: #00AEEF; border-color: #00AEEF; color: #fff}
.guide-list .product-name{font-size: 16px;}
.guide-list .product-action-bottom .add-cart-btn{font-size: 14px;}
.guide-wrapper .search{float: right;position: relative; }
.guide-wrapper .search input{border-radius: 30px;}
.guide-wrapper .search button[type="submit"] {
  background: transparent;
  border: medium none;
  color: rgba(0,0,0,.2);
  font-weight: 500;
  letter-spacing: 1px;
  min-height: 36px;
  width: 36px;
  position: absolute;
  right: 2px;
  text-transform: uppercase;
  top: 0;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  border-radius: inherit;
  font-size: 18px;
  border-left: 1px solid rgba(0,0,0,.2);
}
.guide-wrapper .video{text-align: center; position: relative;}
.guide-wrapper .video .img{padding: 20px; background: #fff;}
.guide-wrapper .video img{overflow: hidden;}
.guide-wrapper .video i.fa-play{position: absolute;left: 0; right: 0; top: 0;bottom: 0; margin:auto; width: 55px; height: 55px; background: #d2d2d2; border-radius: 50%; display: block; line-height: 55px; color: #fff; text-align: center;transform: translateY(0px);transition: all 0.35s ease-in-out;}
.guide-wrapper .video:hover i.fa-play{transform: translateY(-10px);background: #00AEEF}
.guide-wrapper .video h3{line-height: 40px;margin-top: 20px;font-size: 20px;}
.guide-wrapper .video h3 i{color: rgba(0,0,0,.5);}

.pagination li{display:inline-block;margin-top:7px}
.pagination{display:block;margin-top:30px; text-align: center;}
.pagination li a,.pagination li span{display:inline-block;padding:2px 12px;border-radius:5px;margin:0 2px;color:#0081cc;font-weight:500}
.pagination li.active span{background:#0081cc;border-color:#0081cc; color: #fff}

.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 17px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 3px;
  -webkit-transition: border 0.2s ease-in-out;
  -o-transition: border 0.2s ease-in-out;
  transition: border 0.2s ease-in-out;
}
.img-responsive, .thumbnail > img, .thumbnail a > img {
  display: block;
  max-width: 100%;
  height: auto;
}
.thumbnail > img, .thumbnail a > img {
  margin-left: auto;
  margin-right: auto;
}
.plupload-preview .btn {
  padding: 1px 5px;
  font-size: 11px;
  line-height: 1.5;
  border-radius: 2px;
}
.plupload-preview .col-xs-3{width: 25%; padding-left: 5px; padding-right: 5px;}
.plupload-preview,
.faupload-preview {
  padding: 0 10px;
  margin-bottom: 0;
}
.plupload-preview li,
.faupload-preview li {
  margin-top: 5px;
  margin-bottom: 10px;
}
.faupload-preview li.col-xs-3{width: 25%; padding-left: 5px; padding-right: 5px;}
.faupload-preview li.col-xs-3 a{font-size: 12px; padding: 1px}
.plupload-preview .thumbnail,
.faupload-preview .thumbnail {
  margin-bottom: 10px;
}
.plupload-preview a,
.faupload-preview a {
  display: block;
}
.plupload-preview a:first-child,
.faupload-preview a:first-child {
  height: 90px;
}
.plupload-preview a img,
.faupload-preview a img {
  height: 80px;
  object-fit: cover;
}
.pay-orderinfo {padding: 10px 20px; border:1px solid var(--clr-common-border); border-radius: 5px;}
.pay-orderinfo li{line-height: 40px;}
.pay-orderinfo li:not(:first-child){border-top: 1px solid var(--clr-common-border)}
.pay-orderinfo li a{color: #1e77bd}
.pay-orderinfo li span:first-child{margin-right: 30px;}
.pay-shipping {padding: 10px 20px; border:1px solid var(--clr-common-border); border-radius: 5px;}
.pay-shipping span{float: right; font-weight: bold;}

.product__details-des{max-width: 970px; margin: 0 auto}
.indexad img{border-radius: 30px;}
.indexad img,.product__details-des img{max-width: 100%}
.chatbtn {position: fixed;bottom: 0; right: 12px;z-index: 9;}
.chatbtn a{border-top-right-radius: 8px; border-top-left-radius: 8px;background: #007FDC; color: #fff; display: block; padding: 10px 20px; font-weight: 400}
.chatbtn a:hover{background: #00aeef; color: #fff}
.chatbtn a i{margin-right: 10px;}

.prodcut_comment .reviews{border-radius: 20px; text-align: center;}
.prodcut_comment .reviews .score{max-width: 460px; margin: 0 auto; text-align: center;}
.prodcut_comment .reviews .score .b{font-size: 48px;  line-height: 66px;font-weight: 700; color: #007FDC}
.prodcut_comment .reviews .score .star .rating{font-size: 20px;}
.prodcut_comment .reviews .score .jindu{padding-right: 50px; border-right: 1px solid rgba(0, 0, 0, 0.2);}
.prodcut_comment .reviews .score .jindu li{display: block; width: 100%; clear: both;line-height: 15px; padding-top: 5px; padding-bottom: 5px}
.prodcut_comment .reviews .score .jindu .l{margin-right: 20px;}
.prodcut_comment .reviews .score .jindu .l span{}
.prodcut_comment .reviews .score .jindu .l>span{float: left;}
.prodcut_comment .reviews .score .jindu .l .num{margin-right: 8px;}
.prodcut_comment .reviews .score .jindu .progress{border-radius: 50px;background: #d9d9d9; margin-left:20px;}
.prodcut_comment .reviews .score .jindu .progress-bar{border-radius: 50px;background: #6B6D76}
.prodcut_comment .reviews .btns{margin-top: 20px;padding-bottom: 30px; border-bottom: 1px solid rgba(0, 0, 0, 0.15); text-align: right;}
.prodcut_comment .reviews .btns a{ padding: 6px 30px; border: 1px solid #7f7f7f; text-transform: capitalize;}
.prodcut_comment .reviews .btns a.active{background: #007FDC;color: #00AEEF}
.prodcut_comment .reviews .btns a i{color: #3086C8}
.prodcut_comment .reviews .search{text-align: left; padding-bottom: 20px; border-bottom: 1px solid rgba(0, 0, 0, 0.15)}
.prodcut_comment .reviews .search h4{border-bottom: 2px solid #fff;float: left; font-size: 16px;}
.prodcut_comment .reviews .search form{clear: both;margin-top: 20px;}
.prodcut_comment .reviews .search form input{border:1px solid rgba(0, 0, 0, 0.5); border-radius: 4px; min-height: 40px;}
.prodcut_comment .reviews .search .input-group-addon{position: absolute;right: 22px; top: 8px;z-index: 9}
.prodcut_comment .reviews .search .input-group-addon button{background: none; border:none;}
.prodcut_comment .reviews .search .input-group-addon i{ }
.prodcut_comment .reviews .search .nice-select{border-radius: 4px; border: 1px solid rgba(0, 0, 0, 0.5); line-height: 40px; width: 100%;padding: 0 .75rem}
.prodcut_comment .reviews .search .nice-select span{color: #00000080}
.prodcut_comment .reviews .search .nice-select .list{width: 100%}
.prodcut_comment .reviews .box{text-align: left;padding-top: 20px; overflow: hidden;}
.prodcut_comment .reviews .box .comments-form h3{font-weight: 500; }
.prodcut_comment .reviews .box .comments-form label{}
.prodcut_comment .reviews .box .comments-form .submit button{border: 1px solid #fff; border-radius: 50px;  padding: 6px 30px;}
.relatepro{position: relative;}

.checkbox-form .payment-method{margin:20px 0 0}
.checkbox-form .payment-method .sin-payment{border-top: 1px solid #d9d9d9; padding-top: 20px;}
.checkbox-form .payment-method .sin-payment > input{width:auto;display:inline-block;float:left;height:auto;margin-top:5px; margin-left: 20px;}
.checkbox-form .payment-method .sin-payment label{font-size:15px;margin:0 0 20px 40px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;}
@media only screen and (max-width:767px){.checkbox-form .payment-method .sin-payment label{display:block}
}
.checkbox-form .payment-method .sin-payment label img{height: 24px; display:inline-block;margin:0 5px}
.checkbox-form .payment-method .sin-payment label a{text-decoration:underline}
.checkbox-form .payment-method .sin-payment .payment-box{margin:6px 0 0;display:none; background: #f6f6f6; padding: 2em}
.checkbox-form .payment-method .sin-payment .payment-box p{font-size:14px;margin:0}
.checkbox-form .payment-method .sin-payment .paypal-box img{margin-bottom: 1.1em}
.checkbox-form .payment-method .sin-payment .oc-box img{margin-bottom: 1.1em}

.case-studies-area .single-product{box-shadow: none;}

.input-outline-x{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;position:relative;margin-bottom:15px;width:100%}
.select-outline-x{position:relative}
.input-control{margin:0;font-size:16px;line-height:1.5;outline:0}
.input-outline,.textarea-outline{padding:10px 16px;border:1px solid var(--clr-common-border);border-radius:4px;transition:border-color .25s;width:100%}
.input-outline:focus,.textarea-outline:focus{border-color:#000}
.input-control:placeholder-shown::placeholder{color:transparent}
.input-label{position:absolute;font-size:16px;line-height:1.5;left:14px;top:11px;color:#575757;padding:0 2px;transform-origin:0 0;pointer-events:none;transition:all .25s}
.form-group .input-label,.input-control:focus~.input-label,.input-control:not(:placeholder-shown)~.input-label{color:#575757;transform:scale(.8) translate(-2px,-26px)}
.form-group .input-label,.input-outline~.input-label,.textarea-outline~.input-label{background-color:#fff}
@media (max-width:750px){
  .pt-95{padding-top: 30px;}
  .pt-120{padding-top: 50px;}
  .pb-90{padding-bottom: 30px;}
  h2{font-size: 22px;}
  .breadcrumbs-area{display: none}
  .products-wrapper .single-product{margin-bottom: 20px;}
  .product__details-des div{min-width: inherit!important;max-width: 100%}
  .testimonial-area img{width: 100%}
  .indexsocial .social__links ul li{width: 16.66666%}
  .indexsocial .social__links ul li img{max-width: 100%}
  .features-area4 .features-single{padding: 10px 0}
  .shippings ul li p{font-size: 12px;}
  .product-details-small-img-wrap{display: none}
  .proslide{position: relative; top: 0}
  .product-quantity-cart .cart-input,.product-quantity-cart .cart-minus,.product-quantity-form .cart-plus{height: 30px;}
  .product-side-info .border-btn{height: 30px; line-height: 28px;}
  .product-side-info .fill-btn{height: 30px; line-height: 28px;}
  .choose-right .accordion-button{padding: 15px; font-weight: 400; text-align: left; font-size: 14px;}
  .indexyoushi h3{font-size: 20px;}
  .indexyoushi .youshiitem .icon img{max-width: 60px;}
  .footershop .item{width: 50%; padding: 0 10px; margin-top: 10px;}
  .footershop .item a{font-size: 13px;}
  .footershop .item img{width: 24px;}
}

/* aboutus*/
.pagebanner{width: 100%;position: relative;}
.pagebanner img{width: 100%;}
.pagenav ul{overflow: hidden;padding: 40px 0}
.pagenav ul li{font-size: 1.2rem; font-weight: 500; border: 1px solid #000; border-radius: 6px; width: calc(25% - 17px); float: left;text-align: center;margin-left: 20px;}
.pagenav ul li:first-child{margin-left: 0;}
.pagenav ul li a{display: block;line-height: 58px;}
.pagenav ul li:hover {border-color: #f2a116}
.pagenav ul li:hover a{color: #f2a116}
.join-banner{position: absolute;left: 0;right: 0;bottom: 0;top: 0; margin: auto;}
.join-tit{margin-top: 18%; padding-left: 100px;}
.join-tit h3{font-size: 32px; font-weight: 600;margin-bottom: 30px;}
.join-tit p{font-size: 26px;max-width: 520px; line-height: 1.3;}
.join-tit a.btn{background: linear-gradient(90deg, #0080DD 0%, #4BB49C 50.7%, #FFB32F 98.73%);border-radius: 4px; width: 205px; padding:10px 0; border:none; color: #fff; font-size: 16px; margin-top: 30px;}
.js-brand img{width: 100%}
.js-brand{position: relative;}
.js-brand .title{position: absolute; left: 40px; top: 60px; font-size: 32px; font-weight: 600; color: #fff; line-height: 40px;}
.js-brand ul{position: absolute;left: 40px;top: 60px;}
.js-brand ul li{width: 500px;}
.js-brand ul li:nth-child(1){margin-left: 490px;}
.js-brand ul li:nth-child(2){margin-left: 380px;}
.js-brand ul li:nth-child(3){margin-left: 270px;}
.js-brand ul li:nth-child(4){margin-left: 180px;}
.js-brand ul li:nth-child(5){margin-left: 90px;}
.js-brand ul li h4{color: #fff; font-size: 22px; font-weight: 600; border-bottom: 1px solid rgba(255, 255, 255, .8);margin: 0}
.js-brand ul li p{color: #fff;margin: 0}
.ys-bg-g{background: #efefef; height: 272px; text-align: center;padding: 60px 66px;}
.aboutys .yslist img{max-width: 100%}
.liuchenglist > div{position: relative;}
.liuchenglist > div:after{content: ""; background: url(../img/lc-jt.png) center no-repeat; width: 40px; height: 25px; display: block; position: absolute; right: 0; top: 30px;}
.liuchenglist > div:last-child:after{display: none}
.liuchenglist .icon{text-align: center;}
.liuchenglist .icon img{display: block; margin:0 auto}
.liuchenglist .icon span{color: #999; margin-top: 10px;}
.liuchenglist .icon h3{font-size: 18px; font-weight: 500; margin-top: 10px;}
.liuchenglist .icon p{margin-top: 10px;}
.js-pro{position: relative;}
.js-pro h4{position: absolute; left: 20px; top: 20px; font-weight: 500; font-size: 18px;}
.js-pro span{position: absolute; bottom: 25px; left: 0; right: 0;margin:auto; padding:10px 20px; border:1px solid #fff; color:#fff; border-radius:10px; width:114px; }
.pagecontent h3{font-size: 32px;}
.pagecontent p{font-size: 18px;line-height: 24px; text-align: center;color: #000}
.aboutys .title h3{font-size: 32px}
.aboutys ul li{margin-bottom: 10px;}
.aboutslogan h3{font-size: 32px;}
.aboutslogan p{font-size: 18px;line-height: 24px; text-align: center;color: #000}
.aboutslogan a.btn{padding: 10px 20px;border:none; color: #fff; background: linear-gradient(90deg, #0080DD 0%, #4BB49C 50.7%, #FFB32F 98.73%);border-radius: 4px; width: 200px;margin:0 auto}
@media (max-width:991px){
  .pagenav ul{padding: 20px 0}
  .pagenav ul li{width: calc(50% - 10px); margin-bottom: 20px; font-size: 1rem;}
  .pagenav ul li:nth-child(3){margin-left: 0;}
  .pagenav ul li:nth-child(2n){margin-left: 20px;}
  .pagenav ul li a{line-height: 40px;}
}
   .shop-catelist{width: 100%; height: 130px;padding: 30px 0}
   .shop-catelist .catlist{display: flex;justify-content:space-between;text-align: center;}
   .shop-catelist .catlist img{width: 50px;}
   .shop-catelist .catlist .catname{margin-top: 8px; font-size: 14px}
   .shop-catelist .catlist .catname.cur{font-weight: bold;}
.invoicebg{height: 45px; width: 100%; background: linear-gradient(90deg, #0080DD 0%, #4BB49C 50%, #FFB32F 100%);}
.gglist{margin: 0}
.gglist dd{border: 1px solid #E0E0E0; display: inline-block;padding: 6px; border-radius: 3px}
.gglist dd.cur{border-color: #E47911;}
.gglist dd .img{display: inline-block;}
.gglist dd .img img{width: 36px;}
.gglist dd .price{display: inline-block; font-size: 12px; font-weight: 500;margin-left: 6px}
.support-logo ul{display: flex; justify-content: center;}
.support-logo ul li b{font-size: 30px; padding: 0 20px}
/*# sourceMappingURL=style.css.map */
