.single-product div.product .woocommerce-product-gallery {
  width: 50% !important;
  margin-right: 0 !important;
  float: left !important;
}
.single-product div.product .woocommerce-product-gallery img {
  width: 100%;
}
body .woo-product-gallery-slider .slick-next {
  right: 0;
}

div.swatch-wrapper.selected {
  border: 5px solid green;
}
.swatch-wrapper {
  border: 5px solid transparent;
}
.swatch-wrapper:hover {
  border-color:green ;
  border: 5px solid green ;
}
.scroll-minicart {
  position: absolute;
  top: 58vh;
  right: 0;
  z-index: 10;
  background: #f0f0f0;
}
.scroll {
	width: 40px;
  margin: auto;
	height: 40px;
	border: 2px solid #333;
	border-radius: 50%;
	position: relative;
	animation: down 1.5s infinite;
	-webkit-animation: down 1.5s infinite;
}
.scroll::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 11px;
  width: 11px;
  height: 11px;
  border-left: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(-45deg);
}

.wrapper-step5 .data-item label {
  font-size: 17px;
  cursor: pointer;
}
.wrapper-step5 .title {
	 display: flex;
	 align-items: center;
	 justify-content: space-between;
   white-space: inherit;
}
 .wrapper-step5 .title .hover-des-deli-speed {
	 width: 25px;
	 cursor: pointer;
}
 .wrapper-step5 .wrapper-content-deilvery {
	 display: grid;
	 grid-template-columns: 1fr 1fr 1fr;
	 grid-gap: 10px;
	 text-align: center;
}
 .wrapper-step5 .wrapper-content-deilvery .item-delivery {
	 border: 2px solid #ccc;
	 padding: 15px;
}
 .wrapper-step5 .wrapper-content-deilvery .item-delivery .data-item {
   font-size: 17px;
	 font-weight: bold;
	 color: #000;
	 cursor: pointer;
   text-transform: uppercase;
   font-family: 'Bebas Neue';
   font-style: normal;
   font-display: swap;
}
 .wrapper-step5 .wrapper-content-deilvery .item-delivery .data-item label {
	 color: blue;
   font-weight: bold;
}
 .wrapper-step5 .wrapper-content-deilvery .item-delivery .data-item .name {
	 color: #000;
	 display: block;
}
 .wrapper-step5 .wrapper-content-deilvery .item-delivery .data-item .price-delivery {
	 color: blue;
	 display: block;
}
 .wrapper-step5 .wrapper-content-deilvery .item-delivery.active-delivery {
	 border: 2px solid #11a769;
}
.beplus-accordion-step .toggle {
  position: relative;
}
.beplus-accordion-step .toggle>span {
  position: absolute;
  right: 45px;
  top: 10px;
}
.beplus-accordion-step .toggle>span img {
  width: 30px;
}

.price-retail {
  position: relative;
}
.price-retail::before {
  content: '';
  position: absolute;
  width: 106%;
  height: 2px;
  background: red;
  top: 51%;
  left: -3%;
}

/* START TOOLTIP STYLES */
[tooltip] {
  position: relative; /* opinion 1 */
}

/* Applies to all tooltips */
[tooltip]::before,
[tooltip]::after {
  text-transform: none; /* opinion 2 */
  font-size: .9em; /* opinion 3 */
  line-height: 1;
  user-select: none;
  pointer-events: none;
  position: absolute;
  display: none;
  opacity: 0;
}
[tooltip]::before {
  content: '';
  border: 5px solid transparent; /* opinion 4 */
  z-index: 1001; /* absurdity 1 */
}
[tooltip]::after {
  content: attr(tooltip);
  font-family: Helvetica, sans-serif;
  text-align: left;
  min-width: 3em;
  max-width: 300px;
  width: 300px !important;
  height: auto;
  text-overflow: ellipsis;
  padding: 1ch 1.5ch;
  border-radius: 0.3ch;
  box-shadow: 0 1em 2em -0.5em rgb(0 0 0 / 35%);
  background: #333;
  color: #fff;
  z-index: 1000;
  white-space: break-spaces;
  font-weight: 300;
  font-size: 16px;
}

/* 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: 100%;
  border-bottom-width: 0;
  border-top-color: #333;
}
[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::after {
  bottom: calc(100% + 5px);
}
[tooltip]:not([flow])::before,
[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::before,
[tooltip][flow^="up"]::after {
  left: 50%;
  transform: translate(-50%, -.5em);
}

/* FLOW: DOWN */
[tooltip][flow^="down"]::before {
  top: 100%;
  border-top-width: 0;
  border-bottom-color: #333;
}
[tooltip][flow^="down"]::after {
  top: calc(100% + 5px);
}
[tooltip][flow^="down"]::before,
[tooltip][flow^="down"]::after {
  left: 50%;
  transform: translate(-50%, .5em);
}

/* FLOW: LEFT */
[tooltip][flow^="left"]::before {
  top: 50%;
  border-right-width: 0;
  border-left-color: #333;
  left: calc(0em - 5px);
  transform: translate(-.5em, -50%);
}
[tooltip][flow^="left"]::after {
  top: 50%;
  right: calc(100% + 5px);
  transform: translate(-.5em, -50%);
}

/* FLOW: RIGHT */
[tooltip][flow^="right"]::before {
  top: 50%;
  border-left-width: 0;
  border-right-color: #333;
  right: calc(0em - 5px);
  transform: translate(.5em, -50%);
}
[tooltip][flow^="right"]::after {
  top: 50%;
  left: calc(100% + 5px);
  transform: translate(.5em, -50%);
}

/* KEYFRAMES */
@keyframes tooltips-vert {
  to {
    opacity: .9;
    transform: translate(-50%, 0);
  }
}

@keyframes tooltips-horz {
  to {
    opacity: .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;
}

@media(max-width:1023px) {
  .wrapper-step5 .wrapper-content-deilvery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px;
    text-align: center;
  }
  .wrapper-product-fabric-custom {
      grid-template-columns: 100% !important;
      grid-gap: 1% !important;
    }
    .wrapper-product-fabric-custom .image-wrapper-product {
        grid-template-columns: 1fr 1fr 1fr !important;
        grid-gap: 10px;
    }
}
@media(max-width:767px) {
  .single-product div.product .woocommerce-product-gallery {
    width: 100% !important;
    margin-right: 0 !important;
    float: none !important;
  }
}
@media(max-width:600px){
  .wrapper-step5 .wrapper-content-deilvery {
    grid-template-columns: 1fr;
    grid-gap: 15px;
  }
  .wrapper-product-fabric-custom {
      grid-template-columns: 100% !important;
      grid-gap: 1% !important;
    }
    .wrapper-product-fabric-custom .image-wrapper-product {
        grid-template-columns: 1fr 1fr 1fr !important;
        grid-gap: 10px;
    }
}


@keyframes down {
	0% {
		transform: translate(0);
	}
	20% {
		transform: translateY(15px);
	}
	40% {
		transform: translate(0);
	}
}



.notice-text-custom ul {
	margin:0;
	list-style:none;
}
.notice-text-custom ul li {
	  font-weight: 400;
}