.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.block {
  display: block;
}

.gap-4 {
  gap: 1rem;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.w-full {
  width: 100%;
}

.mb-5 {
  margin-bottom: 20px;
}

.mr-5 {
  margin-right: 5px;
}

.loading-slider {
  max-height: 0;
  overflow: hidden;
  transition: max-height 1s cubic-bezier(0, 1, 0, 1);
}

/* START TOOLTIP STYLES */
[tooltip] {
  position: relative;
  /* opinion 1 */
}

/* Applies to all tooltips */
[tooltip]::before,
[tooltip]::after {
  text-transform: none;
  /* opinion 2 */
  font-size: 0.875rem;
  /* opinion 3 */
  line-height: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  position: absolute;
  display: none;
  opacity: 0;
  font-family: var(--font-family-saira);
}

[tooltip]::before {
  content: "";
  border: 5px solid transparent;
  /* opinion 4 */
  z-index: 1001;
  /* absurdity 1 */
}

[tooltip]::after {
  content: attr(tooltip);
  /* magic! */
  /* most of the rest of this is opinion */
  text-align: center;
  /*
    Let the content set the size of the tooltips
    but this will also keep them from being obnoxious
    */
  min-width: 3em;
  max-width: 21em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 4px 6px;
  font-size: 0.75rem;
  border-radius: 0.3ch;
  box-shadow: 0 1em 2em -0.5em rgba(0, 0, 0, 0.35);
  background: #000000;
  color: #fff;
  z-index: 1000;
  font-weight: 500;
  /* absurdity 2 */
}

/* Make the tooltips respond to hover */
[tooltip]:hover::before,
[tooltip]:hover::after {
  display: block;
}

/* don't show empty tooltips */
[tooltip=""]::before,
[tooltip=""]::after {
  display: none !important;
}

/* FLOW: UP */
[tooltip]:not([flow])::before,
[tooltip][flow^=up]::before {
  bottom: calc(100% + 5px);
  border-top-color: #000000;
}

[tooltip]:not([flow])::after,
[tooltip][flow^=up]::after {
  bottom: calc(100% + 15px);
}

[tooltip]:not([flow])::before,
[tooltip]:not([flow])::after,
[tooltip][flow^=up]::before,
[tooltip][flow^=up]::after {
  left: 50%;
  transform: translate(-50%, -0.5em);
}

/* FLOW: DOWN */
[tooltip][flow^=down]::before {
  top: 100%;
  border-top-width: 0;
  border-bottom-color: #000000;
}

[tooltip][flow^=down]::after {
  top: calc(100% + 5px);
}

[tooltip][flow^=down]::before,
[tooltip][flow^=down]::after {
  left: 50%;
  transform: translate(-50%, 0.5em);
}

/* FLOW: LEFT */
[tooltip][flow^=left]::before {
  top: 50%;
  border-right-width: 0;
  border-left-color: #000000;
  left: calc(0em - 15px);
  transform: translate(-0.5em, -50%);
}

[tooltip][flow^=left]::after {
  top: 50%;
  right: calc(100% + 15px);
  transform: translate(-0.5em, -50%);
  font-size: 0.875rem;
  font-family: var(--font-family-saira);
}

/* FLOW: RIGHT */
[tooltip][flow^=right]::before {
  top: 50%;
  border-left-width: 0;
  border-right-color: #000000;
  right: calc(0em - 15px);
  transform: translate(0.5em, -50%);
}

[tooltip][flow^=right]::after {
  top: 50%;
  left: calc(100% + 15px);
  transform: translate(0.5em, -50%);
}

/* KEYFRAMES */
@keyframes tooltips-vert {
  to {
    opacity: 0.9;
    transform: translate(-50%, 0);
  }
}
@keyframes tooltips-horz {
  to {
    opacity: 0.9;
    transform: translate(0, -50%);
  }
}
/* FX All The Things */
[tooltip]:not([flow]):hover::before,
[tooltip]:not([flow]):hover::after,
[tooltip][flow^=up]:hover::before,
[tooltip][flow^=up]:hover::after,
[tooltip][flow^=down]:hover::before,
[tooltip][flow^=down]:hover::after {
  animation: tooltips-vert 300ms ease-out forwards;
}

[tooltip][flow^=left]:hover::before,
[tooltip][flow^=left]:hover::after,
[tooltip][flow^=right]:hover::before,
[tooltip][flow^=right]:hover::after {
  animation: tooltips-horz 300ms ease-out forwards;
}

.product-grid:not(.product-grid-slider) {
  /* We set the scroll snapping */
  /* scroll-snap-type: x mandatory; */
  /* Necessary for mobile scrolling */
  -webkit-overflow-scrolling: touch;
  /* For layout purposes */
  display: flex;
  /* To allow horizontal scrolling */
  overflow-x: scroll;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .banner_masonry .banner-item .banner-item-img img {
    height: 300px;
  }
}

html.nav-open-additional-menu .toggle-desktop-additional-menu:after {
  opacity: 1;
  visibility: visible;
}

html.nav-open-additional-menu .gp-additional-menu {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}

.toggle-desktop-additional-menu:after {
  background: rgba(0, 0, 0, 0.6);
  content: "";
  display: block;
  height: 100vh;
  position: fixed;
  right: 0;
  top: 0;
  width: 100vw;
  z-index: 0;
  transition: all 300ms;
  -moz-transition: all 300ms;
  -ms-transition: all 300ms;
  -o-transition: all 300ms;
  -webkit-transition: all 300ms;
  opacity: 0;
  visibility: hidden;
}

.open-additional-menu-desktop.nav-open-additional-menu .toolbar-menu {
  display: block;
}

.open-additional-menu-desktop.nav-open-additional-menu .toolbar-menu {
  display: block;
}

html.nav-open-additional-menu.open-additional-menu-desktop .toggle-desktop-additional-menu:after {
  background: rgba(0, 0, 0, 0.3);
}

html.open-additional-menu-desktop.nav-open-additional-menu .gp-additional-menu {
  transform: none;
}

html.open-additional-menu-desktop .gp-additional-menu {
  z-index: 997;
}

.toolbar-menu {
  display: none;
}

@media (max-width: 1024px) {
  .toolbar-menu {
    display: block;
  }
  .toolbar-menu .header-group {
    width: 100%;
    background: #fff;
    z-index: 97;
    position: fixed;
    bottom: 0;
    left: 0;
    height: 50px;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.05);
  }
  .toolbar-menu .header-group.no-text .toolbar-item span.toolbar-item-title {
    display: none;
  }
  .toolbar-menu .header-group .toolbar-item {
    display: inline-block;
    margin: 0;
    text-align: center;
    float: left;
    padding: 0 5px;
  }
  .toolbar-menu .header-group .toolbar-item > a {
    margin: 0 auto;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    height: 100%;
  }
  .toolbar-menu .header-group .toolbar-item > a .theme-iconheart {
    margin-top: 2px;
  }
  .toolbar-menu .header-group .toolbar-item i {
    font-size: 18px;
    line-height: 25px;
    display: block;
  }
  .toolbar-menu .header-group .toolbar-item i.theme-iconshopping-cart1 {
    margin-top: 2px;
  }
  .toolbar-menu .header-group .toolbar-item .counter {
    background-color: #ff6e68;
    color: #fff;
    font-size: 10px;
    display: inline-block;
    line-height: 17px;
    min-width: 17px;
    min-height: 17px;
    border-radius: 50%;
    position: absolute;
    margin-left: 21px;
    top: 13px;
    text-align: center;
    transition: all 0.5s;
    padding: 0 3px;
  }
  .toolbar-menu .header-group .toolbar-item span.toolbar-item-title {
    font-size: 14px;
    line-height: 1;
    display: block;
  }
  .toolbar-menu .row-item {
    display: flex;
    flex-wrap: nowrap;
    overflow-y: auto;
    height: 100%;
  }
  .toolbar-menu .row-item.row-1 > .toolbar-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .toolbar-menu .row-item.row-2 > .toolbar-item {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .toolbar-menu .row-item.row-3 > .toolbar-item {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .toolbar-menu .row-item.row-4 > .toolbar-item {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .toolbar-menu .row-item.row-5 > .toolbar-item {
    flex: 0 0 20%;
    max-width: 20%;
  }
}
.gp-additional-menu {
  background-color: #fff;
  background: #fff;
  list-style-type: none;
  box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.29);
  position: fixed;
  top: 0;
  right: 0;
  left: auto;
  height: 100%;
  max-width: 345px;
  width: calc(100% - 30px);
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transition: all 0.6s ease-in-out;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -ms-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  z-index: 100;
  text-align: left;
  padding: 15px 20px;
  overflow-x: hidden;
  overflow-y: auto;
}

.gp-additional-menu > * {
  border-bottom: 1px solid var(--color-borders);
  padding: 15px 0;
}

.gp-additional-menu > *:last-child {
  border-bottom: none;
}

.gp-additional-menu .switcher-currency .currency-picker__wrapper:after {
  display: none;
}

.gp-additional-menu .switcher-currency .currency-picker {
  width: 100% !important;
  border: 1px solid var(--color-border-form);
  color: var(--color-text-field-text);
  margin: 0;
  padding: 0 35px 0 17px;
  height: 40px;
}

.gp-additional-menu .switcher-currency .currency-picker:focus {
  outline-color: var(--color-border-form);
  border: 1px solid var(--color-border-form);
}

.gp-additional-menu .title {
  text-transform: capitalize;
  margin-top: 20px;
}

.gp-additional-menu h5 {
  margin-bottom: 10px;
}

.gp-additional-menu .header-socials li {
  border: none;
  display: inline-block;
  margin: 0 15px 10px 0;
}

.rte h1, .rte .h1, .rte h2, .rte .h2, .rte h3, .rte .h3, .rte h4, .rte .h4, .rte h5, .rte .h5, .rte h6, .rte .h6 {
  margin-top: 20px;
  margin-bottom: 20px;
}

/* HEADER CART */
.overlay-body-cart-ajax {
  position: relative;
  overflow: hidden;
}
.overlay-body-cart-ajax::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  content: "";
  background: #000000;
  opacity: 0.5;
  z-index: 98;
}

@media (min-width: 1025px) {
  .action-cart {
    cursor: pointer;
    display: block;
    text-decoration: none;
    position: relative;
    padding: 15px 20px 15px 15px;
  }
  .action-cart:before {
    font-size: 18px;
    content: "\e94d";
    font-family: "lusion";
    color: #ffffff;
    transition: color 0.3s;
  }
}
.action-cart:hover:before {
  color:#bd8115;
}

.action-cart .counter {
  height: 17px;
  line-height: 17px;
  border-radius: 50%;
  display: inline-block;
  margin: 0;
  padding: 0 3px;
  min-width: 17px;
  text-align: center;
  white-space: normal;
  font-size: 10px;
  font-weight: 400;
  vertical-align: top;
  color: var(--minicart_number_color);
  background: #a30000;
  position: absolute;
  right: -9px;
  top: 0;
  letter-spacing: 0;
}

.minicart-content {
  color: var(--minicart_text_color);
}

.minicart-content .header-cart-title {
  background-color: var(--minicart_background_color);
}

.minicart-content .header-cart-title h3 {
  color: var(--minicart_heading_color);
  font-size: 18px;
  font-weight: 400;
  display: block;
  text-transform: capitalize;
}

.minicart-content .header-cart-title h3 span.count-product-cart {
  font-size: 16px;
  color: var(--minicart_price_color);
}

.minicart-content .btn-minicart-close {
  color: var(--minicart_close_icon_color);
}

.minicart-content .empty {
  display: block;
  font-size: 16px;
  padding: 0 0 5px;
  font-weight: 400;
  color: var(--minicart_text_color);
  margin-top: -5px;
}

.minicart-content .minicart-items-wrapper {
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  max-height: 318px;
  max-height: unset;
  /* width */
  /* Track */
  /* Handle */
}

.minicart-content .minicart-items-wrapper::-webkit-scrollbar {
  width: 5px;
}

.minicart-content .minicart-items-wrapper::-webkit-scrollbar-track {
  background: #eeeeee;
}

.minicart-content .minicart-items-wrapper::-webkit-scrollbar-thumb {
  background: #d7d7d7;
}

.minicart-content .minicart-items {
  height: auto;
}

.minicart-content .minicart-items .product-item {
  padding: 20px 0;
}

.minicart-content .minicart-items .product-item:after {
  content: "";
  display: table;
  width: 100%;
}

.minicart-content .minicart-items .product-item:first-child {
  padding-top: 0;
}

.minicart-content .minicart-items .product-item:not(:first-child) {
  border-top: 1px solid var(--minicart_devide_border_color);
}

.minicart-content .minicart-items .product-item:last-child {
  border-bottom: 1px solid var(--minicart_devide_border_color);
}

.minicart-content .minicart-items .product-item .product-item-photo {
  float: left;
}

.minicart-content .minicart-items .product-item .product-item-photo img {
  display: block;
  width: 60px;
  height: auto;
  border: 1px solid #ebeeee;
  margin: 0 21px 0 0;
}

.minicart-content .minicart-items .product-item .product-item-details {
  float: left;
  width: calc(100% - 87px);
}

.minicart-content .minicart-items .product-item .product-item-name {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 5px;
  display: flex;
  justify-content: space-between;
  line-height: 1;
}

.minicart-content .minicart-items .product-item .product-item-name a {
  color: var(--minicart_product_name_color);
}

.minicart-content .minicart-items .product-item .product-item-name a:hover {
  color: var(--color-primary);
}

.minicart-content .minicart-items .product-item .product-item-name .action.delete {
  margin-left: 15px;
}

.minicart-content .minicart-items .product-item .product-item-name .action.delete:before {
  -webkit-font-smoothing: antialiased;
  font-size: 12px;
  line-height: 20px;
  content: "\e918";
  font-family: "lusion";
  vertical-align: middle;
  display: inline-block;
  font-weight: normal;
  overflow: hidden;
  speak: none;
  text-align: center;
  color: #b7b7b7;
}

.minicart-content .minicart-items .product-item .product-item-name .action.delete span {
  display: none;
}

.minicart-content .minicart-items .product-item .price {
  font-weight: 400;
  font-size: 16px;
  color: var(--minicart_price_color);
}

.minicart-content .minicart-items .product-item .product-item-options {
  margin: 0;
  font-size: 14px;
}

.minicart-content .minicart-items .product-item .product-item-options:after {
  content: "";
  display: table;
  width: 100%;
}

.minicart-content .minicart-items .product-item .product-item-options dt,
.minicart-content .minicart-items .product-item .product-item-options dd {
  float: left;
}

.minicart-content .minicart-items .product-item .product-item-options dt {
  clear: left;
}

.minicart-content .minicart-items .product-item .product-item-options dt:after {
  content: ":";
}

.minicart-content .minicart-items .product-item .product-item-options dd {
  margin: 0 0 0 3px;
}

.minicart-content .minicart-items .product-item .details-qty {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border: 1px solid var(--color-borders);
  border-radius: var(--color-form-field-border-radius);
  background-color: var(--color-form-field-background);
}

.minicart-content .minicart-items .product-item .details-qty input {
  text-align: center;
  width: 30px;
  border-radius: 3px;
  padding: 0 3px;
  height: 25px;
  border: none;
  color: var(--minicart_quantity_number_color);
}

.minicart-content .minicart-items .product-item .details-qty .edit-qty {
  color: var(--minicart_quantity_number_color);
  cursor: pointer;
  font-size: 10px;
  height: 25px;
  width: 25px;
  line-height: 29px;
  text-align: center;
  display: block !important;
}

.minicart-content .minicart-items .product-item .details-qty:active,
.minicart-content .minicart-items .product-item .details-qty:focus-within,
.minicart-content .minicart-items .product-item .details-qty:focus {
  border-color: var(--color-form-field-focus);
}

.minicart-content .summary {
  border-bottom: 1px solid var(--minicart_devide_border_color);
}

.minicart-content .summary .subtotal {
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 20px;
  padding-top: 0;
  display: flex;
  font-weight: 400;
}

.minicart-content .summary .subtotal .subtotal-title {
  text-transform: capitalize;
  font-size: 16px;
  color: var(--minicart_heading_color);
}

.minicart-content .summary .subtotal .subtotal-price {
  font-size: 20px;
  color: var(--minicart_price_color);
}

.minicart-content .actions a {
  width: 100%;
}

.minicart-content .actions .viewcart {
  margin-top: 10px;
}

.minicart-content .actions .viewcart .btn {
  position: relative;
  z-index: 0;
  transition: color 0.15s;
  overflow: visible;
  background: 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  letter-spacing: normal;
  text-transform: capitalize;
  color: var(--color-btn-secondary-text);
  background-color: var(--color-btn-secondary-background);
}

.minicart-content .actions .viewcart .btn:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 0;
  transform-origin: 0 50%;
  transition-property: transform;
  transition-duration: 0.4s;
  transition-timing-function: ease-out;
  transition: all ease 0.4s;
  background-color: var(--color-btn-secondary-background-hover);
}

.minicart-content .actions .viewcart .btn:hover {
  color: var(--color-btn-secondary-text-hover);
}

.minicart-content .actions .viewcart .btn:hover:before {
  width: 100%;
}

.minicart-content .actions .checkout .btn {
  position: relative;
  z-index: 0;
  transition: color 0.15s;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  letter-spacing: normal;
  text-transform: capitalize;
  color: var(--color-btn-primary-text);
  background-color: var(--color-btn-primary-background);
}

.minicart-content .actions .checkout .btn:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 0;
  transform-origin: 0 50%;
  transition-property: transform;
  transition-duration: 0.4s;
  transition-timing-function: ease-out;
  transition: all ease 0.4s;
}

.minicart-content .actions .checkout .btn:hover {
  color: var(--color-btn-primary-text-hover);
}

.minicart-content .actions .checkout .btn:hover:before {
  width: 100%;
  background-color: var(--color-btn-primary-background-hover);
}

.cart-slideout {
  text-align: left;
  position: fixed;
  top: 0;
  bottom: 0;
  background-color: #fff;
  right: 0;
  max-width: 456px;
  z-index: 100;
  transition: all 400ms;
  transform: translateX(100%);
  display: block !important;
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.05);
}

.cart-slideout .cart-slideout-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.cart-slideout .cart-slideout-inner .header-cart-title {
  padding: 30px 15px;
  position: relative;
}

.cart-slideout .cart-slideout-inner .header-cart-title .btn-minicart-close {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  box-shadow: none !important;
  display: inherit;
}

.cart-slideout .cart-slideout-inner .header-cart-title .btn-minicart-close:after {
  content: "\e918";
  font-family: "lusion";
  font-size: 13px;
  line-height: 20px;
}

.cart-slideout .cart-slideout-inner .minicart-slideout-wrapper {
  padding: 15px;
  flex: 1;
  overflow: auto;
}

.minicart-slideout-wrapper::-webkit-scrollbar {
  display: none;
}

.cart-slideout .cart-slideout-inner .minicart-slideout-wrapper .product .product-item-details .details-product-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 13px;
}

.header-cart.toggle-cart-slide:after {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  content: "";
  z-index: 99;
  transition: all 400ms;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.3);
  transition-delay: 0.25s;
  -webkit-transition-delay: 0.25s;
  -moz-transition-delay: 0.25s;
  -o-transition-delay: 0.25s;
}

.active.cart-slideout {
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -o-transform: translateX(0);
}

.active.toggle-cart-slide:after {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
}

/* WISHLIST SLIDEOUT */
.wishlist-slideout-container:before {
  position: fixed;
  top: 0;
  left: 0;
  right: auto;
  width: 100vw;
  height: 100vh;
  content: "";
  z-index: 100;
  transition: all 400ms;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.3);
}

.wishlist-slideout-container.active:before {
  opacity: 1;
  visibility: visible;
  z-index: 998;
}

.wishlist-slideout {
  text-align: left;
  position: fixed;
  top: 0;
  background-color: #fff;
  right: 0;
  height: 100%;
  width: 456px;
  max-width: calc(100vw - 40px);
  z-index: 100;
  transition: all 400ms;
  transform: translateX(100%);
  display: block !important;
  padding: 0;
}

.wishlist-slideout.active {
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -o-transform: translateX(0);
  z-index: 999;
}

.wishlist-slideout.loading .ajax-loader {
  display: block;
}

.wishlist-slideout .wishlist-slideout-inner {
  padding: 0;
  z-index: 999;
  position: relative;
  height: 100%;
  color: var(--minicart_text_color);
}

.wishlist-slideout .wishlist-slideout-inner .wishlist-dropdown-wrapper {
  height: 100%;
}

.wishlist-slideout .wishlist-slideout-inner .header-wishlist-title {
  padding: 27px 50px;
  background-color: var(--minicart_background_color);
  position: relative;
}

@media (max-width: 767px) {
  .wishlist-slideout .wishlist-slideout-inner .header-wishlist-title {
    padding: 27px 20px;
  }
}
.wishlist-slideout .wishlist-slideout-inner h3 {
  color: var(--minicart_heading_color);
  font-size: 18px;
  font-weight: 400;
  display: block;
  letter-spacing: 0.025em;
  text-transform: capitalize;
}

.wishlist-slideout .wishlist-slideout-inner .close_wishlist_slideout {
  color: var(--minicart_close_icon_color);
}

.wishlist-slideout .wishlist-slideout-inner .empty {
  display: block;
  font-size: 16px;
  padding: 23px 50px 20px;
  font-weight: 400;
  color: var(--minicart_text_color);
}

@media (max-width: 767px) {
  .wishlist-slideout .wishlist-slideout-inner .empty {
    padding: 23px 20px 20px;
  }
}
.wishlist-slideout .wishlist-slideout-inner .wishlist-items-wrapper {
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 25px 50px;
  max-height: calc(100% - 70px);
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
}

@media (max-width: 767px) {
  .wishlist-slideout .wishlist-slideout-inner .wishlist-items-wrapper {
    padding: 25px 32px 25px 20px;
  }
}
.wishlist-slideout .wishlist-slideout-inner .wishlist-items-wrapper::-webkit-scrollbar {
  width: 6px;
}

.wishlist-slideout .wishlist-slideout-inner .wishlist-items-wrapper::-webkit-scrollbar-track {
  background: #eee;
}

.wishlist-slideout .wishlist-slideout-inner .wishlist-items-wrapper::-webkit-scrollbar-thumb {
  background: #ddd;
}

@media (max-width: 480px) {
  .wishlist-slideout .wishlist-slideout-inner .wishlist-items-wrapper .product-buttons .btn-mini.btn-add-to-cart {
    padding: 7.5px 16px;
  }
}
.wishlist-slideout .wishlist-slideout-inner .wishlist-items {
  height: auto;
}

.wishlist-slideout .wishlist-slideout-inner .wishlist-items .product-item {
  padding: 20px 0;
  position: relative;
}

.wishlist-slideout .wishlist-slideout-inner .wishlist-items .product-item:after {
  content: "";
  display: table;
  width: 100%;
}

.wishlist-slideout .wishlist-slideout-inner .wishlist-items .product-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.wishlist-slideout .wishlist-slideout-inner .wishlist-items .product-item:not(:first-child) {
  border-top: 1px solid var(--minicart_devide_border_color);
}

.wishlist-slideout .wishlist-slideout-inner .wishlist-items .product-item:last-child {
  padding-bottom: 0;
}

.wishlist-slideout .wishlist-slideout-inner .wishlist-items .product-item .image {
  float: left;
  width: 100px;
}

.wishlist-slideout .wishlist-slideout-inner .wishlist-items .product-item .image .hover-change-img {
  border: none;
  background: none;
  display: block;
}

.wishlist-slideout .wishlist-slideout-inner .wishlist-items .product-item .image img {
  display: block;
}

.wishlist-slideout .wishlist-slideout-inner .wishlist-items .product-item .image img + img {
  display: none;
}

.wishlist-slideout .wishlist-slideout-inner .wishlist-items .product-item .product-item-details {
  float: left;
  width: calc(100% - 100px);
  padding-left: 20px;
  position: relative;
}

.wishlist-slideout .wishlist-slideout-inner .wishlist-items .product-item .product-item-name {
  font-size: 16px;
  font-weight: 400;
  display: block;
  margin-bottom: 5px;
  padding-right: 15px;
}

.wishlist-slideout .wishlist-slideout-inner .wishlist-items .product-item .product-item-name a:hover {
  color: var(--color-primary);
}

.wishlist-slideout .wishlist-slideout-inner .wishlist-items .product-item .price {
  font-weight: 400;
  font-size: 16px;
  color: var(--color-price);
}

.wishlist-slideout .wishlist-slideout-inner .wishlist-items .product-item .image .product-buttons,
.wishlist-slideout .wishlist-slideout-inner .wishlist-items .product-item .product-labels,
.wishlist-slideout .wishlist-slideout-inner .wishlist-items .product-item .btn-wishlist,
.wishlist-slideout .wishlist-slideout-inner .wishlist-items .product-item .btn-quick-view,
.wishlist-slideout .wishlist-slideout-inner .wishlist-items .product-item .btn-compared {
  display: none;
}

.wishlist-slideout .wishlist-slideout-inner .wishlist-items .product-item .product-buttons {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.wishlist-slideout .wishlist-slideout-inner .wishlist-items .product-item .btn-remove-wishlist {
  position: absolute;
  right: -12px;
  top: -2px;
  display: unset;
}

.wishlist-slideout .wishlist-slideout-inner .wishlist-items .product-item .btn-remove-wishlist:before {
  -webkit-font-smoothing: antialiased;
  font-size: 12px;
  line-height: 20px;
  content: "\e918";
  font-family: "lusion";
  vertical-align: middle;
  display: inline-block;
  font-weight: normal;
  overflow: hidden;
  speak: never;
  text-align: center;
}

.wishlist-slideout .wishlist-items-wrapper {
  height: 100%;
  margin: 0 -20px;
  max-height: unset;
}

.wishlist-slideout .btn-wishlist-close {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 43px;
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  box-shadow: none !important;
  display: inherit;
}

.wishlist-slideout .btn-wishlist-close:after {
  display: block;
  content: "\e918";
  font-family: "lusion";
  font-size: 13px;
  line-height: 20px;
}

@media (max-width: 767px) {
  .wishlist-slideout .btn-wishlist-close {
    right: 25px;
  }
}
@media (max-width: 415px) {
  .wishlist-slideout {
    width: 100%;
    max-width: 100vw;
  }
}
@media (max-height: 415px) {
  .cart-slideout .cart-slideout-inner .minicart-slideout-wrapper {
    overflow: auto;
  }
  .cart-slideout .cart-slideout-inner .minicart-slideout-wrapper .minicart-items-wrapper {
    height: auto;
  }
}
@media (min-width: 1025px) {
  .cart-slideout {
    min-width: 456px;
  }
}
@media (max-width: 1024px) {
  .cart-slideout {
    width: 400px;
  }
}
@media (max-width: 767px) {
  .cart-slideout {
    max-width: calc(100% - 40px);
  }
  .cart-slideout .cart-slideout-inner .header-cart-title {
    padding: 22px 20px;
  }
  .cart-slideout .cart-slideout-inner .header-cart-title .btn-minicart-close {
    right: 26px;
  }
  .cart-slideout .cart-slideout-inner .minicart-slideout-wrapper {
    padding: 30px 20px 50px;
  }
}
@media (max-width: 479px) {
  .action-cart {
    padding-left: 10px;
  }
}
@media (max-width: 380px) {
  .cart-slideout {
    max-width: 100%;
  }
}
/* END HEADER CART */
.minicart-footer {
  padding: 15px;
  background-color: var(--minicart_background_color);
}

.tca-icon__item svg {
  pointer-events: none;
  margin: auto;
  display: block;
}

.tca-icon {
  border-radius: 5px;
  margin-bottom: 20px;
}
.tca-icon ul {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  border: 1px solid #ccc;
  padding: 10px 0;
}
.tca-icon ul li {
  padding: 0 15px;
  border-left: 1px solid #ccc;
  cursor: pointer;
  flex: 1;
}
.tca-icon ul li:first-child {
  border-left: none;
}

.drawer__footer .tca_item.ajc-hidden {
  height: 0;
  transition: all 0.5s ease;
  visibility: hidden;
  opacity: 0;
  margin: 0;
  overflow: hidden;
}

.tca_item {
  height: auto;
  transition: all 0.5s ease;
  visibility: visible;
  opacity: 1;
  border-bottom: 1px solid #eee;
  margin-bottom: 15px;
  text-align: left;
}
.tca_item .title-item {
  font-size: 16px;
}
.tca_item p {
  margin: 0;
}
.tca_item .field-top {
  margin-bottom: 20px;
}

.tca__note .note-wapper {
  margin-bottom: 10px;
}

.tca-mini_cart-tool__wrap svg.tca-gift-svg {
  margin: 0 auto;
  width: 40px;
  height: 40px;
  color: #ec0101;
}

.tca-gift_wrap_text {
  margin-top: 10px;
  display: block;
  text-align: center;
}
.tca-gift_wrap_text span {
  color: #000000;
  display: block;
}

.tca-footer__freeship .process-bar {
  padding-bottom: 15px;
}
.tca-footer__freeship .process-bar__item {
  border: 1px solid #ccc;
  width: 100%;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  overflow: hidden;
}
.tca-footer__freeship .process-bar__item .text {
  z-index: 9;
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
  animation: 5s horizontal-shaking ease;
  animation-iteration-count: infinite;
  color: #000000;
}
@keyframes horizontal-shaking {
  0% {
    transform: skewY(-2deg);
  }
  5% {
    transform: skewY(2deg);
  }
  10% {
    transform: skewY(-2deg);
  }
  15% {
    transform: skewY(2deg);
  }
  20% {
    transform: skewY(0deg);
  }
  100% {
    transform: skewY(0deg);
  }
}
.tca-footer__freeship .process-bar__item.is-active .text {
  color: #fff;
}
.tca-footer__freeship .process-bar__item.is-active .process-bar__percent {
  animation: progressAnimation 6s;
  background-color: green;
  background-image: linear-gradient(45deg, darkgreen 25%, transparent 25%, transparent 50%, darkgreen 50%, darkgreen 75%, transparent 75%, transparent);
}
.tca-footer__freeship .process-bar__percent {
  background-color: #FCBC51;
  left: 0;
  right: 0;
  height: 100%;
  background-image: linear-gradient(45deg, #fca311 25%, transparent 25%, transparent 50%, #fca311 50%, #fca311 75%, transparent 75%, transparent);
}

.tca__note textarea {
  width: 100%;
  border: 1px solid #e7e7e7;
  border-radius: 7px;
  padding: 15px;
  min-height: unset;
  font-size: 16px;
}

.scrolling__content .item {
  animation: loop 20s infinite linear;
  white-space: nowrap;
  display: flex;
}

.scrolling__ticker * {
  animation: none;
}

.scrolling__ticker p {
  display: inline;
}

.scrolling__content:hover .item {
  animation-play-state: paused;
}

@keyframes loop {
  100% {
    transform: translateX(-100%);
  }
}
.scrolling p {
  margin: 0;
}
.scrolling__content {
  display: flex;
  align-items: center;
  overflow: hidden;
}
.scrolling .scrolling__items {
  display: flex;
  align-items: center;
}

.gp-newsletter.has-border {
  border: 1px solid #ebeeee;
}
@media (max-width: 767px) {
  .gp-newsletter.has-border {
    border-left: none;
    border-right: none;
  }
}
.gp-newsletter .gp-newsletter-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0 auto;
  max-width: 100%;
}
.gp-newsletter .gp-newsletter-form.layout-borderless form {
  margin: 0;
  max-width: 100%;
  width: 770px;
}
.gp-newsletter .gp-newsletter-form.layout-borderless form .input-group {
  position: relative;
}
.gp-newsletter .gp-newsletter-form.layout-borderless form input[type=email] {
  height: auto;
  padding: 7px 0 4px;
  min-height: 35px;
  font-size: 16px;
  border: none;
  border-bottom: 1px solid #ebeeee;
  margin-bottom: 0;
  padding-right: 30px;
  background-color: transparent;
  width: 100%;
}
.gp-newsletter .gp-newsletter-form.layout-borderless form input[type=email]:focus {
  background: transparent;
  outline: none;
}
.gp-newsletter .gp-newsletter-form.layout-borderless form .input-group__btn {
  position: absolute;
  width: auto;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.gp-newsletter .gp-newsletter-form.layout-borderless form .input-group__btn:before {
  content: "\e91d";
  font-family: "lusion";
  position: absolute;
  font-size: 16px;
  right: 0;
  pointer-events: none;
  top: 50%;
  transform: translateY(-50%);
}
.gp-newsletter .gp-newsletter-form.layout-borderless form .input-group__btn button {
  font-size: 0;
  padding: 0 15px;
}
.gp-newsletter .gp-newsletter-form.layout-bordered form {
  margin: 0 auto;
  max-width: 100%;
  width: 770px;
}
.gp-newsletter .gp-newsletter-form.layout-bordered form .input-group {
  position: relative;
}
.gp-newsletter .gp-newsletter-form.layout-bordered form input[type=email] {
  width: 100%;
  border: 1px solid;
  height: 46px;
  line-height: 46px;
  border-radius: 46px;
  padding: 0 123px 0 13px;
  background: #fff;
}
.gp-newsletter .gp-newsletter-form.layout-bordered form input[type=email]:focus {
  outline: none;
}
.gp-newsletter .gp-newsletter-form.layout-bordered form .input-group__btn button {
  position: absolute;
  right: 3px;
  top: 3px;
  border-radius: 40px;
  width: auto;
}
.gp-newsletter .gp-newsletter-form .footer-socials.style-1 li {
  margin: 0 5px 10px 0;
  font-size: 20px;
}
.gp-newsletter .gp-newsletter-form .footer-socials {
  margin-top: 30px;
  display: block;
}
.gp-newsletter .gp-newsletter-form .footer-socials li {
  display: inline-block;
}
.gp-newsletter .gp-newsletter-form .footer-socials i {
  display: inline-block;
  text-align: center;
  transition: all 0.6s ease;
}
.gp-newsletter .gp-newsletter-form .footer-socials.default li {
  padding: 0 20px;
}
.gp-newsletter .gp-newsletter-form .footer-socials.social-with-text {
  display: flex;
}
.gp-newsletter .gp-newsletter-form .footer-socials.social-with-text .text {
  margin-top: 4px;
  margin-right: 11px;
}
.gp-newsletter .gp-newsletter-form .footer-socials.social-with-text li {
  margin: 0 9px;
}
.gp-newsletter .gp-newsletter-form .footer-socials.social-with-text li:first-child {
  margin-left: 0;
}
.gp-newsletter .gp-newsletter-form .footer-socials.social-with-text li:last-child {
  margin: 0 0 0 9px;
}
.gp-newsletter .gp-newsletter-form .footer-socials.style-1 li {
  margin: 0 10px 10px 0;
}
.gp-newsletter .gp-newsletter-form .footer-socials.style-1 i {
  border: 1px solid #ebeeee;
  width: 44px;
  height: 44px;
  line-height: 42px;
}
@media (max-width: 1024px) {
  .gp-newsletter .gp-newsletter-form .footer-socials.style-1 i {
    width: 42px;
    height: 42px;
    line-height: 40px;
    font-size: 18px;
  }
}
.gp-newsletter .gp-newsletter-form .footer-socials.style-2 li {
  margin: 0 22px 10px 0;
}
.gp-newsletter .gp-newsletter-form .footer-socials.style-2 i {
  border: 1px solid #ebeeee;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  line-height: 56px;
  font-size: 20px;
}
@media (max-width: 767px) {
  .gp-newsletter .gp-newsletter-form .footer-socials.style-2 {
    margin-top: 22px;
  }
  .gp-newsletter .gp-newsletter-form .footer-socials.style-2 li {
    margin: 0 5px 10px 0;
  }
  .gp-newsletter .gp-newsletter-form .footer-socials.style-2 i {
    width: 44px;
    height: 44px;
    line-height: 42px;
    font-size: 18px;
  }
}
.gp-newsletter .gp-newsletter-form .footer-socials.style-3 li {
  margin: 0 10px 10px 0;
}
.gp-newsletter .gp-newsletter-form .footer-socials.style-3 i {
  border: 1px solid #ebeeee;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  line-height: 42px;
}

/* SECTION GP-SLIDESHOW */
.show-mouse-scroll {
  position: relative;
}

.show-mouse-scroll #scroll-down {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  z-index: 1;
  max-width: 106px;
}

@keyframes snowflakes-fall {
  0% {
    top: -10%;
  }
  100% {
    top: 100%;
  }
}
@keyframes snowflakes-shake {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(80px);
  }
}
@keyframes snowflakes-fall {
  0% {
    top: -10%;
  }
  100% {
    top: 100%;
  }
}
@keyframes snowflakes-shake {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(80px);
  }
}
.gp-slideshow {
  position: relative;
}

.gp-slideshow .slide-item img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.gp-slideshow .heading,
.gp-slideshow .sub-title {
  cursor: text;
}

.gp-slideshow .owl-carousel {
  z-index: 2;
  position: relative;
  padding-bottom: 0;
}

.gp-slideshow .grid--1-col .grid__item {
  padding: 0;
}

.gp-slideshow .heroCarousel-item {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 100;
}

.gp-slideshow .slick-dots {
  position: absolute;
  bottom: 43px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: auto;
}

.gp-slideshow .slick-dots li {
  margin: 0 4px;
  width: unset;
  height: unset;
}

.gp-slideshow .slick-dots .dotslide {
  height: 1px;
  padding: 0 20px;
  margin: 0 4px;
  line-height: 50px;
  border: 10px solid none;
  display: inline-block;
  box-sizing: border-box;
}

.gp-slideshow .slick-dots .slick-active .dotslide,
.gp-slideshow .slick-dots .dotslide:hover {
  height: 3px;
}

.gp-slideshow.nav-style-home-fashion-women .slick-dots {
  bottom: 75px;
}

.slick-dots {
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .gp-slideshow .slick-dots {
    display: none !important;
  }
}
@media (max-width: 1024px) {
  .gp-slideshow.nav-style-home-minimalist .slick-dots {
    bottom: 22px;
  }
}
.dotslide:before {
  display: none;
}

/* ARROW SLIDE */
.gp-slideshow.nav-style-home-fashion-brand .owl-nav button.owl-prev,
.gp-slideshow.nav-style-home-minimalist .owl-nav button.owl-prev {
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.gp-slideshow.nav-style-home-fashion-brand .owl-nav button.owl-next,
.gp-slideshow.nav-style-home-minimalist .owl-nav button.owl-next {
  left: auto;
  right: 15px;
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
}

.gp-slideshow.nav-style-home-fashion-brand .owl-nav button,
.gp-slideshow.nav-style-home-minimalist .owl-nav button {
  position: absolute;
  z-index: 2;
  height: 44px;
  min-width: 44px;
  line-height: 44px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gp-slideshow.nav-style-home-fashion-brand .owl-nav button {
  font-size: 50px;
}

@media (max-width: 1450px) {
  .gp-slideshow.nav-style-home-fashion-brand .owl-nav {
    display: none;
  }
}
.gp-slideshow.nav-style-home-fashion-women .owl-nav > button.owl-prev:hover, .gp-slideshow.nav-style-home-fashion-women .owl-nav > button.owl-next:hover {
  border-bottom: none;
}

.gp-slideshow.nav-style-home-fashion-women .owl-nav > button.owl-prev {
  left: 50%;
  right: auto;
  bottom: 1px;
  top: auto;
  border-left: none;
}

.gp-slideshow.nav-style-home-fashion-women .owl-nav > button.owl-prev:hover {
  border-left: none;
}

.gp-slideshow.nav-style-home-fashion-women .owl-nav > button.owl-prev i:before {
  content: "\e92a";
}

.gp-slideshow.nav-style-home-fashion-women .owl-nav > button.owl-next {
  left: calc(50% + 55px);
  bottom: 1px;
  right: auto;
  top: auto;
}

.gp-slideshow.nav-style-home-fashion-women .owl-nav > button.owl-next i:before {
  content: "\e91d";
}

.gp-slideshow.nav-style-home-fashion-women .owl-carousel .owl-dots .owl-dot {
  display: inline-block;
}

.gp-slideshow.nav-style-home-fashion-women .owl-carousel {
  position: relative;
}

.gp-slideshow.nav-style-home-fashion-women .owl-nav > button {
  visibility: visible;
  opacity: 1;
  transform: none;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: 0;
  position: absolute;
  z-index: 2;
}

.gp-slideshow.nav-style-home-fashion-women .owl-nav > button.owl-prev, .gp-slideshow.nav-style-home-fashion-women .owl-nav > button.owl-next {
  width: 56px;
  height: 56px;
  font-size: 15px;
  line-height: 56px;
  text-align: center;
  border-bottom: none;
}

.nav-style-home-fashion-christmas .slick-dots {
  bottom: auto;
  left: auto;
  top: 50%;
  transform: translateY(-50%);
  right: 8px;
  display: flex !important;
  flex-direction: column;
}

.nav-style-home-fashion-christmas.gp-slideshow .slick-dots li {
  margin: 13px 0;
  transform: rotate(90deg);
}

/* END ARROW SLIDE */
.gp-slideshow:not(.loaded) {
  min-height: 600px;
}

.gp-slideshow.loaded:before, .gp-slideshow.loaded:after {
  opacity: 0;
  visibility: hidden;
}

.gp-slideshow .slide-item {
  position: relative;
}

.gp-slideshow .snowflake {
  color: #fff;
  font-size: 1em;
  text-shadow: 0 0 5px #000;
}

.gp-slideshow .snowflake {
  position: fixed;
  top: -10%;
  z-index: 9999;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  cursor: default;
  -webkit-animation-name: snowflakes-fall, snowflakes-shake;
  -webkit-animation-duration: 10s, 3s;
  -webkit-animation-timing-function: linear, ease-in-out;
  -webkit-animation-iteration-count: infinite, infinite;
  -webkit-animation-play-state: running, running;
  animation-name: snowflakes-fall, snowflakes-shake;
  animation-duration: 10s, 3s;
  animation-timing-function: linear, ease-in-out;
  animation-iteration-count: infinite, infinite;
  animation-play-state: running, running;
}

.gp-slideshow .snowflake:nth-of-type(0) {
  left: 1%;
  animation-delay: 0s, 0s;
}

.gp-slideshow .snowflake:nth-of-type(1) {
  left: 10%;
  animation-delay: 1s, 1s;
}

.gp-slideshow .snowflake:nth-of-type(2) {
  left: 20%;
  animation-delay: 6s, 0.5s;
}

.gp-slideshow .snowflake:nth-of-type(3) {
  left: 30%;
  animation-delay: 4s, 2s;
}

.gp-slideshow .snowflake:nth-of-type(4) {
  left: 40%;
  animation-delay: 2s, 2s;
}

.gp-slideshow .snowflake:nth-of-type(5) {
  left: 50%;
  animation-delay: 8s, 3s;
}

.gp-slideshow .snowflake:nth-of-type(6) {
  left: 60%;
  animation-delay: 6s, 2s;
}

.gp-slideshow .snowflake:nth-of-type(7) {
  left: 70%;
  animation-delay: 2.5s, 1s;
}

.gp-slideshow .snowflake:nth-of-type(8) {
  left: 80%;
  animation-delay: 1s, 0s;
}

.gp-slideshow .snowflake:nth-of-type(9) {
  left: 90%;
  animation-delay: 3s, 1.5s;
}

.gp-slideshow .snowflake:nth-of-type(10) {
  left: 25%;
  animation-delay: 2s, 0s;
}

.gp-slideshow .snowflake:nth-of-type(11) {
  left: 65%;
  animation-delay: 4s, 2.5s;
}

.gp-slideshow .slide-content-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  z-index: 1;
}

@media (max-width: 767px) {
  .gp-slideshow .slide-content-wrapper .slide-content-inner.content-style-1 {
    top: -21.4%;
    width: 100% !important;
    transform: translateX(-50%);
    margin: 0;
  }
}
.gp-slideshow .slide-content-wrapper:not(.position-custom):not(.position-custom-horizontal):not(.position-custom-vertical) .slide-content-inner {
  padding: 80px;
}

.gp-slideshow .slide-content-wrapper:not(.position-custom):not(.position-custom-horizontal):not(.position-custom-vertical) .slide-content-inner.content-style-4 {
  padding: 0;
}

.gp-slideshow .slide-content-wrapper .slide-content-inner {
  padding: 20px;
  z-index: 101;
}

.gp-slideshow .slide-content-wrapper .slide-content-inner.text-align-left {
  text-align: left;
}

.gp-slideshow .slide-content-wrapper .slide-content-inner.text-align-center {
  text-align: center;
}

.gp-slideshow .slide-content-wrapper .slide-content-inner.text-align-right {
  text-align: right;
}

.gp-slideshow .slide-content-wrapper .slide-content-inner .line {
  content: "";
  width: 50px;
  display: inline-block;
  height: 1px;
  background: #000;
  margin: 0 15px;
  position: relative;
  top: -4px;
}

.gp-slideshow .slide-content-wrapper .slide-content-inner .title {
  font-weight: 400;
  font-size: 48px;
  line-height: 1.32;
  letter-spacing: normal;
}

.gp-slideshow .slide-content-wrapper .slide-content-inner a {
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid;
  display: inline-block;
}

.gp-slideshow .slide-content-wrapper .slide-content-inner a:not([class*=margin]) {
  margin-top: 30px;
}

.gp-slideshow .slide-content-wrapper .slide-content-inner a.rounded {
  border: 1px solid;
  padding: 10px 20px;
}

.gp-slideshow .slide-content-wrapper .slide-content-inner p:not(:first-child) {
  margin-top: 10px;
  margin-bottom: 0;
}

.gp-slideshow .slide-content-wrapper .slide-content-inner.content-style-1 {
  margin-bottom: 42px;
}

.gp-slideshow .slide-content-wrapper .slide-content-inner.content-style-1 .heading,
.gp-slideshow .slide-content-wrapper .slide-content-inner.content-style-5 .heading {
  letter-spacing: -2px;
  line-height: 82px;
}

.gp-slideshow .slide-content-wrapper .slide-content-inner.content-style-1 .sub-title,
.gp-slideshow .slide-content-wrapper .slide-content-inner.content-style-5 .sub-title {
  letter-spacing: 0.6px;
  margin-top: 0;
}

.gp-slideshow .slide-content-wrapper .slide-content-inner.content-style-1 .btn.btn-icon,
.gp-slideshow .slide-content-wrapper .slide-content-inner.content-style-5 .btn.btn-icon {
  letter-spacing: 1px;
  text-transform: inherit;
  font-weight: 400;
  padding: 13.5px 28px;
  margin-top: 0;
}

@media (max-width: 1024px) {
  .gp-slideshow .slide-content-wrapper .slide-content-inner.content-style-1 {
    margin-bottom: 5px;
  }
  .gp-slideshow .slide-content-wrapper .slide-content-inner.content-style-1 .heading,
  .gp-slideshow .slide-content-wrapper .slide-content-inner.content-style-5 .heading {
    font-size: 60px !important;
    letter-spacing: 0;
    line-height: 64px;
  }
  .gp-slideshow .slide-content-wrapper .slide-content-inner.content-style-1 .sub-title,
  .gp-slideshow .slide-content-wrapper .slide-content-inner.content-style-5 .sub-title {
    font-size: 20px !important;
  }
}
@media (max-width: 900px) {
  .gp-slideshow .slide-content-wrapper .slide-content-inner.content-style-1 {
    margin-bottom: 78px;
  }
}
@media (max-width: 767px) {
  .gp-slideshow .slide-content-wrapper .slide-content-inner.content-style-1 {
    margin-top: 16px;
    transform: translateX(-50%);
    margin-bottom: 0;
  }
  .gp-slideshow .slide-content-wrapper .slide-content-inner.content-style-1 .heading,
  .gp-slideshow .slide-content-wrapper .slide-content-inner.content-style-5 .heading {
    font-size: 10vw !important;
    margin-bottom: 8px !important;
    line-height: 1.15em !important;
    letter-spacing: -0.025em;
  }
  .gp-slideshow .slide-content-wrapper .slide-content-inner.content-style-1 .sub-title,
  .gp-slideshow .slide-content-wrapper .slide-content-inner.content-style-5 .sub-title {
    font-size: 5vw !important;
    letter-spacing: 0.4px;
  }
  .gp-slideshow .slide-content-wrapper .slide-content-inner.content-style-1 .btn.btn-icon {
    font-size: 4.4vw;
    padding: 10.5px 19px;
    margin-top: 23px;
    letter-spacing: 0.05em;
  }
}
.gp-slideshow .slide-content-wrapper .slide-content-inner.content-style-3 {
  margin-bottom: 42px;
}

.gp-slideshow .slide-content-wrapper .slide-content-inner.content-style-3 .heading {
  letter-spacing: -2px;
  line-height: 82px;
}

.gp-slideshow .slide-content-wrapper .slide-content-inner.content-style-3 .sub-title {
  letter-spacing: 0.6px;
  margin-top: 0;
}

.gp-slideshow .slide-content-wrapper .slide-content-inner.content-style-3 .btn.btn-icon {
  letter-spacing: 1px;
  text-transform: inherit;
  font-weight: 400;
  padding: 13.5px 28px;
  margin-top: 0;
}

@media (max-width: 1024px) and (min-width: 768px) {
  .gp-slideshow .slide-content-wrapper .slide-content-inner.content-style-3 {
    margin-bottom: 5px;
    padding: 0;
    width: 400px !important;
  }
  .gp-slideshow .slide-content-wrapper .slide-content-inner.content-style-3 .heading {
    font-size: 60px !important;
    letter-spacing: -0.025em;
    line-height: 64px;
  }
  .gp-slideshow .slide-content-wrapper .slide-content-inner.content-style-3 .sub-title {
    font-size: 20px !important;
  }
  .gp-slideshow .slide-content-wrapper .slide-content-inner.content-style-3 .btn {
    font-size: 16px !important;
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
}
@media (max-width: 767px) {
  .gp-slideshow .slide-content-wrapper .slide-content-inner.content-style-3 {
    top: -21.4%;
    width: 100% !important;
    transform: translateX(-50%);
    margin: 0;
    padding: 0 20px;
  }
  .gp-slideshow .slide-content-wrapper .slide-content-inner.content-style-3 .heading {
    font-size: 10vw !important;
    margin-bottom: 8px !important;
    line-height: 1.15em !important;
    letter-spacing: -0.025em;
  }
  .gp-slideshow .slide-content-wrapper .slide-content-inner.content-style-3 .sub-title {
    font-size: 5vw !important;
    letter-spacing: 0.025em;
  }
  .gp-slideshow .slide-content-wrapper .slide-content-inner.content-style-3 .btn.btn-icon {
    font-size: 4.4vw;
    padding: 10.5px 19px;
    margin-top: 23px;
    letter-spacing: 0.05em;
  }
}
@media (max-width: 1024px) {
  .gp-slideshow .slide-content-wrapper .slide-content-inner.content-style-2 .heading {
    font-size: 5.2vw !important;
  }
  .gp-slideshow .slide-content-wrapper .slide-content-inner.content-style-2 .sub-text {
    font-size: 4vw !important;
  }
}
@media (max-width: 767px) {
  .gp-slideshow .slide-content-wrapper .slide-content-inner.content-style-2 .heading {
    font-size: 8.5vw !important;
  }
}
.gp-slideshow .slide-content-wrapper .slide-content-inner.content-style-4 .heading {
  letter-spacing: -0.025em;
}

.gp-slideshow .slide-content-wrapper .slide-content-inner.content-style-4 .heading span {
  font-size: 80px;
}

.gp-slideshow .slide-content-wrapper .slide-content-inner.content-style-4 .color-primary {
  color: var(--color-primary) !important;
}

.gp-slideshow .slide-content-wrapper .slide-content-inner.content-style-4 .btn {
  margin-top: 40px;
  padding: 16px 46px;
}

.gp-slideshow .slide-content-wrapper.position-middle-center {
  justify-content: center;
  align-items: center;
}

.gp-slideshow .slide-content-wrapper.position-middle-left {
  justify-content: flex-start;
  align-items: center;
}

.gp-slideshow .slide-content-wrapper.position-middle-right {
  justify-content: flex-end;
  align-items: center;
}

.gp-slideshow .slide-content-wrapper.position-top-center {
  justify-content: center;
  align-items: flex-start;
}

.gp-slideshow .slide-content-wrapper.position-top-left {
  justify-content: flex-start;
  align-items: flex-start;
}

.gp-slideshow .slide-content-wrapper.position-top-right {
  justify-content: flex-end;
  align-items: flex-start;
}

.gp-slideshow .slide-content-wrapper.position-bottom-center {
  justify-content: center;
  align-items: flex-end;
}

.gp-slideshow .slide-content-wrapper.position-bottom-left {
  justify-content: flex-start;
  align-items: flex-end;
}

.gp-slideshow .slide-content-wrapper.position-bottom-right {
  justify-content: flex-end;
  align-items: flex-end;
}

.gp-slideshow .slide-content-wrapper.position-custom {
  display: block;
}

.gp-slideshow .slide-content-wrapper.position-custom .slide-content-inner {
  position: absolute;
}

.gp-slideshow .slide-content-wrapper.position-custom-horizontal {
  align-items: center;
}

.gp-slideshow .slide-content-wrapper.position-custom-horizontal .slide-content-inner {
  position: relative;
}

.gp-slideshow .slide-content-wrapper.position-custom-vertical {
  justify-content: center;
}

.gp-slideshow .slide-content-wrapper.position-custom-vertical .slide-content-inner {
  position: relative;
}

.gp-slideshow.nav-style-home-minimalist:hover .owl-nav > button {
  visibility: visible;
  opacity: 1;
}

.gp-slideshow.nav-style-home-minimalist .owl-nav > button {
  visibility: hidden;
  opacity: 0;
  transform: scale(0.7);
}

@media (max-width: 767px) {
  .gp-slideshow.nav-style-home-minimalist .content-style-1 .slide-content-wrapper.position-custom .slide-content-inner {
    width: 100% !important;
  }
}
.gp-slideshow.has-background-image-slideshow img:not(.background-image-slideshow) {
  position: absolute;
}

.gp-slideshow.nav-style-home-default .index-slider {
  font-size: 24px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 0;
  position: absolute;
  display: block;
  z-index: 2;
  opacity: 1;
  top: 100%;
  left: 94px;
  visibility: inherit;
  color: #2c2c2c;
  transform: matrix(1, 0, 0, 1, 16, -78);
}

.gp-slideshow.nav-style-home-default .owl-nav button {
  opacity: 1;
  transform: translate(82px, -77px);
  top: 100%;
  left: 0;
  cursor: pointer;
  background: 0 0 !important;
  border: none !important;
  position: absolute;
  display: block;
  z-index: 50;
  color: #2c2c2c;
  width: 20px;
  padding: 0;
}

.gp-slideshow.nav-style-home-default .owl-nav button.owl-next {
  transform: translate(205px, -77px);
  top: 100%;
  left: 0;
}

.gp-slideshow.nav-style-home-default .index-slider .all-index {
  font-weight: 300;
}

.gp-slideshow.nav-style-home-default .index-slider .all-index:before {
  content: "/";
  margin-right: 7px;
  margin-left: 7px;
}

@media (max-width: 777px) {
  .gp-slideshow.nav-style-home-default .index-slider {
    transform: matrix(1, 0, 0, 1, -44, -48);
    left: 50%;
  }
  .gp-slideshow.nav-style-home-default .owl-nav > button {
    transform: translate(-73px, -48px);
    left: 50%;
  }
  .gp-slideshow.nav-style-home-default .owl-nav > button.owl-next {
    transform: translate(66px, -48px);
    left: auto;
    right: 50%;
  }
}
.gp-slideshow .slide-with-content {
  display: flex;
}

.gp-slideshow .slide-with-content .content-wrapper {
  width: 50%;
  position: relative;
  display: flex;
}

.gp-slideshow .slide-with-content .content-wrapper.position-middle-center {
  justify-content: center;
  align-items: center;
}

.gp-slideshow .slide-with-content .content-wrapper.position-middle-left {
  justify-content: flex-start;
  align-items: center;
}

.gp-slideshow .slide-with-content .content-wrapper.position-middle-right {
  justify-content: flex-end;
  align-items: center;
}

.gp-slideshow .slide-with-content .content-wrapper.position-top-center {
  justify-content: center;
  align-items: flex-start;
}

.gp-slideshow .slide-with-content .content-wrapper.position-top-left {
  justify-content: flex-start;
  align-items: flex-start;
}

.gp-slideshow .slide-with-content .content-wrapper.position-top-right {
  justify-content: flex-end;
  align-items: flex-start;
}

.gp-slideshow .slide-with-content .content-wrapper.position-bottom-center {
  justify-content: center;
  align-items: flex-end;
}

.gp-slideshow .slide-with-content .content-wrapper.position-bottom-left {
  justify-content: flex-start;
  align-items: flex-end;
}

.gp-slideshow .slide-with-content .content-wrapper.position-bottom-right {
  justify-content: flex-end;
  align-items: flex-end;
}

.gp-slideshow .slide-with-content .content-wrapper .slide-content {
  padding: 0 2.5px;
}

.gp-slideshow .slide-with-content .content-wrapper .slide-content.text-align-left {
  text-align: left;
}

.gp-slideshow .slide-with-content .content-wrapper .slide-content.text-align-center {
  text-align: center;
}

.gp-slideshow .slide-with-content .content-wrapper .slide-content.text-align-right {
  text-align: right;
}

.gp-slideshow .slide-with-content .content-wrapper .slide-content .sub-title {
  font-size: 24px;
  padding: 0 3.5px;
  letter-spacing: -0.025em;
}

.gp-slideshow .slide-with-content .content-wrapper .slide-content .heading {
  font-size: 80px;
  padding-bottom: 47px;
  padding-top: 24px;
  letter-spacing: -0.025em;
  line-height: 1.03;
}

.gp-slideshow .slide-with-content .content-wrapper .slide-content .btn {
  padding: 13.5px 29px;
  font-size: 18px;
  margin-left: 2.5px;
}

.gp-slideshow .slide-with-content .slide-image {
  width: 50%;
}

.gp-slideshow .slide-with-content .slide-image .image-mobile {
  display: none;
}

.gp-slideshow.has-background-image-slideshow .slide-item img:not(.background-image-slideshow), .gp-slideshow.has-background-image-slideshow .slide-item div.img-svg {
  position: absolute;
  z-index: 2;
  width: auto;
  left: 0;
  top: 0;
}

.gp-slideshow.has-background-image-slideshow .slide-item div.img-svg {
  width: 100%;
  height: 100%;
}

.gp-slideshow img.background-image-slideshow.mobile-only {
  display: none;
}

@media (max-width: 767px) {
  .gp-slideshow .has-mobile-background-image-slideshow {
    display: none !important;
  }
  .gp-slideshow img.background-image-slideshow.mobile-only {
    display: block;
  }
}
.gp-slideshow .slide-content-inner .sub-title {
  font-size: 18px;
}

.gp-slideshow .slide-content-inner .sub-heading {
  margin-top: -5px;
}

.gp-slideshow .slide-content-inner .btn {
  letter-spacing: 0.01em;
  margin-top: 43px;
}

.gp-slideshow .header-socials li {
  padding: 0 11px;
  display: inline-block;
}

.gp-slideshow .header-socials.style-2 li {
  padding: 0 17.5px;
}

@media (min-width: 1025px) and (max-width: 1366px) {
  .gp-slideshow .header-socials.style-2 li {
    padding: 0 11px;
  }
}
.nav-style-home-fashion-brand .owl-carousel .owl-nav > button.owl-prev,
.nav-style-home-fashion-brand .owl-carousel .owl-nav > button.owl-next {
  font-size: 50px;
}

.nav-style-home-fashion-brand .owl-nav button i:before {
  opacity: 0.3;
}

.nav-style-home-fashion-brand .owl-nav button:hover i:before {
  opacity: 1;
}

.nav-style-home-fashion-brand .theme-iconback:before {
  content: "\e944";
}

.nav-style-home-fashion-brand .theme-iconnext:before {
  content: "\e945";
}

.nav-style-home-default i:before {
  font-family: "Font Awesome 5 Free";
  font-size: 20px;
  color: #2c2c2c;
  display: block;
  text-align: center;
  font-weight: 900;
  width: 20px;
  speak: never;
  font-style: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 40px;
  -webkit-font-smoothing: antialiased;
}

.nav-style-home-default .theme-iconback:before {
  content: "\f0d9";
}

.nav-style-home-default .theme-iconnext:before {
  content: "\f0da";
}

@media (max-width: 1024px) {
  .nav-style-home-fashion-brand .owl-nav {
    display: none;
  }
}
@media (max-width: 1200px) and (min-width: 1025px) {
  .content-style-4 .slide-content-inner {
    padding: 0 30px !important;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .content-style-4 .heading {
    font-size: 6.2vw !important;
  }
  .content-style-4 .sub-title {
    font-size: 20px !important;
  }
  .gp-slideshow .slide-content-wrapper .slide-content-inner.content-style-4 .heading span {
    font-size: 6.2vw;
  }
  .gp-slideshow .slide-content-wrapper .slide-content-inner.content-style-4 .btn {
    margin-top: 22px;
    padding: 12px 28px;
  }
  .gp-slideshow .slide-content-wrapper:not(.position-custom):not(.position-custom-horizontal):not(.position-custom-vertical) .slide-content-inner.content-style-4 {
    padding: 0 34px;
  }
}
@media (max-width: 1199px) and (min-width: 992px) {
  .gp-slideshow:not(.loaded) {
    min-height: 400px;
  }
  .gp-slideshow .slide-content-wrapper:not(.position-custom):not(.position-custom-horizontal):not(.position-custom-vertical) .slide-content-inner {
    padding: 50px;
  }
}
@media (max-width: 991.98px) {
  .gp-slideshow:not(.loaded) {
    min-height: 300px;
  }
  .gp-slideshow .slide-content-wrapper:not(.position-custom):not(.position-custom-horizontal):not(.position-custom-vertical) .slide-content-inner {
    padding: 40px;
  }
  .gp-slideshow .slide-content-wrapper .slide-content-inner .title {
    font-size: 40px;
  }
}
@media (max-width: 1024px) {
  .show-mouse-scroll #scroll-down {
    max-width: 70px;
  }
  .gp-slideshow ul.header-socials {
    display: none;
  }
  .gp-slideshow .slide-with-content .content-wrapper .slide-content .sub-title {
    font-size: 26px;
  }
  .gp-slideshow .slide-with-content .content-wrapper .slide-content .heading {
    font-size: 49px;
    padding-bottom: 27px;
    padding-top: 10px;
  }
  .gp-slideshow .slide-with-content .content-wrapper .slide-content .btn {
    font-size: 18px;
    padding: 9px 16px;
    font-weight: 500;
    letter-spacing: 0;
  }
}
@media (max-width: 767px) {
  .show-mouse-scroll #scroll-down {
    max-width: 40px;
  }
  .gp-slideshow .slide-item.content-style-4 .slide-content-wrapper {
    height: auto;
  }
  .gp-slideshow .slide-item.content-style-4 .content-style-4 {
    text-align: center;
    margin-top: 40px;
  }
  .gp-slideshow .owl-nav {
    display: none;
  }
  .gp-slideshow.nav-style-home-default .owl-nav {
    display: block;
  }
  .gp-slideshow .slide-content-wrapper:not(.position-custom):not(.position-custom-horizontal):not(.position-custom-vertical) .slide-content-inner.content-style-4 {
    padding: 0 20px;
  }
  .gp-slideshow .slide-content-wrapper .slide-content-inner.content-style-4 .heading,
  .gp-slideshow .slide-content-wrapper .slide-content-inner.content-style-4 .heading span {
    font-size: 6.25vw !important;
  }
  .gp-slideshow .slide-content-wrapper .slide-content-inner.content-style-4 .btn {
    padding: 4px 12px;
    margin-top: 13px;
    font-size: 3.75vw;
  }
  .gp-slideshow .slide-content-wrapper .slide-content-inner.content-style-4 .sub-title,
  .gp-slideshow .slide-content-wrapper .slide-content-inner.content-style-4 .sub-title span {
    font-size: 3.75vw !important;
  }
  .gp-slideshow .slide-content-wrapper:not(.position-custom):not(.position-custom-horizontal):not(.position-custom-vertical) {
    align-items: center !important;
  }
  .gp-slideshow .slide-content-wrapper:not(.position-custom):not(.position-custom-horizontal):not(.position-custom-vertical) .slide-content-inner {
    padding: 20px;
  }
  .gp-slideshow .slide-content-wrapper .slide-content-inner p {
    margin-bottom: 0 !important;
  }
  .gp-slideshow .slide-content-wrapper .slide-content-inner p:last-child {
    margin-bottom: 0 !important;
  }
  .gp-slideshow .slide-content-wrapper .slide-content-inner .title {
    font-size: 30px !important;
    line-height: 1.32 !important;
  }
  .gp-slideshow .slide-content-wrapper .slide-content-inner a:not([class*=margin]) {
    margin-top: 10px;
  }
  .gp-slideshow .slide-with-content .content-wrapper .slide-content .sub-title {
    font-size: 16px;
  }
  .gp-slideshow .slide-with-content .content-wrapper .slide-content .heading {
    font-size: 31px;
    padding-bottom: 20px;
    padding-top: 10px;
  }
  .gp-slideshow .slide-with-content .content-wrapper .slide-content .btn {
    font-size: 11px;
    padding: 8px 10px;
  }
}
@media (max-width: 479px) {
  .gp-slideshow .slide-with-content {
    display: block;
  }
  .gp-slideshow .slide-with-content .content-wrapper {
    width: 100%;
    justify-content: center !important;
  }
  .gp-slideshow .slide-with-content .content-wrapper .slide-content {
    padding: 33px 0 !important;
    text-align: center !important;
  }
  .gp-slideshow .slide-with-content .content-wrapper .slide-content .sub-title {
    font-size: 20px;
  }
  .gp-slideshow .slide-with-content .content-wrapper .slide-content .heading {
    font-size: 32px;
  }
  .gp-slideshow .slide-with-content .content-wrapper .slide-content .btn {
    font-size: 18px;
    padding: 8.5px 30px;
  }
  .gp-slideshow .slide-with-content .slide-image {
    width: 100%;
  }
  .gp-slideshow .slide-with-content .slide-image .image-mobile {
    display: block;
  }
}
.gp-slideshow .slide-with-content .slide-image.bg-img {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

/* END SECTION GP-SLIDESHOW */
.paginate-product {
  min-height: 11px;
  text-align: center;
}

.lds-ellipsis {
  display: inline-block;
  position: absolute;
  width: 64px;
  height: 11px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.lds-ellipsis div {
  position: absolute;
  top: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3294117647);
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
  left: 6px;
  animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
  left: 6px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
  left: 26px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
  left: 45px;
  animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(19px, 0);
  }
}
.gp-slideshow ul.header-socials {
  position: absolute;
  top: 50%;
  z-index: 1;
  transform: rotate(-90deg);
  margin-left: -22px;
}

.gp-slideshow ul.header-socials.style-2 {
  top: 46%;
  margin-left: -41px;
}

@media (min-width: 1025px) and (max-width: 1366px) {
  .gp-slideshow ul.header-socials.style-2 {
    margin-left: -51px;
  }
}
.gp-slideshow.social-right ul.header-socials {
  right: 0;
  margin-left: 0;
  margin-right: -19px;
}

/*Slider home christmas*/
.nav-style-home-fashion-christmas.gp-slideshow.has-background-image-slideshow .slide-item img:not(.background-image-slideshow) {
  z-index: 0;
}

@media (min-width: 1241px) {
  .gp-slideshow .slide-content-wrapper .slide-content-inner.content-style-5 {
    padding: 0 0 5% 25.5%;
  }
}
@media (min-width: 1441px) {
  .gp-slideshow .slide-content-wrapper .slide-content-inner.content-style-5 {
    padding: 0 0 5% 26.5%;
  }
}
@media (min-width: 1902px) {
  .gp-slideshow .slide-content-wrapper .slide-content-inner.content-style-5 {
    padding: 0 0 5% 27%;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .gp-slideshow .slide-content-wrapper .slide-content-inner.content-style-5 .btn.btn-icon {
    letter-spacing: 0;
    padding: 8.5px 21px;
  }
}
@media (min-width: 768px) and (max-width: 813px) {
  .gp-slideshow .slide-content-wrapper .slide-content-inner.content-style-5 {
    padding: 0 0 2% 22.5%;
  }
}
@media (min-width: 814px) and (max-width: 1024px) {
  .gp-slideshow .slide-content-wrapper .slide-content-inner.content-style-5 {
    padding: 0 0 2% 24.5%;
  }
}
@media (min-width: 1025px) and (max-width: 1240px) {
  .gp-slideshow .slide-content-wrapper .slide-content-inner.content-style-5 {
    padding: 0 0 4% 24.5%;
  }
}
@media (max-width: 767px) {
  .gp-slideshow .slide-content-wrapper .slide-content-inner.content-style-5 {
    padding: 0;
  }
  .gp-slideshow .slide-content-wrapper .slide-content-inner.content-style-5 .btn.btn-icon {
    font-size: 14px;
    padding: 6px 16px;
    letter-spacing: 0;
  }
}
.gp-slideshow .slide-item, .gp-slideshow .slide-with-content {
  display: none;
}

.gp-slideshow .slide-item:first-child, .gp-slideshow .slide-with-content:first-child {
  display: block;
}

.gp-slideshow .slick-initialized .slide-item {
  display: block;
}

.gp-slideshow .slide-with-content {
  display: none;
}

.gp-slideshow .slide-with-content:first-child {
  display: flex;
}

.gp-slideshow .slick-initialized .slide-with-content {
  display: flex;
}

/* SECTION PRODUCT WITH CUSTOM CONTENT SLIDER */
.gp-product-with-content {
  position: relative;
}
.gp-product-with-content .img {
  border: 10px solid #fff;
  z-index: 2;
}
.gp-product-with-content:before {
  content: "";
  height: 100%;
  width: 80.46875%;
  position: absolute;
  top: -95px;
  left: 0;
}
.gp-product-with-content .slide-with-content {
  display: flex !important;
  flex-wrap: nowrap;
}
.gp-product-with-content .slide-with-content .content-wrapper {
  display: flex;
}
@media (min-width: 1025px) and (max-width: 1199px) {
  .gp-product-with-content .slide-with-content .content-wrapper {
    justify-content: center !important;
  }
}
.gp-product-with-content .slide-with-content .content-wrapper.position-middle-center {
  justify-content: center;
  align-items: center;
}
.gp-product-with-content .slide-with-content .content-wrapper.position-middle-left {
  justify-content: flex-start;
  align-items: center;
}
.gp-product-with-content .slide-with-content .content-wrapper.position-middle-right {
  justify-content: flex-end;
  align-items: center;
}
.gp-product-with-content .slide-with-content .content-wrapper.position-top-center {
  justify-content: center;
  align-items: flex-start;
}
.gp-product-with-content .slide-with-content .content-wrapper.position-top-left {
  justify-content: flex-start;
  align-items: flex-start;
}
.gp-product-with-content .slide-with-content .content-wrapper.position-top-right {
  justify-content: flex-end;
  align-items: flex-start;
}
.gp-product-with-content .slide-with-content .content-wrapper.position-bottom-center {
  justify-content: center;
  align-items: flex-end;
}
.gp-product-with-content .slide-with-content .content-wrapper.position-bottom-left {
  justify-content: flex-start;
  align-items: flex-end;
}
.gp-product-with-content .slide-with-content .content-wrapper.position-bottom-right {
  justify-content: flex-end;
  align-items: flex-end;
}
.gp-product-with-content .slide-with-content .content-wrapper .custom-content-title {
  padding-bottom: 20px;
}
@media (max-width: 1024px) {
  .gp-product-with-content .slide-with-content .content-wrapper .custom-content-title {
    padding-bottom: 12px;
  }
}
.gp-product-with-content .slide-with-content .content-wrapper .title-product {
  font-size: 21px;
  font-weight: 400;
  text-transform: none;
  line-height: 1.4em;
  letter-spacing: 0.5px;
  padding-bottom: 17px;
}
@media (max-width: 1024px) {
  .gp-product-with-content .slide-with-content .content-wrapper .title-product {
    padding-bottom: 21px;
  }
}
.gp-product-with-content .slide-with-content .content-wrapper .desc {
  line-height: 24px;
  letter-spacing: 0.025em;
  padding-bottom: 21px;
}
@media (max-width: 1024px) {
  .gp-product-with-content .slide-with-content .content-wrapper .desc {
    padding-bottom: 11px;
  }
}
.gp-product-with-content .slide-with-content .content-wrapper .price-product {
  padding-bottom: 37px;
}
@media (max-width: 1024px) {
  .gp-product-with-content .slide-with-content .content-wrapper .price-product {
    padding-bottom: 19px;
  }
}
.gp-product-with-content .slide-with-content .content-wrapper .price-product .price-item--regular {
  font-size: 18px;
}
@media (min-width: 768px) {
  .gp-product-with-content .slide-with-content .content-wrapper .price-product .price-item--regular {
    margin-right: 10px;
  }
}
.gp-product-with-content .slide-with-content .content-wrapper .price-product .price-item--sale {
  font-size: 24px;
  margin-bottom: 6px;
}
@media (max-width: 1024px) {
  .gp-product-with-content .slide-with-content .content-wrapper .price-product {
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .gp-product-with-content .slide-with-content .content-wrapper .price-product .price__sale {
    flex-direction: column;
    margin-right: 0;
  }
}
.gp-product-with-content .slide-with-content .content-wrapper .btn-detail {
  position: relative;
  z-index: 0;
  transition: color 0.15s;
  overflow: visible;
  background: 0 0;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  letter-spacing: 1.8px;
}
.gp-product-with-content .slide-with-content .content-wrapper .btn-detail:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 0;
}
.gp-product-with-content .slide-with-content .content-wrapper .btn-detail:hover:before {
  width: 100%;
}
.gp-product-with-content.layout-default .slick-arrow {
  bottom: 0;
  top: auto !important;
}
.gp-product-with-content.layout-default .slick-arrow i {
  display: none;
}
@media (max-width: 1024px) {
  .gp-product-with-content.layout-default .slick-arrow {
    bottom: 20%;
  }
  .gp-product-with-content.layout-default .slick-arrow.slick-prev {
    left: 40px;
  }
  .gp-product-with-content.layout-default .slick-arrow.slick-next {
    right: 40px;
    left: auto;
  }
}
@media (max-width: 767px) {
  .gp-product-with-content.layout-default .slick-arrow {
    bottom: 10%;
  }
}
@media (min-width: 1025px) {
  .gp-product-with-content.layout-default .slick-arrow {
    width: 40% !important;
    border: none !important;
    text-align: left !important;
    background-color: transparent !important;
  }
  .gp-product-with-content.layout-default .slick-arrow.slick-prev {
    left: 20%;
  }
  .gp-product-with-content.layout-default .slick-arrow.slick-prev:after {
    content: "";
    border-bottom: 1px solid #ebeeee;
    display: inline-block;
    width: calc(100% - 24px);
    position: absolute;
    left: -100%;
    bottom: 50%;
    transform: translateY(-50%);
    cursor: default;
    pointer-events: none;
  }
  .gp-product-with-content.layout-default .slick-arrow.slick-next {
    left: calc(20% + 38px);
  }
}
.gp-product-with-content.layout-default .img {
  width: 51%;
  margin-top: 76px;
}
.gp-product-with-content.layout-default .img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
@media (max-width: 1024px) {
  .gp-product-with-content.layout-default .img {
    margin-top: 0;
  }
}
.gp-product-with-content.layout-default .slide-with-content .content-wrapper {
  width: 49%;
}
.gp-product-with-content.layout-in-image {
  padding-top: 37px;
}
.gp-product-with-content.layout-in-image:before {
  content: "";
  height: calc(100% - 56px);
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.gp-product-with-content.layout-in-image .slick-arrow {
  left: 50% 0.5%;
  top: calc(100% - 32px);
}
.gp-product-with-content.layout-in-image .slick-arrow:before {
  display: none;
}
.gp-product-with-content.layout-in-image .slick-arrow.slick-next {
  left: calc(50.5% + 43px);
}
.gp-product-with-content.layout-in-image .img {
  width: 50.7%;
  border-right: none;
}
.gp-product-with-content.layout-in-image .slide-with-content .content-wrapper {
  width: 49.3%;
}
.gp-product-with-content.layout-in-image .slide-with-content .content-wrapper .custom-content-title {
  letter-spacing: 0.1em;
  padding-bottom: 15px;
}
.gp-product-with-content.layout-in-image .slide-with-content .content-wrapper .title-product {
  font-size: 39px;
  line-height: 1.2;
  padding-bottom: 15px;
}
.gp-product-with-content.layout-in-image .slide-with-content .content-wrapper .desc {
  line-height: 1.5;
  padding-bottom: 12px;
  font-size: 18px;
}
.gp-product-with-content.layout-in-image .slide-with-content .content-wrapper .price-product {
  padding-bottom: 37px;
}
.gp-product-with-content.layout-in-image .slide-with-content .content-wrapper .price-product .price-item--regular {
  font-size: 24px;
}
.gp-product-with-content.layout-in-image .slide-with-content .content-wrapper .btn-detail {
  padding: 14px 31px;
  text-transform: capitalize;
  letter-spacing: 0;
}

@media (max-width: 1024px) {
  .gp-product-with-content:before {
    display: none;
  }
  .gp-product-with-content .slide-with-content {
    display: block !important;
    padding: 0 20px;
    position: relative;
  }
  .gp-product-with-content .slide-with-content .content-wrapper {
    width: 100% !important;
  }
  .gp-product-with-content .slide-with-content .content-wrapper .content-details {
    text-align: center;
  }
  .gp-product-with-content .slide-with-content .img {
    width: 100%;
  }
  .gp-product-with-content .slide-with-content .img:before, .gp-product-with-content .slide-with-content .img:after {
    content: "";
    position: absolute;
    width: 25px;
    bottom: -10px;
    height: 50px;
    background-color: #ffffff;
  }
  .gp-product-with-content .slide-with-content .img:before {
    left: -4px;
  }
  .gp-product-with-content .slide-with-content .img:after {
    right: -4px;
  }
}
/* END SECTION PRODUCT WITH CUSTOM CONTENT SLIDER */
.gp-logo-list .logo-item img {
  margin: auto;
}
