@import"https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700&display=swap";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Roboto, sans-serif;
  color: #0c0c0c;
  font-size: 16px;
  line-height: 22px;
}

a {
  text-decoration: none;
  color: #0c0c0c;
}
.nav_button p { line-height:50px; }
ul {
  list-style-type: none;
}

html {
  scroll-behavior: smooth;
}

.container {
  margin: 0 auto;
  max-width: 1366px;
  padding: 0 32px;
}


#loading {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
  z-index: 9999;
}
.mz-loading{
  display: none;
}
.spinner {
  border: 6px solid rgba(255, 255, 255, 0.3);
  border-top: 6px solid #d3010d;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin: 20% auto;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/*******skeleton**********/
.skeleton {
  animation: skeleton-loading 1s linear infinite alternate;
}

.product_slider_img img.skeleton {
  height: 415px;
}

.wishlist_icon.skeleton {
  border-radius: 20px;
}

@keyframes skeleton-loading {
  0% {
    background-color: hsl(200, 20%, 80%);
  }

  100% {
    background-color: hsl(200, 20%, 95%);
  }
}

.skeleton-text {
  width: 100%;
  height: 0.7rem;
  margin-bottom: 0.5rem;
  border-radius: 0.25rem;
}

.skeleton-text__body {
  width: 75%;
}

.skeleton-footer {
  width: 30%;
}

.btn_wrap .common-btn {
  padding: 16px 40px;
  border-radius: 0;
  text-transform: uppercase;
  border: 1px solid #000;
  width: 300px;
  cursor: pointer;
  max-width: 100%;
}

.btn_wrap .common-btn.black_btn {
  background-color: #000;
  color: #fff;
}

.btn_wrap .common-btn.black_btn font {
  color: #fff;
}

.common-btn.transperent_btn {
  border: 1px solid rgb(229, 229, 229);
  background-color: transparent;
}

#review {
  padding-top: 20px;
}

.contact_number .number {
  font-weight: 600;
  font-size: 25px;
}

.contact_title {
  display: flex;
  font-size: 14px;
  font-weight: 600;
}

.contact_number {
  margin-left: 5px;
}

.contact_details .title {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.contact_details,
.optian_ajutor {
  width: auto;
  margin: 0 0 20px 0;
  border: 1px solid #ccc;
  padding: 10px 25px 30px 25px;
}

.contact_details {
  margin-bottom: 0;
}

.custome-modal.contact_popup .modal_header {
  margin: 0;
  padding: 0;
  border: none;
}

.optian_ajutor .common-btn.black_btn {
  width: 100%;
}

.optian_ajutor .title {
  display: flex;
  align-items: center;
  font-size: 25px;
  font-weight: 600;
}

.contact_details p {
  color: #737373;
}

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*********/
.soldout_product {
  background-image: url("../images/soldout_line.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

button.size_select.soldout_product.active:after {
  display: none;
}

button.size_select.tooltip_wrap.soldout_product.active {
  border-width: 1px;
}

.cart-btn_wrap .common-btn {
  width: 100%;
}

.cart-btn_wrap .btn_wrap:last-child {
  margin-top: 20px;
}

.btn_wrap {
  margin-top: 40px;
}

.potate_block {
  text-align: center;
  position: relative;
  margin: 30px 0;
}

.potate_block:after {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  border-bottom: 1px solid #e5e5e5;
  content: "";
  height: 1px;
  z-index: -1;
}

.potate_block h3 {
  color: #6d6d6d;
  font-weight: 500;
  display: inline-block;
  text-transform: uppercase;
  background-color: #fff;
  padding: 0 30px;
  font-size: 18px;
}

.custome-modal .secton_title {
  font-size: 20px;
  text-transform: uppercase;
}

.cart_popup .buttet_wrap {
  width: 160px;
}

/*******form******/
.form_wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.form_wrap .form_group {
  width: 33%;
  padding: 0 10px;
  margin-bottom: 10px;
}

.form_wrap .form_group.full {
  width: 100%;
}
.tabs-inner-wrap .form_wrap .form_group.full{
  width: 33%;
}
.form_wrap .form_group label {
  font-size: 13px;
  font-weight: 600;
  width: 100%;
  display: inline-block;
  margin-bottom: 5px;
}

.review_wrap .btn_wrap .common-btn {
  border: 1px solid #000;
  color: #fff;
  background-color: #000;
  max-width: 100%;
  width: 300px;
  cursor: pointer;
}

.form_group .form_control {
  width: 100%;
  height: 42px;
  border: solid 1px #ccc;
  font-size: 13px;
  color: #6d6d6d;
  padding: 5px;
}

.form_group textarea.form_control {
  height: 100px;
}

.new-icon {
  background-color: #d9000c;
  padding: 2px;
  color: #fff;
}

.form_wrap .form_group p {
  color: #6d6d6d;
  font-size: 13px;
}

/* .discount_price {
  display: flex;
  justify-content: space-between;
} */

.highlight-text,
.discount_price .highlight-text sup {
  color: #d9000c;
}

.discount_price sup {
  color: #737373;
}

.discount_price {
  font-size: 14px;
  color: #737373;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price_type .simple_price {
  margin-top: 5px;
}

/*****toggle*****/
.toggle_size input[type="checkbox"] {
  height: 0;
  width: 0;
  visibility: hidden;
  display: none;
}

.toggle_size label {
  cursor: pointer;
  text-indent: -9999px;
  width: 50px;
  height: 30px;
  background: #fff;
  border: 1px solid #e1e0e0;
  display: block;
  border-radius: 100px;
  position: relative;
  margin: 0 10px;
}

.header_sizechange {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  /* margin-top: 15px; */
}

.table-responsive table tr td:first-child {
  font-weight: 600;
  font-size: 16px;
}

.toggle_size ul {
  display: flex;
  align-items: center;
}

.size_popup .modal_inneer {
  padding: 0;
}

.custome-modal.size_popup.show-modal {
  z-index: 1000;
}

.boday_size {
  display: inline-flex;
  justify-content: center;
  margin: 30px 0 0;
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
}

.desktop-popup .boday_size button {
  background-color: #fff;
  text-transform: capitalize;
  border: none;
  width: 150px;
  padding: 10px 3px;
  line-height: 1;
  font-size: 14px;
}

.desktop-popup .boday_size .active button {
  background-color: #000;
  color: #fff;
  border-radius: 15px;
  font-weight: 600;
}

.boday_size_wrap {
  display: flex;
  justify-content: center;
}

.boday_size_wrap button {
  cursor: pointer;
}

.toggle_size label:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 30px;
  height: 30px;
  background: #000;
  border-radius: 90px;
  transition: 0.3s;
}

.toggle_size input:checked+label {
  background: blue;
}

.toggle_size input:checked+label:after {
  left: calc(100% - 0px);
  transform: translateX(-100%);
  background-color: #fff;
  top: -1px;
}

.toggle_size label:active:after {
  width: 50px;
}

.desktop-popup .footer, .mobile-popup .footer {
  padding: 20px;
  background-color: #000;
}

.desktop-popup .footer p, .mobile-popup .footer p {
  color: #fff;
  font-size: 14px;
}

.desktop-popup .footer p a, .mobile-popup .footer p a {
  color: #fff;
  font-weight: 500;
}

.px-20 {
  padding-left: 20px;
  padding-right: 20px;
}

.p-20 {
  padding: 20px;
}


.desktop-popup .footer p a:hover {
  text-decoration: underline;
}


.discount_price span {
  background-color: #dd1823;
  color: #fff;
  padding: 2px 5px;
  /* border: 3px solid #737373; */
  border : 0;
  margin-left: 15px;
}

.discount_price .highlight-text {
  margin-right: 24px;
  display: contents;
}

/******tabs*****/
.ui-widget.ui-widget-content {
  border: none;
  padding: 0;
}

.ui-tabs .ui-tabs-nav {
  border: none;
  background-color: transparent;
  background-color: #fff;
  z-index: 1;
}

.ui-tabs .ui-tabs-nav li {
  background-color: transparent;
  width: 33%;
  border-width: 0 0 2px;
  border-color: transparent;
  margin: 0;
}

.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited,
a.ui-button,
a:link.ui-button,
a:visited.ui-button,
.ui-button {
  color: #454545;
  text-decoration: none;
}

.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
  text-align: center;
  width: 100%;
}

.custome-modal.size_popup.show-modal .modal_body {
  max-height: 100%;
}

.size_popup .modal_header {
  padding: 40px 40px 20px;
  margin-bottom: 10px;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active {
  border-bottom-color: #000;
  font-weight: 600;
}

.ui-tabs .ui-tabs-panel {
  background: #f5f4f4;
  /* padding: 32px 32px; */
}

/****bread crump******/
.bread_crump_inner {
  display: flex;
  align-items: center;
  margin: 10px 0;
}

.bread_crump_inner ul {
  display: flex;
  align-items: center;
}

.bread_crump_inner ul li {
  margin-right: 15px;
}

.bread_crump_inner ul li a {
  font-size: 14px;
  position: relative;
  padding-right: 15px;
}

.bread_crump_inner ul li a {
  font-size: 14px;
  position: relative;
}

.bread_crump_inner ul li a::after {
  position: absolute;
  background-image: url("../images/arrow_back.svg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 14px;
  height: 14px;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

.back_to_result button {
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.secton_title {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 20px;
}

/*slider*/
.orignal_brand_wrap .discount_price .highlight-text {
  display: block;
  margin: 0 0 10px;
}

.product_block {
  margin: 60px 0;
}

.desktop-popup .product_block {
  margin: 0 !important;
}

.product_item {
  padding: 0 5px;
  position: relative;
  overflow-x: hidden;
}

.slick-prev {
  left: 5px;
}

.slick-next,
.slick-prev {
  width: 40px;
  background-color: #fff;
  z-index: 1;
  height: 40px;
  top: 40%;
}

.slick-next:focus,
.slick-next:hover,
.slick-prev:focus,
.slick-prev:hover {
  background-color: #fff;
  background: #fff;
}

.slick-prev::after {
  background-image: url("../images/arrow_slider_pre.svg");
  background-repeat: no-repeat;
  background-size: 20px;
  width: 20px;
  height: 20px;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-position: center;
}

.slick-next {
  right: 5px;
  background-image: url("../images/arrow_slider_next.svg");
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center;
}

.slick-next.slick-arrow.slick-disabled {
  display: none;
}

.slick-prev.slick-arrow.slick-disabled {
  display: none !important;
}

.slick-next::after {
  background-image: url("../images/arrow_slider_next.svg");
  background-repeat: no-repeat;
  background-size: 20px;
  width: 20px;
  height: 20px;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-position: center;
}

.slick-next:before,
.slick-prev:before {
  display: none;
}

.product_item .wishlist_icon {
  position: absolute;
  right: 10px;
  width: 40px;
  height: 40px;
  top: 5px;
  background-color: #fff;
  padding: 0px;
  display: flex;
  align-items: center;
  z-index: 1;
  cursor: pointer;
  border-radius: 4px;
}

.product_item .wishlist_icon button {
  width: 100%;
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.slick-slide .tooltip_wrap .tooltip {
  left: 0;
  top: 50%;
  transform: translate(-115%, -50%);
}

.slick-slide .tooltip_wrap .tooltip::after {
  border-top: solid transparent 8px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 8px 0 8px 8px;
  border-color: transparent transparent transparent #000000;
  left: 100%;
  transform: translate(0, -50%);
  top: 50%;
}

.product_item .wishlist_icon img {
  filter: invert(1);
}

.product_slider_img img {
  width: 100%;}
.desktop-popup .product_slider_img img {
  height: 280px;
  object-fit: contain;
}

@media(max-width: 768px){
  .product_slider_img img {
    width: 100%;
    height: 350px;
    object-fit: contain;
}
}

.size_select_pro ul {
  display: flex;
}

.size_select_pro ul li {
  font-size: 15px;
  text-transform: uppercase;
  padding: 4px;
  cursor: pointer;
}

.product_item:hover .size_select_pro {
  display: block;
}

.size_select_pro {
  /* display: none; */
  /* position: absolute;
  left: 0;
  width: 100%;
  bottom: 0px; */
}

.offer_list {
  position: absolute;
  bottom: 12px;
}

.offer_list ul {
  display: flex;
  align-items: center;
}

.offer_list ul li {
  margin-right: 0px;
}

.offer_list ul li span {
  padding: 4px;
  font-size: 12px;
  background-color: #fff;
  font-weight: 600;
}

.offer_list ul li span.Oferta {
  background-color: #d9000c;
  color: #fff;
}

.product_slider_img {
  position: relative;
}

.product_des h3 {
  font-size: 14px;
  margin: 0 0 10px;
}

.carousel-quick-view {
  position: absolute;
  bottom: 300px;
  z-index: 1;
  left: 30px;
  width: calc(100% - 59px);
  border: 1px solid #000;
  padding: 15px;
  background: #fff;
  cursor: pointer;
  display: none;
  text-align: center;
}

.carousel3-quick-view {
  position: absolute;
  bottom: 345px;
  z-index: 1;
  left: 30px;
  width: calc(100% - 59px);
  border: 1px solid #000;
  padding: 15px;
  background: #fff;
  cursor: pointer;
  display: none;
  text-align: center;
}

.carousel2-quick-view {
  position: absolute;
  bottom: 300px;
  z-index: 1;
  left: 30px;
  width: calc(100% - 59px);
  border: 1px solid #000;
  padding: 15px;
  background: #fff;
  cursor: pointer;
  display: none;
  text-align: center;
}

.product_item:hover .carousel-quick-view {
  display: block;
}

.product_item:hover .carousel3-quick-view {
  display: block;
}

.product_item:hover .carousel2-quick-view {
  display: block;
}

.product_des .description {
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  margin: 10px 0 0;
  cursor: auto;
}

.product_des .price_type {
  cursor: auto;
  min-height: 50.5px;
}

.mt-0 {
  margin-top: 0 !important;
}

.product_des .review {
  cursor: auto;
}

.product_des .size_select_pro ul li {
  cursor: auto;
}

.total_review {
  color: #737373;
  font-size: 16px;
}

.product_des .review {
  margin: 0 0 10px;
}

.product_des {
  margin: 10px 0 0;
}

.price,
.initial_price {
  font-size: 14px;
}

.price.oferta_price,
.product_des .discount {
  color: #d9000c;
}

.product_des .title {
  margin: 5px 0 0;
  padding: 0 !important;
}

.cross_price {
  text-decoration: line-through;
}

.price.oferta_price {
  font-weight: 700;
  font-size: 16px;
  margin: 10px 0 0;
}

.bullet_color_wrap {
  padding: 0 30px;
  white-space: nowrap;
  margin: 15px 0;
  position: relative;
  height: 34px;
}

.buttet_wrap {
  width: 190px;
  overflow: hidden;
  margin: 0 auto;
  height: 34px;
  position: relative;
  display: flex;
  align-items: center;
}

.buttet_wrap ul {
  display: flex;
  transition: left 400ms ease;
  align-items: center;
  left: 1.1%;
  position: absolute;
}

@media screen and (min-width: 768px) {
  ul.slide-color {
    left: -42%;
  }
}

@media screen and (max-width: 767px) {
  ul.slide-color {
    left: -98%;
  }
}

.buttet_wrap ul li {
  margin: 0 7px;
}

.buttet_wrap ul li button {
  border-radius: 50%;
  display: inline-block;
  border: 3px solid #fff;
  padding: 0;
  box-shadow: 0 0 0 1px #dce3e6;
  box-sizing: content-box;
  width: 20px;
  height: 20px;
  overflow: hidden;
  margin: 0;
  cursor: pointer;
}

.buttet_wrap ul button.selected_bullet {
  box-shadow: 0 0 0 2px #191a1b;
}

.buttet_wrap ul li img {
  width: 100%;
  height: 100%;
}

.buttet_wrap ul li:first-child {
  margin: 0;
}

.bullet_color_wrap .color_btn {
  background-color: transparent;
  border: none;
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  margin: 0;
}

.bullet_color_wrap .color_btn svg path {
  fill: none;
  stroke: #737373;
  stroke-linecap: round;
  stroke-miterlimit: 10;
}

.bullet_color_wrap .color_btn::after {
  content: "";
  height: 30px;
  width: 30px;
  position: absolute;
  border-radius: 50%;
  top: -7px;
  right: -10px;
  z-index: -1;
}

.bullet_color_wrap .color_btn:hover:after {
  background-color: #f0f3f5;
}

.bullet_color_wrap .color_btn.pre_btn::after {
  left: -7px;
  right: inherit;
}

.bullet_color_wrap .color_btn.pre_btn svg path {
  opacity: 0.99;
  fill: none;
  stroke: #a4afb2;
  stroke-linecap: round;
  stroke-miterlimit: 10;
}

.bullet_color_wrap .color_btn.next_btn {
  right: 5px;
  left: inherit;
}
@media(max-width: 1024px){
  .buttet_wrap{
    width: 120px;
  }
  .buttet_wrap ul li:first-child {
      margin: 0;
      margin-left: 6px;
  }
}

@media(max-width: 576px){
  .buttet_wrap{
    width: 120px;
    height: inherit;
  }
  .bullet_color_wrap{
    height: 38px;
  }
  .buttet_wrap ul li:first-child {
    margin-left: 6px;
  }
  .product_des{
    margin: 0 !important;
  }
}


/*****orignal**brand***/
.orignal_brand {
  position: relative;
  margin-top: 60px;
}

.orignal_brand_wrap {
  display: flex;
  flex-wrap: wrap;
}

.orignal_brand_wrap .brand_data {
  width: 60%;
  padding-right: 60px;
}

.img_block_wrap {
  width: 40%;
}

.img_block_wrap .img_block {
  position: sticky;
  top: 0;
}

/* .productList{
  display: none;
} */
.orignal_brand_wrap .productList {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -2px;
}

.product_slider_img:after {
  position: absolute;
  left: 0;
  top: 0;
  content: " ";
  background-color: rgb(25 26 27 / 3%);
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.orignal_brand_wrap .bullet_color_wrap {
  padding: 0;
  margin: 0;
  height: auto;
}

.orignal_brand_wrap .buttet_wrap {
  width: 155px;
  margin-bottom: 10px
}

.heart {
  background: url("../../../cssanimation.rocks/images/posts/steps/heart.png") no-repeat;
  background-position: -22px 1px;
  cursor: pointer;
  transition: background-position 1s steps(28);
  transition-duration: 0s;
  width: 20px;
  height: 62px;
  background-color: transparent;
  background-size: cover;
}

.heart.is-active {
  transition-duration: 1s;
  background-position: -2800px 0;
}

.add-wishlist .feather {
  fill: #000;
  transition: all 0.5s;
  animation: like 0.5s 1;
}

@-webkit-keyframes like {
  0% {
    transform: scale(1);
  }

  90% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1.1);
  }
}

.orignal_brand_wrap .product_des {
  margin: 0;
  padding: 20px 0;
}

.orignal_brand .sub_title {
  font-weight: 600;
  letter-spacing: 0.3px;
  font-size: 24px;
  line-height: 1.16667;
  margin-bottom: 5px;
}

.orignal_brand h2 {
  font-weight: 900;
  letter-spacing: 0.6px;
  font-size: 40px;
  line-height: 1.1;
}

.orignal_brand_wrap .productList .product_item {
  width: 33%;
  /* padding: 0 2px; */
}

.load_more a,
.load_data_btn {
  border: 1px solid rgb(229, 229, 229);
  padding: 16px 40px;
  font-size: 14px;
  font-weight: 700;
  display: inline-block;
  background-color: transparent;
  font-weight: 400;
  cursor: pointer;
}

.load_data_btn {
  text-transform: uppercase;
  width: 450px;
}

.user_review_list {
  margin: 0 0 60px;
}

.load_more {
  text-align: center;
  margin: 30px 0 0;
}

/*******review*****/
.review_wrap .review_rating h4 {
  font-size: 16px;
  margin: 0 0 10px;
}

.review_wrap {
  font-size: 12px;
  margin: 24px 0 32px;
  padding: 40px 56px 70px;
  background-color: #f4f4f4;
  display: flex;
  justify-content: space-between;
}

.review_rating {
  width: 33.33%;
}

.review_summery {
  width: 33.33%;
}

.true_size {
  width: 33.33%;
}

.review_summery ul {
  flex-wrap: wrap;
}

.review_summery ul li {
  display: flex;
  align-items: center;
  margin: 5px 0;
}

.review_summery .review .progress {
  width: 200px;
  margin: 0 5px;
  background-color: #ddd;
  height: 7px;
}

.histogram-ratings-sta {
  display: flex;
  align-items: center;
  font-size: 12px;
}

.progress-done {
  background-color: #4d4d4d;
  height: 7px;
}

.review_block .review ul li img {
  width: 16px;
  margin: 0 4px;
}

.true_size .size_list ul li {
  width: 100px;
  background-color: #ddd;
  height: 10px;
  margin: 0 5px;
}

.true_size h4 {
  font-size: 16px;
}

.run_small {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.true_size .size_list ul {
  margin: 20px -5px 10px;
  display: flex;
}

.rview_list .product_des ul {
  font-size: 12px;
  margin: 0;
}

.rview_list .product_des ul li {
  margin: 0 0 5px;
}

.rview_list .product_des {
  width: 250px;
  margin: 0;
}

.user_review_list .rview_list {
  display: flex;
}

.user_review_list .rview_list .summery_review_pro {
  flex: 1;
  position: relative;
}

.verified {
  margin: 15px 0 25px;
  padding-left: 40px;
  font-size: 12px;
  position: relative;
}

.verified::after {
  position: absolute;
  left: 0;
  content: "";
  font-size: 12px;
  background-image: url("../images/verified_check.a6820809.svg");
  background-position: center;
  background-size: 14px;
  background-repeat: no-repeat;
  background-color: #4d4d4d;
  width: 20px;
  height: 20px;
  top: 50%;
  border-radius: 20px;
  transform: translateY(-50%);
}

.summery_review_pro .review {
  font-size: 14px;
  justify-content: space-between;
}

.review_time {
  color: #737373;
}

.user_review_list .rview_list .summery_review_pro h3 {
  margin: 20px 0;
  font-size: 24px;
  color: #262626;
}


.thumb {
  position: absolute;
  right: 0;
  background-color: #f5f4f4;
  border: none;
  display: flex;
  align-items: center;
  padding: 7px 14px;
  cursor: pointer;
}

.thumb .commint_valu {
  margin-left: 5px;
}

.user_review_list .rview_list {
  display: flex;
  padding: 40px 0;
  border-bottom: 1px solid #f5f4f4;
}

.filter_header button {
  background: #fff;
  border: 1px solid #e1e0e0;
  height: 50px;
  width: 240px;
  text-align: left;
  font-weight: 700;
  font-size: 16px;
  padding: 5px 10px;
  position: relative;
  cursor: pointer;
}

.filter_header button:hover {
  background-color: #f3f4f3;
}

.filter_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.down_arrow {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
}

.sort_review {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  padding: 5px 10px 10px;
}

/******dropdown menu**/
.dropdown_list {
  position: absolute;
  top: 99%;
  width: 100%;
  left: 0;
  display: none;
  z-index: 1;
}

.dropdown_list ul {
  border-radius: 4px;
  display: block;
  border-width: 1px;
  border-style: solid;
  border-color: #d0d0d0;
  background-color: #fff;
  font-weight: 400;
}

.dropdown_list li {
  padding: 12px 12px;
  font-size: 12px;
  cursor: pointer;
}

.dropdown_list li:hover {
  background-color: #f3f4f3;
}

.sort_by {
  font-size: 12px;
  font-weight: 400;
  color: #737373;
  display: block;
  width: 100%;
}

.sort_review_wrap {
  position: relative;
}

.sort_review_wrap:hover .dropdown_list {
  display: block;
}

.filter_data_wrap ul li {
  padding: 15px;
  border-bottom: 1px solid #e1e0e0;
  ;
  font-weight: 700;
  position: relative;
  cursor: pointer;
}

.filter_data_wrap ul li::after {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateX(-50%);
  content: "";
  background-image: url("../images/down_arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  width: 20px;
  height: 15px;
  transform: rotate(180deg);
  margin-top: -5px;
}

.filter_data {
  margin-top: 0px;
  display: none;
}

.filter_data.show-filter {
  display: block;
}

.filter_data_wrap {
  width: 240px;
  position: absolute;
  background: #fff;
  z-index: 1;
  border: 1px solid #ddd;
}

.filter_data_wrap ul li:last-child {
  border-width: 1px 0;
}

.filter_data_wrap ul li:hover .dropdown_list {
  display: block;
  width: 70%;
  top: 60%;
  font-weight: 400;
}

.filter_data_wrap ul li .dropdown_list li::after {
  display: none;
}

.filter_data_wrap ul li .dropdown_list li {
  padding: 12px;
  font-weight: 400;
  border: none;
  cursor: pointer;
}

.toggle_icon {
  position: absolute;
  right: 10px;
  font-size: 25px;
  font-weight: 500;
  top: 50%;
  transform: translateY(-50%);
}

.accourdin_box:last-child {
  border-width: 1px 0 1px;
}

.accourdin_wrap {
  margin-top: 50px;
}

.ui-accordion .ui-accordion-header {
  font-size: 16px;
  background-color: transparent;
  color: #000;
  border: none;
  font-weight: 700;
  position: relative;
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 15px 0;
  border-width: 1px 0 0px;
  border-style: solid;
  background-color: transparent;
  border-color: #d0d0d0;
}

.ui-accordion-header::after {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateX(-50%);
  content: "";
  background-image: url("../images/down_arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  width: 20px;
  height: 15px;
  transform: rotate(180deg);
  margin-top: -5px;
}

.ui-accordion .ui-accordion-content {
  border-width: 1px 0 0px;
  border-style: solid;
  border-color: #d0d0d0;
  padding: 15px;
}

.ui-accordion .ui-accordion-header:last-of-type {
  border-width: 1px 0;
}

.ui-accordion .ui-accordion-header.ui-state-active:last-of-type {
  border-width: 1px 0 0;
}

#accordion {
  margin: 50px 0 0;
}

.accourdin_box h2 {
  display: flex;
  align-items: center;
}

.ui-accordion .ui-accordion-header .ui-icon {
  background-image: none;
  width: auto;
}

/***MODAL**COMMON******/
.custome-modal {
  height: auto;
  left: 50%;
  position: fixed;
  top: 50%;
  z-index: 999;
  transform: translate(-50%, -50%);
  background-color: #fff;
  display: none;
  width: 750px;
  max-width: 100%;
}

.modal_inneer {
  padding: 40px;
  position: relative;
}

.custome-modal {
  top: 0;
  transform: inherit;
  left: 0;
  width: 100%;
  background-color: transparent;
  overflow-y: auto;
  height: 100%;
  padding: 40px;
}

.custome-modal .modal_inneer {
  padding: 0;
  width: 750px;
  margin: 10px auto;
  background-color: #fff;
  padding: 40px;
  border: 1px solid #ddd;
}

.custome-modal .modal_header {
  text-align: left;
  margin-bottom: 30px;
  /* border-bottom: solid 1px #ccc; */
  padding-bottom: 15px;
}

.add_comment .modal_header {
  /* display: none; */
  margin: 0;
  padding: 0;
  border: none;
}

.sub_description {
  font-size: 18px;
  margin: 0 0 15px;
}

.modal_header button {
  background-color: transparent;
  border: none;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  width: 30px;
  height: 30px;
  position: absolute;
  display: inline-block;
  top: -11px;
  right: -11px;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.5);
  text-align: center;
  border-radius: 100px;
  cursor: pointer;
  line-height: 20px;
}

.custome-modal.size_popup.show-modal .modal_inneer {
  padding: 0;
}

.review-upload-image-container {
  background: #f5f5f5;
  border: 1px solid #d1d1d1;
  min-height: 100px;
  text-align: center;
  cursor: pointer;
  position: relative;
  padding: 30px 0 50px;
  margin: 20px 0 0;
}

.optian_ajutor p {
  color: #737373;
  margin: 10px 0 0;
}

.optian_ajutor .title span {
  margin-right: 15px;
  line-height: 1;
}

.optian_ajutor .title span {
  margin-right: 15px;
  line-height: 1;
}

.on-top-field {
  margin-top: 15px;
}

.custom_checkbox span:after {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid #d1d1d1;
  content: " ";
  width: 16px;
  height: 16px;
}

.custom_checkbox span {
  padding-left: 25px;
  position: relative;
  cursor: pointer;
}

.custom_checkbox input[type="checkbox"] {
  display: none;
}

.custom_checkbox input[type="checkbox"]:checked+span::after {
  background-color: #d1d1d1;
}

.custom_checkbox input[type="checkbox"]:checked+span::before {
  display: block;
}

.custom_checkbox span::before {
  left: 6px;
  top: 1px;
  width: 4px;
  height: 9px;
  border: solid #000;
  border-width: 0 1px 1px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  content: "";
  display: none;
}

.review-upload-image-container input[type="file"] {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.custome-modal .product-image, .global-modal-popup-wrap .product-image, .cart_popup_data .product-image {
  width: 75px;
}

.custome-modal .product-data, .global-modal-popup-wrap .product-data, .cart_popup_data .product-data {
  padding-left: 15px;
}

.add-comment-title {
  color: #242424;
  font-size: 18px;
  background: #fff;
  font-weight: 600;
  line-height: 23px;
  padding-bottom: 10px;
}

.custome-modal .product-data .title,
.custome-modal .product-data .code {
  font-size: 13px;
  color: #6d6d6d;
  font-weight: normal;
  line-height: 19px;
}


.global-modal-popup-wrap .product-data .title, .global-modal-popup-wrap .product-data .code{
  font-size: 13px;
  color: #6d6d6d;
  font-weight: normal;
  line-height: 19px;
  margin: 0;
  padding: 0;
  border: 0;
}

.custome-modal .product-image img, .global-modal-popup-wrap .product-image img, .cart_popup_data .product-image img {
  width: 100%;
}

.overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
  display: none;
}

.custome-modal.show-modal {
  display: block;
}

.overlay.show-overlay {
  display: block;
}

.click_star {
  display: flex;
}

.size_list:not(:checked)>label:hover, .size_list:not(:checked)>label:hover~label {
  background-color: #000;
}

.size_list:not(:checked)>label:hover, .size_list:not(:checked)>label:hover~label {
  background-color: #000;
}

.click_star li {
  position: relative;
  background-image: url("../images/detail-sprite-v3.png");
  width: 22px;
  height: 22px;
  background-repeat: no-repeat;
  background-position: -224px -166px;
}

.rating-title-text {
  font-size: 13px;
  font-weight: 600;
  margin: 10px 0 10px;
}

.form_wrap .form_group .custom_checkbox {
  margin: 12px 0 0;
  font-weight: 400;
  color: #6d6d6d;
}

.form_wrap .btn_wrap {
  margin-top: 15px;
}

.category .secton_title {
  font-weight: 600;
}

.category_wrap ul li {
  width: 25%;
  margin: 0 0 10px;
}

.category_wrap ul {
  display: flex;
  flex-wrap: wrap;
}

.category .secton_title {
  font-weight: 600;
}

.category {
  margin-bottom: 50px;
}

/********footer*******/
.footer_wrap .footer_box h4 {
  font-weight: 400;
  color: #222;
  margin-bottom: 25px;
  font-weight: bold;
}

.footer_wrap .footer_box:last-child {
  width: 30%;
}

.footer_wrap {
  display: flex;
}

footer {
  padding: 50px 0 20px;
  background-color: #f6f6f6;
}

.footer_wrap .footer_box li {
  margin: 0 0 20px;
  font-size: 15px;
}

.social_link {
  display: flex;
  align-items: center;
  margin: 0 -5px;
}

.social_link li {
  padding: 0 5px;
}

.input-wrapper .input {
  height: 48px;
  border-width: 1px;
  border-right-width: 0;
  border: #b4b9bd 1px solid;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 1rem;
  line-height: 2.2rem;
}

.input-wrapper .submit-button {
  height: 48px;
  white-space: nowrap;
  padding-left: 24px;
  padding-right: 24px;
  font-size: 1rem;
  line-height: 2.6rem;
  border: #d3010d 1px solid;
  background-color: #d3010d;
  color: #ffffff;
}

.input-wrapper {
  display: flex;
  margin-top: 10px;
}

.footer_wrap .footer_box {
  flex: 1;
}

.mobile_app_wrap {
  display: flex;
}

.mobile_app_wrap .qrcode {
  padding-right: 15px;
}

.mobile_app_link {
  width: 100px;
}

.mobile_app {
  margin: 20px 0 0;
}

.copyright {
  margin-top: 30px;
  border-top: 1px #dfe0e0 solid;
  padding-top: 30px;
}

.copyright_inner {
  display: flex;
  align-items: center;
}

.legal_info {
  margin-right: 130px;
}


.wishlist_btn {
  position: relative;
}

.wishlist_btn button {
  width: 50px;
  height: 50px;
  background-color: transparent;
  border: 1px solid #000;
  margin-right: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product_img video {
  width: 100%;
  height: 100%;
}

.video_play_icon {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  z-index: 1;
  background-color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px;
  width: 70px;
  height: 70px;
  cursor: pointer;
}

.MagicZoom {
  width: 100%;
}

.wishlist_btn button img {
  filter: invert(1);
  width: 25px;
}

.wishlist_cart .checkout_btn {
    background-color: #000;
    width: 100%;
    border: 0px solid #000;
    padding: 4px;
    color: #fff;
    cursor: pointer;
}

.wishlist_cart .checkout_btn p {
  color: #fff;
}

.wishlist_cart .checkout_btn .cart {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-transform: uppercase;
  font-size: 18px;
  margin:5px 0;
}

.price_type {
  margin: 10px 0 10px;
}

.tooltip_wrap:hover .tooltip {
  display: block;
}

.tooltip_wrap .tooltip {
  position: absolute;
  left: 50%;
  top: -40px;
  background-color: #000;
  white-space: nowrap;
  color: #fff;
  transform: translateX(-50%);
  font-size: 12px;
  padding: 7px 10px;
  display: none;
}

.tooltip_wrap .tooltip:after {
  border-left: solid transparent 8px;
  border-right: solid transparent 8px;
  border-top: solid #000 8px;
  bottom: -7px;
  content: " ";
  height: 0;
  left: 50%;
  position: absolute;
  width: 0;
  transform: translateX(-50%);
}

.wishlist_cart .checkout_btn .cart img {
  margin-right: 8px;
}

.nevoie {
  margin-top: 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.nevoie img {
  margin-right: 12px;
}

.table-responsive {
  overflow-x: auto;
}

.table-responsive table {
  width: 100%;
}

.table-responsive table,
.table-responsive table td,
.table-responsive table th {
  border: 1px solid #e1e0e0;
  border-collapse: collapse;
}

.table-responsive table th {
  font-size: 14px;
}

.table-responsive table td,
.table-responsive table th {
  padding: 12px 10px;
  text-align: left;
}

.table-responsive tr:nth-child(odd) {
  background-color: #fff;
}

.measue_block {
  display: flex;
}

.list_measure {
  width: 70%;
}

.list_measure ul {
  counter-reset: item;
}

.list_measure ul li {
  counter-increment: item;
  margin: 0 0 10px;
  position: relative;
}

.list_measure ul li:after {
  position: absolute;
  content: counter(item);
  width: 20px;
  height: 20px;
  border-radius: 20px;
  left: 0;
  top: 0;
  color: #fff;
}

.list_measure ol {
  list-style: none;
  counter-reset: my-awesome-counter;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.list_measure ol li {
  counter-increment: my-awesome-counter;
  margin-bottom: 20px;
  position: relative;
}

.list_measure ol li::before {
  content: counter(my-awesome-counter);
  font-weight: bold;
  font-size: 1rem;
  line-height: 1;
  position: absolute;
  left: 0;
  top: 0px;
  width: 20px;
  height: 20px;
  background-color: #6d6d6d;
  color: #fff;
  text-align: center;
  line-height: 20px;
  border-radius: 100%;
  font-size: 10px;
}

.list_measure ol li h4 {
  padding-left: 30px;
  margin-bottom: 5px;
  /* font-size: 14px; */
}
/* 
.list_measure ol li p {
  font-size: 12px;
} */

.ui-tabs .ui-tabs-panel .form_wrap .form_group {
  width: 33.3%;
}

.tooltip_wrap.soldout_product .tooltip {
  top: -69px;
}

.product_sidebar {
  width: 110px;
  position: sticky;
  top: 40px;
  height: 100vh;
  margin-left: 40px;
  text-align: center;
}

.sidebar_pro_list {
  margin: 20px 0 0;
}

.sidebar_pro_list .box {
  text-align: center;
  margin-bottom: 20px;
}

.sidebar_pro_list .pro_data h4 {
  font-weight: 400;
  text-transform: uppercase;
  font-size: 14px;
}

.sidebar_pro_list .pro_data p {
  font-size: 14px;
  margin: 5px 0 0;
  text-transform: uppercase;
}

.sidebar_pro_list .box .img_box .popular {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  padding: 5px;
  font-size: 12px;
}

.sidebar_pro_list .box .img_box {
  margin-bottom: 15px;
  position: relative;
}

.sidebar_pro_list .box .img_box img {
  height: 130px;
  object-fit: cover;
  object-position: center;
}

.cart_popup .slick-track {
  width: 100%;
}

.review_popup {
  display: none;
  padding: 15px 0;
  border-width: 0px 0 1px;
  border-style: solid;
  background-color: transparent;
  border-color: #d0d0d0;
}

.review_popup button {
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 600;
  background-color: transparent;
  border: none;
}

.ui-accordion .ui-accordion-header {
  border-radius: 0;
}

.review_popup_wrap .modal_header {
  padding: 0;
  margin: 0;
  border: none;
}

.review_popup_wrap .common-btn.modal_btn.black_btn {
  width: 100%;
}

.review_popup_wrap .btn_wrap {
  margin: 0;
}

.footer_box.mobile_footer_email {
  text-align: center;
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
  margin-bottom: 20px;
  display: none;
}

.mobile-show {
  display: none;
  margin-top: 40px;
}

.footer_box.urmareste h4 {
  margin: 0 0 20px;
}

.footer_box.urmareste {
  display: none;
}

.bread_crump_inner.mobile_bread {
  display: none;
}

/*****responsive********/
@media (max-width: 1024px) {
  .container {
    padding: 0 15px;
  }

  .footer_wrap .footer_box {
    flex: 0 0 33%;
    margin: 0 0 15px;
  }

  .footer_wrap {
    display: flex;
    flex-wrap: wrap;
  }

  .orignal_brand_wrap .brand_data {
    width: 100%;
    padding-right: 0;
  }

  .img_block_wrap {
    display: none;
  }

  .product_sidebar {
    display: none;
  }
}

/* Shibbir CSS */

#uploaded-images {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 10px;
}

#uploaded-images img {
  width: auto;
  height: 100px;
  max-width: 100px;
  object-fit: cover;
  object-position: center center;
  margin-right: 10px;
  border: 1px solid #ddd;
  padding: 10px;
}

#uploaded-images button {
  width: 20px;
  height: 20px;
  border: none;
  padding: 5px;
  background-color: #c10d0d;
  color: #fff;
  margin-left: -16px;
  margin-top: -5px;
  z-index: 9;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.error-message {
  color: red;
  margin-bottom: 10px;
  display: block;
}

.success-message {
  color: green;
  margin-bottom: 10px;
  display: block;
}

.popup-rating-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.size_listed {
  position: relative;
  margin-top: 10px;
}

.size_listed ul li {
  width: 76px;
  height: 7px;
  background: #ddd;
  display: inline-block;
}

.size_listed .size_got {
  background: #000;
}

.size_listed ul li:first-child:after {
  content: "Runs Small";
  position: absolute;
  bottom: -15px;
  font-size: 12px;
}

.size_listed ul li:last-child:after {
  content: "Runs large";
  position: absolute;
  bottom: -15px;
  font-size: 12px;
  right: 0;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  background: #fff !important;
}

.wishlist-item {
  display: flex;
  margin-bottom: 10px;
}

.wishlist-img img {
  width: 50px;
  height: 68px;
  object-fit: cover;
  margin-right: 10px;
  border: 1px solid #ddd;
  margin-left: 10px;
}

.wishlist-item-details h4 {
  margin-bottom: 5px;
  font-size: 14px;
}

.wishlist-item-details ul {
  margin-bottom: 10px;
}

.wishlist-item-details ul li {
  text-align: left;
  padding: 0;
  margin-right: 17px;
}

.wishlist_love {
    display: flex;
    width: 62px;
    height: 62px;
    background: white;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 2px solid #aab8c2;
    margin-right: 10px;
    position: relative;
    border-radius: 100px;
}

.btn-quickview .wishlist_love {
  width: 40px;
  height: 40px;
}

.btn-quickview .wishlist_love .popup-heart-svg {
  width: 40px;
}

.wishlist_love .heart-tooltip {
  display: none;
}

.wishlist_love:hover .heart-tooltip {
  display: block;
  position: absolute;
  left: 50%;
  top: -40px;
  background-color: #000;
  white-space: nowrap;
  color: #fff;
  transform: translateX(-50%);
  font-size: 12px;
  padding: 7px 10px;
}

.wishlist_love .heart-tooltip:after {
  border-left: solid transparent 8px;
  border-right: solid transparent 8px;
  border-top: solid #000 8px;
  bottom: -7px;
  content: " ";
  height: 0;
  left: 50%;
  position: absolute;
  width: 0;
  transform: translateX(-50%);
}

.wishlist_love svg {
  cursor: pointer;
  overflow: visible;
  width: 65px;

  .heart {
    transform-origin: center;
    animation: animateHeartOut .3s linear forwards;
  }

  .main-circ {
    transform-origin: 29.5px 29.5px;
  }
}

.wishlist_love #checkbox {
  display: none;
}

.wishlist_love .checkbox {
  display: none;
}

.wishlist_love .wishlish-selected.selected label svg {

  .heart {
    transform: scale(1);
    /* Set the initial scale to 1 */
    fill: #E2264D;
    animation: animateHeart .3s linear forwards .25s;
  }

  .main-circ {
    transition: all 2s;
    animation: animateCircle .3s linear forwards;
    opacity: 1;
  }

  .grp1 {
    opacity: 1;
    transition: .1s all .3s;

    .oval1 {
      transform: scale(0) translate(0, -30px);
      transform-origin: 0 0 0;
      transition: .5s transform .3s;
    }

    .oval2 {
      transform: scale(0) translate(10px, -50px);
      transform-origin: 0 0 0;
      transition: 1.5s transform .3s;
    }
  }

  .grp2 {
    opacity: 1;
    transition: .1s all .3s;

    .oval1 {
      transform: scale(0) translate(30px, -15px);
      transform-origin: 0 0 0;
      transition: .5s transform .3s;
    }

    .oval2 {
      transform: scale(0) translate(60px, -15px);
      transform-origin: 0 0 0;
      transition: 1.5s transform .3s;
    }
  }

  .grp3 {
    opacity: 1;
    transition: .1s all .3s;

    .oval1 {
      transform: scale(0) translate(30px, 0px);
      transform-origin: 0 0 0;
      transition: .5s transform .3s;
    }

    .oval2 {
      transform: scale(0) translate(60px, 10px);
      transform-origin: 0 0 0;
      transition: 1.5s transform .3s;
    }
  }

  .grp4 {
    opacity: 1;
    transition: .1s all .3s;

    .oval1 {
      transform: scale(0) translate(30px, 15px);
      transform-origin: 0 0 0;
      transition: .5s transform .3s;
    }

    .oval2 {
      transform: scale(0) translate(40px, 50px);
      transform-origin: 0 0 0;
      transition: 1.5s transform .3s;
    }
  }

  .grp5 {
    opacity: 1;
    transition: .1s all .3s;

    .oval1 {
      transform: scale(0) translate(-10px, 20px);
      transform-origin: 0 0 0;
      transition: .5s transform .3s;
    }

    .oval2 {
      transform: scale(0) translate(-60px, 30px);
      transform-origin: 0 0 0;
      transition: 1.5s transform .3s;
    }
  }

  .grp6 {
    opacity: 1;
    transition: .1s all .3s;

    .oval1 {
      transform: scale(0) translate(-30px, 0px);
      transform-origin: 0 0 0;
      transition: .5s transform .3s;
    }

    .oval2 {
      transform: scale(0) translate(-60px, -5px);
      transform-origin: 0 0 0;
      transition: 1.5s transform .3s;
    }
  }

  .grp7 {
    opacity: 1;
    transition: .1s all .3s;

    .oval1 {
      transform: scale(0) translate(-30px, -15px);
      transform-origin: 0 0 0;
      transition: .5s transform .3s;
    }

    .oval2 {
      transform: scale(0) translate(-55px, -30px);
      transform-origin: 0 0 0;
      transition: 1.5s transform .3s;
    }
  }

  .grp2 {
    opacity: 1;
    transition: .1s opacity .3s;
  }

  .grp3 {
    opacity: 1;
    transition: .1s opacity .3s;
  }

  .grp4 {
    opacity: 1;
    transition: .1s opacity .3s;
  }

  .grp5 {
    opacity: 1;
    transition: .1s opacity .3s;
  }

  .grp6 {
    opacity: 1;
    transition: .1s opacity .3s;
  }

  .grp7 {
    opacity: 1;
    transition: .1s opacity .3s;
  }
}


.wishlist_love #checkbox2 {
  display: none;
}

.wishlist_love #checkbox2:checked+label svg {

  .heart {
    transform: scale(1);
    /* Set the initial scale to 1 */
    fill: #E2264D;
    animation: animateHeart .3s linear forwards .25s;
  }

  .main-circ {
    transition: all 2s;
    animation: animateCircle .3s linear forwards;
    opacity: 1;
  }

  .grp1 {
    opacity: 1;
    transition: .1s all .3s;

    .oval1 {
      transform: scale(0) translate(0, -30px);
      transform-origin: 0 0 0;
      transition: .5s transform .3s;
    }

    .oval2 {
      transform: scale(0) translate(10px, -50px);
      transform-origin: 0 0 0;
      transition: 1.5s transform .3s;
    }
  }

  .grp2 {
    opacity: 1;
    transition: .1s all .3s;

    .oval1 {
      transform: scale(0) translate(30px, -15px);
      transform-origin: 0 0 0;
      transition: .5s transform .3s;
    }

    .oval2 {
      transform: scale(0) translate(60px, -15px);
      transform-origin: 0 0 0;
      transition: 1.5s transform .3s;
    }
  }

  .grp3 {
    opacity: 1;
    transition: .1s all .3s;

    .oval1 {
      transform: scale(0) translate(30px, 0px);
      transform-origin: 0 0 0;
      transition: .5s transform .3s;
    }

    .oval2 {
      transform: scale(0) translate(60px, 10px);
      transform-origin: 0 0 0;
      transition: 1.5s transform .3s;
    }
  }

  .grp4 {
    opacity: 1;
    transition: .1s all .3s;

    .oval1 {
      transform: scale(0) translate(30px, 15px);
      transform-origin: 0 0 0;
      transition: .5s transform .3s;
    }

    .oval2 {
      transform: scale(0) translate(40px, 50px);
      transform-origin: 0 0 0;
      transition: 1.5s transform .3s;
    }
  }

  .grp5 {
    opacity: 1;
    transition: .1s all .3s;

    .oval1 {
      transform: scale(0) translate(-10px, 20px);
      transform-origin: 0 0 0;
      transition: .5s transform .3s;
    }

    .oval2 {
      transform: scale(0) translate(-60px, 30px);
      transform-origin: 0 0 0;
      transition: 1.5s transform .3s;
    }
  }

  .grp6 {
    opacity: 1;
    transition: .1s all .3s;

    .oval1 {
      transform: scale(0) translate(-30px, 0px);
      transform-origin: 0 0 0;
      transition: .5s transform .3s;
    }

    .oval2 {
      transform: scale(0) translate(-60px, -5px);
      transform-origin: 0 0 0;
      transition: 1.5s transform .3s;
    }
  }

  .grp7 {
    opacity: 1;
    transition: .1s all .3s;

    .oval1 {
      transform: scale(0) translate(-30px, -15px);
      transform-origin: 0 0 0;
      transition: .5s transform .3s;
    }

    .oval2 {
      transform: scale(0) translate(-55px, -30px);
      transform-origin: 0 0 0;
      transition: 1.5s transform .3s;
    }
  }

  .grp2 {
    opacity: 1;
    transition: .1s opacity .3s;
  }

  .grp3 {
    opacity: 1;
    transition: .1s opacity .3s;
  }

  .grp4 {
    opacity: 1;
    transition: .1s opacity .3s;
  }

  .grp5 {
    opacity: 1;
    transition: .1s opacity .3s;
  }

  .grp6 {
    opacity: 1;
    transition: .1s opacity .3s;
  }

  .grp7 {
    opacity: 1;
    transition: .1s opacity .3s;
  }
}


@keyframes animateCircle {
  40% {
    transform: scale(10);
    opacity: 1;
    fill: #DD4688;
  }

  55% {
    transform: scale(11);
    opacity: 1;
    fill: #D46ABF;
  }

  65% {
    transform: scale(12);
    opacity: 1;
    fill: #CC8EF5;
  }

  75% {
    transform: scale(13);
    opacity: 1;
    fill: transparent;
    stroke: #CC8EF5;
    stroke-width: .5;
  }

  85% {
    transform: scale(17);
    opacity: 1;
    fill: transparent;
    stroke: #CC8EF5;
    stroke-width: .2;
  }

  95% {
    transform: scale(18);
    opacity: 1;
    fill: transparent;
    stroke: #CC8EF5;
    stroke-width: .1;
  }

  100% {
    transform: scale(19);
    opacity: 1;
    fill: transparent;
    stroke: #CC8EF5;
    stroke-width: 0;
  }
}

@keyframes animateHeart {
  0% {
    transform: scale(0.2);
  }

  40% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes animateHeartOut {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1);
  }
}

.arrow {
  border: solid black;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 6px;
  margin-bottom: 3px;
  cursor: pointer;
}

.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  margin-right: 6px;
}

.left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  margin-left: 6px;
}

.ui-widget-header {
  background: transparent !important;
}

/* Styling for the switch */
.switch-container {
  display: flex;
  align-items: center;
}

.switch-container .switch-label {
  margin-right: 10px;
  font-size: 16px;
  color: #333;
}

.switch-container .switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 25px;
  margin-right: 10px;
}

.switch-container .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider (circle) */
.switch-container .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  -webkit-transition: .4s;
  transition: .4s;
}

/* Rounded sliders (default style) */
.switch-container .slider:before {
  position: absolute;
  content: "";
  height: 23px;
  width: 23px;
  left: 0px;
  bottom: 0px;
  background-color: black;
  -webkit-transition: .4s;
  transition: .4s;
}

.switch-container input:checked+.slider {
  background-color: #006adb;
}

.switch-container input:checked+.slider:before {
  -webkit-transform: translateX(25px);
  -ms-transform: translateX(25px);
  transform: translateX(25px);
  background-color: white;
}

/* Rounded sliders (alternative style) */
.switch-container .slider.round {
  border-radius: 34px;
  border: 1px solid #e1e0e0
}

.switch-container .slider.round:before {
  border-radius: 50%;
}

.slick-slider {
  user-select: auto !important;
}

/*.carousel .slick-list {
  padding: 0 20% 0 0 !important;
}*/

/*.carousel3 .slick-list {
  padding: 0 20% 0 0 !important;
}

.carousel2 .slick-list {
  padding: 0 20% 0 0 !important;
}*/

.form-messages {
  margin-top: 10px;
}

.hidden {
  display: none;
}

.desktop-popup {
  position: fixed;
  top: 15%;
  width: 70%;
  max-width: 800px;
  /* height: fit-content; */
  /* max-height: 85%; */
  margin: auto;
  left: 0;
  right: 0;
  background-color: #fff;
  /* padding: 20px; */
/*  transition: .5s;*/
  box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.desktop-popup .title, .mobile-popup .title {
  padding: 20px;
}
.desktop-popup .title h2, .mobile-popup .title h2 {
  font-weight: 400;
}

.p-relative {
  position: relative;
  transform: none;
  width: auto;
  right: auto;
}

.desktop-popup .body {
  margin-top: 2rem;
  height: 100%;
  overflow: auto;
  /* padding-right: 12px; */
}

.bg-grey {
  background-color: #f5f4f4 !important;
}

.small {
  font-size: 12px;
}


/*.desktop-popup .title:not(.product_des .title) {
  border-bottom: 1px solid #ddd;
  margin: 10px;
  padding-bottom: 15px;
}*/


.mobile-popup {
  position: fixed;
  overflow-y: scroll;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  /* padding: 20px 20px 20px 20px; */
  transition: .5s;
  transform: translateY(100%);
  box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
  z-index: 999;
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
}

.mobile-popup .body {
  margin-top: 5px;
  max-height: 500px;
  overflow: scroll;
  padding-bottom: 15px;
}

.sticky-header {
    position: sticky;
    width: 100%;
    top: 0;
    background: white;
}

.mobile-popup .subtitle {
  margin-bottom: 15px;
}

.mobile-popup .title {
  text-align: left;
  margin-top: 15px;
}

.desktop-close-btn, .mobile-close-btn {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 25px;
  height: 25px;
  opacity: 0.3;
  cursor: pointer;
}

.mobile-close-btn {
  position: sticky;
  left: 93%;
  top: 5px;
  width: 25px;
  height: 25px;
  opacity: 0.3;
  cursor: pointer;
  z-index: 999;
}

.desktop-close-btn, .mobile-close-btn:hover {
  opacity: 1;
}
/*
.desktop-close-btn:before,
.desktop-close-btn:after,
.mobile-close-btn:before,
.mobile-close-btn:after {
  position: absolute;
  left: 15px;
  content: ' ';
  height: 20px;
  width: 2px;
  background-color: #333;
}

.desktop-close-btn:before, .mobile-close-btn:before {
  transform: rotate(45deg);
}

.desktop-close-btn:after, .mobile-close-btn:after {
  transform: rotate(-45deg);
}*/

/*
.mobile-close-btn:before,
.mobile-close-btn:after {
  position: absolute;
  left: 15px;
  content: ' ';
  height: 20px;
  width: 2px;
  background-color: #333;
}

.mobile-close-btn:before {
  transform: rotate(45deg);
}

.mobile-close-btn:after {
  transform: rotate(-45deg);
}


.mobile-swape-btn {
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  margin: auto;
  opacity: .3;
}

.mobile-swape-btn:after {
  content : '';
  width : 60px;
  height : 4px;
  background-color : #b8b3b3;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.mobile-swape-btn:before {
  content: '';
  width: 60px;
  height: 13px;
  background-color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-56%, -43%);
}*/

.closeButton {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.closeButton:hover {
  color: red;
}

.opening {
  animation: openDiv 1s ease-in-out forwards;
}

.closing {
  animation: closeDiv 1s ease-in-out forwards;
}

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

  75% {
    transform: translateY(75%);
  }

  50% {
    transform: translateY(50%);
  }

  25% {
    transform: translateY(25%);
  }

  100% {
    transform: translateY(0%);
  }
}

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

  25% {
    transform: translateY(25%);
  }

  50% {
    transform: translateY(50%);
  }

  75% {
    transform: translateY(75%);
  }

  100% {
    transform: translateY(100%);
  }
}

/* Desktop fit size popup */
.size-chart-table .ui-tabs-panel {
  padding: 0 !important;
}

.size-chart-table-ul {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white !important;
  /* padding: 15px !important; */
  /* gap: 16px; */
  width: fit-content;
  border-radius: 11px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 1rem;
}

.size-chart-table-ul li {
  cursor: pointer;
  font-size: 12px;
  padding: 8px 15px;
  min-width: 100px;
  text-align: center;
}
.size-chart-table-ul li.item_active {
  /* border-bottom: 2px solid black; */
  background-color: black;
  color: white;
  border-radius: 11px;
}

.size-chart-table-ul li a {
  padding: 0px !important;
  background-color: #f5f4f4 !important;
}

.size-chart-table-ul li a button {
  border: none;
  background: none;
  cursor: pointer;
}

.size-chart-table-ul li.ui-tabs-active button {
  background: #000;
  color: #fff;
  width: 100%;
  padding: 9px 0;
  border-radius: 5px;
}
.size-chart-table>div{
  display: none;
}
.size-chart-table>div.active_item{
  display: block;
}


 .carousel4-quick-view {
    display: none !important;
  }

/* Desktop fit size popup */

@media (max-width: 767px) {
.logo img { height:20px; width:auto }
  .d-none-mobile {
    display: none;
  }

  .buttet_wrap ul {
    left: -2.9%;
  }

  /* .slick-track {
    white-space: nowrap !important;
    overflow-x: scroll !important;
    display: flex !important;
  }*/

/*  .slick-track .product_item {
    width: 200px !important;
  }*/

  .nav_wrap .container .category_tab li.active {
    background-color: #b4b4b4;
  }

  .show-sidebar .close_icon {
    right : 0;
    z-index: 99;
    left : auto;
  }

  .nav_wrap .container .category_tab li a {
    color : #fff;
  }

  .nav_wrap .container .category_tab li {
    background-color: #000;
  }

  footer .container {
    padding: 0;
  }

  .footer-overlay {
    position: absolute;
    bottom: 0;
    left: 0%;
    transform: translateY(0%);
    z-index: 1;
    content: " ";
    background: rgb(255 255 255 / 72%);
    width: 100%;
    height: 60%;
    top: 40%;
  }

  .footer-overlay-down {
    content: "";
    width: 30px;
    height: 30px;
    border: solid #000000;
    border-width: 2px 2px 0 0;
    position: absolute;
    bottom: 90%;
    left: 0;
    right: 0;
    margin: auto;
    transform: rotate(135deg);
    opacity: .3;
    z-index: 99;
  }

  /* .footer-overlay:before,
  .footer-overlay:after {
    position: absolute;
    left: 15px;
    content: ' ';
    height: 20px;
    width: 2px;
    background-color: #333;
  }

  .footer-overlay:before  {
    transform: rotate(45deg);
  }

  .footer-overlay:after {
    transform: rotate(-45deg);
  } */

  .footer_box_full {
    display: none;
  }

  .size_select_pro ul li {
    font-size: 13px;
  }

  .buttet_wrap {
    max-width: 100%;
  }

  .discount_price .highlight-text {
    margin-right: 12px;
    font-size: 14px;
    margin-bottom: 0 !important;
  }

  .discount_price {
    display: flex;
    font-size: 10px;
  }

  .size_list label {
    margin-top: 10px;
  }

  .btn_wrap .common-btn.black_btn  {
    width : 100%;
  }

  /* Style the accordion sections */
  #accordion .accourdin_data {
    display: none;
    border: 1px solid #ccc;
    margin-bottom: 10px;
  }

  /* Style the section titles */
  #accordion h3 {
    margin: 0;
    padding: 20px 10px;
    cursor: pointer;
    border-top: 1px solid #ddd;
  }

  /* Style the section content */
  .accourdin_data ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    padding: 10px;
    background-color: white; /* You can change the background color as needed */
  }

  .accourdin_data li {
    margin-bottom: 5px;
  }

  .carousel4-quick-view {
    display: none;
  }

  .cart_popup_data .right_part {
    margin-top: 10px;
  }

  .product-data {
    margin-left: 15px;
  }

  .product-image img {
    width : 100%;
  }

  .review_popup {
    display: block;
    margin-left: 10px;
    border-top: 1px solid #ddd;
    padding: 10px 0;
  }

  .review_popup button  {
    font-weight: normal;
  }

  .secton_title {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .footer_wrap {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    padding : 0 15px;
  }

  .load_data_btn {
    width: 100%;
    cursor: pointer;
  }

  .footer_wrap .footer_box {
    flex: 0 0 50%;
    margin: 0 0 20px;
  }

  .footer_wrap .footer_box li {
    margin: 0 0 10px;
    font-size: 14px;
  }

  .review_wrap {
    font-size: 12px;
    margin: 15px 0 32px;
    padding: 0;
    background-color: transparent;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .user_review_list .rview_list {
    padding: 30px 0;
    border-bottom: 1px solid #f5f4f4;
    flex-wrap: wrap;
  }

  .user_review_list .rview_list .summery_review_pro h3 {
    margin: 10px 0;
    font-size: 20px;
  }

  p {
    font-size: 14px;
  }

  .thumb {
    position: static;
    margin: 22px 0 0;
  }

  .rview_list .product_des ul {
    margin: 0 0 30px;
  }

  .user_review_list {
    margin: 0 0 50px;
  }

  .orignal_brand h2 {
    font-size: 25px;
  }

  .orignal_brand .sub_title {
    font-size: 20px;
  }

  .orignal_brand_wrap .brand_data {
    width: 100%;
    padding-right: 0;
  }

  .img_block_wrap {
    width: 100%;
    margin: 50px 0 0;
  }

  .product_block {
    margin: 50px 0;
  }

  .mobile-popup .product_block {
    margin: 0 !important;
  }

  

  .copyright_inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
  }

  .legal_info {
    margin: 0 0 8px;
  }

  .copyright {
    margin-top: 15px;
    border-top: 1px #dfe0e0 solid;
    padding-top: 15px;
    display: none;
  }

  .mobile_app_wrap {
    display: flex;
    justify-content: center;
    margin: 15px 0 0;
  }

  .true_size {
    width: 100%;
    background-color: #f4f4f4;
    padding: 15px;
    overflow: scroll;
  }

  .review_summery {
    width: 100%;
    background-color: #f4f4f4;
    padding: 15px;
    margin: 10px 0;
  }

  .review_rating {
    width: 100%;
    background-color: #f4f4f4;
    padding: 15px;
  }

  .btn_wrap {
    margin-top: 20px;
  }

  .custome-modal .modal_inneer {
    width: calc(100% - 20px);
    padding: 20px;
  }

  .custome-modal {
    padding: 10px;
    transform: translateY(100%);
    display: block;
  }

  .closeButton {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
  }

  .closeButton:hover {
    color: red;
  }

  .opening {
    animation: openDiv 1s ease-in-out forwards;
  }

  .closing {
    animation: closeDiv 1s ease-in-out forwards;
  }

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

    100% {
      transform: translateY(0%);
    }
  }

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

    100% {
      transform: translateY(100%);
    }
  }

  .modal_header button {
    top: -15px;
    right: -13px;
    border-radius: 50%;
  }

  .product_block_mian .container {
    padding: 0;
  }

  .ui-tabs .ui-tabs-panel {
    padding: 15px;
  }

  .back_arrow_pro button {
    background-color: #ffffffd4;
    border: none;
    padding: 6px;
    cursor: pointer;
  }

  .custome-modal .modal_header {
    margin-bottom: 0px;
    padding-bottom: 0px;
  }

  .custome-modal .secton_title {
    font-size: 16px;
    text-transform: uppercase;
  }

  .contact_details,
  .optian_ajutor {
    width: 100%;
  }

  .orignal_brand_wrap .buttet_wrap {
    width: 230px;
  }

  .load_more {
    text-align: center;
    margin: 0 0 0;
  }

  .review_rating {
    text-align: center;
  }

  .review_wrap .review {
    justify-content: center;
  }

  .product_des {
    margin: 28px 0 0;
    position: relative;
  }

  .product_des .thumb {
    position: absolute;
    top: 0;
    margin: 0;
  }

  .filter_header {
    justify-content: flex-end;
    margin: 0 0 20px;
  }

  .sort_by {
    font-size: 12px;
    font-weight: 400;
    color: #737373;
    display: block;
    width: 100%;
  }

  .rview_list .product_des {
    width: 100%;
    margin: 0;
  }

  .summery_review_pro h3 {
    margin: 10px 0;
  }

  .rview_list {
    padding: 30px 0;
    border-bottom: 1px solid #f5f4f4;
    flex-wrap: wrap;
  }

  #review {
    padding-top: 20px;
    display: none;
  }

  .footer_box.mobile_footer_email {
    display: block;
  }

  .mobile-show {
    display: block;
    width: 100%;
    text-align: center;
  }

  .footer_box.desktop {
    display: none;
  }

  .social_link {
    justify-content: start;
  }

  .urmareste h4 {
    text-align: center;
  }

  .footer_box.mobile_footer_email {
    margin: 0 0 40px;
    padding-bottom: 40px;
  }

  .footer_box.desktop_social_link {
    display: none;
  }

  .footer_box.urmareste {
    display: block;
  }

  .footer_box.mobile_footer_email h4 {
    font-size: 20px;
    margin: 0 0 10px;
  }

  .footer_box.footer_accordion {
    padding: 15px 0;
    margin: 0;
    border-style: solid;
    border-width: 1px 0 0;
    border-color: #ccc;
  }

  .footer_box.footer_accordion.last_accordion {
    border-width: 1px 0 1px;
  }

  .footer_box.footer_accordion h4:after {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    content: "+";
    font-size: 25px;
    color: #3f3f3f;
  }

  .footer_box.footer_accordion h4 {
    position: relative;
  }

  .footer_box.footer_accordion h4.active::after {
    content: "-";
  }

  ul.accordion-content {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #ccc;
  }

  .product_gallery_inner .slick-dots {
    bottom: 14px;
    background: #fff;
    width: 172px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
  }

  .product_gallery_inner .slick-dots li {
    width: 14px;
    height: 14px;
  }

  .slick-dots li button:before {
    top: -2px;

    width: 14px;
    height: 14px;

  }

  .slick-dots li button {
    width: 14px;
    height: 14px;
  }

  .ui-tabs .ui-tabs-nav {
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
  }

  .ui-tabs .ui-tabs-nav li {
    width: 200px;
  }

  .input-wrapper .submit-button {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
    width: 100%;
  }

  .input-wrapper .input {
    font-size: 14px;
    width: 100%;
  }

  .footer_wrap .input-email {
    width: calc(100% - 86px);
  }

  .product_block_mian {
    overflow-x: hidden;
  }

  .wishlist_cart .checkout_btn p {
    font-size: 12px;
  }

  .popup-rating-wrapper {
    flex-direction: column;
  }

  .popup-rating-wrapper .size_list {
    margin-bottom: 40px;
    margin-top: 0;
    width: 100%;
  }

  /* .popup-rating-wrapper .size_list label {
    flex: 1;
  } */

  .form_wrap {
    flex-direction: column;
  }

  .form_wrap .form_group {
    width: 100% !important;
    padding: 0 10px;
  }

  .filter_header button {
    width: 100%;
  }

  .sort_review_wrap {
    width: 100%;
  }

  .product_item:hover .carousel-quick-view {
    display: none;
  }

  .tooltip_wrap:hover .tooltip {
    display: none;
  }

  .wishlist_love .heart-tooltip {
    display: none !important;
  }
}

/*Product skeleton loading*/
.product-card-skeleton {
  animation: product-card-skeleton-loading 1s linear infinite alternate;
  margin-bottom: 0.5rem;
  border-radius: 0.25rem;
}

.product-card-skeleton-svg {
  animation: product-card-skeleton-loading-svg 1s linear infinite alternate;
  margin-bottom: 0.5rem;
  border-radius: 0.25rem;
}

@keyframes product-card-skeleton-loading {
  0% {
    background-color: hsl(200, 20%, 91%);
    color: hsl(200, 20%, 92%);
  }
  100% {
    background-color: hsl(200, 20%, 99%);
    color: hsl(200, 20%, 92%);
  }
}
@keyframes product-card-skeleton-loading-svg {
  0% {
    color: hsl(200, 20%, 92%);
  }
  100% {
    color: hsl(200, 20%, 92%);
  }
}



.skeleton-product-card-text {
  width: 100%;
  height: 1.1rem;
}
.skeleton-product-card-brand{
  width: 80px;
  height: 0.9rem;
}

.skeleton-product-card-description {
  width: 100%;
  height: 2.5rem;
}

.skeleton-product-card-price {
  width: 140px;
  height: 2rem;
}
.skeleton-product-card-discount {
  width: 60px;
  height: 2rem;
}

.skeleton-product-card-review{
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  height: 20px;
  width: 20px;
  display: inline-block;
  background: black;
}
.skeleton-product-card-review-count{
  height: 20px;
  width: 35px;
}
.skeleton-product-card-size {
    height: 25px;
    width: 25px;
    margin: 0 2px;
}
.skeleton-product-card-thumbnail{
  height: 300px;
  width: 100%;
}
.skeleton-product-card-offer_list{
  height: 24px;
  width: 45px;
}
.skeleton-product-card-colors {
  height: 27px;
  width: 27px;
  margin: 0 !important;
  margin-right: 5px !important;
}
.skeleton-product-card-hart{
  height: 24px;
  width: 20px;
}

.skeleton-product .color_btn{
  display: none;
}

.size-missing-form .common-btn{
  width: 100%;
}

.modal-footer-message{
  text-align: center;
}

.success-response-message{
  color: green;
  font-weight: bold;
}
.failed-response-message{
  color: red;
  font-weight: bold;
}

.tabs-inner-wrap {
    /* margin-bottom: 20px; */
    /* margin-top: 15px; */
    padding: 20px;
}
.tab-navigation {
    /* padding-top: 10px; */
    background: #fff;
}

.tab-navigation ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    /* padding: 10px; */
    padding-bottom: 0;
}

.tab-navigation ul li {
    width: 33%;
    text-align: center;
    /* padding: 10px; */
    cursor: pointer;
    padding-bottom: 10px;
    height: 100%;
}
.tab-navigation ul li a{
  display: block;
  height: 100%;
  font-size: 12px;
}

/*.tabs-inner-wrap>div{
  display: none;
}
.tabs-inner-wrap>div.active_tab{
  display: block;
}*/
.tab_active{
  border-bottom: 2px solid black;
}

/* Magic Zoom setting*/
.product_img .mz-figure {
  width: 100% !important;
}
.product_img .mz-figure img {
  max-width: 100% !important;
}

.product_description .description {
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  margin: 10px 0 0;
  cursor: auto;
}



/*Mobile Footer*/

.mobile_footer{
  display: none;
}

@media(max-width: 768px){
.slick-dotted.slick-slider {
    margin-bottom: 0px;
}
.review ul li img {     margin: 0 1px !important;  }
  .mobile_footer{
    display: block;
    background: #f6f6f6;
  }

  .mobile_footer .input-wrapper {
      display: flex;
      margin-top: 10px;
      justify-content: space-around;
      padding: 10px;
  }
  .mobile_footer .footer_box_full{
    text-align: center;
    padding: 6px 20px;
  }
  .mobile_footer .footer_box_full h4{
    padding: 0 45px;
    margin-bottom: 20px;
  }
  .follow_sec_wrap {
    text-align: center;
    padding: 35px 20px;
    border-top: 1px solid #d0d0d0;
    margin-top: 20px;
  }
  .accordion_item:last-child {
      border-bottom: 1px solid #d0d0d0;
  }

  .input-wrapper>div {
      flex: 1 1 auto;
  }
  .follow_sec_wrap .social_link {
    justify-content: center;
    margin-top: 17px;
  }

  div#mobile_footer_accordion {
    padding: 20px;
    padding-top: 0;
  }

  .accordion_item {
      border-top: 1px solid #d0d0d0;
  }

  .accordion_header {
      display: flex;
      justify-content: space-between;
      font-size: 18px;
      padding: 15px 0px;
      cursor: pointer;
  }

  .accordion_body {
      height: 0;
      overflow: hidden;
      visibility: hidden;
      opacity: 0;
  }

  .accordion_active .accordion_body {
      height: inherit;
      visibility: visible;
      opacity: 1;
      padding-bottom: 10px;
  }

  .accordion_header div span:first-child {
      display: none;
  }

  .accordion_active .accordion_header div span:last-child {
      display: none;
  }

  .accordion_active .accordion_header div span:first-child {
      display: block;
  }

  .accordion_body ul li {
      padding: 4px 0;
  }
  .accordion_item:last-child {
      border-bottom: 1px solid #d0d0d0;
  }
  .app_download_wrap{
    text-align: center;
    padding: 30px 20px;
  }
}