/*============================================

   Theme Name: Shopsy - Multipurpose eCommerce HTML Template
   Author : layoutnest
   Support: layoutnest@gmail.com
   Description: Shopsy - Multipurpose eCommerce HTML Template
   Version: 1.0

==============================================*/
/* CSS Index
==============================================

	// components
	01. Keyframe Animation
	02. Background color
	03. Breadcrumb
	04. Button style
	05. Mobile Menu
	06. Nice Select
	07. OffCanvas
	08. Preloader
	09. progress
	10. Back to top
	11. Section Title
	12. spacing default responsive


	// Layout
	01. about
	02. banner
	03. blog
	04. brand
	05. cart
	06. cu-cartmini
	07. categoris
	08. compare
	09. contact
	10. coupon
	11. cta
	12. discount
	13. error
	14. exclusive
	15. feature
	16. filter
	17. footer
	18. frame
	19. Header
	20. hero
	21. instagram
	22. invoice
	23. latest
	24. login
	25. menu
	26. my acount
	27. news
	28. order
	29. payment
	30. product
	31. shop
	32. testimonial
	33. text
	34. timeline
	35. video
==============================================*/
/*============================================
/*  01. Theme Default CSS
==============================================*/
@import url("https://fonts.googleapis.com/css2?family=Mrs+Sheppards&family=Gochi+Hand&display=swap&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --cu-ff-body: "Poppins", sans-serif;
  --cu-ff-mrs: "Mrs Sheppards", cursive;
  --cu-ff-gochi: "Gochi Hand", cursive;
  --cu-ff-fontawesome: "Font Awesome 6 Pro";
  --cu-common-white: #fff;
  --cu-common-black: #000;
  --cu-common-black-2: #1f323a;
  --cu-common-yellow: #ff7b54;
  --cu-common-yellow-2: #bd844c;
  --cu-common-yellow-3: #FFB21D;
  --cu-common-evergreen: #eef1e0;
  --cu-common-blue: #27397E;
  --cu-common-blue-2: #273C99;
  --cu-common-green: #384135;
  --cu-common-green-2: #017D03;
  --cu-common-night: #A3381C;
  --cu-common-spring: #E5E2A6;
  --cu-grey-1: #545454;
  --cu-grey-2: #f6f6f6;
  --cu-grey-3: #595959;
  --cu-theme-primary: #6e00db;
  --cu-border-1: rgba(0, 0, 0, 0.1);
  --cu-border-2: rgba(30, 30, 30, 0.1);
}

/*=============================
	Typography css start
===============================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--cu-ff-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--cu-grey-1);
  line-height: 26px;
}

img,
.img {
  max-width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a,
button {
  color: var(--cu-grey-1);
  outline: none;
  text-decoration: none;
  border: none;
  background: transparent;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a:focus,
.btn:focus,
.button:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}

a:hover,
button:hover {
  color: var(--cu-common-black);
  text-decoration: none;
}

li {
  list-style: none;
}

ul {
  margin: 0px;
  padding: 0px;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
  outline: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--cu-common-black);
  font-weight: 600;
  line-height: 1.2;
  text-transform: unset;
  letter-spacing: -0.02em;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 36px;
}

h4 {
  font-size: 32px;
}

h5 {
  font-size: 28px;
}

h6 {
  font-size: 24px;
}

p {
  margin-bottom: 15px;
}

label {
  color: var(--cu-common-black);
  cursor: pointer;
}

input[type=color] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  padding: 0;
  border-radius: 50%;
}

*::-moz-selection {
  background: var(--cu-theme-primary);
  color: var(--cu-common-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--cu-theme-primary);
  color: var(--cu-common-white);
  text-shadow: none;
}

::selection {
  background: var(--cu-theme-primary);
  color: var(--cu-common-white);
  text-shadow: none;
}

/*=============================
    - Input Placeholder
===============================*/
input,
textarea {
  color: var(--cu-grey-1);
}
input:focus::placeholder,
textarea:focus::placeholder {
  opacity: 0;
}

*::-moz-placeholder {
  color: var(--cu-grey-1);
  font-size: 16px;
  opacity: 1;
}

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

/*=============================
    Common Classes
===============================*/
.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

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

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

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

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

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

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

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

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

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

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

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

.gx-10 {
  --bs-gutter-x: 10px;
}

.gx-5 {
  --bs-gutter-x: 5px;
}

.gx-20 {
  --bs-gutter-x: 20px;
}

.gx-30 {
  --bs-gutter-x: 30px;
}

.gx-40 {
  --bs-gutter-x: 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .gx-40 {
    --bs-gutter-x: 20px;
  }
}

.gx-45 {
  --bs-gutter-x: 45px;
}

.gx-50 {
  --bs-gutter-x: 50px;
}

.gx-60 {
  --bs-gutter-x: 60px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .gx-60 {
    --bs-gutter-x: 30px;
  }
}

.gx-70 {
  --bs-gutter-x: 70px;
}

.gx-80 {
  --bs-gutter-x: 80px;
}

.gx-90 {
  --bs-gutter-x: 90px;
}

.gx-100 {
  --bs-gutter-x: 100px;
}

.cu-underline {
  background-image: linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor);
  background-size: 0 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s linear;
  -webkit-transition: all all 0.4s ease ease-out 0s;
  -moz-transition: all all 0.4s ease ease-out 0s;
  -ms-transition: all all 0.4s ease ease-out 0s;
  -o-transition: all all 0.4s ease ease-out 0s;
  transition: all all 0.4s ease ease-out 0s;
}
.cu-underline:hover {
  background-image: linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor);
  background-size: 0 1px, 100% 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s linear;
  -webkit-transition: all all 0.4s ease ease-out 0s;
  -moz-transition: all all 0.4s ease ease-out 0s;
  -ms-transition: all all 0.4s ease ease-out 0s;
  -o-transition: all all 0.4s ease ease-out 0s;
  transition: all all 0.4s ease ease-out 0s;
}

.position-static {
  position: static !important;
}

/*=============================
    - Bootstrap Custom
=============================*/
.include-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.slide-transtion {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

@media (min-width: 1400px) {
  .container-1820 {
    max-width: 1820px;
  }
}
@media (min-width: 1400px) {
  .container-1645 {
    max-width: 1645px;
  }
}
@media (min-width: 1400px) {
  .container-1624 {
    max-width: 1624px;
  }
}
/*=========================
    04. Button style
===========================*/
.cu-btn {
  font-weight: 500;
  font-size: 16px;
  color: var(--cu-common-black);
  border: 1px solid var(--cu-common-black);
  padding: 7px 30px;
  display: inline-block;
}
.cu-btn:hover {
  background: var(--cu-common-black);
  color: var(--cu-common-white);
}
.cu-btn-primary {
  background: var(--cu-theme-primary);
  color: var(--cu-common-white);
  border-color: var(--cu-theme-primary);
}
.cu-btn-primary:hover {
  background: none;
  color: var(--cu-common-black);
  border-color: var(--cu-common-black);
}
.cu-btn-border-white {
  color: var(--cu-common-white);
  border-color: var(--cu-common-white);
}
.cu-btn-border-white:hover {
  background: var(--cu-common-white);
  color: var(--cu-common-black);
}
.cu-btn-border-grey {
  border: 1px solid rgba(19, 19, 19, 0.15);
}
.cu-btn-black {
  background: var(--cu-common-black);
  border-color: var(--cu-common-black);
  color: var(--cu-common-white);
}
.cu-btn-black:hover {
  background: var(--cu-theme-primary);
  border-color: var(--cu-theme-primary);
}
.cu-btn-yellow {
  border: none;
  padding: 9px 31px;
  background: var(--cu-common-yellow-2);
  color: var(--cu-common-white);
}
.cu-btn-yellow:hover {
  color: var(--cu-common-black);
  background: var(--cu-common-white);
}
.cu-btn-yellow-2 {
  border: none;
  padding: 9px 31px;
  background: var(--cu-common-yellow-3);
  color: var(--cu-common-black);
  flex: 0 0 auto;
}
.cu-btn-yellow-2:hover {
  color: var(--cu-common-black);
  background: var(--cu-common-white);
}
.cu-btn-large {
  font-weight: 500;
  font-size: 16px;
  line-height: 125%;
  color: var(--cu-common-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 150px;
  height: 150px;
  background: var(--cu-common-yellow-2);
  border-radius: 100%;
}
.cu-btn-large:hover {
  background: var(--cu-common-black);
  color: var(--cu-common-white);
}
.cu-btn-white {
  background: var(--cu-common-white);
  color: var(--cu-common-black);
  border-color: var(--cu-common-white);
}
.cu-btn-white:hover {
  background: var(--cu-common-black);
  border-color: var(--cu-common-black);
  color: var(--cu-common-white);
}
.cu-btn-white-primary {
  background: var(--cu-common-white);
  color: var(--cu-common-black);
  border-color: var(--cu-common-white);
  padding: 14px 35px;
}
.cu-btn-white-primary:hover {
  background: var(--cu-theme-primary);
  border-color: var(--cu-theme-primary);
  color: var(--cu-common-white);
}
.cu-btn-el-white {
  background: var(--cu-common-white);
  border-color: var(--cu-common-white);
}
.cu-btn-el-white:hover {
  background: var(--cu-common-yellow-3);
  border-color: var(--cu-common-yellow-3);
}
.cu-btn-el-white-border {
  border-color: var(--cu-common-white);
  color: var(--cu-common-white);
  padding: 4px 20px;
}
.cu-btn-el-white-border:hover {
  background: var(--cu-common-white);
  color: var(--cu-common-black);
}
.cu-btn-wt-black {
  background: var(--cu-common-black-2);
  color: var(--cu-common-white);
}
.cu-btn-wt-white {
  background: var(--cu-common-white);
  border-color: var(--cu-common-white);
  color: var(--cu-common-black-2);
}
.cu-btn-wt-white:hover {
  background: var(--cu-common-black-2);
  border-color: var(--cu-common-black-2);
  color: var(--cu-common-white);
}
.cu-btn-gc-green {
  background: var(--cu-common-green-2);
  border-color: var(--cu-common-green-2);
  color: var(--cu-common-white);
}
.cu-btn-gc-green:hover {
  background: var(--cu-common-black);
  border-color: var(--cu-common-black);
  color: var(--cu-common-white);
}
.cu-btn-ft-black {
  background: var(--cu-common-black);
  color: var(--cu-common-white);
}
.cu-btn-ft-black:hover {
  background: var(--cu-common-night);
  color: var(--cu-common-white);
  border-color: var(--cu-common-night);
}
.cu-btn-xl {
  padding: 10px 30px;
}

.cu-filter-btn {
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  color: var(--cu-common-white);
  background-color: var(--cu-common-black);
  display: inline-block;
  padding: 13px 32px 9px;
  border: 1px solid var(--cu-common-black);
}
.cu-filter-btn:hover {
  color: var(--cu-common-black);
  background-color: var(--cu-common-white);
}

/*=============================
    08. Preloader
===============================*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--cu-common-white);
}

.preloader__text {
  position: relative;
}

.preloader__msg {
  animation: msg 0.3s 13.7s linear forwards;
  position: absolute;
  width: 100%;
}

.preloader__msg--last {
  animation-direction: reverse;
  animation-delay: 14s;
  visibility: hidden;
}

.cart {
  display: block;
  margin: 0 auto 1.5em auto;
  width: 8em;
  height: 8em;
}

.cart__lines,
.cart__top,
.cart__wheel1,
.cart__wheel2,
.cart__wheel-stroke {
  animation: cartLines 2s ease-in-out infinite;
}

.cart__lines {
  stroke: #273C99;
}

.cart__top {
  animation-name: cartTop;
}

.cart__wheel1 {
  animation-name: cartWheel1;
  transform: rotate(-0.25turn);
  transform-origin: 43px 111px;
}

.cart__wheel2 {
  animation-name: cartWheel2;
  transform: rotate(0.25turn);
  transform-origin: 102px 111px;
}

.cart__wheel-stroke {
  animation-name: cartWheelStroke;
}

.cart__track {
  stroke: hsla(223, 10%, 10%, 0.1);
  transition: stroke var(--trans-dur);
}

/* Animations */
@keyframes msg {
  from {
    opacity: 1;
    visibility: visible;
  }
  99.9% {
    opacity: 0;
    visibility: visible;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes cartLines {
  from, to {
    opacity: 0;
  }
  8%, 92% {
    opacity: 1;
  }
}
@keyframes cartTop {
  from {
    stroke-dashoffset: -338;
  }
  50% {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: 338;
  }
}
@keyframes cartWheel1 {
  from {
    transform: rotate(-0.25turn);
  }
  to {
    transform: rotate(2.75turn);
  }
}
@keyframes cartWheel2 {
  from {
    transform: rotate(0.25turn);
  }
  to {
    transform: rotate(3.25turn);
  }
}
@keyframes cartWheelStroke {
  from, to {
    stroke-dashoffset: 81.68;
  }
  50% {
    stroke-dashoffset: 40.84;
  }
}
.preloader__text h2 {
  color: var(--cu-common-black);
  font-size: 100px;
  line-height: 1;
  margin-bottom: 0;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .preloader__text h2 {
    font-size: 70px;
  }
}

/*=============================
    02. Background color
===============================*/
.cu-black-bg {
  background: var(--cu-common-black);
}

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

.grey-bg {
  background: #F7F7F7;
}

.grey-bg-2 {
  background: #F5F5F2;
}

.cu-blue-bg {
  background: var(--cu-common-blue);
}

.cu-blue-bg-2 {
  background: var(--cu-common-blue-2);
}

.cu-green-bg {
  background: var(--cu-common-green);
}

.cu-bg-yellow {
  background: var(--cu-common-yellow-3);
}

.cu-bg-primary {
  background: var(--cu-theme-primary);
}

.cu-text-red {
  color: #CC1414;
}

/*=============================
    07. OffCanvas
===============================*/
.offCanvas-toggle {
  position: relative;
  margin-right: 40px;
  padding-right: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .offCanvas-toggle {
    margin-right: 25px;
    padding-right: 25px;
  }
}
@media (max-width: 575px) {
  .offCanvas-toggle {
    display: none;
  }
}
.offCanvas-toggle::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background: var(--cu-border-1);
}
.offCanvas-toggle .menu-tigger {
  color: var(--cu-heading-color);
}
.offCanvas-toggle .menu-tigger:hover {
  color: var(--cu-theme-primary);
}
.offCanvas-toggle-two {
  margin-right: 0;
  padding-right: 0;
  padding-left: 40px;
}
.offCanvas-toggle-two::before {
  right: auto;
  left: 0;
  height: 104px;
}

.offCanvas-info {
  background: var(--cu-color-white-default) none repeat scroll 0 0;
  height: 100%;
  padding: 30px;
  position: fixed;
  right: 0;
  top: 0;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -ms-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  width: 340px;
  z-index: 999;
  overflow-y: scroll;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
}
.offCanvas-info.active {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.offCanvas-info::-webkit-scrollbar {
  width: 0px;
}
.offCanvas-close-icon {
  margin-top: -16px;
  text-align: right;
}
.offCanvas-close-icon button {
  background: transparent;
  border: 0 none;
  color: var(--cu-theme-primary);
  cursor: pointer;
  font-size: 20px;
  padding: 0;
}
.offCanvas-logo img {
  max-height: 34px;
}
.offCanvas-side-info {
  border-top: 1px solid var(--cu-theme-primary);
  padding-top: 25px;
}
.offCanvas-side-info .contact-list h4 {
  color: var(--cu-heading-color);
  font-weight: 700;
  font-size: 18px;
}
.offCanvas-side-info .contact-list p {
  color: var(--cu-body-color);
  margin: 0;
  margin-bottom: 2px;
  line-height: 26px;
}
.offCanvas-social-icon a {
  color: var(--cu-theme-primary);
  display: inline-block;
  margin-right: 20px;
  text-align: center;
}
.offCanvas-social-icon a:hover {
  color: var(--cu-theme-secondary);
}
.offCanvas-overly {
  position: fixed;
  background: #000;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.offCanvas-overly.active {
  opacity: 0.7;
  visibility: visible;
}

/*=========================
      03. Breadcrumb
===========================*/
.cu-breadcrumb-spacing {
  padding-top: 85px;
  padding-bottom: 85px;
}
.cu-breadcrumb-title {
  font-weight: 500;
  font-size: 50px;
  letter-spacing: -0.02em;
  color: var(--cu-common-white);
}
@media (max-width: 575px) {
  .cu-breadcrumb-title {
    font-size: 35px;
  }
}
.cu-breadcrumb-list span {
  font-weight: 500;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
}
.cu-breadcrumb-list span:not(:last-child) {
  padding-right: 17px;
  margin-right: 5px;
}
.cu-breadcrumb-list span:not(:last-child)::after {
  position: absolute;
  content: "/";
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.cu-breadcrumb-list span a {
  color: var(--cu-common-white);
}

/*=============================
    10. Back to top
===============================*/
.back-to-top-wrapper {
  position: fixed;
  right: 50px;
  bottom: 0;
  height: 44px;
  width: 44px;
  cursor: pointer;
  display: block;
  border-radius: 50%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 575px) {
  .back-to-top-wrapper {
    right: 20px;
    bottom: 20px;
  }
}
.back-to-top-wrapper.back-to-top-btn-show {
  visibility: visible;
  opacity: 1;
  bottom: 50px;
}

.back-to-top-btn {
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  background: var(--cu-common-white);
  box-shadow: 0px 8px 16px rgba(3, 4, 28, 0.3);
  color: var(--cu-common-black);
  border-radius: 5px;
  -webkit-transition: all 0.3s ease 0s ease-out;
  -moz-transition: all 0.3s ease 0s ease-out;
  -ms-transition: all 0.3s ease 0s ease-out;
  -o-transition: all 0.3s ease 0s ease-out;
  transition: all 0.3s ease 0s ease-out;
}
.back-to-top-btn svg {
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}
.back-to-top-btn:hover {
  -webkit-transform: translateY(-4px);
  -moz-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  -o-transform: translateY(-4px);
  transform: translateY(-4px);
}

/*=============================
	11. Section Title
===============================*/
.cu-section-fs-bigtext {
  font-family: var(--cu-ff-gochi);
  font-weight: 400;
  font-size: 140px;
  line-height: 1;
  margin-bottom: 0;
  letter-spacing: -0.02em;
  color: rgba(0, 0, 0, 0.06);
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: -43px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cu-section-fs-bigtext {
    font-size: 120px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-section-fs-bigtext {
    font-size: 90px;
  }
}
@media (max-width: 575px) {
  .cu-section-fs-bigtext {
    display: none;
  }
}
.cu-section-wt-title {
  color: var(--cu-common-black-2);
}
.cu-section-shoes-border {
  width: 80px;
  height: 2px;
  display: inline-block;
  background: var(--cu-common-black);
}

/*=============================
	05. Mobile Menu
===============================*/
.cu-mobile-search {
  padding: 0 25px 25px 25px;
}
.cu-mobile-search form {
  position: relative;
}
.cu-mobile-search input {
  border: 1px solid #d9e1e1;
  width: 100%;
  height: 50px;
  background: var(--cu-common-white);
  font-weight: 400;
  font-size: 16px;
  padding-left: 22px;
  text-transform: capitalize;
  padding-right: 50px;
  color: var(--cu-grey-1);
}
.cu-mobile-search input:focus {
  border-color: var(--cu-theme-primary);
}
.cu-mobile-search input::placeholder {
  font-family: var(--cu-ff-poppins);
  font-weight: 400;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--cu-grey-1);
}
.cu-mobile-search button {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  border: none;
  padding: 0;
  right: 20px;
  line-height: 1;
  background: transparent;
  color: var(--cu-common-black);
}
.cu-mobile-menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 350px;
  padding-right: 30px;
  max-width: 100%;
  height: 100%;
  z-index: 9991;
  border-radius: 0px;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -ms-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) e;
  -o-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transform: translateX(101%);
  -moz-transform: translateX(101%);
  -ms-transform: translateX(101%);
  -o-transform: translateX(101%);
  transform: translateX(101%);
}
@media (max-width: 575px) {
  .cu-mobile-menu {
    width: 100%;
  }
}
.cu-mobile-menu .navbar-collapse {
  display: block !important;
}
.cu-mobile-menu .nav-logo {
  position: relative;
  padding: 30px 25px;
  text-align: left;
}
.cu-mobile-menu .nav-logo img {
  width: 150px;
}
.cu-mobile-menu .navigation {
  position: relative;
  display: block;
  width: 100%;
  float: none;
  margin: 0;
  padding: 0;
}
.cu-mobile-menu .navigation li {
  position: relative !important;
  display: block;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.cu-mobile-menu .navigation li.active > a {
  color: var(--cu-theme-primary);
}
.cu-mobile-menu .navigation li.menu-item-has-children .dropdown-btn {
  position: absolute;
  right: 20px;
  top: 6px;
  width: 32px;
  height: 32px;
  text-align: center;
  font-size: 16px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  z-index: 5;
  align-items: center;
  justify-content: center;
  color: var(--cu-common-black);
  border: 1px solid rgba(1, 15, 28, 0.12);
  cursor: pointer;
  border-radius: 0;
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
.cu-mobile-menu .navigation li.menu-item-has-children .dropdown-btn:hover {
  background: var(--cu-theme-primary);
  color: var(--cu-common-white);
  border-color: var(--cu-theme-primary);
}
.cu-mobile-menu .navigation li.menu-item-has-children .dropdown-btn:hover .plus-line {
  background-color: var(--cu-common-white);
}
.cu-mobile-menu .navigation li.menu-item-has-children .dropdown-btn:hover .plus-line::after {
  background-color: var(--cu-common-white);
}
.cu-mobile-menu .navigation li.menu-item-has-children .dropdown-btn .plus-line {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(0);
  -ms-transform: translate(-50%, -50%) rotate(0);
  transform: translate(-50%, -50%) rotate(0);
  border-radius: 10px;
  width: 12px;
  height: 2px;
  background-color: var(--cu-theme-primary);
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
.cu-mobile-menu .navigation li.menu-item-has-children .dropdown-btn .plus-line::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(0);
  -ms-transform: translate(-50%, -50%) rotate(0);
  transform: translate(-50%, -50%) rotate(0);
  border-radius: 10px;
  width: 2px;
  height: 12px;
  background-color: var(--cu-theme-primary);
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
.cu-mobile-menu .navigation li.menu-item-has-children .dropdown-btn.open {
  background-color: var(--cu-theme-primary);
}
.cu-mobile-menu .navigation li.menu-item-has-children .dropdown-btn.open .plus-line {
  background-color: var(--cu-common-white);
}
.cu-mobile-menu .navigation li.menu-item-has-children .dropdown-btn.open .plus-line::after {
  display: none;
}
.cu-mobile-menu .navigation li > a {
  position: relative;
  display: block;
  padding: 10px 60px 10px 25px;
  font-size: 15px;
  font-weight: 400;
  color: var(--cu-common-black);
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  border: none;
}
.cu-mobile-menu .navigation li > a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 0;
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  width: 2px;
  background: var(--cu-theme-primary);
  pointer-events: none;
}
.cu-mobile-menu .navigation li ul li > a {
  margin-left: 20px;
}
.cu-mobile-menu .navigation li ul li ul li a {
  margin-left: 40px;
}
.cu-mobile-menu .navigation li ul li ul li ul li a {
  margin-left: 60px;
}
.cu-mobile-menu .navigation li .cu-submenu {
  display: none;
}
.cu-mobile-menu .navigation li .cu-submenu > li > ul {
  display: none;
}
.cu-mobile-menu .navigation ul {
  padding: 0;
  margin: 0;
}
.cu-mobile-menu .navigation ul li a {
  display: block;
}
.cu-mobile-menu .navigation ul li ul li > a {
  font-size: 16px;
  margin-left: 20px;
  text-transform: capitalize;
}
.cu-mobile-menu .navigation:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.cu-mobile-menu .navigation > li > ul > li:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.cu-mobile-menu .navigation > li.active > a::before {
  height: 100%;
}
.cu-mobile-menu .navigation .shop-mega-menu-title {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  display: block;
  padding: 10px 60px 10px 25px;
  font-size: 16px;
  font-weight: 500;
  color: var(--cu-common-black);
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
.cu-mobile-menu .close-btn {
  position: absolute;
  right: 15px;
  top: 28px;
  text-align: center;
  cursor: pointer;
  z-index: 10;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  display: inline-block;
  font-size: 16px;
  height: 30px;
  width: 30px;
  line-height: 30px;
  background-color: transparent;
  color: var(--tp-common-black);
  background-color: #ECECEC;
}
.cu-mobile-menu .close-btn:hover {
  background: var(--cu-theme-primary);
  color: var(--cu-common-white);
}
.cu-mobile-menu .social-links ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  position: relative;
  text-align: center;
  padding: 30px 20px 20px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px 20px;
}
.cu-mobile-menu .social-links ul li {
  position: relative;
  display: block;
}
.cu-mobile-menu .social-links ul li a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 22px;
  color: var(--cu-theme-primary);
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
.cu-mobile-menu .social-links ul li a:hover {
  color: var(--cu-common-secondary);
}
.cu-mobile-menu .cu-menu-action {
  padding: 0 0;
  margin: 0 0;
}
.cu-mobile-menu .cu-menu-action > ul {
  margin: 0 0;
  padding: 30px 20px 0;
  justify-content: center;
  gap: 0 15px;
}
.cu-mobile-menu .cu-menu-action > ul li {
  margin: 0 0;
}
.cu-mobile-menu .cu-menu-action > ul .header-btn {
  display: block;
}
.cu-mobile-menu-box {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  background: var(--cu-common-white);
  padding: 0px 0px;
  z-index: 5;
  box-shadow: -9px 0 14px 0px rgba(0, 0, 0, 0.06);
}
.cu-mobile-menu-outer .mobile-nav-toggler {
  position: relative;
  float: right;
  font-size: 40px;
  line-height: 50px;
  cursor: pointer;
  display: none;
  color: var(--cu-common-white);
  margin-right: 30px;
  top: 15px;
}

.mobile-menu-visible {
  overflow: hidden;
}
.mobile-menu-visible .cu-mobile-menu {
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
  transform: translateX(0%);
}

/*=============================
  01. Keyframe Animation
===============================*/
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@keyframes slide-har {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes dash {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes animate-pulse-2 {
  0% {
    box-shadow: 0 0 0 0 #ffffff, 0 0 0 0 #ffffff;
  }
  40% {
    box-shadow: 0 0 0 20px rgba(255, 109, 74, 0), 0 0 0 0 #ffffff;
  }
  80% {
    box-shadow: 0 0 0 20px rgba(255, 109, 74, 0), 0 0 0 20px rgba(255, 109, 74, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 109, 74, 0), 0 0 0 20px rgba(255, 109, 74, 0);
  }
}
@-webkit-keyframes curotate {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes curotate {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-ms-keyframes curotate {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes curotate {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes cuupdown {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
@-moz-keyframes cuupdown {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
@-ms-keyframes cuupdown {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
@keyframes cuupdown {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
@-webkit-keyframes ring {
  0% {
    -webkit-transform: rotateZ(0);
    -moz-transform: rotateZ(0);
    -ms-transform: rotateZ(0);
    -o-transform: rotateZ(0);
    transform: rotateZ(0);
  }
  1% {
    -webkit-transform: rotateZ(30deg);
    -moz-transform: rotateZ(30deg);
    -ms-transform: rotateZ(30deg);
    -o-transform: rotateZ(30deg);
    transform: rotateZ(30deg);
  }
  3% {
    -webkit-transform: rotateZ(-28deg);
    -moz-transform: rotateZ(-28deg);
    -ms-transform: rotateZ(-28deg);
    -o-transform: rotateZ(-28deg);
    transform: rotateZ(-28deg);
  }
  5% {
    -webkit-transform: rotateZ(34deg);
    -moz-transform: rotateZ(34deg);
    -ms-transform: rotateZ(34deg);
    -o-transform: rotateZ(34deg);
    transform: rotateZ(34deg);
  }
  7% {
    -webkit-transform: rotateZ(-32deg);
    -moz-transform: rotateZ(-32deg);
    -ms-transform: rotateZ(-32deg);
    -o-transform: rotateZ(-32deg);
    transform: rotateZ(-32deg);
  }
  9% {
    -webkit-transform: rotateZ(30deg);
    -moz-transform: rotateZ(30deg);
    -ms-transform: rotateZ(30deg);
    -o-transform: rotateZ(30deg);
    transform: rotateZ(30deg);
  }
  11% {
    -webkit-transform: rotateZ(-28deg);
    -moz-transform: rotateZ(-28deg);
    -ms-transform: rotateZ(-28deg);
    -o-transform: rotateZ(-28deg);
    transform: rotateZ(-28deg);
  }
  13% {
    -webkit-transform: rotateZ(26deg);
    -moz-transform: rotateZ(26deg);
    -ms-transform: rotateZ(26deg);
    -o-transform: rotateZ(26deg);
    transform: rotateZ(26deg);
  }
  15% {
    -webkit-transform: rotateZ(-24deg);
    -moz-transform: rotateZ(-24deg);
    -ms-transform: rotateZ(-24deg);
    -o-transform: rotateZ(-24deg);
    transform: rotateZ(-24deg);
  }
  17% {
    -webkit-transform: rotateZ(22deg);
    -moz-transform: rotateZ(22deg);
    -ms-transform: rotateZ(22deg);
    -o-transform: rotateZ(22deg);
    transform: rotateZ(22deg);
  }
  19% {
    -webkit-transform: rotateZ(-20deg);
    -moz-transform: rotateZ(-20deg);
    -ms-transform: rotateZ(-20deg);
    -o-transform: rotateZ(-20deg);
    transform: rotateZ(-20deg);
  }
  21% {
    -webkit-transform: rotateZ(18deg);
    -moz-transform: rotateZ(18deg);
    -ms-transform: rotateZ(18deg);
    -o-transform: rotateZ(18deg);
    transform: rotateZ(18deg);
  }
  23% {
    -webkit-transform: rotateZ(-16deg);
    -moz-transform: rotateZ(-16deg);
    -ms-transform: rotateZ(-16deg);
    -o-transform: rotateZ(-16deg);
    transform: rotateZ(-16deg);
  }
  25% {
    -webkit-transform: rotateZ(14deg);
    -moz-transform: rotateZ(14deg);
    -ms-transform: rotateZ(14deg);
    -o-transform: rotateZ(14deg);
    transform: rotateZ(14deg);
  }
  27% {
    -webkit-transform: rotateZ(-12deg);
    -moz-transform: rotateZ(-12deg);
    -ms-transform: rotateZ(-12deg);
    -o-transform: rotateZ(-12deg);
    transform: rotateZ(-12deg);
  }
  29% {
    -webkit-transform: rotateZ(10deg);
    -moz-transform: rotateZ(10deg);
    -ms-transform: rotateZ(10deg);
    -o-transform: rotateZ(10deg);
    transform: rotateZ(10deg);
  }
  31% {
    -webkit-transform: rotateZ(-8deg);
    -moz-transform: rotateZ(-8deg);
    -ms-transform: rotateZ(-8deg);
    -o-transform: rotateZ(-8deg);
    transform: rotateZ(-8deg);
  }
  33% {
    -webkit-transform: rotateZ(6deg);
    -moz-transform: rotateZ(6deg);
    -ms-transform: rotateZ(6deg);
    -o-transform: rotateZ(6deg);
    transform: rotateZ(6deg);
  }
  35% {
    -webkit-transform: rotateZ(-4deg);
    -moz-transform: rotateZ(-4deg);
    -ms-transform: rotateZ(-4deg);
    -o-transform: rotateZ(-4deg);
    transform: rotateZ(-4deg);
  }
  37% {
    -webkit-transform: rotateZ(2deg);
    -moz-transform: rotateZ(2deg);
    -ms-transform: rotateZ(2deg);
    -o-transform: rotateZ(2deg);
    transform: rotateZ(2deg);
  }
  39% {
    -webkit-transform: rotateZ(-1deg);
    -moz-transform: rotateZ(-1deg);
    -ms-transform: rotateZ(-1deg);
    -o-transform: rotateZ(-1deg);
    transform: rotateZ(-1deg);
  }
  41% {
    -webkit-transform: rotateZ(1deg);
    -moz-transform: rotateZ(1deg);
    -ms-transform: rotateZ(1deg);
    -o-transform: rotateZ(1deg);
    transform: rotateZ(1deg);
  }
  43%, 100% {
    -webkit-transform: rotateZ(0);
    -moz-transform: rotateZ(0);
    -ms-transform: rotateZ(0);
    -o-transform: rotateZ(0);
    transform: rotateZ(0);
  }
}
@-moz-keyframes ring {
  0% {
    -webkit-transform: rotateZ(0);
    -moz-transform: rotateZ(0);
    -ms-transform: rotateZ(0);
    -o-transform: rotateZ(0);
    transform: rotateZ(0);
  }
  1% {
    -webkit-transform: rotateZ(30deg);
    -moz-transform: rotateZ(30deg);
    -ms-transform: rotateZ(30deg);
    -o-transform: rotateZ(30deg);
    transform: rotateZ(30deg);
  }
  3% {
    -webkit-transform: rotateZ(-28deg);
    -moz-transform: rotateZ(-28deg);
    -ms-transform: rotateZ(-28deg);
    -o-transform: rotateZ(-28deg);
    transform: rotateZ(-28deg);
  }
  5% {
    -webkit-transform: rotateZ(34deg);
    -moz-transform: rotateZ(34deg);
    -ms-transform: rotateZ(34deg);
    -o-transform: rotateZ(34deg);
    transform: rotateZ(34deg);
  }
  7% {
    -webkit-transform: rotateZ(-32deg);
    -moz-transform: rotateZ(-32deg);
    -ms-transform: rotateZ(-32deg);
    -o-transform: rotateZ(-32deg);
    transform: rotateZ(-32deg);
  }
  9% {
    -webkit-transform: rotateZ(30deg);
    -moz-transform: rotateZ(30deg);
    -ms-transform: rotateZ(30deg);
    -o-transform: rotateZ(30deg);
    transform: rotateZ(30deg);
  }
  11% {
    -webkit-transform: rotateZ(-28deg);
    -moz-transform: rotateZ(-28deg);
    -ms-transform: rotateZ(-28deg);
    -o-transform: rotateZ(-28deg);
    transform: rotateZ(-28deg);
  }
  13% {
    -webkit-transform: rotateZ(26deg);
    -moz-transform: rotateZ(26deg);
    -ms-transform: rotateZ(26deg);
    -o-transform: rotateZ(26deg);
    transform: rotateZ(26deg);
  }
  15% {
    -webkit-transform: rotateZ(-24deg);
    -moz-transform: rotateZ(-24deg);
    -ms-transform: rotateZ(-24deg);
    -o-transform: rotateZ(-24deg);
    transform: rotateZ(-24deg);
  }
  17% {
    -webkit-transform: rotateZ(22deg);
    -moz-transform: rotateZ(22deg);
    -ms-transform: rotateZ(22deg);
    -o-transform: rotateZ(22deg);
    transform: rotateZ(22deg);
  }
  19% {
    -webkit-transform: rotateZ(-20deg);
    -moz-transform: rotateZ(-20deg);
    -ms-transform: rotateZ(-20deg);
    -o-transform: rotateZ(-20deg);
    transform: rotateZ(-20deg);
  }
  21% {
    -webkit-transform: rotateZ(18deg);
    -moz-transform: rotateZ(18deg);
    -ms-transform: rotateZ(18deg);
    -o-transform: rotateZ(18deg);
    transform: rotateZ(18deg);
  }
  23% {
    -webkit-transform: rotateZ(-16deg);
    -moz-transform: rotateZ(-16deg);
    -ms-transform: rotateZ(-16deg);
    -o-transform: rotateZ(-16deg);
    transform: rotateZ(-16deg);
  }
  25% {
    -webkit-transform: rotateZ(14deg);
    -moz-transform: rotateZ(14deg);
    -ms-transform: rotateZ(14deg);
    -o-transform: rotateZ(14deg);
    transform: rotateZ(14deg);
  }
  27% {
    -webkit-transform: rotateZ(-12deg);
    -moz-transform: rotateZ(-12deg);
    -ms-transform: rotateZ(-12deg);
    -o-transform: rotateZ(-12deg);
    transform: rotateZ(-12deg);
  }
  29% {
    -webkit-transform: rotateZ(10deg);
    -moz-transform: rotateZ(10deg);
    -ms-transform: rotateZ(10deg);
    -o-transform: rotateZ(10deg);
    transform: rotateZ(10deg);
  }
  31% {
    -webkit-transform: rotateZ(-8deg);
    -moz-transform: rotateZ(-8deg);
    -ms-transform: rotateZ(-8deg);
    -o-transform: rotateZ(-8deg);
    transform: rotateZ(-8deg);
  }
  33% {
    -webkit-transform: rotateZ(6deg);
    -moz-transform: rotateZ(6deg);
    -ms-transform: rotateZ(6deg);
    -o-transform: rotateZ(6deg);
    transform: rotateZ(6deg);
  }
  35% {
    -webkit-transform: rotateZ(-4deg);
    -moz-transform: rotateZ(-4deg);
    -ms-transform: rotateZ(-4deg);
    -o-transform: rotateZ(-4deg);
    transform: rotateZ(-4deg);
  }
  37% {
    -webkit-transform: rotateZ(2deg);
    -moz-transform: rotateZ(2deg);
    -ms-transform: rotateZ(2deg);
    -o-transform: rotateZ(2deg);
    transform: rotateZ(2deg);
  }
  39% {
    -webkit-transform: rotateZ(-1deg);
    -moz-transform: rotateZ(-1deg);
    -ms-transform: rotateZ(-1deg);
    -o-transform: rotateZ(-1deg);
    transform: rotateZ(-1deg);
  }
  41% {
    -webkit-transform: rotateZ(1deg);
    -moz-transform: rotateZ(1deg);
    -ms-transform: rotateZ(1deg);
    -o-transform: rotateZ(1deg);
    transform: rotateZ(1deg);
  }
  43%, 100% {
    -webkit-transform: rotateZ(0);
    -moz-transform: rotateZ(0);
    -ms-transform: rotateZ(0);
    -o-transform: rotateZ(0);
    transform: rotateZ(0);
  }
}
@-ms-keyframes ring {
  0% {
    -webkit-transform: rotateZ(0);
    -moz-transform: rotateZ(0);
    -ms-transform: rotateZ(0);
    -o-transform: rotateZ(0);
    transform: rotateZ(0);
  }
  1% {
    -webkit-transform: rotateZ(30deg);
    -moz-transform: rotateZ(30deg);
    -ms-transform: rotateZ(30deg);
    -o-transform: rotateZ(30deg);
    transform: rotateZ(30deg);
  }
  3% {
    -webkit-transform: rotateZ(-28deg);
    -moz-transform: rotateZ(-28deg);
    -ms-transform: rotateZ(-28deg);
    -o-transform: rotateZ(-28deg);
    transform: rotateZ(-28deg);
  }
  5% {
    -webkit-transform: rotateZ(34deg);
    -moz-transform: rotateZ(34deg);
    -ms-transform: rotateZ(34deg);
    -o-transform: rotateZ(34deg);
    transform: rotateZ(34deg);
  }
  7% {
    -webkit-transform: rotateZ(-32deg);
    -moz-transform: rotateZ(-32deg);
    -ms-transform: rotateZ(-32deg);
    -o-transform: rotateZ(-32deg);
    transform: rotateZ(-32deg);
  }
  9% {
    -webkit-transform: rotateZ(30deg);
    -moz-transform: rotateZ(30deg);
    -ms-transform: rotateZ(30deg);
    -o-transform: rotateZ(30deg);
    transform: rotateZ(30deg);
  }
  11% {
    -webkit-transform: rotateZ(-28deg);
    -moz-transform: rotateZ(-28deg);
    -ms-transform: rotateZ(-28deg);
    -o-transform: rotateZ(-28deg);
    transform: rotateZ(-28deg);
  }
  13% {
    -webkit-transform: rotateZ(26deg);
    -moz-transform: rotateZ(26deg);
    -ms-transform: rotateZ(26deg);
    -o-transform: rotateZ(26deg);
    transform: rotateZ(26deg);
  }
  15% {
    -webkit-transform: rotateZ(-24deg);
    -moz-transform: rotateZ(-24deg);
    -ms-transform: rotateZ(-24deg);
    -o-transform: rotateZ(-24deg);
    transform: rotateZ(-24deg);
  }
  17% {
    -webkit-transform: rotateZ(22deg);
    -moz-transform: rotateZ(22deg);
    -ms-transform: rotateZ(22deg);
    -o-transform: rotateZ(22deg);
    transform: rotateZ(22deg);
  }
  19% {
    -webkit-transform: rotateZ(-20deg);
    -moz-transform: rotateZ(-20deg);
    -ms-transform: rotateZ(-20deg);
    -o-transform: rotateZ(-20deg);
    transform: rotateZ(-20deg);
  }
  21% {
    -webkit-transform: rotateZ(18deg);
    -moz-transform: rotateZ(18deg);
    -ms-transform: rotateZ(18deg);
    -o-transform: rotateZ(18deg);
    transform: rotateZ(18deg);
  }
  23% {
    -webkit-transform: rotateZ(-16deg);
    -moz-transform: rotateZ(-16deg);
    -ms-transform: rotateZ(-16deg);
    -o-transform: rotateZ(-16deg);
    transform: rotateZ(-16deg);
  }
  25% {
    -webkit-transform: rotateZ(14deg);
    -moz-transform: rotateZ(14deg);
    -ms-transform: rotateZ(14deg);
    -o-transform: rotateZ(14deg);
    transform: rotateZ(14deg);
  }
  27% {
    -webkit-transform: rotateZ(-12deg);
    -moz-transform: rotateZ(-12deg);
    -ms-transform: rotateZ(-12deg);
    -o-transform: rotateZ(-12deg);
    transform: rotateZ(-12deg);
  }
  29% {
    -webkit-transform: rotateZ(10deg);
    -moz-transform: rotateZ(10deg);
    -ms-transform: rotateZ(10deg);
    -o-transform: rotateZ(10deg);
    transform: rotateZ(10deg);
  }
  31% {
    -webkit-transform: rotateZ(-8deg);
    -moz-transform: rotateZ(-8deg);
    -ms-transform: rotateZ(-8deg);
    -o-transform: rotateZ(-8deg);
    transform: rotateZ(-8deg);
  }
  33% {
    -webkit-transform: rotateZ(6deg);
    -moz-transform: rotateZ(6deg);
    -ms-transform: rotateZ(6deg);
    -o-transform: rotateZ(6deg);
    transform: rotateZ(6deg);
  }
  35% {
    -webkit-transform: rotateZ(-4deg);
    -moz-transform: rotateZ(-4deg);
    -ms-transform: rotateZ(-4deg);
    -o-transform: rotateZ(-4deg);
    transform: rotateZ(-4deg);
  }
  37% {
    -webkit-transform: rotateZ(2deg);
    -moz-transform: rotateZ(2deg);
    -ms-transform: rotateZ(2deg);
    -o-transform: rotateZ(2deg);
    transform: rotateZ(2deg);
  }
  39% {
    -webkit-transform: rotateZ(-1deg);
    -moz-transform: rotateZ(-1deg);
    -ms-transform: rotateZ(-1deg);
    -o-transform: rotateZ(-1deg);
    transform: rotateZ(-1deg);
  }
  41% {
    -webkit-transform: rotateZ(1deg);
    -moz-transform: rotateZ(1deg);
    -ms-transform: rotateZ(1deg);
    -o-transform: rotateZ(1deg);
    transform: rotateZ(1deg);
  }
  43%, 100% {
    -webkit-transform: rotateZ(0);
    -moz-transform: rotateZ(0);
    -ms-transform: rotateZ(0);
    -o-transform: rotateZ(0);
    transform: rotateZ(0);
  }
}
@keyframes ring {
  0% {
    -webkit-transform: rotateZ(0);
    -moz-transform: rotateZ(0);
    -ms-transform: rotateZ(0);
    -o-transform: rotateZ(0);
    transform: rotateZ(0);
  }
  1% {
    -webkit-transform: rotateZ(30deg);
    -moz-transform: rotateZ(30deg);
    -ms-transform: rotateZ(30deg);
    -o-transform: rotateZ(30deg);
    transform: rotateZ(30deg);
  }
  3% {
    -webkit-transform: rotateZ(-28deg);
    -moz-transform: rotateZ(-28deg);
    -ms-transform: rotateZ(-28deg);
    -o-transform: rotateZ(-28deg);
    transform: rotateZ(-28deg);
  }
  5% {
    -webkit-transform: rotateZ(34deg);
    -moz-transform: rotateZ(34deg);
    -ms-transform: rotateZ(34deg);
    -o-transform: rotateZ(34deg);
    transform: rotateZ(34deg);
  }
  7% {
    -webkit-transform: rotateZ(-32deg);
    -moz-transform: rotateZ(-32deg);
    -ms-transform: rotateZ(-32deg);
    -o-transform: rotateZ(-32deg);
    transform: rotateZ(-32deg);
  }
  9% {
    -webkit-transform: rotateZ(30deg);
    -moz-transform: rotateZ(30deg);
    -ms-transform: rotateZ(30deg);
    -o-transform: rotateZ(30deg);
    transform: rotateZ(30deg);
  }
  11% {
    -webkit-transform: rotateZ(-28deg);
    -moz-transform: rotateZ(-28deg);
    -ms-transform: rotateZ(-28deg);
    -o-transform: rotateZ(-28deg);
    transform: rotateZ(-28deg);
  }
  13% {
    -webkit-transform: rotateZ(26deg);
    -moz-transform: rotateZ(26deg);
    -ms-transform: rotateZ(26deg);
    -o-transform: rotateZ(26deg);
    transform: rotateZ(26deg);
  }
  15% {
    -webkit-transform: rotateZ(-24deg);
    -moz-transform: rotateZ(-24deg);
    -ms-transform: rotateZ(-24deg);
    -o-transform: rotateZ(-24deg);
    transform: rotateZ(-24deg);
  }
  17% {
    -webkit-transform: rotateZ(22deg);
    -moz-transform: rotateZ(22deg);
    -ms-transform: rotateZ(22deg);
    -o-transform: rotateZ(22deg);
    transform: rotateZ(22deg);
  }
  19% {
    -webkit-transform: rotateZ(-20deg);
    -moz-transform: rotateZ(-20deg);
    -ms-transform: rotateZ(-20deg);
    -o-transform: rotateZ(-20deg);
    transform: rotateZ(-20deg);
  }
  21% {
    -webkit-transform: rotateZ(18deg);
    -moz-transform: rotateZ(18deg);
    -ms-transform: rotateZ(18deg);
    -o-transform: rotateZ(18deg);
    transform: rotateZ(18deg);
  }
  23% {
    -webkit-transform: rotateZ(-16deg);
    -moz-transform: rotateZ(-16deg);
    -ms-transform: rotateZ(-16deg);
    -o-transform: rotateZ(-16deg);
    transform: rotateZ(-16deg);
  }
  25% {
    -webkit-transform: rotateZ(14deg);
    -moz-transform: rotateZ(14deg);
    -ms-transform: rotateZ(14deg);
    -o-transform: rotateZ(14deg);
    transform: rotateZ(14deg);
  }
  27% {
    -webkit-transform: rotateZ(-12deg);
    -moz-transform: rotateZ(-12deg);
    -ms-transform: rotateZ(-12deg);
    -o-transform: rotateZ(-12deg);
    transform: rotateZ(-12deg);
  }
  29% {
    -webkit-transform: rotateZ(10deg);
    -moz-transform: rotateZ(10deg);
    -ms-transform: rotateZ(10deg);
    -o-transform: rotateZ(10deg);
    transform: rotateZ(10deg);
  }
  31% {
    -webkit-transform: rotateZ(-8deg);
    -moz-transform: rotateZ(-8deg);
    -ms-transform: rotateZ(-8deg);
    -o-transform: rotateZ(-8deg);
    transform: rotateZ(-8deg);
  }
  33% {
    -webkit-transform: rotateZ(6deg);
    -moz-transform: rotateZ(6deg);
    -ms-transform: rotateZ(6deg);
    -o-transform: rotateZ(6deg);
    transform: rotateZ(6deg);
  }
  35% {
    -webkit-transform: rotateZ(-4deg);
    -moz-transform: rotateZ(-4deg);
    -ms-transform: rotateZ(-4deg);
    -o-transform: rotateZ(-4deg);
    transform: rotateZ(-4deg);
  }
  37% {
    -webkit-transform: rotateZ(2deg);
    -moz-transform: rotateZ(2deg);
    -ms-transform: rotateZ(2deg);
    -o-transform: rotateZ(2deg);
    transform: rotateZ(2deg);
  }
  39% {
    -webkit-transform: rotateZ(-1deg);
    -moz-transform: rotateZ(-1deg);
    -ms-transform: rotateZ(-1deg);
    -o-transform: rotateZ(-1deg);
    transform: rotateZ(-1deg);
  }
  41% {
    -webkit-transform: rotateZ(1deg);
    -moz-transform: rotateZ(1deg);
    -ms-transform: rotateZ(1deg);
    -o-transform: rotateZ(1deg);
    transform: rotateZ(1deg);
  }
  43%, 100% {
    -webkit-transform: rotateZ(0);
    -moz-transform: rotateZ(0);
    -ms-transform: rotateZ(0);
    -o-transform: rotateZ(0);
    transform: rotateZ(0);
  }
}
/* animate-pulse */
@keyframes animate-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8), 0 0 0 0 rgba(255, 255, 255, 0.8);
  }
  40% {
    box-shadow: 0 0 0 50px rgba(255, 109, 74, 0), 0 0 0 0 rgba(255, 255, 255, 0.8);
  }
  80% {
    box-shadow: 0 0 0 50px rgba(255, 109, 74, 0), 0 0 0 30px rgba(255, 109, 74, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 109, 74, 0), 0 0 0 30px rgba(255, 109, 74, 0);
  }
}
@keyframes headerSlideDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
/*=============================
    09. progress
===============================*/
.cu-progress-inner .progress-bar {
  overflow: visible;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 4px;
  text-align: center;
  white-space: nowrap;
  background-color: var(--cu-theme-primary);
  transition: width 0.6s ease;
  position: relative;
  margin-top: 3px;
}
.cu-progress-car {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 26px;
  color: var(--cu-theme-primary);
  border: 1px solid var(--cu-theme-primary);
  border-radius: 2.5px;
  background-color: var(--cu-common-white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cu-progress-inner {
  background: var(--cu-border-1);
  width: 100%;
  height: 4px;
  position: relative;
}

/*=============================
	12. spacing default responsive
===============================*/
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-170 {
    padding-top: 115px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-165 {
    padding-top: 110px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-160 {
    padding-top: 100px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-155 {
    padding-top: 100px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-150 {
    padding-top: 100px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-145 {
    padding-top: 100px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-140 {
    padding-top: 100px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-135 {
    padding-top: 95px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-130 {
    padding-top: 90px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-125 {
    padding-top: 85px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-120 {
    padding-top: 80px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-115 {
    padding-top: 75px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-110 {
    padding-top: 70px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-105 {
    padding-top: 65px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-100 {
    padding-top: 60px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pb-170 {
    padding-bottom: 100px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pb-165 {
    padding-bottom: 100px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pb-160 {
    padding-bottom: 100px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pb-155 {
    padding-bottom: 100px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pb-150 {
    padding-bottom: 100px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pb-145 {
    padding-bottom: 100px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pb-140 {
    padding-bottom: 100px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pb-135 {
    padding-bottom: 95px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pb-130 {
    padding-bottom: 90px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pb-125 {
    padding-bottom: 85px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pb-120 {
    padding-bottom: 80px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pb-115 {
    padding-bottom: 75px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pb-110 {
    padding-bottom: 70px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pb-105 {
    padding-bottom: 65px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pb-100 {
    padding-bottom: 60px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pb-95 {
    padding-bottom: 55px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pb-90 {
    padding-bottom: 50px;
  }
}

/*=========================
    06. Nice Select
===========================*/
.nice-select {
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  outline: none;
  position: relative;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  user-select: none;
  white-space: nowrap;
  padding: 0 25px;
  min-width: 204px;
  color: var(--cu-common-black);
  height: 40px;
  line-height: 38px;
  font-weight: 400;
  font-size: 14px;
  background-color: #f9f9f9;
}
.nice-select:hover {
  border-color: rgba(0, 0, 0, 0.1);
}
.nice-select:active, .nice-select.open, .nice-select:focus {
  border-color: rgba(0, 0, 0, 0.1);
}
.nice-select::after {
  position: absolute;
  content: "\f107";
  top: 50%;
  right: 15px;
  font-family: var(--cu-ff-fontawesome);
  color: var(--cu-grey-3);
  font-weight: 500;
  pointer-events: none;
  font-size: 18px;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  margin-top: 0;
  transform-origin: center;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.nice-select.open::after {
  -webkit-transform: translateY(-50%) rotate(-180deg);
  -moz-transform: translateY(-50%) rotate(-180deg);
  -ms-transform: translateY(-50%) rotate(-180deg);
  -o-transform: translateY(-50%) rotate(-180deg);
  transform: translateY(-50%) rotate(-180deg);
}
.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}
.nice-select.disabled {
  border-color: #ededed;
  color: #999;
  pointer-events: none;
}
.nice-select.disabled::after {
  border-color: #cccccc;
}
.nice-select.wide {
  width: 100%;
}
.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}
.nice-select.right {
  float: right;
}
.nice-select.right .list {
  left: auto;
  right: 0;
}
.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}
.nice-select.small::after {
  height: 4px;
  width: 4px;
}
.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}
.nice-select .list {
  background-color: #fff;
  width: 200px;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 10px;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-21px);
  -ms-transform: scale(0.75) translateY(-21px);
  transform: scale(0.75) translateY(-21px);
  -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
}
.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  border-radius: 12px;
}
.nice-select .option:hover {
  background-color: #f8f8fb;
  color: var(--cu-common-black);
}
.nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}

.no-csspointerevents .nice-select .list {
  display: none;
}

.no-csspointerevents .nice-select.open .list {
  display: block;
}

/*=============================
    19. Header
===============================*/
.cu-header-top {
  background: var(--cu-theme-primary);
  padding: 7px 0px;
}
.cu-header-top-slider-text {
  font-weight: 500;
  font-size: 14px;
  color: var(--cu-common-white);
}
.cu-header-top-slider-text a {
  color: var(--cu-common-white);
}
.cu-header-top-menu-item {
  position: relative;
}
.cu-header-top-menu-item > span {
  position: relative;
  display: inline-block;
  font-weight: 500;
  font-size: 14px;
  color: var(--cu-common-white);
  padding-right: 20px;
}
.cu-header-top-menu-item > span::after {
  position: absolute;
  content: "\f107";
  font-family: var(--cu-ff-fontawesome);
  margin-left: 7px;
}
.cu-header-top-menu-item > span:hover {
  cursor: pointer;
}
.cu-header-top-menu-item ul {
  position: absolute;
  top: 125%;
  right: 0;
  z-index: 4;
  background-color: var(--cu-common-white);
  padding: 10px 15px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  visibility: hidden;
  opacity: 0;
  min-width: max-content;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -ms-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.cu-header-top-menu-item ul.cu-lang-list-open, .cu-header-top-menu-item ul.cu-currency-list-open, .cu-header-top-menu-item ul.cu-setting-list-open {
  top: 100%;
  visibility: visible;
  opacity: 1;
}
.cu-header-top-menu-item ul li {
  list-style: none;
}
.cu-header-top-menu-item ul li a {
  font-size: 14px;
  color: var(--cu-grey-3);
}
.cu-header-top-menu-item ul li a:hover {
  color: var(--cu-common-black);
}
.cu-header-top-menu-item ul li a img {
  width: 20px;
  border-radius: 100px;
  margin-right: 6px;
}
.cu-header-currency ul li:not(:last-child) {
  margin-bottom: 7px;
}
.cu-header-currency-toggle img {
  width: 20px;
  margin-right: 3px;
}
@media (max-width: 575px) {
  .cu-header-info-item {
    margin-right: 0;
  }
}
.cu-header-info-item a {
  font-weight: 400;
  font-size: 14px;
  color: var(--cu-common-white);
  background-image: linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor);
  background-size: 0 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s linear;
  -webkit-transition: all all 0.4s ease ease-out 0s;
  -moz-transition: all all 0.4s ease ease-out 0s;
  -ms-transition: all all 0.4s ease ease-out 0s;
  -o-transition: all all 0.4s ease ease-out 0s;
  transition: all all 0.4s ease ease-out 0s;
}
.cu-header-info-item a:hover {
  background-image: linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor);
  background-size: 0 1px, 100% 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s linear;
  -webkit-transition: all all 0.4s ease ease-out 0s;
  -moz-transition: all all 0.4s ease ease-out 0s;
  -ms-transition: all all 0.4s ease ease-out 0s;
  -o-transition: all all 0.4s ease ease-out 0s;
  transition: all all 0.4s ease ease-out 0s;
}
.cu-header-login-icon {
  border-radius: 20px;
  width: 38px;
  height: 38px;
  background: var(--cu-grey-2);
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cu-header-login-title {
  font-weight: 500;
  font-size: 16px;
  color: var(--cu-common-black);
  margin-bottom: 0;
}
.cu-header-login-content span {
  font-weight: 500;
  display: inline-block;
  font-size: 14px;
  color: var(--cu-grey-1);
}
@media only screen and (min-width: 1600px) and (max-width: 1700px), only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .cu-header-action {
    padding-right: 10px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cu-header-action {
    margin-left: 25px;
  }
}
.cu-header-action-item:not(:first-child) {
  margin-left: 20px;
}
.cu-header-action-btn {
  font-size: 20px;
  color: var(--cu-common-black);
  position: relative;
  display: inline-block;
  padding: 0;
}
.cu-header-action-btn:hover {
  color: var(--cu-theme-primary);
}
.cu-header-action-badge {
  position: absolute;
  top: -6px;
  right: -13px;
  display: inline-block;
  width: 23px;
  height: 23px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--cu-common-black);
  color: var(--cu-common-white);
  font-size: 12px;
  font-weight: 400;
  border: 2px solid var(--cu-common-white);
}
.cu-header-main {
  padding: 20px 0px;
  border-bottom: 1px solid var(--cu-border-1);
}
.cu-header-contact a {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: var(--cu-common-black);
}
.cu-header-contact a:hover {
  color: var(--cu-theme-primary);
}
.cu-header-contact-icon {
  color: var(--cu-theme-primary);
}
.cu-header-cw-wrap .cu-header-top {
  background: var(--cu-common-black);
}
.cu-header-cw-wrap .cu-header-top-slider-text span {
  color: var(--cu-common-yellow-2);
}
.cu-header-cw-wrap .cu-header-top-slider-text a {
  color: var(--cu-common-yellow-2);
}
.cu-header-cw-wrap .cu-header-main {
  padding: 0;
  border: none;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-header-cw-wrap .cu-header-main {
    padding: 20px 0;
  }
}
.cu-header-cw-wrap .cu-main-menu {
  margin-left: -50px;
}
.cu-header-cw-wrap .cu-main-menu > nav > ul > li > a {
  padding: 37px 0;
}
.cu-header-cw-wrap .cu-header-action-item:not(:first-child) {
  margin-left: 25px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-header-cw-wrap .cu-main-menu > nav > ul > li:not(:last-child) {
    margin-right: 27px;
  }
}
@media (max-width: 575px) {
  .cu-header-cw-wrap .cu-header-action {
    padding-right: 0;
  }
}
.cu-header-cw-wrap .cu-header-action-btn:hover {
  color: var(--cu-common-yellow-2);
}
.cu-header-cw-search {
  position: relative;
}
.cu-header-cw-search input {
  background: transparent;
  border: 1px solid var(--cu-border-1);
  width: 306px;
  height: 46px;
  padding-left: 24px;
  padding-right: 50px;
  color: var(--cu-common-black);
  font-size: 14px;
}
.cu-header-cw-search input::-webkit-input-placeholder {
  color: var(--cu-grey-3);
}
.cu-header-cw-search input:-moz-placeholder {
  color: var(--cu-grey-3);
}
.cu-header-cw-search input::-moz-placeholder {
  color: var(--cu-grey-3);
}
.cu-header-cw-search input:-ms-input-placeholder {
  color: var(--cu-grey-3);
}
.cu-header-cw-search input:focus {
  border-color: var(--cu-common-black);
}
.cu-header-cw-search button {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 24px;
}
.cu-header-cw-search button:hover {
  color: var(--cu-common-black);
}
.cu-header-fs-top {
  background: var(--cu-common-blue);
  padding: 7px 0px;
}
.cu-header-fs-top .cu-text-content span {
  font-size: 14px;
  letter-spacing: 0;
  text-transform: uppercase;
}
.cu-header-fs-top .cu-text-slider-wrap {
  -webkit-animation: slide-har 15s linear infinite;
  animation: slide-har 30s linear infinite;
}
.cu-header-fs-main {
  border: none;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-header-fs-main .cu-main-menu > nav > ul > li:not(:last-child) {
    margin-right: 18px;
  }
}
.cu-header-fs-main .cu-header-action-btn:hover {
  color: var(--cu-common-blue);
}
.cu-header-jl-wrap .cu-header-top {
  background: var(--cu-common-green);
}
.cu-header-jl-wrap .cu-main-menu {
  margin-left: -50px;
}
.cu-header-jl-wrap .cu-header-action-btn:hover {
  color: var(--cu-common-green);
}
.cu-header-jl-wrap .cu-header-action-badge {
  background-color: #D0473E;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-header-jl-wrap .cu-main-menu > nav > ul > li:not(:last-child) {
    margin-right: 26px;
  }
}
.cu-header-et-border {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 20px 0px;
}
.cu-header-et-wrap .cu-header-top {
  background: var(--cu-common-blue-2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.cu-header-et-wrap .cu-header-main {
  background: var(--cu-common-blue-2);
  border: none;
  padding: 0;
}
.cu-header-et-wrap .cu-header-bottom {
  background: var(--cu-common-blue-2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.cu-header-et-wrap .cu-header-login-icon {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--cu-common-white);
}
.cu-header-et-wrap .cu-header-login-content span {
  color: var(--cu-common-white);
}
.cu-header-et-wrap .cu-header-login-title {
  color: var(--cu-common-white);
}
.cu-header-et-wrap .cu-header-action-btn {
  color: var(--cu-common-white);
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-header-et-wrap .cu-header-action-btn.mobile-nav-toggler svg {
    margin-right: 8px;
  }
}
.cu-header-et-wrap .cu-header-action-badge {
  background-color: var(--cu-common-yellow-3);
  color: var(--cu-common-black);
  border: 2px solid var(--cu-common-blue-2);
  top: -2px;
  right: -10px;
}
.cu-header-et-wrap .cu-main-menu > nav > ul > li > a {
  color: var(--cu-common-white);
}
.cu-header-et-wrap .cu-main-menu > nav > ul > li > a:hover {
  color: var(--cu-common-yellow-3);
}
.cu-header-et-wrap .cu-main-menu > nav > ul > li:hover > a {
  color: var(--cu-common-yellow-3);
}
.cu-header-et-wrap .cu-header-contact a {
  color: var(--cu-common-white);
}
.cu-header-et-wrap .cu-header-contact a:hover {
  color: var(--cu-common-yellow-3);
}
.cu-header-et-wrap .cu-header-contact-icon {
  color: var(--cu-common-yellow-3);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cu-header-et-search {
    padding-left: 0;
    margin-right: 30px;
  }
}
.cu-header-et-search-wrapper {
  position: relative;
  background: var(--cu-common-white);
  border-radius: 30px;
}
.cu-header-et-search-wrap {
  margin: 0 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-header-et-search-wrap {
    margin: 0;
  }
}
.cu-header-et-search-box {
  width: 54%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .cu-header-et-search-box {
    width: 48%;
  }
}
.cu-header-et-search-box input {
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
  height: 44px;
  background-color: var(--cu-common-white);
  color: var(--cu-common-black);
  border: 0;
  border-radius: 30px 0px 0px 30px;
}
.cu-header-et-search-box input::-webkit-input-placeholder {
  color: var(--cu-grey-3);
}
.cu-header-et-search-box input:-moz-placeholder {
  color: var(--cu-grey-3);
}
.cu-header-et-search-box input::-moz-placeholder {
  color: var(--cu-grey-3);
}
.cu-header-et-search-box input:-ms-input-placeholder {
  color: var(--cu-grey-3);
}
.cu-header-et-search-category {
  position: relative;
}
.cu-header-et-search-category::after {
  position: absolute;
  content: "";
  left: 0;
  top: 49%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background: var(--cu-border-2);
}
.cu-header-et-search-category .nice-select {
  border: 0;
  height: 44px;
  line-height: 44px;
  font-size: 16px;
  color: var(--cu-grey-3) !important;
  padding-right: 27px;
}
.cu-header-et-search-category .nice-select::after {
  right: 4px;
}
.cu-header-et-search-btn {
  position: absolute;
  top: 0;
  right: 0;
}
.cu-header-et-search-btn button {
  width: 80px;
  height: 44px;
  line-height: 44px;
  background-color: var(--cu-common-yellow-3);
  color: var(--cu-common-black);
  border-radius: 0px 30px 30px 0px;
}
.cu-header-wt-wrap .cu-header-top {
  background: var(--cu-common-black-2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.cu-header-wt-wrap .cu-header-main {
  background: var(--cu-common-black-2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.cu-header-wt-wrap .cu-main-menu > nav > ul > li > a {
  color: var(--cu-common-white);
}
.cu-header-wt-wrap .cu-main-menu > nav > ul > li > a:hover {
  color: rgba(255, 255, 255, 0.65);
}
.cu-header-wt-wrap .cu-main-menu > nav > ul > li:hover > a {
  color: rgba(255, 255, 255, 0.65);
}
.cu-header-wt-wrap .cu-header-cw-search input {
  background: var(--cu-common-white);
  border: 1px solid var(--cu-common-white);
  color: var(--cu-grey-1);
}
.cu-header-wt-wrap .cu-header-cw-search button {
  color: var(--cu-common-black-2);
}
.cu-header-wt-wrap .cu-header-cw-search button:hover {
  color: var(--cu-common-black);
}
.cu-header-wt-wrap .cu-header-action-btn {
  color: var(--cu-common-white);
}
.cu-header-wt-wrap .cu-header-action-btn:hover {
  color: rgba(255, 255, 255, 0.65);
}
.cu-header-wt-wrap .cu-header-action-badge {
  background-color: var(--cu-common-white);
  color: var(--cu-common-black-2);
  border: 2px solid var(--cu-common-black-2);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-header-wt-wrap .cu-main-menu > nav > ul > li:not(:last-child) {
    margin-right: 18px;
  }
}
.cu-header-gc-wrap .cu-header-top {
  background: var(--cu-common-green-2);
}
.cu-header-gc-wrap .cu-header-et-search-wrapper {
  border: 1px solid rgba(13, 13, 13, 0.1);
}
.cu-header-gc-wrap .cu-header-et-border {
  border-bottom: none;
}
.cu-header-gc-wrap .cu-header-main {
  background: transparent;
}
.cu-header-gc-wrap .cu-header-login-content span {
  color: var(--cu-grey-1);
}
.cu-header-gc-wrap .cu-header-login-title {
  color: var(--cu-common-black);
}
.cu-header-gc-wrap .cu-header-login-icon {
  border: 1px solid rgba(13, 13, 13, 0.1);
  color: var(--cu-common-black-2);
}
.cu-header-gc-wrap .cu-header-action-btn {
  color: var(--cu-common-black);
  border: 1px solid rgba(13, 13, 13, 0.1);
}
.cu-header-gc-wrap .cu-header-action-badge {
  background-color: var(--cu-common-black);
  color: var(--cu-common-white);
  border: 2px solid var(--cu-common-white);
}
.cu-header-gc-wrap .cu-header-bottom {
  background: var(--cu-common-white);
  border-bottom: none;
  position: relative;
}
.cu-header-gc-wrap .cu-header-bottom::before {
  position: absolute;
  content: "";
  width: 80%;
  height: 100%;
  top: 0;
  right: 0;
  background: #f5f7ea;
}
.cu-header-gc-wrap .cu-main-menu > nav > ul > li > a {
  color: var(--cu-common-black);
}
.cu-header-gc-wrap .cu-main-menu > nav > ul > li:hover > a {
  color: var(--cu-common-green-2);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-header-gc-wrap .cu-main-menu > nav > ul > li:not(:last-child) {
    margin-right: 20px;
  }
}
.cu-header-ft-wrap .cu-header-top {
  background: var(--cu-common-black);
}
.cu-header-ft-wrap .cu-header-et-search-btn button {
  background-color: var(--cu-common-night);
  color: var(--cu-common-white);
}
.cu-header-ft-wrap .cu-header-action-btn:hover {
  color: var(--cu-common-night);
  border: 1px solid var(--cu-common-night);
}
.cu-header-ft-wrap .cu-category-menu-btn {
  background-color: var(--cu-common-night);
}
.cu-header-ft-wrap .cu-category-menu nav ul li a:hover {
  color: var(--cu-common-night);
  border-color: var(--cu-common-night);
}
.cu-header-ft-wrap .cu-category-menu nav ul li a:hover .item {
  color: var(--cu-common-night);
}
.cu-header-ft-wrap .cu-header-bottom::before {
  background: #ddcfb8;
}
.cu-header-ft-wrap .cu-main-menu > nav > ul > li:hover > a {
  color: var(--cu-common-night);
}
.cu-header-shoes-style .cu-text-slider {
  background: var(--cu-common-spring);
}
.cu-header-shoes-style .cu-text-content span {
  color: var(--cu-common-black);
}

/*=============================
    25. menu
===============================*/
.cu-main-menu > nav > ul > li {
  position: relative;
  display: inline-block;
}
.cu-main-menu > nav > ul > li:hover > .cu-submenu {
  visibility: visible;
  opacity: 1;
  transition-duration: 0.2s;
  -webkit-transform: perspective(300px) rotateX(0deg);
  -moz-transform: perspective(300px) rotateX(0deg);
  -ms-transform: perspective(300px) rotateX(0deg);
  -o-transform: perspective(300px) rotateX(0deg);
  transform: perspective(300px) rotateX(0deg);
}
.cu-main-menu > nav > ul > li:hover > a {
  color: var(--cu-common-black);
}
.cu-main-menu > nav > ul > li:not(:last-child) {
  margin-right: 35px;
}
.cu-main-menu > nav > ul > li > a {
  font-weight: 500;
  font-size: 16px;
  color: var(--cu-grey-3);
  padding: 17px 0;
  display: inline-block;
}
.cu-main-menu > nav > ul > li > a:hover {
  color: var(--cu-common-black);
}
.cu-main-menu > nav > ul > li .cu-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 9;
  min-width: 230px;
  background-color: var(--cu-common-white);
  visibility: hidden;
  opacity: 0;
  box-shadow: 0px 20px 30px rgba(135, 136, 137, 0.1);
  padding: 12px 0;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  transition-duration: 0.1s;
  transform-origin: top;
  -webkit-transform: perspective(300px) rotateX(-18deg);
  -moz-transform: perspective(300px) rotateX(-18deg);
  -ms-transform: perspective(300px) rotateX(-18deg);
  -o-transform: perspective(300px) rotateX(-18deg);
  transform: perspective(300px) rotateX(-18deg);
}
.cu-main-menu > nav > ul > li .cu-submenu > li {
  position: relative;
}
.cu-main-menu > nav > ul > li .cu-submenu > li > a {
  padding: 3px 25px;
  font-size: 14px;
  position: relative;
  z-index: 1;
  color: var(--cu-grey-3);
  width: 100%;
  display: block;
  font-weight: 500;
}
.cu-main-menu > nav > ul > li .cu-submenu > li > a:hover {
  color: var(--cu-common-black);
}
.cu-main-menu > nav > ul > li .cu-submenu > li .cu-submenu {
  top: 0;
  left: 100%;
}
.cu-main-menu > nav > ul > li .cu-submenu.shop-mega-menu {
  padding: 30px 40px 0;
  padding-bottom: 30px;
  width: 100%;
}
.cu-main-menu > nav > ul > li .cu-submenu.shop-mega-menu ul > li > a {
  padding: 3px 0;
  font-size: 14px;
  position: relative;
  z-index: 1;
  color: var(--cu-grey-3);
  width: 100%;
  display: block;
}
.cu-main-menu > nav > ul > li .cu-submenu.shop-mega-menu ul > li > a:hover {
  color: var(--cu-common-black);
}
.cu-main-menu nav ul li {
  position: relative;
}
.cu-main-menu nav ul li .cu-submenu li:hover .cu-submenu {
  visibility: visible;
  opacity: 1;
  transition-duration: 0.2s;
  -webkit-transform: perspective(300px) rotateX(0deg);
  -moz-transform: perspective(300px) rotateX(0deg);
  -ms-transform: perspective(300px) rotateX(0deg);
  -o-transform: perspective(300px) rotateX(0deg);
  transform: perspective(300px) rotateX(0deg);
}
.cu-main-menu nav ul li .cu-submenu li.menu-item-has-children > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}
.cu-main-menu nav ul li .cu-submenu li.menu-item-has-children > a::after {
  content: "\f107";
  font-size: 16px;
  font-weight: 400;
  margin-left: 2px;
  color: var(--cu-common-black);
  display: inline-block;
  transform: rotate(-90deg);
  transition: all 0.3s 0s ease-out;
  font-family: var(--cu-ff-fontawesome);
}
.cu-main-menu nav ul li .cu-submenu li.menu-item-has-children:hover a::after {
  transform: rotate(0deg);
  color: var(--cu-theme-primary);
}
.cu-main-homemenu {
  padding: 20px 20px 0 20px !important;
  width: 100%;
}
.cu-main-homemenu .home-menu-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
  color: var(--cu-grey-3);
  transition: all 0.4s ease;
}
.cu-main-homemenu .home-menu-thumb {
  position: relative;
  margin-bottom: 10px;
  border: 1px solid var(--cu-border-1);
  padding: 10px;
  background: #f5f5f5;
}
.cu-main-homemenu .home-menu-thumb::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(1, 15, 28, 0.3);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.cu-main-homemenu .home-menu-item a {
  border: 0 !important;
  padding: 0 !important;
}
.cu-main-homemenu .home-menu-item {
  text-align: center;
  margin-bottom: 22px;
}
.cu-main-homemenu .home-menu-item:hover .home-menu-thumb::after {
  opacity: 1;
  visibility: visible;
}
.cu-main-homemenu .home-menu-item:hover .home-menu-title {
  color: var(--cu-common-black);
}
.cu-main-homemenu .home-menu-item.cooming-soon .home-menu-thumb {
  position: relative;
}
.cu-main-homemenu .home-menu-item.cooming-soon .home-menu-thumb::before {
  position: absolute;
  z-index: 22;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  backdrop-filter: blur(6px);
  background-color: rgba(0, 0, 0, 0.2);
}

.cu-mega-menu-wrapper .shop-mega-menu-title {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 15px;
  display: block;
  color: var(--cu-common-black);
}
.cu-mega-menu-wrapper .shop-mega-menu-img {
  position: relative;
  overflow: hidden;
  height: calc(100% - 11px);
}
.cu-mega-menu-wrapper .shop-mega-menu-img:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.cu-mega-menu-wrapper .shop-mega-menu-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.cu-mega-menu-wrapper .shop-mega-menu-btn {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  text-align: center;
}
.cu-mega-menu-wrapper .cu-menu-showcase-btn {
  background: var(--cu-common-white);
  color: var(--cu-common-black);
  border: none;
}
.cu-mega-menu-wrapper .cu-menu-showcase-btn:hover {
  background: var(--cu-theme-primary);
  color: var(--cu-common-white);
}

.cu-category-menu {
  position: relative;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .cu-category-menu {
    margin-right: 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-category-menu {
    margin: 0px 25px 30px 25px;
  }
}
.cu-category-menu-btn {
  font-weight: 500;
  font-size: 14px;
  color: var(--cu-common-white);
  background-color: var(--cu-common-black);
  width: 100%;
  padding: 12px 40px 12px 13px;
  text-align: left;
  position: relative;
}
.cu-category-menu-btn::after {
  position: absolute;
  content: "\f107";
  right: 40px;
  top: 50%;
  font-size: 20px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: var(--cu-ff-fontawesome);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-category-menu-btn::after {
    right: 20px;
  }
}
.cu-category-menu-btn span {
  margin-right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  display: inline-block;
  text-align: center;
  line-height: 44px;
}
.cu-category-menu-btn:hover {
  background-color: var(--cu-common-black);
  color: var(--cu-common-white);
}
.cu-category-menu nav {
  padding-top: 20px;
  padding-bottom: 40px;
  background: #FFFFFF;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #FFFFFF;
  box-shadow: 0 10px 14px 0 rgba(1, 15, 28, 0.06);
  z-index: 9;
  display: none;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-category-menu nav {
    height: 450px;
    overflow: scroll;
  }
}
.cu-category-menu nav ul li {
  list-style: none;
  padding: 0 40px;
  position: relative;
}
.cu-category-menu nav ul li a {
  font-weight: 500;
  font-size: 16px;
  line-height: 87%;
  letter-spacing: -0.02em;
  color: var(--cu-common-black);
  display: flex;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}
.cu-category-menu nav ul li a:hover {
  color: var(--cu-common-green-2);
  border-color: var(--cu-common-green-2);
}
.cu-category-menu nav ul li a:hover .item {
  color: var(--cu-common-green-2);
}
.cu-category-menu nav ul li a .item {
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #565656;
}

.header-sticky {
  position: fixed !important;
  left: 0;
  margin: auto;
  top: 0;
  width: 100%;
  z-index: 99;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running headerSlideDown;
  animation: 500ms ease-in-out 0s normal none 1 running headerSlideDown;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 6px 0 rgba(19, 19, 22, 0.08);
}
.header-sticky.cu-header-blur::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(40px);
  z-index: -1;
}
.header-sticky .cu-header-fs-top {
  display: none;
}
.header-sticky .cu-header-top {
  display: none;
}
.header-sticky .cu-header-main {
  padding: 5px 0px;
  border-bottom: none;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .header-sticky .cu-header-main {
    padding: 15px 0;
  }
}
.header-sticky.cu-header-cw-wrap .cu-main-menu > nav > ul > li > a {
  padding: 15px 0;
}

.cu-header-unvisable {
  position: fixed;
  top: -100%;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 99;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 6px 0 rgba(19, 19, 22, 0.08);
  visibility: hidden;
  opacity: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .cu-header-unvisable .cu-header-bottom {
    padding: 15px 0;
  }
}
.cu-header-unvisable.header-sticky {
  top: 0;
  visibility: visible;
  opacity: 1;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running headerSlideDown;
  animation: 500ms ease-in-out 0s normal none 1 running headerSlideDown;
}
.cu-header-unvisable.header-sticky.cu-header-gc-wrap .cu-header-bottom::before {
  display: none;
}
.cu-header-unvisable.header-sticky.cu-header-et-wrap .cu-header-bottom {
  border-bottom: none;
}

/*=============================
    20. hero
===============================*/
.cu-hero-slider-item {
  height: 600px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-hero-slider-item {
    min-height: 850px;
  }
}
.cu-hero-slider-item.item-one-bg {
  background: #F2F2F2;
}
.cu-hero-slider-item.item-two-bg {
  background: #DEF0F4;
}
.cu-hero-slider-item.item-three-bg {
  background: #F2EDED;
}
.cu-hero-slider-active .swiper-slide-active .cu-hero-bigtext {
  animation-name: fadeInUp;
  animation-fill-mode: both;
}
.cu-hero-slider-active .swiper-slide-active .cu-hero-subtittle {
  animation-name: fadeInUp;
  animation-fill-mode: both;
}
.cu-hero-slider-active .swiper-slide-active .cu-hero-tittle {
  animation-name: fadeInUp;
  animation-fill-mode: both;
}
.cu-hero-slider-active .swiper-slide-active .cu-hero-btn {
  animation-name: fadeInUp;
  animation-fill-mode: both;
}
.cu-hero-slider-active .swiper-slide-active .cu-hero-thumb img {
  animation-name: fadeInRight;
  animation-fill-mode: both;
}
.cu-hero-slider-active .swiper-slide-active .cu-hero-et-thumb-shape {
  -webkit-transform: translateY(-50%) scale(1);
  -moz-transform: translateY(-50%) scale(1);
  -ms-transform: translateY(-50%) scale(1);
  -o-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
  transition-delay: 0.9s;
  opacity: 1;
}
.cu-hero-slider-dot {
  position: absolute;
  z-index: 2;
  left: auto !important;
  right: 13% !important;
  top: 50% !important;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 8px;
  bottom: auto !important;
}
@media only screen and (min-width: 1700px) and (max-width: 1800px), only screen and (min-width: 1600px) and (max-width: 1700px) {
  .cu-hero-slider-dot {
    right: 8% !important;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .cu-hero-slider-dot {
    right: 2% !important;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-hero-slider-dot {
    top: auto !important;
    bottom: 30px !important;
    transform: inherit;
    right: auto !important;
    display: block;
    text-align: center;
  }
}
.cu-hero-slider-dot span {
  width: 10px;
  height: 10px;
  background: none;
  border: 1px solid var(--cu-common-black);
  opacity: 1;
  transition: all 0.4s ease;
}
.cu-hero-slider-dot span.swiper-pagination-bullet-active {
  background: var(--cu-theme-primary);
  border-color: var(--cu-theme-primary);
}
.cu-hero-btn {
  animation-delay: 0.7s;
  animation-duration: 1s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-hero-thumb {
    margin-right: 0;
  }
}
.cu-hero-thumb img {
  animation-delay: 0.9s;
  animation-duration: 1s;
  z-index: 3;
}
.cu-hero-content {
  padding-top: 180px;
  padding-bottom: 180px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-hero-content {
    padding-bottom: 50px;
  }
}
@media (max-width: 575px) {
  .cu-hero-content {
    padding-top: 130px;
  }
}
.cu-hero-subtittle {
  font-weight: 500;
  font-size: 18px;
  color: var(--cu-theme-primary);
  animation-delay: 0.3s;
  animation-duration: 1s;
}
.cu-hero-bigtext {
  font-family: var(--cu-ff-mrs);
  font-weight: 400;
  font-size: 280px;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  color: var(--cu-common-white);
  position: absolute;
  top: 32px;
  left: -110px;
  z-index: -1;
  animation-delay: 0.4s;
  animation-duration: 1s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .cu-hero-bigtext {
    font-size: 200px;
  }
}
@media (max-width: 575px) {
  .cu-hero-bigtext {
    font-size: 130px;
    left: -20px;
  }
}
.cu-hero-tittle {
  font-size: 60px;
  line-height: 108%;
  letter-spacing: -0.02em;
  animation-delay: 0.5s;
  animation-duration: 1s;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .cu-hero-tittle {
    font-size: 56px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-hero-tittle {
    font-size: 48px;
  }
}
.cu-hero-sw-subtittle {
  font-weight: 500;
  font-size: 18px;
  color: var(--cu-common-white);
  display: inline-block;
  margin-bottom: 11px;
}
.cu-hero-sw-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cu-hero-sw-title {
  font-weight: 600;
  font-size: 60px;
  line-height: 108%;
  letter-spacing: -0.02em;
  color: var(--cu-common-white);
}
@media (max-width: 575px) {
  .cu-hero-sw-title {
    font-size: 35px;
  }
}
.cu-hero-sw-content {
  position: relative;
  z-index: 1;
  padding-top: 240px;
  padding-bottom: 245px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-hero-sw-content {
    padding-top: 170px;
    padding-bottom: 175px;
  }
}
@media (max-width: 575px) {
  .cu-hero-sw-content {
    padding-top: 120px;
    padding-bottom: 175px;
  }
}
.cu-hero-sw-bigtittle {
  font-family: var(--cu-ff-mrs);
  font-weight: 400;
  font-size: 280px;
  letter-spacing: -0.02em;
  color: var(--cu-common-white);
  position: absolute;
  bottom: -104px;
  right: 0;
  z-index: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-hero-sw-bigtittle {
    font-size: 180px;
    bottom: -60px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-hero-sw-bigtittle {
    display: none;
  }
}
.cu-hero-sw-slider-main .swiper-pagination {
  bottom: 64px;
  left: 15%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: auto;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-hero-sw-slider-main .swiper-pagination {
    left: 10%;
  }
}
@media (max-width: 575px) {
  .cu-hero-sw-slider-main .swiper-pagination {
    left: 50%;
  }
}
.cu-hero-sw-slider-main .swiper-pagination-bullet {
  background: transparent;
  margin: 0 10px !important;
}
.cu-hero-sw-slider-main .path {
  display: none;
}
.cu-hero-sw-slider-main .swiper-pagination-bullet-active .path {
  display: inline-block !important;
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
  -webkit-animation: dash linear 10s;
  animation: dash linear 10s;
  -webkit-animation-iteration-count: unset;
  animation-iteration-count: unset;
}
.cu-hero-sw-slider-main .swiper-slide-active .tp-portfolio-slicer-category {
  transform: translateX(0px);
}
.cu-hero-sw-slider-main .swiper-slide-active .tp-portfolio-slicer-title {
  transform: translateX(0px);
}
.cu-hero-fs-shape {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 29%;
}
.cu-hero-fs-social {
  display: flex;
  gap: 25px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 60px;
  writing-mode: sideways-lr;
  z-index: 4;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-hero-fs-social {
    right: 20px;
  }
}
@media (max-width: 575px) {
  .cu-hero-fs-social {
    display: none;
  }
}
.cu-hero-fs-social span {
  font-weight: 500;
  font-size: 16px;
  color: var(--cu-grey-1);
}
.cu-hero-fs-social a {
  font-weight: 500;
  font-size: 16px;
  color: var(--cu-grey-1);
}
.cu-hero-fs-social a:hover {
  color: var(--cu-common-black);
}
.cu-hero-fs-wrap .cu-hero-bigtext {
  font-family: var(--cu-ff-gochi);
  font-weight: 400;
  font-size: 290px;
  letter-spacing: -0.02em;
  color: rgba(0, 0, 0, 0.04);
  top: 114px;
  left: -120px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .cu-hero-fs-wrap .cu-hero-bigtext {
    font-size: 240px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .cu-hero-fs-wrap .cu-hero-bigtext {
    font-size: 200px;
  }
}
@media (max-width: 575px) {
  .cu-hero-fs-wrap .cu-hero-bigtext {
    font-size: 120px;
    left: 0;
  }
}
.cu-hero-fs-wrap .cu-hero-subtittle {
  font-weight: 400;
  font-size: 16px;
  color: var(--cu-grey-1);
}
.cu-hero-fs-wrap .cu-hero-tittle {
  font-weight: 500;
  font-size: 120px;
  line-height: 92%;
  letter-spacing: -0.02em;
  color: var(--cu-common-black);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-hero-fs-wrap .cu-hero-tittle {
    font-size: 90px;
  }
}
@media (max-width: 575px) {
  .cu-hero-fs-wrap .cu-hero-tittle {
    font-size: 60px;
  }
}
.cu-hero-fs-wrap .cu-hero-content {
  padding-top: 230px;
  padding-bottom: 238px;
  position: relative;
  z-index: 3;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-hero-fs-wrap .cu-hero-content {
    padding-top: 180px;
    padding-bottom: 188px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-hero-fs-wrap .cu-hero-content {
    padding-top: 150px;
    padding-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .cu-hero-fs-wrap .cu-hero-content {
    padding-top: 120px;
  }
}
.cu-hero-fs-wrap .cu-hero-slider-item {
  height: 790px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .cu-hero-fs-wrap .cu-hero-slider-item {
    height: 680px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cu-hero-fs-wrap .cu-hero-slider-item {
    height: 625px;
    min-height: 625px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cu-hero-fs-wrap .cu-hero-slider-item {
    height: 1000px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .cu-hero-fs-wrap .cu-hero-slider-item {
    height: 920px;
  }
}
@media (max-width: 575px) {
  .cu-hero-fs-wrap .cu-hero-slider-item {
    height: 675px;
    min-height: 675px;
  }
}
.cu-hero-fs-wrap .cu-hero-slider-dot {
  right: 0 !important;
  left: 70px !important;
  top: 50% !important;
  align-items: self-start;
  width: auto;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-hero-fs-wrap .cu-hero-slider-dot {
    top: 86% !important;
    flex-direction: row;
    left: 0 !important;
    justify-content: center;
  }
}
.cu-hero-fs-wrap .cu-hero-slider-dot span.swiper-pagination-bullet-active {
  background: var(--cu-common-black);
  border-color: var(--cu-common-black);
}
.cu-hero-fs-wrap .cu-hero-thumb {
  margin-right: -120px;
  position: relative;
  z-index: 4;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-hero-fs-wrap .cu-hero-thumb {
    margin-right: 0;
  }
}
.cu-hero-jl-title {
  font-weight: 500;
  font-size: 100px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--cu-common-white);
  position: absolute;
  bottom: 105px;
  left: 80px;
  margin-bottom: 0;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .cu-hero-jl-title {
    font-size: 70px;
  }
}
@media (max-width: 575px) {
  .cu-hero-jl-title {
    font-size: 40px;
    bottom: 40px;
    left: 30px;
  }
}
.cu-hero-jl-title a:hover {
  opacity: 0.6;
  color: var(--cu-common-white);
}
.cu-hero-jl-sm-wrap {
  margin-left: -60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-hero-jl-sm-wrap {
    margin-left: 0;
    padding-bottom: 40px;
  }
}
.cu-hero-jl-sm-thumb {
  padding-left: 60px;
  background: var(--cu-common-green);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-hero-jl-sm-thumb {
    padding-left: 0;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .cu-hero-jl-sm-thumb img {
    width: 100%;
  }
}
.cu-hero-jl-sm-btn {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}
.cu-hero-jl-sm-cetagory {
  font-weight: 500;
  font-size: 18px;
  line-height: 111%;
  letter-spacing: 0.2em;
  color: var(--cu-common-white);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: sideways-lr;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-hero-jl-sm-cetagory {
    top: 40%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-hero-jl-sm-cetagory {
    display: none;
  }
}
.cu-hero-jl-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
}
.cu-hero-jl-text-slider {
  position: absolute;
  bottom: -78px;
  left: 0;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-hero-jl-text-slider {
    bottom: -30px;
  }
}
.cu-hero-jl-text-slider .swiper-slide {
  width: auto;
}
.cu-hero-jl-bigtext {
  font-weight: 500;
  font-size: 160px;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.04);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-hero-jl-bigtext {
    font-size: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-hero-jl-spacing {
    padding-bottom: 130px;
  }
}
.cu-hero-et-style .cu-hero-subtittle {
  color: rgba(255, 255, 255, 0.65);
}
.cu-hero-et-style .cu-hero-tittle {
  color: var(--cu-common-white);
}
.cu-hero-et-style .cu-hero-tittle span {
  z-index: 1;
}
.cu-hero-et-style .cu-hero-tittle svg {
  position: absolute;
  bottom: 15px;
  right: -10px;
  z-index: -1;
}
.cu-hero-et-style .cu-hero-slider-item {
  height: 520px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-hero-et-style .cu-hero-slider-item {
    height: 950px;
    min-height: 950px;
  }
}
.cu-hero-et-style .cu-hero-content {
  padding: 141px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-hero-et-style .cu-hero-content {
    padding-bottom: 50px;
  }
}
.cu-hero-et-style .cu-hero-slider-dot {
  left: auto !important;
  right: 93% !important;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px), only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .cu-hero-et-style .cu-hero-slider-dot {
    right: 98% !important;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-hero-et-style .cu-hero-slider-dot {
    top: auto !important;
    bottom: 30px !important;
    transform: inherit;
    right: auto !important;
    display: block;
    text-align: center;
  }
}
.cu-hero-et-style .cu-hero-slider-dot span {
  background: var(--cu-common-yellow-3);
  border: 1px solid var(--cu-common-yellow-3);
  opacity: 0.4;
}
.cu-hero-et-style .cu-hero-slider-dot span.swiper-pagination-bullet-active {
  opacity: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-hero-et-style .cu-hero-thumb {
    margin-right: 0;
  }
}
.cu-hero-et-shape {
  position: absolute;
  top: 13%;
  right: 13%;
  z-index: 2;
  -moz-animation: cuupdown 2.3s ease-in-out 2.3s forwards infinite alternate;
  -webkit-animation: cuupdown 2.3s ease-in-out 2.3s forwards infinite alternate;
  animation: cuupdown 2.3s ease-in-out 2.3s forwards infinite alternate;
}
.cu-hero-et-shape-2 {
  position: absolute;
  top: 13%;
  left: 7%;
  z-index: 2;
  -moz-animation: curotate 3s ease-in-out 3s forwards infinite alternate;
  -webkit-animation: curotate 3s ease-in-out 3s forwards infinite alternate;
  animation: curotate 3s ease-in-out 3s forwards infinite alternate;
}
.cu-hero-et-shape-3 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}
.cu-hero-et-shape-4 {
  position: absolute;
  bottom: 7%;
  right: 40%;
  z-index: 2;
  -moz-animation: curotate 3s ease-in-out 3s forwards infinite alternate;
  -webkit-animation: curotate 3s ease-in-out 3s forwards infinite alternate;
  animation: curotate 3s ease-in-out 3s forwards infinite alternate;
}
.cu-hero-et-thumb-shape {
  position: absolute;
  right: 10%;
  top: 50%;
  -webkit-transition: all 0.5s 0s ease-out;
  -moz-transition: all 0.5s 0s ease-out;
  -ms-transition: all 0.5s 0s ease-out;
  -o-transition: all 0.5s 0s ease-out;
  transition: all 0.5s 0s ease-out;
  -webkit-transform: translateY(-50%) scale(0.5);
  -moz-transform: translateY(-50%) scale(0.5);
  -ms-transform: translateY(-50%) scale(0.5);
  -o-transform: translateY(-50%) scale(0.5);
  transform: translateY(-50%) scale(0.5);
  opacity: 0;
  width: 464px;
  height: 464px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-hero-et-thumb-shape {
    right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-hero-et-thumb-shape {
    top: 65%;
    right: auto;
    left: 0;
  }
}
@media (max-width: 575px) {
  .cu-hero-et-thumb-shape {
    width: 100%;
  }
}
.cu-hero-wt-content {
  padding-top: 145px;
  padding-bottom: 115px;
}
@media (max-width: 575px) {
  .cu-hero-wt-content {
    padding-bottom: 0;
    padding-top: 110px;
  }
}
.cu-hero-wt-cutomer {
  padding-top: 230px;
  display: flex;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-hero-wt-cutomer {
    padding-top: 100px;
  }
}
.cu-hero-wt-cutomer h3 {
  font-weight: 500;
  font-size: 30px;
  color: var(--cu-common-white);
  margin-bottom: 0;
}
.cu-hero-wt-cutomer span {
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
}
.cu-hero-wt-thumb {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  width: 71%;
}
@media (max-width: 575px) {
  .cu-hero-wt-thumb {
    width: 100%;
    position: relative;
  }
}
.cu-hero-wt-overly {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(33, 49, 57, 0) 18.75%, #213139 100%);
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  z-index: 1;
}
.cu-hero-wt-video-thumb {
  width: 60px;
  height: 60px;
}
.cu-hero-wt-video-thumb img {
  border-radius: 100%;
}
.cu-hero-wt-video-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  text-align: center;
}
.cu-hero-wt-video-wrap {
  background: var(--cu-common-white);
  border-radius: 45px;
  width: 260px;
  height: 90px;
  padding: 15px;
  position: absolute;
  right: 140px;
  bottom: 280px;
  z-index: 2;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-hero-wt-video-wrap {
    right: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-hero-wt-video-wrap {
    position: relative;
    bottom: 0;
    margin-top: 40px;
    left: 0;
  }
}
.cu-hero-wt-video-wrap span {
  font-weight: 500;
  font-size: 18px;
  color: var(--cu-common-black-2);
  margin-left: 10px;
}
.cu-hero-gc-style {
  padding: 73px 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-hero-gc-style .cu-hero-content {
    padding: 45px 0;
  }
}
.cu-hero-gc-thumb {
  margin-right: -170px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-hero-gc-thumb {
    margin-right: 0;
  }
}
.cu-hero-ft-shape {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}
.cu-hero-ft-style .cu-hero-subtittle {
  color: var(--cu-common-black);
}
.cu-hero-ft-style .cu-hero-slider-dot span.swiper-pagination-bullet-active {
  background: var(--cu-common-night);
  border-color: var(--cu-common-night);
}
.cu-hero-ft-style .cu-hero-et-shape {
  right: 34%;
}
@media (max-width: 575px) {
  .cu-hero-ft-style .cu-hero-et-shape {
    top: 7%;
  }
}
.cu-hero-ft-style .cu-hero-sw-bigtittle {
  z-index: 2;
  font-family: var(--cu-ff-body);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: rgba(163, 56, 28, 0.06);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-hero-ft-style .cu-hero-slider-item {
    min-height: 950px;
  }
}
.cu-hero-shoes-title {
  font-weight: 500;
  font-size: 120px;
  line-height: 87%;
  letter-spacing: -0.03em;
  color: var(--cu-common-black);
  animation-delay: 0.4s;
  animation-duration: 1s;
  opacity: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cu-hero-shoes-title {
    font-size: 90px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cu-hero-shoes-title {
    font-size: 60px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .cu-hero-shoes-title {
    font-size: 55px;
  }
}
@media (max-width: 575px) {
  .cu-hero-shoes-title {
    font-size: 37px;
  }
}
.cu-hero-shoes-thumb {
  margin-top: -100px;
  animation-delay: 0.7s;
  animation-duration: 1s;
  opacity: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-hero-shoes-thumb {
    margin-top: 0;
  }
}
.cu-hero-shoes-thumb .cu-product-tooltip {
  color: var(--cu-common-black);
  background-color: var(--cu-common-white);
  visibility: visible;
  opacity: 1;
  right: 0;
  padding: 8px 15px;
  border-radius: 14px;
}
.cu-hero-shoes-thumb .cu-product-tooltip:after {
  position: absolute;
  content: "";
  width: 11px;
  height: 11px;
  background: var(--cu-common-white);
  border-radius: 20px;
  top: 8px;
  left: -24px;
  animation: animate-pulse-2 3s linear infinite;
}
.cu-hero-shoes-thumb .cu-product-tooltip::before {
  border-right: 8px solid var(--cu-common-white);
  border-left: 0;
  right: auto;
  left: -5px;
}
.cu-hero-shoes-thumb-slider-active {
  width: 480px;
  position: absolute;
  bottom: 80px;
  right: 80px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-hero-shoes-thumb-slider-active {
    right: 0;
    bottom: 30px;
  }
}
.cu-hero-shoes-thumb-slider-active .swiper-slide-active .cu-hero-shoes-sm-item::before {
  background: #D5E1A9;
}
.cu-hero-shoes-wrap {
  padding-top: 100px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cu-hero-shoes-wrap {
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-hero-shoes-wrap {
    padding-bottom: 170px;
  }
}
.cu-hero-shoes-sm-item {
  position: relative;
  z-index: 1;
  padding-bottom: 20px;
  width: 140px;
  height: 140px;
  cursor: pointer;
}
.cu-hero-shoes-sm-item::before {
  position: absolute;
  content: "";
  width: 120px;
  height: 120px;
  background: var(--cu-common-white);
  border-radius: 100px;
  z-index: -1;
  bottom: 0;
  right: 10px;
  transition: all 0.4s ease;
}
.cu-hero-shoes-slider-active .swiper-slide-active .cu-hero-shoes-thumb {
  animation-name: fadeInRight;
  animation-fill-mode: both;
  opacity: 1;
}
.cu-hero-shoes-slider-active .swiper-slide-active .cu-hero-shoes-title {
  animation-name: fadeInUp;
  animation-fill-mode: both;
  opacity: 1;
}
.cu-hero-shoes-clients {
  position: absolute;
  bottom: 240px;
  left: 13%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-hero-shoes-clients {
    left: 5%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-hero-shoes-clients {
    bottom: 60px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-hero-shoes-clients {
    bottom: 60%;
  }
}
.cu-hero-shoes-clients h2 {
  font-weight: 500;
  font-size: 50px;
  color: var(--cu-common-black);
  margin-bottom: 0;
  line-height: 1;
}
.cu-hero-shoes-clients span {
  font-weight: 400;
  font-size: 16px;
  color: var(--cu-common-black);
}

/*=============================
    15. feature
===============================*/
.cu-feature-icon {
  width: 60px;
  height: 60px;
  background: var(--cu-grey-2);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  color: var(--cu-theme-primary);
  transition: all 0.4s ease;
  flex: 0 0 auto;
}
.cu-feature-item:hover .cu-feature-icon {
  background: var(--cu-theme-primary);
  color: var(--cu-common-white);
}
.cu-feature-content span {
  font-weight: 500;
  font-size: 18px;
  line-height: 111%;
  letter-spacing: -0.02em;
  color: var(--cu-common-black);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-feature-content span {
    font-size: 16px;
  }
}
.cu-feature-content p {
  color: var(--cu-grey-1);
}
.cu-feature-cetagory-title {
  font-weight: 500;
  font-size: 16px;
}
.cu-feature-cetagory-title a:hover {
  color: var(--cu-theme-primary);
}
.cu-feature-cetagory-item:hover .cu-feature-cetagory-thumb img {
  transform: scale(1.1) rotate(-2deg);
}
.cu-feature-cetagory-thumb {
  border-radius: 100px;
  overflow: hidden;
}
.cu-feature-cetagory-thumb img {
  border-radius: 100px;
  transition: all 0.4s ease;
}
.cu-feature-cetagory-navigation span {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #F2F2F2;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  border-radius: 50px;
  color: var(--cu-common-black);
}
.cu-feature-cetagory-navigation span:hover {
  background: var(--cu-theme-primary);
  color: var(--cu-common-white);
}
.cu-feature-fs-item {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: all 0.4s ease;
}
.cu-feature-fs-item:hover {
  background: #f7f7f7;
  border-color: #f7f7f7;
}
.cu-feature-fs-item:hover .cu-feature-icon {
  background: var(--cu-common-white);
  color: var(--cu-common-black);
}
.cu-feature-fs-item .cu-feature-icon {
  background: var(--cu-grey-2);
  color: var(--cu-common-black);
  font-size: 20px;
}
.cu-feature-fs-product-item:hover .cu-feature-fs-product-btn {
  opacity: 1;
  visibility: visible;
}
.cu-feature-fs-product-item:hover .cu-feature-fs-product-btn span {
  transform: scale(1);
}
.cu-feature-fs-product-item:hover .cu-feature-cetagory-thumb::before {
  opacity: 0;
}
.cu-feature-fs-product-item .cu-feature-cetagory-thumb {
  border-radius: 100%;
}
.cu-feature-fs-product-item .cu-feature-cetagory-thumb::before {
  position: absolute;
  content: "";
  width: 80%;
  height: 80%;
  border: 1px solid var(--cu-common-white);
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  border-radius: 100%;
  margin: 0 auto;
  z-index: 1;
  transition: all 0.6s ease;
}
.cu-feature-fs-product-item .cu-feature-cetagory-thumb img {
  width: 100%;
}
.cu-feature-fs-product-item .cu-feature-cetagory-title {
  font-size: 24px;
}
.cu-feature-fs-product-item .cu-feature-cetagory-title a:hover {
  color: var(--cu-common-blue);
}
.cu-feature-fs-product-btn {
  width: 160px;
  height: 160px;
  border-radius: 100%;
  background: var(--cu-common-white);
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  line-height: 160px;
  opacity: 0;
  z-index: 2;
  visibility: hidden;
  transition: all 0.6s ease;
}
.cu-feature-fs-product-btn span {
  width: 60px;
  height: 60px;
  display: inline-block;
  background: var(--cu-common-blue);
  border-radius: 100px;
  line-height: 60px;
  transform: scale(0.8);
  transition: all 0.6s ease;
}
.cu-feature-product-jl-wrap .cu-feature-scrollbar {
  position: inherit !important;
  width: calc(100% - 500px);
  margin: auto;
  background-color: #EDEFF2;
  height: 2px;
  transition: all 0.4s ease;
  overflow: hidden;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .cu-feature-product-jl-wrap .cu-feature-scrollbar {
    width: calc(100% - 100px);
  }
}
@media (max-width: 575px) {
  .cu-feature-product-jl-wrap .cu-feature-scrollbar {
    width: 100%;
  }
}
.cu-feature-product-jl-wrap .cu-feature-scrollbar .cu-feature-product-jl-scrollbar-drag {
  background-color: var(--cu-common-black);
  height: 100%;
}
.cu-feature-jl-style .cu-feature-icon {
  color: var(--cu-common-green);
}
.cu-feature-jl-style .cu-feature-item:hover .cu-feature-icon {
  background: var(--cu-common-green);
  color: var(--cu-common-white);
}
.cu-feature-et-style .cu-feature-icon {
  color: var(--cu-common-blue-2);
}
.cu-feature-et-style .cu-feature-item:hover .cu-feature-icon {
  background: var(--cu-common-blue-2);
  color: var(--cu-common-white);
}
.cu-feature-wt-item:hover .cu-feature-wt-icon {
  background: var(--cu-common-black-2);
  color: var(--cu-common-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-feature-wt-item p br {
    display: none;
  }
}
.cu-feature-wt-icon {
  background: #f1f2f4;
  width: 100px;
  height: 100px;
  display: inline-block;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--cu-common-black-2);
  transition: all 0.4s ease;
}
.cu-feature-wt-title {
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--cu-common-black-2);
}
.cu-feature-gc-style .cu-feature-icon {
  background: #f5f7ea;
}
.cu-feature-gc-style .cu-feature-fs-item:hover {
  background: var(--cu-common-green-2);
  border-color: var(--cu-common-green-2);
}
.cu-feature-gc-style .cu-feature-fs-item:hover .cu-feature-content span {
  color: var(--cu-common-white);
}
.cu-feature-gc-style .cu-feature-fs-item:hover .cu-feature-content p {
  color: var(--cu-common-white);
}
.cu-feature-ft-style .cu-feature-icon {
  background: #f1f1f1;
}
.cu-feature-ft-style .cu-feature-fs-item:hover .cu-feature-icon {
  background: var(--cu-common-night);
  color: var(--cu-common-white);
}
.cu-feature-shoes-style .cu-feature-icon {
  background: #e8e8e8;
  color: var(--cu-common-black);
}
.cu-feature-shoes-style .cu-feature-item:hover .cu-feature-icon {
  background: var(--cu-common-black);
}

/*=============================
    30. product
===============================*/
.cu-product-tittle {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.cu-product-tittle a:hover {
  color: var(--cu-theme-primary);
}
.cu-product-item:hover .cu-product-btn a {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.cu-product-item:hover .cu-product-action {
  transform: translateX(-30px);
  visibility: visible;
  opacity: 1;
}
.cu-product-item:hover .cu-product-size {
  opacity: 1;
  visibility: visible;
  bottom: 0;
}
.cu-product-thumb:hover .image-product {
  opacity: 0;
  visibility: hidden;
}
.cu-product-thumb:hover .image-hover {
  display: block;
  z-index: 1;
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cu-product-thumb img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  transition-duration: 700ms;
}
.cu-product-thumb .image-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
}
.cu-product-btn a {
  font-weight: 500;
  font-size: 16px;
  padding: 10px 20px;
  background: var(--cu-common-black);
  color: var(--cu-common-white);
  display: block;
  text-align: center;
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  transform: translateY(20px);
  right: 20px;
}
.cu-product-btn a:hover {
  color: var(--cu-common-black);
  background: var(--cu-common-white);
  box-shadow: 0 1px 3px 0 rgba(1, 15, 28, 0.14);
}
.cu-product-tooltip {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 100%;
  font-weight: 500;
  font-size: 12px;
  color: var(--cu-common-white);
  background-color: var(--cu-common-black);
  display: inline-block;
  width: max-content;
  line-height: 1;
  padding: 4px 6px;
  border-radius: 4px;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24), -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24) 0.3s 0s ease-out;
  -moz-transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24), -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24) 0.3s 0s ease-out;
  -ms-transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24), -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24) 0.3s 0s ease-out;
  -o-transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24), -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24) 0.3s 0s ease-out;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24), -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24) 0.3s 0s ease-out;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.cu-product-tooltip::before {
  position: absolute;
  content: "";
  right: -4px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-left: 8px solid var(--cu-common-black);
  border-bottom: 8px solid transparent;
}
.cu-product-tooltip-right {
  left: 100%;
  right: auto;
}
.cu-product-tooltip-right::before {
  left: -4px;
  right: auto;
  border-left: 0;
  border-right: 8px solid var(--cu-common-black);
}
.cu-product-action {
  position: absolute;
  right: 0;
  transform: translateX(0);
  top: 30px;
  z-index: 3;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.cu-product-action-item {
  box-shadow: 0 1px 3px 0 rgba(1, 15, 28, 0.14);
}
.cu-product-action-btn {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 42px;
  text-align: center;
  font-size: 18px;
  color: var(--cu-common-black);
  background-color: var(--cu-common-white);
  border: 1px solid #eaebed;
  border-bottom: 0;
}
.cu-product-action-btn:last-child {
  border-bottom: 1px solid #eaebed;
}
.cu-product-action-btn svg {
  transform: translateY(-2px);
}
.cu-product-action-btn:hover {
  color: var(--cu-common-white);
  background-color: var(--cu-common-black);
  border-color: var(--cu-common-black);
}
.cu-product-action-btn:hover .cu-product-tooltip {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateX(-8px) translateY(-50%);
  -moz-transform: translateX(-8px) translateY(-50%);
  -ms-transform: translateX(-8px) translateY(-50%);
  -o-transform: translateX(-8px) translateY(-50%);
  transform: translateX(-8px) translateY(-50%);
}
.cu-product-badge span {
  font-weight: 500;
  font-size: 14px;
  color: var(--cu-common-white);
  padding: 6px 15px;
  display: inline-block;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
  line-height: 1;
}
.cu-product-badge span.new {
  background: #fe4f28;
}
.cu-product-badge span.hot {
  background: #fd2d6c;
}
.cu-product-badge span.trending {
  background: #31b757;
}
.cu-product-tab-wrap ul li {
  position: relative;
}
.cu-product-tab-wrap ul li:not(:last-child) {
  padding-right: 20px;
  margin-right: 20px;
}
.cu-product-tab-wrap ul li:not(:last-child)::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50px;
  background: var(--cu-common-black);
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.cu-product-tab-wrap ul li button {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--cu-common-black);
  padding: 0;
  position: relative;
}
.cu-product-tab-wrap ul li button.active {
  color: var(--cu-theme-primary);
}
.cu-product-tab-wrap ul li button.active .cu-badge {
  visibility: visible;
  opacity: 1;
}
.cu-product-tab-wrap ul li button:hover {
  color: var(--cu-theme-primary);
}
.cu-product-tab-wrap ul li button:hover .cu-badge {
  visibility: visible;
  opacity: 1;
}
.cu-product-tab-wrap ul li button .cu-badge {
  font-weight: 500;
  font-size: 12px;
  text-align: center;
  color: var(--cu-common-white);
  border-radius: 4px;
  width: 30px;
  height: 20px;
  line-height: 20px;
  display: inline-block;
  background: var(--cu-theme-primary);
  position: absolute;
  top: -25px;
  left: 0;
  right: 0;
  margin: 0 auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.cu-product-tab-wrap ul li button .cu-badge svg {
  position: absolute;
  bottom: -4px;
  left: 7px;
}
.cu-product-tab-animetion {
  overflow: hidden;
}
.cu-product-tab-animetion .tab-content {
  position: relative;
}
.cu-product-tab-animetion .tab-pane {
  display: block;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
  transition-timing-function: ease-in;
  transition-duration: 0.2s;
}
.cu-product-tab-animetion .tab-pane.active {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  position: relative;
  z-index: 2;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  transition-timing-function: ease-out;
  transition-duration: 0.3s;
  transition-delay: 0.3s;
}
.cu-product-link {
  font-weight: 500;
  font-size: 16px;
  line-height: 87%;
  text-decoration: underline;
  color: var(--cu-common-black);
}
.cu-product-link:hover {
  color: var(--cu-theme-primary);
  text-decoration: underline;
}
.cu-product-color-mixer .list-color-product {
  display: flex;
  gap: 8.5px;
  margin-top: 2px;
  flex-wrap: wrap;
}
.cu-product-color-mixer .list-color-product .list-color-item {
  width: 22px;
  height: 22px;
  padding: 2px;
  border: solid 1px #e6e6e6;
  background-color: transparent;
  transition: all 0.4s ease;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cu-product-color-mixer .list-color-product .list-color-item .swatch-value {
  width: 14px;
  height: 14px;
  display: inline-block;
  border-radius: 50%;
  transition: all 0.4s ease;
}
.cu-product-color-mixer .list-color-product .list-color-item img {
  visibility: hidden;
  width: 11px;
  height: 11px;
  position: absolute;
}
.cu-product-color-mixer .list-color-product .list-color-item.active, .cu-product-color-mixer .list-color-product .list-color-item:hover {
  border-color: var(--cu-common-black);
}
.cu-product-color-mixer .list-color-product .list-color-item.active .swatch-value, .cu-product-color-mixer .list-color-product .list-color-item:hover .swatch-value {
  transform: scale(0.7);
}
.cu-product-color-mixer .list-color-product .list-color-item:hover .tooltip {
  opacity: 0.9;
  visibility: visible;
}
.cu-product-color-mixer .list-color-product .more {
  list-style: none;
}
.cu-product-color-mixer .list-color-product .more span {
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.02em;
  color: var(--cu-common-black);
  transform: translateY(-4px);
  display: inline-block;
}
.cu-product-color-mixer .list-color-product .tooltip {
  z-index: 202;
  opacity: 0;
  visibility: hidden;
  display: block;
  position: absolute;
  top: 100%;
  margin-top: 8px;
  border-radius: 2px;
  white-space: nowrap;
  background-color: var(--cu-common-black);
  color: var(--cu-common-white);
  font-weight: 400;
  font-size: 12px;
  line-height: 12px;
  padding: 3px 10px 6px;
  max-width: 250px;
  width: max-content;
  text-transform: capitalize;
  transition: transform 0.4s ease 0.2s, opacity 0.4s ease 0.2s;
}
.cu-product-color-mixer .list-color-product .tooltip::before {
  content: "";
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  top: -4px;
  position: absolute;
  background: var(--cu-common-black);
  width: 8px;
  height: 8px;
  z-index: 100;
}
.cu-product-color-mixer .list-color-product .hover-tooltip {
  position: relative;
}
.cu-product-color-mixer .list-color-product .hover-tooltip:hover .tooltip {
  opacity: 0.9;
  visibility: visible;
}
.cu-product-color-mixer .list-color-product .hover-tooltip.center .tooltip {
  left: 50%;
  transform: translateX(-50%);
}
.cu-product-size {
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.9);
  padding: 20px 10px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.cu-product-size-tittle {
  font-weight: 500;
  font-size: 16px;
  color: var(--cu-common-black);
}
.cu-product-size .size-list span {
  border: 1px solid #d9dbd9;
  border-radius: 4px;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
  display: inline-block;
  letter-spacing: 0.02em;
  color: var(--cu-common-black);
  margin: 0 2px;
  transition: all 0.4s ease;
  cursor: pointer;
}
.cu-product-size .size-list span.active, .cu-product-size .size-list span:hover {
  border-color: var(--cu-common-black);
}
.cu-product-price.old-price {
  text-decoration-line: line-through;
  color: var(--cu-grey-3);
  margin-right: 8px;
}
.cu-product-ratings {
  display: flex;
  gap: 3px;
}
.cu-product-ratings span {
  color: #FFB21D;
  font-size: 13px;
}
.cu-product-cw-tab-wrap ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cu-product-cw-tab-wrap ul li button {
  font-weight: 500;
  font-size: 16px;
  color: var(--cu-common-black);
  border: 1px solid var(--cu-border-2);
  padding: 4px 14px;
}
.cu-product-cw-tab-wrap ul li button:hover {
  background: var(--cu-common-yellow-2);
  border-color: var(--cu-common-yellow-2);
  color: var(--cu-common-white);
}
.cu-product-cw-tab-wrap ul li button.active {
  background: var(--cu-common-yellow-2);
  border-color: var(--cu-common-yellow-2);
  color: var(--cu-common-white);
}
@media (max-width: 575px) {
  .cu-product-cw-tab-content {
    padding-left: 0;
    padding-right: 0;
  }
}
.cu-product-cw-item:hover .cu-product-action {
  transform: translateX(30px);
}
.cu-product-cw-item .cu-product-action-item {
  box-shadow: none;
  gap: 6px;
}
.cu-product-cw-item .cu-product-action-btn {
  border-radius: 100%;
  background: var(--cu-common-white);
  box-shadow: 0 1px 2px 0 rgba(1, 15, 28, 0.2);
}
.cu-product-cw-item .cu-product-action-btn:hover {
  background: var(--cu-common-black);
  color: var(--cu-common-white);
}
.cu-product-cw-item .cu-product-action-btn:hover .cu-product-tooltip {
  -webkit-transform: translateX(8px) translateY(-50%);
  -moz-transform: translateX(8px) translateY(-50%);
  -ms-transform: translateX(8px) translateY(-50%);
  -o-transform: translateX(8px) translateY(-50%);
  transform: translateX(8px) translateY(-50%);
}
.cu-product-cw-item .cu-product-tooltip {
  right: auto;
  left: 100%;
}
.cu-product-cw-item .cu-product-tooltip::before {
  right: auto;
  left: -4px;
  border-left: 0;
  border-right: 8px solid var(--cu-common-black);
}
.cu-product-cw-item .cu-product-action {
  right: auto;
  left: 0;
}
.cu-product-cw-item .cu-product-btn a:hover {
  background: var(--cu-common-yellow-2);
  color: var(--cu-common-white);
}
.cu-product-cw-item .cu-product-tittle a:hover {
  color: var(--cu-common-yellow-2);
}
.cu-product-cw-pick-banner {
  height: 100%;
}
.cu-product-cw-pick-banner img {
  height: 100%;
  object-fit: cover;
}
.cu-product-cw-pick-banner-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}
.cu-product-cw-pick-banner-title {
  color: var(--cu-common-white);
  font-weight: 500;
  font-size: 50px;
  letter-spacing: -0.02em;
}
@media (max-width: 575px) {
  .cu-product-cw-pick-banner-title {
    font-size: 35px;
  }
}
.cu-product-sf-item .cu-product-badge span {
  left: auto;
  right: 20px;
  border-radius: 100px;
}
.cu-product-sf-item .cu-product-badge span.discount {
  background: var(--cu-common-blue);
}
.cu-product-sf-item .cu-product-tittle a:hover {
  color: var(--cu-common-blue);
}
.cu-product-sf-item .cu-product-btn a:hover {
  background: var(--cu-common-blue);
}
.cu-product-sf-tranding-banner {
  height: 100%;
  overflow: hidden;
}
.cu-product-sf-tranding-banner:hover img {
  transform: scale(1.1);
}
.cu-product-sf-tranding-banner img {
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
}
.cu-product-sf-tranding-banner .cu-product-cw-pick-banner-title {
  font-size: 30px;
}
@media (max-width: 575px) {
  .cu-product-sf-tranding-banner .cu-product-cw-pick-banner-title br {
    display: none;
  }
}
.cu-product-sf-tranding-banner .cu-product-cw-pick-banner-content {
  top: auto;
  transform: inherit;
  bottom: 50px;
  left: 50px;
  right: auto;
  margin: 0;
  text-align: left;
}
@media (max-width: 575px) {
  .cu-product-sf-tranding-banner .cu-product-cw-pick-banner-content {
    bottom: 30px;
    left: 30px;
  }
}
.cu-product-sf-feature-item {
  background: var(--cu-common-white);
  padding: 30px 50px 30px 50px;
}
.cu-product-sf-feature-item:hover .cu-product-sf-feature-thumb img {
  transform: scale(1.1);
}
.cu-product-sf-feature-title {
  font-weight: 500;
  font-size: 26px;
  line-height: 123%;
  letter-spacing: -0.02em;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-product-sf-feature-title {
    font-size: 24px;
  }
}
.cu-product-sf-feature-content {
  padding: 64px 0px;
}
.cu-product-sf-feature-content .cu-product-ratings span {
  font-size: 14px;
}
.cu-product-sf-feature-content .cu-btn {
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.cu-product-sf-feature-price span {
  font-weight: 500;
  font-size: 18px;
  color: var(--cu-common-black);
}
.cu-product-sf-feature-price .old-price {
  text-decoration-line: line-through;
  color: var(--cu-grey-3);
  font-size: 14px;
}
.cu-product-sf-feature-bigtext {
  font-weight: 500;
  font-size: 160px;
  margin-bottom: 0;
  letter-spacing: -0.02em;
  color: rgba(0, 0, 0, 0.08);
  position: absolute;
  bottom: -54px;
  left: 0;
  right: 0;
  text-align: center;
  line-height: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cu-product-sf-feature-bigtext {
    font-size: 127px;
    bottom: -30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cu-product-sf-feature-bigtext {
    font-size: 90px;
    bottom: -10px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .cu-product-sf-feature-bigtext {
    font-size: 60px;
    bottom: -10px;
  }
}
@media (max-width: 575px) {
  .cu-product-sf-feature-bigtext {
    font-size: 48px;
    bottom: -4px;
  }
}
.cu-product-sf-feature-thumb img {
  transition: all 0.6s ease;
}
.cu-product-sf-feature-slider-active {
  margin-right: -500px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-product-sf-feature-slider-active {
    margin-right: -300px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-product-sf-feature-slider-active {
    margin-right: 0;
  }
}
.cu-product-jl-item:hover .cu-product-jl-thumb img {
  transform: scale(1.1);
}
.cu-product-jl-item:hover .cu-product-action {
  transform: translateX(30px);
  visibility: visible;
  opacity: 1;
}
.cu-product-jl-item .cu-product-action {
  right: auto;
  left: 0;
  top: auto;
  bottom: 30px;
}
.cu-product-jl-item .cu-product-action-item {
  gap: 6px;
}
.cu-product-jl-item .cu-product-action-btn {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  border: none;
}
.cu-product-jl-item .cu-product-tooltip {
  right: auto;
  left: 100%;
  padding: 14px 18px;
  border-radius: 0;
}
.cu-product-jl-item .cu-product-action-btn:hover .cu-product-tooltip {
  -webkit-transform: translateX(8px) translateY(-50%);
  -moz-transform: translateX(8px) translateY(-50%);
  -ms-transform: translateX(8px) translateY(-50%);
  -o-transform: translateX(8px) translateY(-50%);
  transform: translateX(8px) translateY(-50%);
}
.cu-product-jl-item .cu-product-tooltip::before {
  display: none;
}
.cu-product-jl-item .cu-product-tittle a:hover {
  color: var(--cu-common-green);
}
.cu-product-jl-item .cu-product-price.new-price {
  color: var(--cu-common-black);
}
.cu-product-jl-item .cu-product-ratings {
  margin-bottom: 5px;
}
.cu-product-jl-thumb img {
  transition: all 0.7s ease;
}
.cu-product-jl-trending-wrap {
  margin-left: -70px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-product-jl-trending-wrap {
    margin-left: 0;
  }
}
.cu-product-jl-trending-bigtitle {
  font-weight: 500;
  font-size: 160px;
  line-height: 30%;
  letter-spacing: -0.02em;
  color: var(--cu-common-white);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-product-jl-trending-bigtitle {
    font-size: 100px;
    line-height: 0.6;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .cu-product-jl-trending-bigtitle {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .cu-product-jl-trending-bigtitle {
    font-size: 48px;
  }
}
.cu-product-jl-trending-banner img {
  height: 100%;
  object-fit: cover;
}
.cu-product-cetagory-item {
  padding: 40px 20px 12px 20px;
}
.cu-product-cetagory-item:hover .cu-product-cetagory-btn {
  opacity: 1;
  visibility: visible;
}
.cu-product-cetagory-item:hover .cu-product-cetagory-content span {
  opacity: 0;
}
.cu-product-cetagory-item:hover .cu-product-cetagory-thumb img {
  transform: scale(1.05);
}
.cu-product-cetagory-btn {
  padding: 4px 16px;
  background: var(--cu-common-black);
  color: var(--cu-common-white);
  position: absolute;
  right: 0;
  bottom: 5px;
  opacity: 0;
  visibility: hidden;
}
.cu-product-cetagory-btn:hover {
  border-color: var(--cu-common-black);
  background: transparent;
  color: var(--cu-common-black);
}
.cu-product-cetagory-content h5 {
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.cu-product-cetagory-content span {
  font-size: 20px;
  color: var(--cu-grey-3);
  transition: 0.4s ease;
}
.cu-product-cetagory-thumb img {
  transition: all 0.4s ease;
}
.cu-product-et-style .cu-product-jl-item:hover .cu-product-jl-thumb {
  border: 1px solid #CC1414;
}
.cu-product-et-style .cu-product-jl-thumb {
  border: 1px solid rgba(34, 34, 34, 0.15);
  transition: all 0.4s ease;
}
.cu-product-et-style .cu-product-tittle a:hover {
  color: var(--cu-common-blue-2);
}
.cu-product-et-btn {
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s ease;
}
.cu-product-et-btn a {
  background: var(--cu-common-blue-2);
  color: var(--cu-common-white);
  border-color: var(--cu-common-blue-2);
}
.cu-product-et-feature-style .cu-product-item {
  border: 1px solid rgba(34, 34, 34, 0.1);
  background: var(--cu-common-white);
  transition: all 0.6s ease;
  height: 88%;
  overflow: hidden;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-product-et-feature-style .cu-product-item {
    height: 91%;
  }
}
.cu-product-et-feature-style .cu-product-item:hover {
  box-shadow: 0 0 40px 0 rgba(23, 27, 40, 0.1);
  border-color: var(--cu-common-white);
  height: 100%;
}
.cu-product-et-feature-style .cu-product-item:hover .cu-product-thumb img {
  transform: scale(1.06);
}
.cu-product-et-feature-style .cu-product-item:hover .cu-product-et-btn {
  opacity: 1;
  visibility: visible;
}
.cu-product-et-feature-style .cu-product-thumb {
  border-bottom: 1px solid rgba(34, 34, 34, 0.1);
}
.cu-product-et-feature-style .cu-product-price.new-price {
  color: #CC1414;
  font-weight: 500;
}
.cu-product-et-feature-style .cu-product-content {
  padding: 0px 30px 30px 30px;
}
.cu-product-et-feature-style .cu-product-tittle a:hover {
  color: var(--cu-common-blue-2);
}
.cu-product-et-feature-style .cu-product-thumb {
  overflow: hidden;
}
.cu-product-et-feature-style .cu-product-thumb img {
  transition: all 0.6s ease;
}
.cu-product-et-selling-thumb {
  padding-left: 30px;
}
@media (max-width: 575px) {
  .cu-product-et-selling-thumb {
    padding-top: 30px;
  }
}
.cu-product-et-selling-thumb img {
  transition: all 0.6s ease;
}
.cu-product-et-selling-item {
  background: var(--cu-common-white);
  height: 100%;
}
.cu-product-et-selling-item:hover .cu-product-et-selling-thumb img {
  transform: scale(1.06);
}
.cu-product-et-selling-item .cu-product-tittle {
  color: var(--cu-common-blue-2);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-product-et-selling-item .cu-product-tittle br {
    display: none;
  }
}
.cu-product-et-selling-item .cu-product-tittle a:hover {
  color: var(--cu-common-black);
}
.cu-product-et-selling-content {
  padding: 40px 20px 40px 0px;
}
@media (max-width: 575px) {
  .cu-product-et-selling-content {
    padding: 20px 20px 30px 30px;
  }
}
.cu-product-et-recommend-banner {
  margin-right: -20px;
  height: 100%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-product-et-recommend-banner {
    margin-right: 0;
  }
}
.cu-product-et-recommend-banner img {
  height: 100%;
  object-fit: cover;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-product-et-recommend-banner img {
    width: 100%;
  }
}
.cu-product-et-recommend-banner .cu-product-cw-pick-banner-content {
  top: 50px;
  transform: none;
  left: 60px;
  right: auto;
  text-align: left;
}
@media (max-width: 575px) {
  .cu-product-et-recommend-banner .cu-product-cw-pick-banner-content {
    left: 30px;
    top: 30px;
  }
}
.cu-product-et-recommend-banner .cu-product-cw-pick-banner-title {
  font-size: 40px;
  line-height: 105%;
  letter-spacing: -0.02em;
}
.cu-product-et-recommend-banner .cu-btn {
  background: var(--cu-common-yellow-3);
  border-color: var(--cu-common-yellow-3);
}
.cu-product-et-recommend-banner .cu-btn:hover {
  background: var(--cu-common-white);
  color: var(--cu-common-black);
  border-color: var(--cu-common-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-product-et-recommend-wrap {
    margin-left: 0;
  }
}
.cu-product-wt-btn {
  position: absolute;
  bottom: 25px;
  left: 0;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  transform: translateY(25px);
  right: 0;
  text-align: center;
}
.cu-product-wt-style .cu-product-item {
  border: 1px solid rgba(31, 50, 58, 0.15);
  margin-top: -1px;
  margin-right: -1px;
  height: 100%;
}
.cu-product-wt-style .cu-product-item:hover .cu-product-wt-btn {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.cu-product-wt-style .cu-product-tittle {
  color: var(--cu-common-black-2);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-product-wt-style .cu-product-tittle {
    font-size: 17px;
  }
  .cu-product-wt-style .cu-product-tittle br {
    display: none;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-product-wt-style .cu-product-tittle {
    font-size: 19px;
  }
}
.cu-product-wt-style .cu-product-content {
  padding: 32px 40px 30px 40px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-product-wt-style .cu-product-content {
    padding: 32px 20px 30px 20px;
  }
}
.cu-product-wt-style .cu-product-tittle a:hover {
  color: var(--cu-common-black);
}
.cu-product-wt-style .cu-product-action-btn:hover {
  background: var(--cu-common-black-2);
  border-color: var(--cu-common-black-2);
}
.cu-product-wt-style .cu-product-tooltip {
  background-color: var(--cu-common-black-2);
}
.cu-product-wt-style .cu-product-cw-item .cu-product-tooltip::before {
  border-right: 8px solid var(--cu-common-black-2);
}
.cu-product-wt-trending-style .cu-product-tooltip::before {
  border-left: 8px solid var(--cu-common-black-2);
}
.cu-product-wt-trending-style .cu-product-item:hover .cu-product-thumb img {
  transform: scale(1.1);
}
.cu-product-wt-trending-style .cu-product-item:hover .cu-product-wt-btn a {
  background: var(--cu-common-black-2);
  color: var(--cu-common-white);
  border-color: var(--cu-common-black-2);
}
.cu-product-wt-trending-style .cu-product-content {
  padding: 16px 30px 22px 30px;
}
.cu-product-wt-trending-style .cu-product-wt-btn {
  opacity: 1;
  visibility: visible;
  transform: inherit;
  position: inherit;
}
.cu-product-wt-trending-style .cu-product-wt-btn a {
  display: block;
  background: #f1f2f4;
  border-color: #f1f2f4;
  padding: 15px 30px;
}
.cu-product-wt-love-des {
  color: rgba(255, 255, 255, 0.75);
}
.cu-product-wt-love .cu-product-item {
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.cu-product-wt-love .cu-product-tittle {
  color: var(--cu-common-white);
}
.cu-product-wt-love .cu-product-tittle a:hover {
  color: rgba(255, 255, 255, 0.75);
}
.cu-product-wt-love .cu-product-price {
  color: var(--cu-common-white);
}
.cu-product-wt-love .cu-product-price.old-price {
  color: rgba(255, 255, 255, 0.75);
}
.cu-product-wt-love .cu-product-wt-btn a {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.04);
  color: var(--cu-common-white);
}
.cu-product-wt-love .cu-product-item:hover .cu-product-wt-btn a {
  background: var(--cu-common-white);
  border-color: var(--cu-common-white);
  color: var(--cu-common-black-2);
}
.cu-product-wt-love .cu-product-cw-item .cu-product-action-btn {
  background: var(--cu-common-black-2);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--cu-common-white);
}
.cu-product-wt-love .cu-product-cw-item .cu-product-action-btn:hover {
  background: var(--cu-common-white);
  border-color: var(--cu-common-white);
  color: var(--cu-common-black-2);
}
.cu-product-wt-love .cu-product-tooltip {
  background-color: var(--cu-common-white);
  color: var(--cu-common-black-2);
}
.cu-product-wt-love .cu-product-cw-item .cu-product-tooltip::before {
  border-right: 8px solid var(--cu-common-white);
}
.cu-product-wt-love .cu-product-tooltip::before {
  border-left: none;
}
.cu-product-wt-love-banner {
  position: absolute;
  top: 0;
  right: 0;
  width: 26%;
  height: 100%;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .cu-product-wt-love-banner {
    width: 23%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-product-wt-love-banner {
    width: 100%;
    position: inherit;
    height: auto;
  }
}
.cu-product-wt-love-banner img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-product-wt-love-banner img {
    height: auto;
  }
}
.cu-product-gc-item:hover .cu-product-action {
  transform: translate(32%, -50%);
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .cu-product-gc-item:hover .cu-product-action {
    transform: translate(19%, -50%);
  }
}
.cu-product-gc-item:hover .cu-product-gc-thumb::before {
  opacity: 1;
  visibility: visible;
}
.cu-product-gc-item:hover .cu-product-gc-thumb img {
  transform: scale(1.04);
}
.cu-product-gc-thumb {
  background: #f5f7ea;
  height: 260px;
  position: relative;
  padding: 20px;
  margin: 0 20px;
}
.cu-product-gc-thumb::before {
  position: absolute;
  content: "";
  background: rgba(245, 247, 234, 0.9);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  z-index: 1;
}
.cu-product-gc-thumb .cu-product-badge .trending {
  background: var(--cu-common-green-2);
  border-radius: 100px;
}
.cu-product-gc-thumb .cu-product-badge .discount {
  background: #ffa920;
  border-radius: 100px;
  left: auto;
  right: 20px;
}
.cu-product-gc-thumb .cu-product-action-item {
  box-shadow: none;
}
.cu-product-gc-thumb .cu-product-action {
  right: 0;
  left: 0;
  margin: 0 auto;
  top: 50%;
  transform: translate(32%, -35%);
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .cu-product-gc-thumb .cu-product-action {
    transform: translate(19%, -50%);
  }
}
.cu-product-gc-thumb .cu-product-action-btn {
  border-radius: 100%;
  background: var(--cu-common-white);
  border: none;
  box-shadow: 0 1px 2px 0 rgba(1, 15, 28, 0.2);
}
.cu-product-gc-thumb .cu-product-action-btn:hover {
  background: var(--cu-common-green-2);
  color: var(--cu-common-white);
}
.cu-product-gc-content {
  padding: 135px 30px 22px 30px;
  border: 1px solid rgba(8, 8, 9, 0.1);
  margin-top: -100px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-product-gc-content {
    padding: 135px 28px 22px 28px;
  }
}
.cu-product-gc-content .cu-product-price.new-price {
  color: var(--cu-common-green-2);
}
.cu-product-gc-content .cu-product-tittle a:hover {
  color: var(--cu-common-green-2);
}
.cu-product-gc-tab-wrap ul li:not(:last-child)::before {
  background: #717580;
}
.cu-product-gc-tab-wrap ul li button {
  color: #717580;
}
.cu-product-gc-tab-wrap ul li button:hover {
  color: var(--cu-common-green-2);
}
.cu-product-gc-tab-wrap ul li button.active {
  color: var(--cu-common-green-2);
}
.cu-product-gc-tab-wrap ul li button .cu-badge {
  background: var(--cu-common-green-2);
}
.cu-product-gc-selling-style .cu-product-et-selling-item {
  border: 1px solid rgba(8, 8, 9, 0.1);
  background: var(--cu-common-white);
}
.cu-product-gc-selling-style .cu-product-et-selling-item:hover .cu-product-action {
  transform: translateX(20px);
  visibility: visible;
  opacity: 1;
}
.cu-product-gc-selling-style .cu-product-et-selling-item:hover .cu-product-et-selling-thumb::before {
  opacity: 1;
  visibility: visible;
}
.cu-product-gc-selling-style .cu-product-action-item {
  box-shadow: none;
}
.cu-product-gc-selling-style .cu-product-action {
  right: auto;
  left: 0;
}
.cu-product-gc-selling-style .cu-product-action button {
  border-radius: 100%;
  background: var(--cu-common-white);
  border: none;
  box-shadow: 0 1px 2px 0 rgba(1, 15, 28, 0.2);
}
.cu-product-gc-selling-style .cu-product-action button:hover {
  background: var(--cu-common-green-2);
}
.cu-product-gc-selling-style .cu-product-et-selling-thumb {
  padding: 41px 0px 41px 0px;
  background: #f5f7ea;
  position: relative;
  height: 188px;
  width: 100%;
  overflow: hidden;
}
.cu-product-gc-selling-style .cu-product-et-selling-thumb::before {
  position: absolute;
  content: "";
  background: rgba(245, 247, 234, 0.9);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  z-index: 1;
}
.cu-product-gc-selling-style .cu-product-et-selling-content {
  padding: 0px 20px 0px 10px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .cu-product-gc-selling-style .cu-product-et-selling-content {
    padding: 0px 20px 0px 0px;
  }
}
@media (max-width: 575px) {
  .cu-product-gc-selling-style .cu-product-et-selling-content {
    padding: 30px 30px 30px 30px;
  }
}
.cu-product-gc-selling-style .cu-product-tittle {
  color: var(--cu-common-black);
}
.cu-product-gc-selling-style .cu-product-tittle a:hover {
  color: var(--cu-common-green-2);
}
.cu-product-gc-selling-style .cu-product-price.new-price {
  color: var(--cu-common-green-2);
}
.cu-product-gc-selling-wrap {
  margin-left: 90px;
  margin-right: 80px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .cu-product-gc-selling-wrap {
    margin-left: 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .cu-product-gc-selling-wrap {
    margin-left: 12px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-product-gc-selling-wrap {
    margin-left: 12px;
    margin-right: 12px;
  }
}
.cu-product-gc-selling-thumb {
  margin-left: -80px;
  height: 100%;
  margin-right: 0 !important;
}
.cu-product-gc-selling-thumb img {
  height: 100%;
  object-fit: cover;
}
.cu-product-gc-week-style .cu-product-gc-item {
  border: 1px solid rgba(8, 8, 9, 0.1);
  overflow: hidden;
}
.cu-product-gc-week-style .cu-product-gc-item:hover .cu-product-gc-content {
  transform: translateY(-68px);
}
.cu-product-gc-week-style .cu-product-gc-item:hover .cu-product-btn-wrap {
  opacity: 1;
  visibility: visible;
}
.cu-product-gc-week-style .cu-product-gc-thumb {
  height: 345px;
  margin: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .cu-product-gc-week-style .cu-product-gc-thumb {
    height: 300px;
  }
}
.cu-product-gc-week-style .cu-product-gc-content {
  padding: 25px 30px 30px 30px;
  border: none;
  margin-top: 0;
}
.cu-product-gc-week-style .cu-product-gc-thumb::before {
  display: none;
}
.cu-product-gc-week-style .cu-product-action {
  right: auto;
  left: 0;
  transform: translateX(0);
  top: 30px;
}
.cu-product-gc-week-style .cu-product-item:hover .cu-product-action {
  transform: translateX(30px);
}
.cu-product-gc-week-style .cu-product-btn-wrap {
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.cu-product-gc-week-style .cu-product-gc-content {
  background: var(--cu-common-white);
  transition: all 0.5s ease;
  margin-bottom: -65px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-product-gc-week-style .cu-product-tittle br {
    display: none;
  }
}
.cu-product-ft-thumb {
  height: 346px;
  width: 100%;
  background: #f5f5f2;
  padding: 20px;
}
.cu-product-ft-item:hover .cu-product-ft-thumb img {
  transform: scale(1.07);
}
.cu-product-ft-item:hover .cu-product-action {
  transform: translateX(20px);
}
.cu-product-ft-item .cu-product-action-btn {
  color: var(--cu-common-white);
  background-color: var(--cu-common-night);
  border: 1px solid var(--cu-common-night);
  border-radius: 100px;
}
.cu-product-ft-item .cu-product-action-btn:hover {
  background: var(--cu-common-black);
  border-color: var(--cu-common-black);
}
.cu-product-ft-item .cu-product-action-item {
  box-shadow: none;
}
.cu-product-ft-item .cu-product-action {
  right: auto;
  left: 0;
  top: 20px;
}
.cu-product-ft-item .cu-product-badge span {
  background: var(--cu-common-black);
  left: auto;
  right: 20px;
  border-radius: 100px;
}
.cu-product-ft-item .cu-product-tooltip {
  right: auto;
  left: 100%;
}
.cu-product-ft-item .cu-product-tooltip::before {
  left: -4px;
  right: auto;
  border-top: 8px solid transparent;
  border-right: 8px solid var(--cu-common-black);
  border-left: none;
  border-bottom: 8px solid transparent;
}
.cu-product-ft-item .cu-product-action-btn:hover .cu-product-tooltip {
  -webkit-transform: translateX(8px) translateY(-50%);
  -moz-transform: translateX(8px) translateY(-50%);
  -ms-transform: translateX(8px) translateY(-50%);
  -o-transform: translateX(8px) translateY(-50%);
  transform: translateX(8px) translateY(-50%);
}
.cu-product-ft-item .cu-product-price.new-price {
  color: var(--cu-common-night);
}
.cu-product-ft-item .cu-product-tittle a:hover {
  color: var(--cu-common-night);
}
.cu-product-shoes-style .cu-product-tittle a:hover {
  color: var(--cu-common-black);
}
@media (max-width: 575px) {
  .cu-product-shoes-style .cu-product-content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cu-product-shoes-popular-active {
  margin-right: -300px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-product-shoes-popular-active {
    margin-right: 0;
  }
}
.cu-product-shoes-popular-style .cu-product-item:hover .cu-product-thumb img {
  transform: scale(1.07);
}
.cu-product-shoes-popular-style .cu-product-thumb img {
  transition: all 0.6s ease;
}
.cu-product-shoes-popular-style .new-price {
  color: var(--cu-common-black);
}
.cu-product-shoes-popular-style .cu-product-btn a {
  background: var(--cu-common-white);
  color: var(--cu-common-black);
}
.cu-product-shoes-popular-style .cu-product-tittle a:hover {
  color: var(--cu-common-black);
}
.cu-product-shoes-navigation {
  padding-top: 232px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .cu-product-shoes-navigation {
    padding-top: 150px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-product-shoes-navigation {
    padding-top: 50px;
  }
}
.cu-product-shoes-navigation span {
  border: 1px solid var(--cu-common-black);
  width: 60px;
  height: 60px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--cu-common-black);
  transition: all 0.4s ease;
}
.cu-product-shoes-navigation span:hover {
  background: var(--cu-common-black);
  color: var(--cu-common-white);
}
.cu-product-details-modal .modal-dialog {
  max-width: 100%;
}
.cu-product-details-modal-content {
  background: var(--cu-common-white);
  border-radius: 0;
}
.cu-product-details-modal-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  font-size: 25px;
  z-index: 3;
}
.cu-product-details-nav-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}
.cu-product-details-nav-link {
  width: 150px;
  height: 150px;
  padding: 0;
  border: none;
  margin: 10px 5px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .cu-product-details-nav-link {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 575px) {
  .cu-product-details-nav-link {
    width: 80px;
    height: 80px;
  }
}
.cu-product-details-nav-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cu-product-details-nav-link.active {
  border: none;
}
.cu-product-details-nav-link:hover {
  border: none;
}
.cu-product-details-subtitle {
  font-weight: 400;
  font-size: 16px;
  color: var(--cu-grey-1);
  display: inline-block;
}
.cu-product-details-title {
  font-weight: 500;
  font-size: 30px;
  letter-spacing: -0.02em;
  color: var(--cu-common-black);
}
.cu-product-details-price {
  font-weight: 500;
  font-size: 22px;
  color: var(--cu-theme-primary);
}
.cu-product-details-ratings i {
  color: #ffb21d;
}
.cu-product-details-ratings .total {
  font-weight: 400;
  font-size: 15px;
  color: #55585b;
}
.cu-product-details-content {
  font-weight: 400;
  font-size: 16px;
  line-height: 137%;
  color: var(--cu-grey-1);
}
@media (max-width: 575px) {
  .cu-product-details-content br {
    display: none;
  }
}
.cu-product-details-content span {
  font-weight: 500;
  color: var(--cu-common-black);
}
.cu-product-details-view {
  font-size: 16px;
  font-weight: 400;
  color: var(--cu-grey-1);
}
.cu-product-details-view span {
  color: var(--cu-common-black);
  font-weight: 500;
  margin-right: 4px;
}
.cu-product-details-color-title {
  font-weight: 400;
  font-size: 15px;
  color: var(--cu-common-black);
}
.cu-product-details-color-filter .cu-checkbox {
  appearance: none;
  -moz-appearance: none;
  display: block;
  width: 18px;
  height: 18px;
  border: none;
  outline: none;
  flex: 0 0 auto;
  background: #f26339;
  -webkit-transform: translateY(-2.5px);
  -moz-transform: translateY(-2.5px);
  -ms-transform: translateY(-2.5px);
  -o-transform: translateY(-2.5px);
  transform: translateY(-2.5px);
  padding: 0;
  margin-right: 4px;
  transform: translateY(1px);
  border-radius: 50px;
}
.cu-product-details-color-filter .cu-checkbox-2 {
  background: #F1B23D;
}
.cu-product-details-color-filter .cu-checkbox-3 {
  background: rgba(224, 74, 182, 0.94);
}
.cu-product-details-color-filter .cu-checkbox-4 {
  background: #31bb00;
}
.cu-product-details-color-filter .cu-checkbox:checked {
  position: relative;
  border-color: transparent;
}
.cu-product-details-color-filter .cu-checkbox:checked::after {
  box-sizing: border-box;
  position: absolute;
  content: "\f00c";
  font-weight: 700;
  font-family: var(--cu-ff-fontawesome);
  font-size: 10px;
  color: var(--cu-common-white);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cu-product-details-color-filter .cu-checkbox:hover {
  cursor: pointer;
}
.cu-product-details-action-title {
  font-weight: 500;
  font-size: 16px;
  color: var(--cu-common-black);
}
.cu-product-details-action-sm-btn {
  font-weight: 500;
  font-size: 16px;
  color: #545454;
  display: flex;
  align-items: center;
}
.cu-product-details-action-sm-btn:hover {
  color: var(--cu-theme-primary);
}
.cu-product-details-action-sm-btn svg {
  margin-right: 10px;
}
.cu-product-details-slider-thumb img {
  object-fit: cover;
}
.cu-product-details-slider-thumb-navigation span {
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 18px;
  border-radius: 50%;
  color: var(--cu-common-black);
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}
.cu-product-details-slider-thumb-navigation span:hover {
  background-color: var(--cu-common-black);
  color: var(--cu-common-white);
}
.cu-product-details-slider-thumb-navigation .cu-product-details-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 30px;
  z-index: 9;
}
.cu-product-details-slider-thumb-navigation .cu-product-details-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  z-index: 9;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-product-details-slider-thumb-wrapper {
    margin-right: 0;
  }
}
.cu-product-details-stock-bar p {
  font-weight: 400;
  font-size: 16px;
  color: #545454;
}
.cu-product-details-stock-bar p span {
  color: var(--cu-common-black);
  font-weight: 500;
}
.cu-product-details-stock-bar-line {
  height: 4px;
  position: relative;
}
.cu-product-details-stock-bar-line-inner {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--cu-theme-primary);
  height: 100%;
  display: inline-block;
}
.cu-product-details-stock-full-btn a {
  font-weight: 500;
  font-size: 16px;
  color: var(--cu-common-black);
  text-decoration: underline;
}
.cu-product-details-stock-full-btn a:hover {
  color: var(--cu-theme-primary);
}
.cu-product-details-quantity {
  width: 122px;
  position: relative;
  background: var(--cu-common-white);
}
.cu-product-details-quantity .cu-quantity-input {
  height: 46px;
  text-align: center;
  font-size: 14px;
  border: none;
  background-color: var(--cu-common-white);
  padding: 0 45px;
  width: 100%;
  color: var(--cu-common-black);
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.cu-product-details-quantity span {
  width: 35px;
  height: 34px;
  line-height: 34px;
  display: inline-block;
  text-align: center;
  font-size: 16px;
  color: #6f7071;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all 0.4s ease;
  margin: 0 3px !important;
  cursor: pointer;
}
.cu-product-details-quantity span::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 26px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  background-color: #e1e1e1;
}
.cu-product-details-quantity span.decrement {
  right: auto;
  left: -4px;
}
.cu-product-details-quantity span.decrement::before {
  left: auto;
  right: -4px;
}
.cu-product-details-cart-btn {
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--cu-common-white);
  padding: 10px 92px;
  display: inline-block;
  background: var(--cu-common-black);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-product-details-cart-btn {
    padding: 10px 40px;
  }
}
.cu-product-details-cart-btn:hover {
  color: var(--cu-common-white);
  background: var(--cu-theme-primary);
}
.cu-product-details-wishlist-btn {
  background: var(--cu-common-white);
  width: 46px;
  height: 46px;
  text-align: center;
  line-height: 46px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.cu-product-details-wishlist-btn:hover {
  color: var(--cu-common-white);
  background: var(--cu-theme-primary);
}
.cu-product-details-compare-wrap ul li {
  display: flex;
  align-items: center;
  margin-bottom: 7px;
}
.cu-product-details-compare-wrap ul li h5 {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 0;
  margin-right: 10px;
}
.cu-product-details-compare-wrap ul li span {
  font-weight: 400;
  color: var(--cu-grey-1);
}
.cu-product-details-compare-wrap ul li span.black {
  color: var(--cu-common-black);
}
.cu-product-details-payment-way {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 12px 20px 0px 20px;
  background: #f6f6f6;
}
.cu-product-details-payment-text span {
  font-weight: 400;
  font-size: 14px;
  color: var(--cu-common-black);
}
.cu-product-details-payment-text span.grey {
  color: var(--cu-grey-1);
  display: block;
  line-height: 1;
}
.cu-product-details-payment-bank a {
  height: 32px;
  box-shadow: 0 1px 3px 0 rgba(1, 15, 28, 0.1);
  background: #fff;
  display: inline-block;
  line-height: 32px;
  padding: 1px 8px;
  margin-left: 6px;
}
.cu-product-details-tab-line {
  transition: all 0.3s 0s ease-out;
  position: absolute;
  bottom: -3px;
  height: 3px;
  background-color: var(--cu-theme-secondary);
  display: block;
}
.cu-product-details-tab-nav .nav-tabs {
  border: none;
}
@media (max-width: 575px) {
  .cu-product-details-tab-nav .nav-tabs {
    padding-bottom: 0;
  }
}
.cu-product-details-tab-nav .nav-tabs .nav-link {
  text-transform: capitalize;
  position: relative;
  padding: 0;
  margin: 0;
  border: 0;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: var(--cu-theme-primary);
  padding: 16px 40px;
  border-radius: 0;
  border-bottom: 1px solid rgba(28, 29, 31, 0.1);
}
.cu-product-details-tab-nav .nav-tabs .nav-link:not(:first-child) {
  margin-left: 5px;
}
.cu-product-details-tab-nav .nav-tabs .nav-link.active, .cu-product-details-tab-nav .nav-tabs .nav-link:hover {
  background: var(--cu-theme-primary);
  border-color: var(--cu-theme-primary);
  color: var(--cu-common-white);
}
.cu-product-details-tab-nav .nav-tabs .nav-link.active::after, .cu-product-details-tab-nav .nav-tabs .nav-link:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}
@media (max-width: 575px) {
  .cu-product-details-tab-nav .nav-tabs span#productTabMarker {
    display: none !important;
  }
}
.cu-product-details-desc-wrapper > p {
  color: var(--cu-grey-1);
  font-size: 18px;
  line-height: 167%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-product-details-desc-wrapper > p br {
    display: none;
  }
}
.cu-product-details-desc-wrapper ul li {
  font-weight: 400;
  font-size: 18px;
  color: var(--cu-grey-1);
  display: flex;
  margin-bottom: 15px;
}
.cu-product-details-desc-wrapper ul li i {
  margin-right: 10px;
  transform: translateY(3px);
}
.cu-product-details-desc-title {
  font-weight: 600;
  font-size: 30px;
  letter-spacing: -0.02em;
}
.cu-product-details-additional-info-title {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 16px;
}
.cu-product-details-additional-info.cu-table-style-2 table {
  border: 0;
  border-spacing: 0;
  width: 100%;
}
.cu-product-details-additional-info.cu-table-style-2 table tr {
  border: 0;
}
.cu-product-details-additional-info.cu-table-style-2 table tr:not(:last-child) {
  border: 0;
}
.cu-product-details-additional-info.cu-table-style-2 table tr td {
  padding: 13px 24px;
  border: 1px solid #E6E7E8;
}
.cu-product-details-additional-info.cu-table-style-2 table tr td:first-child {
  padding-left: 24px;
  border-right: 0;
  font-size: 16px;
  color: var(--cu-common-black);
  width: 300px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-product-details-additional-info.cu-table-style-2 table tr td:first-child {
    width: 150px;
  }
}
.cu-product-details-additional-info.cu-table-style-2 table tr td:last-child {
  padding-left: 34px;
  background-color: #F9F9F9;
}
.cu-product-details-review-title-2 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 33px;
}
.cu-product-details-review-avater-thumb {
  flex: 0 0 auto;
}
@media (max-width: 575px) {
  .cu-product-details-review-avater-thumb {
    margin-bottom: 20px;
  }
}
.cu-product-details-review-avater-thumb img {
  width: 120px;
  height: 110px;
  margin-right: 20px;
  flex: 0 0 auto;
}
.cu-product-details-review-avater-rating span {
  font-size: 13px;
  margin-right: 2px;
  color: #FFB21D;
  line-height: 1;
}
.cu-product-details-review-avater-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 6px;
}
.cu-product-details-review-avater-comment p {
  font-size: 18px;
  line-height: 167%;
  color: #545454;
}
.cu-product-details-review-avater-meta {
  font-size: 14px;
  line-height: 1.2;
  margin-left: 6px;
  display: inline-block;
}
@media (max-width: 575px) {
  .cu-product-details-review-avater-2 {
    flex-direction: column;
  }
}
.cu-product-details-review-form-title {
  font-size: 34px;
  font-weight: 500;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-product-details-thumb-wrapper {
    margin-right: 0;
  }
}
.cu-product-details-cw-modal .cu-product-details-price {
  color: var(--cu-common-yellow-2);
}
.cu-product-details-cw-modal .cu-product-details-stock-bar-line-inner {
  background-color: var(--cu-common-yellow-2);
}
.cu-product-details-cw-modal .cu-product-details-stock-full-btn a:hover {
  color: var(--cu-common-yellow-2);
}
.cu-product-details-cw-modal .cu-product-details-cart-btn:hover {
  background: var(--cu-common-yellow-2);
}
.cu-product-details-cw-modal .cu-product-details-wishlist-btn:hover {
  background: var(--cu-common-yellow-2);
}
.cu-product-details-fs-modal .cu-product-details-price {
  color: var(--cu-common-blue);
}
.cu-product-details-fs-modal .cu-product-details-stock-bar-line-inner {
  background-color: var(--cu-common-blue);
}
.cu-product-details-fs-modal .cu-product-details-stock-full-btn a:hover {
  color: var(--cu-common-blue);
}
.cu-product-details-fs-modal .cu-product-details-cart-btn:hover {
  background: var(--cu-common-blue);
}
.cu-product-details-fs-modal .cu-product-details-wishlist-btn:hover {
  background: var(--cu-common-blue);
}
.cu-product-details-jl-modal .cu-product-details-price {
  color: var(--cu-common-green);
}
.cu-product-details-jl-modal .cu-product-details-stock-bar-line-inner {
  background-color: var(--cu-common-green);
}
.cu-product-details-jl-modal .cu-product-details-stock-full-btn a:hover {
  color: var(--cu-common-green);
}
.cu-product-details-jl-modal .cu-product-details-cart-btn:hover {
  background: var(--cu-common-green);
}
.cu-product-details-jl-modal .cu-product-details-wishlist-btn:hover {
  background: var(--cu-common-green);
}
.cu-product-details-et-modal .cu-product-details-price {
  color: var(--cu-common-blue-2);
}
.cu-product-details-et-modal .cu-product-details-stock-bar-line-inner {
  background-color: var(--cu-common-blue-2);
}
.cu-product-details-et-modal .cu-product-details-stock-full-btn a:hover {
  color: var(--cu-common-blue-2);
}
.cu-product-details-et-modal .cu-product-details-cart-btn:hover {
  background: var(--cu-common-blue-2);
}
.cu-product-details-et-modal .cu-product-details-wishlist-btn:hover {
  background: var(--cu-common-blue-2);
}
.cu-product-details-wt-modal .cu-product-details-price {
  color: var(--cu-common-black-2);
}
.cu-product-details-wt-modal .cu-product-details-stock-bar-line-inner {
  background-color: var(--cu-common-black-2);
}
.cu-product-details-wt-modal .cu-product-details-stock-full-btn a:hover {
  color: var(--cu-common-black-2);
}
.cu-product-details-wt-modal .cu-product-details-cart-btn:hover {
  background: var(--cu-common-black-2);
}
.cu-product-details-wt-modal .cu-product-details-wishlist-btn:hover {
  background: var(--cu-common-black-2);
}
.cu-product-details-gc-modal .cu-product-details-price {
  color: var(--cu-common-green-2);
}
.cu-product-details-gc-modal .cu-product-details-stock-bar-line-inner {
  background-color: var(--cu-common-green-2);
}
.cu-product-details-gc-modal .cu-product-details-stock-full-btn a:hover {
  color: var(--cu-common-green-2);
}
.cu-product-details-gc-modal .cu-product-details-cart-btn:hover {
  background: var(--cu-common-green-2);
}
.cu-product-details-gc-modal .cu-product-details-wishlist-btn:hover {
  background: var(--cu-common-green-2);
}
.cu-product-details-ft-modal .cu-product-details-price {
  color: var(--cu-common-night);
}
.cu-product-details-ft-modal .cu-product-details-stock-bar-line-inner {
  background-color: var(--cu-common-night);
}
.cu-product-details-ft-modal .cu-product-details-stock-full-btn a:hover {
  color: var(--cu-common-night);
}
.cu-product-details-ft-modal .cu-product-details-cart-btn:hover {
  background: var(--cu-common-night);
}
.cu-product-details-ft-modal .cu-product-details-wishlist-btn:hover {
  background: var(--cu-common-night);
}
.cu-product-details-sh-modal .cu-product-details-price {
  color: var(--cu-common-black);
}
.cu-product-details-sh-modal .cu-product-details-stock-bar-line-inner {
  background-color: var(--cu-common-black);
}
.cu-product-details-sh-modal .cu-product-details-stock-full-btn a:hover {
  color: var(--cu-common-black);
}
.cu-product-details-sh-modal .cu-product-details-cart-btn:hover {
  background: var(--cu-common-black);
}
.cu-product-details-sh-modal .cu-product-details-wishlist-btn:hover {
  background: var(--cu-common-black);
}
.cu-product-details-social a {
  display: inline-block;
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.cu-product-details-social a:hover {
  background-color: var(--cu-theme-primary);
  border-color: var(--cu-theme-primary);
  color: var(--cu-common-white);
}
.cu-product-details-purches-title {
  font-weight: 500;
  font-size: 16px;
  color: var(--cu-common-black);
}
.cu-product-details-purches-subscription {
  font-weight: 400;
  font-size: 14px;
  color: var(--cu-common-black);
}
.cu-product-details-purches-subscription:hover {
  color: var(--cu-theme-primary);
}
.cu-product-details-purches-item {
  padding: 17px 30px 15px 30px;
}
.cu-product-details-purches-input .cu-checkbox {
  appearance: none;
  -moz-appearance: none;
  display: block;
  width: 18px;
  height: 18px;
  outline: none;
  flex: 0 0 auto;
  background: transparent;
  -webkit-transform: translateY(3px);
  -moz-transform: translateY(3px);
  -ms-transform: translateY(3px);
  -o-transform: translateY(3px);
  transform: translateY(3px);
  padding: 0;
  margin-right: 12px;
  border: 1.5px solid #000;
  border-radius: 0;
}
.cu-product-details-purches-input .cu-checkbox:checked {
  position: relative;
  border-color: var(--cu-theme-primary);
  background: var(--cu-theme-primary);
}
.cu-product-details-purches-input .cu-checkbox:checked::after {
  box-sizing: border-box;
  position: absolute;
  content: "\f00c";
  font-weight: 700;
  font-family: var(--cu-ff-fontawesome);
  font-size: 10px;
  color: var(--cu-common-white);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cu-product-details-purches-input .cu-checkbox:hover {
  cursor: pointer;
}
.cu-product-details-purches-label label {
  font-weight: 400;
  font-size: 14px;
  line-height: 86%;
  color: var(--cu-common-black);
}
.cu-product-details-purches-label label span {
  font-weight: 500;
  font-size: 12px;
  color: var(--cu-common-white);
  background: var(--cu-theme-primary);
  display: inline-block;
  padding: 2px 7px;
  margin-left: 20px;
  line-height: 1;
}
.cu-product-details-purches-label p {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #545454;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .cu-product-details-purches-label p br {
    display: none;
  }
}
.cu-product-details-purches-price span {
  font-size: 14px;
  font-weight: 500;
  color: #000;
}
.cu-product-details-purches-price span.old-price {
  text-decoration: line-through;
  color: #545454;
  font-weight: 400;
}
.cu-product-details-purches-item {
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.cu-product-details-style .cu-product-details-thumb-wrapper .nav-tabs {
  display: flex;
  gap: 10px;
  border: none;
}
.cu-product-details-style .cu-product-details-thumb-wrapper .nav-link {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  width: 150px;
  border: 1px solid transparent;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .cu-product-details-style .cu-product-details-thumb-wrapper .nav-link {
    width: 140px;
  }
}
@media (max-width: 575px) {
  .cu-product-details-style .cu-product-details-thumb-wrapper .nav-link {
    width: 100px;
  }
}
.cu-product-details-style .cu-product-details-thumb-wrapper .nav-link.active {
  border-color: var(--cu-common-black);
}
.cu-product-details-form-input .cu-input {
  font-weight: 400;
  font-size: 16px;
  color: var(--cu-common-black);
  width: 100%;
  height: 60px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px 30px;
}
.cu-product-details-form-input .cu-input:focus {
  border-color: var(--cu-common-black);
}
.cu-product-details-form-input .cu-input::placeholder {
  color: #545454;
}
.cu-product-details-form-input .message {
  height: 184px;
  padding-top: 25px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .cu-product-details-wrap {
    margin-left: 60px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-product-details-wrap {
    margin-left: 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .cu-product-details-widget-recently-viewed {
    margin-left: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-product-details-widget-recently-viewed {
    margin-left: 0;
  }
}
.cu-product-details-countdown {
  padding: 10px 20px;
  border: 1px solid var(--tp-pink-1);
  background-color: rgba(253, 75, 107, 0.05);
}
.cu-product-details-countdown-title {
  font-size: 18px;
  font-weight: 500;
  color: #fd4b6b;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .cu-product-details-countdown-title {
    margin-bottom: 7px;
  }
}
.cu-product-details-countdown-time ul {
  display: flex;
  align-items: center;
}
.cu-product-details-countdown-time ul li {
  list-style: none;
  font-size: 16px;
  font-weight: 500;
  color: #fd4b6b;
  position: relative;
}
.cu-product-details-countdown-time ul li:not(:last-child) {
  margin-right: 24px;
}
.cu-product-details-countdown-time ul li:not(:last-child)::after, .cu-product-details-countdown-time ul li:not(:last-child)::before {
  position: absolute;
  content: "";
  right: -13px;
  top: 7px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #fd4b6b;
}
.cu-product-details-countdown-time ul li:not(:last-child)::before {
  top: 15px;
}
.cu-product-details-wrap.has-sticky {
  position: sticky;
  top: 120px;
}
.cu-product-inner-item .cu-product-tittle a:hover {
  color: var(--cu-theme-primary);
}
.cu-product-inner-item .cu-product-ft-thumb {
  background: #f6f6f6;
}
.cu-product-inner-item .cu-product-gc-thumb {
  background: #f6f6f6;
}
.cu-product-inner-item .cu-product-action {
  left: auto;
  right: 0;
}
.cu-product-inner-item .cu-product-item:hover .cu-product-action {
  transform: translateX(-30px);
}
.cu-product-inner-item .cu-product-action-item {
  box-shadow: 0 1px 3px 0 rgba(1, 15, 28, 0.14);
}
.cu-product-inner-item .cu-product-action-btn {
  border-radius: 0;
  border: 1px solid #eaebed;
  box-shadow: none;
}
.cu-product-inner-item .cu-product-action-btn:hover {
  color: var(--cu-common-white);
  background-color: var(--cu-common-black);
  border-color: var(--cu-common-black);
}
.cu-product-inner-item .cu-product-price.new-price {
  color: var(--cu-theme-primary);
}
.cu-product-inner-item .cu-btn-primary {
  background: var(--cu-theme-primary);
  color: var(--cu-common-white);
  border-color: var(--cu-theme-primary);
}
.cu-product-inner-item .cu-btn-primary:hover {
  background: none;
  color: var(--cu-common-black);
  border-color: var(--cu-common-black);
}
.cu-product-list-dec {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 18px;
  margin-top: 5px;
  margin-bottom: 25px;
}

.cu-affrodable-prices-content {
  padding-top: 210px;
  padding-bottom: 210px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-affrodable-prices-content {
    padding-top: 130px;
    padding-bottom: 130px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-affrodable-prices-content {
    padding-top: 100px;
    padding-bottom: 100px;
    margin-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-affrodable-prices-content {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cu-affrodable-prices-content p {
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
  color: var(--cu-common-black);
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-affrodable-prices-content p br {
    display: none;
  }
}
.cu-affrodable-prices-thumb {
  height: 100%;
}
.cu-affrodable-prices-thumb img {
  height: 100%;
  object-fit: cover;
}

/*=============================
    14. exclusive
===============================*/
.cu-exclusive-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.cu-exclusive-item:hover span {
  color: var(--cu-theme-primary);
}
.cu-exclusive-item img {
  border-radius: 100px;
}
.cu-exclusive-item span {
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--cu-common-black);
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  text-transform: capitalize;
}
.cu-exclusive-bg {
  background: #f6f6f6;
  padding: 50px 0px;
}
.cu-exclusive-slider-active .swiper-slide {
  width: auto;
}
.cu-exclusive-cw-wrap {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 37px 0px;
}
.cu-exclusive-cw-wrap .cu-exclusive-item span {
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--cu-common-white);
}
.cu-exclusive-sf-bg {
  background: var(--cu-common-blue);
}
.cu-exclusive-sf-bg .cu-exclusive-item span {
  color: var(--cu-common-white);
}
.cu-exclusive-shoes-wrap .cu-exclusive-item span {
  color: var(--cu-common-spring);
}

/*=============================
    02. banner
===============================*/
.cu-banner-thumb::before {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0.3);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.cu-banner-thumb img {
  -webkit-transition: all 0.6s ease-out 0s;
  -moz-transition: all 0.6s ease-out 0s;
  -ms-transition: all 0.6s ease-out 0s;
  -o-transition: all 0.6s ease-out 0s;
  transition: all 0.6s ease-out 0s;
}
@media (max-width: 575px) {
  .cu-banner-thumb img {
    height: 320px;
    object-fit: cover;
  }
}
.cu-banner-content {
  position: relative;
  z-index: 2;
}
.cu-banner-item:hover .cu-banner-thumb img {
  transform: scale(1.1);
}
.cu-banner-tittle {
  font-weight: 500;
  font-size: 30px;
  line-height: 113%;
  letter-spacing: -0.02em;
  color: var(--cu-common-white);
  text-transform: capitalize;
}
.cu-banner-tittle a {
  background-image: linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor);
  background-size: 0 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s linear;
  -webkit-transition: all all 0.4s ease ease-out 0s;
  -moz-transition: all all 0.4s ease ease-out 0s;
  -ms-transition: all all 0.4s ease ease-out 0s;
  -o-transition: all all 0.4s ease ease-out 0s;
  transition: all all 0.4s ease ease-out 0s;
}
.cu-banner-tittle a:hover {
  background-image: linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor);
  background-size: 0 1px, 100% 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s linear;
  -webkit-transition: all all 0.4s ease ease-out 0s;
  -moz-transition: all all 0.4s ease ease-out 0s;
  -ms-transition: all all 0.4s ease ease-out 0s;
  -o-transition: all all 0.4s ease ease-out 0s;
  transition: all all 0.4s ease ease-out 0s;
  color: var(--cu-common-white);
}
.cu-banner-content {
  position: absolute;
  bottom: 52px;
  left: 60px;
}
@media (max-width: 575px) {
  .cu-banner-content {
    bottom: 22px;
    left: 30px;
  }
}
.cu-banner-btn {
  font-weight: 500;
  font-size: 16px;
  color: var(--cu-common-white);
  text-transform: capitalize;
}
.cu-banner-btn:hover {
  color: rgba(255, 255, 255, 0.6);
}
.cu-banner-sf-content {
  padding: 120px 30px 120px 60px;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px), only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-banner-sf-content {
    padding: 120px 30px 120px 30px;
  }
}
@media (max-width: 575px) {
  .cu-banner-sf-content {
    padding: 30px;
  }
}
.cu-banner-sf-content span {
  color: var(--cu-grey-1);
}
.cu-banner-sf-content h4 {
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.02em;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .cu-banner-sf-content h4 {
    font-size: 22px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-banner-sf-content h4 {
    font-size: 18px;
  }
}
.cu-banner-sf-bigtext {
  font-weight: 700;
  font-size: 80px;
  letter-spacing: -0.02em;
  color: #b6d0e2;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -34px;
  writing-mode: sideways-lr;
  margin-bottom: 0;
  z-index: -1;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-banner-sf-bigtext {
    top: 35%;
  }
}
.cu-banner-sf-thumb img {
  transition: all 0.6s ease;
}
.cu-banner-sf-item {
  background: #e0edf6;
  overflow: hidden;
}
.cu-banner-sf-item:hover .cu-banner-sf-thumb img {
  transform: scale(1.1);
}
.cu-banner-sf-item.item-2 {
  background: #eaf9f6;
}
.cu-banner-sf-item.item-2 .cu-banner-sf-bigtext {
  color: #c8f4eb;
}
.cu-banner-sf-item.item-3 {
  background: #f5ede0;
}
.cu-banner-sf-item.item-3 .cu-banner-sf-bigtext {
  color: #e8d7bd;
}
.cu-banner-jl-item {
  padding: 0 60px;
  padding-top: 100px;
  padding-bottom: 108px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-banner-jl-item {
    padding: 30px;
    padding-top: 100px;
  }
}
.cu-banner-jl-content span {
  color: var(--cu-common-white);
}
.cu-banner-jl-content h4 {
  font-weight: 500;
  font-size: 30px;
  line-height: 113%;
  letter-spacing: -0.02em;
  color: var(--cu-common-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-banner-jl-content h4 {
    font-size: 28px;
  }
}
.cu-banner-et-style .cu-banner-sf-content span {
  color: var(--cu-common-white);
}
.cu-banner-et-style .cu-banner-sf-content h4 {
  color: var(--cu-common-white);
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-banner-et-style .cu-banner-sf-content h4 {
    font-size: 22px;
  }
}
.cu-banner-et-style .cu-banner-sf-item {
  height: 100%;
}
.cu-banner-et-style .cu-banner-sf-thumb {
  padding-right: 25px;
}
@media (max-width: 575px) {
  .cu-banner-et-style .cu-banner-sf-thumb {
    padding-right: 0;
  }
}
.cu-banner-et-style .cu-banner-sf-content {
  padding: 108px 30px 108px 60px;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .cu-banner-et-style .cu-banner-sf-content {
    padding: 108px 30px 108px 30px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .cu-banner-et-style .cu-banner-sf-content {
    padding: 108px 0 108px 30px;
  }
}
@media (max-width: 575px) {
  .cu-banner-et-style .cu-banner-sf-content {
    padding: 40px 0 40px 30px;
  }
}
.cu-banner-promotional-left-content h2 {
  font-weight: 500;
  font-size: 40px;
  line-height: 105%;
  letter-spacing: -0.02em;
  color: var(--cu-common-white);
}
.cu-banner-promotional-left-content p {
  line-height: 1;
  color: rgba(255, 255, 255, 0.65);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-banner-promotional-left-thumb {
    margin-top: 60px;
  }
}
.cu-banner-promotional-left-thumb img {
  transition: all 0.6s ease;
}
.cu-banner-promotional-left-wrap {
  padding: 54px 70px;
  height: 100%;
}
@media (max-width: 575px) {
  .cu-banner-promotional-left-wrap {
    padding: 30px 30px;
  }
}
.cu-banner-promotional-left-wrap:hover .cu-banner-promotional-left-thumb img {
  transform: scale(1.06);
}
.cu-banner-promotional-price {
  display: flex;
}
.cu-banner-promotional-price .old-price {
  text-decoration: line-through;
  color: var(--cu-common-white);
  margin-right: 10px;
}
.cu-banner-promotional-price .new-price {
  font-weight: 600;
  font-size: 40px;
  letter-spacing: -0.03em;
  color: var(--cu-common-yellow-3);
  display: flex;
  align-items: self-start;
  line-height: 1;
}
.cu-banner-promotional-price .new-price span {
  font-weight: 400;
  font-size: 20px;
  margin-top: 3px;
}
.cu-banner-promotional-right-content {
  padding: 40px 0px 35px 50px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-banner-promotional-right-content {
    padding: 40px 0px 35px 20px;
    margin-right: -30px;
  }
}
.cu-banner-promotional-right-thumb .promotional-right-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  height: 100%;
}
.cu-banner-promotional-countdown h2 {
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--cu-common-black);
}
.cu-banner-promotional-countdown span {
  font-weight: 400;
  font-size: 14px;
  color: var(--cu-common-black);
  background: var(--cu-common-white);
  display: inline-block;
  padding: 6px 15px;
  line-height: 1;
}
.cu-banner-promotional-discount-thumb {
  padding: 35px 0px 0 50px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-banner-promotional-discount-thumb {
    padding: 35px 0px 0 20px;
  }
}
.cu-banner-promotional-discount-thumb h2 {
  font-weight: 500;
  font-size: 24px;
  line-height: 125%;
  letter-spacing: -0.02em;
  color: var(--cu-common-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-banner-promotional-discount-thumb h2 {
    font-size: 21px;
  }
}
.cu-banner-promotional-discount-shape {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  z-index: -1;
}
.cu-banner-promotional-discount-shape svg {
  height: 100%;
  width: 100%;
}
.cu-banner-promotional-discount-content {
  padding: 50px 20px 40px 60px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-banner-promotional-discount-content {
    padding: 50px 20px 40px 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .cu-banner-promotional-discount-content {
    text-align: end;
  }
}
.cu-banner-promotional-discount-content span {
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  color: var(--cu-common-white);
  margin-bottom: 5px;
  display: block;
}
@media (max-width: 575px) {
  .cu-banner-promotional-discount-content span {
    width: 100%;
  }
}
.cu-banner-promotional-discount-content h2 {
  font-weight: 500;
  font-size: 40px;
  line-height: 70%;
  letter-spacing: -0.02em;
  color: var(--cu-common-white);
}
.cu-banner-promotional-discount-content .cu-btn {
  background: var(--cu-common-yellow-3);
  border: var(--cu-common-yellow-3);
}
.cu-banner-promotional-discount-content .cu-btn:hover {
  background: var(--cu-common-white);
  color: var(--cu-common-black);
}
.cu-banner-wt-item .cu-banner-jl-content {
  padding-left: 90px;
  padding-right: 30px;
  padding-top: 180px;
  padding-bottom: 185px;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .cu-banner-wt-item .cu-banner-jl-content {
    padding-left: 70px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-banner-wt-item .cu-banner-jl-content {
    padding-left: 30px;
    padding-top: 120px;
    padding-bottom: 125px;
  }
}
@media (max-width: 575px) {
  .cu-banner-wt-item .cu-banner-jl-content {
    padding-bottom: 80px;
  }
}
.cu-banner-ft-style .cu-banner-jl-content {
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-banner-ft-style .cu-banner-jl-content {
    padding-right: 0;
  }
}
.cu-banner-ft-style .cu-banner-wt-item:hover .cu-banner-ft-thumb img {
  transform: scale(1.1);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-banner-ft-product {
    padding-top: 20px;
  }
}
.cu-banner-ft-content-2 {
  padding-right: 30px;
  padding-top: 180px;
  padding-bottom: 185px;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-banner-ft-content-2 {
    padding-top: 120px;
    padding-bottom: 125px;
    padding-right: 0;
  }
}
@media (max-width: 575px) {
  .cu-banner-ft-content-2 {
    padding-top: 40px;
    padding-left: 30px;
  }
}
.cu-banner-ft-content-3 {
  padding: 50px 30px 150px 60px;
}
@media (max-width: 575px) {
  .cu-banner-ft-content-3 {
    padding: 50px 30px 100px 30px;
  }
}
.cu-banner-ft-content-4 {
  padding: 100px 30px 105px 60px;
}
@media (max-width: 575px) {
  .cu-banner-ft-content-4 {
    padding: 70px 30px 70px 30px;
  }
}
.cu-banner-ft-content-5 {
  padding: 45px 30px 0 60px;
}
@media (max-width: 575px) {
  .cu-banner-ft-content-5 {
    padding: 45px 30px 0 30px;
  }
}
.cu-banner-ft-content-5 img {
  transition: all 0.6s ease;
}
.cu-banner-ft-content-5:hover img {
  transform: scale(1.1);
}
.cu-banner-ft-discount {
  position: absolute;
  top: -14px;
  right: 40px;
  -moz-animation: cuupdown 2.3s ease-in-out 2.3s forwards infinite alternate;
  -webkit-animation: cuupdown 2.3s ease-in-out 2.3s forwards infinite alternate;
  animation: cuupdown 2.3s ease-in-out 2.3s forwards infinite alternate;
}
.cu-banner-ft-discount-inner {
  width: 560px;
  height: 560px;
  display: inline-block;
  border-radius: 100%;
  background: var(--cu-common-night);
}
@media only screen and (min-width: 1600px) and (max-width: 1700px), only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-banner-ft-discount-inner {
    width: 460px;
    height: 460px;
  }
}
@media (max-width: 575px) {
  .cu-banner-ft-discount-inner {
    width: 350px;
    height: 350px;
  }
}
.cu-banner-ft-discount-shape {
  position: absolute;
  top: 0;
  right: 98px;
}
.cu-banner-ft-discount-content h2 {
  font-weight: 600;
  font-size: 160px;
  letter-spacing: -0.04em;
  color: var(--cu-common-white);
  line-height: 1;
}
@media (max-width: 575px) {
  .cu-banner-ft-discount-content h2 {
    font-size: 120px;
  }
}
.cu-banner-ft-discount-content span {
  font-weight: 500;
  font-size: 16px;
  color: var(--cu-common-white);
}
.cu-banner-ft-discount-wrap {
  position: absolute;
  top: 5px;
  left: 0;
  right: 0;
  text-align: center;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px), only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-banner-ft-discount-wrap {
    top: 50%;
    transform: translateY(-50%);
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .cu-banner-ft-discount-wrap {
    top: 42%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-banner-ft-discount-wrap {
    position: inherit;
    transform: inherit;
  }
}
.cu-banner-ft-bigtext {
  font-weight: 500;
  font-size: 190px;
  letter-spacing: -0.02em;
  color: rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: -20px;
  left: -50px;
  margin-bottom: 0;
  line-height: 0.7;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .cu-banner-ft-bigtext {
    font-size: 150px;
  }
}
@media (max-width: 575px) {
  .cu-banner-ft-bigtext {
    font-size: 100px;
    left: -20px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-banner-ft-thumb {
    margin-right: 0;
  }
}
@media (max-width: 575px) {
  .cu-banner-ft-thumb {
    padding-left: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.cu-banner-ft-thumb img {
  transition: all 0.6s ease;
}
.cu-banner-shoes-content-2 {
  padding: 58px 30px 20px 30px;
}
.cu-banner-shoes-content-2 h2 {
  font-weight: 600;
  font-size: 140px;
  line-height: 1;
  letter-spacing: -0.02em;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-banner-shoes-content-2 h2 {
    font-size: 100px;
  }
}
@media (max-width: 575px) {
  .cu-banner-shoes-content-2 h2 {
    font-size: 80px;
  }
}
.cu-banner-shoes-thumb {
  margin-top: -100px;
  padding-bottom: 20px;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px), only screen and (min-width: 1400px) and (max-width: 1599px) {
  .cu-banner-shoes-thumb {
    margin-right: 30px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-banner-shoes-thumb {
    margin-right: 30px;
    margin-top: 10px;
    margin-left: 30px;
  }
}
.cu-banner-shoes-thumb img {
  transition: all 0.6s ease;
}
.cu-banner-shoes-item.banner-spacing {
  padding: 478px 30px 80px 30px;
}
@media (max-width: 575px) {
  .cu-banner-shoes-item.banner-spacing {
    padding: 178px 30px 80px 30px;
  }
}
.cu-banner-shoes-item:hover .cu-banner-shoes-thumb2 img {
  transform: scale(1.1);
}
.cu-banner-shoes-item:hover .cu-banner-shoes-thumb img {
  transform: scale(1.06);
}
.cu-banner-shoes-thumb2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.cu-banner-shoes-thumb2 img {
  transition: all 0.6s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cu-banner-shoes-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}

.cu-countdown-wrap ul li {
  text-align: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(34, 34, 34, 0.15);
  padding-top: 10px;
  margin-right: 0 !important;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  text-align: center;
  color: var(--cu-common-black);
  line-height: 0.8;
}
.cu-countdown-wrap ul li span {
  display: block;
  font-weight: 500;
  font-size: 10px;
  text-align: center;
  text-transform: uppercase;
  color: var(--cu-common-black);
  background: none;
  letter-spacing: 1px;
  line-height: 0.7;
  padding: 0;
  padding-top: 5px;
}
.cu-countdown-gc-main {
  padding: 95px 0px 90px 80px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-countdown-gc-main {
    padding: 50px 20px 50px 30px;
  }
}
.cu-countdown-gc-content span {
  font-size: 18px;
}
@media (max-width: 575px) {
  .cu-countdown-gc-content h2 br {
    display: none;
  }
}
.cu-countdown-gc-wrap ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.cu-countdown-gc-wrap ul li {
  width: 76px;
  height: 80px;
  font-size: 34px;
  color: #62a403;
  background: var(--cu-common-white);
  border-color: var(--cu-common-white);
  padding-top: 15px;
}
.cu-countdown-gc-wrap ul li span {
  font-size: 15px;
  margin-top: 4px;
  text-transform: capitalize;
}
.cu-countdown-gc-thumb {
  position: absolute;
  bottom: -45px;
  right: -82px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cu-countdown-gc-thumb {
    width: 60%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-countdown-gc-thumb {
    position: inherit;
  }
}
.cu-countdown-ft-wrap {
  position: absolute;
  bottom: 20px;
  text-align: center;
}
.cu-countdown-ft-wrap ul {
  background: var(--cu-common-white);
  text-align: center;
  padding: 9px 15px 1px 15px;
  display: flex;
}
.cu-countdown-ft-wrap ul li {
  font-weight: 500;
  font-size: 16px;
  color: var(--cu-common-night);
  position: relative;
}
.cu-countdown-ft-wrap ul li span {
  margin-left: 1px;
}
.cu-countdown-ft-wrap ul li.list-inline-item:not(:last-child) {
  padding-right: 10px;
  margin-right: 5px !important;
}
.cu-countdown-ft-wrap ul li.list-inline-item:not(:last-child)::before {
  position: absolute;
  content: ":";
  top: 0;
  right: 0;
}

/*=============================
    32. testimonial
===============================*/
.cu-testimonial-quote {
  color: var(--cu-common-black);
}
.cu-testimonial-rating i {
  color: var(--cu-common-yellow);
}
.cu-testimonial-bg {
  background: var(--cu-common-evergreen);
}
.cu-testimonial-text {
  font-weight: 500;
  font-size: 24px;
  line-height: 142%;
  letter-spacing: -0.02em;
  color: var(--cu-common-black);
}
.cu-testimonial-dvdr {
  max-width: 147px;
  height: 1px;
  border-top: 1px dashed var(--cu-border-1);
}
.cu-testimonial-author .name {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--cu-common-black);
}
.cu-testimonial-box-right {
  margin-left: 100px;
  margin-right: 115px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-testimonial-box-right {
    margin-left: 100px;
    margin-right: 0px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-testimonial-box-right {
    margin-left: 0;
  }
}
.cu-testimonial-pagination {
  display: flex;
  gap: 20px;
}
.cu-testimonial-pagination span {
  width: 8px;
  height: 8px;
  background: var(--cu-common-black);
  opacity: 1;
  display: inline-block;
  transition: all 0.4s ease;
  position: relative;
  cursor: pointer;
}
.cu-testimonial-pagination span::before {
  position: absolute;
  content: "";
  width: 28px;
  height: 28px;
  border: 1px solid var(--cu-common-black);
  border-radius: 50%;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
}
.cu-testimonial-pagination span.swiper-pagination-bullet-active::before {
  opacity: 1;
}
.cu-testimonial-sf-item {
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 2px;
}
.cu-testimonial-sf-avatar img {
  width: 60px;
  border-radius: 100%;
  flex: 0 0 auto;
}
.cu-testimonial-sf-avatar-wrap {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.cu-testimonial-sf-title span {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: var(--cu-common-black);
  display: block;
}
.cu-testimonial-sf-content {
  padding: 30px 30px 30px 0px;
  margin-left: -20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-testimonial-sf-content {
    padding: 30px 30px 30px 30px;
    margin-left: 0;
  }
}
.cu-testimonial-sf-content p {
  font-size: 14px;
  line-height: 171%;
}
.cu-testimonial-sf-name {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: var(--cu-common-black);
}
.cu-testimonial-sf-rating-inner span {
  color: var(--cu-common-yellow-3);
  font-size: 14px;
}
.cu-testimonial-sf-verify span {
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  color: #565656;
}
.cu-testimonial-sf-thumb {
  height: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-testimonial-sf-thumb {
    margin-right: 0;
  }
}
.cu-testimonial-sf-thumb img {
  height: 100%;
  object-fit: cover;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-testimonial-sf-thumb img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }
}
.cu-testimonial-sf-pagenation span {
  width: 10px;
  height: 10px;
  background: var(--cu-common-blue);
  opacity: 0.5;
  transition: all 0.4s ease;
}
.cu-testimonial-sf-pagenation span.swiper-pagination-bullet-active {
  opacity: 1;
}
.cu-testimonial-jl-thumb-active .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cu-testimonial-jl-thumb-active .swiper-slide img {
  width: 120px;
  height: 120px;
  object-fit: cover;
}
.cu-testimonial-jl-content p {
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
  color: var(--cu-common-white);
}
@media (max-width: 575px) {
  .cu-testimonial-jl-content p {
    font-size: 18px;
  }
}
.cu-testimonial-jl-name h5 {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--cu-common-white);
}
.cu-testimonial-jl-name span {
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
}
.cu-testimonial-jl-pagination {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  left: 15px;
  right: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-testimonial-jl-pagination {
    top: 100%;
  }
}
.cu-testimonial-jl-pagination span {
  border: 1px solid #fff;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--cu-common-white);
  transition: all 0.4s ease;
}
.cu-testimonial-jl-pagination span:hover {
  background: var(--cu-common-white);
  color: var(--cu-common-black);
}
.cu-testimonial-et-style {
  background: #222222;
}
.cu-testimonial-et-style p {
  color: rgba(255, 255, 255, 0.75);
}
.cu-testimonial-et-style .cu-testimonial-sf-item {
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.cu-testimonial-et-style .cu-testimonial-sf-title span {
  color: var(--cu-common-white);
}
.cu-testimonial-et-style .cu-testimonial-sf-title span.price {
  color: var(--cu-common-yellow-3);
}
.cu-testimonial-et-style .cu-testimonial-sf-avatar-wrap {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.cu-testimonial-et-style .cu-testimonial-sf-name {
  color: var(--cu-common-white);
}
.cu-testimonial-et-style .cu-testimonial-sf-verify span {
  color: var(--cu-common-white);
}
.cu-testimonial-wt-style .cu-testimonial-jl-content p {
  color: var(--cu-common-black-2);
}
.cu-testimonial-wt-style .cu-testimonial-jl-name h5 {
  color: var(--cu-common-black-2);
}
.cu-testimonial-wt-style .cu-testimonial-jl-name span {
  color: #474747;
}
.cu-testimonial-wt-style .cu-testimonial-jl-pagination span {
  color: var(--cu-common-black-2);
  border-color: var(--cu-border-1);
  border-radius: 100px;
  width: 80px;
  height: 80px;
}
@media (max-width: 575px) {
  .cu-testimonial-wt-style .cu-testimonial-jl-pagination span {
    width: 50px;
    height: 50px;
  }
}
.cu-testimonial-wt-style .cu-testimonial-jl-pagination span:hover {
  background: var(--cu-common-black-2);
  color: var(--cu-common-white);
}
.cu-testimonial-wt-style .cu-testimonial-jl-thumb-active .swiper-slide img {
  border-radius: 100px;
  flex: 0 0 auto;
}
.cu-testimonial-gc-style {
  background: #F5F7EA;
}
.cu-testimonial-gc-style .cu-testimonial-jl-content p {
  color: var(--cu-common-black);
}
.cu-testimonial-gc-style .cu-testimonial-jl-name h5 {
  color: var(--cu-common-black);
}
.cu-testimonial-gc-style .cu-testimonial-jl-name span {
  color: var(--cu-common-green-2);
}
.cu-testimonial-gc-style .cu-testimonial-jl-pagination span {
  color: var(--cu-common-green-2);
}
.cu-testimonial-gc-style .cu-testimonial-jl-pagination span:hover {
  background: var(--cu-common-green-2);
  color: var(--cu-common-white);
}
.cu-testimonial-ft-style {
  background: #f5f5f2;
}
.cu-testimonial-ft-style .cu-testimonial-sf-pagenation span {
  background: var(--cu-common-night);
}

/*=============================
    12. discount
===============================*/
.cu-discount-subtitle {
  font-size: 18px;
  color: var(--cu-common-white);
}
.cu-discount-title {
  font-weight: 500;
  font-size: 40px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: var(--cu-common-white);
  text-transform: capitalize;
}
@media (max-width: 575px) {
  .cu-discount-title {
    font-size: 30px;
  }
}
.cu-discount-spacing {
  padding-top: 145px;
  padding-bottom: 150px;
}
.cu-discount-text {
  font-family: var(--cu-ff-mrs);
  font-weight: 400;
  font-size: 260px;
  line-height: 25%;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.4);
  position: absolute;
  bottom: 0;
  right: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .cu-discount-text {
    font-size: 200px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-discount-text {
    font-size: 170px;
    line-height: 50%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cu-discount-text {
    font-size: 130px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-discount-text {
    font-size: 100px;
  }
}
@media (max-width: 575px) {
  .cu-discount-text {
    font-size: 65px;
  }
}
.cu-discount-shoes-bigtext {
  font-weight: 700;
  font-size: 280px;
  letter-spacing: -0.04em;
  color: rgba(0, 0, 0, 0.1);
  transform: rotate(-49deg);
  position: absolute;
  top: 110px;
  left: -49px;
  z-index: -1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-discount-shoes-bigtext {
    font-size: 178px;
    top: 50px;
  }
}
@media (max-width: 575px) {
  .cu-discount-shoes-bigtext {
    font-size: 148px;
    top: 0;
  }
}
.cu-discount-shoes-offer {
  position: absolute;
  top: 68px;
  left: 160px;
  z-index: 2;
  -moz-animation: cuupdown 2.3s ease-in-out 2.3s forwards infinite alternate;
  -webkit-animation: cuupdown 2.3s ease-in-out 2.3s forwards infinite alternate;
  animation: cuupdown 2.3s ease-in-out 2.3s forwards infinite alternate;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-discount-shoes-offer {
    left: 0;
  }
}
@media (max-width: 575px) {
  .cu-discount-shoes-offer {
    width: 70px;
  }
}
.cu-discount-shoes-shape {
  margin-top: -150px;
}
@media (max-width: 575px) {
  .cu-discount-shoes-shape {
    margin-top: -50px;
  }
}
.cu-discount-shoes-wrap:hover .cu-discount-shoes-thumb img {
  transform: scale(1.06);
}
.cu-discount-shoes-wrap .cu-product-tooltip {
  color: var(--cu-common-white);
  background-color: var(--cu-common-black);
  visibility: visible;
  opacity: 1;
  right: 101px;
  padding: 8px 15px;
  border-radius: 14px;
  top: 70%;
}
.cu-discount-shoes-wrap .cu-product-tooltip:after {
  position: absolute;
  content: "";
  width: 11px;
  height: 11px;
  background: var(--cu-common-black);
  border-radius: 20px;
  top: 8px;
  left: -24px;
  animation: animate-pulse-2 3s linear infinite;
}
.cu-discount-shoes-wrap .cu-product-tooltip::before {
  border-right: 8px solid var(--cu-common-black);
  border-left: 0;
  right: auto;
  left: -5px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-discount-shoes-content {
    margin-left: 0;
    margin-right: 0;
  }
}
.cu-discount-shoes-content span {
  font-weight: 500;
  font-size: 18px;
  color: var(--cu-common-black);
}
.cu-discount-shoes-content h2 {
  font-weight: 600;
  font-size: 60px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: var(--cu-common-black);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-discount-shoes-content h2 {
    font-size: 55px;
  }
}
@media (max-width: 575px) {
  .cu-discount-shoes-content h2 {
    font-size: 50px;
  }
}
.cu-discount-shoes-content p {
  font-weight: 400;
  font-size: 14px;
  line-height: 171%;
  color: var(--cu-common-black);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-discount-shoes-thumb {
    margin-right: 0;
  }
}
.cu-discount-shoes-thumb img {
  transition: all 0.6s ease;
}

/*=============================
    09. contact
===============================*/
.cu-contact-map-box {
  line-height: 1;
}
.cu-contact-map-box iframe {
  height: 640px;
  width: 100%;
  filter: saturate(0);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-contact-map-box iframe {
    height: 540px;
  }
}
.cu-contact-map-info {
  border-radius: 10px;
  width: 320px;
  background: var(--cu-common-white);
  position: absolute;
  top: 110px;
  right: 118px;
  padding: 34px 40px 35px 40px;
}
@media (max-width: 575px) {
  .cu-contact-map-info {
    right: 0;
  }
}
.cu-contact-map-info h5 {
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.02em;
}
.cu-contact-map-info a {
  color: var(--cu-grey-1);
  display: block;
  line-height: 162%;
}
.cu-contact-map-info a:hover {
  color: var(--cu-theme-primary);
}
.cu-contact-2-map {
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-contact-2-map {
    height: 400px;
  }
}
.cu-contact-2-map iframe {
  filter: saturate(0);
  width: 100%;
  height: 100%;
}
.cu-contact-2-info {
  padding: 50px 60px 55px 57px;
}
@media (max-width: 575px) {
  .cu-contact-2-info {
    padding: 20px 20px 25px 17px;
  }
}
.cu-contact-2-info-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 180%;
  text-transform: capitalize;
}
.cu-contact-2-info > p {
  line-height: 30px;
  text-transform: capitalize;
  color: var(--cu-grey-1);
}
.cu-contact-2-info-list ul li {
  display: flex;
  margin-bottom: 30px;
}
.cu-contact-2-info-list ul li .icons {
  font-size: 35px;
  color: var(--cu-theme-primary);
  margin-right: 15px;
  flex: 0 0 auto;
}
.cu-contact-2-info-list ul li .address span {
  font-weight: 500;
  font-size: 14px;
  text-transform: capitalize;
  color: var(--cu-common-black);
  display: block;
  line-height: 1.2;
}
.cu-contact-2-info-list ul li .address a {
  color: var(--cu-grey-1);
}
.cu-contact-2-info-list ul li .address a:hover {
  color: var(--cu-theme-primary);
}
.cu-contact-2-info-social {
  display: flex;
}
.cu-contact-2-info-social a {
  font-size: 18px;
  margin-right: 5px;
  color: var(--cu-grey-1);
  width: 42px;
  height: 42px;
  border: 1px solid var(--cu-border-1);
  border-radius: 100px;
  line-height: 42px;
  text-align: center;
}
.cu-contact-2-info-social a:hover {
  color: var(--cu-common-white);
  background: var(--cu-theme-primary);
  border-color: var(--cu-theme-primary);
}
.cu-contact-2-info-social a svg {
  transform: translateY(-2px);
}
.cu-contact-2-form-box {
  padding: 50px 50px 15px 50px;
}
@media (max-width: 575px) {
  .cu-contact-2-form-box {
    padding: 20px 20px 0px 20px;
  }
}

.grey-bg {
  background: var(--cu-grey-2);
}

/*=============================
    33. text
===============================*/
.cu-text-content {
  flex: 0 0 auto;
}
.cu-text-content span {
  font-weight: 500;
  font-size: 18px;
  line-height: 111%;
  letter-spacing: -0.02em;
  color: var(--cu-common-white);
}
.cu-text-slider-bg {
  background: var(--cu-theme-primary);
  padding: 17px 0;
}
.cu-text-slider-wrap {
  -webkit-animation: slide-har 15s linear infinite;
  animation: slide-har 15s linear infinite;
  display: flex;
  gap: 110px;
}
.cu-text-slider-wrap:hover {
  animation-play-state: paused;
}
.cu-text-cw-slider-bg {
  background: var(--cu-common-yellow-2);
}
.cu-text-et-slider-bg {
  background: var(--cu-common-blue-2);
}

/*=============================
    06. cu-cartmini
===============================*/
.cu-cartmini-area {
  position: fixed;
  right: 0;
  top: 0;
  width: 450px;
  height: 100%;
  -webkit-transform: translateX(calc(100% + 80px));
  -moz-transform: translateX(calc(100% + 80px));
  -ms-transform: translateX(calc(100% + 80px));
  -o-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
  background: var(--cu-common-white) none repeat scroll 0 0;
  -webkit-transition: 0.45s ease-in-out, opacity 0.3s 0s ease-out;
  -moz-transition: 0.45s ease-in-out, opacity 0.3s 0s ease-out;
  -ms-transition: 0.45s ease-in-out, opacity 0.3s 0s ease-out;
  -o-transition: 0.45s ease-in-out, opacity 0.3s 0s ease-out;
  transition: 0.45s ease-in-out, opacity 0.3s 0s ease-out;
  z-index: 9999;
  overflow: hidden;
  scrollbar-width: none;
}
@media (max-width: 575px) {
  .cu-cartmini-area {
    width: 100%;
  }
}
.cu-cartmini-area::-webkit-scrollbar {
  display: none;
}
.cu-cartmini-area.cu-cartmini-opened {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.cu-cartmini-area .cu-quantity-input {
  height: 33px !important;
}
.cu-cartmini-wrapper {
  position: relative;
  min-height: 100%;
  padding-left: 25px;
  padding-right: 25px;
}
.cu-cartmini-top-title {
  padding: 20px 0;
  border-bottom: 1px solid var(--cu-border-1);
}
.cu-cartmini-top-title h4 {
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 0;
}
.cu-cartmini-close {
  position: absolute;
  top: 17px;
  right: 0;
}
.cu-cartmini-close-btn {
  background: transparent;
  color: var(--cu-common-black);
  font-size: 22px;
}
.cu-cartmini-close-btn:hover {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.cu-cartmini-shipping {
  padding: 15px 0;
  padding-top: 35px;
  border-bottom: 1px solid var(--cu-border-1);
}
.cu-cartmini-shipping p {
  margin-top: 25px;
  margin-bottom: 0;
}
.cu-cartmini-shipping p span {
  color: var(--cu-common-black);
  font-weight: 600;
}
.cu-cartmini-widget {
  height: calc(100vh - 380px);
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}
.cu-cartmini-widget::-webkit-scrollbar {
  display: none;
}
.cu-cartmini-widget-item {
  position: relative;
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid rgba(129, 129, 129, 0.2);
}
.cu-cartmini-widget-item:last-child {
  border-bottom: 0;
}
.cu-cartmini-thumb {
  border: 1px solid var(--cu-border-primary);
  margin-right: 15px;
}
.cu-cartmini-thumb img {
  width: 70px;
  height: auto;
}
.cu-cartmini-title {
  font-size: 15px;
  margin-bottom: 0;
  font-weight: 500;
}
.cu-cartmini-title a:hover {
  color: var(--cu-theme-primary);
}
.cu-cartmini-content {
  padding-right: 15px;
}
.cu-cartmini-content .cu-product-quantity {
  width: 75px;
  padding: 0;
}
.cu-cartmini-content .cu-product-quantity .cu-cart-input[type=text] {
  height: 30px;
  text-align: center;
  font-size: 13px;
  border: 1px solid var(--cu-border-primary);
  background-color: var(--cu-common-white);
  padding: 0;
}
.cu-cartmini-content .cu-product-quantity .cu-cart-plus,
.cu-cartmini-content .cu-product-quantity .cu-cart-minus {
  width: 20px;
  height: 30px;
  line-height: 30px;
  display: inline-block;
  text-align: center;
  font-size: 13px;
  left: 3px;
}
.cu-cartmini-content .cu-product-quantity .cu-cart-plus svg,
.cu-cartmini-content .cu-product-quantity .cu-cart-minus svg {
  -webkit-transform: translateY(-1px);
  -moz-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  -o-transform: translateY(-1px);
  transform: translateY(-1px);
  width: 10px;
}
.cu-cartmini-content .cu-product-quantity .cu-cart-plus::after,
.cu-cartmini-content .cu-product-quantity .cu-cart-minus::after {
  display: none;
}
.cu-cartmini-content .cu-product-quantity .cu-cart-plus {
  left: auto;
  right: 3px;
}
.cu-cartmini-del {
  position: absolute;
  top: 15px;
  right: 0;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  color: var(--cu-common-black);
  font-size: 14px;
}
.cu-cartmini-del:hover {
  color: var(--cu-theme-primary);
}
.cu-cartmini-checkout {
  padding-top: 15px;
  padding-bottom: 85px;
  width: 100%;
  background: var(--cu-common-white);
  border-top: 2px solid var(--cu-border-primary);
}
.cu-cartmini-checkout-title h4 {
  font-size: 15px;
  display: inline-block;
  font-weight: 500;
  margin-bottom: 0;
  text-transform: capitalize;
}
.cu-cartmini-checkout-title span {
  float: right;
  font-size: 15px;
  color: var(--cu-common-black);
  font-weight: 500;
}
.cu-cartmini-checkout-btn .cu-btn {
  font-size: 15px;
  text-transform: capitalize;
  padding: 10px 30px;
  text-align: center;
}
.cu-cartmini-checkout-btn .cu-btn:hover {
  background-color: var(--cu-theme-primary);
  color: var(--cu-common-white);
  border-color: var(--cu-theme-primary);
}
.cu-cartmini-checkout-btn .cu-btn-border:hover {
  background-color: var(--cu-theme-primary);
  color: var(--cu-common-white);
  border-color: var(--cu-theme-primary);
}
.cu-cartmini-price {
  font-size: 14px;
  font-weight: 500;
  color: var(--cu-theme-primary);
}
.cu-cartmini-price-wrapper {
  margin-bottom: 5px;
}
.cu-cartmini-quantity {
  font-size: 12px;
  font-weight: 500;
}
.cu-cartmini-empty {
  margin-top: 150px;
}
.cu-cartmini-empty img {
  margin-bottom: 30px;
}
.cu-cartmini-empty p {
  font-size: 16px;
  color: var(--cu-common-black);
  margin-bottom: 15px;
}
.cu-cartmini-empty .cu-btn {
  background-color: var(--cu-grey-1);
  font-size: 15px;
  text-transform: capitalize;
  color: var(--cu-common-black);
  padding: 10px 30px;
  text-align: center;
}
.cu-cartmini-empty .cu-btn:hover {
  background-color: var(--cu-common-black);
  color: var(--cu-common-white);
}
.cu-cartmini-cw-style .cu-progress-car {
  color: var(--cu-common-yellow-2);
  border: 1px solid var(--cu-common-yellow-2);
}
.cu-cartmini-cw-style .cu-progress-inner .progress-bar {
  background-color: var(--cu-common-yellow-2);
}
.cu-cartmini-cw-style .cu-cartmini-price {
  color: var(--cu-common-yellow-2);
}
.cu-cartmini-cw-style .cu-cartmini-checkout-btn .cu-btn:hover {
  background-color: var(--cu-common-yellow-2);
  border-color: var(--cu-common-yellow-2);
}
.cu-cartmini-cw-style .cu-cartmini-del:hover {
  color: var(--cu-common-yellow-2);
}
.cu-cartmini-cw-style .cu-cartmini-title a:hover {
  color: var(--cu-common-yellow-2);
}
.cu-cartmini-fs-style .cu-progress-car {
  color: var(--cu-common-blue);
  border: 1px solid var(--cu-common-blue);
}
.cu-cartmini-fs-style .cu-progress-inner .progress-bar {
  background-color: var(--cu-common-blue);
}
.cu-cartmini-fs-style .cu-cartmini-price {
  color: var(--cu-common-blue);
}
.cu-cartmini-fs-style .cu-cartmini-checkout-btn .cu-btn:hover {
  background-color: var(--cu-common-blue);
  border-color: var(--cu-common-blue);
}
.cu-cartmini-fs-style .cu-cartmini-del:hover {
  color: var(--cu-common-blue);
}
.cu-cartmini-fs-style .cu-cartmini-title a:hover {
  color: var(--cu-common-blue);
}
.cu-cartmini-jl-style .cu-progress-car {
  color: var(--cu-common-green);
  border: 1px solid var(--cu-common-green);
}
.cu-cartmini-jl-style .cu-progress-inner .progress-bar {
  background-color: var(--cu-common-green);
}
.cu-cartmini-jl-style .cu-cartmini-price {
  color: var(--cu-common-green);
}
.cu-cartmini-jl-style .cu-cartmini-checkout-btn .cu-btn:hover {
  background-color: var(--cu-common-green);
  border-color: var(--cu-common-green);
}
.cu-cartmini-jl-style .cu-cartmini-del:hover {
  color: var(--cu-common-green);
}
.cu-cartmini-jl-style .cu-cartmini-title a:hover {
  color: var(--cu-common-green);
}
.cu-cartmini-et-style .cu-progress-car {
  color: var(--cu-common-black-2);
  border: 1px solid var(--cu-common-blue-2);
}
.cu-cartmini-et-style .cu-progress-inner .progress-bar {
  background-color: var(--cu-common-blue-2);
}
.cu-cartmini-et-style .cu-cartmini-price {
  color: var(--cu-common-blue-2);
}
.cu-cartmini-et-style .cu-cartmini-checkout-btn .cu-btn:hover {
  background-color: var(--cu-common-blue-2);
  border-color: var(--cu-common-blue-2);
}
.cu-cartmini-et-style .cu-cartmini-del:hover {
  color: var(--cu-common-blue-2);
}
.cu-cartmini-et-style .cu-cartmini-title a:hover {
  color: var(--cu-common-blue-2);
}
.cu-cartmini-et-style .cu-cartmini-thumb {
  border: 1px solid var(--cu-border-1);
  padding-top: 10px;
}
.cu-cartmini-wt-style .cu-progress-car {
  color: var(--cu-common-black-2);
  border: 1px solid var(--cu-common-black-2);
}
.cu-cartmini-wt-style .cu-progress-inner .progress-bar {
  background-color: var(--cu-common-black-2);
}
.cu-cartmini-wt-style .cu-cartmini-price {
  color: var(--cu-common-black-2);
}
.cu-cartmini-wt-style .cu-cartmini-checkout-btn .cu-btn:hover {
  background-color: var(--cu-common-black-2);
  border-color: var(--cu-common-black-2);
}
.cu-cartmini-wt-style .cu-cartmini-del:hover {
  color: var(--cu-common-black-2);
}
.cu-cartmini-wt-style .cu-cartmini-title a:hover {
  color: var(--cu-common-black-2);
}
.cu-cartmini-wt-style .cu-cartmini-thumb {
  border: 1px solid var(--cu-border-1);
  padding: 10px;
}
.cu-cartmini-gc-style .cu-progress-car {
  color: var(--cu-common-green-2);
  border: 1px solid var(--cu-common-green-2);
}
.cu-cartmini-gc-style .cu-progress-inner .progress-bar {
  background-color: var(--cu-common-green-2);
}
.cu-cartmini-gc-style .cu-cartmini-price {
  color: var(--cu-common-green-2);
}
.cu-cartmini-gc-style .cu-cartmini-checkout-btn .cu-btn:hover {
  background-color: var(--cu-common-green-2);
  border-color: var(--cu-common-green-2);
}
.cu-cartmini-gc-style .cu-cartmini-del:hover {
  color: var(--cu-common-green-2);
}
.cu-cartmini-gc-style .cu-cartmini-title a:hover {
  color: var(--cu-common-green-2);
}
.cu-cartmini-gc-style .cu-cartmini-thumb {
  background: #f5f7ea;
  padding: 10px;
}
.cu-cartmini-ft-style .cu-progress-car {
  color: var(--cu-common-night);
  border: 1px solid var(--cu-common-night);
}
.cu-cartmini-ft-style .cu-progress-inner .progress-bar {
  background-color: var(--cu-common-night);
}
.cu-cartmini-ft-style .cu-cartmini-price {
  color: var(--cu-common-night);
}
.cu-cartmini-ft-style .cu-cartmini-checkout-btn .cu-btn:hover {
  background-color: var(--cu-common-night);
  border-color: var(--cu-common-night);
}
.cu-cartmini-ft-style .cu-cartmini-del:hover {
  color: var(--cu-common-night);
}
.cu-cartmini-ft-style .cu-cartmini-title a:hover {
  color: var(--cu-common-night);
}
.cu-cartmini-ft-style .cu-cartmini-thumb {
  background: #f5f5f2;
  padding: 10px;
}
.cu-cartmini-shoes-style .cu-progress-car {
  color: var(--cu-common-green-2);
  border: 1px solid var(--cu-common-green-2);
}
.cu-cartmini-shoes-style .cu-progress-inner .progress-bar {
  background-color: var(--cu-common-green-2);
}
.cu-cartmini-shoes-style .cu-cartmini-price {
  color: var(--cu-common-green-2);
}
.cu-cartmini-shoes-style .cu-cartmini-checkout-btn .cu-btn:hover {
  background-color: var(--cu-common-green-2);
  border-color: var(--cu-common-green-2);
}
.cu-cartmini-shoes-style .cu-cartmini-del:hover {
  color: var(--cu-common-green-2);
}
.cu-cartmini-shoes-style .cu-cartmini-title a:hover {
  color: var(--cu-common-green-2);
}

.body-overlay {
  background-color: var(--cu-common-black);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 99;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.body-overlay:hover {
  cursor: url("../img/icon/cross-out.png"), pointer;
}

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

.cu-increment-quantity {
  width: 122px;
  position: relative;
  background: var(--cu-common-white);
  border: 1px solid var(--cu-border-1);
}
.cu-increment-quantity .cu-quantity-input {
  height: 46px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  border: none;
  background-color: var(--cu-common-white);
  padding: 0 45px;
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 1px 3px 0 rgba(1, 15, 28, 0.1);
  color: var(--cu-common-black);
}
.cu-increment-quantity span {
  width: 35px;
  height: 34px;
  line-height: 34px;
  display: inline-block;
  text-align: center;
  font-size: 16px;
  color: #6f7071;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all 0.4s ease;
  margin: 0 3px !important;
  cursor: pointer;
}
.cu-increment-quantity span::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 26px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  background-color: #e1e1e1;
}
.cu-increment-quantity span.decrement {
  right: auto;
  left: 0;
}
.cu-increment-quantity span.decrement::before {
  left: auto;
  right: 0;
}

/*=============================
    17. footer
===============================*/
.cu-footer-talk span {
  color: var(--cu-grey-1);
}
.cu-footer-talk h4 {
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.02em;
}
.cu-footer-talk h4 a:hover {
  color: var(--cu-theme-primary);
}
.cu-footer-contact-content a:hover {
  color: var(--cu-theme-primary);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-footer-widget {
    margin-left: 0;
  }
}
.cu-footer-widget-title {
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.02em;
}
.cu-footer-widget-content ul li:not(:last-child) {
  margin-bottom: 10px;
}
.cu-footer-widget-content ul li a {
  position: relative;
  padding-left: 14px;
}
.cu-footer-widget-content ul li a::after {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background-color: var(--cu-grey-1);
  border-radius: 50%;
}
.cu-footer-widget-content ul li a:hover {
  color: var(--cu-theme-primary);
}
.cu-footer-widget-content ul li a:hover::after {
  background: var(--cu-theme-primary);
}
.cu-footer-widget-content p {
  line-height: 150%;
}
.cu-footer-widget-form input {
  font-weight: 400;
  font-size: 14px;
  color: var(--cu-common-black);
  height: 52px;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--cu-common-white);
  padding: 5px 24px;
  padding-right: 130px;
}
.cu-footer-widget-form input:focus {
  border-color: var(--cu-theme-primary);
}
.cu-footer-widget-form input::-webkit-input-placeholder {
  font-weight: 400;
  font-size: 14px;
  color: var(--cu-grey-1);
}
.cu-footer-widget-form input:-moz-placeholder {
  font-weight: 400;
  font-size: 14px;
  color: var(--cu-grey-1);
}
.cu-footer-widget-form input::-moz-placeholder {
  font-weight: 400;
  font-size: 14px;
  color: var(--cu-grey-1);
}
.cu-footer-widget-form input:-ms-input-placeholder {
  font-weight: 400;
  font-size: 14px;
  color: var(--cu-grey-1);
}
.cu-footer-widget-form button {
  font-weight: 500;
  font-size: 16px;
  color: var(--cu-common-white);
  padding: 13px 31px;
  background: var(--cu-common-black);
  position: absolute;
  right: 0;
  top: 0;
}
.cu-footer-widget-form button:hover {
  background: var(--cu-theme-primary);
  color: var(--cu-common-white);
}
.cu-footer-noti-icon {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  background: var(--cu-common-white);
  flex: 0 0 auto;
}
.cu-footer-noti-icon svg {
  -webkit-animation: ring 4s 0.7s ease-in-out infinite;
  -moz-animation: ring 4s 0.7s ease-in-out infinite;
  animation: ring 4s 0.7s ease-in-out infinite;
}
.cu-footer-noti-text {
  font-size: 14px;
  line-height: 157%;
}
.cu-footer-noti-text a {
  color: var(--cu-common-black);
}
.cu-footer-noti-text a:hover {
  color: var(--cu-theme-primary);
}
.cu-footer-copyright-wrap {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 30px;
  padding-bottom: 15px;
}
.cu-footer-copyright p {
  color: #838383;
  margin-bottom: 0;
}
.cu-footer-copyright p a {
  color: var(--cu-common-black);
  font-weight: 500;
}
.cu-footer-copyright p a:hover {
  color: var(--cu-theme-primary);
}
.cu-footer-social {
  display: flex;
  gap: 6px;
}
.cu-footer-social span a {
  border: 1px solid rgba(0, 0, 0, 0.08);
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 21px;
  background: var(--cu-common-white);
}
.cu-footer-social span a:hover {
  background: var(--cu-theme-primary);
  color: var(--cu-common-white);
}
.cu-footer-payment a {
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 1px 7px;
  background: var(--cu-common-white);
  display: inline-block;
  text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-footer-cw-widget {
    margin-right: 0;
  }
}
.cu-footer-cw-widget .cu-footer-widget-title {
  color: var(--cu-common-white);
}
.cu-footer-cw-widget .cu-footer-widget-content p {
  color: rgba(255, 255, 255, 0.65);
}
.cu-footer-cw-widget .cu-footer-widget-form input {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: var(--cu-common-white);
}
.cu-footer-cw-widget .cu-footer-widget-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.cu-footer-cw-widget .cu-footer-widget-form input:focus {
  border-color: var(--cu-common-yellow-2);
}
.cu-footer-cw-widget .cu-footer-widget-form button {
  border: none;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: var(--cu-common-white);
}
.cu-footer-cw-widget .cu-footer-widget-form button:hover {
  background: var(--cu-common-yellow-2);
}
.cu-footer-cw-widget .cu-footer-noti-icon {
  background: rgba(255, 255, 255, 0.1);
  color: var(--cu-common-white);
}
.cu-footer-cw-widget .cu-footer-noti-text {
  color: rgba(255, 255, 255, 0.65);
}
.cu-footer-cw-widget .cu-footer-noti-text a {
  color: var(--cu-common-white);
}
.cu-footer-cw-widget .cu-footer-noti-text a:hover {
  color: var(--cu-common-yellow-2);
}
.cu-footer-cw-widget .cu-footer-widget-content ul li a {
  color: rgba(255, 255, 255, 0.6);
}
.cu-footer-cw-widget .cu-footer-widget-content ul li a::after {
  background: rgba(255, 255, 255, 0.6);
}
.cu-footer-cw-widget .cu-footer-widget-content ul li a:hover {
  color: var(--cu-common-white);
}
.cu-footer-cw-widget .cu-footer-widget-content ul li a:hover::after {
  background: var(--cu-common-white);
}
.cu-footer-cw-copyright-wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 35px;
  padding-bottom: 20px;
}
.cu-footer-cw-copyright-wrap .cu-footer-copyright p {
  color: rgba(255, 255, 255, 0.65);
}
.cu-footer-cw-copyright-wrap .cu-footer-copyright p a {
  color: var(--cu-common-white);
}
.cu-footer-cw-copyright-wrap .cu-footer-copyright p a:hover {
  color: var(--cu-common-yellow-2);
}
.cu-footer-cw-copyright-wrap .cu-footer-social {
  justify-content: flex-end;
  gap: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-footer-cw-copyright-wrap .cu-footer-social {
    justify-content: flex-start;
  }
}
.cu-footer-cw-copyright-wrap .cu-footer-social span a {
  width: auto;
  height: auto;
  color: rgba(255, 255, 255, 0.45);
  background: transparent;
}
.cu-footer-cw-copyright-wrap .cu-footer-social span a:hover {
  color: var(--cu-common-white);
}
.cu-footer-sf-wrap .cu-footer-widget-content ul li a:hover {
  color: var(--cu-common-blue);
}
.cu-footer-sf-wrap .cu-footer-widget-content ul li a:hover::after {
  background: var(--cu-common-blue);
}
.cu-footer-sf-wrap .cu-footer-copyright p a:hover {
  color: var(--cu-common-blue);
}
.cu-footer-sf-wrap .cu-footer-noti-text a:hover {
  color: var(--cu-common-blue);
}
.cu-footer-sf-wrap .cu-footer-widget-form button:hover {
  background: var(--cu-common-blue);
}
.cu-footer-sf-wrap .cu-footer-widget-form input:focus {
  border-color: var(--cu-common-blue);
}
.cu-footer-sf-wrap .cu-footer-talk h4 a:hover {
  color: var(--cu-common-blue);
}
.cu-footer-sf-wrap .cu-footer-contact-content a:hover {
  color: var(--cu-common-blue);
}
.cu-footer-sf-wrap .cu-footer-social span a {
  color: var(--cu-common-blue);
}
.cu-footer-sf-wrap .cu-footer-social span a:hover {
  background: var(--cu-common-blue);
  color: var(--cu-common-white);
}
.cu-footer-jl-wrap .cu-footer-widget-title {
  color: var(--cu-common-white);
}
.cu-footer-jl-wrap .cu-footer-widget-content ul li a {
  color: rgba(255, 255, 255, 0.75);
}
.cu-footer-jl-wrap .cu-footer-widget-content ul li a:hover {
  color: var(--cu-common-white);
}
.cu-footer-jl-wrap .cu-footer-widget-content ul li a::after {
  background: rgba(255, 255, 255, 0.75);
}
.cu-footer-jl-wrap .cu-footer-widget-content ul li a:hover::after {
  background: var(--cu-common-white);
}
.cu-footer-jl-wrap .cu-footer-widget-content p {
  color: rgba(255, 255, 255, 0.75);
}
.cu-footer-jl-wrap .cu-footer-talk span {
  color: rgba(255, 255, 255, 0.75);
}
.cu-footer-jl-wrap .cu-footer-talk h4 {
  color: var(--cu-common-white);
}
.cu-footer-jl-wrap .cu-footer-talk h4 a:hover {
  color: var(--cu-common-white);
}
.cu-footer-jl-wrap .cu-footer-contact-content a {
  color: rgba(255, 255, 255, 0.75);
}
.cu-footer-jl-wrap .cu-footer-contact-content a:hover {
  color: var(--cu-common-white);
}
.cu-footer-jl-wrap .cu-footer-contact-icon.mr-10 {
  color: rgba(255, 255, 255, 0.75);
}
.cu-footer-jl-wrap .cu-footer-noti-text {
  color: rgba(255, 255, 255, 0.75);
}
.cu-footer-jl-wrap .cu-footer-noti-text a {
  color: var(--cu-common-white);
}
.cu-footer-jl-wrap .cu-footer-widget-form input {
  color: var(--cu-common-white);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: transparent;
}
.cu-footer-jl-wrap .cu-footer-widget-form input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.75);
}
.cu-footer-jl-wrap .cu-footer-widget-form input:-moz-placeholder {
  color: rgba(255, 255, 255, 0.75);
}
.cu-footer-jl-wrap .cu-footer-widget-form input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.75);
}
.cu-footer-jl-wrap .cu-footer-widget-form input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.75);
}
.cu-footer-jl-wrap .cu-footer-widget-form input:focus {
  border-color: var(--cu-common-white);
}
.cu-footer-jl-wrap .cu-footer-widget-form button {
  color: var(--cu-common-white);
  background: transparent;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}
.cu-footer-jl-wrap .cu-footer-widget-form button:hover {
  background: var(--cu-common-white);
  color: var(--cu-common-black);
}
.cu-footer-jl-wrap .cu-footer-noti-icon {
  background: rgba(255, 255, 255, 0.06);
  color: var(--cu-common-white);
}
.cu-footer-jl-wrap .cu-footer-copyright-wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.cu-footer-jl-wrap .cu-footer-copyright p {
  color: rgba(255, 255, 255, 0.75);
}
.cu-footer-jl-wrap .cu-footer-copyright p a {
  color: var(--cu-common-white);
}
.cu-footer-jl-wrap .cu-footer-social span a {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  color: var(--cu-common-white);
}
.cu-footer-jl-wrap .cu-footer-social span a:hover {
  background: var(--cu-common-white);
  color: var(--cu-common-black);
}
.cu-footer-et-style {
  background: #222;
}
.cu-footer-et-style .cu-footer-widget-content ul li a:hover {
  color: var(--cu-common-yellow-3);
}
.cu-footer-et-style .cu-footer-widget-content ul li a:hover::after {
  background: var(--cu-common-yellow-3);
}
.cu-footer-et-style .cu-footer-contact-content a:hover {
  color: var(--cu-common-yellow-3);
}
.cu-footer-et-style .cu-footer-talk h4 a:hover {
  color: var(--cu-common-yellow-3);
}
.cu-footer-et-style .cu-footer-widget-form button:hover {
  background: var(--cu-common-yellow-3);
}
.cu-footer-et-style .cu-footer-widget-form input:focus {
  border-color: var(--cu-common-yellow-3);
}
.cu-footer-et-style .cu-footer-noti-text a:hover {
  color: var(--cu-common-yellow-3);
}
.cu-footer-et-style .cu-footer-social span a:hover {
  background: var(--cu-common-yellow-3);
  color: var(--cu-common-black);
}
.cu-footer-et-style .cu-footer-copyright p a:hover {
  color: var(--cu-common-yellow-3);
}
.cu-footer-wt-style .cu-footer-widget-form button:hover {
  background: var(--cu-common-white);
  color: var(--cu-common-black-2);
}
.cu-footer-wt-style .cu-footer-widget-form input:focus {
  border-color: var(--cu-common-white);
}
.cu-footer-wt-style .cu-footer-noti-text a:hover {
  color: rgba(255, 255, 255, 0.6);
}
.cu-footer-wt-style .cu-footer-copyright p a:hover {
  color: rgba(255, 255, 255, 0.6);
}
.cu-footer-gc-style {
  background: #080809;
}
.cu-footer-gc-style .cu-footer-widget-content ul li a:hover {
  color: var(--cu-common-green-2);
}
.cu-footer-gc-style .cu-footer-widget-content ul li a:hover::after {
  background: var(--cu-common-green-2);
}
.cu-footer-gc-style .cu-footer-widget-form input {
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.cu-footer-gc-style .cu-footer-widget-form input:focus {
  border-color: var(--cu-common-green-2);
}
.cu-footer-gc-style .cu-footer-widget-form button:hover {
  background: var(--cu-common-green-2);
  color: var(--cu-common-white);
}
.cu-footer-gc-style .cu-footer-talk h4 a:hover {
  color: var(--cu-common-green-2);
}
.cu-footer-gc-style .cu-footer-contact-content a:hover {
  color: var(--cu-common-green-2);
}
.cu-footer-gc-style .cu-footer-copyright p a:hover {
  color: var(--cu-common-green-2);
}
.cu-footer-gc-style .cu-footer-social span a:hover {
  background: var(--cu-common-green-2);
  color: var(--cu-common-white);
}
.cu-footer-ft-wrap .cu-footer-copyright-wrap {
  border-top: none;
  padding: 0;
}
.cu-footer-ft-wrap .cu-footer-social span a {
  color: var(--cu-common-black);
}
.cu-footer-ft-wrap .cu-footer-social span a:hover {
  background: var(--cu-common-night);
}
.cu-footer-ft-wrap .cu-footer-copyright p a:hover {
  color: var(--cu-common-night);
}
.cu-footer-ft-wrap .cu-footer-widget-content ul li a:hover {
  color: var(--cu-common-night);
}
.cu-footer-ft-wrap .cu-footer-widget-content ul li a:hover::after {
  background: var(--cu-common-night);
}
.cu-footer-ft-wrap .cu-footer-talk h4 a:hover {
  color: var(--cu-common-night);
}
.cu-footer-ft-wrap .cu-footer-contact-content a:hover {
  color: var(--cu-common-night);
}
.cu-footer-ft-copyright {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  background: var(--cu-common-white);
  padding: 22px 25px 9px 25px;
}
.cu-footer-shoes-style .cu-footer-noti-text a:hover {
  color: var(--cu-common-spring);
}
.cu-footer-shoes-style .cu-footer-widget-form button:hover {
  background: var(--cu-common-spring);
  color: var(--cu-common-black);
}
.cu-footer-shoes-style .cu-footer-widget-form input:focus {
  border-color: var(--cu-common-spring);
}
.cu-footer-shoes-style .cu-footer-copyright p a:hover {
  color: var(--cu-common-spring);
}

/*=============================
    07. categoris
===============================*/
.cu-categoris-cw-title {
  font-weight: 500;
  font-size: 30px;
  letter-spacing: -0.02em;
  color: var(--cu-common-white);
}
@media (max-width: 575px) {
  .cu-categoris-cw-title {
    font-size: 25px;
  }
}
.cu-categoris-cw-title a:hover {
  color: var(--cu-common-white);
}
.cu-categoris-cw-wrap {
  overflow: hidden;
}
.cu-categoris-cw-wrap:hover .cu-btn {
  opacity: 1;
}
.cu-categoris-cw-wrap:hover .cu-categoris-cw-content {
  bottom: 30px;
}
@media (max-width: 575px) {
  .cu-categoris-cw-wrap:hover .cu-categoris-cw-content {
    bottom: 10px;
  }
}
.cu-categoris-cw-wrap:hover .cu-categoris-cw-thumb img {
  transform: scale(1.1);
}
.cu-categoris-cw-thumb {
  overflow: hidden;
}
.cu-categoris-cw-thumb img {
  transition: all 0.6s ease;
}
.cu-categoris-cw-content {
  position: absolute;
  bottom: -38px;
  left: 30px;
  overflow: hidden;
  padding: 30px;
  transition: all 0.4s ease;
}
@media (max-width: 575px) {
  .cu-categoris-cw-content {
    left: 10px;
  }
}
.cu-categoris-cw-content .cu-btn {
  opacity: 0;
}
.cu-categoris-jl-btn {
  font-weight: 500;
  font-size: 16px;
  color: var(--cu-common-black);
  background: rgba(255, 255, 255, 0.8);
  padding: 10px 20px;
  display: block;
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cu-categoris-jl-btn {
    font-size: 14px;
  }
}
.cu-categoris-jl-btn::before {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, 0.15);
  height: 40px;
  left: 25px;
  right: 25px;
  bottom: 0;
  transition: all 0.4s ease;
  z-index: 1;
}
.cu-categoris-jl-btn-wrap {
  position: absolute;
  bottom: 15px;
  transform: translateY(0);
  left: 15px;
  right: 15px;
  text-align: center;
  transition: all 0.4s ease;
  z-index: 1;
}
.cu-categoris-jl-thumb::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(56, 65, 53, 0) 0%, #384135 100%);
  z-index: 1;
  opacity: 0;
  transition: all 0.4s ease;
}
.cu-categoris-jl-thumb img {
  transition: all 0.4s ease;
}
.cu-categoris-jl-item {
  overflow: hidden;
}
.cu-categoris-jl-item:hover .cu-categoris-jl-btn::before {
  bottom: -15px;
}
.cu-categoris-jl-item:hover .cu-categoris-jl-thumb::before {
  opacity: 1;
}
.cu-categoris-jl-item:hover .cu-categoris-jl-thumb img {
  transform: scale(1.05);
}
.cu-categoris-jl-item:hover .cu-categoris-jl-btn-wrap {
  background: var(--cu-common-white);
  transform: translateY(-10px);
}
.cu-categoris-wt-style .cu-categoris-jl-item:hover .cu-categoris-wt-btn-wrap {
  transform: translateY(-15px);
}
.cu-categoris-wt-style .cu-categoris-jl-item:hover .cu-categoris-wt-btn {
  background: var(--cu-common-white);
  color: var(--cu-common-black-2);
}
.cu-categoris-wt-btn {
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: var(--cu-common-white);
  padding: 10px 20px;
  display: inline-block;
  padding: 8px 50px;
}
.cu-categoris-wt-btn-wrap {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 2;
  transition: all 0.6s ease;
  transform: translateY(1);
}
.cu-categoris-wt .cu-categoris-jl-thumb::before {
  background: linear-gradient(180deg, rgba(56, 65, 53, 0) 0%, #1f323a 100%);
}
.cu-categoris-gc-content h3 {
  font-weight: 500;
  font-size: 18px;
  color: var(--cu-common-black);
}
.cu-categoris-gc-content span {
  font-weight: 400;
  font-size: 16px;
  color: var(--cu-common-green-2);
}
.cu-categoris-gc-thumb img {
  transition: all 0.5s ease;
}
.cu-categoris-gc-item {
  width: 100%;
  height: 264px;
  display: block;
  background: linear-gradient(180deg, #f5f7ea 0%, #fff 100%);
  padding: 35px 20px 20px 20px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}
.cu-categoris-gc-item::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #f5f7ea;
  opacity: 0;
  z-index: -1;
  transition: all 0.4s ease;
  height: 0;
}
.cu-categoris-gc-item:hover::before {
  height: 100%;
  opacity: 1;
}
.cu-categoris-gc-item:hover .cu-categoris-gc-thumb img {
  transform: scale(1.06);
}
.cu-categoris-main-result p {
  font-weight: 400;
  font-size: 16px;
  color: #545454;
}
.cu-categoris-main-result-bar {
  max-width: 588px;
  height: 2px;
  background-color: #edeff2;
  margin: auto;
  position: relative;
}
.cu-categoris-main-result-bar span {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 1;
  background-color: var(--cu-theme-primary);
}

/*=============================
    35. video
===============================*/
.cu-video-cw-btn {
  border: 1px solid var(--cu-common-white);
  border-radius: 150px;
  padding: 10px;
  width: 150px;
  height: 150px;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.02em;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--cu-common-white);
}
.cu-video-cw-btn:hover {
  background: var(--cu-common-white);
  color: var(--cu-common-black);
}
.cu-video-cw-title {
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--cu-common-white);
}
.cu-video-cw-content-wrap {
  padding-top: 280px;
  padding-bottom: 272px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-video-cw-content-wrap {
    padding-top: 180px;
    padding-bottom: 172px;
  }
}
.cu-video-cw-para {
  font-weight: 400;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--cu-common-white);
}

/*=============================
    23. latest
===============================*/
.cu-latest-collection-wrap:hover .cu-latest-collection-thumb img {
  transform: scale(1.1);
}
.cu-latest-collection-thumb {
  overflow: hidden;
}
.cu-latest-collection-thumb img {
  transition: all 0.6s ease;
}
.cu-latest-collection-title {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--cu-common-black);
}
.cu-latest-collection-title a:hover {
  color: var(--cu-common-yellow-2);
}

/*=============================
    18. frame
===============================*/
.cu-frame-thumb {
  height: 100%;
  margin-right: 65px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-frame-thumb {
    margin-right: 0;
  }
}
.cu-frame-thumb img {
  height: 100%;
  object-fit: cover;
}
.cu-frame-thumb .lookbook-item {
  left: 50%;
  bottom: 50%;
  transform: translateY(-50%);
  box-shadow: 0 10px 14px 0 rgba(1, 15, 28, 0.06);
}
.cu-frame-thumb .dropdown-menu {
  padding: 10px 20px 10px 10px;
  width: 330px;
  background: var(--cu-common-white);
  border-radius: 0;
  border: none;
  transform: translateY(29%) !important;
  left: -149px !important;
}
@media (max-width: 575px) {
  .cu-frame-thumb .dropdown-menu {
    width: 280px;
  }
}
.cu-frame-thumb .product-images {
  width: 80px;
  margin-right: 20px;
}
.cu-frame-thumb .lookbook-product {
  display: flex;
  align-items: center;
}
.cu-frame-thumb .product-tag {
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--cu-grey-1);
  display: block;
  line-height: 1;
  margin-bottom: 3px;
}
.cu-frame-thumb .product-title {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--cu-common-black);
  margin-bottom: 4px;
  display: inline-block;
}
.cu-frame-thumb .price {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--cu-common-black);
}
.cu-frame-thumb .tf-pin-btn {
  width: 26px;
  height: 26px;
  background-color: rgb(242, 242, 242);
  border-radius: 50%;
  border: 0;
  outline: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.cu-frame-thumb .tf-pin-btn span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--cu-common-black);
}
.cu-frame-thumb .tf-pin-btn .pin-white {
  background-color: var(--cu-common-white);
}
.cu-frame-thumb .tf-pin-btn .pin-black {
  background-color: var(--cu-common-black);
}
.cu-frame-thumb .tf-pin-btn .pin-black span {
  background-color: var(--cu-common-white);
}
.cu-frame-thumb .tf-pin-btn::before {
  position: absolute;
  content: "";
  bottom: 5px;
  left: 5px;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  animation: animate-pulse-2 3s linear infinite;
}
.cu-frame-product-tittle {
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--cu-common-white);
}
.cu-frame-product-wrap {
  padding: 92px 70px 75px 0px;
  margin-left: -15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-frame-product-wrap {
    padding: 92px 20px 75px 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-frame-product-wrap {
    margin-left: 0;
    padding: 92px 20px 75px 20px;
  }
}
.cu-frame-product-wrap .cu-product-tittle {
  color: var(--cu-common-white);
}
.cu-frame-product-wrap .cu-product-price {
  color: var(--cu-common-white);
}
.cu-frame-product-wrap .cu-product-price.old-price {
  color: #c1c1c1;
}
.cu-frame-product-wrap .cu-product-color-mixer .list-color-product .list-color-item {
  border-color: rgba(255, 255, 255, 0.25);
}
.cu-frame-product-wrap .cu-product-color-mixer .list-color-product .list-color-item.active {
  border-color: var(--cu-common-white);
}
.cu-frame-product-wrap .cu-product-color-mixer .list-color-product .tooltip {
  background-color: var(--cu-common-white);
  color: var(--cu-common-black);
}
.cu-frame-product-wrap .cu-product-color-mixer .list-color-product .tooltip::before {
  background: var(--cu-common-white);
}
.cu-frame-gc-thumb img {
  width: 100%;
}
@media (max-width: 575px) {
  .cu-frame-gc-thumb .lookbook-item {
    left: 60%;
  }
}
.cu-frame-gc-thumb .lookbook-item-2 {
  left: 25%;
  bottom: 80%;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .cu-frame-gc-thumb .lookbook-item-2 {
    left: 50%;
  }
}
@media (max-width: 575px) {
  .cu-frame-gc-thumb .lookbook-item-2 {
    left: 60%;
  }
}
.cu-frame-gc-thumb .lookbook-item-3 {
  left: 65%;
  bottom: 22%;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .cu-frame-gc-thumb .lookbook-item-3 {
    left: 50%;
  }
}
@media (max-width: 575px) {
  .cu-frame-gc-thumb .lookbook-item-3 {
    left: 60%;
  }
}
.cu-frame-gc-thumb .product-title {
  font-weight: 500;
  font-size: 14px;
  text-transform: capitalize;
  margin-bottom: 0;
}

/*=============================
    04. brand
===============================*/
.cu-brand-title {
  font-weight: 500;
  font-size: 36px;
  line-height: 122%;
  letter-spacing: -0.02em;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-brand-title br {
    display: none;
  }
}
.cu-brand-slide .swiper-slide {
  width: auto;
  display: inline-block;
}
.cu-brand-slide .swiper-slide a:hover {
  opacity: 0.6;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-brand-wt-content {
    padding-left: 0;
  }
}
@media (max-width: 575px) {
  .cu-brand-wt-content p br {
    display: none;
  }
}
.cu-brand-wt-logo {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-brand-wt-logo {
    gap: 30px;
  }
}
.cu-brand-wt-logo a {
  margin-bottom: 10px;
  display: inline-block;
  opacity: 0.4;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.cu-brand-wt-logo a:hover {
  opacity: 1;
}
.cu-brand-shoes-item {
  height: 160px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  margin-right: -1px;
}
.cu-brand-shoes-item:hover .cu-brand-shoes-logo svg {
  color: var(--cu-common-white);
}
.cu-brand-shoes-item:hover .cu-brand-shoes-thumb img {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cu-brand-shoes-logo svg {
  transition: all 0.4s ease;
  position: relative;
  z-index: 3;
  color: var(--cu-common-black);
}
.cu-brand-shoes-thumb img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition-duration: 700ms;
  opacity: 0;
  visibility: hidden;
}

/*=============================
    21. instagram
===============================*/
.cu-instagram-item {
  position: relative;
  overflow: hidden;
}
.cu-instagram-item::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(1, 15, 28, 0.3);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.cu-instagram-item:hover::after {
  visibility: visible;
  opacity: 1;
}
.cu-instagram-item:hover img {
  transform: scale(1.1);
}
.cu-instagram-item:hover .cu-instagram-icon {
  top: 50%;
  visibility: visible;
  opacity: 1;
}
.cu-instagram-item img {
  transition: all 0.6s ease;
}
.cu-instagram-icon {
  position: absolute;
  top: 60%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.cu-instagram-icon a {
  display: inline-block;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  color: var(--cu-common-black);
  font-size: 18px;
  border-radius: 50px;
  background-color: var(--cu-common-white);
}
.cu-instagram-icon a:hover {
  background-color: var(--cu-common-yellow-2);
  color: var(--cu-common-white);
}
.cu-instagram-icon a i {
  -webkit-transform: translateY(1px);
  -moz-transform: translateY(1px);
  -ms-transform: translateY(1px);
  -o-transform: translateY(1px);
  transform: translateY(1px);
}
.cu-instagram-wrap {
  display: flex;
  gap: 11px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-instagram-wrap {
    flex-wrap: wrap;
  }
}
.cu-instagram-sf-wrap .cu-instagram-icon a:hover {
  background-color: var(--cu-common-blue);
}
.cu-instagram-jl-wrap .cu-instagram-icon a:hover {
  background-color: var(--cu-common-green);
}
.cu-instagram-ft-wrap {
  padding-top: 260px;
  margin-top: -160px;
}
.cu-instagram-ft-wrap .cu-instagram-icon a:hover {
  background-color: var(--cu-common-night);
}
.cu-instagram-ft-bigtitle {
  font-weight: 700;
  font-size: 180px;
  line-height: 19%;
  letter-spacing: -0.02em;
  color: rgba(163, 56, 28, 0.1);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-instagram-ft-bigtitle {
    font-size: 150px;
    line-height: 22%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cu-instagram-ft-bigtitle {
    font-size: 120px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cu-instagram-ft-bigtitle {
    font-size: 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .cu-instagram-ft-bigtitle {
    font-size: 66px;
  }
}
@media (max-width: 575px) {
  .cu-instagram-ft-bigtitle {
    font-size: 40px;
  }
}
.cu-instagram-ft-bigtitle-wrap {
  border-bottom: 1px solid var(--cu-common-black);
}

/*=============================
    01. about
===============================*/
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-about-cw-title br {
    display: none;
  }
}
.cu-about-des {
  margin-left: 355px;
  margin-right: 220px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .cu-about-des {
    margin-left: 155px;
    margin-right: 120px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-about-des {
    margin-left: 0;
    margin-right: 0;
  }
}
.cu-about-des p {
  font-size: 14px;
  line-height: 171%;
}
.cu-about-feature-title {
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.02em;
}
.cu-about-feature-icon {
  color: var(--cu-theme-primary);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-about-title br {
    display: none;
  }
}
.cu-about-chose-content h3 {
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.02em;
}
.cu-about-chose-content h3 a:hover {
  color: var(--cu-theme-primary);
}
.cu-about-chose-content p {
  line-height: 162%;
}
.cu-about-chose-thumb img {
  transition: all 0.6s ease;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-about-chose-title-wrap p br {
    display: none;
  }
}
.cu-about-chose-item:hover .cu-about-chose-thumb img {
  transform: scale(1.07);
}

/*=============================
    11. cta
===============================*/
.cu-cta-sf-wrap p {
  color: var(--cu-common-white);
}
.cu-cta-sf-spacing {
  padding-top: 17px;
  padding-bottom: 2px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-cta-sf-spacing {
    padding-bottom: 15px;
  }
}
.cu-cta-sf-btn {
  font-weight: 500;
  font-size: 14px;
  color: var(--cu-common-white);
  padding: 6px 16px;
  display: inline-block;
  line-height: 1;
  background: var(--cu-common-yellow-2);
  border-radius: 100px;
}
.cu-cta-sf-btn:hover {
  background: var(--cu-common-white);
}

/*=============================
    03. blog
===============================*/
.cu-blog-sf-item {
  overflow: hidden;
}
.cu-blog-sf-item:hover .cu-blog-sf-thumb img {
  transform: scale(1.1);
}
.cu-blog-sf-content {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  z-index: 2;
}
.cu-blog-sf-content span {
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}
.cu-blog-sf-thumb {
  position: relative;
  transition: all 0.6s ease;
}
.cu-blog-sf-thumb::before {
  position: absolute;
  content: "";
  background: linear-gradient(180deg, rgba(35, 35, 35, 0) 0%, rgba(35, 35, 35, 0.85) 100%);
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.6s ease;
}
.cu-blog-sf-thumb img {
  transition: all 0.6s ease;
}
.cu-blog-sf-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 142%;
  letter-spacing: -0.02em;
  color: var(--cu-common-white);
}
.cu-blog-sf-title a:hover {
  color: var(--cu-common-white);
}
.cu-blog-jl-item:hover img {
  transform: scale(1.1);
}
.cu-blog-jl-item img {
  transition: all 0.6s ease;
}
.cu-blog-jl-content {
  position: absolute;
  bottom: 0;
  left: 30px;
  right: 30px;
  bottom: 30px;
  text-align: center;
}
.cu-blog-jl-content span {
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--cu-common-white);
  display: block;
  margin-bottom: 10px;
}
.cu-blog-jl-content a {
  font-weight: 400;
  font-size: 16px;
  color: var(--cu-common-white);
}
.cu-blog-et-meta {
  font-weight: 500;
  font-size: 14px;
  color: var(--cu-common-black);
  padding: 9px 16px;
  background: var(--cu-common-white);
  display: inline-block;
  position: absolute;
  top: 30px;
  left: 30px;
  line-height: 1;
  transition: all 0.6s ease;
}
.cu-blog-et-style .cu-blog-sf-thumb::after {
  position: absolute;
  content: "";
  background: linear-gradient(180deg, rgba(38, 60, 151, 0) 0%, #263c97 100%);
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.6s ease;
  opacity: 0;
}
.cu-blog-et-style .cu-blog-sf-item:hover .cu-blog-sf-thumb::before {
  opacity: 0;
}
.cu-blog-et-style .cu-blog-sf-item:hover .cu-blog-sf-thumb::after {
  opacity: 1;
}
.cu-blog-et-style .cu-blog-sf-item:hover .cu-blog-sf-content span {
  color: var(--cu-common-yellow-3);
}
.cu-blog-et-style .cu-blog-sf-item:hover .cu-blog-et-meta {
  background: var(--cu-common-yellow-3);
}
.cu-blog-et-style .cu-blog-sf-content span {
  transition: all 0.6s ease;
}
.cu-blog-ft-btn {
  color: #565656;
}
.cu-blog-ft-btn:hover {
  color: var(--cu-common-night);
}
.cu-blog-ft-style .cu-blog-sf-content {
  position: inherit;
  bottom: auto;
  left: auto;
  right: auto;
}
.cu-blog-ft-style .cu-blog-sf-title {
  font-size: 18px;
  line-height: 122%;
}
.cu-blog-ft-style .cu-blog-sf-title a:hover {
  color: var(--cu-common-black);
}
.cu-blog-ft-style .cu-blog-sf-thumb::before {
  display: none;
}
.cu-blog-ft-style .cu-blog-sf-thumb::after {
  display: none;
}
.cu-blog-ft-style .cu-blog-sf-item:hover .cu-blog-et-meta {
  background: var(--cu-common-night);
  color: var(--cu-common-white);
}
.cu-blog-shoes-content .cu-blog-sf-title {
  font-size: 26px;
  line-height: 123%;
  color: var(--cu-common-black);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-blog-shoes-content .cu-blog-sf-title br {
    display: none;
  }
}
.cu-blog-shoes-content .cu-blog-sf-title a:hover {
  color: var(--cu-common-black);
}
.cu-blog-shoes-date {
  display: flex;
  align-items: center;
}
.cu-blog-shoes-date .cetagory {
  font-weight: 500;
  font-size: 16px;
  color: var(--cu-common-black);
  display: inline-block;
  padding: 8px 17px;
  border: 1px solid #000;
  border-radius: 39px;
  line-height: 1;
  flex: 0 0 auto;
}
.cu-blog-shoes-date .cu-border {
  width: 40px;
  height: 1px;
  background: var(--cu-common-black);
  display: inline-block;
  margin-left: 30px;
  margin-right: 15px;
}
.cu-blog-shoes-date .cu-date {
  font-weight: 500;
  font-size: 16px;
  color: var(--cu-common-black);
}
.cu-blog-shoes-style .cu-blog-sf-thumb::before {
  display: none;
}
.cu-blog-shoes-style .cu-blog-sf-thumb::after {
  background: linear-gradient(180deg, rgba(35, 35, 35, 0) 0%, #232323 100%);
}
.cu-blog-postbox-right-form .inputs {
  border: none;
  border-bottom: 1px solid rgba(28, 29, 31, 0.15);
  padding: 0;
  height: 40px;
  width: 100%;
  padding-right: 60px;
  color: var(--cu-common-black);
}
.cu-blog-postbox-right-form .inputs::placeholder {
  color: var(--tp-grey-1);
}
.cu-blog-postbox-right-form .cu-postbox-main-btn {
  position: absolute;
  right: 0;
  top: 0;
}
.cu-blog-postbox-user-thumb img {
  border-radius: 50%;
}
.cu-blog-postbox-user-profile {
  border: 1px solid rgba(28, 29, 31, 0.1);
  padding: 40px 40px 40px 40px;
}
.cu-blog-postbox-user-profile .title {
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--cu-common-black);
}
.cu-blog-postbox-user-profile .para {
  line-height: 22px;
}
.cu-blog-postbox-user-social a {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 100px;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 40px;
  display: inline-block;
  transition: all 0.4s ease;
  color: var(--cu-common-black);
}
.cu-blog-postbox-user-social a:hover {
  background: var(--cu-theme-primary);
  border-color: var(--cu-theme-primary);
  color: var(--cu-common-white);
}
.cu-blog-postbox-cetagory-list {
  border: 1px solid rgba(28, 29, 31, 0.1);
  padding: 38px 40px 40px 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
  .cu-blog-postbox-cetagory-list {
    padding: 18px 20px 20px 20px;
  }
}
.cu-blog-postbox-cetagory-list ul li:not(:last-child) {
  margin-bottom: 15px;
}
.cu-blog-postbox-cetagory-list ul li a {
  font-weight: 500;
  font-size: 18px;
  color: var(--cu-grey-1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 8px 8px 25px;
  border: 1px solid rgba(28, 29, 31, 0.1);
}
.cu-blog-postbox-cetagory-list ul li a:hover .total {
  background: var(--cu-theme-primary);
  color: var(--cu-common-white);
}
.cu-blog-postbox-cetagory-list ul li a .total {
  border-radius: 4px;
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 44px;
  background: var(--cu-grey-2);
  transition: all 0.4s ease;
}
.cu-blog-postbox-cetagory-title {
  font-size: 24px;
}
.cu-blog-postbox-post-date {
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  text-transform: uppercase;
  color: var(--cu-theme-1);
}
.cu-blog-postbox-post-thumb img {
  width: 100px;
  height: 110px;
  flex: 0 0 auto;
  margin-right: 25px;
}
.cu-blog-postbox-post-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  color: var(--cu-common-black);
}
.cu-blog-postbox-post-title a:hover {
  color: var(--cu-theme-primary);
}
.cu-blog-postbox-post-border {
  background: #d9d9d9;
  width: 100%;
  height: 1px;
}
.cu-blog-postbox-post-tag a {
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--cu-common-black);
  border: 1px solid rgba(28, 29, 31, 0.1);
  display: inline-block;
  padding: 0px 13px;
  margin-bottom: 12px;
}
.cu-blog-postbox-post-tag a:hover {
  background: var(--cu-common-black);
  color: var(--cu-common-white);
}
.cu-blog-details-subtitle {
  font-weight: 500;
  font-size: 24px;
  line-height: 142%;
  letter-spacing: -0.02em;
}
.cu-blog-details-title {
  font-weight: 500;
  font-size: 30px;
  line-height: 133%;
  letter-spacing: -0.02em;
}
.cu-blog-details-content p {
  font-size: 18px;
  line-height: 167%;
  color: var(--cu-grey-1);
}
.cu-blog-details-content p span {
  font-weight: 600;
  color: var(--cu-common-black);
}
.cu-blog-details-content-bottom {
  padding-top: 25px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.cu-blog-details-content-bottom .list-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.cu-blog-details-content-bottom .list-wrap li a {
  font-size: 14px;
  font-weight: 500;
  color: var(--cu-grey-1);
  background: var(--cu-grey-2);
  padding: 10.5px 16px;
  display: block;
  line-height: 1;
  text-transform: uppercase;
}
.cu-blog-details-content-bottom .list-wrap li a:hover {
  background: var(--cu-theme-primary);
  color: var(--cu-common-white);
}
.cu-blog-details-content-bottom .blog-post-share ul {
  display: flex;
  gap: 6px;
  justify-content: end;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-blog-details-content-bottom .blog-post-share ul {
    margin-top: 30px;
    justify-content: flex-start;
  }
}
.cu-blog-details-content-bottom .blog-post-share ul li a {
  border-radius: 4px;
  width: 34px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--cu-common-white);
}
.cu-blog-details-content-bottom .blog-post-share ul li:nth-child(1) a {
  background: #1877f2;
}
.cu-blog-details-content-bottom .blog-post-share ul li:nth-child(2) a {
  background: #1da1f2;
}
.cu-blog-details-content-bottom .blog-post-share ul li:nth-child(3) a {
  background: #FF543E;
}
.cu-blog-details-content-bottom .blog-post-share ul li:nth-child(4) a {
  background: #f5f5f5;
  color: var(--cu-grey-1);
}
.cu-blog-details-quote-wrap {
  background: #f6f6f6;
  padding: 40px 30px 40px 50px;
  display: flex;
}
@media (max-width: 575px) {
  .cu-blog-details-quote-wrap {
    flex-wrap: wrap;
    padding: 20px;
  }
}
.cu-blog-details-quote-wrap .quote-icon {
  color: var(--cu-theme-primary);
  margin-right: 30px;
}
@media (max-width: 575px) {
  .cu-blog-details-quote-wrap .quote-icon {
    margin-bottom: 20px;
  }
}
.cu-blog-details-quote-wrap .media-body p {
  font-weight: 500;
  font-size: 30px;
  line-height: 140%;
  letter-spacing: -0.03em;
  color: var(--cu-common-black);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-blog-details-quote-wrap .media-body p {
    font-size: 24px;
  }
}
.cu-blog-details-quote-wrap .media-body .blockquote-card-title {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--cu-common-black);
}
.cu-blog-details-quote-wrap .media-body .blockquote-card-title span {
  font-weight: 400;
  font-size: 14px;
  color: var(--tp-grey-1);
  position: relative;
  display: inline-block;
  margin-left: 8px;
  padding-left: 12px;
}
.cu-blog-details-quote-wrap .media-body .blockquote-card-title span::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 40px;
  background: var(--cu-grey-1);
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.cu-blog-details-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cu-blog-details-pagination .divider {
  background: rgba(28, 29, 31, 0.1);
  width: 1px;
  height: 70px;
}
.cu-blog-details-pagination .nav-btn {
  font-weight: 500;
  font-size: 18px;
  color: var(--cu-common-black);
}
.cu-blog-details-pagination .nav-btn:hover i {
  background: var(--cu-theme-primary);
  color: var(--cu-common-white);
  border-color: var(--cu-theme-primary);
}
.cu-blog-details-pagination .nav-btn i {
  height: 40px;
  width: 40px;
  line-height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  text-align: center;
  border-radius: 50%;
  font-size: 13px;
  margin-right: 10px;
  color: var(--cu-common-black);
  transition: 0.4s;
}
.cu-blog-details-pagination .nav-btn.next i {
  margin-right: 0;
  margin-left: 10px;
}
.cu-blog-details-avatar-img {
  width: 230px;
  flex: 0 0 auto;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-blog-details-avatar-img {
    width: 100%;
  }
  .cu-blog-details-avatar-img img {
    width: 100%;
  }
}
.cu-blog-details-avatar-wrap {
  display: flex;
  align-items: flex-start;
  margin: 60px 0 60px;
  background: var(--cu-grey-2);
  align-items: center;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-blog-details-avatar-wrap {
    flex-wrap: wrap;
  }
}
.cu-blog-details-avatar-info {
  padding: 30px 38px;
}
.cu-blog-details-avatar-info .name {
  font-weight: 500;
  font-size: 26px;
}

.cu-postbox-author img {
  width: 50px;
}
.cu-postbox-meta-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.cu-postbox-meta-single span {
  font-weight: 400;
  font-size: 14px;
  color: var(--tp-grey-1);
}
.cu-postbox-meta-single h6 {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: var(--cu-common-black);
}
.cu-postbox-title {
  font-weight: 500;
  font-size: 36px;
  letter-spacing: -0.02em;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-postbox-title {
    font-size: 30px;
  }
}
.cu-postbox-title a:hover {
  color: var(--cu-theme-primary);
}
.cu-postbox-video {
  width: 70px;
  height: 70px;
  display: inline-block;
  border-radius: 50%;
  background: var(--cu-common-white);
  text-align: center;
  line-height: 70px;
  animation: animate-pulse 3s linear infinite;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
}
.cu-postbox-slider-arrow button {
  font-size: 30px;
  position: absolute;
  top: 50%;
  left: 40px;
  z-index: 2;
  transform: translateY(-50%);
  color: var(--tp-common-white);
  width: 60px;
  width: 60px;
  background: var(--cu-common-white);
  line-height: 60px;
  border-radius: 100px;
}
.cu-postbox-slider-arrow button:hover {
  background: var(--cu-theme-primary);
  color: var(--cu-common-white);
}
.cu-postbox-slider-arrow button.postbox-arrow-next {
  left: auto;
  right: 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-postbox-wrapper {
    margin-right: 0;
  }
}

/*comment area*************/
.comment-reply-title,
.comments-wrap-title {
  font-size: 34px;
  line-height: 1.5em;
  font-weight: 600;
  margin-bottom: 35px;
}

.latest-comments {
  margin-bottom: 70px;
}
.latest-comments .list-wrap > li:first-child > .comments-box {
  border-top: 0;
  padding-top: 0;
  margin-top: 0;
}

.comments-box {
  display: flex;
  align-items: flex-start;
  margin-top: 60px;
  gap: 20px;
}
@media (max-width: 575px) {
  .comments-box {
    display: block;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .comments-box {
    display: flex;
  }
}

.children {
  padding-left: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .children {
    padding-left: 0;
  }
}

.comments-avatar {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  flex: 0 0 auto;
}
.comments-avatar img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
}
@media (max-width: 575px) {
  .comments-avatar {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .comments-avatar {
    margin-bottom: 0px;
  }
}

.comments-text {
  margin-top: -0.15em;
}
.comments-text .avatar-name {
  margin-bottom: 5px;
}
.comments-text .avatar-name .name {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 500;
}
.comments-text .avatar-name .date {
  font-size: 14px;
  line-height: 1;
}
.comments-text p {
  font-size: 18px;
  margin-bottom: 18px;
  line-height: 1.6;
}
.comments-text .reply-btn {
  color: var(--cu-common-black);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--cu-border-1);
  padding: 6px 13px;
  line-height: 1;
  transition: 0.4s;
}
.comments-text .reply-btn:hover {
  color: var(--cu-common-white);
  background-color: var(--cu-theme-primary);
  border-color: var(--tg-theme-primary);
}

/*=============================
    27. news
===============================*/
.cu-news-title h2 {
  font-weight: 500;
  font-size: 36px;
  line-height: 117%;
  letter-spacing: -0.02em;
  color: var(--cu-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-news-form {
    margin-left: 0;
  }
}
.cu-news-form input {
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: var(--cu-common-white);
  background: none;
  border: none;
  border-bottom: 1px solid var(--cu-common-white);
  width: 100%;
  height: 43px;
}
.cu-news-form input::-webkit-input-placeholder {
  color: var(--cu-common-white);
}
.cu-news-form input:-moz-placeholder {
  color: var(--cu-common-white);
}
.cu-news-form input::-moz-placeholder {
  color: var(--cu-common-white);
}
.cu-news-form input:-ms-input-placeholder {
  color: var(--cu-common-white);
}
.cu-news-form input:focus {
  border-color: var(--cu-common-yellow-3);
}
.cu-news-ft-shape {
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-news-ft-content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-news-ft-content .cu-news-title h2 br {
    display: none;
  }
}
.cu-news-ft-wrap {
  background: var(--cu-common-night);
}
.cu-news-ft-wrap .cu-btn {
  flex: 0 0 auto;
}
.cu-news-inner-style .cu-btn {
  background: var(--cu-common-white);
  color: var(--cu-theme-primary);
  border-color: var(--cu-common-white);
}
.cu-news-inner-style .cu-btn:hover {
  background: var(--cu-common-black);
  color: var(--cu-common-white);
  border-color: var(--cu-common-black);
}

.cu-subscribe-popup {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1099;
  background-color: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  margin: 0 auto;
  text-align: center;
}
.cu-subscribe-popup.show {
  visibility: visible;
  opacity: 1;
}

.cu-shop-popup-wrap {
  height: 500px;
  width: 800px;
  margin: 0 auto;
  background-color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cu-shop-popup-wrap {
    width: 600px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-shop-popup-wrap {
    width: 360px;
  }
}
.cu-shop-popup-wrap .cu-footer-social span a:hover {
  background: var(--cu-common-black);
  color: var(--cu-common-white);
}
.cu-shop-popup-content {
  padding: 40px;
}
.cu-shop-popup-img {
  position: relative;
  height: 100%;
  flex: 0 0 auto;
}
.cu-shop-popup-img img {
  height: 100%;
}
.cu-shop-popup-logo {
  margin-bottom: 30px;
}
.cu-shop-popup-text h4 {
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  text-transform: uppercase;
  text-align: center;
  color: var(--cu-common-black);
}
.cu-shop-popup-text p {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--cu-grey-1);
}
.cu-shop-popup-inputbox input {
  height: 50px;
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.04em;
  color: var(--cu-common-black);
  border: 1px solid rgba(25, 25, 26, 0.1);
  margin-bottom: 10px;
  width: 100%;
  padding: 5px 20px;
}
.cu-shop-popup-inputbox input::-webkit-input-placeholder {
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.04em;
  color: var(--cu-common-black);
}
.cu-shop-popup-inputbox input:-moz-placeholder {
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.04em;
  color: var(--cu-common-black);
}
.cu-shop-popup-inputbox input::-moz-placeholder {
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.04em;
  color: var(--cu-common-black);
}
.cu-shop-popup-inputbox input:-ms-input-placeholder {
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.04em;
  color: var(--cu-common-black);
}
.cu-shop-popup-inputbox .cu-btn-black-square {
  font-size: 18px;
  font-weight: 400;
  padding: 10px 34px;
  text-transform: uppercase;
  color: var(--cu-common-white);
  background-color: var(--cu-common-black);
  border: 2px solid transparent;
}
.cu-shop-popup-inputbox .cu-btn-black-square:hover {
  background-color: transparent;
  border-color: var(--cu-common-black);
  color: var(--cu-common-black);
}

.cu-subscribe-popup .close i {
  position: absolute;
  cursor: pointer;
  top: 13px;
  right: 13px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background-color: #e9e2e2;
  font-size: 18px;
  transition: all 0.4s ease;
}
.cu-subscribe-popup .close:hover i {
  transform: rotate(180deg);
}

/*=============================
    31. shop
===============================*/
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-shop-sidebar {
    margin-right: 0;
    margin-left: 0;
  }
}
.cu-shop-top-result p {
  font-weight: 400;
  font-size: 16px;
  color: var(--cu-grey-1);
}
.cu-shop-view-box button {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  font-size: 18px;
  color: #818487;
  border: 1px solid rgba(1, 15, 28, 0.1);
  border-radius: 0;
  margin-right: 6px;
}
.cu-shop-view-box button.active {
  color: var(--cu-common-black);
  border-color: var(--cu-common-black);
}
.cu-shop-pagination nav ul {
  display: flex;
  gap: 6px;
  justify-content: center;
}
.cu-shop-pagination nav ul li a {
  border: 1px solid rgba(0, 0, 0, 0.1);
  width: 44px;
  height: 44px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  color: #000;
}
.cu-shop-pagination nav ul li a:hover {
  background: var(--cu-theme-primary);
  color: var(--cu-common-white);
}
.cu-shop-pagination nav ul li a.current {
  width: auto;
  background: var(--cu-theme-primary);
  color: var(--cu-common-white);
  padding: 5px 20px;
}
.cu-shop-pagination nav ul li a.current svg {
  margin-left: 5px;
}
.cu-shop-widget-title {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--cu-common-black);
}
.cu-shop-widget-categories {
  height: 288px;
  overflow-y: scroll;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: thin;
  padding-right: 10px;
}
.cu-shop-widget-categories ul li {
  list-style: none;
  width: 100%;
}
.cu-shop-widget-categories ul li:not(:last-child) {
  margin-bottom: 10px;
}
.cu-shop-widget-categories ul li a {
  font-weight: 400;
  font-size: 16px;
  color: #545454;
  position: relative;
  padding-left: 16px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.cu-shop-widget-categories ul li a::after {
  position: absolute;
  content: "";
  top: 10px;
  left: 0;
  width: 6px;
  height: 6px;
  text-align: center;
  background-color: #E7E7E7;
  border-radius: 50%;
  transition: all 0.4s ease;
}
.cu-shop-widget-categories ul li a:hover {
  color: var(--cu-theme-primary);
}
.cu-shop-widget-categories ul li a:hover::after {
  background-color: var(--cu-theme-primary);
}
.cu-shop-widget-categories ul li a:hover span {
  background-color: var(--cu-theme-primary);
  border-color: var(--cu-theme-primary);
  color: var(--cu-common-white);
}
.cu-shop-widget-categories ul li a span {
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 5px 6px 3px;
  transition: all 0.4s ease;
}
.cu-shop-widget-filter .ui-widget.ui-widget-content {
  background-color: #f3f3f3;
  height: 11px;
  border: none;
  border-radius: 0;
}
.cu-shop-widget-filter .ui-slider-range.ui-corner-all.ui-widget-header {
  background: var(--cu-theme-primary);
  height: 3px;
  top: 4px;
}
.cu-shop-widget-filter .ui-slider-handle.ui-corner-all.ui-state-default {
  height: 7px;
  width: 3px;
  background: var(--cu-theme-primary);
  border-radius: 40px;
  top: 2px;
  margin-left: 0;
  border: none;
  box-shadow: none;
}
.cu-shop-widget-filter .ui-slider-handle.ui-corner-all.ui-state-default:focus-visible {
  outline: 0;
}
.cu-shop-widget-filter-info span {
  font-weight: 500;
  color: #515167;
  width: 140px;
}
.cu-shop-widget-filter-info input {
  height: auto;
  background-color: transparent;
  padding: 0;
  border: 0;
  line-height: 34px;
  color: var(--cu-common-black);
  font-weight: 500;
  font-size: 14px;
}
.cu-shop-widget-filter-info .price-title {
  margin-right: 4px;
}
.cu-shop-widget-filter-btn {
  font-weight: 400;
  font-size: 14px;
  color: var(--cu-common-white);
  padding: 2px 21px;
  background-color: var(--cu-common-black);
}
.cu-shop-widget-filter-btn:hover {
  color: var(--cu-common-white);
  background-color: var(--cu-theme-primary);
}
.cu-shop-widget-checkbox ul li {
  list-style: none;
  display: flex;
  align-items: center;
}
.cu-shop-widget-checkbox ul li:not(:last-child) {
  margin-bottom: 13px;
}
.cu-shop-widget-checkbox ul li .cu-checkbox {
  appearance: none;
  -moz-appearance: none;
  display: block;
  width: 16px;
  height: 16px;
  border: none;
  outline: none;
  flex: 0 0 auto;
  background: transparent;
  -webkit-transform: translateY(-0.5px);
  -moz-transform: translateY(-0.5px);
  -ms-transform: translateY(-0.5px);
  -o-transform: translateY(-0.5px);
  transform: translateY(-0.5px);
  padding: 0;
  margin-right: 8px;
  border: 2px solid rgba(0, 0, 0, 0.15);
}
.cu-shop-widget-checkbox ul li .cu-checkbox:checked {
  position: relative;
  border-color: var(--cu-theme-primary);
  background: var(--cu-theme-primary);
}
.cu-shop-widget-checkbox ul li .cu-checkbox:checked::after {
  box-sizing: border-box;
  position: absolute;
  content: "\f00c";
  font-weight: 700;
  font-family: var(--cu-ff-fontawesome);
  font-size: 10px;
  color: var(--cu-common-white);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cu-shop-widget-checkbox ul li .cu-checkbox:hover {
  cursor: pointer;
}
.cu-shop-widget-checkbox ul li label {
  line-height: 1;
  font-weight: 400;
  font-size: 16px;
  color: #545454;
}
.cu-shop-widget-checkbox-circle {
  position: relative;
}
.cu-shop-widget-checkbox-circle-list ul li {
  list-style: none;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.cu-shop-widget-checkbox-circle-list ul li:not(:last-child) {
  margin-bottom: 7px;
}
.cu-shop-widget-checkbox-circle-list ul li:hover .cu-shop-widget-checkbox-circle-number {
  background-color: var(--cu-theme-primary);
  border-color: var(--cu-theme-primary);
  color: var(--cu-common-white);
}
.cu-shop-widget-checkbox-circle-number {
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  border: 1px solid #EAEAEA;
  padding: 5px 6px 3px;
}
.cu-shop-widget-checkbox-circle .cu-checkbox {
  appearance: none;
  -moz-appearance: none;
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50px;
  outline: none;
  flex: 0 0 auto;
  background: transparent;
  -webkit-transform: translateY(-1px);
  -moz-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  -o-transform: translateY(-1px);
  transform: translateY(-1px);
  padding: 0;
  margin-right: 8px;
  border: none;
}
.cu-shop-widget-checkbox-circle .cu-checkbox:checked {
  position: relative;
  border-color: var(--cu-theme-primary);
  background: var(--cu-theme-primary);
}
.cu-shop-widget-checkbox-circle .cu-checkbox:checked::after {
  box-sizing: border-box;
  position: absolute;
  content: "\f00c";
  font-weight: 700;
  font-family: var(--cu-ff-fontawesome);
  font-size: 10px;
  color: var(--cu-common-white);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cu-shop-widget-checkbox-circle .cu-checkbox:hover {
  cursor: pointer;
}
.cu-shop-widget-checkbox-circle label {
  font-size: 16px;
  color: #55585B;
  position: relative;
}
.cu-shop-widget-checkbox-circle label:hover {
  cursor: pointer;
}
.cu-shop-widget-product-item:not(:last-child) {
  margin-bottom: 20px;
}
.cu-shop-widget-product-rating {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  margin-right: 4px;
}
.cu-shop-widget-product-rating-number {
  line-height: 1;
}
.cu-shop-widget-product-rating-number span {
  font-weight: 500;
  font-size: 12px;
  color: #545454;
  margin-left: 5px;
}
.cu-shop-widget-product-rating-wrapper {
  margin-bottom: 3px;
}
.cu-shop-widget-product-rating-wrapper .cu-product-ratings span {
  font-size: 11px;
  line-height: 1;
}
.cu-shop-widget-product-thumb {
  flex: 0 0 auto;
}
.cu-shop-widget-product-thumb img {
  width: 80px;
  height: 100px;
  object-fit: cover;
  margin-right: 14px;
}
.cu-shop-widget-product-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: -0.02em;
  color: var(--cu-common-black);
}
.cu-shop-widget-product-title a:hover {
  color: var(--cu-theme-primary);
}
.cu-shop-widget-product-price {
  font-size: 16px;
  color: var(--cu-theme-primary);
}
.cu-shop-widget-customer-rating ul li {
  justify-content: flex-start;
}
.cu-shop-widget-customer-rating ul li:hover .cu-shop-widget-checkbox-circle-number {
  background-color: transparent;
  border-color: transparent;
  color: var(--cu-common-black);
}
.cu-shop-widget-customer-rating ul li .cu-shop-widget-checkbox-circle-number {
  border: none;
  padding: 0;
  margin-left: 10px;
  color: var(--cu-common-black);
}
.cu-shop-widget-customer-rating ul li .cu-product-ratings span {
  color: var(--cu-common-black);
  font-size: 15px;
}
.cu-shop-widget-customer-rating ul li .cu-checkbox {
  border: 1.5px solid #000;
  border-radius: 0;
}
.cu-shop-widget-customer-rating ul li .cu-checkbox:checked {
  border-color: var(--cu-theme-primary);
}
.cu-shop-widget-banner {
  padding: 212px 35px 20px 35px;
}
.cu-shop-widget-banner span {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--cu-common-white);
  display: inline-block;
}
.cu-shop-widget-banner h2 {
  margin-top: 30px;
  font-weight: 500;
  font-size: 70px;
  line-height: 37%;
  letter-spacing: -0.04em;
  color: var(--cu-common-white);
}

.list-card .cu-product-item:hover .cu-product-gc-content {
  transform: inherit;
}
.list-card .cu-product-gc-content {
  transition: all 0s ease-in-out;
}
.list-card .cu-product-btn-wrap {
  transition: all 0s ease-in-out;
}
.list-card .cu-product-gc-item:hover .cu-product-btn-wrap {
  opacity: 0;
  visibility: hidden;
  transition: all 0s ease-in-out;
}
.list-card-open .cu-product-gc-thumb {
  width: 333px;
  height: 350px;
  flex: 0 0 auto;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .list-card-open .cu-product-gc-thumb {
    width: 260px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .list-card-open .cu-product-gc-thumb {
    width: 100%;
  }
}
.list-card-open .cu-product-grid-full {
  width: 100%;
}
.list-card-open .cu-product-item {
  display: flex;
  align-items: center;
  transform: inherit;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .list-card-open .cu-product-item {
    display: block;
  }
}
.list-card-open .cu-product-gc-content {
  text-align: left !important;
  margin-bottom: 0;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .list-card-open .cu-product-gc-content {
    text-align: center !important;
  }
}
.list-card-open .cu-product-ratings {
  justify-content: flex-start !important;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .list-card-open .cu-product-ratings {
    justify-content: center !important;
  }
}
.list-card-open .cu-product-list-dec {
  display: block !important;
}
.list-card-open .cu-product-btn-wrap {
  opacity: 1;
  visibility: visible;
}
.list-card-open .cu-product-gc-item:hover .cu-product-btn-wrap {
  opacity: 1;
  visibility: visible;
}
.list-card-open .cu-product-gc-content {
  padding: 30px 60px 35px 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .list-card-open .cu-product-gc-content {
    padding: 25px 30px 30px 30px;
  }
}

/*=============================
    16. filter
===============================*/
.cu-filter-offcanvas-area {
  position: fixed;
  left: 0;
  top: 0;
  width: 340px;
  height: 100%;
  -webkit-transform: translateX(calc(-100% - 80px));
  -moz-transform: translateX(calc(-100% - 80px));
  -ms-transform: translateX(calc(-100% - 80px));
  -o-transform: translateX(calc(-100% - 80px));
  transform: translateX(calc(-100% - 80px));
  background: var(--cu-common-white) none repeat scroll 0 0;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  z-index: 99999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}
.cu-filter-offcanvas-area::-webkit-scrollbar {
  display: none;
}
.cu-filter-offcanvas-area.offcanvas-opened {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}
@media (max-width: 380px) {
  .cu-filter-offcanvas-area {
    width: 100%;
  }
}
.cu-filter-offcanvas-right {
  -webkit-transform: translateX(calc(100% + 80px));
  -moz-transform: translateX(calc(100% + 80px));
  -ms-transform: translateX(calc(100% + 80px));
  -o-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
  left: auto;
  right: 0;
}
.cu-filter-offcanvas-wrapper {
  position: relative;
  padding: 120px 30px 35px;
  z-index: 1;
  min-height: 100%;
}
.cu-filter-offcanvas-close-btn {
  font-size: 16px;
  color: var(--cu-common-black);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  font-weight: 500;
  padding: 13px 20px;
  border-bottom: 1px solid rgba(129, 129, 129, 0.2);
  box-shadow: 0 0 10px 0 rgba(129, 129, 129, 0.2);
}
.cu-filter-offcanvas-close-btn:hover {
  color: var(--cu-theme-primary);
}

.btn-loadmore-text {
  font-weight: 400;
  font-size: 16px;
  color: #545454;
}

/*=============================
    05. cart
===============================*/
.cu-cart-header-product {
  padding-left: 30px !important;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-cart-list {
    margin-right: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-cart-list {
    overflow-x: scroll;
  }
}
.cu-cart-list .table > :not(caption) > * > * {
  padding: 20px 0;
  box-shadow: none;
  vertical-align: middle;
  background-color: transparent !important;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-cart-list table {
    width: 840px;
  }
}
.cu-cart-list thead {
  background-color: var(--cu-theme-primary);
}
.cu-cart-list thead th {
  font-weight: 500;
  font-size: 14px;
  color: var(--cu-common-white);
  border: 0 !important;
  padding-top: 9px !important;
  padding-bottom: 9px !important;
}
.cu-cart-list tr td {
  border-color: #E0E2E3;
}
.cu-cart-list tr td .cu-cart-action-btn {
  font-weight: 400;
  font-size: 14px;
  color: #818487;
  margin-left: 20px;
}
.cu-cart-list tr td .cu-cart-action-btn:hover {
  color: #FF1826;
}
.cu-cart-list tr td.cu-cart-add-to-cart .cu-btn {
  border-radius: 0;
}
.cu-cart-list tbody tr:first-child td {
  padding-top: 30px !important;
}
.cu-cart-img {
  width: 78px;
  margin-right: 20px;
}
.cu-cart-img img {
  width: 78px;
  height: 100px;
  object-fit: cover;
}
.cu-cart-title a {
  margin-left: 20px;
  font-weight: 400;
  font-size: 16px;
  color: var(--cu-common-black);
}
.cu-cart-title a:hover {
  color: var(--cu-theme-primary);
}
.cu-cart-price {
  width: 126px;
}
.cu-cart-price span {
  font-size: 16px;
  color: var(--cu-common-black);
}
.cu-cart-checkout-wrapper {
  background: var(--cu-grey-2);
  padding: 43px 50px 50px 50px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), (max-width: 575px) {
  .cu-cart-checkout-wrapper {
    padding: 33px 30px 40px 30px;
  }
}
.cu-cart-checkout-top {
  margin-bottom: 25px;
}
.cu-cart-checkout-top span {
  font-size: 20px;
  color: var(--cu-common-black);
  font-weight: 500;
}
.cu-cart-checkout-shipping {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--cu-border-1);
  margin-bottom: 15px;
}
.cu-cart-checkout-shipping-title {
  font-weight: 400;
  font-size: 16px;
  color: var(--cu-grey-1);
}
.cu-cart-checkout-shipping-option input {
  display: none;
}
.cu-cart-checkout-shipping-option input:checked + label::after {
  border-color: var(--cu-theme-primary);
}
.cu-cart-checkout-shipping-option input:checked + label::before {
  opacity: 1;
  visibility: visible;
}
.cu-cart-checkout-shipping-option label {
  font-weight: 400;
  font-size: 14px;
  color: var(--cu-grey-1);
  position: relative;
  padding-left: 25px;
}
.cu-cart-checkout-shipping-option label:hover {
  cursor: pointer;
}
.cu-cart-checkout-shipping-option label span {
  color: var(--cu-common-black);
}
.cu-cart-checkout-shipping-option label a {
  color: var(--cu-common-black);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-skip-ink: none;
}
.cu-cart-checkout-shipping-option label::after {
  position: absolute;
  content: "";
  left: 0;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #BCBCBC;
  transition: all 0.4s ease;
}
.cu-cart-checkout-shipping-option label::before {
  position: absolute;
  content: "";
  left: 4px;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--cu-theme-primary);
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease;
}
.cu-cart-checkout-btn {
  font-size: 16px;
  font-weight: 500;
  color: var(--cu-common-white);
  background-color: var(--cu-common-black);
  display: inline-block;
  padding: 10px 30px;
  text-align: center;
}
.cu-cart-checkout-btn:hover {
  background-color: var(--cu-theme-primary);
  color: var(--cu-common-white);
}
.cu-cart-checkout-title {
  font-weight: 400;
  font-size: 16px;
  line-height: 87%;
  color: var(--cu-common-black);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-cart-checkout-main {
    margin-top: 30px;
  }
}
.cu-cart-shipping-bar p {
  font-weight: 400;
  font-size: 16px;
  color: var(--cu-common-black);
}
.cu-cart-shipping-header {
  font-weight: 500;
  font-size: 18px;
  color: var(--cu-common-black);
}
.cu-cart-shipping-header:not(.collapsed) .accordion-btn::before {
  transform: translateX(-50%) rotate(90deg);
  background: var(--cu-common-black);
  opacity: 1;
}
.cu-cart-shipping-header:not(.collapsed) .accordion-btn::after {
  background: var(--cu-common-black);
  opacity: 1;
}
.cu-cart-shipping-calculator .accordion-btn {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: inline-block;
  width: 12px;
  height: 12px;
}
.cu-cart-shipping-calculator .accordion-btn::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #000000;
  border-radius: 2px;
  transition: all 0.4s ease;
}
.cu-cart-shipping-calculator .accordion-btn::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  background-color: #000000;
  transform: translateX(-50%);
  border-radius: 2px;
  transition: all 0.4s ease;
}
.cu-cart-shipping-calculator .accordion-item {
  border: none;
  border-bottom: 1px solid var(--cu-border-1);
  background: transparent;
  border-radius: 0;
  margin-bottom: 15px;
}
.cu-cart-shipping-content .nice-select {
  height: 52px;
  line-height: 52px;
  background-color: var(--cu-common-white);
  border: none;
}
.cu-cart-shipping-content .field {
  margin-bottom: 20px;
}
.cu-cart-shipping-content .label {
  margin-bottom: 5px;
}
.cu-cart-shipping-content .input {
  height: 52px;
  line-height: 52px;
  background-color: var(--cu-common-white);
  border: none;
  width: 100%;
  padding: 10px 30px;
}
.cu-cart-note label {
  margin-bottom: 20px;
  display: block;
}
.cu-cart-note .message {
  min-height: 126px;
  border: 1px solid #E0E2E3;
  padding: 15px 20px;
  width: 100%;
  max-width: 460px;
  resize: none;
  border-radius: 3px;
  outline: none;
}

.cu-checkout-bill-title {
  font-weight: 500;
  font-size: 30px;
  letter-spacing: -0.02em;
  color: var(--cu-common-black);
}
.cu-checkout-input {
  margin-bottom: 25px;
}
.cu-checkout-input label {
  font-weight: 400;
  margin-bottom: 5px;
  font-size: 16px;
  color: var(--cu-common-black);
}
.cu-checkout-input label span {
  color: var(--cu-theme-primary);
}
.cu-checkout-input input, .cu-checkout-input textarea {
  border: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
  padding: 10px 25px;
  height: 52px;
  font-size: 14px;
  color: var(--cu-common-black);
}
.cu-checkout-input input::placeholder, .cu-checkout-input textarea::placeholder {
  color: #848484;
  font-size: 14px;
}
.cu-checkout-input input:focus, .cu-checkout-input textarea:focus {
  border-color: var(--cu-theme-primary);
}
.cu-checkout-input textarea {
  height: 160px;
}
.cu-checkout-input .cu-select {
  padding: 0 25px;
  height: 52px;
  line-height: 52px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: transparent;
}
.cu-checkout-input .cu-select:focus {
  border-color: var(--cu-theme-primary);
}
.cu-checkout-option {
  margin-bottom: 4px;
}
.cu-checkout-option-wrapper {
  margin-top: 10px;
  margin-bottom: 17px;
}
.cu-checkout-option .cu-checkbox {
  border-color: var(--cu-border-1);
}
.cu-checkout-option label {
  color: var(--cu-grey-1);
}
.cu-checkout-plase {
  background: var(--cu-grey-2);
  padding: 50px 50px;
}
@media (max-width: 575px) {
  .cu-checkout-plase {
    padding: 30px 30px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-checkout-plase-wrap {
    margin-left: 0;
  }
}
.cu-checkout-product-item {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
}
.cu-checkout-product-item:not(:last-child) {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.cu-checkout-product-item .img-product {
  width: 80px;
  height: 90px;
  margin-bottom: 0;
  position: relative;
}
.cu-checkout-product-item .img-product .quantity {
  position: absolute;
  right: -8px;
  top: -8px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background-color: var(--cu-theme-primary);
  color: var(--cu-common-white);
  font-size: 12px;
  text-align: center;
  line-height: 20px;
}
.cu-checkout-product-item .img-product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cu-checkout-product-item .content {
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cu-checkout-product-item .content .variant {
  font-size: 14px;
  color: var(--cu-grey-1);
}
.cu-checkout-product-item .content .name {
  margin-bottom: 0;
  color: var(--cu-common-black);
}
.cu-checkout-product-item .content .price {
  color: var(--cu-common-black);
}
.cu-checkout-coupon-box input {
  background: var(--cu-common-white);
  border: none;
  height: 48px;
  line-height: 48px;
  margin-right: 4px;
  border: 1px solid transparent;
  width: 100%;
  font-size: 14px;
  padding: 10px 20px;
}
.cu-checkout-coupon-box input::-webkit-input-placeholder {
  color: #545454;
  font-size: 14px;
}
.cu-checkout-coupon-box input:-moz-placeholder {
  color: #545454;
  font-size: 14px;
}
.cu-checkout-coupon-box input::-moz-placeholder {
  color: #545454;
  font-size: 14px;
}
.cu-checkout-coupon-box input:-ms-input-placeholder {
  color: #545454;
  font-size: 14px;
}
.cu-checkout-coupon-box input:focus {
  border-color: var(--cu-theme-primary);
}
.cu-checkout-coupon-box button {
  padding: 10px 30px;
}
.cu-checkout-payment {
  padding-bottom: 26px;
  margin-bottom: 24px;
  border-bottom: 1px solid #E0E2E3;
}
.cu-checkout-payment-item:not(:last-child) {
  margin-bottom: 10px;
}
.cu-checkout-payment-item.paypal-payment label {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.cu-checkout-payment-item input {
  display: none;
}
.cu-checkout-payment-item input:checked ~ label::after {
  border-color: var(--cu-theme-primary);
}
.cu-checkout-payment-item input:checked ~ label::before {
  opacity: 1;
  visibility: visible;
}
.cu-checkout-payment-item label {
  font-size: 14px;
  position: relative;
  padding-left: 27px;
  font-weight: 500;
  color: var(--cu-common-black);
}
.cu-checkout-payment-item label:hover {
  cursor: pointer;
}
.cu-checkout-payment-item label::after {
  position: absolute;
  content: "";
  left: 0;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #BCBCBC;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -ms-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.cu-checkout-payment-item label::before {
  position: absolute;
  content: "";
  left: 3px;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--cu-theme-primary);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -ms-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.cu-checkout-payment-item label img {
  margin-left: 14px;
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}
.cu-checkout-payment-item label a {
  margin-left: 20px;
  position: relative;
}
.cu-checkout-payment-item label a::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 3px;
  width: 100%;
  height: 1px;
  background-color: var(--cu-common-black);
}
.cu-checkout-payment-desc {
  position: relative;
  padding-top: 10px;
  display: none;
}
.cu-checkout-payment-desc p {
  border: 1px solid var(--cu-border-1);
  padding: 19px 30px;
  margin-left: 27px;
  font-size: 14px;
  line-height: 1.57;
  color: var(--cu-grey-1);
  margin-bottom: 0;
}
.cu-checkout-btn .cu-btn {
  padding: 11px 30px;
}
.cu-checkout-btn .cu-btn:hover {
  background: var(--cu-common-black);
  color: var(--cu-common-white);
}

/*=============================
    28. order
===============================*/
.cu-order-details {
  padding: 75px 80px 45px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .cu-order-details {
    padding: 70px 70px 55px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cu-order-details {
    padding: 70px 30px 55px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .cu-order-details {
    padding: 70px 50px 55px;
  }
}
@media (max-width: 575px) {
  .cu-order-details {
    padding: 40px 30px 45px;
  }
}
.cu-order-details-icon {
  margin-bottom: 32px;
}
.cu-order-details-icon span {
  display: inline-block;
  width: 120px;
  height: 120px;
  line-height: 118px;
  text-align: center;
  font-size: 55px;
  color: var(--cu-common-black);
  background: var(--cu-common-white);
  border-radius: 50%;
}
.cu-order-details-title {
  font-size: 30px;
  font-weight: 500;
  color: var(--cu-common-white);
  margin-bottom: 7px;
}
.cu-order-details-content p {
  font-size: 16px;
  color: var(--cu-common-white);
  line-height: 1.38;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-order-details-content p br {
    display: none;
  }
}
.cu-order-details-item {
  margin-bottom: 36px;
}
.cu-order-details-item-wrapper .row [class*=col-]:nth-child(2n) .cu-order-details-item {
  padding-left: 40px;
}
@media (max-width: 575px) {
  .cu-order-details-item-wrapper .row [class*=col-]:nth-child(2n) .cu-order-details-item {
    padding-left: 0;
  }
}
.cu-order-details-item h4 {
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
}
.cu-order-details-item p {
  font-weight: 500;
  font-size: 18px;
  color: var(--cu-common-white);
  margin-bottom: 0;
}
.cu-order-info-wrapper {
  padding: 42px 50px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cu-order-info-wrapper {
    padding: 42px 40px;
  }
}
@media (max-width: 575px) {
  .cu-order-info-wrapper {
    padding: 42px 30px;
  }
}
.cu-order-info-title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 40px;
}
.cu-order-info-list ul li {
  list-style: none;
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cu-order-info-list ul li:not(:last-child) {
  border-bottom: 1px solid #E0E2E3;
}
.cu-order-info-list ul li span {
  font-size: 15px;
  color: var(--cu-common-black);
}
.cu-order-info-list ul li.cu-order-info-list-header {
  padding-top: 0;
  padding-bottom: 12px;
}
.cu-order-info-list ul li.cu-order-info-list-header h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
}
.cu-order-info-list ul li.cu-order-info-list-desc p {
  font-size: 15px;
  margin-bottom: 0;
}
.cu-order-info-list ul li.cu-order-info-list-desc p span {
  font-size: 15px;
  font-weight: 500;
}
.cu-order-info-list ul li.cu-order-info-list-subtotal span:last-child {
  color: var(--cu-theme-primary);
}
.cu-order-info-list ul li.cu-order-info-list-shipping span input {
  display: none;
}
.cu-order-info-list ul li.cu-order-info-list-shipping span input:checked ~ label::after {
  border-color: var(--cu-theme-primary);
}
.cu-order-info-list ul li.cu-order-info-list-shipping span input:checked ~ label::before {
  opacity: 1;
  visibility: visible;
}
.cu-order-info-list ul li.cu-order-info-list-shipping span label {
  font-size: 14px;
  position: relative;
  padding-right: 27px;
}
.cu-order-info-list ul li.cu-order-info-list-shipping span label span {
  color: var(--cu-theme-primary);
}
.cu-order-info-list ul li.cu-order-info-list-shipping span label:hover {
  cursor: pointer;
}
.cu-order-info-list ul li.cu-order-info-list-shipping span label::after {
  position: absolute;
  content: "";
  right: 0;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #BCBCBC;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.cu-order-info-list ul li.cu-order-info-list-shipping span label::before {
  position: absolute;
  content: "";
  right: 4px;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--cu-theme-primary);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.cu-order-info-list ul li.cu-order-info-list-total {
  padding: 14px 0;
}
.cu-order-info-list ul li.cu-order-info-list-total span {
  font-size: 16px;
  font-weight: 500;
}
.cu-order-inner {
  background-color: var(--cu-common-white);
  box-shadow: 0px 30px 70px rgba(1, 15, 28, 0.1);
}

/*=============================
    24. login
===============================*/
.cu-login-overly {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  z-index: -1;
}

.login-wrapper {
  padding: 50px 85px 55px;
  background: var(--cu-common-white);
  box-shadow: 0px 30px 60px rgba(3, 4, 28, 0.1);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .login-wrapper {
    padding: 50px 60px 55px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .login-wrapper {
    padding: 50px 40px 55px;
  }
}
@media (max-width: 575px) {
  .login-wrapper {
    padding: 40px 25px 45px;
  }
}
.login-title {
  font-size: 34px;
  letter-spacing: -0.04em;
  margin-bottom: 6px;
}
.login-top p {
  font-size: 16px;
}
.login-input {
  position: relative;
}
.login-input-wrapper {
  margin-bottom: 14px;
}
.login-input input {
  background: #FFFFFF;
  border: 1px solid #EAEAEF;
  padding-left: 55px;
  padding-right: 50px;
  height: 60px;
  line-height: 60px;
  width: 100%;
}
.login-input input:focus {
  border-color: var(--cu-theme-primary);
}
.login-input span {
  position: absolute;
  top: 50%;
  left: 27px;
  -webkit-transform: translateY(calc(-50% - 1px));
  -moz-transform: translateY(calc(-50% - 1px));
  -ms-transform: translateY(calc(-50% - 1px));
  -o-transform: translateY(calc(-50% - 1px));
  transform: translateY(calc(-50% - 1px));
}
.login-input-item {
  position: relative;
}
.login-input-item:not(:last-child) {
  margin-bottom: 20px;
}
.login-input-item > span {
  position: absolute;
  top: 50%;
  right: 22px;
  -webkit-transform: translateY(calc(-50% - 3px));
  -moz-transform: translateY(calc(-50% - 3px));
  -ms-transform: translateY(calc(-50% - 3px));
  -o-transform: translateY(calc(-50% - 3px));
  transform: translateY(calc(-50% - 3px));
}
.login-input-item > span:hover {
  cursor: pointer;
}
.login-remember input[type=checkbox], .login-remember input[type=radio] {
  display: none;
}
.login-remember input[type=checkbox]:checked ~ label::after, .login-remember input[type=radio]:checked ~ label::after {
  background-color: transparent;
  border-color: var(--cu-theme-primary);
}
.login-remember input[type=checkbox]:checked ~ label::before, .login-remember input[type=radio]:checked ~ label::before {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.login-remember label {
  font-size: 14px;
  position: relative;
  padding-left: 30px;
  color: var(--cu-grey-1);
}
.login-remember label::after, .login-remember label::before {
  position: absolute;
  content: "";
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background-color: var(--cu-common-white);
  border: 1px solid #EAEAEF;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -ms-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.login-remember label::before {
  width: 14px;
  height: 14px;
  background-color: var(--cu-theme-primary);
  left: 3px;
  top: 5px;
  right: 3px;
  bottom: 3px;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}
.login-remember label:hover {
  cursor: pointer;
}
.login-forgot a {
  font-size: 14px;
  color: var(--cu-grey-1);
  text-transform: capitalize;
}
.login-forgot a:hover {
  color: var(--cu-theme-primary);
}
.login-btn {
  margin-bottom: 18px;
}
.login-btn .cu-btn {
  font-size: 18px;
  padding: 16px 30px;
}
.login-social-header {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: var(--cu-common-black);
  position: relative;
  display: inline-block;
  text-align: center;
  padding: 0 10px;
  margin-bottom: 25px;
}
.login-social-header::after, .login-social-header::before {
  position: absolute;
  content: "";
  left: 100%;
  top: 10px;
  width: 30px;
  height: 1px;
  background-color: var(--cu-common-black);
}
.login-social-header::before {
  left: auto;
  right: 100%;
}
.login-social-item {
  display: flex;
  gap: 7px 15px;
}
.login-social-item a {
  display: inline-block;
  padding: 11px 20px;
  font-weight: 500;
  font-size: 14px;
  background: var(--cu-common-white);
  border: 1px solid #EAEAEF;
}
@media (max-width: 575px) {
  .login-social-item a {
    width: 100%;
    margin-right: 0;
  }
}
.login-social-item a:last-child {
  margin-right: 0;
}
.login-social-item a .login-social-icon {
  margin-right: 3px;
}
.login-social-item a .login-social-icon svg {
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}
.login-social-item a:hover {
  border-color: var(--cu-theme-primary);
}
.login-register-now {
  text-align: center;
}
.login-register-now p {
  font-size: 14px;
  color: #525258;
  margin-bottom: 0;
}
.login-register-now p a {
  color: var(--cu-theme-primary);
  font-weight: 500;
}
.login-shape-1 {
  position: absolute;
  right: 14%;
  bottom: 32%;
  z-index: -1;
}
.login-shape-2 {
  position: absolute;
  right: -1%;
  bottom: 14%;
  z-index: -1;
}
.login-shape-3 {
  position: absolute;
  left: 3%;
  top: 35%;
  z-index: -1;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .login-shape-3 {
    left: -4%;
  }
}
.login-shape-4 {
  position: absolute;
  left: 18%;
  bottom: 10%;
  z-index: -1;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .login-shape-4 {
    left: 0%;
  }
}
.login-shape-5 {
  position: absolute;
  right: 20%;
  top: 43%;
  z-index: -1;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .login-shape-5 {
    right: 0%;
  }
}
.login-shape-6 {
  position: absolute;
  right: 22%;
  top: 27%;
  z-index: -1;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .login-shape-6 {
    right: 1%;
  }
}

/*=============================
    13. error
===============================*/
.cu-error-title {
  font-weight: 600;
  font-size: 40px;
  letter-spacing: -0.03em;
  color: var(--cu-common-white);
  padding-bottom: 50px;
  margin-bottom: 35px;
  border-bottom: 1px solid var(--cu-common-white);
}
.cu-error-para {
  font-weight: 400;
  font-size: 18px;
  line-height: 167%;
  color: var(--cu-common-white);
}

/*=============================
    26. my acount
===============================*/
.cu-profile-tab {
  background-color: var(--cu-common-white);
  box-shadow: 0px 30px 50px rgba(5, 47, 40, 0.12);
  padding: 30px 30px 30px 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .cu-profile-tab {
    margin-right: 0;
    margin-bottom: 50px;
  }
}
.cu-profile-tab .nav-tabs {
  padding: 0;
  border: 0;
  margin: 0;
}
.cu-profile-tab .nav-tabs .nav-link {
  font-weight: 500;
  font-size: 15px;
  color: var(--cu-text-1);
  padding: 14px 30px;
  background-color: var(--cu-common-white);
  position: relative;
  border-radius: 0;
  text-align: left;
  border: 0;
}
.cu-profile-tab .nav-tabs .nav-link span {
  margin-right: 7px;
}
.cu-profile-tab .nav-tabs .nav-link.active {
  color: var(--cu-theme-primary);
  background-color: rgba(245, 9, 99, 0.06);
}
.cu-profile-tab .nav-tabs .nav-link.active:hover {
  background-color: rgba(245, 9, 99, 0.06);
}
.cu-profile-tab .nav-tabs .nav-link:hover {
  background-color: var(--cu-grey-16);
}
.cu-profile-tab .cu-tab-menu {
  position: relative;
}
.cu-profile-tab-content {
  padding: 25px 30px 30px;
  background-color: var(--cu-common-white);
  box-shadow: 0px 30px 50px rgba(5, 47, 40, 0.12);
}
.cu-profile-info-title {
  font-size: 20px;
  margin-bottom: 25px;
}
.cu-profile-input {
  margin-bottom: 25px;
  position: relative;
}
.cu-profile-input-box h4 {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.02em;
  color: var(--cu-common-black-solid);
  margin-bottom: 10px;
}
.cu-profile-input-box h4 span {
  color: var(--cu-theme-primary);
}
.cu-profile-input-box p {
  font-size: 13px;
  color: var(--cu-common-white);
  opacity: 0.7;
  margin-bottom: 10px;
}
.cu-profile-input > span {
  position: absolute;
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cu-profile-input > span svg {
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}
.cu-profile-input input, .cu-profile-input textarea {
  width: 100%;
  height: 60px;
  line-height: 60px;
  padding: 0 25px;
  padding-left: 50px;
  border: 0;
  outline: 0;
  border: 1px solid #EAEAEF;
  background-color: var(--cu-common-white);
  color: var(--cu-common-black);
}
.cu-profile-input input:focus, .cu-profile-input textarea:focus {
  border-color: var(--cu-theme-primary);
}
.cu-profile-input textarea {
  line-height: 1.5;
  padding: 20px;
  resize: none;
  height: 200px;
  resize: none;
}
.cu-profile-input .nice-select {
  width: 100%;
  float: none;
  height: 60px;
  border: 1px solid #EAEAEF;
  border-radius: 0;
  line-height: 58px;
  padding-left: 27px;
}
.cu-profile-input .nice-select .current {
  color: var(--cu-common-black);
}
.cu-profile-input .nice-select::after {
  right: 25px;
  color: var(--cu-common-black);
}
.cu-profile-input .nice-select .list {
  width: 100%;
  border-radius: 0;
  margin-top: 0;
  padding: 13px 8px;
}
.cu-profile-input .nice-select .list .option:hover {
  color: var(--cu-common-black);
}
.cu-profile-password input {
  padding: 0 20px;
}
.cu-profile-ticket {
  border: 1px solid #EAEAEF;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-profile-ticket {
    overflow-x: scroll;
  }
}
.cu-profile-ticket table thead tr {
  background-color: transparent;
}
.cu-profile-ticket table th {
  color: var(--cu-common-black);
  border-color: #EAEAEF;
  box-shadow: none;
}
.cu-profile-ticket table td {
  color: var(--cu-common-black);
}
.cu-profile-ticket table tbody > tr:first-child {
  background-color: transparent;
}
.cu-profile-ticket table tbody > tr:not(:last-child) {
  border-bottom: 1px solid #EAEAEF;
}
.cu-profile-ticket table tbody > tr td, .cu-profile-ticket table tbody > tr th {
  color: var(--cu-common-black);
  vertical-align: middle;
}
.cu-profile-ticket table tbody > tr > th {
  padding-left: 15px;
  padding-right: 15px;
}
.cu-profile-ticket table tbody > tr th[scope=row] {
  color: var(--cu-theme-primary);
}
.cu-profile-ticket table tbody > tr td[data-info="status done"] {
  color: var(--cu-common-green-2);
}
.cu-profile-ticket table tbody > tr td[data-info="status pending"] {
  color: var(--cu-common-purple);
}
.cu-profile-ticket table tbody > tr td[data-info="status reply"] {
  color: var(--cu-common-brown-dark-2);
}
.cu-profile-ticket table tbody > tr td[data-info="status hold"] {
  color: var(--cu-common-yellow);
}
.cu-profile-ticket table tbody > tr .cu-btn {
  padding: 7px 18px;
  background-color: var(--cu-grey-2);
  border-color: var(--cu-grey-2);
  color: var(--cu-common-black);
  font-weight: 500;
  min-width: 90px;
}
.cu-profile-ticket table tbody > tr .cu-btn:hover {
  color: var(--cu-common-white);
  background-color: var(--cu-theme-primary);
}
.cu-profile-ticket .table {
  margin-bottom: 0;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-profile-ticket .table {
    width: 700px;
  }
}
.cu-profile-ticket .table > :not(:first-child) {
  border-color: #EAEAEF;
  border-top-width: 1px;
}
.cu-profile-ticket .table > :not(caption) > * > * {
  padding: 1rem 1.5rem;
  border: 0;
  box-shadow: none;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-profile-address-item {
    margin-bottom: 40px;
  }
}
.cu-profile-address-title {
  font-size: 22px;
  margin-bottom: 20px;
}
.cu-profile-address-icon span {
  display: inline-block;
  min-width: 45px;
  margin-right: 20px;
}
@media (max-width: 575px) {
  .cu-profile-address-icon span {
    margin-bottom: 20px;
  }
}
.cu-profile-address-icon span svg {
  width: 45px;
}
.cu-profile-address-icon span svg path {
  fill: var(--cu-theme-primary);
}
.cu-profile-address-content p {
  font-size: 14px;
  margin-bottom: 10px;
}
.cu-profile-address-content p span {
  color: var(--cu-common-black);
  font-weight: 500;
  margin-right: 7px;
}
.cu-profile-notification-title {
  font-size: 24px;
  color: var(--cu-common-black);
  margin-bottom: 10px;
}
.cu-profile-notification-item .form-check-input {
  margin-top: 0;
  width: 40px;
  height: 20px;
  box-shadow: none;
}
.cu-profile-notification-item .form-check-label {
  font-size: 16px;
  color: var(--cu-common-black);
  margin-left: 10px;
}
.cu-profile-notification-item .form-check-label:hover {
  cursor: pointer;
  color: var(--cu-common-black);
}
.cu-profile-notification-item .form-check-input:checked {
  background-color: var(--cu-theme-primary);
  border-color: var(--cu-theme-primary);
}
.cu-profile-btn .cu-btn {
  padding: 14px 39px;
}
@media (max-width: 575px) {
  .cu-profile-main-inner {
    margin-bottom: 20px;
  }
}
.cu-profile-main-thumb {
  position: relative;
  display: inline-block;
}
.cu-profile-main-thumb img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 16px;
}
.cu-profile-main-thumb-edit input {
  display: none;
}
.cu-profile-main-thumb-edit label {
  position: absolute;
  bottom: 8px;
  right: 8px;
  color: var(--cu-common-white);
  width: 30px;
  height: 30px;
  line-height: 26px;
  border: 2px solid var(--cu-common-white);
  text-align: center;
  background-color: var(--cu-theme-primary);
  border-radius: 50px;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.cu-profile-main-thumb-edit label:hover {
  cursor: pointer;
  color: var(--cu-common-white);
  background-color: var(--cu-common-black);
}
.cu-profile-main-title {
  font-size: 20px;
}
.cu-profile-main-content p {
  font-size: 18px;
  margin-bottom: 0;
}
.cu-profile-main-info-item {
  border: 1px solid #EAEAEF;
  text-align: center;
  padding: 27px 30px 25px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-profile-main-info-item {
    margin-bottom: 25px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cu-profile-main-info-item {
    padding: 22px 0 20px;
  }
}
.cu-profile-main-info-icon {
  position: relative;
  margin-bottom: 15px;
}
.cu-profile-main-info-icon > span {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
}
.cu-profile-main-info-icon > span svg {
  width: 60px;
}
.cu-profile-main-info-icon > span svg path {
  fill: var(--cu-common-black);
}
.cu-profile-main-info-icon .cu-profile-icon-count {
  position: absolute;
  top: 2px;
  right: -8px;
  width: 25px;
  height: 25px;
  line-height: 20px;
  border: 2px solid var(--cu-common-white);
  background-color: var(--cu-theme-primary);
  color: var(--cu-common-white);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 500;
}
.cu-profile-main-info-title {
  font-size: 18px;
  margin-bottom: 0;
}

/*=============================
  08. compare
===============================*/
.cu-compare-table td, .cu-compare-table th {
  vertical-align: middle;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 15px 25px;
  font-weight: 500;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-compare-thumb {
    width: 205px;
  }
}
.cu-compare-thumb img {
  margin-bottom: 15px;
  max-width: 100%;
}
.cu-compare-product-title {
  font-size: 18px;
  font-weight: 500;
}
.cu-compare-product-title a:hover {
  color: var(--cu-theme-primary);
}
.cu-compare-desc p {
  margin-bottom: 0;
  line-height: 1.3;
  font-size: 15px;
  font-weight: 400;
  color: var(--cu-grey-1);
}
.cu-compare-rating {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cu-compare-rating span {
  font-size: 14px;
  color: var(--cu-common-yellow);
}
.cu-compare-price span {
  font-size: 14px;
  color: var(--cu-common-black);
  font-weight: 500;
  margin-right: 7px;
}
.cu-compare-price span.old-price {
  color: #8c8c8c;
  text-decoration: line-through;
}
.cu-compare-add-to-cart .cu-btn {
  padding: 5px 18px;
  background-color: transparent;
  color: var(--cu-common-black);
}
.cu-compare-add-to-cart .cu-btn:hover {
  background-color: var(--cu-theme-primary);
  border-color: var(--cu-theme-primary);
  color: var(--cu-common-white);
}
.cu-compare-remove button {
  background: transparent;
  font-size: 16px;
  color: var(--cu-common-black);
}
.cu-compare-remove button:hover {
  color: var(--cu-theme-primary);
}

/*=============================
    34. timeline
===============================*/
.cu-timeline-wrap {
  padding-top: 130px;
  padding-bottom: 20px;
}

.cu-timeline-line {
  position: absolute;
  width: 1px;
  border: 1px dashed #ebebeb;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.cu-timeline-line::after, .cu-timeline-line::before {
  content: "";
  position: absolute;
  z-index: 3;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  z-index: 3;
  background-color: #ebebeb;
  border-radius: 50%;
}
.cu-timeline-line::before {
  top: 0;
}
.cu-timeline-line::after {
  bottom: 0;
}

.cu-timeline-inner {
  gap: 30px;
  padding-top: 80px;
  padding-bottom: 80px;
  flex-direction: column;
}

.cu-timeline-time {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--cu-common-black);
  color: var(--cu-common-white);
  border-radius: 2.5px;
  padding: 0 35px;
  font-size: 20px;
  line-height: 36px;
}

.cu-timeline-content,
.cu-timeline-image {
  max-width: 490px;
}

.cu-timeline-content {
  background-color: var(--cu-common-white);
  text-align: center;
}
.cu-timeline-content .cu-timeline-label {
  margin-bottom: 7px;
}
.cu-timeline-content .cu-timeline-title {
  margin-bottom: 10px;
}

@media (min-width: 1199px) {
  .au-timeline-inner {
    gap: 190px;
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .au-timeline-inner::before, .au-timeline-inner::after {
    width: 40px;
  }
  .au-timeline-inner::before {
    left: calc(50% + 35px);
  }
  .au-timeline-inner::after {
    right: calc(50% + 35px);
  }
}
@media (min-width: 768px) {
  .cu-timeline-content {
    text-align: right;
    width: 50%;
  }
  .cu-timeline-image {
    width: 50%;
  }
  .cu-timeline-inner {
    gap: 100px;
    flex-direction: row;
  }
  .cu-timeline-inner::after, .cu-timeline-inner::before {
    position: absolute;
    content: "";
    width: 20px;
    background-color: #ebebeb;
    height: 1px;
    z-index: 3;
    top: calc(50% + 5px);
  }
  .cu-timeline-inner::before {
    left: calc(50% + 20px);
    transform: translate(-50%);
  }
  .cu-timeline-inner::after {
    right: calc(50% + 20px);
    transform: translate(50%);
  }
  .cu-timeline-inner.cu-timeline-content-end {
    flex-direction: row-reverse;
  }
  .cu-timeline-inner.cu-timeline-content-end .cu-timeline-content {
    text-align: left;
  }
  .cu-timeline-item::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--cu-theme-primary);
  }
}
/*=============================
    22. invoice
===============================*/
.wrapper-invoice {
  background: #f2f2f2;
}

.invoice-section {
  padding: 120px 0px;
  width: 100%;
}

.invoice-section .top {
  text-align: right;
  margin-bottom: 36px;
}

.box-invoice {
  background: var(--cu-common-white);
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
}

.box-invoice .header {
  padding: 133px 100px 122px;
  border-bottom: 1px solid #ebebeb;
}

.box-invoice .wrap-top {
  display: flex;
  margin-bottom: 56px;
  align-items: center;
  gap: 15px;
}

.box-invoice .box-left {
  width: 60%;
}

.box-invoice .wrap-top .box-right {
  width: 40%;
}

.box-invoice .wrap-top .title {
  font-size: 28px;
  line-height: 36.46px;
  color: var(--cu-common-black);
  font-weight: 500;
  white-space: nowrap;
}

.box-invoice .wrap-top .price {
  font-size: 17px;
  line-height: 28px;
  font-weight: 500;
}

.box-invoice .wrap-date {
  display: flex;
  margin-bottom: 60px;
}

.box-invoice .wrap-date label {
  font-size: 15px;
  line-height: 28px;
  display: block;
}

.box-invoice .wrap-date .date {
  font-size: 15px;
  line-height: 28px;
  font-weight: 500;
}

.box-invoice .wrap-info {
  margin-bottom: 40px;
  display: flex;
}

.box-invoice .wrap-info .title {
  font-size: 20px;
  line-height: 26.04px;
  font-weight: 500;
  margin-bottom: 12px;
}

.box-invoice .wrap-info .sub {
  font-size: 15px;
  line-height: 28px;
  font-weight: 500;
}

.box-invoice .wrap-info .desc {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
  font-weight: 400;
}

.invoice-table {
  width: 100%;
}

.invoice-table thead {
  background-color: #f6f6f6;
}

.invoice-table .title th {
  padding: 20px 65px 20px 40px;
  color: var(--cu-theme-primary);
  font-weight: 500;
  font-size: 17px;
  line-height: 28px;
  text-wrap: nowrap;
}

.invoice-table .title th:first-child {
  border-radius: 8px 0 0 8px;
  width: 40%;
}

.invoice-table .title th:last-child {
  border-radius: 0px 8px 8px 0px;
}

.invoice-table .content td {
  padding: 20px 65px 20px 40px;
  font-size: 15px;
  line-height: 28px;
  border-bottom: 1px solid rgb(225, 225, 225);
  text-wrap: nowrap;
}

.invoice-table .content .total {
  font-size: 17px;
  line-height: 28px;
  font-weight: 500;
}

.invoice-table .content:last-child td {
  border-bottom: none;
}

.box-invoice .footer {
  padding: 43px 30px;
}

.box-invoice .footer .box-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.box-invoice .footer .box-contact li {
  font-size: 15px;
  line-height: 28px;
}

.box-invoice .footer .box-contact li:first-child {
  color: var(--cu-theme-primary);
}

/*=============================
    29. payment
===============================*/
.cu-page-cart-checkout {
  padding: 30px;
  background-color: var(--cu-grey-2);
}
.cu-page-cart-checkout .fs-18 {
  font-size: 18px;
  font-weight: 500;
}
.cu-page-cart-checkout .fs-22 {
  font-size: 22px;
  font-weight: 600;
  color: var(--cu-common-black);
}

/*=============================
    10. coupon
===============================*/
.cu-coupon-item {
  padding: 20px 20px;
  border: 1px solid var(--cu-border-1);
}
.cu-coupon-item-left {
  flex: 0 0 68%;
}
.cu-coupon-item-right {
  flex: 0 0 32%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .cu-coupon-item-right {
    padding-left: 3px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-coupon-item-right {
    padding-left: 0;
    margin-top: 20px;
  }
}
.cu-coupon-thumb img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  margin-right: 20px;
}
.cu-coupon-title {
  font-size: 17px;
  margin-bottom: 3px;
  font-weight: 500;
}
@media (max-width: 575px) {
  .cu-coupon-content {
    margin-top: 20px;
  }
}
.cu-coupon-countdown ul li {
  list-style: none;
  font-size: 12px;
  color: var(--cu-common-black);
  display: inline-block;
  padding: 0 12px;
  position: relative;
  text-transform: uppercase;
}
.cu-coupon-countdown ul li:first-child {
  padding-left: 0;
}
.cu-coupon-countdown ul li span {
  display: block;
  line-height: 1;
}
.cu-coupon-countdown ul li:not(:last-child)::after {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 17px;
  content: "";
  background-color: #ebebeb;
}
.cu-coupon-offer {
  font-size: 18px;
  font-weight: 600;
}
.cu-coupon-offer span {
  color: #FF2400;
  margin-right: 3px;
}
.cu-coupon-status h4 {
  font-weight: 400;
  font-size: 14px;
}
.cu-coupon-status h4 span {
  color: #FF2400;
  display: inline-block;
}
.cu-coupon-status h4 span.active {
  color: green;
}
.cu-coupon-status:hover .cu-coupon-info-tooltip {
  visibility: visible;
  opacity: 1;
  bottom: calc(100% + 12px);
}
.cu-coupon-status:hover .cu-coupon-info-details span {
  color: #8E959B;
}
.cu-coupon-date span {
  display: inline-block;
  background-color: rgba(0, 128, 128, 0.1);
  border: 2px dashed rgba(0, 128, 128, 0.4);
  padding: 6px 30px;
  font-size: 15px;
  color: #008080;
  font-weight: 600;
  letter-spacing: 1px;
}
.cu-coupon-border {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 35%;
  display: inline-block;
  width: 2px;
  height: 100%;
  background-color: transparent;
  border-left: 2px dashed var(--cu-border-1);
  z-index: 1;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cu-coupon-border {
    right: 20%;
  }
}
.cu-coupon-border::after, .cu-coupon-border::before {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  background-color: #fff;
  bottom: -13px;
  right: 50%;
  z-index: 1;
  border: 1px solid var(--cu-border-1);
  transform: translateX(50%);
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom: 0;
  clip-path: polygon(0 0, 100% 0%, 100% 50%, 0 50%);
}
.cu-coupon-border::before {
  bottom: auto;
  top: -14px;
  transform: translateX(50%) scale(1, -1);
}
.cu-coupon-info-details {
  position: relative;
}
.cu-coupon-info-details span {
  color: #BCBFC2;
  margin-left: 7px;
  display: inline-block;
}
.cu-coupon-info-details span svg {
  width: 16px;
  height: 16px;
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  transform: translateY(-5px);
}
.cu-coupon-info-details:hover span {
  color: #8E959B;
}
.cu-coupon-info-tooltip {
  position: absolute;
  bottom: calc(100% + 25px);
  right: -22px;
  min-width: 286px;
  background-color: var(--cu-common-white);
  padding: 13px 20px 15px;
  box-shadow: 0px 10px 30px rgba(4, 11, 17, 0.14);
  visibility: hidden;
  opacity: 0;
  z-index: 9;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .cu-coupon-info-tooltip {
    right: auto;
    left: -98px;
  }
}
@media (max-width: 575px) {
  .cu-coupon-info-tooltip {
    right: auto;
    left: -127px;
  }
}
.cu-coupon-info-tooltip::after {
  position: absolute;
  content: "";
  right: 15px;
  bottom: 0;
  width: 18px;
  height: 18px;
  background-color: var(--cu-common-white);
  -webkit-transform: rotate(45deg) translateY(50%);
  -moz-transform: rotate(45deg) translateY(50%);
  -ms-transform: rotate(45deg) translateY(50%);
  -o-transform: rotate(45deg) translateY(50%);
  transform: rotate(45deg) translateY(50%);
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .cu-coupon-info-tooltip::after {
    right: 157px;
  }
}
@media (max-width: 575px) {
  .cu-coupon-info-tooltip::after {
    right: 128px;
  }
}
.cu-coupon-info-tooltip p {
  font-size: 14px;
  line-height: 1.43;
  color: #525258;
  margin-bottom: 0;
}
.cu-coupon-info-tooltip p span {
  color: var(--cu-common-black) !important;
  font-weight: 500;
  margin-left: 0;
}

/*# sourceMappingURL=main.css.map */
