/*===================================================
    Table of Contets
=====================================================

    01 Navigation
    02 Hero Section
    03 About Section
    04 Service Section
    05 Service Details
    06 Skill Section
    07 Project Section
    08 Project Details
    09 Team Section
    10 Counter Section
    11 Testimonial Section
    12 CTA Section
    13 Sponsor Section
    14 FAQ Section
    15 Contact Section
    16 Footer Section
    17 Step Section
    18 Testimonial Section
    19 Counter Section
    20 Team Section
    21 Team Details
    22 Pricing Section
    23 Pricing Table Section
    24 FAQ Section
    25 CTA Section
    26 Contact Section
    27 Footer Section
    
=====================================================
    @ThemeEaster
====================================================*/

/*===================================================
    01 Navigation
====================================================*/

.main-header {
  background-color: #fff;
  position: relative;
  z-index: 2;
  overflow-x: clip;
  overflow-y: visible;
}

.main-header-wapper {
  display: grid;
  grid-template-columns: 200px auto;
  align-items: center;
}

.site-logo img {
  width: 100%;
}

.sticky-header {
  display: none;
}

.main-header-info {
  position: relative;
}

.main-header-info:before {
  background-color: #fff;
  clip-path: polygon(0 0, 0% 0%, 100% 100%, 0% 100%);
  width: 50px;
  height: 100%;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
}

.main-header-info:after {
  background-color: var(--primary-color);
  transform: skewX(23deg);
  width: 8px;
  height: 100%;
  content: "";
  position: absolute;
  left: 7px;
  top: 0;
}

/* Top Header */
.top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding-left: 80px;
}

.top-header:before {
  background-color: var(--primary-color);
  content: "";
  width: 6000px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.top-left {
  display: flex;
  align-items: center;
  column-gap: 20px;
}

.top-header-nav li a,
.top-left li a,
.top-left li {
  font-family: var(--primary-font);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  line-height: 1;
}

.top-left li i {
  font-size: 20px;
  color: #fff;
  margin-right: 5px;
}


.top-right {
  display: inline-flex;
  align-items: center;
}


.top-header-nav {
  min-height: 40px;
  display: flex;
  align-items: center;
  margin-right: 40px;
}

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

.top-header-nav li:not(:first-of-type) {
  margin-left: 20px;
}

.top-header-nav li:not(:last-of-type):before {
  background-color: #e39c20;
  width: 2px;
  height: 15px;
  content: "";
  position: absolute;
  right: -13px;
  top: 50%;
  transform: translateY(-50%);
}

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

.header-social-share li a {
  font-size: 16px;
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #fff;
}

.header-social-share li:last-child a {
  border-right: 1px solid #fff;
}

.site-logo {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

/* Navigation Menu */
.nav-menu-wrapper .site-logo {
  display: none;
}

.menu-right-item {
  display: flex;
  align-items: center;
  column-gap: 15px;
  height: 100%;
}

.menu-right-item>div {
  height: 100%;
  display: flex;
  align-items: center;
}

.menu-right-item .menu-action-btn {
  color: var(--heading-color);
  cursor: pointer;
  font-size: 25px;
  position: relative;
}

@media (max-width: 767px) {
  .menu-action-btn.cart {
    display: none;
  }
}

.menu-action-btn.cart i {
  font-size: 28px;
}

.menu-action-btn.cart span {
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  right: -5px;
  top: -8px;
  font-size: 14px;
  font-weight: 500;
}

.menu-right-item .default-btn {
  margin-left: 10px;
  padding: 0;
}

@media (max-width: 1170px) {
  .menu-right-item .default-btn {
    padding: 20px 25px;
  }
}


/* Menu Button */
.menu-right-item .menu-btn {
  background-color: var(--heading-color);
  color: var(--white-color);
  height: 100%;
  padding: 0 30px;
  display: flex;
  align-items: center;
}

.menu-right-item .menu-btn:hover {
  background-color: var(--bg-dark);
}

/* Burger Menu */
.menu-right-item .mobile-menu-icon {
  display: none;
}

.burger-menu {
  width: 20px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  -webkit-transition: transform 330ms ease-out;
  -moz-transition: transform 330ms ease-out;
  -o-transition: transform 330ms ease-out;
  transition: transform 330ms ease-out;
}

.burger-menu.menu-open {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.line-menu {
  background-color: var(--grey-color);
  border-radius: 0;
  width: 100%;
  height: 2px;
}

.line-menu.line-half {
  width: 50%;
}

.line-menu.first-line {
  transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
  transform-origin: right;
}

.menu-open .line-menu.first-line {
  -webkit-transform: rotate(-90deg) translateX(3px);
  -moz-transform: rotate(-90deg) translateX(3px);
  -o-transform: rotate(-90deg) translateX(3px);
  transform: rotate(-90deg) translateX(3px);
}

.line-menu.last-line {
  align-self: flex-end;
  transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
  transform-origin: left;
}

.menu-open .line-menu.last-line {
  -webkit-transform: rotate(-90deg) translateX(-3px);
  -moz-transform: rotate(-90deg) translateX(-3px);
  -o-transform: rotate(-90deg) translateX(-3px);
  transform: rotate(-90deg) translateX(-3px);
}

/* Menu Style */
@media (min-width: 993px) {
  .nav-menu-wrapper {
    margin-bottom: -30px;
  }

  .sticky-header .nav-menu-wrapper {
    margin: 0;
  }

  .sticky-header .header-menu-wrap ul {
    padding-left: 0;
  }

  .header-menu-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding-left: 80px;
  }

  .header-menu-wrap:before {
    background-color: #fff;
    width: 6000px;
    height: 100%;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
  }

  .header-menu-wrap ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .header-menu-wrap ul li {
    display: inline-block;
    position: relative;
    padding: 30px 9px;
    margin-right: 0px;
  }

  .header-menu-wrap ul li>a {
    display: block;
    font-family: "Space Grotesk", sans-serif;
    font-size: 16px;
    letter-spacing: -0.2px;
    font-weight: 600;
    text-transform: capitalize;
    color: #000;
    padding: 0;
    margin: 0;
    line-height: 1;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    position: relative;
    z-index: 1;
  }

  .header-menu-wrap li ul {
    background-color: var(--white-color);
    box-shadow: 0px 2px 5px 0px rgb(0 0 0 / 10%);
    border-radius: 0;
    width: 220px;
    padding: 0;
    display: block;
    position: absolute;
    left: -35px;
    top: 70px;
    opacity: 0;
    visibility: hidden;
    z-index: 0;
    -webkit-transform: perspective(300px) rotateX(-18deg);
    transform: perspective(300px) rotateX(-18deg);
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }

  .header-menu-wrap li:hover>ul {
    -webkit-transform: perspective(300px) rotateX(0deg);
    transform: perspective(300px) rotateX(0deg);
    opacity: 1;
    visibility: visible;
    top: 75px;
    z-index: 99;
  }

  .header-menu-wrap li li {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    margin: 0;
    border-bottom: 1px solid #ddd;
    text-align: left;
    position: relative;
    transition: all 0.2s ease-in-out;
  }

  .header-menu-wrap li li:last-child {
    margin: 0;
    border-bottom: 0;
  }

  .header-menu-wrap li li>a {
    font-family: var(--body-font);
    display: block;
    height: auto;
    line-height: inherit;
    color: var(--heading-color);
    font-weight: 500;
    font-size: 16px;
    text-transform: capitalize;
    line-height: 20px;
    letter-spacing: -0.2px;
    width: 100%;
    -webkit-font-smoothing: antialiased;
  }

  .header-menu-wrap li li:before {
    background-color: #f1f4f9;
    content: "";
    width: 0;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transition: width .5s linear;
  }

  .header-menu-wrap li li:hover:before {
    width: 100%;
  }

  .header-menu-wrap li li:after {
    background-color: var(--primary-color);
    width: 3px;
    height: 100%;
    content: "";
    position: absolute;
    left: 0px;
    top: 0;
    visibility: hidden;
    opacity: 0;
    transition: all .2s cubic-bezier(.75, 0, .175, 1);
  }

  .header-menu-wrap li li:hover:after {
    visibility: visible;
    opacity: 1;
  }

  .header-menu-wrap li li>a:hover {
    color: var(--heading-color);
  }

  .header-menu-wrap li ul li ul {
    width: 220px;
    position: absolute;
    left: 100%;
    top: 0;
  }

  .header-menu-wrap li ul {
    display: block !important;
  }

  /* Sticky Header */
  .sticky-header {
    background-color: var(--white-color);
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    display: block;
    transform: translateY(-100%);
    z-index: 99;
  }

  .sticky-header .top-header {
    display: none;
  }

  .sticky-header .main-header-info:after {
    transform: skewX(31.5deg);
  }

  .sticky-header .nav-menu-wrapper .site-logo {
    display: block;
    max-width: 150px;
  }

  .sticky-header.sticky-fixed-top {
    transition: transform 1s ease;
    will-change: transform;
  }

  .sticky-header.sticky-fixed-top {
    transform: translateY(0);
    box-shadow: 0 10px 60px rgb(0 0 0 / 10%);
  }

  .sticky-header.sticky-fixed-top .header-menu-wrap .nav-menu>li {
    padding: 32px 9px;
  }

  .sticky-header.sticky-fixed-top .header-menu-wrap li:hover>ul {
    top: 79px;
  }

  .sticky-fixed-top .menu-right-item .menu-btn {
    height: auto;
    padding: 10px 30px;
  }
}

@media all and (max-width: 1200px) and (min-width: 993px) {
  .main-header-wapper {
    grid-template-columns: 150px 1fr;
  }

  .header-menu-wrap {
    padding-left: 70px;
  }

  .header-menu-wrap ul li {
    margin-right: 0px;
    padding: 30px 6px;
  }

  .header-menu-wrap ul li a {
    font-size: 12px;
  }

}

.mobile-navigation-menu {
  display: none;
}

@media (max-width: 992px) {
  .top-header {
    display: none;
  }

  .header-menu-wrap {
    position: relative;
    padding: 15px 0;
  }

  .header-menu-wrap::before {
    background-color: #fff;
    width: 3000px;
    height: 100%;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
  }

  .main-header-info:after {
    transform: skewX(35deg);
  }

  .header-menu-wrap .nav-menu {
    display: none;
  }

  /* Mobile Menu */
  .navigation-menu {
    display: none;
  }

  .menu-right-item .mobile-menu-icon {
    display: block;
  }

  .burger-menu {
    width: 20px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    -webkit-transition: transform 330ms ease-out;
    -moz-transition: transform 330ms ease-out;
    -o-transition: transform 330ms ease-out;
    transition: transform 330ms ease-out;
  }

  .menu-open .burger-menu {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .line-menu {
    background-color: #666;
    border-radius: 0;
    width: 100%;
    height: 2px;
  }

  .saas-home .line-menu {
    background-color: var(--white-color);
  }

  .line-menu.line-half {
    width: 50%;
  }

  .line-menu.first-line {
    transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
    transform-origin: right;
  }

  .menu-open .line-menu.first-line {
    -webkit-transform: rotate(-90deg) translateX(3px);
    -moz-transform: rotate(-90deg) translateX(3px);
    -o-transform: rotate(-90deg) translateX(3px);
    transform: rotate(-90deg) translateX(3px);
  }

  .line-menu.last-line {
    align-self: flex-end;
    transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
    transform-origin: left;
  }

  .menu-open .line-menu.last-line {
    -webkit-transform: rotate(-90deg) translateX(-3px);
    -moz-transform: rotate(-90deg) translateX(-3px);
    -o-transform: rotate(-90deg) translateX(-3px);
    transform: rotate(-90deg) translateX(-3px);
  }

  #mobile-menu-close {
    position: absolute;
    right: 18px;
    top: 20px;
    width: 60px;
    height: 60px;
    font-size: 40px;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }

  #mobile-menu-close:hover {
    color: var(--primary-color);
  }

  .mobile-navigation-menu {
    background-color: rgba(255, 255, 255, 1);
    border-right: 1px solid #eee;
    position: fixed;
    left: -100%;
    top: 0;
    width: 400px;
    height: 100vh;
    padding: 100px 0 50px;
    box-shadow: var(--shadow-sm);
    display: block;
    visibility: hidden;
    opacity: 0;
    transition: all .3s linear;
    z-index: 1000;
  }

  .open-mobile-menu.mobile-navigation-menu {
    left: 0;
    visibility: visible;
    opacity: 1;
    transition: all .3s linear;
  }

  .mobile-navigation-menu .main-menu {
    display: block;
  }

  .mobile-navigation-menu .dropdown-plus {
    width: 100px;
    height: 49px;
    line-height: 49px;
    position: absolute;
    top: 2px;
    right: 32px;
    cursor: pointer;
    z-index: 1;
  }

  .mobile-navigation-menu .dropdown-plus:before,
  .mobile-navigation-menu .dropdown-plus:after {
    position: absolute;
    content: "";
    top: 21px;
    right: 10px;
    width: 10px;
    height: 2px;
    background-color: var(--bg-dark);
  }

  .mobile-navigation-menu .dropdown-plus:after {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  .mobile-navigation-menu .dropdown-plus.dropdown-open:after {
    display: none;
  }

  .mobile-navigation-menu ul {
    padding-left: 0;
  }

  .mobile-navigation-menu ul li {
    position: relative;
    margin: 0;
    display: block;
    padding: 0;
  }

  .mobile-navigation-menu ul li>a {
    display: block;
    padding: 15px 40px;
    font-family: var(--primary-font);
    color: var(--dark-color);
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
  }

  .mobile-navigation-menu ul li:hover>a,
  .mobile-navigation-menu li li:hover>a {
    color: var(--primary-color);
  }

  .mobile-navigation-menu ul li ul li ul,
  .mobile-navigation-menu ul li ul {
    background-color: transparent;
    width: 100%;
    opacity: 1;
    padding: 0;
    visibility: visible;
    position: inherit;
    display: none;
    top: inherit;
    left: inherit;
    box-shadow: none;
  }

  .mobile-navigation-menu li li {
    padding: 0 20px;
  }

  .mobile-navigation-menu li li {
    padding-left: 10px;
  }

  .mobile-navigation-menu li li:last-child {
    border-bottom: none;
  }

  .mobile-navigation-menu li li>a {
    color: var(--grey-color);
    font-weight: 600;
    font-size: 18px;
    padding: 14px 20px 14px 40px;
  }

  .menu-right-item {
    justify-content: flex-end;
  }
}

@media (max-width: 767px) {
  .main-header-info:before {
    height: calc(100% + 1px);
    left: -1px;
    top: -1px;
  }

  .main-header-info:after {
    transform: skewX(41.5deg);
  }
}

@media (max-width: 600px) {
  .mobile-navigation-menu {
    width: 100%;
  }
}

/* Search Box */
#popup-search-box {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  white-space: nowrap;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 500ms ease all;
  -moz-transition: 500ms ease all;
  transition: 500ms ease all;
  background: #fff;
}

.open-search-box #popup-search-box {
  opacity: 1;
  visibility: visible;
}

#searchbox-overlay {
  height: 100%;
  left: 0;
  opacity: 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  transition: all 0s ease-in-out;
  width: 100%;
  z-index: -1;
}

.open-search-box #searchbox-overlay {
  opacity: 1;
  z-index: 1002;
  cursor: none;
  transition: all 0.6s ease-in-out;
  transition-delay: 0.3s;
}

#popup-search-box .box-inner-wrap {
  background-color: var(--white-color);
  border-bottom: 1px solid #eee;
  padding: 80px 0;
  width: 100%;
  transform: translateY(-100%);
  transition: all ease-in-out 0.3s;
  box-shadow: 0 10px 60px rgb(0 0 0 / 10%);
}

.open-search-box #popup-search-box .box-inner-wrap {
  transform: translateY(0);
}

#popup-search-box .box-inner-wrap form {
  position: relative;
  margin: 0 auto;
}

#popup-search-box .box-inner-wrap input::-webkit-input-placeholder {
  /* Edge */
  color: var(--grey-color);
}

#popup-search-box .box-inner-wrap input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: var(--grey-color);
}

#popup-search-box .box-inner-wrap input::placeholder {
  color: var(--grey-color);
  font-size: 18px;
}

#popup-search-box .box-inner-wrap input {
  background: #fff;
  font-family: "Space Grotesk", sans-serif;
  width: 600px;
  padding: 15px 30px;
  padding-right: 80px;
  border: 1px solid #eee;
  font-size: 18px;
  color: var(--grey-color);
  border-radius: 50px;
}

#popup-search-box .box-inner-wrap input::-webkit-input-placeholder {
  color: #666 !important;
}

#popup-search-box .box-inner-wrap input::-moz-placeholder {
  /* Firefox 18- */
  color: #666 !important;
}

#popup-search-box .box-inner-wrap input::-moz-placeholder {
  /* Firefox 19+ */
  color: #666 !important;
}

#popup-search-box .box-inner-wrap input:-ms-input-placeholder {
  color: #666 !important;
}

#popup-search-box .box-inner-wrap input:focus {
  outline: none;
  border: 1px solid #ff9900;
}

#popup-search-box .box-inner-wrap button {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 100%;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--grey-color);
  font-size: 30px;
  -webkit-transition: 500ms ease all;
  -moz-transition: 500ms ease all;
  transition: 500ms ease all;
}

#popup-search-box .box-inner-wrap button:hover {
  color: var(--primary-color);
}

#popup-search-box .box-inner-wrap button:focus {
  outline: none;
}

.search-close {
  font-size: 30px;
  color: var(--grey-color);
  width: 40px;
  height: 40px;
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.165, 0.85, 0.45, 1);
}

.search-close:hover {
  color: var(--primary-color);
  transform: scale(1.1);
}

@media (max-width: 767px) {
  .top-header {
    display: none;
  }

  #popup-search-box .box-inner-wrap input {
    width: 95%;
  }

  #popup-search-box .box-inner-wrap button {
    right: 10px;
  }
}

@media screen and (max-width: 600px) {
  #popup-search-box .box-inner-wrap form {
    width: 90%;
  }
}

/*===================================================
    02 Hero Section
====================================================*/
.hero-section {
  background-image: url(../img/hero-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-section:before {
  background-image: url(../img/square-pattern.png);
  -webkit-background-size: 20px;
  background-size: 20px;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.8;
}

.hero-img-wrap {
  width: 40%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}

.hero-bg-half {
  background-image: url(../img/hero-bg-half.jpg);
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
  filter: grayscale(100%);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.hero-shape {
  background-color: var(--primary-color);
  width: 150px;
  height: 90%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) skew(-14deg, 0deg);
  position: relative;
}

.hero-shape:before {
  background-image: url(../img/square-pattern.png);
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.hero-men {
  background-image: url(../img/hero-men.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100%;
  width: 500px;
  height: 570px;
  position: absolute;
  left: -110px;
  bottom: 0;
}

.hero-content h4 {
  display: inline-block;
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding-left: 55px;
}

.hero-content h4:before {
  background-color: var(--primary-color);
  width: 50px;
  height: 2px;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.hero-content h1 {
  color: #fff;
  font-size: 62px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 68px;
}

.hero-content h1 span {
  color: var(--primary-color);
}

.hero-content p {
  color: #ddd;
}

@media (max-width: 992px) {
  .hero-section {
    height: 500px;
  }

  .hero-img-wrap {
    display: none;
  }

  .hero-content h1 {
    font-size: 52px;
  }
}

@media (max-width: 767px) {
  .hero-section {
    height: 400px;
  }

  .hero-content h1 {
    font-size: 32px;
    line-height: 42px;
  }
}

/*===================================================
    03 About Section
====================================================*/
.about-section {}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  border-radius: 3px;
}

.about-img-wrap img:nth-child(1) {
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

.about-img-wrap img:nth-child(2) {
  width: 320px;
  position: absolute;
  right: 30px;
  bottom: -140px;
}

/* Img Style 2 */
.about-img-wrap.flip {
  text-align: right;
}

.about-img-wrap.flip img:nth-child(2) {
  right: auto;
  left: 0;
}

.faq-from {
  position: absolute;
  left: 0;
  top: 90px;
  text-align: left;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.faq-from>div {
  background-color: var(--primary-color);
  background-image: url(../img/square-pattern.png);
  padding: 20px 40px;
}

.faq-from h2 {
  font-size: 52px;
  line-height: 1;
  color: #fff;
}

.faq-from h2 span {
  display: block;
  font-size: 15px;
  color: #fff;
  position: relative;
  padding-left: 90px;
}

.faq-from h2 span:before {
  background-color: #fff;
  width: 80px;
  height: 2px;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.experience {
  background-color: var(--white-color);
  background-color: var(--primary-color);
  border-top: 4px solid var(--primary-color);
  border-top: 4px solid var(--heading-color);
  box-shadow: var(--box-shadow);
  padding: 20px;
  border-radius: 3px;
  position: absolute;
  right: 8px;
  top: 8px;
}

.experience h3 {
  color: var(--primary-color);
  color: #fff;
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
}

.experience h3 span {
  font-family: var(--body-font);
  color: var(--grey-color);
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
  display: block;
  margin-top: 5px;
}

/*Experience Text*/
.experience-text {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 20px;
  align-items: center;
  margin: 20px 0;
}

.experience-text h2 {
  background-image: url(../img/text-bg.jpg);
  background-repeat: repeat;
  background-size: contain;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 150px;
  line-height: 1;
  font-weight: 700;
  margin: 0;
}

.experience-text h3 {
  border-left: 1px solid #bbb;
  padding-left: 20px;
  line-height: 26px;
  font-size: 18px;
  margin: 0;
}

.about-features {
  display: flex;
  align-items: center;
  column-gap: 20px;
  margin: 30px 0;
}

.about-features li {
  background-color: var(--bg-grey);
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  column-gap: 20px;
  padding: 30px 20px;
  position: relative;
}

.about-features li:before {
  background-color: var(--primary-color);
  width: 3px;
  height: 70%;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.about-features li .about-icon {
  background-color: var(--primary-color);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.about-features li .about-icon:before {
  background-color: var(--bg-dark);
  content: "";
  width: 120%;
  height: 2px;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 1;
}

.about-features li .about-icon:after {
  background: url(../img/icon-shape.svg);
  background-repeat: no-repeat;
  background-position: bottom;
  content: "";
  width: 100%;
  height: 30px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.about-features li .about-icon i {
  color: #fff;
  font-size: 50px;
}

.about-features li h3 {
  margin-bottom: 5px;
}

.about-features li p {
  margin: 0;
  font-size: 16px;
}

.about-author {
  display: flex;
  align-items: center;
  column-gap: 15px;
}

.about-author img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.about-author h3 {
  margin: 0;
  line-height: 1;
  font-size: 18px;
}

.about-author h3 span {
  font-family: var(--body-font);
  color: var(--grey-color);
  font-size: 16px;
  font-weight: 500;
  display: block;
  margin-top: 10px;
}


@media (max-width: 992px) {
  .about-img-wrap {
    margin-bottom: 40px;
  }

  .about-img-wrap.flip {
    margin-bottom: 0;
  }

  .about-img-wrap img:nth-child(2) {
    right: 0;
    bottom: 0;
  }

  .experience {
    right: 40%;
    top: 58px;
  }
}

@media (max-width: 767px) {
  .about-img-wrap img:nth-child(2) {
    width: 200px;
  }

  .experience {
    right: 0;
    top: 130px;
  }

  .about-features {
    display: grid;
    grid-gap: 20px;

  }

  .about-author {
    display: none;
  }

  .experience-text h2 {
    font-size: 80px;
  }

  .experience-text {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }

  .experience-text h3 {
    padding-left: 0;
    border-left: 0;
  }

  .about-img-wrap.flip {
    margin-top: 40px;
  }
}

/*===================================================
    04 Service Section
====================================================*/
.service-section {
  position: relative;

}

.service-section .bg-half {
  background-image: url(../img/about-sub-banner-img.jpg);
  height: 517px;
  filter: grayscale(50%);
}

.service-section .bg-half::after {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, .7);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}


.service-item {
  box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.09);
  margin-top: 35px;
}

.service-item-inner {
  background-color: #fff;
  border-radius: 3px;
  overflow: hidden;
}

.service-item .service-thumb {
  overflow: hidden;
}

.service-item .service-thumb img {
  transition: all .5s cubic-bezier(.160, .85, .45, 1);
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.service-item:hover .service-thumb img {
  transform: scale(1.02);
}

.service-content {
  position: relative;
  padding: 60px 25px 25px;
  text-align: center;
  /* height: 240px; */
  transition: all .5s cubic-bezier(.160, .85, .45, 1);
}

.service-content:before {
  background-color: var(--primary-color);
  content: "";
  width: 60%;
  height: 2px;
  border-radius: 3px;
  position: absolute;
  left: 50%;
  top: -1px;
  transform: translateX(-50%);
  transition: all .5s cubic-bezier(.160, .85, .45, 1);
}

.service-item:hover .service-content:before {
  width: 80%;
}

.service-icon {
  background-color: #fff;
  box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: -40px;
  transform: translateX(-50%);
}

.service-icon i {
  color: var(--primary-color);
  font-size: 45px;
}

.service-content h3 {
  color: var(--heading-color);
  font-weight: 600;
  line-height: 1.2;
  font-size: 18px;
}

.service-content p {
  margin: 0;
}

.service-content .read-more {
  background-color: var(--primary-color);
  font-family: var(--primary-font);
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  text-transform: capitalize;
  color: #fff;
  padding: 5px 20px;
  border-radius: 1px;
  position: absolute;
  left: 50%;
  bottom: -100%;
  transform: translateX(-50%);
}

.service-content .read-more:hover {
  background-color: var(--bg-dark);
  color: #fff;
}

.service-item:hover .read-more {
  transition-duration: 600ms;
  bottom: 0;
}

.service-item:hover .service-content {
  padding-bottom: 45px;
}

.service-cta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}

.service-cta-inner {
  background-color: var(--bg-grey);
  border: 1px dashed #d5d5d5;
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 30px;
}

.service-cta h4 {
  margin: 0;
}

@media (max-width: 767px) {
  .service-cta {
    margin-top: 30px;
  }

  .service-cta-inner {
    flex-direction: column;
    row-gap: 15px;
    text-align: center;
    padding: 20px;
  }
}


/*===================================================
    05 Service Details
====================================================*/
.service-details {}

.service-details .company-info li:not(:last-of-type) {
  margin-bottom: 15px;
}

.service-details .company-info li a {
  background-color: #fff;
  border: 1px solid #eee;
  padding: 15px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-details .company-info li a div {
  display: flex;
  align-items: center;
}

.service-details .company-info li a div>i {
  font-size: 25px;
  color: var(--primary-color);
  padding-right: 10px;
  margin-right: 10px;
  border-right: 1px solid #ddd;
}

.service-details .company-info li a h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  margin: 0;
  transition: all 0.3s ease;
}

.service-details .company-info li a:hover h3 {
  color: var(--primary-color);
}

.service-details .company-info li a>i {
  background-color: var(--primary-color);
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 2px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-form .contact-form-group .form-control {
  background-color: #fff;
}

.overview-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}

.overview-wrap ul {
  list-style: inside;
}

.overview-wrap h3 {
  font-weight: 700;
  font-size: 22px;
}

.overview-wrap .overview-list li:not(:last-of-type) {
  margin-bottom: 8px;
}

@media (max-width: 767px) {
  .overview-wrap {
    grid-template-columns: 1fr;
  }
}

/*===================================================
    06 Skill Section
====================================================*/
.skill-img-wrap {
  position: relative;
}

.skill-img-wrap .play-btn {
  position: absolute;
  left: 35%;
  top: 35%;
}

.skill-item {
  overflow: hidden;
}

.skill-img {
  width: 100%;
}

.skill-item .progress {
  background-color: var(--light-grey-color);
  height: 8px;
  border-radius: 1px;
  overflow: visible;
}

.skill-item .progress-bar {
  --progress-bar-count: 100%;
  background-color: var(--primary-color);
  width: var(--progress-bar-count);
  line-height: 8px;
  position: relative;
  overflow: visible;
}

.skill-item .progress-bar span {
  background-color: var(--bg-dark);
  color: #fff;
  width: 40px;
  height: 30px;
  display: flex;
  justify-content: center;
  border-radius: 1px;
  clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 75% 75%, 75% 100%, 50% 75%, 0% 75%);
  position: absolute;
  right: 0;
  top: -30px;
  font-size: 14px;
  line-height: 20px;
}

.progress-box {
  padding: 5px;
  border: 1px dashed #d5d5d5;
}

.skill-item h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 5px;
}

.skill-wrap li:not(:last-of-type) {
  margin-bottom: 15px;
}

.progress-bar-anim {
  -webkit-animation-name: progress-bar-anim;
  animation-name: progress-bar-anim;
}

@keyframes progress-bar-anim {
  0% {
    width: 0%;
  }

  100% {
    width: var(--progress-bar-count);
  }
}

@media (max-width: 992px) {
  .skill-img-wrap {
    text-align: center;
    margin-bottom: 40px;
  }
}

/*===================================================
    07 Project Section
====================================================*/
.project-section {
  position: relative;
  z-index: 1;
}

.project-section .swiper-outside {
  position: relative;
}

.project-carousel {
  overflow: hidden;
}

.project-thumb {
  width: 100%;
  height: 190px;
}

.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border: 2px solid;
}

.project-content {
  background-color: #fff;
  padding: 20px 30px;
  margin: 0 10px;
  transform: translateY(-20px);
  box-shadow: 0px 0px 20px 0.5px rgb(0 0 0 / 20%);
}

.project-content .category {
  background-color: var(--primary-color);
  padding: 10px 15px;
  font-family: var(--primary-font);
  color: #fff;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  position: absolute;
  left: 30px;
  top: -20px;
}

.project-content .category:before {
  background-color: #d38b0e;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  content: "";
  width: 10px;
  height: 20px;
  position: absolute;
  left: -10px;
  top: 0;
  z-index: -1;
}

.project-content h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  line-height: 26px;
  margin-top: 15px;
}

/*Running Text*/
.running-text {
  background-color: var(--primary-color);
  background-image: url(../img/square-pattern.png);
  background-repeat: repeat;
  background-size: 20px;
  padding: 30px 0;
  overflow: hidden;
}

.running-text ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 60px;
}

.running-text ul li {
  display: inline-block;
  white-space: nowrap;
  font-size: 24px;
  font-family: var(--primary-font);
  color: var(--heading-color);
  font-weight: 600;
  position: relative;
}

.running-text ul li:before {
  font-family: 'Line Awesome Free';
  font-weight: 900;
  content: "\f2dc";
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
}

.scroller__inner {
  padding-block: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.scroller[data-animated="true"] .scroller__inner {
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-direction="right"] {
  --_animation-direction: reverse;
}

.scroller[data-direction="left"] {
  --_animation-direction: forwards;
}

.scroller[data-speed="fast"] {
  --_animation-duration: 20s;
}

.scroller[data-speed="slow"] {
  --_animation-duration: 60s;
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}

/*===================================================
    08 Project Details
====================================================*/
.project-info {}

.project-details .project-thumb {
  height: 380px;
}

.project-info-list {
  background-color: #ffffff;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -60px;
  position: relative;
  z-index: 1;
  box-shadow: 0px 30px 50px 0px rgba(0, 9, 40, 0.1);
}

.project-info-item {
  padding: 30px;
}

.project-info-item:not(:last-of-type) {
  border-right: 1px solid #ccc;
}

.project-info-item h3 {
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1;
}

.project-info-item p {
  font-weight: 500;
  margin: 0;
}

.project-info-item .default-btn {
  margin-top: 10px;
}

.project-social {
  margin-top: 20px;
}

.project-social li {
  display: inline-block;
}

.project-social li:first-child {
  font-size: 18px;
  font-weight: 600;
  font-family: var(--primary-font);
  color: var(--heading-color);
  display: block;
  margin-bottom: 10px;
  margin-right: 10px;
}

.project-social li a {
  border: 1px solid #ddd;
  width: 40px;
  height: 40px;
  color: var(--grey-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.project-social li a:before {
  background-color: var(--primary-color);
  width: 0;
  height: 40px;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
}

.project-social li:hover a {
  border: 1px solid transparent;
  color: #fff;
}

.project-social li:hover a:before {
  width: 100%;
  visibility: visible;
  left: 0;
  opacity: 1;
  transition: 0.4s;
}

@media(max-width:992px) {
  .project-info-list {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -80px;
  }

  .project-info-list li:nth-child(2),
  .project-info-list li:nth-child(1) {
    border-bottom: 1px solid #ccc;
  }
}

@media(max-width:667px) {
  .project-info-list {
    grid-template-columns: 1fr;
    margin-top: -50px;
  }

  .project-info-list li:not(:last-of-type) {
    border-right: none;
    border-bottom: 1px solid #ccc;
  }
}

/*===================================================
    09 Team Section
====================================================*/
.team-section {
  position: relative;
  z-index: 1;
}

.team-thumb {
  width: 100%;
  height: 330px;
  position: relative;
  overflow: hidden;
}

.team-thumb img {
  width: 100%;
  height: 450px;
  /* object-fit: cover; */
  object-position: center;
  position: absolute;
  left: 0;
  top: 0;
  transition: all .3s linear;
}

.team-item:hover .team-thumb img {
  transform: scale(1.02);
}

.team-social {
  background-color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 40%;
  transform: translateY(-50%) translateX(-100%);
  visibility: hidden;
  opacity: 0;
  transition: all .3s ease;
}

.team-social li a {
  background-color: var(--primary-color);
  color: #fff;
  font-size: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  position: relative;
  z-index: 1;
}

.team-social li a:before {
  background-color: var(--heading-color);
  width: 0;
  height: 100%;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  visibility: hidden;
  opacity: 0;
  transition: all .3s ease;
  z-index: -1;
}

.team-social li a:hover:before {
  width: 100%;
  visibility: visible;
  opacity: 1;
}

.team-social li a:hover {
  color: #fff;
}

.team-social li:not(:last-of-type) a {
  border-bottom: 1px solid #ef9500;
}

.team-item:hover .team-social {
  transform: translateY(-50%) translateX(0);
  visibility: visible;
  opacity: 1;
}

.team-content {
  background-color: #fff;
  box-shadow: 0px 0px 20px 0.5px rgb(0 0 0 / 20%);
  margin-top: -30px;
  padding: 25px 20px;
  margin-right: 20px;
  position: relative;
  z-index: 2;
}

.team-content .position {
  background-color: var(--primary-color);
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
  color: #fff;
  display: inline-block;
  line-height: 1;
  padding: 10px 25px 10px 20px;
  position: absolute;
  left: 0;
  top: -35px;
}

.team-content .position a {
  color: #fff;
}

.team-content i {
  font-size: 18px !important;
}

.team-content h3 {
  font-size: 19px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 5px;
}

.team-content h4 {
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 500;
  color: var(--grey-color);
  margin: 0;
}

/*Team Details*/
.team-details {
  position: relative;
  z-index: 1;
}

.team-details-thumb {
  width: 100%;
  height: 520px;
  border-right: 3px;
  object-fit: cover;
  object-position: top center;
}

/*===================================================
    10 Counter Section
====================================================*/
.counter-wrap {
  padding: 40px;
  position: relative;
}

.counter-wrap:before {
  background-color: #2e3191;
  background-image: url(../img/square-pattern.png);
  background-size: 20px;
  content: "";
  width: 4000px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  /* opacity: .5; */
}

.counter-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  grid-gap: 0;
  position: relative;
}

.counter-item .counter-icon {
  height: 80px;
  font-size: 50px;
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.counter-item .counter-icon:before {
  background-color: #fff;
  width: 50%;
  height: 100%;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: .2;
}

.counter-content h3 {
  color: #fff;
  font-size: 46px;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 5px;
}

.counter-content h4 {
  color: #ddd;
  line-height: 1;
  margin: 0;
  font-size: 24px;
}

.counter-content h4 a {
  color: #fff;
}

/* .counter-area {
    position: relative;
    z-index: 1;
} */

.consultation-area {
  background-color: #fff;
  border-radius: 3px;
  margin-top: 80px;
  overflow: hidden;
}

.counter-area {
  background: #2e3092;
  padding: 20px;
}

.counter-area .bg-half {
  background-color: var(--bg-dark);
  background-image: url(../img/square-pattern.png);
  background-repeat: repeat;
  background-size: 20px;
  height: 500px;
  z-index: -1;
}

.video-wrap {
  background-image: url(../img/video-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.consultation-form {
  padding: 60px 40px;
}

.contact-form-group {
  display: grid;
  grid-gap: 15px;
}

@media (min-width:768px) {
  .contact-form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px;
  }

  .form-field.submit-btn,
  .contact-form-group .form-field.message {
    grid-column-end: span 2;
  }
}

.contact-form-group .form-control {
  background-color: var(--bg-grey);
  height: 50px;
  border-radius: 0;
  border: 1px solid #eee;
  box-shadow: none;
  outline: none;
}

.contact-form-group .message .form-control {
  height: 120px;
}

.ajax-form-msg {
  margin-top: 15px;
}

@media (max-width:992px) {
  .video-wrap {
    height: 350px;
  }
}

/*===================================================
    11 Testimonial Section
====================================================*/
.testimonial-section {
  position: relative;
  z-index: 1;
}

.testimonial-carousel {
  overflow: hidden;
  position: relative;
}

@media (min-width: 993px) {
  .testimonial-carousel {
    margin: -30px;
  }
}

.testimonial-carousel .carousel-pagination {
  position: absolute;
}

.testimonial-item {
  margin: 30px;
  position: relative;
}

.testimonial-item .quote {
  background-color: var(--primary-color);
  color: var(--heading-color);
  font-size: 25px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 50px;
  top: -20px;
}

.testimonial-item p {
  color: var(--heading-color);
  font-size: 19px;
  line-height: 32px;
  font-weight: 500;
  letter-spacing: -0.5px;
  margin-top: 10px;
}

.testi-meta {
  display: grid;
  grid-template-columns: 60px 1fr;
  grid-gap: 15px;
  align-items: center;
  margin-top: 20px;
}

.testi-meta .testi-thumb img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}

.testi-content h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
}

.testi-content h5 {
  font-family: var(--body-font);
  color: var(--grey-color);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
}

/*Testi Thumb*/
.testi-thumb-wrapper {
  width: 420px;
  height: 420px;
  position: relative;
}

.testi-thumb-active {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.testi-thumb-active .testi-thumb-img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  border: 6px solid #fff;
  box-shadow: 0px 0px 20px 0.5px rgb(0 0 0 / 20%);
  transition: all 0.3s linear;
}

.testi-thumb-wrapper .testi-custom-pagination {
  position: absolute;
  width: 100%;
  height: 100%;
  left: auto;
  right: 0;
  top: 0;
  bottom: auto;
}

.testi-thumb-wrapper .testi-custom-pagination>span {
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border: 5px solid #fff;
  box-shadow: 0px 0px 20px 0.5px rgb(0 0 0 / 20%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%) scale(1);
  opacity: 0.8;
  transition: all 0.3s ease-in-out;
}

.testi-thumb-wrapper .testi-custom-pagination>span.swiper-pagination-bullet-active {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

.testi-thumb-wrapper .testi-custom-pagination>span:nth-child(1) {
  top: calc(50% - 100px);
  right: -10px
}

.testi-thumb-wrapper .testi-custom-pagination>span:nth-child(2) {
  /*    top: 90px;*/
}

.testi-thumb-wrapper .testi-custom-pagination>span:nth-child(3) {
  top: calc(50% + 100px);
  right: -10px
}

/*Testimonial Navigation*/
.test-nav-wrap {
  position: absolute;
  left: 50%;
  bottom: -22.5px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}

.test-nav-wrap .swiper-nav {
  background-color: #fff;
  border: 1px solid #ddd;
  color: var(--heading-color);
  font-size: 30px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*Review Carousel*/
.review-section {
  padding-bottom: 60px;
  position: relative;
  z-index: 1;
}

.review-carousel {
  overflow: hidden;
  padding-top: 20px;
  margin-top: -20px;
}

.review-item {
  position: relative;
  padding-left: 50px;
}

.review-thumb {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.review-thumb img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #fff;
  box-shadow: 0px 0px 20px 0.5px rgb(0 0 0 / 20%);
  z-index: 1;
}

.review-content {
  background-color: #fff;
  padding: 30px 30px 30px 60px;
  border-radius: 2px;
  box-shadow: 0px 0px 10px 0.5px rgb(0 0 0 / 10%);
  position: relative;
  z-index: -1;
}

.review-content:before {
  background-color: var(--primary-color);
  content: "";
  width: 4px;
  height: 70%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.review-content .quote {
  background-color: var(--primary-color);
  color: var(--heading-color);
  font-size: 25px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 50px;
  top: -20px;
}

.review-content p {
  font-size: 18px;
  margin-top: 10px;
}

.review-carousel .carousel-pagination {
  margin-top: 30px;
}

/*===================================================
    12 CTA Section
====================================================*/
.cta-wrap {
  padding: 80px 50px;
  position: relative;
  z-index: 1;
}

.cta-wrap:before {
  background-image: url(../img/banner1.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.row.cta-wrap::after {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, .8);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}

.cta-men {
  background-image: url(../img/cta-men.png);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 100%;
  width: 400px;
  height: 550px;
  position: absolute;
  right: 70px;
  bottom: 0;
}

.cta-area {
  background-image: url(../img/cta-background-2.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  width: 100%;
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.cta-area:before {
  background-color: var(--bg-dark);
  background-image: url(../img/square-pattern.png);
  background-size: 20px;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.9;
  z-index: -1;
}

.cta-area .cta-img {
  width: 35%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.cta-area .cta-img img {
  clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  left: 0;
  top: 0;
}

.cta-area .cta-img i {
  background-color: var(--primary-color);
  color: var(--heading-color);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  border-radius: 50%;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.cta-area .section-heading h2 {
  color: #fff;
  font-size: 42px;
}

.cta-area .cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  grid-gap: 20px;
}

/*Call To Action*/
.cta-inner {
  background-image: url(../img/cta-background-2.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  grid-gap: 20px;
  padding: 30px 50px;
  z-index: 1;
}

.cta-inner:before {
  background-color: var(--primary-color);
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.9;
  z-index: -1;
}

.cta-inner .section-heading h3 {
  color: #fff;
}

.cta-inner .section-heading h3:before {
  background-color: #fff;
}

.cta-inner h2 {
  font-size: 36px;
  line-height: 42px;
}

.cta-inner .default-btn {
  background-color: var(--bg-dark);
  color: #fff;
}

.cta-inner .default-btn:hover {
  color: var(--heading-color);
}

.cta-inner .default-btn:before {
  background-color: #fff;
}

@media (max-width: 992px) {
  .cta-men {
    display: none;
  }

  .cta-area .cta-img {
    display: none;
  }
}

@media (max-width: 767px) {
  .cta-wrap {
    padding: 50px 10px;
  }

  .cta-inner,
  .cta-area .cta-box {
    grid-template-columns: 1fr;
  }

  .cta-inner .section-heading h2,
  .cta-area .section-heading h2 {
    font-size: 32px;
  }
}

/*===================================================
    13 Sponsor Section
====================================================*/
.sponsor-section {
  padding: 60px 0;
}

.sponsor-carousel {
  overflow: hidden;
}

.sponsor-carousel .swiper-slide {
  text-align: center;
}

.sponsor-carousel .swiper-slide img {
  opacity: 0.8;
  transition: all 0.3s ease-in-out;
}

.sponsor-carousel .swiper-slide:hover img {
  cursor: pointer;
  opacity: 1;
  transform: translateY(-3px);
}

/*Sponsor Grid*/
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-left: 1px solid #ddd;
  align-items: center;
}

@media (max-width: 600px) {
  .sponsor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.sponsor-item {
  padding: 60px 40px;
  text-align: center;
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 100%;
  justify-content: center;
  border: 1px solid #ddd;
  border-left: 0;
}

.sponsor-item img {
  opacity: 0.8;
  transition: all 0.3s ease-in-out;
}

.sponsor-item:hover img {
  cursor: pointer;
  opacity: 1;
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .sponsor-item {
    padding: 40px 20px;
  }
}

/*===================================================
    14 FAQ Section
====================================================*/
.faq-section {
  position: relative;
  z-index: 1;
}

.faq-section .check-list {
  margin: 30px 0;
}

.accordion-item {
  border: none;
  border: 1px solid #eee;
  overflow: hidden;
}

.accordion-item:not(:first-of-type) {
  margin-top: 10px;
  border-top: 1px solid #eee;
}

.accordion-item,
.accordion-item:first-of-type,
.accordion-item:last-of-type,
.accordion-item:first-of-type .accordion-button {
  border-radius: 0;
  outline: none;
  box-shadow: none;
}

.accordion-button {
  background-color: #fff;
  color: #222;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.5px;
  font-weight: 500;
  border: 1px solid #eee;
  padding: 8px;
}

.accordion-button:focus {
  border-color: #eee;
  outline: none;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: #fff;
  background-color: #2e3192;
}

.accordion-button:not(.collapsed):after {
  background-image: inherit;
  content: "\f068";
  color: #fff;
  transform: inherit;
}

.accordion-button:after {
  background-image: inherit;
  content: "\f067";
  font-family: "Line Awesome Free";
  font-size: 16px;
  position: absolute;
  right: 20px;
  top: 50%;
  color: #fff;
  font-weight: 600;
  transform: translateY(-50%) !important;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accordion-body p {
  color: var(--grey-color);
  margin-bottom: 0;
}

@media (max-width: 667px) {
  .accordion-button {
    padding-right: 50px;
  }
}

/*===================================================
    15 Contact Section
====================================================*/
.map-wrapper {
  height: 400px;
}

.contact-section {
  background-image: url(../img/gradiant-bg-2.html);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.contact-heading {
  margin-bottom: 40px;
}

.contact-section .contact-details li {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  color: var(--heading-color);
  font-weight: 500;
}

.contact-section .contact-details li i {
  background: var(--primary-color);
  color: #fff;
  font-size: 25px;
  margin-right: 15px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 1px;
}

/*===================================================
    16 Footer Section
====================================================*/
.footer-section {
  background-image: url(../img/plant-nursery-automatic-watering-system-greenhouse.webp);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  padding-top: 100px;
  position: relative;
  z-index: 1;
}

.footer-section:before {
  background: var(--bg-dark);
  opacity: 0.9;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.footer-section:after {
  background-image: url(../img/square-pattern.png);
  background-size: 20px;
  opacity: 0.8;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.footer-area {
  padding-bottom: 80px;
}

.footer-widget .footer-logo {
  margin-bottom: 20px;
  display: block;
}

.footer-logo img {
  max-width: 190px;
}

.footer-area .col-lg-3:nth-child(2) {
  padding-left: 70px;
}

.footer-widget h3 {
  color: var(--white-color);
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-widget li a,
.footer-widget p {
  color: var(--light-grey-color);
}

.footer-widget li:not(:last-of-type) {
  margin-bottom: 10px;
}

.footer-widget ul:not(.footer-social) li a {
  position: relative;
}

.footer-widget ul:not(.footer-social) li a:before {
  position: absolute;
  content: "";
  height: 2px;
  width: 10px;
  left: -15px;
  top: 50%;
  opacity: 0;
  transform: translateY(-50%);
  border: 1px solid var(--primary-color);
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.footer-widget ul:not(.footer-social) li a:hover::before {
  opacity: 1;
}

.footer-widget ul:not(.footer-social) li a:hover {
  color: var(--primary-color);
  margin-left: 15px;
}

.footer-social {
  margin-top: 25px;
}

.footer-social li {
  display: inline-block;
}

.footer-social li:not(:last-of-type) {
  margin-right: 5px;
}

.footer-social li a {
  background-color: var(--bg-dark);
  display: inline-block;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.footer-social li a:after {
  background-color: var(--primary-color);
  width: 0;
  height: 40px;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
}

.footer-social li a:hover {
  color: #fff;
}

.footer-social li:hover a:after {
  left: 0;
  width: 100%;
  visibility: visible;
  opacity: 1;
}

.subscribe-form .form-control {
  height: 50px;
  border-radius: 0;
  outline: none;
  border: none;
  box-shadow: none;
  padding-right: 80px;
}

.subscribe-form .mc-fields {
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.subscribe-form .submit {
  background-color: var(--primary-color);
  font-size: 28px;
  padding: 0;
  width: 70px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

#mc-form-messages {
  display: none;
}

#mc-form-messages.alert-danger,
#mc-form-messages.alert-success {
  display: block;
}

.copyright-text {
  background-color: var(--bg-dark);
  padding: 25px 0;
  text-align: center;
  color: var(--light-grey-color);
}

.copyright-text a {
  color: var(--primary-color);
}

@media (max-width: 992px) {

  .footer-section {
    padding-top: 50px;
  }

  .footer-area {
    padding-bottom: 30px;
  }

  .footer-area .col-lg-3:nth-child(2) {
    padding-left: 15px;
  }
}

.service-content p {
  text-align: justify;
}

.project-item.wow.fade-in-bottom {
  margin: 10px;
}

.feautre-gihlites {
  background: #93bbd2;
  padding: 10px;
  border-radius: 10px;
  margin: 10px;
}


.feautre-gihlites svg {
  animation: up-down linear 4s;
  animation-iteration-count: infinite;
  transform-origin: 50% 50%;
  -webkit-animation: up-down linear 4s;
  -webkit-animation-iteration-count: infinite;
  -webkit-transform-origin: 50% 50%;
  -moz-animation: up-down linear 4s;
  -moz-animation-iteration-count: infinite;
  -moz-transform-origin: 50% 50%;
  -o-animation: up-down linear 4s;
  -o-animation-iteration-count: infinite;
  -o-transform-origin: 50% 50%;
  -ms-animation: up-down linear 4s;
  -ms-animation-iteration-count: infinite;
  -ms-transform-origin: 50% 50%;
}



@keyframes up-down {
  0% {
    transform: translate(1px, 20px);
  }

  24% {
    transform: translate(1px, 30px);
  }

  50% {
    transform: translate(1px, 12px);
  }

  74% {
    transform: translate(1px, 22px);
  }

  100% {
    transform: translate(1px, 22px);
  }
}

@-moz-keyframes up-down {
  0% {
    -moz-transform: translate(1px, 20px);
  }

  24% {
    -moz-transform: translate(1px, 30px);
  }

  50% {
    -moz-transform: translate(1px, 12px);
  }

  74% {
    -moz-transform: translate(1px, 22px);
  }

  100% {
    -moz-transform: translate(1px, 22px);
  }
}

@-webkit-keyframes up-down {
  0% {
    -webkit-transform: translate(1px, 20px);
  }

  24% {
    -webkit-transform: translate(1px, 30px);
  }

  50% {
    -webkit-transform: translate(1px, 12px);
  }

  74% {
    -webkit-transform: translate(1px, 22px);
  }

  100% {
    -webkit-transform: translate(1px, 22px);
  }
}

@-o-keyframes up-down {
  0% {
    -o-transform: translate(1px, 20px);
  }

  24% {
    -o-transform: translate(1px, 30px);
  }

  50% {
    -o-transform: translate(1px, 12px);
  }

  74% {
    -o-transform: translate(1px, 22px);
  }

  100% {
    -o-transform: translate(1px, 22px);
  }
}

@-ms-keyframes up-down {
  0% {
    -ms-transform: translate(1px, 20px);
  }

  24% {
    -ms-transform: translate(1px, 30px);
  }

  50% {
    -ms-transform: translate(1px, 12px);
  }

  74% {
    -ms-transform: translate(1px, 22px);
  }

  100% {
    -ms-transform: translate(1px, 22px);
  }
}

.slider-content-wrap.d-flex.align-items-center.text-left::after {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, .5);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}

.inner-layer {
  color: #fff;
}

.slide-banner-mark marquee {
  font-size: 40px;
  color: #FFF;
  /* font-family: cursive; */
  font-family: var(--primary-font), sans-serif;
  border: 1px solid;
  /* padding: 10px 0; */
  background: linear-gradient(45deg, #2e3092, #000);
}

.slide-banner-mark {
  padding: 10px 0;
}

.slide-banner-mark svg path {
  fill: #fff;
}

.breadcrumb-wrapper span {
  padding-right: 24px;
}

.breadcrumb-wrapper span a {
  color: #fff;
  font-size: 20px;
}

.breadcrumb-wrapper span {
  font-weight: 400;
  text-transform: capitalize;
  font-size: 20px;
  line-height: 20px;
  position: relative;
  color: #ffffff;
}

.breadcrumb-wrapper span:after {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  right: 10px;
  top: 13px;
  display: inline-block;
  font-style: normal;
  background-color: var(--primary-color);
}

.breadcrumb-wrapper span:last-child:after {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  right: 10px;
  top: 13px;
  display: inline-block;
  font-style: normal;
  background-color: transparent;
}

.about-text1 p {
  text-align: center;
}

.service-icon img {
  height: 48px;
  width: 48px;
}


.map-wrapper {
  margin-top: 80px;
}

.contact-heading h3 {
  font-size: 24px;
  font-weight: 600;
}

.contact-heading h2 {
  font-size: 46px;
}

.about-img-wrapper img {
  object-fit: cover;
  height: 300px;
  width: 100%;
}

.about-img-wrapper a {

  text-align: center;
}

.about-img-wrapper a:hover {
  text-align: center;
}

.infrastructure_wtapper img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 12px;
  object-position: left;
}

.infrastructure_wtapper h2 {
  font-size: 20px;
}

.presence_wrapper img {
  height: auto;
  width: 100%;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  /* margin-top: 50px; */
}

.certificate_wrapper .card {
  border: 0px !important;
  height: 200px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  border-radius: 12px;
  transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

.certificate_wrapper .card:hover {
  transform: skewY(1.5deg) translateY(-10px);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 15px 30px -5px, rgba(0, 0, 0, 0.3) 0px 10px 20px -6px;
  cursor: pointer;
}

.certificate_wrapper .card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: contain;
}

.cs_footer_contact_list_right a:hover {
  color: #fff !important;
}

ul.catagory-menu-bar {
  top: 0 !important;
}

@media(max-width:1100px) and (min-width:1280px) {
  .header-menu-wrap ul li {
    padding: 10px 0px;
  }

  .header-menu-wrap ul li {
    margin-right: 0px;
  }
}

@media(max-width:1100px) {
  .sticky-header.sticky-fixed-top .header-menu-wrap .nav-menu>li {
    padding: 32px 10px;
  }

  .header-menu-wrap ul li {
    margin-right: 0px;
  }

  .header-menu-wrap ul li {
    padding: 30px 6px;
  }

  .header-menu-wrap ul li a {
    font-size: 12px;
  }
}

.service-details-wrap .services-main-img img {
  height: 650px;
  width: 100%;
  /* object-fit: cover; */
  border-radius: 15px;
  border: 1px solid #2e3092;
  padding: 37px;
}



.project-details-content h2 {
  color: #2f3192;
}

ul.overview-list li {
  list-style-type: disclosure-closed;
  margin-left: 26px;
}

ul.tags.mt-4 li a {
  background: #2e3192;
  color: #fff;
  border: 8px solid transparent;
  margin: 10px;
  border-radius: 10px;
  clip-path: polygon(50% 0%, 75% 28%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 36% 74%, 0% 70%, 0% 35%, 20% 10%);
  transition: all 0.4s ease;
  display: inline-block;
}

ul.tags.mt-4 li a:hover {
  clip-path: none;
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

ul.tags.mt-4 h3 {
  font-size: 25px;
}

.top_bar_contact_item a {
  color: #fff;
}

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


/* product side bar  */


.service-single-faqs .our-faq-section .accordion-item {
  border: 1px solid var(--divider-color);
}

.service-sidebar {
  position: sticky;
  top: 20px;
}

.service-catagery-list {
  border-radius: 40px;
  margin-bottom: 40px;
}

.service-catagery-list h3 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 30px;
}

.service-catagery-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-catagery-list ul li {
  background-color: #2e3192;
  border-radius: 14px;
  padding: 15px;
  margin-bottom: 15px;
  color: #fff;
}

.service-catagery-list ul li:last-child {
  margin-bottom: 0;
}

.service-catagery-list ul li a {
  display: block;
  position: relative;
  color: var(--text-color);
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a {
  color: var(--accent-color);
}

.service-catagery-list ul li a::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translate(0px, -50%);
  background-image: url('../img/icon/icon-plus-accent.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 14px;
  height: 14px;
  transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a::after {
  transform: translate(0px, -50%) rotate(45deg);
}

.service-sidebar .section-cta-box {
  display: flex;
  box-shadow: 0px 10px 30px 0px #00000008;
  border: 1px solid var(--divider-color);
  padding: 30px;
}


.sponsor-section .client-img img {
  aspect-ratio: 3/2;
  width: 77%;
  height: 120px;
  mix-blend-mode: color-burn;
}

.services-sub-img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #2e3092;
}

.se-img2 img {
  object-fit: none !important;
}

.service-details-content p {
  text-align: justify;
}

.slider-content {
  padding-top: 120px;
}

.buton-menubar {
  background: var(--primary-color);
  padding: 8px;
  border-radius: 10px;
}

.buton-menubar svg {
  animation: mover 1s infinite alternate;
}

@-webkit-keyframes mover {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes mover {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-10px);
  }
}

flat-single-product {
  padding: 27px 0px 100px;
}

.stagger-wrap .stagger-item {
  transition: 0.3s ease-in-out;
  transform: scale(0.5) rotate(90deg) skew(15deg);
  opacity: 0;
}

.stagger-wrap .stagger-item.stagger-finished {
  transform: scale(1) rotate(0deg) skew(0deg);
  opacity: 1;
}

.slider-scroll,
.thumbs-slider {
  display: flex;
  gap: 10px;
}

.thumbs-bottom {
  flex-direction: column;
}

.thumbs-bottom .tf-product-media-thumbs {
  order: 1;
  width: 100%;
}

.thumbs-bottom .flat-wrap-media-product {
  width: 100%;
}

.tf-product-media-thumbs {
  width: 122px;
  flex-shrink: 0;
  max-height: 758px;
}

.tf-product-media-thumbs .swiper-slide {
  height: max-content;
  width: auto;
}

.tf-product-media-thumbs .swiper-slide .item {
  position: relative;
  height: 100%;
}

.tf-product-media-thumbs .swiper-slide .item img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tf-product-media-thumbs .swiper-slide .item::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  border: 1px solid transparent;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
}

.tf-product-media-thumbs .swiper-slide:not(.swiper-slide-thumb-active) .item {
  opacity: 0.6;
}

.tf-product-media-thumbs .swiper-slide.swiper-slide-thumb-active .item::after {
  border-color: rgba(0, 0, 0, 0.4);
}

.wrap-btn-viewer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.wrap-btn-viewer .icon {
  font-size: 20px;
}

.tf-model-viewer-ui-button .wrap-btn-viewer {
  width: 44px;
  height: 44px;
}

.flat-wrap-media-product {
  width: calc(100% - 132px);
  position: relative;
}

.flat-wrap-media-product .tf-product-media-main {
  border-radius: 12px;
  height: 100%;
}

.flat-wrap-media-product .tf-product-media-main .item {
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
  max-height: 758px;
}

.flat-wrap-media-product .tf-product-media-main .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flat-wrap-media-product .tf-product-media-main .slide-3d,
.flat-wrap-media-product .tf-product-media-main .slide-video {
  height: auto;
}

.tf-product-info-wrap .tf-product-info-heading {
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
  margin-bottom: 24px;
}

.tf-product-info-wrap .tf-product-info-heading .product-info-name {
  margin-bottom: 12px;
}

.tf-product-info-wrap .tf-product-info-heading .product-info-rate {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.tf-product-info-wrap .tf-product-info-heading .product-info-rate .list-star {
  margin-right: 6px;
  display: flex;
  align-items: center;
}

.tf-product-info-wrap .tf-product-info-heading .product-info-rate .icon {
  font-size: 16px;
  color: #98ab23;
}

.tf-product-info-wrap .tf-product-info-heading .product-info-rate .icon:not(:last-child) {
  margin-right: 5px;
}

.tf-product-info-wrap .tf-product-info-heading .product-info-rate .count-review {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 22.4px;
  letter-spacing: -3%;
  color: var(--text);
}

.tf-product-info-wrap .tf-product-info-heading .product-info-price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-weight: 500;
  margin-bottom: 12px;
}

.tf-product-info-wrap .tf-product-info-heading .product-info-price .price-new {
  color: var(--primary);
}

.tf-product-info-wrap .tf-product-info-heading .product-info-price .price-old {
  color: var(--rgba-dark);
  text-decoration: line-through;
}

.tf-product-info-wrap .tf-product-info-heading .badge-sale {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  background-color: var(--primary);
  border-radius: 22px;
  padding: 5px 10px;
  color: var(--white);
}

.tf-product-info-wrap .tf-product-info-heading .product-info-sold {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
}

.tf-product-info-wrap .tf-product-info-heading .product-info-sold .icon {
  animation: tf-ani-flash 2s infinite;
}

.tf-product-info-wrap .tf-product-info-heading .product-info-progress-sale .title-hurry-up {
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 14.4px;
  color: var(--dark);
}

.tf-product-info-wrap .tf-product-info-heading .product-info-progress-sale .count {
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  color: var(--primary);
}

.tf-product-info-wrap .tf-product-info-heading .progress-sold {
  width: 100%;
  background-color: var(--line-4);
  height: 5px;
  position: relative;
  border-radius: 5px;
}

.tf-product-info-wrap .tf-product-info-heading .progress-sold .value {
  position: relative;
  height: 100%;
  background-color: var(--primary);
  transition: width 2s ease;
  border-radius: 5px;
}

.tf-product-info-wrap .tf-product-info-variant {
  display: grid;
  gap: 24px;
  margin-bottom: 24px;
}

.tf-product-info-wrap .tf-product-info-variant .variant-picker-label {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 24px;
  color: var(--dark);
}

.tf-product-info-wrap .tf-product-info-variant .variant-picker-label-value {
  text-transform: capitalize;
  margin-left: 4px;
  font-weight: 500;
  letter-spacing: -3%;
}

.tf-product-info-wrap .variant-color .variant-picker-values {
  display: flex;
  gap: 12px;
}

.tf-product-info-wrap .variant-color .color-btn:not(.select-item) {
  position: relative;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid transparent;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
}

.tf-product-info-wrap .variant-color .color-btn:not(.select-item) .check-color {
  width: 32px;
  height: 32px;
  display: block;
  border-radius: 50%;
  border: 1px solid #dcdcdc;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.tf-product-info-wrap .variant-color .color-btn:not(.select-item).active {
  border-color: var(--dark-2);
}

.tf-product-info-wrap .variant-color .color-btn.style-image {
  width: 56px;
  height: 56px;
  padding: 6px;
  border: 1px solid var(--line);
}

.tf-product-info-wrap .variant-color .color-btn.style-image .img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}

.tf-product-info-wrap .variant-color .color-btn.style-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tf-product-info-wrap .variant-color .color-btn.style-image-square {
  width: 80px;
  height: 100px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.tf-product-info-wrap .variant-color .color-btn.style-image-square .img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  overflow: hidden;
}

.tf-product-info-wrap .variant-color .color-btn.style-image-square img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tf-product-info-wrap .variant-size .variant-picker-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.tf-product-info-wrap .variant-size .size-guide {
  font-size: 14px;
  line-height: 16.8px;
  text-decoration: underline;
}

.tf-product-info-wrap .variant-size .variant-picker-values {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.tf-product-info-wrap .variant-size .size-btn:not(.select-item) {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  font-size: 20px;
  line-height: 30px;
  color: var(--dark);
  font-weight: 500;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.tf-product-info-wrap .variant-size .size-btn:not(.select-item).active {
  border-color: var(--dark);
}

.tf-product-info-wrap .product-info-countdown {
  padding: 20px;
  display: inline-block;
  border: 1px solid var(--primary);
  border-radius: 8px;
}

.tf-product-info-wrap .product-info-countdown .countdown-title {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
}

.tf-product-info-wrap .product-info-countdown .countdown__timer {
  display: flex;
  gap: 12px;
}

.tf-product-info-wrap .product-info-countdown .countdown__item {
  width: 48px;
  height: 32px;
  font-size: 16px;
  line-height: 24px;
  color: var(--white);
  background-color: var(--primary);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.tf-product-info-wrap .product-info-countdown .countdown__item:not(:last-child)::after {
  position: absolute;
  content: ":";
  top: 50%;
  transform: translateY(-50%);
  right: -8px;
  color: var(--dark);
}

.tf-product-info-wrap .tf-product-total-quantity {
  margin-bottom: 24px;
}

.tf-product-info-wrap .tf-product-total-quantity .group-btn {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.tf-product-info-wrap .tf-product-total-quantity .group-btn .tf-btn {
  flex-grow: 1;
}

.tf-product-info-wrap .tf-product-total-quantity .wg-quantity .quantity-product,
.tf-product-info-wrap .tf-product-total-quantity .wg-quantity .btn-quantity {
  height: 50px;
}

.tf-product-info-wrap .tf-product-total-quantity .tf-btn {
  text-transform: none;
}

.tf-product-info-wrap .tf-product-total-quantity .btn-out-stock {
  background-color: var(--text);
  border-color: var(--text);
  cursor: not-allowed;
}

.tf-product-info-wrap .tf-product-total-quantity .more-choose-payment {
  margin-top: 12px;
  display: block;
  text-align: center;
  text-decoration: underline;
}

.tf-product-info-wrap .tf-product-info-extra-link {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.tf-product-info-wrap .tf-product-info-extra-link .product-extra-icon {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.tf-product-info-wrap .tf-product-info-extra-link .product-extra-icon .icon {
  font-size: 18px;
}

.tf-product-info-wrap .tf-product-info-trust-seal {
  margin-bottom: 24px;
}

.tf-product-info-wrap .tf-product-info-trust-seal .list-card {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.tf-product-info-wrap .tf-product-info-trust-seal .card-item {
  width: 45px;
  height: 32px;
  border: 1px solid #d9d9d9;
  border-radius: 2.5px;
}

.tf-product-info-wrap .tf-product-info-delivery-return {
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 20px;
  display: flex;
}

.tf-product-info-wrap .tf-product-info-delivery-return .product-delivery {
  display: grid;
  gap: 10px;
  text-align: center;
  padding: 0px 25px;
}

.tf-product-info-wrap .tf-product-info-delivery-return .product-delivery .icon {
  font-size: 23px;
  color: var(--dark);
}

.tf-product-info-wrap .tf-product-info-delivery-return .product-delivery:not(:last-child) {
  border-right: 1px solid var(--line);
}

.tf-product-info-wrap .tf-product-pickup-available {
  display: flex;
  margin: 32px 0px;
  gap: 8px;
}

.tf-product-info-wrap .tf-product-pickup-available .icon {
  font-size: 21px;
  color: var(--light-green);
}

.tf-product-info-wrap .tf-product-pickup-available .content {
  display: grid;
  gap: 4px;
}

.tf-product-info-wrap .tf-product-pickup-available .check-availability {
  font-size: 12px;
  line-height: 18px;
  color: var(--text);
  text-decoration: underline;
}

.tf-product-info-wrap .tf-product-volume-discount,
.tf-product-info-wrap .tf-product-info-list {
  margin-bottom: 30px;
}

.tf-product-info-wrap .tf-product-volume-discount-thumbnail {
  margin-top: 30px;
  margin-bottom: 30px;
}

.btn-add-wishlist .added {
  display: none;
}

.btn-add-wishlist.added-wishlist .add {
  display: none;
}

.btn-add-wishlist.added-wishlist .added {
  display: block;
}

.wg-quantity {
  display: flex;
  justify-content: space-between;
  background-color: #f1f1f1;
  border-radius: 43px;
  overflow: hidden;
}

.wg-quantity .quantity-product {
  width: 44px;
  height: 44px;
  padding: 0;
  background-color: transparent;
  border: 0;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: var(--dark);
  pointer-events: none;
}

.wg-quantity .btn-quantity {
  width: 44px;
  height: 44px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #011624;
  cursor: pointer;
  background-color: transparent;
  border: 1px solid transparent;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.wg-quantity .btn-quantity:hover {
  color: var(--primary);
}

.wg-quantity.small .btn-quantity,
.wg-quantity.small .quantity-product {
  height: 30px;
  width: 30px;
  font-size: 18px;
}

.wg-quantity.small .quantity-product {
  font-size: 14px;
  font-weight: 700;
  line-height: 16.8px;
  letter-spacing: -0.03em;
}

.tf-product-fbt {
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.tf-product-fbt .title {
  margin-bottom: 16px;
}

.tf-product-fbt .tf-bundle-product-item {
  padding: 16.35px 0px;
}

.tf-product-fbt .tf-product-form-bundle {
  display: grid;
  gap: 24px;
}

.tf-product-fbt .btn-submit-total {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  text-transform: none;
}

.tf-product-fbt .bundle-total-submit {
  display: flex;
  align-items: center;
  font-size: 20px;
  line-height: 32px;
  font-weight: 500;
}

.tf-product-fbt .bundle-total-submit .text {
  margin-right: 10px;
}

.tf-product-fbt .bundle-total-submit .total-price {
  margin-right: 5px;
  color: var(--primary);
}

.tf-product-fbt .bundle-total-submit .total-price-old {
  color: var(--line-3);
}

.tf-product-fbt-wrap {
  padding: 15px;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.tf-product-fbt-wrap .list-fbt {
  display: flex;
  gap: 25px;
  align-items: center;
  overflow-x: auto;
  min-width: 100%;
}

.tf-product-fbt-wrap .list-fbt::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.tf-product-fbt-wrap .list-fbt::-webkit-scrollbar-track {
  background-color: var(--bg-scrollbar-track);
}

.tf-product-fbt-wrap .list-fbt::-webkit-scrollbar-thumb {
  background: var(--bg-scrollbar-thumb);
  border-radius: 4px;
}

.tf-product-fbt-wrap .fbt-image {
  width: 129px;
  min-width: 129px;
  border-radius: 8px;
  overflow: hidden;
}

.tf-product-fbt-wrap .fbt-swatches {
  display: grid;
  gap: 8px;
}

.tf-product-fbt-wrap .fbt-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.tf-product-fbt-wrap .fbt-info .bundle-variant,
.tf-product-fbt-wrap .fbt-info .bundle-title {
  margin-right: 10px;
}

.tf-product-fbt-wrap .fbt-info .bundle-price {
  display: flex;
  gap: 6px;
}

.tf-product-fbt-wrap .fbt-info .new-price {
  color: var(--primary);
}

.tf-product-fbt-wrap .fbt-info .old-price {
  color: #bfbfbf;
}

.tf-product-fbt-wrap .tf-product-form-fbt {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tf-product-fbt-wrap .list-fbt {
  margin-bottom: 15px;
}

.tf-product-fbt-wrap .fbt-total-price {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.tf-product-fbt-wrap .fbt-total-price .price-new {
  color: var(--primary);
}

.tf-product-fbt-wrap .fbt-total-price .price-old {
  color: #bfbfbf;
  text-decoration: line-through;
  font-size: 14px;
  line-height: 22.4px;
  margin-left: 5px;
}

.tf-bundle-product-item {
  display: flex;
  gap: 20px;
}

.tf-bundle-product-item .bundle-check {
  align-self: center;
}

.tf-bundle-product-item .bundle-image {
  width: 129px;
  min-width: 129px;
  border-radius: 8px;
  overflow: hidden;
}

.tf-bundle-product-item .bundle-image img {
  width: 100%;
  height: 100%;
}

.tf-bundle-product-item .bundle-info {
  display: grid;
  gap: 8px;
  align-content: flex-start;
}

.tf-bundle-product-item .bundle-price .new-price {
  color: var(--primary);
}

.tf-bundle-product-item .bundle-price .old-price {
  color: var(--rgba-dark);
  text-decoration: line-through;
}

.tf-bundle-product-item .tf-select {
  width: max-content;
}

.item-has-checkbox {
  opacity: 0.4;
}

.item-has-checkbox.check {
  opacity: 1;
}

.wd-product-descriptions .item .title {
  margin-bottom: 5px;
}

.wd-product-descriptions .item:not(:last-child) {
  margin-bottom: 20px;
}

.wd-product-descriptions .item p,
.wd-product-descriptions .item li {
  font-size: 14px;
  line-height: 22.4px;
}

.wd-product-descriptions .item ul li {
  position: relative;
  padding-left: 20px;
}

.wd-product-descriptions .item ul li::before {
  position: absolute;
  content: "";
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--dark);
  width: 4px;
  height: 4px;
  border-radius: 50%;
}

.wd-product-descriptions .list-policies {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.tf-product-side-accordions {
  margin-bottom: 42px;
}

.flat-single-grid .item {
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: block;
}

.flat-single-grid .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recent-blog-item {
  display: flex;
  gap: 20px;
}

.recent-blog-item .img-product {
  width: 75px;
  height: 112px;
  border-radius: 4px;
  overflow: hidden;
  display: block;
}

.recent-blog-item .img-product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recent-blog-item .content {
  display: grid;
  gap: 8px;
  align-content: flex-start;
}

.recent-blog-item .content .old-price {
  margin-left: 6px;
  color: #5c5c5c;
}

.recent-blog-item .content .new-price {
  color: var(--primary);
}

.flat-wrap-frequently-bought-together .thumbs-slider {
  margin-bottom: 30px;
}

.tf-product-volume-discount {
  padding: 15px;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.tf-product-volume-discount .title-discount {
  margin-bottom: 24px;
}

.tf-product-volume-discount .tf-btn {
  margin-top: 42px;
}

.list-volume-discount .volume-discount-item {
  padding: 15px;
  gap: 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.list-volume-discount .volume-discount-item:not(:last-child) {
  margin-bottom: 16px;
}

.list-volume-discount .volume-discount-item .content-discount {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.list-volume-discount .volume-discount-item .name span {
  color: var(--primary);
}

.list-volume-discount .volume-discount-item .info-discount,
.list-volume-discount .volume-discount-item .discount-price {
  opacity: 0.8;
}

.list-volume-discount .volume-discount-item .check {
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  border: 1px solid #9a9a9a;
  background-color: transparent;
  flex-shrink: 0;
}

.list-volume-discount .volume-discount-item .check span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: block;
  background-color: var(--white);
}

.list-volume-discount .volume-discount-item .discount-price {
  display: flex;
  align-items: center;
  gap: 6px;
}

.list-volume-discount .volume-discount-item .discount-price .price-new {
  color: var(--primary);
}

.list-volume-discount .volume-discount-item .discount-price .price-old {
  color: var(--text);
  font-size: 12px;
  line-height: 18px;
  text-decoration: line-through;
}

.list-volume-discount .volume-discount-item .tag-shipping {
  border: 1px solid #22ae45;
  border-radius: 4px;
  padding: 4px 10px;
  color: rgba(34, 174, 69, 0.8);
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.list-volume-discount .volume-discount-item .tag-sale {
  position: absolute;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--rgba-white);
  top: -2px;
  right: -15px;
  border-radius: 4px;
  border-radius: 4px;
  animation: pulse-rotate 1s infinite;
}

.list-volume-discount .volume-discount-item .tag-sale .icon {
  font-size: 16px;
  color: var(--white);
}

.list-volume-discount .volume-discount-item .tag-sale.pos2 {
  right: -15px;
  animation-delay: 0.5s;
}

.list-volume-discount .volume-discount-item.active,
.list-volume-discount .volume-discount-item:hover {
  background-color: #22ae45;
  border-color: #22ae45;
}

.list-volume-discount .volume-discount-item.active .check,
.list-volume-discount .volume-discount-item:hover .check {
  border-color: var(--white);
}

.list-volume-discount .volume-discount-item.active .discount-price .price-new,
.list-volume-discount .volume-discount-item.active .discount-price .price-old,
.list-volume-discount .volume-discount-item.active .info-discount,
.list-volume-discount .volume-discount-item.active span,
.list-volume-discount .volume-discount-item:hover .discount-price .price-new,
.list-volume-discount .volume-discount-item:hover .discount-price .price-old,
.list-volume-discount .volume-discount-item:hover .info-discount,
.list-volume-discount .volume-discount-item:hover span {
  color: var(--white);
}

.list-volume-discount .volume-discount-item.active .tag-shipping,
.list-volume-discount .volume-discount-item:hover .tag-shipping {
  border-color: var(--white);
  color: var(--white);
}

.tf-product-volume-discount-thumbnail {
  padding: 15px;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.tf-product-volume-discount-thumbnail .list-volume-discount-thumbnail,
.tf-product-volume-discount-thumbnail .title-discount {
  margin-bottom: 30px;
}

.list-volume-discount-thumbnail {
  gap: 12px;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: -15px;
  padding-top: 15px;
}

.list-volume-discount-thumbnail::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.list-volume-discount-thumbnail::-webkit-scrollbar-track {
  background-color: var(--bg-scrollbar-track);
}

.list-volume-discount-thumbnail::-webkit-scrollbar-thumb {
  background: var(--bg-scrollbar-thumb);
  border-radius: 4px;
}

.volume-discount-thumbnail-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 24px 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  border: 2px solid var(--line);
  position: relative;
}

.volume-discount-thumbnail-item .content-discount {
  text-align: center;
}

.volume-discount-thumbnail-item .content-discount .price-new,
.volume-discount-thumbnail-item .content-discount .price-old,
.volume-discount-thumbnail-item .content-discount .count {
  opacity: 0.8;
}

.volume-discount-thumbnail-item .content-discount .price-new {
  font-weight: 500;
  color: var(--primary);
}

.volume-discount-thumbnail-item .content-discount .price-old {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #b0b0b0;
}

.volume-discount-thumbnail-item .content-discount .tag-sold {
  padding: 3px 8px;
  border-radius: 4px;
  background-color: #ff9148;
  font-weight: 700;
  font-size: 10px;
  line-height: 14px;
  height: 20px;
  color: var(--white);
  margin-left: 4px;
}

.volume-discount-thumbnail-item .image-box {
  width: 140px;
  height: 160px;
  border-radius: 8px;
}

.volume-discount-thumbnail-item:hover,
.volume-discount-thumbnail-item.active {
  border-color: #22ae45;
  background-color: #e9ffee;
}

.volume-discount-thumbnail-item .tag-sale {
  animation: pulse 1s infinite;
  top: 0;
  margin-top: -15px;
  position: absolute;
  padding: 6px;
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--rgba-white);
  left: 15px;
  right: 15px;
  border-radius: 4px;
}

.volume-discount-thumbnail-item .tag-sale .icon {
  font-size: 14px;
}

@keyframes pulse-rotate {
  0% {
    transform: scale(1) rotate(12deg);
    opacity: 1;
  }

  50% {
    transform: scale(1.05) rotate(12deg);
    opacity: 0.9;
  }

  100% {
    transform: scale(1) rotate(12deg);
    opacity: 1;
  }
}

.card-product.style-wishlist {
  position: relative;
}

.card-product.style-wishlist>.icon {
  position: absolute;
  z-index: 25;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  font-size: 10px;
  border: 0;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.card-product.style-wishlist>.icon:hover {
  color: var(--primary);
}

.card-product.style-wishlist .list-product-btn {
  bottom: 24px !important;
}

.card-product.style-2 .list-product-btn {
  top: unset;
  right: unset;
  left: 50%;
  transform: translateX(-50%);
  bottom: 8px;
  gap: 0;
  flex-direction: row;
}

.card-product.style-2 .list-product-btn li {
  transition-delay: unset !important;
}

.card-product.style-2 .list-product-btn li:first-child .box-icon {
  border: 1px solid var(--line);
  border-radius: 30px 0px 0px 30px;
}

.card-product.style-2 .list-product-btn li:last-child .box-icon {
  border-radius: 0px 30px 30px 0px;
}

.card-product.style-2 .list-product-btn li:not(:first-child) .box-icon {
  border: 1px solid var(--line);
  border-left-color: var(--white);
}

.card-product.style-2 .list-product-btn .box-icon {
  border-radius: unset;
}

.card-product.style-2 .list-product-btn .box-icon:hover {
  border-color: var(--dark) !important;
}

.card-product.style-2 .list-product-btn .box-icon .icon-cart2 {
  margin-left: 2px;
}

.card-product.style-3 .list-product-btn {
  top: unset;
  right: unset;
  left: 50%;
  transform: translateX(-50%);
  bottom: 50px;
  flex-direction: row;
}

.card-product.style-3 .list-product-btn .box-icon:hover {
  border-color: var(--dark) !important;
}

.card-product.out-of-stock .card-product-info {
  opacity: 0.6;
}

.card-product.out-of-stock .card-product-wrapper::before {
  content: "Sold Out";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background-color: var(--dark);
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  opacity: 1;
  z-index: 5;
}

.card-product.out-of-stock .card-product-wrapper>* {
  opacity: 0.6;
}

.card-product:not(.style-list) .size-box {
  position: absolute;
  bottom: 0;
  z-index: 3;
  left: 0px;
  right: 0px;
  pointer-events: none;
  transition: 0.3s ease-out 0s;
  background: rgba(146, 146, 146, 0.7098039216);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 6px;
}

.card-product .product-btn-main {
  position: absolute;
  z-index: 5;
  bottom: 8px;
  right: 8px;
  left: 8px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  gap: 4px;
}

.card-product .product-btn-main .btn-main-product {
  background-color: var(--white);
  border-radius: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 6px;
  width: 100%;
}

.card-product .product-btn-main .btn-main-product:hover {
  background-color: var(--dark);
  color: var(--white);
}

.card-product .product-btn-main .btn-main-product.add-to-cart {
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  white-space: nowrap;
  text-align: center;
}

.card-product .product-btn-main .btn-main-product.quickview {
  height: 36px;
  width: 36px;
  flex-shrink: 0;
  display: none;
}

.card-product .product-btn-main .icon {
  font-size: 17px;
}

.card-product .list-product-btn {
  bottom: 10px;
}

.card-product .on-sale-wrap {
  position: absolute;
  top: 10px;
  right: auto;
  left: 10px;
  z-index: 5;
  display: flex;
  gap: 6px;
}

.card-product .on-sale-wrap .on-sale-item {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  word-break: break-word;
  padding: 0px 10px;
  min-width: 50px;
  font-size: 13px;
  font-weight: 500;
  line-height: 26px;
  height: 26px;
  text-align: center;
  text-transform: capitalize;
  position: relative;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 22px;
}

.card-product .on-sale-wrap .on-sale-item.trending {
  background-color: #a474ff;
}

.card-product .on-sale-wrap .on-sale-item.limited {
  background-color: #ff9c39;
}

.card-product .on-sale-wrap .on-sale-item.new {
  background-color: #00bc29;
}

.card-product .on-sale-wrap.type-2 .on-sale-item {
  width: max-content;
}

.card-product .price-wrap {
  font-size: 16px;
  line-height: 19.2px;
  color: var(--dark);
}

.card-product .price-wrap .price-new {
  margin-right: 4px;
}

.card-product .card-product-wrapper {
  aspect-ratio: 0.7037037037;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  z-index: 20;
}

.card-product .card-product-wrapper img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  transition-duration: 700ms;
}

.card-product .card-product-wrapper:hover .product-img .img-product {
  opacity: 0;
}

.card-product .card-product-wrapper:hover .product-img .img-hover {
  display: block;
  z-index: 1;
  opacity: 1;
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.card-product .product-img {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
  align-items: stretch;
}

.card-product .product-img .img-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.card-product .list-product-btn {
  position: absolute;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  top: 8px;
  right: 8px;
  z-index: 6;
}

.card-product .box-icon {
  width: 35px;
  height: 35px;
  border-radius: 3px;
  background-color: var(--white);
  color: var(--dark);
  position: relative;
  border-radius: 50%;
}

.card-product .box-icon .icon {
  font-size: 14px;
}

.card-product .box-icon svg {
  width: 18px;
}

.card-product .box-icon svg path {
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.card-product .box-icon:hover {
  background-color: var(--dark) !important;
  color: var(--white);
  border-color: var(--dark);
}

.card-product .countdown-box {
  display: none;
  bottom: 24px;
  position: absolute;
  z-index: 3;
  left: 0px;
  right: 0px;
  pointer-events: none;
  transition: 0.3s ease-out 0s;
  text-align: center;
  overflow: hidden;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 20px;
  max-height: 40px;
  background-color: var(--white);
  width: max-content;
  border-radius: 22px;
  color: var(--primary);
}

.card-product .countdown-box .countdown__timer {
  display: flex;
  gap: 4px;
}

.card-product .countdown-box .countdown__item {
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
}

.card-product .countdown-box.style-2 {
  background-color: #ffeded;
}

.card-product .countdown-box.style-3 {
  padding: 10px 30px;
  background-color: var(--primary);
  color: var(--white);
  gap: 10px;
}

.card-product .countdown-box.style-3 .icon {
  font-size: 18px;
}

.card-product .countdown-box.pos1 {
  bottom: 16px;
}

.card-product .card-product-info {
  padding-top: 15px;
  padding-bottom: 15px;
  gap: 6px;
  display: grid;
}

.card-product .card-product-info .inner-info-product {
  display: grid;
  gap: 6px;
}

.card-product .name-product {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-transform: capitalize;
}

.card-product .list-color-product {
  margin-top: 2px;
}

.card-product.style-list {
  display: flex;
  gap: 12px;
}

.card-product.style-list .product-img {
  max-width: 342px;
}

.card-product.style-list .card-product-info {
  gap: 12px;
  display: grid;
  align-content: flex-start;
  max-width: 60%;
  gap: 8px;
  padding: 0;
}

.card-product.style-list .info-list {
  display: grid;
  gap: 8px;
  width: 100%;
}

.card-product.style-list .list-product-btn {
  display: flex;
  position: unset;
  flex-direction: unset;
  justify-content: flex-start;
  gap: 10px;
}

.card-product.style-list .btn-main-product.add-to-cart {
  max-width: 331px;
  width: 100%;
}

.card-product.style-list .box-icon {
  width: 51px;
  height: 51px;
  border: 1px solid var(--line);
  flex-shrink: 0;
}

.card-product.style-list .box-icon:hover {
  border-color: var(--line);
}

.card-product.style-list .size-box {
  display: flex;
  gap: 8px;
}

.card-product.style-center {
  border-radius: 16px;
  background-color: var(--white);
}

.card-product.style-center .card-product-wrapper {
  aspect-ratio: 0.95;
}

.card-product.style-center .card-product-info {
  padding: 20px 12px;
}

.card-product.style-center .list-color-product {
  margin-top: 5px;
}

.card-product.style-center .countdown-box {
  bottom: 0;
}

.card-product.style-center .swatch-value::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  border: 1px solid #dcdcdc;
}

.card-product .product-progress-sale {
  display: grid;
  gap: 6px;
  margin-top: 5px;
}

.card-product .product-progress-sale .box-quantity {
  gap: 4px;
}

.card-product .product-progress-sale .box-quantity .text-sold {
  text-align: left;
}

.card-product .product-progress-sale .box-quantity .text-avaiable {
  text-align: right;
}

.card-product .progress-sold {
  width: 100%;
  background-color: var(--line);
  height: 6px;
  position: relative;
  border-radius: 6px;
}

.card-product .progress-bar {
  position: relative;
  height: 100%;
  background-color: var(--primary);
  transition: width 2s ease;
  border-radius: 5px;
}

.card-product.style-4 .card-product-info {
  padding: 20px 12px;
}

.card-product.style-4 .list-color-product {
  gap: 4px;
  margin-top: 4px;
}

.card-product .stock {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-product .stock .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: relative;
}

.card-product .stock .dot::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 2px;
  left: 2px;
  bottom: 2px;
  border-radius: 50%;
  z-index: 2;
}

.card-product .stock.in-stock {
  color: #59a33b;
}

.card-product .stock.in-stock .dot {
  background-color: rgba(120, 203, 87, 0.3411764706);
}

.card-product .stock.in-stock .dot::after {
  background-color: #78cb57;
}

.card-product .stock.out-stock {
  color: #ef5757;
}

.card-product .stock.out-stock .dot {
  background-color: rgba(203, 87, 87, 0.3411764706);
}

.card-product .stock.out-stock .dot::after {
  background-color: #ef5757;
}

.card-product .list-capacity-product .list-color-item {
  width: unset;
  height: unset;
  border-radius: 35px;
  border: 1px solid rgba(142, 142, 142, 0.2);
}

.card-product .list-capacity-product .list-color-item .text-quantity {
  padding: 2px 12px;
}

.card-product .list-capacity-product .list-color-item.active {
  border-color: var(--dark);
}

.card-product.style-5 {
  border-radius: 16px;
  background-color: var(--white);
}

.card-product.style-5 .card-product-info {
  padding: 20px 12px 22px;
}

.card-product.style-5 .card-product-info .tf-btn {
  width: 100%;
}

.card-product.style-5 .btn-addcart,
.card-product.style-5 .stock {
  margin-top: 10px;
}

.card-product.style-border {
  border: 1px solid var(--line);
  border-radius: 16px;
  position: relative;
}

.card-product.style-border .card-product-wrapper {
  padding: 20px 12px;
}

.card-product.style-border .card-product-wrapper img {
  height: auto;
}

.card-product.style-border .card-product-wrapper .list-product-btn {
  bottom: 16px;
}

.card-product.style-border .countdown-box {
  bottom: 16px;
}

.card-product.style-border .card-product-info {
  padding: 0px 12px 20px;
}

.card-product.style-border .card-product-info .type {
  opacity: 0.6;
}

.card-product.style-border-2 {
  border: 1px solid var(--line);
  border-radius: 16px;
}

.card-product.style-border-2 .card-product-wrapper {
  padding: 12px;
  padding-bottom: 20px;
}

.card-product.style-border-2 .product-img {
  border-radius: 16px;
  overflow: hidden;
}

.card-product.style-border-2 .card-product-info {
  padding: 0px 12px 20px;
}

.card-product.style-border-2 .product-progress-sale {
  margin: 6px 0px;
}

.card-product.style-border-2 .countdown-box {
  bottom: 12px;
}

.card-product.style-border-2.border-type-3 .tf-btn {
  margin-top: 8px;
}

.card-product.style-border-2.border-type-4 .card-product-wrapper {
  padding: 12px 11px 8px;
}

.card-product.style-border-2.border-type-4 .card-product-info {
  padding: 0px 12px 16px;
}

.card-product.style-border-2.border-type-4 .list-product-btn {
  bottom: 8px;
}

.card-product.style-border-2.border-type-4 .list-product-btn .box-icon:hover {
  background-color: var(--purple) !important;
  border-color: var(--purple) !important;
}

.card-product.style-border-2.border-type-4 .tooltip,
.card-product.style-border-2.border-type-4 .tooltip::before {
  background-color: var(--purple) !important;
}

.card-product.style-border-2.border-type-5 .product-progress-sale {
  margin: 0;
}

.card-product.style-border-2.border-type-5 .card-product-info {
  gap: 12px;
}

.card-product.style-border-2.style-box-bg .list-product-btn {
  bottom: 14px;
}

.card-product.style-border-2.style-box-bg .list-product-btn .box-icon:hover {
  background-color: var(--purple) !important;
  border-color: var(--purple) !important;
}

.card-product.style-border-2.style-box-bg .tooltip,
.card-product.style-border-2.style-box-bg .tooltip::before {
  background-color: var(--purple) !important;
}

.card-product.line-purple .countdown-box {
  bottom: 14px;
}

.card-product.style-space .card-product-wrapper {
  padding: 12px 10px 20px;
}

.card-product.style-space .card-product-info {
  padding: 0px 10px 20px;
}

.card-product.style-space-2 .card-product-wrapper {
  padding: 12px 10px 20px;
}

.card-product.style-space-2 .card-product-info {
  padding: 0px 10px 20px;
}

.list-color-product {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  align-items: center;
}

.list-color-product .list-color-item {
  width: 20px;
  height: 20px;
  border: 1px solid transparent;
  background-color: transparent;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.list-color-product .list-color-item .swatch-value {
  width: 100%;
  height: 100%;
  border: 2px solid var(--white);
  display: inline-block;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.list-color-product .list-color-item img {
  visibility: hidden;
  width: 18px;
  height: 18px;
  position: absolute;
}

.list-color-product .list-color-item.line {
  border: 1px solid transparent !important;
}

.list-color-product .list-color-item.line .swatch-value {
  position: relative;
}

.list-color-product .list-color-item.line .swatch-value::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid var(--rgba-dark-3);
  top: 0;
  left: 0;
  z-index: 1;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.list-color-product .list-color-item.active,
.list-color-product .list-color-item:hover {
  border-color: var(--dark) !important;
}

.list-color-product .list-color-item.active .swatch-value,
.list-color-product .list-color-item:hover .swatch-value {
  border-color: var(--white);
}

.list-color-product .list-color-item.active .swatch-value::before,
.list-color-product .list-color-item:hover .swatch-value::before {
  border-color: var(--line);
}

.list-color-product.style-2 .list-color-item.active .swatch-value,
.list-color-product.style-2 .list-color-item:hover .swatch-value {
  border-color: #e7ecd2;
}

.list-color-product.style-2 .swatch-value {
  border: 2px solid #e7ecd2;
}

.price-wrap .price-old {
  color: var(--dark);
  opacity: 0.6;
  position: relative;
}

.price-wrap .price-old::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.5px;
  background-color: var(--dark);
  opacity: 0.6;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.price-wrap .price-old.old-line {
  color: var(--line-3);
  opacity: 1;
}

.price-wrap .price-old.old-line::after {
  background-color: var(--line-3);
}

.tf-sticky-btn-atc {
  position: fixed;
  width: 100%;
  bottom: 0;
  z-index: 70;
  box-shadow: 4px -4px 5px rgba(0, 0, 0, 0.03);
  background-color: var(--white);
  transition: all 0.3s linear;
  transform: translateY(100%);
}

.tf-sticky-btn-atc .tf-height-observer {
  padding: 14px 0;
  column-gap: 5px;
}

.tf-sticky-btn-atc .tf-sticky-atc-product {
  flex: 1 0 0%;
  gap: 15px;
}

.tf-sticky-btn-atc .tf-sticky-atc-img {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

.tf-sticky-btn-atc .tf-sticky-atc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.tf-sticky-btn-atc .tf-sticky-atc-variant-price {
  min-width: 249px;
}

.tf-sticky-btn-atc .tf-sticky-atc-title {
  font-size: 16px;
  line-height: 19px;
}

.tf-sticky-btn-atc .tf-sticky-atc-btns,
.tf-sticky-btn-atc .tf-sticky-atc-infos form {
  display: flex;
  gap: 12px;
  align-items: center;
}

.tf-sticky-btn-atc .tf-btn {
  min-width: 190px;
}

.tf-sticky-btn-atc.show {
  transform: translateY(0);
}

/*------------ blog ---------------- */
/* ---------------------------------------------------------
    * Name: Vineta - Multipurpose eCommerce
    * Version: 1.0.0
    * Author: Themesflat
    * Author URI: http://themesflat.com 

	* Abstracts variable

    * Reset css styles

    * Components

        * header
        * footer
        * tabs
        * slider banner
        * button
        * form
        * drop down
        * carousel
        * avatar
        * pop up
        * box icon
        * hover
        * collection
        * product
        * blog
        * testimonial
        * lookbook
        * accordion
        * brand
        * zoom
        * shop
        * cart
        * account

    * section

    * Responsive
 ------------------------------------------------------------------------------ */
/*--------- Abstracts variable ---------- */
.blog-post-item {
  display: grid;
  gap: 24px;
}

.blog-post-item .entry_image {
  border-radius: 16px;
  overflow: hidden;
}

.blog-post-item .entry_image a {
  display: block;
  height: 100%;
}

.blog-post-item .blog-content {
  display: grid;
  gap: 15px;
}

.blog-post-item .entry-meta {
  display: flex;
  gap: 10px 20px;
  align-items: center;
  flex-wrap: wrap;
}

.blog-post-item .br-line {
  width: 1px;
  height: 16px;
  background-color: var(--line);
}

.blog-post-item .entry_author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-post-item .avatar {
  max-width: 38px;
  border-radius: 50%;
  overflow: hidden;
}

.blog-post-item .entry_name {
  font-size: 16px;
  line-height: 25.6px;
}

.blog-post-item.style-2 {
  display: flex;
  gap: 24px;
}

.blog-post-item.style-2 .entry_image {
  max-width: 342px;
  width: 100%;
}

.blog-post-item.style-2 .blog-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.entry-tag {
  display: flex;
  align-items: center;
  gap: 15px;
}

.entry-tag>p {
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
}

.entry-tag .style-list {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.entry-tag .style-list a {
  padding: 9px 23px;
  display: inline-block;
  border-radius: 22px;
  border: 1px solid var(--line);
  font-weight: 500;
  line-height: 17px;
  background-color: transparent;
}

.entry-tag .style-list a:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.entry-tag .style-list .type-life {
  background-color: #ffe1e1;
  border-color: #ffe1e1;
}

.entry-tag .style-list .type-design {
  background-color: #ede2ff;
  border-color: #ede2ff;
}

.entry-tag .style-list .type-bag {
  background-color: #c5ffbb;
  border-color: #c5ffbb;
}

.entry-tag .style-list .type-trick {
  background-color: #c3dbff;
  border-color: #c3dbff;
}

.recent-blog-list {
  display: grid;
  gap: 24px;
}

.recent-blog-list li {
  display: flex;
  gap: 20px;
}

.recent-blog-list .image {
  border-radius: 8px;
  max-width: 98px;
  width: 100%;
  overflow: hidden;
}

.recent-blog-list .post-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-blog {
  display: grid;
  gap: 32px;
}

.sidebar-blog .sb-title {
  margin-bottom: 24px;
}

.sidebar-blog .sb-content {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.sb-banner {
  position: relative;
}

.sb-banner .image {
  border-radius: 16px;
  overflow: hidden;
}

.sb-banner .title {
  font-size: 26px;
  font-weight: 500;
  line-height: 33.2px;
  color: var(--white);
  text-align: center;
  margin-bottom: 16px;
}

.sb-banner .banner-content {
  position: absolute;
  bottom: 84px;
  left: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sb-banner .tf-btn {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  line-height: 19px;
  letter-spacing: -0.03em;
  padding: 12px 33px;
  width: max-content;
}

.wg-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  grid-column: 1/-1;
  width: 100%;
  margin-top: 18px;
}

.wg-pagination .pagination-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--rgba-dark-3);
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
}

.wg-pagination .pagination-item:hover {
  background-color: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}

.wg-pagination .active .pagination-item {
  background-color: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}

.category-blog-list {
  display: grid;
  gap: 5px;
}

.leave-comment-wrap .title {
  font-size: 32px;
  font-weight: 500;
  line-height: 38px;
  color: var(--dark);
  margin-bottom: 48px;
  text-align: center;
}

.news-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.news-item .image-box {
  display: block;
}

.news-item .img-style {
  display: block;
}

.news-item .content {
  padding: 12px;
}

.news-item .content .title {
  margin-bottom: 12px;
}

.news-item .content .btn-readmore {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 15px;
  line-height: 24px;
  color: #404cb7;
  font-weight: 500;
}

.news-item .content .btn-readmore .icon {
  font-size: 15px;
}

.s-blog-single {
  padding-top: 100px;
  padding-bottom: 60px;
}

.s-blog-single .leave-comment-wrap {
  max-width: 952px;
  margin: auto;
}

.sec-blog {
  padding-top: 80px;
  padding-bottom: 176px;
}

.sec-blog.space-blog {
  padding-top: 56px;
}

/*------------ testimonial ---------------- */
/* ---------------------------------------------------------
    * Name: Vineta - Multipurpose eCommerce
    * Version: 1.0.0
    * Author: Themesflat
    * Author URI: http://themesflat.com 

	* Abstracts variable

    * Reset css styles

    * Components

        * header
        * footer
        * tabs
        * slider banner
        * button
        * form
        * drop down
        * carousel
        * avatar
        * pop up
        * box icon
        * hover
        * collection
        * product
        * blog
        * testimonial
        * lookbook
        * accordion
        * brand
        * zoom
        * shop
        * cart
        * account

    * section

    * Responsive
 ------------------------------------------------------------------------------ */
/*--------- Abstracts variable ---------- */
.wg-testimonial {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.wg-testimonial .content-top {
  padding: 12px;
  display: grid;
  gap: 10px;
}

.wg-testimonial .br-line {
  width: 100%;
  height: 1px;
  background-color: var(--line);
}

.wg-testimonial .box-avt {
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.wg-testimonial .box-avt .avatar {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
}

.wg-testimonial .box-avt .name-item {
  display: flex;
  gap: 4px;
  align-items: center;
  flex-wrap: wrap;
}

.wg-testimonial .box-author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wg-testimonial .box-price {
  display: grid;
  gap: 3px;
}

.wg-testimonial.style-row {
  display: flex;
}

.wg-testimonial.style-row .image {
  flex-shrink: 0;
  width: 30%;
}

.wg-testimonial.style-2 .box-author .avt {
  max-width: 28px;
  border-radius: 50%;
  overflow: hidden;
}

.wg-testimonial.style-2 .box-avt .avatar {
  width: 72px;
  height: 72px;
}

.wg-testimonial.style-2 .list-star-default i {
  color: #edcb23;
}

.wg-testimonial.style-2.type-2 {
  padding: 20px;
}

.wg-testimonial.style-2.type-2 .br-line {
  margin: 15px 0px;
}

.wg-testimonial.style-2.type-2 .content-top {
  padding: 0px;
}

.wg-testimonial.style-2.type-2 .box-avt {
  padding: 0px;
}

.wg-testimonial.style-2.type-2 .bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wg-testimonial.style-2 .box-btn .icon {
  font-size: 12px;
}

.box-verified {
  display: flex;
  align-items: center;
  gap: 4px;
}

.list-star-default {
  display: flex;
  align-items: center;
  gap: 5px;
}

.list-star-default i {
  color: #98ab23;
  font-size: 14px;
}

.wrapper-thumbs-tes {
  background-color: #b99272;
  border-radius: 16px;
  overflow: hidden;
}

.wrapper-thumbs-tes .box-right {
  padding: 24px;
  place-content: center;
}

.wrapper-thumbs-tes .box-left {
  display: none;
}

.wrapper-thumbs-tes .box-testimonial-main .list-star-default i {
  color: #e3ff34;
}

.flat-thumbs-tes .img-sw-thumb,
.flat-thumbs-tes .tf-thumb-tes {
  height: 100%;
}

.flat-thumbs-tes .img-sw-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flat-thumbs-tes .sw-dot-default,
.flat-thumbs-tes .box-nav-swiper {
  margin-top: 24px;
}

.flat-thumbs-tes .box-left .img-sw-thumb {
  background-color: var(--white);
}

.wrapper-thumbs-tes-2 .box-right {
  display: none;
}

.wrapper-thumbs-tes-2 .box-left {
  place-content: center;
}

.wrapper-thumbs-tes-2 .img-sw-thumb {
  border-radius: 16px;
  overflow: hidden;
}

.wrapper-thumbs-tes-4 .box-left {
  display: none;
}

.wrapper-thumbs-tes-4 .box-right {
  place-content: center;
}

.wrapper-thumbs-tes-4 .img-sw-thumb {
  border-radius: 16px;
  overflow: hidden;
}

.wrapper-thumbs-tes-4 .box-testimonial-main .box-content {
  display: grid;
  gap: 12px;
}

.wrapper-thumbs-tes-3 .box-right {
  display: none;
}

.wrapper-thumbs-tes-3 .box-left {
  place-content: center;
}

.wrapper-thumbs-tes-3 .img-sw-thumb {
  border-radius: 16px;
  overflow: hidden;
}

.box-testimonial-main {
  display: grid;
  gap: 24px;
}

.box-testimonial-main .content {
  display: grid;
  gap: 20px;
}

.box-testimonial-main .content .title-review {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  text-transform: uppercase;
}

.box-testimonial-main .box-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.box-testimonial-main .box-author .img {
  width: 70px;
  height: 74px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.box-testimonial-main .box-author .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.box-testimonial-main .box-author .info {
  display: grid;
  gap: 4px;
}

.box-testimonial-main .quote {
  font-size: 32px;
}

.wrapper-thumbs-tes-3 .box-testimonial-main .list-star-default .icon-star {
  color: #ffaa47;
}

.wrapper-thumbs-tes-3 .box-testimonial-main .text-review {
  font-size: 20px;
  line-height: 32px;
}

.wg-testimonial-2 .icon {
  font-size: 40px;
}

.wg-testimonial-2 .text {
  margin-top: 24px;
  line-height: 140%;
}

.wg-testimonial-3 {
  border-radius: 16px;
  display: grid;
  gap: 20px;
  margin-bottom: 20px;
}

.wg-testimonial-3 .box-top {
  display: grid;
  gap: 12px;
}

.wg-testimonial-3 .box-top .icon {
  font-size: 42px;
}

.wg-testimonial-3 .box-title-desc {
  display: grid;
  gap: 16px;
}

.wg-testimonial-3 .box-author {
  display: grid;
  gap: 4px;
}

.flat-wrapper-testimonial {
  overflow: hidden;
  padding: 30px;
  position: relative;
  border-radius: 16px;
}

.flat-wrapper-testimonial .img-item-1 {
  right: 0px;
  top: 40px;
  animation: swing 10s infinite ease-in-out;
}

.flat-wrapper-testimonial .img-item-2 {
  left: 16px;
  bottom: 30px;
  animation: swing 10s infinite ease-in-out;
}

.flat-wrapper-testimonial .sw-dot-default {
  margin-top: 0;
}

.flat-wrapper-testimonial .tf-swiper {
  max-width: 929px;
  margin: auto;
}

/*------------ lookbook ---------------- */
/* ---------------------------------------------------------
    * Name: Vineta - Multipurpose eCommerce
    * Version: 1.0.0
    * Author: Themesflat
    * Author URI: http://themesflat.com 

	* Abstracts variable

    * Reset css styles

    * Components

        * header
        * footer
        * tabs
        * slider banner
        * button
        * form
        * drop down
        * carousel
        * avatar
        * pop up
        * box icon
        * hover
        * collection
        * product
        * blog
        * testimonial
        * lookbook
        * accordion
        * brand
        * zoom
        * shop
        * cart
        * account

    * section

    * Responsive
 ------------------------------------------------------------------------------ */
/*--------- Abstracts variable ---------- */
.tf-pin-btn {
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
}

.tf-pin-btn span {
  display: block;
  width: 25px;
  height: 25px;
  border: 9px solid var(--white);
  border-radius: 50%;
  background-color: var(--dark);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.tf-pin-btn span:hover::after,
.tf-pin-btn span:hover::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: solid 1px var(--white);
  border-radius: 50%;
}

.tf-pin-btn span:hover::before {
  animation: ripple-line 2s linear infinite;
}

.tf-pin-btn span:hover::after {
  animation: ripple-line 2s 1s linear infinite;
}

.tf-pin-btn.style-lg span {
  width: 28px;
  height: 28px;
}

.tf-pin-btn.style-hover:hover span {
  background-color: var(--primary);
}

.tf-pin-btn.style-dark {
  width: 28px;
  height: 28px;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.tf-pin-btn.style-dark span {
  background-color: var(--dark);
  width: 12px;
  height: 12px;
  border: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.tf-pin-btn.style-dark:hover {
  background-color: rgba(255, 255, 255, 0.7);
}

.tf-pin-btn.style-dark:hover span {
  background-color: var(--primary);
}

.tf-pin-btn2 {
  cursor: pointer;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.tf-pin-btn2 span {
  width: 9px;
  height: 9px;
  background-color: var(--dark);
  border-radius: 50%;
}

.tf-pin-btn2::after,
.tf-pin-btn2::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  border-radius: 9999px;
  animation: ripple-fill 3s infinite;
}

.tf-pin-btn2::after {
  animation-delay: 0.5s;
}

.tf-pin-btn2::before {
  animation-delay: 0.9s;
}

.tf-pin-btn2.active {
  width: 32px;
  height: 32px;
}

.tf-pin-btn2.active span {
  width: 12px;
  height: 12px;
}

.collection-position-3 {
  position: relative;
}

.cls-lookbook {
  overflow: unset;
  position: relative;
}

.cls-lookbook .img-style {
  border-radius: 20px;
  display: block;
}

.cls-lookbook .lookbook-item {
  position: absolute;
  left: 30%;
  bottom: 32%;
}

.cls-lookbook .lookbook-item.position1 {
  left: 40%;
  bottom: 12%;
}

.cls-lookbook .lookbook-item.position2 {
  left: 32%;
  bottom: 18%;
}

.cls-lookbook .lookbook-item.position3 {
  left: 58%;
  bottom: 10%;
}

.cls-lookbook .lookbook-item.position4 {
  left: 36%;
  bottom: 45%;
}

.cls-lookbook .lookbook-item.position5 {
  left: 70%;
  bottom: 16%;
}

.tf-sw-lookbook .cls-lookbook {
  width: 100%;
  height: 100%;
}

.lookbook-item .dropdown-menu {
  border: none;
  border-radius: 0;
  background: transparent;
  padding: 0;
  z-index: 99;
}

.loobook-product {
  padding: 14px;
  background-color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
}

.loobook-product .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.loobook-product .info {
  display: grid;
  gap: 4px;
}

.loobook-product .price-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}

.loobook-product .img-style {
  border-radius: 0;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
}

.loobook-product .btn-lookbook {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--dark);
  flex-shrink: 0;
  font-size: 17px;
}

.loobook-product .btn-lookbook i {
  color: var(--white);
}

.loobook-product .btn-lookbook:hover {
  background-color: var(--primary);
}

.loobook-product .price-old {
  color: #c9c9c9;
  opacity: 1;
}

.loobook-product .price-old::after {
  background-color: #c9c9c9;
}

.loobook-product::before {
  content: "";
  position: absolute;
  border-width: 8px;
  border-style: solid;
}

.loobook-product.style-row {
  flex-direction: row;
}

.loobook-product.style-row .img-style {
  max-width: 72px;
}

.dropup .loobook-product {
  margin-bottom: 20px;
}

.dropup .loobook-product::before {
  border-color: var(--white) transparent transparent transparent;
  bottom: -4%;
  left: 50%;
  transform: translateX(-50%);
}

.lookbook-item .dropend .dropdown-menu {
  --bs-dropdown-min-width: max-content;
  margin-left: 15px !important;
}

.lookbook-item .dropend .loobook-product {
  margin: -36px 0px;
}

.sw-lookbook-wrap {
  padding-top: 70px;
  margin-top: -70px;
}

.banner-lookbook {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.banner-lookbook img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-lookbook .lookbook-item {
  position: absolute;
  left: 52%;
  bottom: 32%;
}

.banner-lookbook .lookbook-item.position1 {
  left: 58%;
  bottom: 27%;
}

.banner-lookbook .lookbook-item.position2 {
  left: 32%;
  bottom: 14%;
}

.banner-lookbook .lookbook-item.position3 {
  left: 41%;
  bottom: 82%;
}

.dropdown-custom .dropdown-menu {
  --bs-dropdown-min-width: max-content;
}

.flat-with-text-lookbook {
  align-items: center;
}

.flat-with-text-lookbook .banner-img {
  position: relative;
}

.flat-with-text-lookbook .banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flat-with-text-lookbook .banner-img .tf-pin-btn {
  position: absolute;
}

.flat-with-text-lookbook .banner-img .tf-pin-btn.pin-1 {
  top: 40%;
  left: 43%;
}

.flat-with-text-lookbook .banner-img .tf-pin-btn.pin-2 {
  top: 85%;
  left: 43%;
}

.flat-with-text-lookbook .lookbook-content .box-title {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.flat-with-text-lookbook .lookbook-content .swiper {
  width: 100%;
}

.flat-with-text-lookbook .lookbook-content .total-lb {
  margin-top: 20px;
}

.flat-with-text-lookbook-v2 .banner-img {
  position: relative;
  width: 100%;
}

.flat-with-text-lookbook-v2 .banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flat-with-text-lookbook-v2 .banner-img .tf-pin-btn {
  position: absolute;
}

.flat-with-text-lookbook-v2 .banner-img .tf-pin-btn.pin-1 {
  top: 42%;
  left: 25%;
}

.flat-with-text-lookbook-v2 .banner-img .tf-pin-btn.pin-2 {
  top: 30%;
  left: 44%;
}

.flat-with-text-lookbook-v2 .banner-img .tf-pin-btn.pin-3 {
  top: 62%;
  left: 80%;
}

.flat-with-text-lookbook-v2 .lookbook-content {
  padding: 0px 15px 40px;
  width: 100%;
}

.flat-with-text-lookbook-v2 .lookbook-content .box-title {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.flat-with-text-lookbook-v2 .lookbook-content .swiper {
  width: 100%;
}

.flat-with-text-lookbook-v2 .lookbook-content .total-lb {
  margin-top: 20px;
}

.flat-wrapper-lookbook {
  display: block;
}

.flat-wrapper-lookbook .image-lookbook {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.flat-wrapper-lookbook .image-lookbook img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flat-wrapper-lookbook .image-lookbook .tf-pin-btn2 {
  position: absolute;
}

.flat-wrapper-lookbook .image-lookbook .pin-1 {
  left: 18%;
  bottom: 35%;
}

.flat-wrapper-lookbook .image-lookbook .pin-2 {
  left: 50%;
  bottom: 30%;
}

.flat-wrapper-lookbook .image-lookbook .pin-3 {
  right: 2%;
  top: 47%;
}

.flat-wrapper-lookbook .col-left {
  padding-bottom: 24px;
}

.flat-wrapper-lookbook .card-product .tf-btn {
  font-size: 18px;
  line-height: 22px;
  text-transform: none;
}

.slider-wrap-lb {
  position: relative;
}

.slider-wrap-lb .title {
  margin-bottom: 24px;
}

.slider-wrap-lb .swiper-button-prev {
  left: 0;
}

.slider-wrap-lb .swiper-button-next {
  right: 0;
}

.slider-wrap-lb .nav-swiper {
  top: 50%;
}

.slider-wrap-lb .card-product .card-product-info {
  padding: 20px 2px;
}

@keyframes ripple-line {
  to {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes ripple-fill {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  }

  50% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/*------------ accordion ---------------- */
.widget-accordion {
  border-bottom: 1px solid var(--line);
}

.widget-accordion .accordion-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0px;
  font-weight: 500;
  font-size: 16px;
  line-height: 19.2px;
  cursor: pointer;
}

.widget-accordion .accordion-title .icon {
  font-size: 8px;
  transition: transform 0.35s linear;
}

.widget-accordion .accordion-title:not(.collapsed) .icon {
  transform: rotate(180deg);
}

.widget-accordion .accordion-body {
  padding: 20px 0px;
}

.widget-accordion:first-child {
  border-top: 1px solid var(--line);
}

/*------------ brand ---------------- */
/* ---------------------------------------------------------
    * Name: Vineta - Multipurpose eCommerce
    * Version: 1.0.0
    * Author: Themesflat
    * Author URI: http://themesflat.com 

	* Abstracts variable

    * Reset css styles

    * Components

        * header
        * footer
        * tabs
        * slider banner
        * button
        * form
        * drop down
        * carousel
        * avatar
        * pop up
        * box icon
        * hover
        * collection
        * product
        * blog
        * testimonial
        * lookbook
        * accordion
        * brand
        * zoom
        * shop
        * cart
        * account

    * section

    * Responsive
 ------------------------------------------------------------------------------ */
/*--------- Abstracts variable ---------- */
.brand-item {
  max-width: 240px;
  height: 114px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.brand-item img {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.tf-brand:hover .brand-item {
  opacity: 0.4;
}

.tf-brand .brand-item:hover {
  opacity: 1;
}

.sw-brand {
  border: 1px solid var(--line);
}

.sw-brand .brand-item {
  max-width: 100%;
  height: 100%;
}

.sw-brand:hover .swiper-slide img {
  opacity: 0.4;
}

.sw-brand .swiper-slide:hover img {
  opacity: 1;
}

.sw-brand .swiper-slide:not(:last-child) .brand-item {
  border-right: 1px solid var(--line);
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.gallery-item .box-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--white);
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 12px;
}

.gallery-item .box-icon:hover {
  background-color: var(--dark);
  color: var(--white);
}

/*------------ zoom ---------------- */
/* ---------------------------------------------------------
    * Name: Vineta - Multipurpose eCommerce
    * Version: 1.0.0
    * Author: Themesflat
    * Author URI: http://themesflat.com 

	* Abstracts variable

    * Reset css styles

    * Components

        * header
        * footer
        * tabs
        * slider banner
        * button
        * form
        * drop down
        * carousel
        * avatar
        * pop up
        * box icon
        * hover
        * collection
        * product
        * blog
        * testimonial
        * lookbook
        * accordion
        * brand
        * zoom
        * shop
        * cart
        * account

    * section

    * Responsive
 ------------------------------------------------------------------------------ */
/*--------- Abstracts variable ---------- */
.tf-zoom-main {
  position: sticky;
  top: 30px;
  z-index: 50;
}

.tf-zoom-main .drift-zoom-pane {
  top: 0;
  left: 0;
  height: 520px;
  max-width: 520px;
  width: 100%;
  background: #fff;
  -webkit-transform: translate3d(0, 0, 0);
  box-shadow: 0 1px 5px rgba(127, 127, 127, 0.0196078431), 0 5px 18px rgba(127, 127, 127, 0.2);
  z-index: 3;
}

.drift-bounding-box.drift-open {
  background: rgba(255, 255, 255, 0.2509803922);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.4) inset;
  z-index: 5000;
}

.drift-zoom-pane {
  z-index: 5000;
}

.section-image-zoom .other-image-zoom {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.pswp__bg {
  background: var(--white);
}

.pswp__icn {
  fill: rgb(34, 34, 34);
  color: var(--white);
}

.pswp__icn .pswp__icn-shadow {
  stroke: var(--white);
  stroke-width: 1px;
  fill: none;
}

.pswp__counter {
  color: #222;
  text-shadow: 1px 1px 3px #ffffff;
}

.tf-model-viewer {
  width: 100%;
  height: 100%;
  position: relative;
}

.tf-model-viewer model-viewer {
  display: block;
  position: relative;
  z-index: 5;
  width: 100%;
  height: 100%;
}

.tf-model-viewer model-viewer.disabled {
  pointer-events: none;
}

.tf-model-viewer.active model-viewer {
  pointer-events: all;
}

.tf-model-viewer.active .wrap-btn-viewer {
  display: none;
}

/*------------ shop ---------------- */
/* ---------------------------------------------------------
    * Name: Vineta - Multipurpose eCommerce
    * Version: 1.0.0
    * Author: Themesflat
    * Author URI: http://themesflat.com 

	* Abstracts variable

    * Reset css styles

    * Components

        * header
        * footer
        * tabs
        * slider banner
        * button
        * form
        * drop down
        * carousel
        * avatar
        * pop up
        * box icon
        * hover
        * collection
        * product
        * blog
        * testimonial
        * lookbook
        * accordion
        * brand
        * zoom
        * shop
        * cart
        * account

    * section

    * Responsive
 ------------------------------------------------------------------------------ */
/*--------- Abstracts variable ---------- */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.noUi-target {
  position: relative;
  direction: ltr;
}

.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.noUi-connects {
  overflow: hidden;
  z-index: 0;
}

.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}

html:not([dir=rtl]) .noUi-horizontal .noUi-origin {
  left: auto;
  right: 0;
}

.noUi-vertical .noUi-origin {
  width: 0;
}

.noUi-horizontal .noUi-origin {
  height: 0;
}

.noUi-handle {
  position: absolute;
}

.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  -webkit-transition: transform 0.3s;
  transition: transform 0.3s;
}

.noUi-state-drag * {
  cursor: inherit !important;
}

.noUi-horizontal {
  height: 18px;
}

.noUi-horizontal .noUi-handle {
  width: 34px;
  height: 28px;
  left: -17px;
  top: -5px;
}

.noUi-vertical {
  width: 18px;
}

.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  left: -6px;
  top: -17px;
}

html:not([dir=rtl]) .noUi-horizontal .noUi-handle {
  right: -17px;
  left: auto;
}

.noUi-draggable {
  cursor: ew-resize;
}

.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}

.noUi-handle:after {
  left: 17px;
}

.noUi-vertical .noUi-handle:after,
.noUi-vertical .noUi-handle:before {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px;
}

.noUi-vertical .noUi-handle:after {
  top: 17px;
}

[disabled] .noUi-connect {
  background: #b8b8b8;
}

[disabled] .noUi-handle,
[disabled].noUi-handle,
[disabled].noUi-target {
  cursor: not-allowed;
}

.noUi-pips,
.noUi-pips * {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.noUi-pips {
  position: absolute;
  color: #999;
}

.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}

.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}

.noUi-marker {
  position: absolute;
  background: #ccc;
}

.noUi-marker-sub {
  background: #aaa;
}

.noUi-marker-large {
  background: #aaa;
}

.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}

.noUi-value-horizontal {
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}

.noUi-rtl .noUi-value-horizontal {
  -webkit-transform: translate(50%, 50%);
  transform: translate(50%, 50%);
}

.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}

.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}

.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}

.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}

.noUi-value-vertical {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%, 0);
  padding-left: 25px;
}

.noUi-rtl .noUi-value-vertical {
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
}

.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}

.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}

.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}

.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap;
}

.noUi-horizontal .noUi-tooltip {
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}

.noUi-vertical .noUi-tooltip {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}

.noUi-horizontal {
  height: 2px;
}

.noUi-target {
  border: 0;
}

.noUi-base .noUi-connects {
  border-radius: 999px;
  background-color: var(--rgba-dark-3);
}

.noUi-connect {
  background-color: var(--primary);
}

.noUi-horizontal .noUi-handle,
.noUi-vertical .noUi-handle {
  height: 12px;
  width: 12px;
  border-radius: 50px;
  background-color: var(--primary);
  box-shadow: unset;
  cursor: pointer;
}

.noUi-horizontal .noUi-handle::before,
.noUi-horizontal .noUi-handle::after,
.noUi-vertical .noUi-handle::before,
.noUi-vertical .noUi-handle::after {
  content: none;
}

html:not([dir=rtl]) .noUi-horizontal .noUi-handle {
  right: -5px;
}

.tf-btn-filter {
  display: inline-flex;
  cursor: pointer;
  gap: 5px;
  color: var(--dark);
  border: solid 1px var(--line);
  border-radius: 27px;
  text-transform: capitalize;
  padding: 10px 16px;
  font-weight: 400;
  background-color: var(--white);
  max-width: 100%;
  text-wrap: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tf-btn-filter .icon {
  font-size: 16px;
}

.tf-btn-filter .icon-close {
  font-size: 14px;
}

.tf-btn-filter:hover {
  border-color: var(--dark);
}

.tf-btn-filter.active {
  background-color: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}

.tf-btn-filter .text {
  font-size: 14px;
  line-height: 20px;
}

.widget-facet:not(:last-child) {
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
  padding-bottom: 24px;
}

.widget-facet .facet-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0px;
  margin-bottom: 24px;
  cursor: pointer;
  color: var(--dark);
}

.widget-facet .facet-title .icon {
  transition: transform 0.35s linear;
  font-size: 8px;
}

.widget-facet .facet-title.collapsed .icon {
  transform: rotate(180deg);
}

.widget-facet .cate-item:not(:last-child) {
  margin-bottom: 12px;
}

.canvas-filter .widget-facet .facet-title {
  margin-bottom: 0;
}

.canvas-filter .widget-facet .collapse-body {
  padding-top: 24px;
}

.current-scrollbar {
  max-height: 200px;
  overflow-y: auto;
  margin-right: 5px;
}

.current-scrollbar::-webkit-scrollbar {
  width: 2px;
}

.current-scrollbar::-webkit-scrollbar-track {
  background-color: var(--bg-scrollbar-thumb);
}

.current-scrollbar::-webkit-scrollbar-thumb {
  background: var(--dark);
}

.filter-group-check .list-item {
  display: flex;
  gap: 10px;
  align-items: center;
  cursor: pointer;
}

.filter-group-check .list-item .label {
  font-size: 14px;
  line-height: 20px;
  color: var(--dark);
  cursor: pointer;
}

.filter-group-check .list-item .tf-check:checked~.label {
  opacity: 1;
}

.filter-group-check .list-item:not(:last-child) {
  margin-bottom: 10px;
}

.filter-color-box {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  column-gap: 12px;
}

.filter-color-box .color-item {
  width: 32px;
  height: 32px;
  display: block;
  border-radius: 50%;
  border: 1px solid transparent;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: var(--white);
  cursor: pointer;
}

.filter-color-box .color-item .color {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
}

.filter-color-box .color-item.line {
  border-color: var(--rgba-dark-3);
}

.filter-color-box .color-item.active {
  padding: 4px;
  border-color: var(--dark) !important;
}

.filter-color-box .color-text {
  display: none;
}

.filter-size-box {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-size-box .size-item {
  padding: 6px 14px;
  font-size: 14px;
  line-height: 22.4px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 11px;
  border: 1px solid var(--rgba-dark-3);
  color: var(--dark);
}

.filter-size-box .size-item.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.widget-price {
  display: grid;
  gap: 16px;
}

.widget-price .price-val-range {
  padding: 0px 8px;
}

.widget-price .reset-price {
  font-size: 12px;
  line-height: 19.2px;
  text-decoration: underline;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.widget-price .reset-price:hover {
  color: var(--primary);
}

.widget-price .price-box,
.widget-price .box-value-price {
  display: flex;
  gap: 8px;
}

.widget-price .price-box {
  color: var(--primary);
}

.widget-price .price-val {
  font-size: 14px;
  line-height: 20px;
  color: var(--primary);
  position: relative;
}

.widget-price .price-val::before {
  content: attr(data-currency);
}

.tf-shop-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 30px;
}

.tf-shop-control.mb1 {
  margin-bottom: 24px;
}

.tf-filter-dropdown {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.tf-filter-dropdown .meta-dropdown-filter {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.tf-filter-dropdown .title-filter {
  font-weight: 500;
  font-size: 16px;
  line-height: 19.2px;
  color: var(--dark);
}

.tf-group-filter {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tf-control-layout {
  display: flex;
  align-items: center;
}

.tf-control-layout .tf-view-layout-switch {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.tf-control-layout .tf-view-layout-switch:hover .item span,
.tf-control-layout .tf-view-layout-switch.active .item span {
  background-color: var(--dark);
}

.icon-list {
  display: grid;
  gap: 2px;
}

.icon-list span {
  display: inline-block;
  width: 18px;
  height: 3px;
  border-radius: 2px;
  background-color: var(--rgba-dark-3);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.icon-grid-2 {
  display: grid;
  gap: 2px;
  grid-template-columns: 1fr 1fr;
}

.icon-grid-2 span {
  display: inline-block;
  width: 3px;
  height: 18px;
  border-radius: 2px;
  background-color: var(--rgba-dark-3);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.icon-grid-3 {
  display: grid;
  gap: 2px;
  grid-template-columns: 1fr 1fr 1fr;
}

.icon-grid-3 span {
  display: inline-block;
  width: 3px;
  height: 18px;
  border-radius: 2px;
  background-color: var(--rgba-dark-3);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.icon-grid-4 {
  display: grid;
  gap: 2px;
  grid-template-columns: repeat(4, 1fr);
}

.icon-grid-4 span {
  display: inline-block;
  width: 3px;
  height: 18px;
  border-radius: 2px;
  background-color: var(--rgba-dark-3);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.icon-grid-5 {
  display: grid;
  gap: 2px;
  grid-template-columns: repeat(5, 1fr);
}

.icon-grid-5 span {
  display: inline-block;
  width: 3px;
  height: 18px;
  border-radius: 2px;
  background-color: var(--rgba-dark-3);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.icon-grid-6 {
  display: grid;
  gap: 2px;
  grid-template-columns: repeat(6, 1fr);
}

.icon-grid-6 span {
  display: inline-block;
  width: 3px;
  height: 18px;
  border-radius: 2px;
  background-color: var(--rgba-dark-3);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.wrapper-control-shop {
  position: relative;
}

.wrapper-control-shop .wg-pagination {
  margin-top: 15px;
}

.wrapper-control-shop .tf-list-layout {
  display: grid;
  gap: 24px;
}

.wrapper-control-shop .tf-list-layout .wg-pagination {
  margin-top: 30px;
}

.wrapper-control-shop.loading-shop * {
  display: none;
}

.wrapper-control-shop.loading-shop::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  border: 2px solid transparent;
  border-top: 2px solid var(--dark);
  border-right: 2px solid var(--dark);
  border-radius: 50%;
  animation: spin 0.5s linear infinite;
  transform: translate(-50%, -50%);
  z-index: 10000;
}

.wrapper-shop {
  transition: all 0.3s ease-in-out;
  animation: fadeShop 0.5s ease-in-out;
}

@keyframes fadeShop {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.listLayout-wrapper #product-count-grid {
  display: none;
}

.listLayout-wrapper #product-count-list {
  display: block;
}

.gridLayout-wrapper #product-count-grid {
  display: block;
}

.gridLayout-wrapper #product-count-list {
  display: none;
}

.meta-filter-shop {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 24px;
}

.meta-filter-shop .count-text {
  font-size: 14px;
  line-height: 22.4px;
  color: var(--dark);
  position: relative;
}

.meta-filter-shop .count-text .count {
  display: inline-block;
  margin-right: 4px;
}

.meta-filter-shop #applied-filters {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.meta-filter-shop .filter-tag {
  font-size: 14px;
  line-height: 22.4px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.meta-filter-shop .filter-tag .remove-tag {
  font-size: 10px;
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: left;
}

.meta-filter-shop .filter-tag:hover {
  border-color: var(--dark);
}

.meta-filter-shop .remove-all-filters {
  padding: 5px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 22.4px;
  border-color: transparent;
  background-color: transparent;
  color: var(--dark);
  font-weight: 400;
  border-radius: 11px;
}

.meta-filter-shop .remove-all-filters .icon {
  font-size: 10px;
}

.meta-filter-shop .remove-all-filters:hover {
  border-color: var(--dark);
}

.sidebar-filter {
  background-color: var(--white);
  transition: transform 0.3s ease-in-out;
}

.overlay-filter {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  width: 100vw;
  height: 100vh;
  background-color: var(--backdrop);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.15s linear;
}

.overlay-filter.show {
  opacity: 1;
  visibility: visible;
}

.loadItem.hidden {
  display: none;
}

/*------------ shop ---------------- */
/* ---------------------------------------------------------
    * Name: Vineta - Multipurpose eCommerce
    * Version: 1.0.0
    * Author: Themesflat
    * Author URI: http://themesflat.com 

	* Abstracts variable

    * Reset css styles

    * Components

        * header
        * footer
        * tabs
        * slider banner
        * button
        * form
        * drop down
        * carousel
        * avatar
        * pop up
        * box icon
        * hover
        * collection
        * product
        * blog
        * testimonial
        * lookbook
        * accordion
        * brand
        * zoom
        * shop
        * cart
        * account

    * section

    * Responsive
 ------------------------------------------------------------------------------ */
/*--------- Abstracts variable ---------- */
.popup-shopping-cart .modal-content {
  flex-direction: column;
}

.popup-shopping-cart .wrap {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.popup-shopping-cart .tf-mini-cart-threshold {
  padding: 24px 32px 21px;
}

.popup-shopping-cart .tf-mini-cart-threshold .text {
  font-size: 14px;
  line-height: 22.4px;
  margin-bottom: 20px;
}

.popup-shopping-cart .tf-mini-cart-threshold .tf-progress-bar {
  margin-top: 12px;
  margin-bottom: 16px;
}

.popup-shopping-cart .tf-mini-cart-wrap {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
}

.popup-shopping-cart .tf-minicart-recommendations {
  padding: 24px 32px;
}

.popup-shopping-cart .tf-minicart-recommendations .tf-minicart-recommendations-heading {
  margin-bottom: 24px;
}

.popup-shopping-cart .tf-minicart-recommendations .tf-minicart-recommendations-heading .nav-swiper {
  position: unset;
}

.popup-shopping-cart .tf-minicart-recommendations .tf-mini-cart-item {
  padding: 9px;
  gap: 20px;
}

.popup-shopping-cart .tf-minicart-recommendations .tf-mini-cart-item .tf-mini-cart-image {
  border-radius: 8px;
}

.popup-shopping-cart .tf-minicart-recommendations .tf-mini-cart-item .tf-mini-cart-image a {
  width: 100%;
}

.popup-shopping-cart .tf-minicart-recommendations .tf-mini-cart-item .tf-btn {
  padding: 9px 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 16.8px;
}

.popup-shopping-cart .tf-mini-cart-bottom {
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1019607843);
  flex-shrink: 0;
}

.popup-shopping-cart .tf-mini-cart-tool {
  padding: 0 32px;
  height: 58px;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid rgba(161, 161, 161, 0.2);
}

.popup-shopping-cart .tf-mini-cart-tool .tf-mini-cart-tool-btn {
  width: 100%;
  height: 100%;
  text-align: center;
  cursor: pointer;
  place-content: center;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: rgba(0, 0, 0, 0.8);
}

.popup-shopping-cart .tf-mini-cart-tool .tf-mini-cart-tool-btn .icon {
  margin-bottom: 6px;
  font-size: 22px;
  color: #98a2b3;
}

.popup-shopping-cart .tf-mini-cart-bottom-wrap {
  padding: 24px 32px 34px;
}

.popup-shopping-cart .tf-mini-cart-bottom-wrap .tf-cart-totals-discounts {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.popup-shopping-cart .tf-mini-cart-bottom-wrap .tf-cart-tax {
  opacity: 0.8;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 15px;
}

.popup-shopping-cart .tf-mini-cart-bottom-wrap .tf-cart-checkbox {
  margin-bottom: 32px;
}

.popup-shopping-cart .tf-mini-cart-bottom-wrap .tf-mini-cart-view-checkout {
  display: flex;
  gap: 10px;
}

.popup-shopping-cart.style-2 {
  max-width: 100% !important;
}

.popup-shopping-cart.style-2 .modal-content {
  max-width: 748px !important;
}

.popup-shopping-cart.style-2 .canvas-wrapper {
  display: flex;
  flex-direction: column;
}

.popup-shopping-cart.style-2 .also-like-product {
  position: relative;
}

.popup-shopping-cart.style-2 .also-like-product .also-like-product-wrap {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 15px 15px 5px;
}

.popup-shopping-cart.style-2 .also-like-product .also-like-product-wrap::-webkit-scrollbar {
  height: 4px;
}

.popup-shopping-cart.style-2 .also-like-product .also-like-product-wrap::-webkit-scrollbar-thumb {
  background: var(--primary);
}

.popup-shopping-cart.style-2 .also-like-product .also-like-product-wrap::-webkit-scrollbar-track {
  background: var(--line);
}

.popup-shopping-cart.style-2 .also-like-product .tf-mini-cart-item {
  padding: 0;
  gap: 12px;
  min-width: 225px;
}

.popup-shopping-cart.style-2 .also-like-product .tf-mini-cart-item .tf-mini-cart-image {
  width: 95px;
  height: 126px;
  border-radius: 8px;
  position: relative;
}

.popup-shopping-cart.style-2 .also-like-product .tf-mini-cart-item .tf-mini-cart-image a {
  width: 100%;
}

.popup-shopping-cart.style-2 .also-like-product .tf-mini-cart-item .on-sale-wrap {
  position: absolute;
  top: 6px;
  left: 6px;
  padding: 5px 10px;
  border-radius: 99px;
  background-color: var(--primary);
  color: var(--white);
}

.popup-shopping-cart.style-2 .also-like-product .tf-mini-cart-item .tf-mini-cart-info {
  gap: 4px;
  align-items: center;
}

.popup-shopping-cart.style-2 .also-like-product .tf-mini-cart-item .tf-mini-cart-info .title {
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

.popup-shopping-cart.style-2 .also-like-product .tf-mini-cart-item .price-wrap {
  margin-bottom: 4px;
}

.popup-shopping-cart.style-2 .also-like-product .tf-mini-cart-item .tf-btn {
  padding: 9px 19px;
  font-size: 14px;
  font-weight: 500;
  line-height: 16.8px;
}

.popup-shopping-cart.style-2 .popup-shopping-cart-main {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  border-left: 1px solid var(--line);
  overflow: hidden;
}

.popup-shopping-cart.style-2 .popup-shopping-cart-main .tf-mini-cart-sroll {
  padding-bottom: 15px;
}

.popup-shopping-cart.style-empty .cart-empty-wrap {
  text-align: center;
  padding: 0 15px;
}

.popup-shopping-cart.style-empty .cart-empty-wrap img {
  width: 100px;
}

.popup-shopping-cart.style-empty .cart-empty-wrap p,
.popup-shopping-cart.style-empty .cart-empty-wrap img {
  margin-bottom: 15px;
}

.popup-shopping-cart.style-empty .tf-mini-cart-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tf-mini-cart-main {
  flex: 1 1 auto;
  position: relative;
}

.tf-mini-cart-sroll {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: auto;
}

.tf-mini-cart-sroll::-webkit-scrollbar {
  width: 8px;
}

.tf-mini-cart-sroll::-webkit-scrollbar-thumb {
  background: var(--primary);
}

.tf-mini-cart-sroll::-webkit-scrollbar-track {
  background: var(--line);
}

.tf-mini-cart-items {
  display: flex;
  gap: 12px;
  flex-direction: column;
}

.tf-mini-cart-item {
  padding: 0 32px;
  display: flex;
  gap: 10px;
}

.tf-mini-cart-item .tf-mini-cart-image {
  display: block;
  width: 95px;
  height: auto;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
}

.tf-mini-cart-item .tf-mini-cart-image a {
  width: 100%;
  height: 100%;
  display: block;
}

.tf-mini-cart-item .tf-mini-cart-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tf-mini-cart-item .tf-mini-cart-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tf-mini-cart-item .tf-mini-cart-info .wg-quantity {
  width: 90px;
}

.tf-mini-cart-item .tf-mini-cart-info .edit {
  display: flex;
  font-size: 10px;
  line-height: 10px;
}

.tf-mini-cart-item .remove {
  cursor: pointer;
}

.tf-mini-cart-tool-openable {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(100%);
  transition: transform 0.25s ease-in-out;
  z-index: 70;
}

.tf-mini-cart-tool-openable.open {
  transform: translateY(0);
}

.tf-mini-cart-tool-openable.open>.overplay {
  opacity: 1;
  visibility: visible;
}

.tf-mini-cart-tool-openable.open .tf-mini-cart-tool-content {
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
}

.tf-mini-cart-tool-openable>.overplay {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 200vh;
  right: 0;
  background-color: rgba(5, 5, 5, 0.4);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.tf-mini-cart-tool-openable .tf-mini-cart-tool-close {
  cursor: pointer;
}

.tf-mini-cart-tool-openable .tf-btn {
  height: 47px;
}

.tf-mini-cart-tool-openable .tf-mini-cart-tool-content {
  position: relative;
  z-index: 80;
  padding: 32px 36px;
  background-color: var(--white);
}

.tf-mini-cart-tool-openable .tf-mini-cart-tool-content .tf-mini-cart-tool-text {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.tf-mini-cart-tool-openable .tf-mini-cart-tool-content .tf-mini-cart-tool-text .icon {
  width: 33px;
  height: 33px;
  border: 1px solid var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--dark);
}

.tf-mini-cart-tool-openable .tf-mini-cart-tool-content .tf-cart-tool-btns {
  display: flex;
  gap: 30px;
  align-items: center;
}

.tf-mini-cart-tool-openable .tf-mini-cart-tool-content .tf-cart-tool-btns .tf-mini-cart-tool-primary {
  text-decoration: underline;
  text-underline-offset: 8px;
}

.tf-mini-cart-tool-openable.add-note textarea {
  height: 148px;
  margin-bottom: 24px;
}

.tf-mini-cart-tool-openable.coupon .tf-mini-cart-tool-text1 {
  margin-bottom: 7px;
}

.tf-mini-cart-tool-openable.coupon input {
  margin-bottom: 90px;
}

.tf-mini-cart-tool-openable.add-gift .tf-mini-cart-tool-text1 {
  margin-bottom: 127px;
}

.tf-mini-cart-tool-openable.estimate-shipping select {
  height: 49px;
  border-radius: 6px;
}

.tf-mini-cart-tool-openable.estimate-shipping .field {
  margin-bottom: 14px;
}

.tf-mini-cart-tool-openable.estimate-shipping .field p {
  margin-bottom: 8px;
}

.tf-mini-cart-tool-openable.estimate-shipping .tf-cart-tool-btns {
  margin-top: 30px;
}

.tf-mini-cart-tool-openable.estimate-shipping .error {
  color: #ff5757;
}

.tf-mini-cart-tool-openable.estimate-shipping .success .standard {
  color: #46ba4c;
  margin-top: 10px;
}

.tf-progress-ship {
  width: 100%;
  background-color: var(--line-3);
  height: 8px;
  position: relative;
  border-radius: 16px;
}

.tf-progress-ship .value {
  height: 100%;
  background: var(--primary);
  position: relative;
  transition: width 2s ease;
  border-radius: 16px;
}

.tf-progress-ship .icon {
  position: absolute;
  left: 95%;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  border: 3px solid #ffb5b5;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  border-radius: 50%;
  font-size: 16px;
  color: var(--white);
}

.tf-cart-head .title {
  margin-bottom: 35px;
}

.tf-cart-head .tf-progress-ship {
  background-color: var(--line-4);
}

.tf-cart-head .tf-progress-ship .value {
  background-color: #ff9752;
}

.tf-cart-head .tf-progress-ship .icon {
  background-color: #ff9752;
  border-color: #ffd1b3;
  font-size: 18px;
  width: 38px;
  height: 38px;
}

.table-page-cart {
  border-spacing: 0;
  border-collapse: collapse;
  margin-bottom: 30px;
  width: 100%;
  line-height: 1.4;
}

.table-page-cart thead tr {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.table-page-cart thead tr th {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  padding-top: 15px;
  padding-bottom: 15px;
  text-align: center;
}

.table-page-cart td {
  padding: 18px 9px;
}

.table-page-cart .tf-cart-item {
  border-bottom: 1px solid var(--line);
}

.table-page-cart .tf-cart-item td:first-child {
  text-align: start;
  padding-left: 0;
}

.table-page-cart .tf-cart-item .wg-quantity {
  padding: 9px 6px;
  margin: auto;
}

.table-page-cart .tf-cart-item .wg-quantity .quantity-product {
  width: 30px;
  height: 30px;
  font-size: 14px;
  line-height: 16.8px;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
}

.table-page-cart .tf-cart-item .wg-quantity .btn-quantity {
  width: 30px;
  height: 30px;
  align-items: flex-start;
  font-size: 20px;
}

.table-page-cart .tf-cart-item .tf-cart-item_total {
  width: 18%;
}

.table-page-cart .tf-cart-item_product {
  display: flex;
  align-items: center;
}

.table-page-cart .tf-cart-item_product .img-box {
  max-width: 98px;
  max-height: 130px;
  margin-right: 10px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}

.table-page-cart .tf-cart-item_product .cart-info .name {
  margin-bottom: 10px;
}

.table-page-cart .tf-cart-item_product .cart-info .variants {
  margin-bottom: 32px;
  font-size: 12px;
  line-height: 14.4px;
  color: var(--rgba-dark);
}

.table-page-cart .tf-cart-item_product .cart-info .remove-cart {
  font-size: 12px;
  line-height: 14.4px;
  color: var(--rgba-dark);
  text-decoration: underline;
}

.tf-page-cart-main .check-gift {
  display: flex;
  gap: 8px;
}

.tf-page-cart-main .check-gift .tf-check {
  margin-top: 2px;
}

.tf-page-cart-main .check-gift .label {
  font-size: 14px;
  line-height: 22.4px;
}

.tf-page-cart-main .box-ip-discount {
  margin: 24px 0px;
  max-width: 443px;
  display: flex;
  gap: 6px;
}

.tf-page-cart-main .box-ip-discount .tf-btn {
  padding-top: 12px;
  padding-bottom: 12px;
}

.tf-page-cart-main .box-ip-discount input {
  padding-left: 12px;
  padding-right: 12px;
}

.tf-page-cart-main .cart-note label {
  margin-bottom: 10px;
}

.tf-page-cart-main .cart-note textarea {
  height: 206px;
}

.tf-page-cart-main .form-cart {
  margin-bottom: 32px;
}

.tf-page-cart-main .fl-iconbox .tf-swiper {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.tf-page-cart-main .fl-iconbox .tf-icon-box .box-icon {
  width: 48px;
  height: 48px;
}

.tf-page-cart-main .fl-iconbox .tf-icon-box .icon {
  font-size: 18px;
  color: var(--primary);
}

.tf-page-cart-main .fl-iconbox .tf-icon-box .title {
  font-size: 16px;
  line-height: 24px;
}

.tf-page-cart-main .fl-iconbox .sw-dot-default {
  margin-top: 12px;
}

.tf-page-cart-sidebar .cart-box {
  padding: 24px 15px;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.tf-page-cart-sidebar .cart-box:not(:last-child) {
  margin-bottom: 24px;
}

.tf-page-cart-sidebar .shipping-cart-box .title {
  margin-bottom: 24px;
}

.tf-page-cart-sidebar .shipping-cart-box .field label {
  margin-bottom: 8px;
}

.tf-page-cart-sidebar .shipping-cart-box .field:not(:last-child) {
  margin-bottom: 20px;
}

.tf-page-cart-sidebar .shipping-cart-box input {
  padding-left: 10px;
  padding-right: 10px;
}

.tf-page-cart-sidebar .shipping-cart-box input::placeholder {
  opacity: 1;
}

.tf-page-cart-sidebar .shipping-cart-box .tf-btn {
  margin-top: 8px;
}

.tf-page-cart-sidebar .checkout-cart-box .cart-head {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(161, 161, 161, 0.2);
}

.tf-page-cart-sidebar .checkout-cart-box .total-discount {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.tf-page-cart-sidebar .checkout-cart-box .check-agree {
  display: flex;
  gap: 8px;
  align-items: center;
}

.tf-page-cart-sidebar .checkout-cart-box .check-agree label {
  font-size: 14px;
  line-height: 22.4px;
}

.tf-page-cart-sidebar .checkout-cart-box .check-agree label a {
  text-decoration: underline;
}

.tf-page-cart-sidebar .checkout-cart-box .checkout-btn {
  margin-top: 32px;
  margin-bottom: 20px;
}

.tf-page-cart-sidebar .checkout-cart-box .cart-list-social {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}

.tf-page-cart-sidebar .checkout-cart-box .payment-card {
  border: 1px solid #D9D9D9;
  border-radius: 2.5px;
  width: 45px;
  height: 31.3px;
}

.tf-page-cart-sidebar .testimonial-cart-box {
  border-color: transparent;
  background: linear-gradient(113.78deg, #fff6d4 0%, #ffe3e3 100%);
}

.tf-page-cart-sidebar .testimonial-cart-box .box-testimonial-main {
  gap: 24px;
}

.tf-page-cart-sidebar .testimonial-cart-box .box-testimonial-main .quote {
  font-size: 42px;
}

.tf-page-cart-sidebar .testimonial-cart-box .box-testimonial-main .icon-star {
  color: #ecb100;
}

.tf-page-cart-sidebar .testimonial-cart-box .box-author {
  gap: 5px;
}

.tf-page-cart-sidebar .testimonial-cart-box .box-author .img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.tf-page-cart-sidebar .testimonial-cart-box .box-nav-swiper {
  gap: 10px;
  margin-top: 24px;
}

.tf-page-cart-sidebar .testimonial-cart-box .nav-swiper {
  width: 32px;
  height: 32px;
}

.tf-page-cart-sidebar .testimonial-cart-box .nav-swiper::after {
  font-size: 10px;
}

.tf-page-cart-sidebar .order-box .title {
  margin-bottom: 24px;
}

.tf-page-cart-sidebar .order-box .list-order-product {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(161, 161, 161, 0.2);
}

.tf-page-cart-sidebar .order-box .order-item {
  display: flex;
  gap: 10px;
  align-items: center;
}

.tf-page-cart-sidebar .order-box .order-item:not(:last-child) {
  margin-bottom: 16px;
}

.tf-page-cart-sidebar .order-box .order-item .img-product {
  width: 72px;
  height: 94px;
  position: relative;
}

.tf-page-cart-sidebar .order-box .order-item .img-product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.tf-page-cart-sidebar .order-box .order-item .img-product .quantity {
  position: absolute;
  width: 24px;
  height: 24px;
  right: -12px;
  top: -12px;
  border-radius: 999px;
  background-color: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}

.tf-page-cart-sidebar .order-box .order-item .content {
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
  align-content: center;
  gap: 6px;
}

.tf-page-cart-sidebar .order-box .order-item .info .name {
  margin-bottom: 10px;
}

.tf-page-cart-sidebar .order-box .order-item .info .variant {
  font-size: 12px;
  line-height: 14.4px;
  color: var(--rgba-dark);
}

.tf-page-cart-sidebar .order-box .list-total {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(161, 161, 161, 0.2);
}

.tf-page-cart-sidebar .order-box .list-total .total-item:not(:last-child) {
  margin-bottom: 12px;
}

.tf-page-cart-sidebar .order-box .btn-order {
  margin-top: 32px;
}

.tf-page-cart-sidebar .feedback-box .title {
  margin-bottom: 24px;
}

.tf-page-cart-sidebar .feedback-box .text {
  margin-bottom: 24px;
}

.tf-page-cart-sidebar .feedback-box .list-exp {
  display: flex;
  gap: 20px;
}

.tf-page-cart-sidebar .feedback-box .check-exp {
  display: flex;
  align-items: center;
  gap: 8px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
}

.tf-page-cart-sidebar .feedback-box .check-exp:has(.tf-check-rounded:checked) {
  border-color: var(--primary);
}

.tf-page-cart-sidebar .feedback-box .check-exp:has(.tf-check-rounded:checked) .text-exp {
  color: var(--dark);
}

.tf-page-cart-sidebar .feedback-box .check-exp .text-exp {
  color: rgba(102, 112, 133, 0.8);
}

.tf-page-cart-sidebar .feedback-box .box-share-social {
  margin-top: 56px;
}

.tf-page-cart-sidebar .feedback-box .social-item {
  color: var(--primary);
}

.tf-checkout-cart-main {
  padding: 24px 15px 40px;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.tf-checkout-cart-main .title {
  margin-bottom: 24px;
}

.tf-checkout-cart-main .grid-3,
.tf-checkout-cart-main .grid-2 {
  gap: 16px;
}

.tf-checkout-cart-main .box-ip-shipping,
.tf-checkout-cart-main .box-ip-contact,
.tf-checkout-cart-main .box-ip-checkout {
  margin-bottom: 32px;
}

.tf-checkout-cart-main .box-ip-contact .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tf-checkout-cart-main .box-ip-contact .title .link {
  padding: 2px 0px;
  border-bottom: 1px solid;
}

.tf-checkout-cart-main .check-ship {
  display: flex;
  gap: 8px;
  padding: 16px;
  border-radius: 6px;
  border: 1px solid var(--line);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.tf-checkout-cart-main .check-ship:has(.tf-check-rounded:checked) {
  border-color: var(--primary);
}

.tf-checkout-cart-main .check-ship:has(.tf-check-rounded:checked) .text {
  color: var(--rgba-dark-2);
}

.tf-checkout-cart-main .check-ship .tf-check-rounded {
  flex-shrink: 0;
  margin-top: 5px;
}

.tf-checkout-cart-main .check-ship .text {
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(102, 112, 133, 0.8);
}

.tf-checkout-cart-main .check-payment {
  display: flex;
  gap: 8px;
  padding: 16px;
  border-radius: 6px;
  border: 1px solid var(--line);
}

.tf-checkout-cart-main .check-payment .tf-check-rounded {
  flex-shrink: 0;
  margin-top: 5px;
}

.tf-checkout-cart-main .check-payment .text-payment {
  color: rgba(102, 112, 133, 0.8);
}

.tf-checkout-cart-main .payment-method-box {
  margin-bottom: 32px;
}

.payment-item {
  border: 1px solid var(--line);
  border-radius: 6px;
}

.payment-item .payment-header {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 16px;
}

.payment-item .payment-body {
  padding: 4px 16px 22px;
}

.payment-item .ip-card {
  position: relative;
}

.payment-item .ip-card input {
  padding-right: 55px;
}

.payment-item .ip-card .card-logo {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 41px;
  height: 12px;
}

.payment-item .cb-ship {
  display: flex;
  gap: 8px;
}

.payment-item .cb-ship input {
  margin-top: 2px;
}

.paypal-payment .payment-header {
  position: relative;
  padding-right: 95px;
}

.paypal-payment .payment-header .card-logo {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 78px;
  height: 20px;
}

.title-success-order .icon {
  width: 132px;
  height: 132px;
  margin-bottom: 32px;
}

.title-success-order .box-title {
  display: grid;
  gap: 24px;
}

.tf-main-success .box-progress-order {
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.tf-main-success .box-progress-order .order-progress-item {
  display: grid;
  gap: 12px;
}

.tf-main-success .box-progress-order .order-progress-item:not(:last-child) {
  border-right: 1px solid var(--line);
}

.tf-main-success .box-timeline-order {
  max-width: 618px;
  margin: 64px auto 42px;
  display: flex;
  justify-content: space-between;
}

.tf-main-success .box-timeline-order .line-time {
  display: flex;
  height: 1px;
  width: 100%;
  max-width: 208px;
  background-color: #efefef;
  margin: 25px -10px 0px;
}

.tf-main-success .timeline-item {
  position: relative;
  flex-shrink: 0;
}

.tf-main-success .timeline-item .box-icon {
  width: 48px;
  height: 48px;
  font-size: 28px;
  color: var(--dark);
  background-color: #efefef;
  border-radius: 50%;
  margin: 0px auto 12px;
}

.tf-main-success .timeline-item .content {
  display: grid;
  gap: 4px;
}

.tf-main-success .timeline-item.active .box-icon {
  background-color: var(--primary);
  color: var(--white);
}

.tf-main-success .timeline-item.active .title {
  color: var(--primary);
}

.tf-main-success .map-order {
  height: 500px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
}

.tf-main-success .box-ship-address {
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: 16px;
}

.tf-main-success .ship-address-item {
  margin-bottom: 24px;
}

.tf-main-success .ship-address-item .title {
  margin-bottom: 24px;
}

.tf-main-success .ship-address-item .list-address li:not(:last-child) {
  margin-bottom: 8px;
}

.fl-order-testimonial {
  padding: 24px;
  background-color: #ffeded;
  border-radius: 16px;
}

.fl-order-testimonial .box-order-tes {
  display: grid;
  justify-items: center;
  gap: 24px;
}

.fl-order-testimonial .box-order-tes .content {
  display: grid;
  gap: 16px;
}

.fl-order-testimonial .box-order-tes .icon {
  font-size: 32px;
  color: var(--primary);
}

.fl-order-testimonial .sw-dot-default {
  margin-top: 24px;
}

.sidebar-order-success .order-box {
  padding-bottom: 60px;
}

.tf-cart-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.tf-cart-checkbox .tf-checkbox-wrapp {
  place-items: center;
  position: relative;
  overflow: hidden;
  display: flex;
}

.tf-cart-checkbox .tf-checkbox-wrapp input {
  cursor: pointer;
  display: block;
  width: 14px;
  height: 14px;
  transition: 0.2s ease-in-out;
  background-color: var(--white);
  opacity: 0;
}

.tf-cart-checkbox .tf-checkbox-wrapp input:checked+div {
  background-color: var(--primary);
}

.tf-cart-checkbox .tf-checkbox-wrapp input:checked+div i {
  transform: scale(1);
}

.tf-cart-checkbox .tf-checkbox-wrapp div {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  transition: 0.25s ease-in-out;
  z-index: 5;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  background-color: var(--white);
  color: var(--white);
  pointer-events: none;
}

.tf-cart-checkbox .tf-checkbox-wrapp div i {
  font-size: 6px;
  transform: scale(0);
}

.tf-cart-checkbox label {
  font-weight: 400;
  cursor: pointer;
}

.tf-cart-checkbox label a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.tf-cart-checkbox .wrap-content {
  display: none;
}

.tf-cart-checkbox.check .wrap-content {
  display: block;
}

/*------------ account ---------------- */
/* ---------------------------------------------------------
    * Name: Vineta - Multipurpose eCommerce
    * Version: 1.0.0
    * Author: Themesflat
    * Author URI: http://themesflat.com 

	* Abstracts variable

    * Reset css styles

    * Components

        * header
        * footer
        * tabs
        * slider banner
        * button
        * form
        * drop down
        * carousel
        * avatar
        * pop up
        * box icon
        * hover
        * collection
        * product
        * blog
        * testimonial
        * lookbook
        * accordion
        * brand
        * zoom
        * shop
        * cart
        * account

    * section

    * Responsive
 ------------------------------------------------------------------------------ */
/*--------- Abstracts variable ---------- */
.main-content-account {
  max-width: 1244px;
  width: 100%;
  margin: 0 auto;
}

.my-account-container {
  display: flex;
  gap: 30px;
}

.my-account-container .my-acount-content {
  width: 100%;
}

.sidebar-account-wrap {
  border-radius: 8px;
  border: 1px solid var(--line);
  max-width: 244px;
  width: 100%;
  height: max-content;
}

.sidebar-account-wrap .my-account-nav-item {
  padding: 15px 12px;
  display: block;
}

.sidebar-account-wrap .my-account-nav-item:hover {
  background-color: var(--primary-4);
}

.sidebar-account-wrap .my-account-nav-item.active {
  color: var(--primary);
  background-color: var(--primary-4);
}

.sidebar-account-wrap li:not(:first-child) {
  border-top: 1px solid var(--line);
}

.canvas-sidebar .sidebar-account-wrap {
  max-width: unset;
}

.my-acount-content .box-account-title {
  display: grid;
  gap: 16px;
  margin-bottom: 30px;
}

.account-orders .title {
  margin-bottom: 42px;
}

.account-orders .wrap-account-order {
  overflow-x: auto;
}

.account-orders .wrap-account-order::-webkit-scrollbar {
  height: 3px;
}

.account-orders .wrap-account-order::-webkit-scrollbar-thumb {
  background: var(--surface);
  border-radius: 999px;
}

.account-orders table {
  width: 100%;
  min-width: 700px;
  text-align: center;
  border-radius: 8px;
}

.account-orders table thead,
.account-orders table td,
.account-orders table th {
  padding: 15px 20px;
}

.account-orders table thead tr {
  border: 1px solid var(--line);
}

.account-orders table tbody {
  border: 1px solid var(--line);
  border-top: 0;
}

.account-orders table tbody tr:not(:last-child) {
  border-bottom: 1px solid var(--line);
}

.account-orders table td:first-child,
.account-orders table th:first-child {
  text-align: start;
}

.account-orders table .view-detail {
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  padding: 5px 19px;
  border: 1px solid var(--dark);
  border-radius: 99px;
}

.account-orders table .view-detail:hover {
  background-color: var(--dark);
  color: var(--white);
}

.account-orders .account-no-orders-wrap {
  display: none;
  text-align: center;
}

.account-orders .account-no-orders-wrap img {
  margin-bottom: 42px;
}

.account-orders .account-no-orders-wrap .title {
  margin-bottom: 16px;
}

.account-orders .account-no-orders-wrap .text {
  margin-bottom: 32px;
}

.account-orders.no-orders .account-no-orders-wrap {
  display: block;
}

.account-orders.no-orders .account-orders-wrap {
  display: none;
}

.account-dashboard .content-account {
  display: grid;
  gap: 15px;
}

.account-dashboard .hello-name span {
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
}

.account-dashboard .hello-name .name {
  font-weight: 500;
}

.account-dashboard .hello-name a {
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
}

.account-dashboard .box-check {
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 45px 15px;
  height: 100%;
  display: block;
}

.account-dashboard .box-check .text {
  display: grid;
  gap: 6px;
}

.account-dashboard .icon {
  position: relative;
  display: inline-flex;
  margin-bottom: 24px;
}

.account-dashboard .icon i {
  font-size: 44px;
}

.account-dashboard .count-number {
  position: absolute;
  display: inline-flex;
  background-color: #ff6f61;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  top: -18px;
  right: -30px;
}

.account-dashboard .box-check-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.account-dashboard .box-check-list>* {
  width: 100%;
}

.banner-account {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.banner-account.bg-linear {
  background: linear-gradient(270deg, #efe7ff 0%, #eaf3ff 100%);
}

.banner-account .banner-content-right {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  gap: 16px;
}

.banner-account .banner-title {
  display: grid;
  gap: 6px;
}

.banner-account.banner-acc-countdown {
  padding: 30px;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

.banner-account.banner-acc-countdown .banner-content-left {
  display: grid;
  gap: 8px;
}

.account-address-item {
  border-radius: 16px;
  border: 1px solid var(--line);
}

.account-address-item .title {
  padding: 15px;
  border-bottom: 1px solid var(--line);
}

.account-address-item .info-detail {
  padding: 15px;
  display: grid;
  gap: 24px;
}

.account-address-item .box-infor {
  display: grid;
  gap: 12px;
}

.account-address-item .box-btn {
  display: flex;
  gap: 12px;
}

.account-address-item.editing {
  background-color: #fafafa;
}

.account-address .btn-add-address {
  margin-bottom: 42px;
}

.account-address .show-form-address {
  margin-bottom: 24px;
}

/*------------ sections ---------------- */
/* ---------------------------------------------------------
    * Name: Vineta - Multipurpose eCommerce
    * Version: 1.0.0
    * Author: Themesflat
    * Author URI: http://themesflat.com 

	* Abstracts variable

    * Reset css styles

    * Components

        * header
        * footer
        * tabs
        * slider banner
        * button
        * form
        * drop down
        * carousel
        * avatar
        * pop up
        * box icon
        * hover
        * collection
        * product
        * blog
        * testimonial
        * lookbook
        * accordion
        * brand
        * zoom
        * shop
        * cart
        * account

    * section

    * Responsive
 ------------------------------------------------------------------------------ */
/*--------- Abstracts variable ---------- */
.tf-breadcrumb {
  margin-top: 32px;
  margin-bottom: 32px;
}

.tf-breadcrumb.space-t {
  margin-top: 24px;
}

.tf-breadcrumb .breadcrumb-list {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.tf-breadcrumb .breadcrumb-list .item-breadcrumb {
  position: relative;
}

.tf-breadcrumb .breadcrumb-list .item-breadcrumb:not(:last-child) .text {
  color: var(--text-4);
}

.tf-breadcrumb .breadcrumb-list .item-breadcrumb .text {
  font-size: 14px;
  line-height: 16.8px;
  font-weight: 400;
  color: var(--dark);
}

.tf-breadcrumb .breadcrumb-list .dot {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tf-breadcrumb .breadcrumb-list .dot span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--text-4);
  display: inline-block;
}

.s-blog-list-v1 .blog-post-item,
.s-blog-list-v2 .blog-post-item {
  margin-bottom: 40px;
}

.s-blog-list-v1 .blog-post-item:last-of-type,
.s-blog-list-v2 .blog-post-item:last-of-type {
  margin-bottom: 60px;
}

.s-blog-list-grid {
  gap: 42px 24px;
}

.s-blog-single .heading {
  gap: 20px;
  text-align: center;
  margin-bottom: 48px;
}

.s-blog-single .heading>.entry-tag,
.s-blog-single .heading>.entry-meta {
  justify-content: center;
}

.s-blog-single .content {
  margin-bottom: 80px;
}

.s-blog-single .content .entry_image {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 42px;
}

.s-blog-single .content .text {
  font-size: 16px;
  line-height: 24px;
  color: var(--text);
  max-width: 1008px;
  width: 100%;
  margin: 0px auto;
  margin-bottom: 42px;
  text-align: center;
}

.s-blog-single .group-image {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.s-blog-single .entry-social {
  display: flex;
  align-items: center;
  gap: 15px;
}

.s-blog-single .entry-social>p {
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
}

.s-blog-single .bot {
  margin-bottom: 42px;
}

.s-blog-single .bot .entry-tag {
  margin-bottom: 20px;
}

.s-blog-single .related-post {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0px 42px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  gap: 30px;
}

.s-blog-single .related-post .post {
  display: flex;
  gap: 20px;
  align-items: center;
}

.s-blog-single .related-post .post:hover .icon {
  background-color: var(--primary);
  color: var(--white);
}

.s-blog-single .related-post .post:hover .name-post {
  color: var(--primary);
}

.s-blog-single .related-post p {
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  margin-bottom: 15px;
}

.s-blog-single .related-post p.name-post {
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 0px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.s-blog-single .related-post .icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  flex-shrink: 0;
}

.s-blog-single .related-post .text-wrap-left {
  text-align: left;
}

.s-blog-single .related-post .text-wrap-right {
  text-align: right;
}

.block-quote {
  border-radius: 16px;
  background-color: #eeffde;
  min-height: 230px;
  display: flex;
  align-items: center;
  margin-bottom: 42px;
}

.block-quote p {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  max-width: 1008px;
  width: 100%;
  margin: 0px auto;
  text-align: center;
}

.sb-contact {
  border-radius: 16px;
  background-color: var(--surface);
  padding: 40px;
}

.sb-contact .title {
  font-size: 24px;
  font-weight: 500;
  line-height: 29px;
  margin-bottom: 32px;
}

.sb-contact .sub {
  color: var(--text);
  line-height: 22px;
  margin-bottom: 32px;
}

.sb-contact .btn-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 252px;
  width: 100%;
  margin: 0px auto;
}

.s-faq .faq-item:not(:last-child) {
  margin-bottom: 52px;
}

.s-faq .name-faq {
  font-size: 24px;
  font-weight: 500;
  line-height: 29px;
  margin-bottom: 32px;
}

.s-term-user .content {
  display: grid;
  gap: 52px;
  max-width: 1008px;
  width: 100%;
  margin: 0px auto;
}

.s-term-user .term-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 29px;
  color: var(--dark);
  margin-bottom: 24px;
}

.s-term-user .term-text {
  line-height: 26px;
  font-size: 16px;
  color: var(--text);
}

.s-term-user .term-text span {
  font-weight: 500;
  color: var(--dark);
}

.s-term-user .text-wrap {
  display: grid;
  gap: 24px;
}

.s-term-user a {
  font-weight: 500;
  line-height: 26px;
}

.page-title .box-title {
  display: grid;
  gap: 16px;
}

.page-title .box-title .tf-btn {
  font-size: 14px;
  line-height: 20px;
}

.s-404 {
  padding: 100px 0px;
}

.wg-404 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.wg-404 .image {
  max-width: 236px;
  width: 100%;
  margin-bottom: 12px;
}

.wg-404 .title {
  font-size: 64px;
  font-weight: 500;
  line-height: 96px;
  margin-bottom: 12px;
}

.wg-404 .sub {
  margin-bottom: 32px;
}

.wg-countdown .countdown__timer {
  display: flex;
  gap: 20px;
}

.wg-countdown .countdown__item {
  display: inline-flex;
  flex-direction: column;
  position: relative;
  width: 90px;
  height: 90px;
  text-align: center;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid var(--primary);
}

.wg-countdown .countdown__value {
  display: inline-block;
  font-size: 36px;
  font-weight: 500;
  line-height: 44px;
  letter-spacing: -0.02em;
}

.wg-countdown .countdown__value .countdown__value--3 {
  width: 100%;
  max-width: 90px;
}

.wg-countdown-2 {
  width: max-content;
  padding: 16px 32px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background-color: var(--white);
}

.wg-countdown-2.color-1 .countdown__value {
  color: #8f6dff;
}

.wg-countdown-2 .countdown__value {
  padding-top: 0px;
  font-family: "Be Vietnam Pro", serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 50px;
  color: var(--primary);
}

.wg-countdown-2 .countdown__timer {
  display: flex;
  gap: 29px;
}

.wg-countdown-2 .countdown__item {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 4px;
  min-width: 56px;
}

.wg-countdown-2 .countdown__item:not(:last-child) .countdown__value {
  position: relative;
}

.wg-countdown-2 .countdown__item:not(:last-child) .countdown__value::after {
  content: ":";
  position: absolute;
  top: 50%;
  transform: translate(50%, -50%);
  right: -14px;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: var(--dark);
}

.wg-countdown-2 .countdown__item:first-child {
  min-width: 30px;
}

.wg-coming-soon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 80px;
  padding-bottom: 100px;
}

.wg-coming-soon .title {
  font-size: 64px;
  font-weight: 500;
  line-height: 96px;
  margin-bottom: 12px;
}

.wg-coming-soon .sub {
  margin-bottom: 48px;
}

.wg-coming-soon .wg-countdown {
  margin-bottom: 48px;
}

.wg-coming-soon .form-email-wrap {
  max-width: 482px;
  width: 100%;
  margin-bottom: 64px;
}

.wg-map.style-absolute {
  position: relative;
}

.wg-map.style-absolute .box-store {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  max-width: 419px;
}

.wg-map.style-absolute .box-store:hover {
  background-color: var(--white);
}

.wg-map .map {
  border-radius: 16px;
  overflow: hidden;
  height: 589px;
  width: 100%;
}

.s-contact .content-right,
.s-contact .content-left {
  display: grid;
  gap: 20px;
}

.s-contact .wg-map {
  margin-bottom: 91px;
}

.s-contact .sub-title {
  font-size: 16px;
  line-height: 26px;
}

.s-contact.style-2 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap-reverse;
  gap: 15px;
}

.s-contact.style-2 .content-left {
  padding: 30px;
  border-radius: 16px;
  position: relative;
  z-index: 2;
  gap: 15px;
  margin-bottom: 0;
  justify-items: flex-start;
}

.s-contact.style-2 .content-left .tf-btn {
  padding: 10px 24px;
  text-transform: none;
  margin-top: 20px;
}

.s-contact.style-2 .content-left .tf-social-icon .social-item:not(:hover) {
  background-color: transparent;
  border-color: var(--white);
}

.s-contact.style-2 .image-right {
  border-radius: 16px;
  overflow: hidden;
}

.s-contact.style-2 .image-right img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.contact-list {
  display: grid;
  gap: 10px;
}

.contact-list p {
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
}

.contact-list a,
.contact-list span {
  font-weight: 400;
  color: var(--text);
}

.box-store {
  padding: 40px 24px 20px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--white);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.box-store .title {
  font-size: 16px;
  font-weight: 500;
  line-height: 25.6px;
  margin-bottom: 8px;
}

.box-store .contact-list {
  gap: 0px;
  margin-bottom: 20px;
}

.box-store:hover {
  background: var(--primary-4);
}

.box-store.style-2 {
  display: grid;
  gap: 15px;
  padding: 30px;
  border-color: var(--white);
}

.grid-box-store {
  gap: 24px;
}

.s-store-location .wg-map {
  margin-bottom: 24px;
}

.s-banner-colection .banner-content {
  overflow: hidden;
  border-radius: 16px;
  gap: 0px;
  background-color: #f7f7f7;
  position: relative;
}

.s-banner-colection .box-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0px auto;
  gap: 42px;
  padding: 24px;
}

.s-banner-colection .box-title-banner {
  display: grid;
  gap: 24px;
}

.s-banner-colection.style-abs .box-content {
  position: absolute;
  left: 15px;
  bottom: 15px;
  right: 15px;
  padding: 0;
}

.s-banner-colection.style-abs-2 .box-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
  right: 15px;
  padding: 0;
}

.s-banner-colection.style-abs-2 .image img {
  min-height: 350px;
  object-fit: cover;
}

.banner-cls-bicycle .banner-content {
  height: 400px;
  width: 100%;
}

.banner-cls-electric .banner-content {
  background: linear-gradient(67.69deg, #eeefff 11.66%, #f6f0f0 47.21%, #ffeff6 82.77%);
  padding: 16px 0px;
}

.banner-cls-electric .banner-content .box-title-banner {
  gap: 12px;
}

.banner-cls-mega-electric.style-abs-2 .image img {
  min-height: 296px;
  object-fit: cover;
}

.banner-cls-phonecase .banner-content {
  background-color: unset;
  border-radius: unset;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.banner-cls-phonecase .banner-content>* {
  width: 100%;
}

.banner-cls-phonecase .box-content {
  margin: unset;
  padding: 0;
}

.banner-cls-phonecase .image {
  border-radius: 16px;
  overflow: hidden;
}

.banner-cls-petaccess .banner-content {
  background-color: #ffecce;
}

.banner-cls-electric-acc.style-abs-2 .box-content {
  background-color: var(--white);
  border-radius: 16px;
  left: 15px;
  right: 15px;
  margin: unset;
  padding: 30px 15px;
}

.banner-cls-mega-electric .new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #d2a40c;
  border-radius: 22px;
  padding: 5px 12px;
}

.banner-cls-mega-electric .box-title-banner {
  justify-items: center;
}

.btn-sidebar-mb {
  position: fixed;
  top: 200px;
  left: 0;
  z-index: 50;
}

.btn-sidebar-mb button {
  width: 40px;
  height: 40px;
  border-radius: 0;
  border: 1px solid var(--dark);
  padding: 0;
  justify-content: center;
}

.btn-sidebar-mb button:hover {
  background-color: var(--white);
  color: var(--dark);
}

.btn-sidebar-mb.right {
  left: unset;
  right: 0;
  transform: rotate(180deg);
}

.s-banner-countdown {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.s-banner-countdown .image img {
  min-height: 488px;
  width: 100%;
  object-fit: cover;
}

.s-banner-countdown .banner-content {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  display: grid;
  gap: 12px;
}

.s-banner-countdown .box-title {
  display: grid;
  gap: 4px;
}

.banner-cd-phonecase {
  border-radius: 16px;
  overflow: hidden;
  margin: 0px 12px;
}

.banner-cd-phonecase .banner-wrap {
  position: relative;
}

.banner-cd-phonecase .banner-content {
  z-index: 2;
  background-color: var(--white);
  border-radius: 16px;
  padding: 30px 15px;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  gap: 24px;
}

.banner-cd-phonecase .countdown__timer {
  gap: 12px;
}

.banner-cd-phonecase .countdown__timer .countdown__label {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}

.banner-cd-phonecase .box-title {
  display: grid;
  gap: 8px;
}

.banner-cd-phonecase .image img {
  width: 100%;
}

.s-banner-cd-baby .banner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 16px;
  background-color: #f3f2ee;
  padding: 50px;
  gap: 20px;
}

.s-banner-cd-baby .box-title {
  display: grid;
  gap: 12px;
}

.s-banner-cd-baby .content {
  display: grid;
  gap: 24px;
}

.s-banner-cd-baby .wg-countdown .countdown__item {
  background-color: var(--white);
  border-radius: 50%;
  width: 70px;
  height: 70px;
}

.s-banner-cd-baby .wg-countdown .countdown__item .countdown__value {
  font-family: "Grandstander", cursive;
  font-weight: 700;
  color: #F6620C;
}

.s-banner-product .content-banner {
  display: flex;
  gap: 42px;
  justify-content: center;
}

.s-banner-product .image-wrap {
  position: relative;
}

.s-banner-product .image {
  max-width: 512px;
  border-radius: 16px;
  overflow: hidden;
}

.s-banner-product .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.s-banner-product .content-right {
  display: flex;
  flex-direction: column;
  gap: 42px;
  justify-content: center;
}

.s-banner-product .content-right .box-title {
  display: grid;
  gap: 10px;
}

.s-banner-product .loobook-product {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 12px;
  gap: 12px;
}

.s-banner-with-text .content-banner {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}

.s-banner-with-text .box-title-banner {
  display: grid;
  gap: 10px;
}

.s-banner-with-text br {
  display: none;
}

.s-banner-with-text .image-banner {
  position: relative;
  overflow: hidden;
}

.s-banner-with-text .image {
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
}

.s-banner-with-text .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.s-banner-with-text .image-1:hover {
  position: relative;
  z-index: 2;
}

.banner-text-fashion .image-1 {
  max-width: 531px;
  margin-left: auto;
}

.banner-text-fashion .image-2 {
  position: absolute;
  max-width: 316px;
  z-index: 2;
  left: 71px;
  bottom: 44px;
}

.banner-text-fashion .image-2 .img-style {
  height: 100%;
}

.banner-text-skincare.type-2 .image-1 {
  width: 85%;
}

.banner-text-skincare.type-2 .image-2 {
  position: absolute;
  width: 44%;
  bottom: 5%;
  right: 0;
}

.banner-text-jewelry .image-1 {
  width: 85%;
}

.banner-text-jewelry .image-2 {
  width: 39%;
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 5%;
}

.banner-tagline-phonecase {
  display: flex;
  gap: 50px;
  position: relative;
}

.banner-tagline-phonecase .image {
  border-radius: 16px;
  overflow: hidden;
}

.banner-tagline-phonecase .content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.banner-tagline-phonecase .list-tagline li {
  display: flex;
  gap: 10px;
  padding: 15px;
}

.banner-tagline-phonecase .list-tagline li .box-text {
  display: grid;
  gap: 5px;
}

.banner-tagline-phonecase .list-tagline li:not(:last-child) {
  border-bottom: 1px solid rgba(89, 89, 89, 0.2);
}

.banner-tagline-phonecase .icon i {
  font-size: 35px;
  color: #c596ff;
}

.flat-title {
  display: grid;
  gap: 12px;
  text-align: center;
  margin-bottom: 30px;
}

.flat-title.style-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: start;
}

.flat-title .box-title {
  display: grid;
  gap: 12px;
}

.flat-title.mb_1 {
  margin-bottom: 33px;
}

.flat-title.style-2 {
  gap: 10px;
}

.flat-title.style-line {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
}

.flat-title.style-line .line-title {
  flex-grow: 1;
  display: block;
  border-bottom: 1px solid var(--line);
}

.flat-title-2 {
  display: grid;
  gap: 5px;
  margin-bottom: 30px;
}

.flat-title-2 .box-title {
  display: grid;
  gap: 5px;
}

.simpleParallax {
  height: 100%;
  width: 100%;
}

.simpleParallax img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.wg-offer .image {
  border-radius: 16px;
  margin-bottom: 20px;
}

.wg-offer .content {
  display: grid;
  gap: 12px;
}

.wg-offer .box-title {
  display: grid;
  gap: 8px;
}

.flat-title-v2 {
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
}

.tab-content .box-btn {
  margin-top: 24px;
}

.s-banner-bundle .bundle-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.s-banner-bundle .tf-swiper {
  width: 100%;
}

.s-banner-bundle .image-banner {
  width: 100%;
  height: 100%;
}

.s2-banner-bundle .bundle-wrap {
  position: relative;
  padding: 0px 30px 30px;
  border: 1px solid #f3a24b;
  border-radius: 16px;
}

.s2-banner-bundle .flat-title {
  background-color: var(--white);
  width: fit-content;
  margin: -25px auto 8px;
}

.s2-banner-bundle .banner-bundle {
  position: relative;
  width: 100%;
  height: 100%;
}

.s2-banner-bundle .banner-bundle .item {
  position: absolute;
  display: none;
  bottom: -77px;
  animation: swing2 10s infinite ease-in-out;
}

.bundle-wrap .nav-swiper {
  width: 34px;
  height: 34px;
}

.bundle-wrap .nav-swiper.swiper-button-prev {
  left: -40px;
}

.bundle-wrap .nav-swiper.swiper-button-next {
  right: -40px;
}

@keyframes swing2 {
  20% {
    transform: rotate(5deg);
  }

  40% {
    transform: rotate(-4deg);
  }

  60% {
    transform: rotate(3deg);
  }

  80% {
    transform: rotate(-2deg);
  }

  100% {
    transform: rotate(0);
  }
}

.s-banner-bundle .content-list {
  display: grid;
  gap: 12px;
  padding: 24px 15px;
  border-radius: 0px 0px 16px 16px;
  border: 1px solid var(--line);
}

.s-banner-bundle .list-recipe {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.s-banner-bundle .list-recipe .br--line {
  display: block;
  height: 16px;
  width: 1px;
  background-color: var(--line);
}

.flat-iconbox {
  padding: 33px 0px;
}

.tf-compare-table {
  border: 1px solid var(--line);
  border-radius: 2.5px;
  overflow-x: scroll;
}

.tf-compare-table::-webkit-scrollbar {
  height: 4px;
}

.tf-compare-table::-webkit-scrollbar-thumb {
  border-radius: 33px;
  background: #d9d9d9;
  cursor: grab;
}

.tf-compare-row {
  display: flex;
}

.tf-compare-col {
  min-width: 240px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}

.tf-compare-item {
  display: grid;
  text-align: center;
  gap: 15px;
  padding: 20px 15px;
}

.tf-compare-item .tf-compare-image {
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
}

.tf-compare-item .tf-compare-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tf-compare-item .tf-compare-remove .tf-btn-icon {
  width: 48px;
  height: 48px;
  cursor: pointer;
}

.tf-compare-item .tf-compare-remove .tf-btn-icon:hover {
  border-color: var(--primary);
}

.tf-compare-item .tf-compare-remove .tf-btn-icon:hover i {
  color: var(--primary);
  transform: unset;
}

.tf-compare-item .content {
  display: grid;
  gap: 10px;
}

.tf-compare-field,
.tf-compare-value {
  padding: 15px;
}

.tf-compare-value {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tf-compare-stock {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #48b02c;
}

.list-esd .item {
  display: grid;
  gap: 10px;
  padding: 20px 0px;
}

.list-esd .item:not(:last-child) {
  border-bottom: 1px solid var(--line);
}

.box-testimonial-quote {
  background-color: #eeffde;
  border-radius: 16px;
  padding: 30px 15px;
  display: grid;
  gap: 20px;
}

.box-testimonial-quote .box-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.box-testimonial-quote .box-author .avt {
  max-width: 32px;
  border-radius: 50%;
  overflow: hidden;
}

.mega-categories {
  background-color: var(--white);
  text-align: left;
  color: var(--dark);
  padding: 12px 4px 22px;
}

.mega-categories li:not(:last-child) {
  margin-bottom: 4px;
}

.mega-categories .cate-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--dark);
  border-radius: 4px;
  padding: 10px;
  font-size: 16px;
  line-height: 24px;
}

.mega-categories .cate-item .img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--surface);
  overflow: hidden;
}

.mega-categories .cate-item:hover,
.mega-categories .cate-item.active {
  background-color: var(--purple-2);
}

.mega-cate-box {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--purple);
}

.mega-cate-box .categories-title {
  display: flex;
  background-color: var(--purple);
  padding: 15px 24px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
}

.mega-cate-box .categories-title .icon {
  font-size: 20px;
}

.mega-box .mega-title-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.mega-iconbox {
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 32px 12px;
}

.mega-iconbox .tf-icon-box:not(:last-child) {
  margin-bottom: 32px;
}

.image-compare {
  border-radius: 16px;
}

.image-compare .icv__arrow-wrapper {
  display: none;
}

.image-compare .icv__circle {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.3);
  position: relative;
  border-color: transparent !important;
}

.image-compare .icv__circle::after {
  position: absolute;
  content: "";
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--white);
}

.image-compare .icv__circle::before {
  position: absolute;
  font-family: "icomoon";
  content: "\e900";
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  font-size: 14px;
}

.image-compare .icv__label {
  padding: 9px 24px;
  color: var(--dark);
  font-family: "Albert Sans", sans-serif;
  border-radius: 40px;
  background-color: var(--white);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  bottom: 24px;
}

.image-compare .icv__label-before {
  left: 24px;
}

.image-compare .icv__label-after {
  right: 24px;
}

.img-viewer-compare-wrap {
  margin-bottom: 40px;
}

.banner-why-shop {
  padding-left: 15px;
  padding-right: 15px;
}

.s2-banner-with-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  max-width: 1143px;
  margin: auto;
}

.s2-banner-with-text .content-with-text {
  display: grid;
  gap: 20px;
  justify-items: left;
}

.s2-banner-with-text .box-title-content {
  display: grid;
  gap: 12px;
}

.s3-banner-with-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.s3-banner-with-text .content-with-text {
  gap: 20px;
  display: grid;
  justify-items: left;
}

.s3-banner-with-text .image-banner {
  position: relative;
  overflow: hidden;
  width: 100%;
  flex-shrink: 0;
}

.s3-banner-with-text .image-banner .image {
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
}

.s3-banner-with-text .image-banner .image-1 {
  position: absolute;
  width: 41.6%;
  z-index: 2;
  left: 0px;
  bottom: 0px;
}

.s3-banner-with-text .image-banner .image-2 {
  width: 74%;
  margin-left: auto;
}

.s3-banner-with-text .box-title-content .subtitle {
  margin-bottom: 10px;
  display: inline-block;
}

.s3-banner-with-text .box-title-content .title {
  margin-bottom: 12px;
}

.banner-cls-baby .item {
  max-width: 217px;
  position: absolute;
  animation: moveRight 10s infinite linear alternate;
  right: -69px;
  bottom: -35px;
  display: none;
}

.grid-cls-suppermarket .s-cls .img-style {
  width: 100%;
  height: 100%;
}

@keyframes moveRight {
  0% {
    transform: translateX(-20px);
  }

  100% {
    transform: translateX(20px);
  }
}

/*-------------- Responsive ----------------- */
/* ---------------------------------------------------------
    * Name: Vineta - Multipurpose eCommerce
    * Version: 1.0.0
    * Author: Themesflat
    * Author URI: http://themesflat.com 

	* Abstracts variable

    * Reset css styles

    * Components

        * header
        * footer
        * tabs
        * slider banner
        * button
        * form
        * drop down
        * carousel
        * avatar
        * pop up
        * box icon
        * hover
        * collection
        * product
        * blog
        * testimonial
        * lookbook
        * accordion
        * brand
        * zoom
        * shop
        * cart
        * account

    * section

    * Responsive
 ------------------------------------------------------------------------------ */
/*--------- Abstracts variable ---------- */
/* Media Queries
-------------------------------------------------------------- */
@media (min-width: 768px) and (max-width: 1200px) {
  .flat-wrapper-lookbook .image-lookbook .pin-1 {
    left: 2%;
    bottom: 38%;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .sb-contact {
    padding: 30px 15px;
  }
}

@media (min-width: 576px) {
  .tf-grid-layout.sm-col-2 {
    grid-template-columns: 1fr 1fr;
  }

  .tf-grid-layout.sm-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .tf-grid-layout.sm-col-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .tf-grid-layout.sm-col-5 {
    grid-template-columns: repeat(5, 1fr);
  }

  .tf-grid-layout.sm-col-6 {
    grid-template-columns: repeat(6, 1fr);
  }

  .tf-grid-layout.sm-col-7 {
    grid-template-columns: repeat(7, 1fr);
  }

  .dropdown-filter .dropdown-menu {
    min-width: 250px;
  }

  .popup-style-1 {
    max-width: 520px;
  }

  .footer-default .footer-body {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .row-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 32px;
    column-gap: 24px;
  }

  .row-footer .s3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    grid-column: 1/-1;
  }

  .slider-default .content-slider.style-2 {
    padding: 30px 24px;
  }

  .slider-default .parallax-wrap {
    padding: 150px 0px;
  }

  .s-banner-cd-baby .wg-countdown .countdown__timer {
    gap: 10px;
  }

  .s-banner-cd-baby .wg-countdown .countdown__item {
    width: 90px;
    height: 90px;
  }

  .slider-pod .content-slider {
    max-width: 550px;
  }
}

@media (min-width: 768px) {

  .footer-info,
  .footer-heading {
    margin-bottom: 24px;
  }

  .footer-style-2 {
    margin: 0px 15px 80px;
  }

  .flat-wrapper-iconbox>.title {
    top: -12%;
  }

  .s2-banner-with-text {
    gap: 60px;
    flex-direction: row;
  }

  .s3-banner-with-text {
    flex-direction: row;
    gap: 14px;
  }

  .s3-banner-with-text .image-banner {
    width: 59.4%;
  }

  .slider-style-2 .wrap-pagination {
    right: 50%;
  }

  .offcanvas-search .header {
    padding: 15px 30px;
  }

  .offcanvas-search .form-search input {
    height: 60px;
  }

  .popup-product .modal-content {
    padding: 32px 60px 40px;
  }

  .popup-product .modal-header .countdown__timer {
    font-size: 24px;
    line-height: 32px;
  }

  .fl-order-testimonial {
    padding: 32px 60px;
  }

  .tf-compare-col {
    min-width: 300px;
  }

  .table-page-cart .tf-cart-item .wg-quantity {
    width: 102px;
    height: 48px;
  }

  .tf-main-success .box-ship-address {
    padding: 32px;
  }

  .modal-quick-view .modal-content {
    flex-direction: row;
  }

  .modal-quick-view .tf-product-media-wrap {
    width: 43.4%;
  }

  .modal-quick-view .tf-product-info-wrap .tf-product-info-inner {
    position: absolute;
    inset: 0;
    overflow-y: auto;
    padding: 32px;
  }

  .modal-quick-view .tf-product-info-wrap .tf-product-info-variant {
    margin-bottom: 34px;
  }

  .modal-quick-view .tf-product-info-wrap .tf-product-total-quantity {
    margin-bottom: 32px;
  }

  .popup-shopping-cart.style-2 .modal-content,
  .popup-shopping-cart.style-2 .canvas-wrapper {
    flex-direction: row;
  }

  .popup-shopping-cart.style-2 .also-like-product {
    width: 228px;
    flex-shrink: 0;
    position: relative;
  }

  .popup-shopping-cart.style-2 .also-like-product .also-like-product-wrap {
    padding: 33px 28px 33px 36px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: auto;
    flex-direction: column;
  }

  .popup-shopping-cart.style-2 .also-like-product .also-like-product-wrap::-webkit-scrollbar {
    width: 8px;
  }

  .popup-shopping-cart.style-2 .also-like-product .also-like-product-wrap::-webkit-scrollbar-thumb {
    background: var(--primary);
  }

  .popup-shopping-cart.style-2 .also-like-product .also-like-product-wrap::-webkit-scrollbar-track {
    background: var(--line);
  }

  .popup-shopping-cart.style-2 .also-like-product .tf-mini-cart-item {
    flex-direction: column;
    min-width: unset;
  }

  .popup-shopping-cart.style-2 .also-like-product .tf-mini-cart-item .tf-mini-cart-image {
    width: 156px;
    height: 222px;
  }

  .popup-shopping-cart.style-empty .cart-empty-wrap {
    padding: 27px 15px;
  }

  .popup-shopping-cart.style-empty .cart-empty-wrap img {
    margin-bottom: 32px;
    width: auto;
  }

  .popup-shopping-cart.style-empty .cart-empty-wrap p {
    margin-bottom: 24px;
  }

  .popup-pickup-available .modal-inner {
    padding: 40px 32px;
  }

  .popup-pickup-available .pickup-available-list {
    gap: 40px;
  }

  .modal-find-size .header {
    margin-bottom: 40px;
  }

  .modal-find-size .tf-sizeguide-table {
    margin-bottom: 42px;
  }

  .modal-find-size .modal-dialog .modal-content {
    padding: 32px;
  }

  .modal-find-size .tf-page-size-chart-content {
    display: grid;
    gap: 10px;
    grid-template-columns: 6fr 6fr;
  }

  .modal-find-size .tf-page-size-chart-content ul {
    margin-bottom: unset;
  }

  .modal-order-detail .header {
    margin-bottom: 50px;
  }

  .modal-order-detail .modal-dialog .modal-content {
    padding: 32px;
  }

  .slider-layout-right .swiper {
    margin-right: -24px;
    padding-right: 24px;
  }

  .modal-newsletter.style-row .modal-content {
    flex-direction: row;
  }

  .banner-why-shop,
  .container-6,
  .container-5,
  .container-4,
  .container-3,
  .container-2,
  .slider-layout-right,
  .container-full,
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .list-color-product {
    gap: 5px;
  }

  .list-color-product .list-color-item {
    width: 24px;
    height: 24px;
  }

  .tf-pin-btn span {
    width: 33px;
    height: 33px;
    border: 12px solid var(--white);
  }

  .card-product .on-sale-wrap {
    top: 20px;
    right: auto;
    left: 20px;
  }

  .card-product .on-sale-wrap.pos1 {
    top: 16px;
    left: 16px;
  }

  .card-product.card-product-size .list-product-btn {
    bottom: 40px;
  }

  .card-product.style-3.card-product-size .product-btn-main {
    bottom: 40px;
  }

  .card-product.style-3.card-product-size .list-product-btn {
    bottom: 84px;
  }

  .card-product.style-border-2.border-type-4 .on-sale-wrap {
    top: 16px;
    right: auto;
    left: 16px;
  }

  .card-product .card-product-info {
    gap: 8px;
  }

  .grid-cls {
    gap: 24px;
  }

  .grid-cls .item1 {
    grid-area: aa;
  }

  .grid-cls .item2 {
    grid-area: bb;
  }

  .grid-cls .item3 {
    grid-area: cc;
  }

  .grid-cls .item4 {
    grid-area: dd;
  }

  .grid-cls-v1 {
    grid-template-areas: "aa bb" "aa cc";
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .grid-cls-v2 {
    grid-template-areas: "aa bb dd" "aa cc dd";
    grid-template-columns: 1fr 1fr 1fr;
  }

  .grid-cls-v3 {
    grid-template-areas: "aa aa " "bb cc";
    grid-template-columns: 1fr 1fr;
  }

  .grid-cls-v4 {
    grid-template-areas: "cc cc" "aa bb";
    grid-template-columns: 1fr 1fr;
  }

  .grid-cls-v5 {
    grid-template-areas: "aa bb cc" "aa bb dd";
    grid-template-columns: 1fr 1fr 1fr;
  }

  .grid-cls-v5 .item3,
  .grid-cls-v5 .item4 {
    height: 320px;
  }

  .s-banner-with-text .content-banner {
    height: 100%;
  }

  .banner-cd-phonecase .banner-content {
    gap: 32px;
    padding: 32px 60px;
  }

  .banner-cd-fashion .banner-content {
    left: 100px;
  }

  .banner-cd-fashion .box-title {
    margin-bottom: 12px;
  }

  .banner-cd-fashion .season {
    margin-bottom: 4px;
  }

  .banner-account .banner-content-right {
    right: 144px;
    gap: 32px;
  }

  .banner-account .banner-title {
    gap: 12px;
  }

  .banner-account.banner-acc-countdown {
    padding: 40px 88px 40px 64px;
  }

  .banner-account.banner-acc-countdown .banner-title {
    gap: 4px;
  }

  .banner-account.banner-acc-countdown .banner-content-left {
    gap: 16px;
  }

  .banner-cls-baby .box-title-banner {
    gap: 16px;
  }

  .banner-cls-baby .box-content {
    gap: 32px;
  }

  .banner-cls-mega-electric .box-title-banner {
    gap: 8px;
  }

  .banner-cls-mega-electric .box-content {
    gap: 24px;
  }

  .banner-cls-electric-acc .box-content {
    gap: 33px;
  }

  .banner-cls-electric-acc .box-title-banner {
    gap: 16px;
  }

  .banner-cls-electric-acc.style-abs-2 .box-content {
    max-width: 477px;
    padding: 30px 64px;
    left: 64px;
    right: 64px;
  }

  .banner-cls-electric-acc.style-abs-2 .box-content br {
    display: block;
  }

  .banner-cls-sportwear.style-abs-2 .box-content {
    left: 84px;
  }

  .banner-cls-sportwear .box-content {
    gap: 24px;
  }

  .banner-cls-sportwear .box-title-banner {
    gap: 24px;
  }

  .banner-cls-petacces .box-content {
    gap: 42px;
  }

  .banner-cls-petacces .box-title-banner {
    gap: 24px;
  }

  .banner-cls-electric .image {
    order: 1;
  }

  .s-banner-colection.style-abs .box-content {
    left: 64px;
    bottom: 64px;
    right: unset;
    gap: 32px;
  }

  .s-banner-colection.style-abs .box-title-banner {
    gap: 16px;
  }

  .slider-bicycle .box-content {
    bottom: 103px;
  }

  .slider-bicycle .content-slider {
    max-width: 576px;
    width: 100%;
  }

  .tf-grid-layout.md-col-2 {
    grid-template-columns: 1fr 1fr;
  }

  .tf-grid-layout.md-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .tf-grid-layout.md-col-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .tf-grid-layout.md-col-5 {
    grid-template-columns: repeat(5, 1fr);
  }

  .tf-grid-layout.md-col-6 {
    grid-template-columns: repeat(6, 1fr);
  }

  .tf-grid-layout.md-col-7 {
    grid-template-columns: repeat(7, 1fr);
  }

  .flat-single-grid:not(.flat-single-grid-2, .flat-single-stacked) .item {
    height: 1026px;
  }

  .flat-single-grid:not(.flat-single-grid-2, .flat-single-stacked) .item:not(:last-child) {
    margin-bottom: 10px;
  }

  .flat-single-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .flat-single-grid-2 .item {
    width: 100%;
    height: 300px;
  }

  .flat-single-stacked {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .flat-single-stacked .item:first-child {
    grid-column: 1/-1;
    width: 100%;
  }

  .canvas-sidebar {
    max-width: 406px;
  }

  .canvas-sidebar .canvas-header {
    padding: 32px;
    padding-bottom: 10px;
  }

  .canvas-sidebar .canvas-header::after {
    left: 32px;
    right: 32px;
  }

  .canvas-sidebar .canvas-body {
    padding: 32px;
    padding-top: 24px;
  }

  .tf-product-fbt-wrap {
    padding: 30px;
  }

  .wrap-sw-over {
    margin-left: -12px;
    padding-left: 12px;
    margin-bottom: -20px;
    padding-bottom: 20px;
  }

  .menu-tab-line {
    gap: 24px;
  }

  .menu-tab-line.style-lg {
    gap: 48px;
  }

  .menu-tab-line.style-lg .tab-link {
    font-size: 28px;
    line-height: 29.2px;
  }

  .menu-tab-line.style-lg3,
  .menu-tab-line.style-lg2 {
    gap: 41px;
  }

  .menu-tab-line.style-md {
    gap: 0;
  }

  .menu-tab-line.style-md .tab-link {
    padding: 10px;
    font-size: 20px;
    line-height: 24px;
    min-width: 148px;
  }

  .menu-tab-line.style-md .tab-link::after {
    height: 2px;
  }

  .menu-tab-line.style-md2 .tab-link {
    font-size: 20px;
    line-height: 30px;
  }

  .gallery-item .box-icon {
    height: 40px;
    width: 40px;
    font-size: 14px;
  }

  .news-item .content {
    padding: 24px;
  }

  .news-item .content .title {
    margin-bottom: 24px;
  }

  .wrapper-thumbs-tes {
    display: flex;
  }

  .wrapper-thumbs-tes .box-right {
    padding: 40px 36px;
    width: 57.7%;
  }

  .wrapper-thumbs-tes .box-left {
    width: 42.3%;
    display: block;
  }

  .wrapper-thumbs-tes-2 {
    display: flex;
  }

  .wrapper-thumbs-tes-2 .box-right {
    width: 35%;
    display: block;
  }

  .wrapper-thumbs-tes-2 .box-left {
    width: 65%;
    padding: 40px 46px 40px 0px;
  }

  .wrapper-thumbs-tes-3 {
    display: flex;
  }

  .wrapper-thumbs-tes-3 .box-right {
    width: 37%;
    display: block;
  }

  .wrapper-thumbs-tes-3 .box-left {
    width: 63%;
    padding: 40px 46px 40px 0px;
  }

  .wrapper-thumbs-tes-4 {
    display: flex;
  }

  .wrapper-thumbs-tes-4 .box-left {
    width: 35%;
    display: block;
  }

  .wrapper-thumbs-tes-4 .box-right {
    width: 65%;
    padding: 40px 0px 40px 46px;
  }

  .fs-cls .content {
    bottom: 32px;
  }

  .fs-cls.lg .tf-btn {
    font-size: 18px;
    line-height: 26px;
  }

  .tab-content .swiper-pagination-progressbar {
    margin-top: 50px;
  }

  .tf-icon-box-v2 .title {
    font-size: 18px;
    line-height: 22.8px;
  }

  .flat-title .wg-countdown-2 .countdown__value {
    font-size: 32px;
    line-height: 40px;
  }

  .flat-title.style-line {
    gap: 25px;
  }

  .mega-box .mega-title-box {
    margin-bottom: 24px;
  }

  .banner-cd-phonecase {
    margin: 0px 24px;
  }

  .cls-video {
    height: 549px;
  }

  .cls-video .hover-video {
    height: 549px;
  }

  .flat-wrapper-lookbook {
    display: flex;
  }

  .flat-wrapper-lookbook .col-left,
  .flat-wrapper-lookbook .col-right {
    width: 50%;
  }

  .flat-wrapper-lookbook .col-left {
    padding: 32px 50px 27px;
  }

  .flat-wrapper-lookbook .slider-wrap-lb .title {
    margin-bottom: 32px;
  }

  .flat-wrapper-lookbook .card-product .tf-btn {
    font-size: 20px;
    line-height: 24px;
  }

  .s-cls.abs-left-center .content {
    left: 24px;
  }

  .s-cls.style-absolute .content {
    bottom: 24px;
    left: 24px;
    right: 24px;
  }

  .wg-cls.style-abs .cls-btn {
    bottom: 24px;
    left: 24px;
    right: 24px;
  }

  .wg-cls.style-abs2 .cls-btn {
    bottom: 24px;
    left: 24px;
    right: 24px;
  }

  .wg-cls.style-abs2.style-lg .cls-btn {
    bottom: 32px;
  }

  .tf-page-cart-sidebar .cart-box {
    padding: 24px;
  }

  .tf-checkout-cart-main {
    padding: 27px 24px 50px;
  }

  .menu-tab-fill-lg {
    gap: 32px;
  }

  .slider-fashion-2 {
    padding: 0px 24px;
  }

  .slider-baby .clouds {
    bottom: -20px;
  }

  .cloud-footer {
    margin-bottom: -20px;
  }
}

@media (min-width: 992px) {
  .slider-default .content-slider.style-2 {
    padding: 40px;
  }

  .slider-bicycle .content-slider.style-2 {
    padding: 42px;
  }

  .s2-banner-with-text .content-with-text {
    gap: 40px;
  }

  .s2-banner-with-text .box-title-content {
    gap: 16px;
  }

  .s3-banner-with-text .content-with-text {
    gap: 40px;
  }

  .s3-banner-with-text .box-title-content .title {
    margin-bottom: 24px;
  }

  .banner-group-img {
    display: flex;
    height: 642px;
  }

  .banner-group-img .banner-img {
    width: 50%;
    height: 100%;
  }

  .banner-group-img .box-content {
    margin: auto;
    padding: 40px 30px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .banner-group-img .box-content .tf-btn {
    margin-top: 42px;
  }

  .banner-group-img .box-content .heading {
    margin-bottom: 24px;
  }

  .footer-bottom-wrap .box-right {
    gap: 49px;
  }

  .grid-jewelry .wg-cls .tf-btn {
    font-size: 20px;
    line-height: 24px;
  }

  .footer-newsletter {
    gap: 32px;
  }

  .footer-default .form-newsletter input {
    height: 56px;
  }

  .footer-default .form-newsletter .subscribe-button {
    padding: 16px;
  }

  .footer-default .footer-top-wrap .social-item {
    width: 52px;
    height: 52px;
    font-size: 20px;
  }

  .footer-default .footer-top-wrap .social-facebook {
    font-size: 22px;
  }

  .tf-btn.btn-md {
    padding: 14px 35px;
  }

  .banner-cls-electric .banner-content .box-content {
    gap: 32px;
  }

  .flat-title-2 {
    gap: 20px;
    margin-bottom: 52px;
  }

  .flat-title-2 .box-title {
    gap: 10px;
  }

  .grid-cls-v3 {
    grid-template-areas: "aa aa bb" "aa aa cc";
    grid-template-columns: 1fr 1fr 1fr;
  }

  .grid-cls-v4 {
    grid-template-areas: "aa cc cc" "bb cc cc";
    grid-template-columns: 1fr 1fr 1fr;
  }

  .banner-cd-phonecase .countdown__item {
    width: 109px;
    height: 112px;
  }

  .banner-cd-phonecase .countdown__item .countdown__value {
    font-size: 48px;
    line-height: 60px;
  }

  .wg-testimonial .content-top {
    padding: 40px 24px 22px;
    gap: 20px;
  }

  .wg-testimonial .box-avt {
    padding: 24px;
    gap: 12px;
  }

  .wg-testimonial .box-price {
    gap: 6px;
  }

  .wg-testimonial.style-row .image {
    max-width: 244px;
    width: 100%;
  }

  .card-product.style-wishlist>.icon {
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 13px;
  }

  .card-product .card-product-info {
    padding-top: 18px;
    gap: 10px;
    padding-bottom: 20px;
  }

  .card-product.style-3 .list-product-btn {
    bottom: 60px;
  }

  .gallery-item .box-icon {
    opacity: 0;
    visibility: hidden;
  }

  .gallery-item:hover .box-icon {
    opacity: 1;
    visibility: visible;
  }

  .b-md-20 {
    bottom: 20px !important;
  }

  .wg-cls.style-abs .cls-btn {
    bottom: 40px;
  }

  .wg-cls.style-abs.type-2 .cls-content,
  .wg-cls.style-abs.type-2 .cls-btn {
    bottom: 24px;
  }

  .wg-cls.style-abs.type-2 .cls-content {
    gap: 24px;
    left: 24px;
    right: 24px;
  }

  .wg-cls.style-abs.type-3 .cls-btn {
    bottom: 20px;
  }

  .banner-text-skincare .content-banner {
    padding-left: 50px;
  }

  .s-banner-with-text .content-banner {
    gap: 42px;
  }

  .s-banner-with-text .box-title-banner {
    gap: 24px;
  }

  .s-banner-with-text.banner-text-skincare .content-banner {
    gap: 32px;
  }

  .s-banner-with-text.banner-text-skincare .box-title-banner {
    gap: 12px;
  }

  .s-banner-with-text.banner-text-skincare.type-2 .box-title-banner {
    gap: 10px;
  }

  .s-banner-with-text.banner-text-jewelry .box-title-banner,
  .s-banner-with-text.banner-text-pet .box-title-banner {
    gap: 16px;
  }

  .s-banner-with-text.banner-text-jewelry .content-banner,
  .s-banner-with-text.banner-text-pet .content-banner {
    gap: 33px;
  }

  .s-banner-with-text.banner-text-plant .box-title-banner {
    gap: 16px;
  }

  .s-banner-with-text.banner-text-plant .content-banner {
    gap: 33px;
    margin-right: 24px;
    margin-left: auto;
    max-width: 588px;
    width: 100%;
  }

  .s-banner-with-text.banner-text-plant.type-2 .content-banner {
    margin-left: 24px;
    margin-right: unset;
    max-width: unset;
  }

  .banner-cd-fashion .banner-content {
    left: 203px;
  }

  .account-dashboard .box-account-title {
    margin-bottom: 64px;
  }

  .banner-cls-phonecase .box-content {
    gap: 40px;
  }

  .banner-cls-phonecase .box-title-banner {
    gap: 10px;
  }

  .marquee-sale {
    padding: 23px 0px;
    height: 78px;
    display: flex;
  }

  .marquee-sale .marquee-wrapper {
    animation: infiniteScroll 60s linear infinite;
  }

  .marquee-sale .marquee-wrapper.scrollRight {
    animation: infiniteScrollRight 60s linear infinite;
  }

  .marquee-sale .marquee-child-item {
    margin: 0 40px;
  }

  .slider-baby .content-slider.style-2 {
    padding: 40px 60px;
  }

  .sidebar-blog {
    max-width: 366px;
    width: 100%;
    margin-left: auto;
  }

  .sidebar-blog.type-left {
    margin-left: unset;
    margin-right: auto;
  }

  .tf-grid-layout {
    column-gap: 24px;
    row-gap: 24px;
  }

  .tf-grid-layout.lg-col-2 {
    grid-template-columns: 1fr 1fr;
  }

  .tf-grid-layout.lg-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .tf-grid-layout.lg-col-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .tf-grid-layout.lg-col-5 {
    grid-template-columns: repeat(5, 1fr);
  }

  .tf-grid-layout.lg-col-6 {
    grid-template-columns: repeat(6, 1fr);
  }

  .tf-grid-layout.lg-col-7 {
    grid-template-columns: repeat(7, 1fr);
  }

  .tf-grid-layout.style-1 {
    row-gap: 40px;
  }

  .tf-grid-layout.style-1 .wg-pagination {
    margin-top: 20px;
  }

  .tab-content .tf-grid-layout {
    column-gap: 18px;
    row-gap: 40px;
  }

  .marquee-topbar .marquee-wrapper {
    animation: infiniteScroll 60s linear infinite;
  }

  .marquee-topbar .marquee-wrapper .marquee-child-item {
    margin: 0 20px;
  }

  .section-image-zoom.zoom-active .other-image-zoom {
    opacity: 0.3;
  }

  .sb-banner .title {
    font-size: 36px;
    line-height: 43.2px;
  }

  .tf-product-fbt-wrap {
    padding: 30px;
  }

  .list-volume-discount .volume-discount-item {
    padding: 16px 32px 16px 22px;
  }

  .tf-product-volume-discount-thumbnail {
    padding: 30px;
  }

  .volume-discount-thumbnail-item .tag-sale {
    left: 28px;
    right: 28px;
  }

  .card-product .box-icon {
    width: 40px;
    height: 40px;
  }

  .card-product .box-icon .icon {
    font-size: 16px;
  }

  .card-product .product-btn-main .btn-main-product {
    padding: 10px 15px;
  }

  .card-product.style-3.card-product-size .list-product-btn {
    bottom: 94px;
  }

  .tf-icon-box.style-2 {
    gap: 25px;
  }

  .tf-icon-box.style-2 .content {
    gap: 15px;
  }

  .tf-icon-box.style-2 .title {
    font-size: 20px;
    line-height: 20px;
  }

  .tf-icon-box.style-3 .title {
    font-size: 20px;
    line-height: 20px;
  }

  .tf-icon-box.style-4 {
    padding: 32px 24px;
    gap: 24px;
  }

  .tf-icon-box.style-4 .title {
    font-size: 20px;
    line-height: 20px;
  }

  .tf-icon-box.style-border {
    padding: 29px 20px;
    gap: 30px;
  }

  .tf-icon-box.style-border .content {
    gap: 20px;
  }

  .tf-icon-box.style-border .content h6 {
    line-height: 29px;
  }

  .tf-icon-box.style-border .content p {
    line-height: 22px;
  }

  .tf-icon-box.style-lg {
    gap: 25px;
  }

  .tf-icon-box.style-lg .title {
    font-size: 20px;
    line-height: 20px;
  }

  .tf-icon-box.style-lg .content {
    gap: 15px;
  }

  .flat-wrapper-testimonial {
    padding: 64px 30px 37px;
  }

  .banner-cls-bicycle .banner-content {
    height: 631px;
  }

  .mega-iconbox {
    padding: 40px 20px;
  }

  .mega-iconbox .tf-icon-box:not(:last-child) {
    margin-bottom: 40px;
  }

  .mega-iconbox .tf-icon-box {
    gap: 24px;
  }

  .cls-video {
    height: 649px;
  }

  .cls-video .hover-video {
    height: 649px;
  }
}

@media (min-width: 1025px) {
  .banner-shop.style-left-center .box-title .title {
    font-size: 36px;
    font-weight: 500;
    line-height: 43.2px;
  }

  .slider-pod .content-slider {
    max-width: 691px;
  }
}

@media (min-width: 1200px) {
  .footer-style-2 .footer-bottom-wrap .image-select.style-default {
    width: 226px !important;
  }

  .footer-style-2 .footer-bottom-wrap .image-select.style-default .filter-option-inner-inner {
    font-size: 18px;
  }

  .s-banner-with-text br {
    display: block;
  }

  .tf-icon-box-v2 {
    gap: 20px;
  }

  .tf-icon-box-v2 .icon {
    font-size: 32px;
  }

  .tf-icon-box-v2 .title {
    font-size: 24px;
    line-height: 28.8px;
  }

  .slider-default .parallax-wrap {
    padding: 279px 0px 304px;
  }

  .s2-banner-with-text {
    gap: 101px;
  }

  .banner-group-img .box-content {
    padding: 40px 55px;
  }

  .banner-cls-baby .banner-content {
    position: relative;
    overflow: unset;
  }

  .banner-cls-baby .image {
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
  }

  .banner-cls-baby .item {
    display: block;
    right: 0;
  }

  .s-banner-cd-baby .wg-countdown .countdown__item {
    width: 120px;
    height: 120px;
  }

  .s-banner-cd-baby .wg-countdown .countdown__item .countdown__value {
    font-size: 40px;
    line-height: 44px;
  }

  .banner-cd-phonecase .box-title {
    gap: 16px;
  }

  .tf-topbar {
    display: flex;
    height: 42px;
  }

  .footer-default .footer-body {
    padding: 0;
  }

  .footer-default .footer-info .item:not(:last-child) .box-icon {
    margin-top: -3px;
  }

  .row-footer {
    display: flex;
    gap: 0;
  }

  .row-footer .s1 {
    width: 29%;
    padding: 60px 24px;
    padding-left: 0;
    border-right: 1px solid var(--line);
  }

  .row-footer .s2 {
    width: 42%;
    padding: 60px 32px;
    border-right: 1px solid var(--line);
  }

  .row-footer .s3 {
    width: 29%;
    display: flex;
    justify-content: space-between;
    padding: 60px 32px;
    padding-right: 0;
  }

  .footer-cloud .row-footer .s1 {
    padding-bottom: 75px;
  }

  .banner-cls-phonecase .banner-content {
    gap: 42px;
  }

  .footer-style-2 {
    margin: 0px 40px 24px;
  }

  .footer-style-2 .footer-col-block.s2,
  .footer-style-2 .footer-col-block.s3 {
    display: grid;
    justify-content: center;
  }

  .footer-style-2 .footer-col-block.s4 {
    padding: 0px 60px;
  }

  .space-abs-header .content-slider {
    margin-top: 87px;
  }

  .popup-product .modal-content {
    padding: 32px 85px 64px;
  }

  .popup-product .modal-header {
    gap: 16px;
  }

  .tf-checkout-cart-main {
    padding: 37px 32px 62px;
  }

  .tf-checkout-cart-main .box-ip-shipping,
  .tf-checkout-cart-main .box-ip-contact,
  .tf-checkout-cart-main .box-ip-checkout {
    margin-bottom: 42px;
  }

  .fl-order-testimonial {
    padding: 42px 119px;
  }

  .tf-page-cart-main .cart-note {
    padding-right: 27px;
  }

  .tf-page-cart-main .form-cart {
    margin-bottom: 40px;
  }

  .tf-page-cart-main .fl-iconbox {
    padding-right: 27px;
  }

  .tf-page-cart-main .fl-iconbox .tf-swiper {
    padding: 32px;
  }

  .tf-page-cart-sidebar {
    position: sticky;
    top: 100px;
    transition: top 0.3s ease;
  }

  .tf-page-cart-sidebar .cart-box {
    padding: 32px;
  }

  .sidebar-order-success .order-box {
    padding-bottom: 117px;
  }

  .box-testimonial-quote {
    padding: 64px 15px 58px;
    gap: 42px;
  }

  .lh-xl-32 {
    line-height: 32px;
  }

  .lh-xl-26 {
    line-height: 26px;
  }

  .list-esd {
    max-width: 645px;
    width: 100%;
  }

  .list-esd .item {
    gap: 20px;
    padding: 30px 0px;
  }

  .tf-compare-item {
    gap: 20px;
    padding: 30px 20px;
  }

  .tf-compare-table::-webkit-scrollbar {
    height: 11px;
  }

  .tf-compare-table .text-md {
    line-height: 19px;
  }

  .tf-compare-table .text-sm {
    line-height: 17px;
  }

  .tf-compare-field,
  .tf-compare-value {
    padding: 19px 20px;
  }

  .tf-compare-col {
    min-width: 360px;
  }

  .wg-testimonial.style-2.type-2 .box-btn {
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }

  .wg-testimonial.style-2.type-2:hover .box-btn {
    opacity: 1;
  }

  .mb-xl-8 {
    margin-bottom: 8px;
  }

  .mb-xl-4 {
    margin-bottom: 4px !important;
  }

  .s-banner-bundle .bundle-wrap {
    gap: 40px;
    max-width: 708px;
    width: 100%;
    margin: auto;
  }

  .s-banner-bundle .list-recipe {
    gap: 24px;
  }

  .s-banner-bundle .content-list {
    gap: 24px;
    padding: 24px;
  }

  .s2-banner-bundle .bundle-wrap {
    gap: 40px;
    max-width: 806px;
    margin-left: auto;
    margin-right: 0;
    padding: 0px 49px 41px;
  }

  .s2-banner-bundle .banner-bundle .item {
    display: block;
    left: 0;
  }

  .s-cls.style-absolute .content {
    bottom: 32px;
    gap: 24px;
  }

  .s-cls.abs-left-center .content {
    left: 24px;
  }

  .s-cls.abs-left-center.type-large .content {
    left: 42px;
  }

  .s-cls.abs-left-bottom .content {
    left: 40px;
    bottom: 34px;
  }

  .grid-mega .item1.s-cls.abs-left-center .content {
    left: 64px;
  }

  .slider-thumb-wrap {
    gap: 40px;
  }

  .wg-map.style-absolute .box-store {
    left: 73px;
  }

  .box-store .contact-list {
    margin-bottom: 44px;
    gap: 8px;
  }

  .box-store.style-2 {
    gap: 24px;
  }

  .cls-video .cls-content {
    bottom: 24px;
    right: 24px;
    left: 24px;
    padding: 16px;
  }

  .wg-offer .image {
    margin-bottom: 34px;
  }

  .wg-offer .box-title {
    gap: 12px;
  }

  .wg-offer .content {
    gap: 24px;
  }

  .wg-offer.style-2 .image {
    margin-bottom: 24px;
  }

  .flat-title-v2 {
    margin-bottom: 48px;
    gap: 24px;
  }

  .flat-title-v2.style-2 {
    margin-bottom: 64px;
  }

  .s-contact .content-right,
  .s-contact .content-left {
    gap: 32px;
  }

  .s-contact.style-2 {
    gap: 0px;
    align-items: end;
  }

  .s-contact.style-2 .content-left {
    padding: 52px 62px;
    margin-bottom: 24px;
    gap: 19px;
  }

  .s-contact.style-2 .content-left .tf-btn {
    margin-top: 30px;
  }

  .s-contact.style-2 .image-right {
    margin-left: -120px;
  }

  .s-contact.style-2 .image-right img {
    border-radius: 16px;
  }

  .flat-title {
    margin-bottom: 48px;
  }

  .flat-title .btn-underline {
    font-size: 18px;
    line-height: 28px;
  }

  .flat-title.style-2 {
    margin-bottom: 42px;
  }

  .flat-title.mb_2 {
    margin-bottom: 60px;
  }

  .flat-title.mb_3 {
    margin-bottom: 40px;
  }

  .flat-title-tab-categories {
    margin-bottom: 42px;
    gap: 32px;
  }

  .flat-title-tab {
    gap: 27px;
  }

  .flat-title-tab-2 {
    margin-bottom: 64px;
  }

  .menu-tab-fill-lg {
    gap: 41px;
  }

  .banner-why-shop,
  .container-full {
    padding-left: 40px;
    padding-right: 40px;
  }

  .sidebar-filter .canvas-body {
    padding: 0;
  }

  .widget-facet .filter-color-box {
    padding-right: 60px;
  }

  .banner-tagline-phonecase {
    gap: 100px;
  }

  .banner-tagline-phonecase .list-tagline li {
    padding: 24px 20px;
  }

  .banner-tagline-phonecase .list-tagline li .box-text {
    gap: 10px;
  }

  .banner-tagline-phonecase .content {
    gap: 48px;
  }

  .banner-tagline-phonecase .icon i {
    font-size: 40px;
  }

  .card-product.style-border-2 .card-product-wrapper {
    padding: 16px 15px 32px;
  }

  .card-product.style-border-2 .card-product-info {
    padding: 0px 16px 32px;
    gap: 16px;
  }

  .card-product.style-border-2 .on-sale-wrap {
    top: 26px;
    left: 26px;
    right: auto;
  }

  .card-product.style-border-2.border-type-2 .card-product-info {
    padding: 0px 16px 42px;
  }

  .card-product.style-border-2.border-type-3 .card-product-info {
    padding: 0px 16px 24px;
  }

  .card-product.style-border-2.border-type-2 .card-product-wrapper,
  .card-product.style-border-2.border-type-3 .card-product-wrapper {
    padding: 15px;
    padding-bottom: 20px;
  }

  .card-product.style-border-2.border-type-5 .card-product-wrapper {
    padding: 20px;
    padding-bottom: 32px;
  }

  .card-product.style-border-2.border-type-5 .card-product-info {
    padding: 0px 20px 32px;
    gap: 24px;
  }

  .card-product.style-border .card-product-wrapper {
    padding: 20px;
    padding-top: 42px;
    padding-bottom: 64px;
  }

  .card-product.style-border .card-product-info {
    padding: 0px 20px 40px;
  }

  .card-product.style-2.card-product-size .list-product-btn {
    bottom: 62px;
  }

  .card-product.style-2 .list-product-btn {
    bottom: 20px;
  }

  .card-product.style-2 .list-product-btn li {
    transform: translateY(20px);
  }

  .card-product.style-2:hover .list-product-btn li {
    transform: translateY(0px);
  }

  .card-product.card-product-size .list-product-btn {
    bottom: 20px;
  }

  .card-product.style-3.card-product-size .product-btn-main {
    bottom: 50px;
  }

  .card-product.style-3.card-product-size .list-product-btn {
    bottom: 114px;
  }

  .card-product.style-3 .list-product-btn {
    bottom: 84px;
  }

  .card-product.style-3 .list-product-btn li {
    transform: translateY(20px);
  }

  .card-product.style-3:hover .list-product-btn li {
    transform: translateY(0px);
  }

  .card-product.style-3:hover .product-btn-main {
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
    transition-delay: 0.1s;
  }

  .card-product .product-btn-main {
    right: 24px;
    left: 24px;
    bottom: 20px;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
  }

  .card-product .product-btn-main .btn-main-product {
    padding: 14px 15px;
  }

  .card-product .tooltip {
    display: block;
  }

  .card-product .card-product-info .inner-info-product {
    gap: 10px;
  }

  .card-product .variant-box {
    padding: 10px 6px;
  }

  .card-product .countdown-box {
    display: flex;
  }

  .card-product .countdown-box.style-2 {
    padding-left: 35px;
    padding-right: 35px;
  }

  .card-product .list-product-btn {
    top: 20px;
    right: 20px;
    gap: 16px;
  }

  .card-product .list-product-btn li {
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }

  .card-product .box-icon {
    width: 45px;
    height: 45px;
  }

  .card-product .product-progress-sale {
    gap: 8px;
  }

  .card-product:not(.style-list) .size-box {
    transform: translateY(100%);
    padding: 10px 6px;
  }

  .card-product:hover .list-product-btn li {
    opacity: 1;
    visibility: visible;
  }

  .card-product:hover .list-product-btn li:nth-child(1) {
    transform: translateX(0px);
  }

  .card-product:hover .list-product-btn li:nth-child(2) {
    transform: translateX(0px);
    transition-delay: 0.1s;
  }

  .card-product:hover .list-product-btn li:nth-child(3) {
    transform: translateX(0px);
    transition-delay: 0.2s;
  }

  .card-product:hover .list-product-btn li:nth-child(4) {
    transform: translateX(0px);
    transition-delay: 0.3s;
  }

  .card-product:hover .size-box {
    transform: translateY(0%);
  }

  .card-product.card-product-size:hover .countdown-box,
  .card-product.style-2:hover .countdown-box,
  .card-product.style-3:hover .countdown-box {
    transform: translateY(100%);
    bottom: -1px;
  }

  .card-product.style-list {
    gap: 24px;
  }

  .card-product.style-list .card-product-wrapper {
    aspect-ratio: 1/1.42;
  }

  .card-product.style-list .card-product-info {
    gap: 24px;
  }

  .card-product.style-list .info-list {
    gap: 15px;
  }

  .card-product.style-center .card-product-info {
    padding: 20px 20px 35px;
  }

  .card-product.style-center .list-color-item {
    width: 38px;
    height: 38px;
    gap: 7px;
  }

  .card-product.style-4 .card-product-info {
    padding: 24px 16px;
  }

  .card-product.style-5 .card-product-info .btn-addcart {
    padding: 0px 27px;
  }

  .card-product.style-space .card-product-wrapper {
    padding: 15px 16px 32px;
  }

  .card-product.style-space .card-product-info {
    padding: 0px 16px 32px;
    gap: 16px;
  }

  .card-product.style-space-2 .card-product-wrapper {
    padding: 15px 16px 20px;
  }

  .card-product.style-space-2 .card-product-info {
    padding: 0px 16px 20px;
    gap: 16px;
  }

  .card-product .list-capacity-product .list-color-item .text-quantity {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
  }

  .bundle-wrap .card-product:not(.style-2, .style-3) .list-product-btn {
    gap: 12px;
    top: 12px;
    right: 12px;
  }

  .bundle-wrap .card-product:not(.style-2, .style-3) .box-icon {
    width: 40px;
    height: 40px;
  }

  .bundle-suppermarket .image-wrap {
    margin-left: 33px;
  }

  .banner-text-skincare .content-banner {
    padding-left: 108px;
  }

  .tf-filter-dropdown,
  .tf-shop-control {
    margin-bottom: 40px;
  }

  .tf-filter-dropdown {
    gap: 20px;
  }

  .tf-filter-dropdown .meta-dropdown-filter {
    gap: 10px;
  }

  .tf-btn-filter {
    gap: 9px;
    padding: 13px 20px;
  }

  .tf-btn-filter .icon {
    font-size: 18px;
  }

  .tf-btn-filter .text {
    font-size: 16px;
  }

  .tf-dropdown-sort {
    padding: 13px 20px;
    min-width: 244px;
  }

  .tf-dropdown-sort .text-sort-value {
    font-size: 16px;
  }

  .tf-dropdown-sort .icon {
    font-size: 14px;
  }

  .tf-dropdown-sort .dropdown-menu {
    min-width: 244px;
  }

  .dropdown-filter .dropdown-toggle {
    padding: 13px 20px;
  }

  .dropdown-filter .dropdown-menu {
    min-width: 300px;
    padding: 25px 15px;
  }

  .dropdown-filter .text-value {
    font-size: 16px;
  }

  .tf-control-layout .tf-view-layout-switch {
    width: 48px;
    height: 48px;
  }

  .lookbook-item .dropdown-menu {
    --bs-dropdown-min-width: 14rem;
  }

  .lookbook-item .dropend .dropdown-menu {
    --bs-dropdown-min-width: 367px;
  }

  .tf-grid-layout.xl-col-2 {
    grid-template-columns: 1fr 1fr;
  }

  .tf-grid-layout.xl-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .tf-grid-layout.xl-col-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .tf-grid-layout.xl-col-5 {
    grid-template-columns: repeat(5, 1fr);
  }

  .tf-grid-layout.xl-col-6 {
    grid-template-columns: repeat(6, 1fr);
  }

  .tf-grid-layout.xl-col-7 {
    grid-template-columns: repeat(7, 1fr);
  }

  .xl-px-26 {
    padding-left: 26px;
    padding-right: 26px;
  }

  .header-default .wrapper-header {
    min-height: 87px;
  }

  .header-default .wrapper-header .nav-icon {
    gap: 20px;
  }

  .header-default .header-top {
    border-bottom: 1px solid var(--line);
  }

  .header-medium .wrapper-header {
    min-height: 70px;
  }

  .header-absolute {
    margin-bottom: -87px;
  }

  .header-absolute-2:not(.header-bg) .header-top {
    border: 0;
  }

  .tf-product-info-wrap .tf-product-volume-discount,
  .tf-product-info-wrap .tf-product-info-list {
    margin-bottom: 42px;
  }

  .tf-product-info-wrap .tf-product-info-heading {
    padding-bottom: 32px;
    margin-bottom: 32px;
  }

  .tf-product-info-wrap .tf-product-info-heading .product-info-sold {
    margin-bottom: 24px;
  }

  .tf-product-info-wrap .tf-product-info-extra-link {
    gap: 42px;
  }

  .tf-product-info-wrap .tf-product-volume-discount-thumbnail {
    margin-top: 42px;
    margin-bottom: 42px;
  }

  .flat-wrap-frequently-bought-together .thumbs-slider {
    margin-bottom: 42px;
  }

  .tf-product-fbt {
    padding: 32px;
  }

  .tf-product-fbt .tf-btn {
    padding: 16px 32px;
  }

  .flat-single-grid {
    margin-right: 24px;
  }

  .flat-single-grid-2 .item {
    width: 100%;
    height: 500px;
  }

  .tf-variant-dropdown {
    padding: 14px 12px;
  }

  .tab-product-desc .tab-link {
    min-width: 154px;
  }

  .widget-facet:not(:last-child) {
    margin-bottom: 32px;
    padding-bottom: 32px;
  }

  .canvas-sidebar .list-icon-box .tf-icon-box:not(:last-child) {
    margin-bottom: 32px;
  }

  .canvas-sidebar .mega-box:not(:last-child) {
    margin-bottom: 40px;
  }

  .tf-product-fbt-wrap {
    padding: 32px 80px 36px;
  }

  .tf-product-fbt-wrap .fbt-info {
    gap: 16px;
  }

  .tf-product-fbt-wrap .fbt-info .bundle-variant,
  .tf-product-fbt-wrap .fbt-info .bundle-title {
    margin-right: 16px;
  }

  .tf-product-fbt-wrap .tf-product-form-fbt {
    gap: 32px;
  }

  .tf-product-fbt-wrap .list-fbt {
    margin-bottom: 24px;
  }

  .tf-product-fbt-wrap .fbt-swatches {
    gap: 16px;
  }

  .tf-product-volume-discount {
    padding: 32px 84px 42px;
  }

  .list-volume-discount .volume-discount-item .tag-sale {
    right: -40px;
  }

  .tf-product-volume-discount-thumbnail {
    padding: 32px 70px 32px 45px;
  }

  .tf-product-volume-discount-thumbnail .title-discount {
    margin-bottom: 45px;
  }

  .tf-product-volume-discount-thumbnail .list-volume-discount-thumbnail {
    margin-bottom: 40px;
  }

  .tf-product-media-wrap {
    padding-right: 24px;
  }

  .list-color-product .list-color-item {
    width: 30px;
    height: 30px;
  }

  .tf-loading {
    height: 48px;
    min-width: 138px;
  }

  .hover-sw-nav {
    position: relative;
  }

  .hover-sw-nav .nav-swiper {
    visibility: hidden;
  }

  .hover-sw-nav .swiper-button-next {
    margin-right: 20px;
  }

  .hover-sw-nav .swiper-button-prev {
    margin-left: 20px;
  }

  .hover-sw-nav:hover .nav-swiper {
    visibility: visible;
    margin-left: 0;
    margin-right: 0;
  }

  .gallery-item .box-icon {
    height: 48px;
    width: 48px;
    font-size: 19px;
  }

  .tf-sw-iconbox-row .swiper-slide:not(:last-child) .tf-icon-box {
    position: relative;
    padding-right: 59px;
  }

  .tf-sw-iconbox-row .swiper-slide:not(:last-child) .tf-icon-box::after {
    position: absolute;
    content: "";
    right: 0;
    width: 1px;
    top: 9px;
    bottom: 9px;
    background-color: var(--line);
  }

  .flat-wrapper-iconbox {
    padding: 97px 60px 69px;
  }

  .flat-wrapper-iconbox .tf-icon-box .title {
    font-size: 24px;
    line-height: 30px;
  }

  .grid-cls-v1 {
    gap: 24px;
  }

  .grid-cls-v1 .wg-cls .cls-btn {
    bottom: 32px;
  }

  .grid-cls-v1 .wg-cls .tf-btn {
    font-size: 24px;
    line-height: 32px;
    min-width: 180px;
  }

  .grid-cls-v1 .item3 .btn-cls {
    min-width: 232px;
  }

  .grid-cls-sport .wg-cls .tf-btn {
    padding-top: 10px;
    padding-bottom: 10px;
    min-width: 169px;
  }

  .grid-cls-sport .item3 .tf-btn {
    min-width: 209px;
  }

  .wg-cls-2 {
    gap: 32px;
  }

  .wg-cls-2 .box-title {
    margin-bottom: 24px;
  }

  .wg-cls.style-02 .btn-cls {
    font-size: 24px;
  }

  .wg-cls.style-02 .btn-cls .icon {
    font-size: 14px;
  }

  .wrapper-thumbs-tes .box-right {
    padding: 60px 49px 60px 64px;
  }

  .wrapper-thumbs-tes .box-testimonial-main .quote {
    font-size: 39px;
  }

  .wrapper-thumbs-tes-2 .box-left {
    padding: 60px 200px 60px 0px;
  }

  .wrapper-thumbs-tes-2 .box-testimonial-main .quote {
    font-size: 48px;
  }

  .wrapper-thumbs-tes-3 .box-left {
    padding: 60px 99px 60px;
  }

  .wrapper-thumbs-tes-3 .box-testimonial-main .content {
    gap: 32px;
  }

  .wrapper-thumbs-tes-3 .box-testimonial-main .quote {
    font-size: 68px;
  }

  .wrapper-thumbs-tes-4 .box-right {
    padding: 60px 0px 60px 100px;
  }

  .wrapper-thumbs-tes-4 .box-testimonial-main {
    gap: 42px;
  }

  .wrapper-thumbs-tes-4 .box-testimonial-main .box-content {
    gap: 24px;
  }

  .flat-thumbs-tes .sw-dot-default,
  .flat-thumbs-tes .box-nav-swiper {
    margin-top: 32px;
  }

  .box-testimonial-main {
    gap: 32px;
  }

  .fs-cls .content {
    bottom: 42px;
  }

  .fs-cls .content .tf-btn {
    font-size: 20px;
    line-height: 30px;
    min-width: 200px;
  }

  .fs-cls.lg .tf-btn {
    font-size: 24px;
    line-height: 30px;
    min-width: 248px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .wrapper-control-shop .tf-list-layout {
    gap: 32px;
  }

  .wrapper-control-shop .tf-list-layout .wg-pagination {
    margin-top: 40px;
  }

  .wrapper-control-shop .tf-grid-layout {
    row-gap: 40px;
  }

  .wrapper-control-shop .tf-grid-layout .wg-pagination {
    margin-top: 20px;
  }

  .flat-wrap-cls {
    row-gap: 42px;
  }

  .flat-wrap-cls .wg-pagination {
    margin-top: 18px;
  }

  .tab-content .tf-grid-layout {
    row-gap: 40px;
  }

  .tab-content .box-btn {
    margin-top: 32px;
  }

  .menu-tab-line.style-lg .tab-link {
    padding: 10px 4px;
    font-size: 36px;
    line-height: 43.2px;
  }

  .menu-tab-line.style-lg .tab-link::after {
    height: 2px;
  }

  .menu-tab-line.style-lg3 .tab-link {
    font-size: 48px;
    line-height: 60px;
    padding: 0px;
  }

  .banner-shop.style-left-center .content {
    gap: 32px;
    left: 64px;
  }

  .banner-shop.style-left-center .box-title {
    gap: 20px;
  }

  .banner-shop.style-left-center .tf-btn {
    padding: 14px 37px;
  }

  .banner-shop.style-top .content {
    top: 82px;
    gap: 32px;
  }

  .banner-shop.style-top .box-title {
    gap: 20px;
  }

  .banner-shop.style-lg-bottom .content {
    bottom: 40px;
    left: 32px;
    right: 32px;
  }

  .banner-shop .box {
    padding: 20px 73px 20px 32px;
  }

  .tab-content .swiper-pagination-progressbar {
    margin-top: 112px;
  }

  .banner-cd-phonecase {
    margin: 0px 40px;
  }

  .tf-btn.btn-large {
    padding: 14px 38px;
  }

  .flat-wrapper-lookbook .col-left {
    width: 48.6%;
    padding: 48px 102px 27px;
  }

  .flat-wrapper-lookbook .col-right {
    width: 51.4%;
  }

  .flat-wrapper-lookbook .slider-wrap-lb {
    padding-left: 68px;
    padding-right: 68px;
  }

  .flat-wrapper-lookbook .slider-wrap-lb .title {
    margin-bottom: 64px;
  }

  .wg-testimonial-2 .text {
    margin-top: 40px;
  }

  .table-page-cart td {
    padding: 30px 9px;
  }

  .footer-style-2 .footer-body {
    padding-top: 80px;
    padding-bottom: 88px;
  }

  .fl-control-sw2 .swiper-button-prev,
  .fl-control-sw .swiper-button-prev {
    left: -22px;
  }

  .fl-control-sw2 .swiper-button-next,
  .fl-control-sw .swiper-button-next {
    right: -22px;
  }

  .wg-testimonial-3 {
    margin-bottom: 55px;
    gap: 40px;
  }

  .wg-testimonial-3 .box-top {
    gap: 24px;
  }

  .wg-testimonial-3 .box-author {
    gap: 8px;
  }

  .wg-testimonial-3 .box-title-desc {
    gap: 24px;
  }

  .slider-baby .clouds {
    bottom: -65px;
  }

  .cloud-footer {
    margin-bottom: -60px;
  }
}

@media (min-width: 1440px) {
  .topbar-wraper {
    gap: 150px;
  }

  .slider-fashion-2 {
    padding: 0px 30px;
  }

  .banner-why-shop {
    padding-left: 115px;
    padding-right: 115px;
  }

  .row-footer .s2 {
    padding: 60px 74px 60px 80px;
  }

  .row-footer .s3 {
    padding: 60px 80px;
    padding-right: 0;
  }

  .tf-main-success .box-progress-order {
    padding: 32px 64px;
  }

  .wg-testimonial.style-2.type-2 {
    padding: 40px 32px 24px;
  }

  .wg-testimonial.style-2.type-2 .br-line {
    margin: 24px 0px;
  }

  .s-banner-bundle .content-list {
    padding: 24px 48px;
  }

  .lh-19 {
    line-height: 19px;
  }

  .flat-wrap-testimonial {
    padding: 64px 0px 37px;
  }

  .my-account-container {
    gap: 64px;
  }

  .account-dashboard .content-account {
    gap: 24px;
  }

  .banner-text-jewelry .image-1 {
    max-width: 517px;
  }

  .banner-text-jewelry .image-2 {
    max-width: 275px;
    right: 48px;
    bottom: 27px;
  }

  .banner-text-skincare.type-2 .image-1 {
    max-width: 663px;
  }

  .banner-text-skincare.type-2 .image-2 {
    max-width: 361px;
    bottom: 44px;
  }

  .banner-cls-phonecase .box-content {
    padding-left: 100px;
    flex-shrink: 0;
    width: unset;
  }

  .banner-cls-phonecase .image {
    max-width: 1007px;
    width: 100%;
  }

  .slider-phonecase {
    margin: 27px 40px 0px;
  }

  .slider-electric-access .content-slider {
    margin-left: 52px;
  }

  .tf-grid-layout.xxl-col-2 {
    grid-template-columns: 1fr 1fr;
  }

  .tf-grid-layout.xxl-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .tf-grid-layout.xxl-col-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .tf-grid-layout.xxl-col-5 {
    grid-template-columns: repeat(5, 1fr);
  }

  .tf-grid-layout.xxl-col-6 {
    grid-template-columns: repeat(6, 1fr);
  }

  .tf-grid-layout.xxl-col-7 {
    grid-template-columns: repeat(7, 1fr);
  }

  .header-default .box-nav-menu .item-link::after {
    width: calc(100% + 80px);
  }

  .header-default .style-space .box-nav-menu {
    gap: 36px;
  }

  .box-nav-menu .mega-menu {
    left: 100px;
    right: 100px;
    padding: 32px 104px 60px;
  }

  .box-nav-menu .mega-shop {
    left: 76px;
    right: 80px;
    padding: 32px 123px 60px;
  }

  .box-nav-menu .mega-home {
    padding: 37px 128px 39px 132px;
  }

  .box-nav-menu .mega-tab .wrapper-sub-menu-tab .tab-pane {
    gap: 60px;
  }

  .box-nav-menu.justify-content-start .mega-home {
    left: 0;
  }

  .flat-wrap-media-product .swiper-button-next {
    right: -20px;
  }

  .flat-wrap-media-product .swiper-button-prev {
    left: -20px;
  }

  .flat-wrap-iconbox .tf-swiper {
    padding: 0px 65px;
  }
}

@media (min-width: 1600px) {
  .header-default .box-nav-menu {
    gap: 40px;
  }

  .footer-style-2 .footer-col-block.s4 {
    padding: 0px 110px;
  }

  .s-banner-product .content-right {
    max-width: 791px;
    width: 100%;
  }

  .s-banner-product .content-banner {
    justify-content: unset;
    padding-left: 90px;
  }

  .banner-cls-baby .item {
    right: -69px;
  }

  .s2-banner-bundle .banner-bundle .item {
    left: -66px;
  }

  .tf-btn.btn-cls:hover .icon {
    margin-left: 16px;
  }

  .fl-control-sw2 .swiper-button-prev {
    left: -54px;
  }

  .fl-control-sw2 .swiper-button-next {
    right: -54px;
  }
}

@media (max-width: 1440px) {
  .box-nav-menu .sub-menu-style-2 {
    left: -100px;
  }

  .slider-fashion-1 .slider-wrap {
    height: 700px;
  }
}

@media (max-width: 1399px) {

  .tf-control-layout .sw-layout-5,
  .tf-control-layout .sw-layout-6 {
    display: none;
  }
}

@media (max-width: 1199px) {
  .pb_xl-0 {
    padding-bottom: 0 !important;
  }

  .footer-pb-2 {
    padding-bottom: 165px;
  }

  .footer-style-2 .s1 {
    margin-bottom: 30px;
  }

  .tf-sticky-btn-atc {
    bottom: 66px;
  }

  .title-success-order .icon {
    width: 100px;
    height: 100px;
  }

  .tf-page-cart-sidebar {
    margin-top: 60px;
  }

  .tf-toolbar-bottom {
    display: flex;
  }

  .xl-pb-70 {
    padding-bottom: 65px;
  }

  .offcanvas-search.type-search-product .wrapper-shop {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 30px;
  }

  .offcanvas-search.type-search-product .top-title {
    margin-bottom: 20px;
  }

  .sidebar-filter {
    position: fixed;
    bottom: 0;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    background-clip: padding-box;
    outline: 0;
  }

  .sidebar-filter.left {
    top: 0;
    left: 0;
    transform: translateX(-100%);
  }

  .sidebar-filter.right {
    top: 0;
    right: 0;
    transform: translateX(100%);
  }

  .sidebar-filter.show {
    transform: none;
  }

  .banner-text-fashion .image-1 {
    width: 80%;
  }

  .banner-text-fashion .image-2 {
    left: 0%;
    bottom: 5%;
    top: 35%;
    width: 50%;
  }

  .logo-header-2,
  .logo-header {
    display: flex;
    justify-content: center;
  }

  .header-default .wrapper-header .nav-icon {
    gap: 10px;
  }

  .header-absolute-2 {
    margin-bottom: -64px;
  }

  .header-absolute-2:not(.header-bg) .logo-header .logo-white {
    display: block;
  }

  .header-absolute-2:not(.header-bg) .logo-header .logo-dark {
    display: none;
  }

  .header-absolute-2:not(.header-bg) .nav-icon .nav-icon-item {
    color: var(--white);
  }

  .header-absolute-2:not(.header-bg) .mobile-menu {
    color: var(--white);
  }

  .slider-scroll,
  .thumbs-slider {
    flex-direction: column;
  }

  .slider-scroll .flat-wrap-media-product,
  .thumbs-slider .flat-wrap-media-product {
    width: 100%;
  }

  .slider-scroll .tf-product-media-thumbs,
  .thumbs-slider .tf-product-media-thumbs {
    order: 1;
    width: 100%;
  }

  .tab-vertical-product-desc {
    display: block;
  }

  .tab-vertical-product-desc .menu-tab {
    display: flex;
    overflow: auto;
    gap: 20px;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .tab-vertical-product-desc .tab-link {
    white-space: nowrap;
    padding: 12px 0px;
  }

  .tab-vertical-product-desc .tab-link::after {
    top: auto;
    bottom: 0;
    height: 1px;
    width: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .tab-vertical-product-desc .tab-link.active::after {
    width: 100%;
    height: 1px;
  }

  .tab-vertical-product-desc .tab-content {
    margin-top: 20px;
  }

  .tab-vertical-product-desc .wd-product-descriptions {
    padding: 30px;
  }

  .tf-control-layout .sw-layout-4 {
    display: none;
  }

  .card-product.card-product-size .countdown-box {
    bottom: 40px;
  }

  .mx_40 {
    margin-left: 24px;
    margin-right: 24px;
  }

  .flat-controltab-nav .box-nav-swiper {
    display: none;
  }
}

@media (max-width: 1024px) {

  h1,
  .display-2xl {
    font-size: 52px;
    line-height: 70px;
  }

  .display-2xl-2 {
    font-size: 52px;
    line-height: 62px;
  }

  h2,
  .display-xl,
  .display-xl-2 {
    font-size: 40px;
    line-height: 52px;
  }

  h3,
  .display-lg,
  .display-lg-2,
  .display-lg-3 {
    font-size: 38px;
    line-height: 50px;
  }

  .display-lg-5,
  .display-lg-4 {
    font-size: 38px;
    line-height: 48px;
  }

  h4,
  .display-md,
  .display-md-2,
  .display-md-3 {
    font-size: 30px;
    line-height: 38px;
  }

  h5,
  .display-sm {
    font-size: 28px;
    line-height: 36px;
  }

  h6,
  .display-xs {
    font-size: 22px;
    line-height: 30px;
  }

  .flat-spacing-3 {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .flat-spacing-6,
  .flat-spacing {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .flat-spacing-11 {
    padding-top: 80px;
    padding-bottom: 100px;
  }

  .flat-spacing-14 {
    padding-top: 73px;
    padding-bottom: 88px;
  }

  .flat-spacing-15 {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .flat-spacing-16 {
    padding-top: 100px;
    padding-bottom: 80px;
  }

  .flat-spacing-17 {
    padding-top: 80px;
    padding-bottom: 100px;
  }

  .flat-spacing-19 {
    padding-top: 87px;
    padding-bottom: 120px;
  }

  .flat-spacing-21 {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .flat-spacing-22 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .flat-spacing-23 {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .flat-spacing-28,
  .flat-spacing-26 {
    padding-top: 100px;
    padding-bottom: 80px;
  }

  .flat-spacing-27 {
    padding-top: 125px;
    padding-bottom: 100px;
  }

  .tf-product-info-wrap .tf-product-info-delivery-return {
    display: block;
  }

  .tf-product-info-wrap .tf-product-info-delivery-return .product-delivery:not(:last-child) {
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .banner-shop .box-title .title {
    font-size: 30px;
    line-height: 36px;
  }
}

@media (max-width: 991px) {
  .flat-wrapper-testimonial>img {
    width: 150px;
  }

  .flat-wrapper-testimonial .img-item-2 {
    left: 0;
    bottom: 0;
  }

  .flat-wrapper-testimonial .img-item-1 {
    top: 0;
  }

  .grid-cls-suppermarket .s-cls {
    height: 400px;
  }

  @keyframes floating {
    0% {
      transform: translateY(0px);
    }

    100% {
      transform: translateY(10px);
    }
  }

  .banner-text-skincare .text-xl-2 {
    font-size: 18px;
    line-height: 22px;
  }

  .s-contact .content-left {
    margin-bottom: 32px;
  }

  .s-blog-single {
    padding-top: 80px;
    padding-bottom: 60px;
  }

  .offcanvas-search.type-search-product .wrapper-shop {
    row-gap: 30px;
  }

  .banner-tagline-phonecase {
    flex-wrap: wrap;
    gap: 30px;
  }

  .banner-tagline-phonecase .image {
    width: 100%;
    height: 450px;
  }

  .banner-tagline-phonecase .content {
    gap: 5px;
  }

  .banner-tagline-phonecase .list-tagline li {
    padding-left: 0px;
  }

  .card-product.style-list .box-icon {
    width: 46px;
    height: 46px;
  }

  .wg-pagination {
    gap: 8px;
  }

  .wg-pagination .pagination-item {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .banner-lookbook {
    height: 500px;
  }

  .banner-container-wrap {
    margin-bottom: 60px;
  }

  .s-banner-cd-baby .banner-container {
    flex-wrap: wrap-reverse;
    justify-content: center;
    text-align: center;
    padding: 30px 15px;
  }

  .banner-cls-phonecase .banner-content {
    flex-wrap: wrap-reverse;
  }

  .s-banner-colection .box-content {
    gap: 20px;
  }

  .s-banner-colection .box-title-banner {
    gap: 5px;
  }

  .s-banner-colection br {
    display: none;
  }

  .slider-fashion-3 .image {
    margin-left: 100px;
  }

  .slider-default .box-title-slider,
  .slider-style-2 .box-title-slider {
    gap: 10px;
  }

  .slider-default .content-slider,
  .slider-style-2 .content-slider {
    gap: 20px;
  }

  .slider-default .slider-wrap {
    height: 500px;
  }

  .sb-contact {
    margin-bottom: 50px;
  }

  .sb-banner .image {
    max-height: 600px;
  }

  .flat-single-product {
    padding: 27px 0px 80px;
  }

  .nav-swiper {
    width: 40px;
    height: 40px;
  }

  .tf-btn {
    padding: 10px 24px;
    gap: 8px;
  }

  .tf-product-info-wrap .tf-product-info-extra-link {
    gap: 15px;
  }

  .tf-bundle-product-item {
    gap: 15px;
  }

  .tf-bundle-product-item .bundle-image {
    width: 100px;
    min-width: 100px;
  }

  .tf-product-fbt-wrap .fbt-image {
    width: 100px;
    min-width: 100px;
  }

  .tf-product-fbt-wrap .list-fbt {
    gap: 20px;
  }

  .wg-cls {
    gap: 12px;
  }

  .my-account-container {
    flex-wrap: wrap;
  }

  #goTop {
    right: 20px;
    width: 32px;
    height: 32px;
  }

  .sec-blog {
    padding-top: 80px;
    padding-bottom: 120px;
  }
}

@media (max-width: 767px) {
  .flat-wrapper-testimonial>img {
    width: 120px;
  }

  .flat-wrapper-iconbox {
    padding: 60px 24px 24px;
  }

  .footer-default {
    font-size: 14px;
    line-height: 22px;
  }

  .grid-cls-suppermarket .s-cls {
    height: 350px;
  }

  .grid-cls-suppermarket .s-cls .content {
    right: 100px;
  }

  .banner-lookbook .lookbook-item.position3 {
    left: 37%;
  }

  .grid-cls-v5 .item1,
  .grid-cls-v5 .item2,
  .grid-cls-v5 .item3,
  .grid-cls-v5 .item4 {
    height: 400px;
  }

  .footer-logo {
    max-width: 108px;
  }

  .s3-banner-with-text .content-with-text,
  .s2-banner-with-text .content-with-text {
    text-align: center;
    justify-items: center;
  }

  .flat-title.style-between {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    align-items: center !important;
  }

  .image-compare .icv__img-a {
    height: 300px;
    object-fit: cover;
  }

  .image-compare .icv__label {
    padding: 6px 20px;
    font-size: 14px;
    line-height: 22px;
    bottom: 12px;
  }

  .image-compare .icv__label-before {
    left: 12px;
  }

  .image-compare .icv__label-after {
    right: 12px;
  }

  .image-compare .icv__circle {
    width: 42px;
    height: 42px;
  }

  .image-compare .icv__circle::after {
    width: 32px;
    height: 32px;
  }

  .image-compare .icv__circle::before {
    font-size: 12px;
  }

  .tf-main-success .box-progress-order {
    gap: 12px;
    text-wrap: nowrap;
    overflow-x: auto;
  }

  .tf-main-success .box-progress-order .order-progress-item {
    border: 0 !important;
    padding: 0px 8px;
    gap: 8px;
  }

  .tf-main-success .box-timeline-order {
    margin: 42px auto 32px;
  }

  .title-success-order .icon {
    width: 80px;
    height: 80px;
  }

  .tf-checkout-cart-main .grid-2,
  .tf-checkout-cart-main .grid-3 {
    grid-template-columns: 1fr;
  }

  .table-page-cart thead {
    display: none;
  }

  .table-page-cart .tf-cart-item {
    margin-bottom: 15px;
    padding-inline-start: 94px;
    min-height: 140px;
    display: block;
    font-size: 12px;
    font-weight: 500;
    position: relative;
  }

  .table-page-cart .tf-cart-item .wg-quantity {
    padding: 2px 4px;
  }

  .table-page-cart .tf-cart-item .tf-cart-item_total {
    width: 100%;
  }

  .table-page-cart .tf-cart-item .img-box {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    width: 80px;
    max-height: 110px;
  }

  .table-page-cart .tf-cart-item td {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 10px 0;
    margin: 0;
  }

  .table-page-cart .tf-cart-item td:not(:last-child) {
    border-bottom: 1px solid var(--line);
  }

  .table-page-cart .tf-cart-item td[data-cart-title]:before {
    content: attr(data-cart-title);
    color: var(--dark);
    text-align: start;
    flex: 1 1 auto;
  }

  .table-page-cart .tf-cart-item_product .cart-info .variants {
    margin-bottom: 15px;
  }

  .tf-sticky-btn-atc .tf-sticky-atc-product {
    display: none !important;
  }

  .tf-sticky-btn-atc .tf-sticky-atc-infos {
    width: 100%;
  }

  .tf-sticky-btn-atc .tf-sticky-atc-infos form {
    flex-direction: column;
  }

  .wd-form-address {
    padding: 20px 15px;
  }

  .account-orders .account-no-orders-wrap img {
    margin-bottom: 30px;
  }

  .account-orders .account-no-orders-wrap .text {
    margin-bottom: 24px;
  }

  .modal-compare .modal-content {
    padding: 24px 15px;
  }

  .modal-order-detail ul.list-infor {
    gap: 15px;
  }

  .modal-order-detail .tb-order-detail [data-title]:before {
    content: attr(data-title);
    text-align: start;
    flex: 1 1 auto;
  }

  .modal-order-detail .tb-order-detail .order-detail-item:not(.subtotal) {
    padding: 15px;
    padding-left: 90px;
    position: relative;
    flex-direction: column;
    align-items: start;
    gap: 10px;
  }

  .modal-order-detail .tb-order-detail .order-detail-item:not(.subtotal) .image {
    position: absolute;
    top: 15px;
    left: 0;
    width: 80px;
    height: 111.7px;
  }

  .modal-order-detail .tb-order-detail .order-detail-item:not(.subtotal) .item {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }

  .modal-order-detail .tb-order-detail .subtotal .item {
    width: max-content;
  }

  .modal-share-social .wrap-code {
    margin-bottom: 20px;
  }

  .popup-style-2 .modal-content {
    padding: 26px 20px;
  }

  .popup-style-2 .modal-header {
    margin-bottom: 20px;
  }

  .form-ask-question button {
    margin-top: 20px;
  }

  .offcanvas-search.type-search-product .wrapper-shop {
    grid-template-columns: repeat(2, 1fr);
  }

  .wg-map .map {
    height: 350px;
  }

  .wg-map.style-absolute .box-store {
    position: unset;
    transform: unset;
    max-width: 100%;
    text-align: center;
  }

  .wg-map.style-absolute .box-store:not(.box-store-bg) {
    padding: 30px 0px 0px;
  }

  .wg-map.style-absolute .box-store.box-store-bg {
    margin-top: 24px;
  }

  .banner-account.banner-acc-countdown {
    padding: 15px;
  }

  .account-dashboard .box-check-list {
    gap: 15px;
  }

  .account-dashboard .banner-account .image img {
    height: 250px;
    object-fit: cover;
  }

  .popup-style-1 .popup-header {
    padding: 15px;
    padding-bottom: 10px;
  }

  .popup-style-1 .popup-header::after {
    left: 15px;
    right: 15px;
  }

  .popup-style-1 .popup-inner {
    padding: 15px;
  }

  .modal-before-you-leave .content {
    margin: 0 15px;
    padding: 20px 0;
    margin-bottom: 20px;
  }

  .modal-before-you-leave .content .heading {
    margin-bottom: 16px;
  }

  .modal-before-you-leave .tf-mini-cart-sroll {
    padding-left: 15px;
    padding-right: 15px;
  }

  .popup-shopping-cart .tf-minicart-recommendations,
  .popup-shopping-cart .tf-mini-cart-tool-content,
  .popup-shopping-cart .tf-mini-cart-bottom-wrap,
  .popup-shopping-cart .tf-mini-cart-tool,
  .popup-shopping-cart .tf-mini-cart-threshold,
  .popup-shopping-cart .tf-mini-cart-item {
    padding-left: 15px;
    padding-right: 15px;
  }

  .offcanvas-search .offcanvas-content {
    padding: 50px 0;
  }

  .offcanvas-search .looking-for-wrap {
    margin-bottom: 30px;
  }

  .offcanvas-search .heading {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 24px;
  }

  .offcanvas-search .form-search {
    margin-bottom: 24px;
  }

  .modal-newsletter.style-absolute .modal-content img {
    min-height: 500px;
  }

  .modal-newsletter.style-row .modal-top {
    width: 100%;
    height: 300px;
  }

  .modal-newsletter.style-row .modal-bottom {
    width: 100%;
  }

  .card-product .tooltip,
  .card-product .size-box {
    display: none !important;
  }

  .card-product .price-wrap {
    font-size: 14px;
    line-height: 20px;
  }

  .card-product .list-product-btn li.wishlist,
  .card-product .list-product-btn li.compare {
    display: none;
  }

  .card-product .list-product-btn .box-icon.wishlist,
  .card-product .list-product-btn .box-icon.compare {
    display: none;
  }

  .card-product.style-2 .list-product-btn {
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--line);
  }

  .card-product.style-2 .list-product-btn .box-icon {
    border: none !important;
  }

  .card-product.style-2 .list-product-btn li:first-child .box-icon {
    border-right: 1px solid var(--line) !important;
  }

  .card-product.style-3 .product-btn-main .btn-main-product {
    padding: 6px;
  }

  .card-product.style-3 .product-btn-main .btn-main-product span {
    font-size: 12px;
    line-height: 20px;
  }

  .card-product.style-3 .product-btn-main .btn-main-product .icon {
    display: none;
  }

  .card-product.style-3 .product-btn-main .btn-main-product.quickview {
    display: flex;
  }

  .card-product.out-of-stock .card-product-wrapper::before {
    content: "Sold Out";
    width: 60px;
    height: 60px;
    font-size: 10px;
  }

  .card-product.style-list .add-to-cart {
    padding: 6px 24px;
    font-size: 14px;
  }

  .grid-cls-v1 .wg-cls .image {
    height: 400px;
  }

  .banner-text-plant .image img {
    max-height: 500px;
  }

  .s-banner-with-text .content-banner {
    text-align: center;
    gap: 15px;
    margin-top: 30px;
  }

  .s-banner-with-text .banner-container-wrap {
    margin-bottom: 50px;
  }

  .s-banner-with-text .box-title-banner {
    gap: 5px;
  }

  .s-banner-product .image-wrap {
    width: 100%;
  }

  .s-banner-product .content-banner {
    gap: 20px;
    flex-wrap: wrap;
  }

  .s-banner-product .content-right {
    gap: 20px;
  }

  .s-banner-product .content-right .box-title {
    gap: 5px;
  }

  .s-banner-product .image {
    max-width: unset;
    height: 600px;
  }

  .wg-countdown-2 .countdown__item {
    gap: 0px;
    min-width: 40px;
  }

  .wg-countdown-2 .countdown__value {
    font-size: 30px;
    line-height: 40px;
  }

  .s-banner-countdown .banner-content {
    left: 15px;
    right: 15px;
    transform: translateY(-50%);
  }

  .s-banner-countdown .image img {
    min-height: 400px;
  }

  .s-banner-colection .tf-col-2 {
    grid-template-columns: repeat(1, 1fr);
  }

  .s-banner-colection .box-content {
    margin: 0px;
    text-align: center;
  }

  .s-banner-colection .image img {
    width: 100%;
    object-fit: cover;
  }

  .sw-dots .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }

  .sw-dots .swiper-pagination-bullet::after {
    width: 20px;
    height: 20px;
  }

  .slider-pod br {
    display: none;
  }

  .slider-style-2 .slider-wrap {
    flex-wrap: wrap-reverse;
  }

  .slider-style-2 .box-content-left {
    padding: 70px 0px 80px;
    position: unset;
    width: 100%;
  }

  .slider-style-2 .box-content-left br {
    display: none;
  }

  .slider-style-2 .image {
    width: 100%;
    height: 300px;
  }

  .slider-default .slider-wrap {
    height: 400px;
  }

  .slider-default .wrap-pagination {
    bottom: 20px;
  }

  .wg-coming-soon {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .s-faq .name-faq {
    margin-bottom: 20px;
  }

  .s-faq .faq-item:not(:last-child) {
    margin-bottom: 30px;
  }

  .sb-contact {
    padding: 30px 15px;
    margin-bottom: 30px;
  }

  .sb-contact .title {
    margin-bottom: 15px;
  }

  .sb-contact .sub {
    margin-bottom: 15px;
  }

  .s-blog-single .heading {
    gap: 10px;
    margin-bottom: 30px;
  }

  .s-blog-single .heading .entry-meta {
    gap: 5px 10px;
  }

  .s-blog-single .entry_image {
    margin-bottom: 30px;
  }

  .s-blog-single .content>.text {
    margin-bottom: 30px;
  }

  .s-blog-single .block-quote {
    margin-bottom: 20px;
  }

  .s-blog-single .bot {
    margin-bottom: 30px;
  }

  .s-blog-single .bot .entry-tag {
    margin-bottom: 10px;
  }

  .s-blog-single .related-post {
    gap: 15px;
    padding: 30px 0px;
  }

  .s-blog-single .related-post p {
    margin-bottom: 5px;
    font-size: 12px;
  }

  .s-blog-single .related-post p.name-post {
    font-size: 14px;
  }

  .s-blog-single .related-post .post {
    gap: 10px;
  }

  h1,
  .display-2xl {
    font-size: 42px;
    line-height: 60px;
  }

  .display-2xl-2 {
    font-size: 42px;
    line-height: 52px;
  }

  h2,
  .display-xl,
  .display-xl-2 {
    font-size: 30px;
    line-height: 42px;
  }

  h3,
  .display-lg,
  .display-lg-2,
  .display-lg-3 {
    font-size: 28px;
    line-height: 40px;
  }

  .display-lg-5,
  .display-lg-4 {
    font-size: 28px;
    line-height: 38px;
  }

  h4,
  .display-md,
  .display-md-2,
  .display-md-3 {
    font-size: 24px;
    line-height: 26px;
  }

  h5,
  .display-sm {
    font-size: 22px;
    line-height: 30px;
  }

  h6,
  .display-xs {
    font-size: 20px;
    line-height: 28px;
  }

  .text-xl {
    font-size: 18px;
    line-height: 28px;
  }

  .text-xl-2 {
    font-size: 18px;
    line-height: 22px;
  }

  .text-xl-3 {
    font-size: 18px;
    line-height: 30px;
  }

  .text-lg {
    font-size: 16px;
    line-height: 26px;
  }

  .text-md {
    font-size: 14px;
    line-height: 22px;
  }

  .body-text {
    font-size: 14px;
    line-height: 22.6px;
  }

  .body-text-2 {
    font-size: 14px;
    line-height: 16.2px;
  }

  .s-banner-bundle .bundle-wrap {
    margin-top: 32px;
  }

  .s2-banner-bundle .bundle-wrap {
    margin-top: 60px;
  }

  #header .nav-icon .nav-account,
  #header .nav-icon .nav-wishlist,
  #header .nav-icon .nav-compare {
    display: none;
  }

  .footer .footer-heading-mobile {
    display: block;
    position: relative;
  }

  .footer .footer-heading-mobile::after {
    position: absolute;
    content: "";
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 1px;
    background-color: var(--dark);
    transition: 0.25s ease-in-out;
  }

  .footer .footer-heading-mobile::before {
    position: absolute;
    content: "";
    right: 15px;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 12px;
    background-color: var(--dark);
    transition: 0.25s ease-in-out;
  }

  .footer .footer-col-block.open .footer-heading-mobile::before {
    opacity: 0;
  }

  .footer .footer-col-block.open .footer-heading-mobile::after {
    transform: translate(0%, -50%) rotate(180deg);
  }

  .footer .footer-col-block .tf-collapse-content {
    display: none;
  }

  .footer .footer-menu {
    flex-direction: column;
    gap: 18px;
    margin-bottom: 18px;
  }

  .footer .footer-menu>div {
    width: 100%;
  }

  .flat-spacing-6,
  .flat-spacing-2,
  .flat-spacing {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .flat-spacing-3 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .flat-spacing-9,
  .flat-spacing-4 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .flat-spacing-5 {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .flat-spacing-8 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .flat-spacing-10 {
    padding-top: 40px;
    padding-bottom: 50px;
  }

  .flat-spacing-11 {
    padding-top: 60px;
    padding-bottom: 80px;
  }

  .flat-spacing-12 {
    padding-top: 60px;
    padding-bottom: 44px;
  }

  .flat-spacing-13 {
    padding-top: 40px;
    padding-bottom: 80px;
  }

  .flat-spacing-14 {
    padding-top: 63px;
    padding-bottom: 78px;
  }

  .flat-spacing-15 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .flat-spacing-16 {
    padding-top: 80px;
    padding-bottom: 60px;
  }

  .flat-spacing-17 {
    padding-top: 60px;
    padding-bottom: 80px;
  }

  .flat-spacing-19 {
    padding-top: 67px;
    padding-bottom: 100px;
  }

  .flat-spacing-20 {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .flat-spacing-21 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .flat-spacing-22 {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .flat-spacing-23 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .flat-spacing-25 {
    padding-top: 60px;
    padding-bottom: 80px;
  }

  .flat-spacing-26 {
    padding-top: 80px;
    padding-bottom: 60px;
  }

  .flat-spacing-28 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .flat-spacing-27 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .flat-single-product {
    padding: 27px 0px 60px;
  }

  .tf-product-info-wrap {
    margin-top: 40px;
  }

  .tf-product-fbt {
    padding: 15px;
  }

  .tf-product-fbt .bundle-total-submit {
    font-size: 16px;
    line-height: 26px;
  }

  .tf-bundle-product-item .bundle-image {
    width: 80px;
    min-width: 80px;
  }

  .flat-single-grid {
    display: flex;
    overflow: auto;
    gap: 10px;
    padding-bottom: 10px;
  }

  .flat-single-grid::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }

  .flat-single-grid::-webkit-scrollbar-track {
    background-color: var(--line);
  }

  .flat-single-grid::-webkit-scrollbar-thumb {
    background: var(--primary);
  }

  .flat-single-grid .item {
    width: 584px;
    height: 826px;
    flex-shrink: 0;
  }

  .tab-vertical-product-desc .wd-product-descriptions {
    padding: 15px;
  }

  .tf-control-layout .sw-layout-3 {
    display: none;
  }

  .tf-group-filter {
    gap: 6px;
  }

  .brand-item {
    max-width: 200px;
    height: 74px;
  }

  .mx_40 {
    margin-left: 15px;
    margin-right: 15px;
  }

  .banner-shop {
    height: 500px;
  }

  .banner-shop .box-title .title {
    font-size: 26px;
    line-height: 28px;
  }

  .cls-video .img-product {
    max-width: 68px;
  }

  .cls-video .icon {
    width: 35px;
    height: 35px;
  }

  .menu-tab-fill .tab-link {
    min-width: 100px;
    padding: 5px 15px;
  }

  .slider-wrap-lb .card-product {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
  }

  .slider-wrap-lb .card-product .card-product-info {
    padding: 0;
    justify-items: flex-start;
  }

  .slider-wrap-lb .card-product .tf-btn {
    padding: 6px 14px;
    font-size: 14px;
    line-height: 22px;
  }

  .slider-wrap-lb .card-product .card-product-wrapper {
    max-width: 140px;
  }

  .slider-wrap-lb .card-product .box-icon {
    border-radius: 50% !important;
  }

  .footer-pb-2 {
    padding-bottom: 197px;
  }

  .tf-btn {
    font-size: 14px;
    line-height: 24px;
    padding: 8px 20px;
  }

  .s-contact.style-2 .content-left {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .banner-lookbook .lookbook-item.position3 {
    left: 24%;
  }

  .wg-testimonial-2 .text {
    font-size: 20px;
  }

  .grid-cls-v5 .item1,
  .grid-cls-v5 .item2,
  .grid-cls-v5 .item3,
  .grid-cls-v5 .item4 {
    height: 300px;
  }

  .grid-cls-v5 .wg-cls .tf-btn {
    padding: 8px 15px;
  }

  .grid-cls-v5 .wg-cls .tf-btn .icon {
    display: none;
  }

  .slider-default .content-slider .sub {
    display: none;
  }

  .slider-electronic .reverse-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 630px;
    min-width: max(100%, 630px);
  }

  .image-compare .icv__img-a {
    height: 200px;
  }

  .form-login .button-wrap {
    flex-wrap: wrap;
  }

  .loobook-product {
    padding: 12px;
    gap: 10px;
  }

  .loobook-product .zero {
    display: none;
  }

  .loobook-product .btn-lookbook {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .loobook-product .content {
    gap: 8px;
  }

  .s-banner-product .image {
    height: 450px;
  }

  .s-banner-product .loobook-product {
    left: 15px;
    right: 15px;
    bottom: 15px;
  }

  .wg-countdown-2 {
    padding: 15px;
  }

  .wg-countdown-2 .countdown__timer {
    gap: 29px !important;
  }

  .wg-countdown .countdown__timer {
    gap: 10px;
  }

  .wg-countdown .countdown__item {
    width: 60px;
    height: 70px;
  }

  .wg-countdown .countdown__value {
    font-size: 24px;
    line-height: 32px;
  }

  .s-coming-soon .title {
    font-size: 48px;
    line-height: 60px;
  }

  .s-coming-soon br {
    display: none;
  }

  .s-coming-soon .sub {
    margin-bottom: 25px;
  }

  .s-coming-soon .wg-countdown {
    margin-bottom: 25px;
  }

  .s-coming-soon .form-email-wrap {
    margin-bottom: 25px;
  }

  .blog-post-item.style-2 {
    flex-wrap: wrap;
  }

  .blog-post-item.style-2 .entry_image {
    max-width: unset;
    min-height: 350px;
    max-height: 400px;
  }

  .s-blog-single .related-post .icon {
    display: none;
  }

  .s-blog-list-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .footer-default .footer-contact,
  .footer-default .s3 .footer-col-block:first-child .footer-menu-list,
  .footer-default .footer-newsletter {
    margin-bottom: 30px;
  }

  .footer-default .footer-heading {
    margin-bottom: 20px;
  }

  .footer-default .s3 .footer-col-block:last-child .footer-menu-list {
    margin-top: 20px;
  }

  .footer-default .s3 .footer-col-block:last-child .footer-heading {
    margin-bottom: 0px;
  }

  .footer-style-2 .footer-menu-list {
    margin-bottom: 20px;
  }

  .footer-style-2 .s4 .footer-heading {
    margin-bottom: 0;
  }

  .footer-style-2 .s4 .footer-newsletter {
    margin-top: 20px;
    margin-bottom: 0px;
  }

  .footer-heading-mobile {
    display: block;
    position: relative;
    padding-right: 20px;
    line-height: 24px;
  }

  .footer-heading-mobile::after {
    position: absolute;
    content: "";
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 1px;
    background-color: var(--dark);
    transition: 0.25s ease-in-out;
  }

  .footer-heading-mobile::before {
    position: absolute;
    content: "";
    right: 15px;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 12px;
    background-color: var(--dark);
    transition: 0.25s ease-in-out;
  }

  .footer-col-block.open .footer-heading-mobile::before {
    opacity: 0;
  }

  .footer-col-block.open .footer-heading-mobile::after {
    transform: translate(0%, -50%) rotate(180deg);
  }

  .footer-col-block .tf-collapse-content {
    display: none;
  }

  .flat-single-grid .item {
    width: 350px;
    height: 450px;
    flex-shrink: 0;
  }

  .form-default .cols {
    flex-wrap: wrap;
  }

  .wg-testimonial.style-row {
    flex-direction: column-reverse;
  }

  .wg-testimonial.style-row .image {
    width: 60%;
    margin: 12px auto 0px;
  }

  .tf-sw-iconbox-row .tf-icon-box {
    justify-content: center;
  }

  .cls-bn-content .img-product {
    max-width: 62px;
    max-height: 75px;
  }

  .banner-shop {
    height: 400px;
  }
}

@media (max-width: 425px) {
  .js-countdown .countdown__timer {
    gap: 5px;
  }

  .s-coming-soon .title {
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 5px;
  }

  .s-coming-soon .sub {
    font-size: 14px;
    line-height: 20px;
  }
}

.tf-product-info-wrap .tf-product-info-heading .product-info-sold .icon {
  animation: tf-ani-flash 2s infinite;
}

@keyframes tf-ani-flash {

  50%,
  0%,
  100% {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

h5.product-info-name.fw-medium {
  font-size: 30px;
  color: #2e3192;
}

ul.overview-list li {
  margin-top: 10px;
}

.tf-product-media-wrap.sticky-top {
  z-index: auto;
}

.productes-svg-icones {
  margin: 10px;
  text-align: center;
  border: 1px solid;
  padding: 10px;
  border-radius: 15px;
  box-shadow: 3px 4px 5px;
}

.productes-svg-icones h4 {
  font-size: 12px;
  margin: 0;
  padding-top: 8px;
}





.service-details .card {
  position: relative;
  background: #f8f9fa;
  transition: background 0.4s ease-in-out;
  text-align: center;
  overflow: hidden;
  height: 300px;
  border: 0px !important;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 20px !important;
}


.service-details .card::before {
  content: attr(data-number);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 200px;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s ease-in-out;
}

/* Card Body */
.service-details .card {
  position: relative;
  background: #f8f9fa;
  transition: background 0.4s ease-in-out;
  text-align: center;
  overflow: hidden;
  height: 300px;
  border: 0px !important;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 20px !important;
}

/* Background Overlay Effect */
.service-details .card::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #2e3192;
  /* New Background Color */
  transition: top 0.4s ease-in-out;
  z-index: 0;
}

/* Background Number (Initially Visible) */
.service-details .card::before {
  content: attr(data-number);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 180px;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s ease-in-out;
  z-index: 1;
}

/* Card Body */
.service-details .card-body {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
  position: relative;
  height: 150px;
  z-index: 2;
}

/* Text & Icon Styling */
.service-details .report-text {
  font-size: 24px;
  font-weight: 600;
  color: #000;
  transition: color 0.3s ease-in-out;
  z-index: 2;
}

.service-details .report-text p {
  font-size: 24px;
  font-weight: 600;
  color: #000;
  line-height: 30px;
}

.service-details .report-icon {
  font-size: 24px;
  display: none;
  position: absolute;
  color: #fff;
  z-index: 2;
}

/* Hover Effect */
.service-details .card:hover::after {
  top: 0;
  /* Background Appears from Top */
}

.service-details .card:hover::before {
  opacity: 0;
  /* Hide Background Number */
}

.service-details .card:hover .report-text {
  display: none;
  /* Hide text */
}

.service-details .card:hover .report-icon {
  display: block;
  /* Show icon */
  animation: moveUpDown 0.6s infinite alternate ease-in-out;
}

/* Keyframes for Up-Down Animation */
@keyframes moveUpDown {
  0% {
    transform: translateY(5px);
  }

  100% {
    transform: translateY(-5px);
  }
}




/* slider css */

.flat-single-product .card-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.flat-single-product .card {
  border: 0px !important;
}

.flat-single-product img {
  width: 100%;
  display: block;
  height: 450px;
}

.flat-single-product .img-display {
  overflow: hidden;
}

.flat-single-product .img-showcase {
  display: flex;
  width: 100%;
  transition: all 0.5s ease;
}

.flat-single-product .img-showcase img {
  min-width: 100%;
}

.flat-single-product .img-select {
  display: flex;
  justify-content: center;
}

.flat-single-product .img-item {
  margin: 0.3rem;
}

.flat-single-product .img-item:nth-child(1),
.flat-single-product .img-item:nth-child(2),
.flat-single-product .img-item:nth-child(3) {
  margin-right: 0;
}

.flat-single-product .img-item:hover {
  opacity: 0.8;
}


@media screen and (min-width: 992px) {
  .flat-single-product .card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.5rem;
    border: none;
  }

  .flat-single-product .card-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .flat-single-product .product-imgs {
    display: flex;
    flex-direction: column;
  }

  .flat-single-product .product-content {
    padding-top: 0;
  }

}

@media (max-width:768px) {
  .tf-product-info-wrap .tf-product-info-heading .product-info-sold {
    display: block;
  }
}

.flat-single-product .img-item img {
  height: 100px;
  width: 100px;
}


.main-sidebar {
  position: fixed;
  top: 30%;
  right: 0;
  z-index: 111;
}

.main-sidebar .bse-box,
.main-sidebar .nse-box {
  height: 50px;
  width: 100px;
  border-radius: 10px 0 0 10px;
  background-color: #2e3092;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
  animation: upDown 2s infinite ease-in-out;
  border: 1px solid #fff;
}

/* Button Text */
.main-sidebar .bse-box a,
.main-sidebar .nse-box a {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  /* Remove underline */
  transition: color 0.3s ease-in-out;
}

/* Hover Effect with Animation */
.main-sidebar .bse-box:hover,
.main-sidebar .nse-box:hover {
  background-color: #ffffff;
  border: 1px solid #2e3092;
  transform: scale(1.1);
  /* Slight zoom effect */
}

.main-sidebar .bse-box:hover a,
.main-sidebar .nse-box:hover a {
  color: #2e3092;
}

@keyframes upDown {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

.title-hurry-up p {
  text-align: justify;
}

.cr-image-main img {
  height: 400px;
  border: 1px solid #2e3092;
  border-radius: 12px;
  padding: 10px;
}


.certificate_wrapper {
  margin: 80px 0;
}

.certificate_wrapper img {
  border: 1px solid black;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  width: 100%;
  height: 100%;
}

.infrastructure-bg {
  background-image: url(../img/pp-bags-manufacturer1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: -1;
  background-blend-mode: darken;
  background-color: rgba(0, 0, 0, 0.62);
  background-position: center center;
  padding: 101px 0 0 70px;

}

.infrastructure-bgbefore {
  opacity: 0.5;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: -1;
  background: radial-gradient(at center, var(--bg-dark), transparent);
}

.hero-sub-img img {
  height: 190px;
}

.menu-action-btn.dl-search-icon i {
  font-size: 26px;
  color: #fff;
}

.menu-action-btn.dl-search-icon {
  background: #2e3192;
  padding: 10px 10px 3px;
  border-radius: 10px;
}

.about-img-wrap img {
  height: 320px !important;
}

button.accordion-button.collapsed {
  background: rgb(46, 49, 146) !important;
  border-radius: 10px !important;
  color: #fff !important;
}

@media (max-width:768px) {
  .carousel-item img {
    height: 210px !important;
    object-fit: cover !important;
    position: relative;
  }

  .carousel-caption.d-md-block h5 {
    font-size: 20px !important;
    margin: 0 !important;
  }

  .carousel-caption.d-md-block p {
    font-size: 20px !important;
    line-height: 28px !important;
    margin: 0px !important;
  }

  .menu-action-btn.dl-search-icon{
    display: none !important;
  }

  .buton-menubar{
    display: none !important;
  }

}

.carousel-item img {
  height: 700px;
  object-fit: cover;
  position: relative;
}

.carousel-caption.d-md-block h5 {
    z-index: 5;
    font-family: "Titillium Web";
    text-transform: uppercase;
    height: auto;
    color: rgb(255, 255, 255);
    text-decoration: none;
    text-align: center;
    line-height: 55px;
    text-shadow: rgb(0, 0, 0) 2px 2px 12px;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 51px;
    transform-origin: 50% 50%;
    opacity: 1;
    transform: translate(0px, 0px);
}

.carousel-caption.d-md-block p {
  font-size: 34px;
    text-shadow: rgb(0, 0, 0) 2px 2px 5px;
    font-weight: 500;

      font-family: "Titillium Web";
  line-height: 40px;
  position: relative;
  z-index: 99;
  margin: 50px;
}

/* .carousel-item::after {
  position: absolute;
  content: "'";
  background: rgba(0, 0, 0, .5);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
} */

.project-thum-b.project-view img {
    height: 500px;
    width: 100%;
    object-fit: cover;
    border: 2px solid;
    box-shadow: 0px 0px 5px;
}

.go-gren-pro-title h4 {
    background: #2e3190;
    border-radius: 10px;
    padding: 10px;
    color: #fff;
    box-shadow: 0px 0px 3px #000;
}

h3.grn-pro-benifit {
    font-size: 28px;
        margin-bottom: 20px;
}

@media(max-width:1046px){
    .header-menu-wrap {
        padding-left: 30px;
    }
}
@media(max-width:992px){

  .dl-search-icon{
    margin-bottom: 10px;
  }
}