<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*Popup*/
.shop-popup {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 999;
  opacity: 0;
	
}
.shop-popup.show {
  display: block;
  animation: opacityShow 0.4s ease forwards;
}
.shop-popup.hide {
  animation: opacityHide 0.4s ease forwards;
 	pointer-events:none;
/* 	z-index:-9 */
}
@keyframes opacityShow {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes opacityHide {
  0% {
    opacity: 1;
	  display:block;
  }
	99%{
		 opacity: 0;
		
	  display:block;
	}
  100% {
    opacity: 0;
    display: none;
  }
}
.shop-popup-inner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop-popup-form {
  width: 350px;
  height: auto;
  background-color: #fff;
  border-radius: 10px;
  position: relative;
  max-width: 96%;
}
.qr-popup-title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  margin-top: 50px;
}
.shop-popup-form-close {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
}
.shop-popup-qr-wrap {
  width: 340px;
  height: 340px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop-popup-qr {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.variant__nav {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
  padding: 0 15px;
}
.variant__nav .variant__item {
  width: 25%;
  padding: 0 5px;
  margin-bottom: 5px;
}
.variant__nav .variant__btn {
  font-size: 10px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 30px;
  width: 100%;
  background-color: #000;
  color: #fff;
padding: 0 5px;
    text-transform: none;
}
.variant__nav .variant__btn:hover,
.variant__nav .variant__btn.active_btn {
  color: rgb(255, 255, 255);
  background: rgb(246, 145, 30);
}
.variant__wrap .ar-container {
  display: none;
}
@media screen and (max-width:991px) {
  .variant__wrap .ar-container {
    display: flex;
  }
  .variant__wrap .shop-popup-qr {
    display: none;
  }
	.shop-popup-qr-wrap 
		{
			height:150px
		}
}

@media screen and (max-width:375px) {
	.variant__nav {
		padding:0 8px;
	}
}

.ar-container {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  width: 154px;
  height: 43px;
  color: #fff;
  padding: 0;
  margin: 0;
  margin-top: 20px;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.single_variation_wrap .ar-container{
	cursor:pointer;
}
.single_variation_wrap .ar-container *{
	pointer-events:none;
	
}

.ar-container::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 5px;
  padding: 2px;
  /*border: 1px solid rgba(0, 0, 0, 0.4);*/
  background: linear-gradient(135deg, #0062f6 0%, #0080f6 42.71%, #00bbf6 100%);

  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.ar-container .content {
  color: #0080f6;
  text-align: center;
  font-size: 10px;
  font-style: normal;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  margin-left: 35px;
  font-weight: 800;
  line-height: 24px; /* 60px */
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.top-circle,
.right-circle,
.left-circle {
  transform: absolute;
}

.ar-container .start {
  width: 43px;
  height: 43px;
  /*border-bottom-right-radius: 70px;*/
  /*border-top-right-radius: 70px;*/
  border-radius: 5px;
  /*background: #222426;*/
  background: linear-gradient(
    to right,
    #0062f6 0%,
    #0080f6 42.71%,
    #00bbf6 100%
  );
  background: -webkit-linear-gradient(
    to right,
    #0062f6 0%,
    #0080f6 42.71%,
    #00bbf6 100%
  );
}

.ar-container .start {
  position: relative;
}

.ar-container .start &gt; .animation-phone {
  animation-name: pulse;
  animation-iteration-count: infinite;
  animation-duration: 1.5s;
  background: transparent;
}

.ar-container .start &gt; .lines-start {
  position: absolute;
}

.ar-container.active .start {
  opacity: 0;
  transition: 0.5s, opacity 0s;
  -webkit-transition: 0.5s, opacity 0s;
}
.ar-container.active .scene {
  opacity: 100%;
  height: 43px;
  width: 100%;
  transition: 1s, opacity 0s;
  -webkit-transition: 1s, opacity 0s;
}
.ar-container.active .animation-container .scene .mobile-scene {
  position: absolute;
  animation-name: mobile;
  animation-fill-mode: both;
  animation-duration: 1.5s;
}

.ar-container.active .animation-container .group-lines {
  width: 80%;
  height: 50%;
  position: absolute;
  animation-name: downGroup;
  animation-fill-mode: both;
  animation-duration: 1s;
  animation-delay: 0.7s;
}

.ar-container.active .animation-container .scene .bg-lines {
  position: absolute;
  bottom: 9%;
  left: 40%;
  z-index: 2;
}

.ar-container.active .animation-container .scene .top-lines-l {
  position: absolute;
  animation-name: top-lines-l;
  animation-fill-mode: both;
  animation-duration: 1.2s;
  z-index: 3;
}

.ar-container.active .animation-container .scene .top-lines-r {
  position: absolute;
  animation-name: top-lines-r;
  animation-fill-mode: both;
  animation-duration: 1.2s;
  z-index: 3;
}

.ar-container.active .animation-container .scene .bottom-lines-l {
  position: absolute;
  animation-name: bottom-lines-l;
  animation-fill-mode: both;
  animation-duration: 1.2s;
  z-index: 3;
}

.ar-container.active .animation-container .scene .bottom-lines-r {
  position: absolute;
  animation-name: bottom-lines-r;
  animation-fill-mode: both;
  animation-duration: 1.2s;
  z-index: 3;
}

.ar-container.active .cubz-groups {
  width: 100%;
  position: absolute;
  animation-name: cubz-up-open;
  rotate: -20deg;
  transform: translateY(200%);
  transform: translateX(20%);
  animation-fill-mode: both;
  animation-duration: 1.1s;
  animation-delay: 1.5s;
  animation-timing-function: linear;
}

.ar-container.active .contianer-cubz {
  animation-name: flying;
  rotate: -20deg;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-delay: 3s;
  animation-timing-function: ease-out;
}

.ar-container.active .one-mobile {
  animation-name: vis;
  animation-duration: 0.1s;
  animation-fill-mode: both;
  animation-delay: 0.2s;
  /*display: none;*/
}
.two-mobile {
  transform: rotate(-289.5deg);
}

.ar-container.active .two-mobile {
  position: absolute;
  top: -3px;
  left: -25px;
  animation-name: hid;
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-delay: 0.1s;
}

.contianer-cubz {
  position: relative;
  width: 7px;
  height: 20px;
}

.contianer-cubz .left-cub {
  position: absolute;
  right: 4px;
  bottom: 0;

  animation-name: cub-left-toggle;
  animation-duration: 1600ms;
  animation-delay: 2.5s, 0.7s;
  animation-timing-function: linear;
  -webkit-animation-delay: 2.5s, 0.4s;
  -moz-animation-delay: 2.5s, 0.4s;
  -o-animation-delay: 2.5s, 0.4s;
}

.contianer-cubz .right-cub {
  position: absolute;
  right: 0;
  bottom: 0;

  animation-name: cub-right-toggle;
  animation-duration: 1600ms;
  animation-delay: 2.5s, 0.7s;
  animation-timing-function: linear;
  -webkit-animation-delay: 2.5s, 0.7s;
  -moz-animation-delay: 2.5s, 0.7s;
  -o-animation-delay: 2.5s, 0.7s;
}

.contianer-cubz .top-cub {
  position: absolute;
  bottom: 12%;
  right: 40%;

  animation-name: cub-top-toggle;
  animation-duration: 1600ms;
  animation-delay: 2.5s, 0.7s;
  animation-timing-function: linear;
  -webkit-animation-delay: 2.5s, 0.7s;
  -moz-animation-delay: 2.5s, 0.7s;
  -o-animation-delay: 2.5s, 0.7s;
}

.animation-container .scene .bottom-lines-r {
  position: absolute;
  animation-name: bottom-lines-r;
  animation-fill-mode: both;
  animation-duration: 1.5s;
}

.animation-container .scene {
  opacity: 0;
  border-radius: 2px;
  width: 50px;
  height: 50px;
  transition: 0.5s, opacity 0s;
  -webkit-transition: 0.5s, opacity 0s;
  background: var(
    --sh-grad,
    linear-gradient(135deg, #0062f6 0%, #0080f6 42.71%, #00bbf6 100%)
  );
  /*background: #222426;*/
}
.animation-container .start,
.animation-container .scene {
  position: absolute;
  left: 0;
  top: 0;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50%,
  60%,
  70% {
    transform: scale(1.07);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes flying {
  0% {
    right: -5%;
  }
  50% {
    right: 25%;
  }
  100% {
    right: -5%;
  }
}

@keyframes mobile {
  from {
    transform: rotate(0);
    left: 15%;
    top: 20%;
  }
  to {
    transform: rotate(-70deg);
    left: 42%;
    top: 30%;
  }
}
@keyframes top-lines-l {
  from {
    transform: rotate(0);
    left: 12%;
    top: 20%;
  }
  to {
    transform: rotate(-160deg);
    left: 38.5%;
    top: 15%;
  }
}

@keyframes top-lines-r {
  from {
    transform: rotate(0);
    left: 20%;
    top: 20%;
  }
  to {
    transform: rotate(-111deg);
    left: 51%;
    top: 10%;
  }
}

@keyframes bottom-lines-l {
  from {
    transform: rotate(0);
    left: 20%;
    top: 22%;
  }
  to {
    transform: rotate(-226deg);
    left: 44.5%;
    top: 30%;
  }
}

@keyframes bottom-lines-r {
  from {
    transform: rotate(100deg);
    left: 20%;
    top: 22%;
  }
  to {
    transform: rotate(-226deg);
    left: 48.5%;
    top: 30%;
  }
}

@keyframes downGroup {
  from {
    left: 10%;
    top: 0;
  }
  to {
    left: 11%;
    top: 31%;
  }
}

@keyframes cubz-up-open {
  0% {
    left: -80%;
    bottom: -22%;
  }
  50% {
    left: 103%;
    bottom: 10%;
  }
  100% {
    left: 103%;
    bottom: 10%;
  }
}

@keyframes cub-left-toggle {
  0% {
    right: 4px;
  }
  50% {
    right: 5.5px;
  }
  100% {
    right: 4px;
  }
}

@-webkit-keyframes cub-left-toggle {
  0% {
    right: 4px;
  }
  50% {
    right: 5.5px;
  }
  100% {
    right: 4px;
  }
}
@-moz-keyframes cub-left-toggle {
  0% {
    right: 4px;
  }
  50% {
    right: 5.5px;
  }
  100% {
    right: 4px;
  }
}

@-o-keyframes cub-left-toggle {
  0% {
    right: 4px;
  }
  50% {
    right: 5.5px;
  }
  100% {
    right: 4px;
  }
}

@keyframes cub-right-toggle {
  0% {
    right: 0;
  }
  50% {
    right: -10%;
  }
  100% {
    right: 0;
  }
}

@-webkit-keyframes cub-right-toggle {
  0% {
    right: 0;
  }
  50% {
    right: -10%;
  }
  100% {
    right: 0;
  }
}

@-moz-keyframes cub-right-toggle {
  0% {
    right: 0;
  }
  50% {
    right: -10%;
  }
  100% {
    right: 0;
  }
}

@-o-keyframes cub-right-toggle {
  0% {
    right: 0;
  }
  50% {
    right: -10%;
  }
  100% {
    right: 0;
  }
}

@keyframes cub-top-toggle {
  0% {
    bottom: 12%;
    right: 40%;
  }
  50% {
    bottom: 20%;
    right: 50%;
  }
  100% {
    bottom: 12%;
    right: 40%;
  }
}

@-moz-keyframes cub-top-toggle {
  0% {
    bottom: 12%;
    right: 40%;
  }
  50% {
    bottom: 20%;
    right: 50%;
  }
  100% {
    bottom: 12%;
    right: 40%;
  }
}
@-webkit-keyframes cub-top-toggle {
  0% {
    bottom: 12%;
    right: 40%;
  }
  50% {
    bottom: 20%;
    right: 50%;
  }
  100% {
    bottom: 12%;
    right: 40%;
  }
}

@-o-keyframes cub-top-toggle {
  0% {
    bottom: 12%;
    right: 40%;
  }
  50% {
    bottom: 20%;
    right: 50%;
  }
  100% {
    bottom: 12%;
    right: 40%;
  }
}

@keyframes hid {
  to {
    opacity: 100;
  }
  from {
    opacity: 0;
  }
}

@keyframes vis {
  to {
    opacity: 0;
  }
  from {
    opacity: 100;
  }
}
</pre></body></html>