.rounded-5 {
    border-radius: 1rem;
}

.main-card {
  perspective: 2000px;
  position: relative;
}

.main-card .card-content {
  transition: transform 1s;
  transform-style: preserve-3d;
}

.main-card.flipped .card-content {
  transform: rotateY(180deg);
  transition: transform 0.5s;
}

.main-card .card-front,
.main-card .card-back {
  backface-visibility: hidden;
}

.main-card .card-back {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  transform: rotateY(180deg);
}

.voucher-special .voucher-bg-2 {
  background-color: rgba(244, 69, 180, 1) !important;
  background-image: linear-gradient(90deg, rgba(244, 69, 180, 1) 0%, rgba(136, 0, 85, 1) 100%) !important;
}

.button-side {
  color: #222;
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 0;
  font-size: 18px;
}

.button-side:hover {
  color: #000;
}

.button-side .radio {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #222;
  display: flex;
  justify-content: center;
  align-items: center;
}

.button-side .radio:after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #000;
  opacity: 0;
  transition: ease 0.3s;
}

.button-side.active .radio:after {
  opacity: 1;
}

.voucher-gift {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: flex;
  justify-content: center; 
  cursor: pointer;
}

.voucher-gift img {
  animation: gift-trigger 3s ease infinite;
}

@keyframes gift-trigger {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.voucher-gift.open {
  pointer-events: none;
}

.voucher-gift.open img {
  opacity: 0;
  transform: scale(1.2);
  animation: none;
}

.voucher-gift img {
  width: 880px;
  object-fit: cover;
}




.gift-box {
  opacity: 0;
  transform: scale(0);
}

.gift-box.open {
  /* opacity: 1; */
  /* transform: scale(1); */
  animation: gift-appear 3s linear forwards;
}

@keyframes gift-appear {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  10% {
    opacity: 1;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.confetti {
  width: 440px;
  margin: 500px auto 0;
  text-align: center;
  padding: 10px 0;
  cursor: pointer;
  position: absolute;
  bottom: 4em;
  left: 50%;
  transform: translate(-50%);
  pointer-events: none;
}
.confetti p {
  position: absolute;
  display: block;
  left: 50%;
  bottom: 0;
  width: 5px;
  height: 8px;
  opacity: 0.8;
  margin: 0;
}
.confetti.animated p:nth-of-type(1) {
  transform: skewY(35deg) rotate(154deg) translate(78px, -1680px) scale(0.2);
  background: #ff3300;
  animation: 2s bang;
  animation-delay: 0.05s;
  bottom: 6px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(2) {
  transform: skewY(44deg) rotate(12deg) translate(73px, -385px) scale(0.3);
  background: #ff7b00;
  animation: 2s bang;
  animation-delay: 0.1s;
  bottom: 9px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(3) {
  transform: skewY(26deg) rotate(147deg) translate(65px, -2225px) scale(0.5);
  background: #ff0044;
  animation: 2s bang;
  animation-delay: 0.25s;
  bottom: 8px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(4) {
  transform: skewY(23deg) rotate(295deg) translate(74px, -60px) scale(0.1);
  background: #004dff;
  animation: 2s bang;
  animation-delay: 0.05s;
  bottom: 7px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(5) {
  transform: skewY(19deg) rotate(105deg) translate(32px, -100px) scale(0.4);
  background: #5eff00;
  animation: 2s bang;
  animation-delay: 0.05s;
  bottom: 5px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(6) {
  transform: skewY(24deg) rotate(73deg) translate(93px, -2200px) scale(0.5);
  background: #00ff2b;
  animation: 2s bang;
  animation-delay: 0.05s;
  bottom: 9px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(7) {
  transform: skewY(46deg) rotate(264deg) translate(61px, -550px) scale(0.3);
  background: #ff9d00;
  animation: 2s bang;
  animation-delay: 0.15s;
  bottom: 9px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(8) {
  transform: skewY(30deg) rotate(286deg) translate(39px, -2135px) scale(0.1);
  background: #009dff;
  animation: 2s bang;
  animation-delay: 0.2s;
  bottom: 4px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(9) {
  transform: skewY(4deg) rotate(274deg) translate(90px, -1040px) scale(0.5);
  background: #fb00ff;
  animation: 2s bang;
  animation-delay: 0.2s;
  bottom: 7px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(10) {
  transform: skewY(15deg) rotate(94deg) translate(62px, -1885px) scale(0.2);
  background: #7bff00;
  animation: 2s bang;
  animation-delay: 0.15s;
  bottom: 1px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(11) {
  transform: skewY(8deg) rotate(75deg) translate(78px, -1080px) scale(0.5);
  background: #00ff37;
  animation: 2s bang;
  animation-delay: 0.15s;
  bottom: 9px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(12) {
  transform: skewY(14deg) rotate(110deg) translate(100px, -690px) scale(0.5);
  background: #ff0033;
  animation: 2s bang;
  animation-delay: 0.25s;
  bottom: 8px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(13) {
  transform: skewY(37deg) rotate(26deg) translate(47px, -2465px) scale(0.2);
  background: #ff2b00;
  animation: 2s bang;
  animation-delay: 0.15s;
  bottom: 5px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(14) {
  transform: skewY(38deg) rotate(170deg) translate(43px, -1680px) scale(0.5);
  background: #00ff6f;
  animation: 2s bang;
  animation-delay: 0.15s;
  bottom: 10px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(15) {
  transform: skewY(38deg) rotate(12deg) translate(8px, -850px) scale(0.1);
  background: #f700ff;
  animation: 2s bang;
  animation-delay: 0.1s;
  bottom: 7px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(16) {
  transform: skewY(21deg) rotate(25deg) translate(12px, -350px) scale(0.1);
  background: #ff0062;
  animation: 2s bang;
  animation-delay: 0.2s;
  bottom: 6px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(17) {
  transform: skewY(8deg) rotate(206deg) translate(11px, -2320px) scale(0.1);
  background: #00eaff;
  animation: 2s bang;
  animation-delay: 0.1s;
  bottom: 5px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(18) {
  transform: skewY(48deg) rotate(11deg) translate(79px, -1360px) scale(0.3);
  background: #ffae00;
  animation: 2s bang;
  animation-delay: 0.1s;
  bottom: 2px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(19) {
  transform: skewY(50deg) rotate(271deg) translate(21px, -2155px) scale(0.5);
  background: #00ffc4;
  animation: 2s bang;
  animation-delay: 0.15s;
  bottom: 1px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(20) {
  transform: skewY(46deg) rotate(99deg) translate(62px, -1205px) scale(0.5);
  background: #0099ff;
  animation: 2s bang;
  animation-delay: 0.05s;
  bottom: 7px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(21) {
  transform: skewY(50deg) rotate(195deg) translate(64px, -850px) scale(0.2);
  background: #ff00ea;
  animation: 2s bang;
  animation-delay: 0.1s;
  bottom: 10px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(22) {
  transform: skewY(2deg) rotate(102deg) translate(54px, -2460px) scale(0.4);
  background: #00ff62;
  animation: 2s bang;
  animation-delay: 0.05s;
  bottom: 10px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(23) {
  transform: skewY(18deg) rotate(239deg) translate(51px, -935px) scale(0.5);
  background: #a2ff00;
  animation: 2s bang;
  animation-delay: 0.2s;
  bottom: 10px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(24) {
  transform: skewY(9deg) rotate(214deg) translate(50px, -2230px) scale(0.2);
  background: #f7ff00;
  animation: 2s bang;
  animation-delay: 0.15s;
  bottom: 5px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(25) {
  transform: skewY(44deg) rotate(9deg) translate(94px, -995px) scale(0.5);
  background: #00ff51;
  animation: 2s bang;
  animation-delay: 0.25s;
  bottom: 6px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(26) {
  transform: skewY(36deg) rotate(243deg) translate(34px, -775px) scale(0.4);
  background: #00fffb;
  animation: 2s bang;
  animation-delay: 0.2s;
  bottom: 7px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(27) {
  transform: skewY(5deg) rotate(120deg) translate(9px, -1125px) scale(0.1);
  background: #dd00ff;
  animation: 2s bang;
  animation-delay: 0.25s;
  bottom: 3px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(28) {
  transform: skewY(39deg) rotate(118deg) translate(40px, -885px) scale(0.4);
  background: #b7ff00;
  animation: 2s bang;
  animation-delay: 0.05s;
  bottom: 6px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(29) {
  transform: skewY(26deg) rotate(296deg) translate(18px, -20px) scale(0.3);
  background: #ff8400;
  animation: 2s bang;
  animation-delay: 0.2s;
  bottom: 7px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(30) {
  transform: skewY(8deg) rotate(205deg) translate(58px, -270px) scale(0.2);
  background: #0077ff;
  animation: 2s bang;
  animation-delay: 0.05s;
  bottom: 5px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(31) {
  transform: skewY(35deg) rotate(64deg) translate(68px, -1100px) scale(0.5);
  background: #00ff8c;
  animation: 2s bang;
  animation-delay: 0.1s;
  bottom: 7px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(32) {
  transform: skewY(36deg) rotate(196deg) translate(39px, -1985px) scale(0.3);
  background: #80ff00;
  animation: 2s bang;
  animation-delay: 0.05s;
  bottom: 5px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(33) {
  transform: skewY(41deg) rotate(139deg) translate(12px, -1935px) scale(0.1);
  background: #80ff00;
  animation: 2s bang;
  animation-delay: 0.15s;
  bottom: 6px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(34) {
  transform: skewY(5deg) rotate(44deg) translate(46px, -990px) scale(0.1);
  background: #00ffc4;
  animation: 2s bang;
  animation-delay: 0.15s;
  bottom: 10px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(35) {
  transform: skewY(39deg) rotate(109deg) translate(41px, -495px) scale(0.1);
  background: #00c4ff;
  animation: 2s bang;
  animation-delay: 0.05s;
  bottom: 3px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(36) {
  transform: skewY(18deg) rotate(112deg) translate(11px, -585px) scale(0.3);
  background: #fffb00;
  animation: 2s bang;
  animation-delay: 0.1s;
  bottom: 4px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(37) {
  transform: skewY(27deg) rotate(167deg) translate(54px, -2360px) scale(0.5);
  background: lime;
  animation: 2s bang;
  animation-delay: 0.05s;
  bottom: 1px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(38) {
  transform: skewY(23deg) rotate(312deg) translate(86px, -1935px) scale(0.3);
  background: #ff008c;
  animation: 2s bang;
  animation-delay: 0.15s;
  bottom: 8px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(39) {
  transform: skewY(44deg) rotate(130deg) translate(36px, -1195px) scale(0.1);
  background: #ff4d00;
  animation: 2s bang;
  animation-delay: 0.2s;
  bottom: 9px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(40) {
  transform: skewY(1deg) rotate(131deg) translate(22px, -1370px) scale(0.5);
  background: #0095ff;
  animation: 2s bang;
  animation-delay: 0.2s;
  bottom: 10px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(41) {
  transform: skewY(19deg) rotate(325deg) translate(56px, -1200px) scale(0.4);
  background: #ff8800;
  animation: 2s bang;
  animation-delay: 0.1s;
  bottom: 8px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(42) {
  transform: skewY(31deg) rotate(192deg) translate(12px, -740px) scale(0.3);
  background: #ff00d9;
  animation: 2s bang;
  animation-delay: 0.25s;
  bottom: 8px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(43) {
  transform: skewY(17deg) rotate(349deg) translate(44px, -955px) scale(0.2);
  background: #0040ff;
  animation: 2s bang;
  animation-delay: 0.25s;
  bottom: 9px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(44) {
  transform: skewY(13deg) rotate(245deg) translate(23px, -985px) scale(0.4);
  background: #ff00c4;
  animation: 2s bang;
  animation-delay: 0.1s;
  bottom: 6px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(45) {
  transform: skewY(4deg) rotate(330deg) translate(38px, -1265px) scale(0.4);
  background: #ff9100;
  animation: 2s bang;
  animation-delay: 0.1s;
  bottom: 3px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(46) {
  transform: skewY(46deg) rotate(53deg) translate(56px, -330px) scale(0.1);
  background: #ddff00;
  animation: 2s bang;
  animation-delay: 0.25s;
  bottom: 8px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(47) {
  transform: skewY(50deg) rotate(348deg) translate(96px, -1590px) scale(0.5);
  background: #00ff26;
  animation: 2s bang;
  animation-delay: 0.1s;
  bottom: 3px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(48) {
  transform: skewY(19deg) rotate(97deg) translate(61px, -810px) scale(0.3);
  background: darkorange;
  animation: 2s bang;
  animation-delay: 0.15s;
  bottom: 3px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(49) {
  transform: skewY(15deg) rotate(67deg) translate(65px, -800px) scale(0.1);
  background: #77ff00;
  animation: 2s bang;
  animation-delay: 0.25s;
  bottom: 7px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(50) {
  transform: skewY(42deg) rotate(239deg) translate(84px, -300px) scale(0.5);
  background: #11ff00;
  animation: 2s bang;
  animation-delay: 0.05s;
  bottom: 9px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(51) {
  transform: skewY(29deg) rotate(72deg) translate(48px, -60px) scale(0.5);
  background: #00ffaa;
  animation: 2s bang;
  animation-delay: 0.1s;
  bottom: 2px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(52) {
  transform: skewY(17deg) rotate(133deg) translate(84px, -135px) scale(0.5);
  background: #00ff1e;
  animation: 2s bang;
  animation-delay: 0.05s;
  bottom: 5px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(53) {
  transform: skewY(34deg) rotate(274deg) translate(7px, -455px) scale(0.5);
  background: #2f00ff;
  animation: 2s bang;
  animation-delay: 0.25s;
  bottom: 1px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(54) {
  transform: skewY(9deg) rotate(308deg) translate(46px, -15px) scale(0.4);
  background: #99ff00;
  animation: 2s bang;
  animation-delay: 0.2s;
  bottom: 10px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(55) {
  transform: skewY(25deg) rotate(242deg) translate(3px, -1770px) scale(0.5);
  background: #00ffe1;
  animation: 2s bang;
  animation-delay: 0.15s;
  bottom: 5px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(56) {
  transform: skewY(47deg) rotate(60deg) translate(11px, -1870px) scale(0.5);
  background: #00e6ff;
  animation: 2s bang;
  animation-delay: 0.25s;
  bottom: 8px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(57) {
  transform: skewY(22deg) rotate(154deg) translate(87px, -1210px) scale(0.3);
  background: #00f2ff;
  animation: 2s bang;
  animation-delay: 0.25s;
  bottom: 4px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(58) {
  transform: skewY(45deg) rotate(268deg) translate(82px, -1810px) scale(0.3);
  background: #aeff00;
  animation: 2s bang;
  animation-delay: 0.25s;
  bottom: 8px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(59) {
  transform: skewY(22deg) rotate(31deg) translate(48px, -1920px) scale(0.2);
  background: #ff00c8;
  animation: 2s bang;
  animation-delay: 0.2s;
  bottom: 10px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(60) {
  transform: skewY(10deg) rotate(218deg) translate(93px, -2025px) scale(0.4);
  background: #ff001e;
  animation: 2s bang;
  animation-delay: 0.2s;
  bottom: 7px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(61) {
  transform: skewY(46deg) rotate(59deg) translate(61px, -1970px) scale(0.4);
  background: #00ff09;
  animation: 2s bang;
  animation-delay: 0.15s;
  bottom: 4px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(62) {
  transform: skewY(2deg) rotate(180deg) translate(46px, -90px) scale(0.5);
  background: #ff3c00;
  animation: 2s bang;
  animation-delay: 0.2s;
  bottom: 7px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(63) {
  transform: skewY(40deg) rotate(239deg) translate(80px, -1440px) scale(0.4);
  background: #ffee00;
  animation: 2s bang;
  animation-delay: 0.15s;
  bottom: 7px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(64) {
  transform: skewY(28deg) rotate(20deg) translate(34px, -30px) scale(0.5);
  background: #d900ff;
  animation: 2s bang;
  animation-delay: 0.15s;
  bottom: 3px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(65) {
  transform: skewY(38deg) rotate(85deg) translate(5px, -2480px) scale(0.5);
  background: #88ff00;
  animation: 2s bang;
  animation-delay: 0.05s;
  bottom: 7px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(66) {
  transform: skewY(29deg) rotate(306deg) translate(96px, -930px) scale(0.2);
  background: #ffdd00;
  animation: 2s bang;
  animation-delay: 0.25s;
  bottom: 1px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(67) {
  transform: skewY(26deg) rotate(229deg) translate(40px, -2140px) scale(0.2);
  background: #5500ff;
  animation: 2s bang;
  animation-delay: 0.25s;
  bottom: 3px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(68) {
  transform: skewY(13deg) rotate(276deg) translate(29px, -1620px) scale(0.5);
  background: #ff00ee;
  animation: 2s bang;
  animation-delay: 0.2s;
  bottom: 4px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(69) {
  transform: skewY(12deg) rotate(113deg) translate(72px, -185px) scale(0.2);
  background: #00ffbf;
  animation: 2s bang;
  animation-delay: 0.1s;
  bottom: 7px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(70) {
  transform: skewY(16deg) rotate(157deg) translate(78px, -2385px) scale(0.3);
  background: #fb00ff;
  animation: 2s bang;
  animation-delay: 0.2s;
  bottom: 3px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(71) {
  transform: skewY(38deg) rotate(150deg) translate(44px, -580px) scale(0.2);
  background: #6a00ff;
  animation: 2s bang;
  animation-delay: 0.25s;
  bottom: 9px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(72) {
  transform: skewY(5deg) rotate(343deg) translate(45px, -2405px) scale(0.5);
  background: #a6ff00;
  animation: 2s bang;
  animation-delay: 0.25s;
  bottom: 4px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(73) {
  transform: skewY(26deg) rotate(99deg) translate(96px, -180px) scale(0.2);
  background: #6a00ff;
  animation: 2s bang;
  animation-delay: 0.05s;
  bottom: 1px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(74) {
  transform: skewY(5deg) rotate(323deg) translate(19px, -650px) scale(0.3);
  background: #fbff00;
  animation: 2s bang;
  animation-delay: 0.15s;
  bottom: 9px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(75) {
  transform: skewY(12deg) rotate(18deg) translate(91px, -1950px) scale(0.5);
  background: #ff000d;
  animation: 2s bang;
  animation-delay: 0.15s;
  bottom: 9px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(76) {
  transform: skewY(31deg) rotate(8deg) translate(97px, -2230px) scale(0.2);
  background: #ff9d00;
  animation: 2s bang;
  animation-delay: 0.05s;
  bottom: 7px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(77) {
  transform: skewY(34deg) rotate(156deg) translate(45px, -165px) scale(0.3);
  background: #bb00ff;
  animation: 2s bang;
  animation-delay: 0.25s;
  bottom: 3px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(78) {
  transform: skewY(48deg) rotate(134deg) translate(71px, -1330px) scale(0.2);
  background: #7bff00;
  animation: 2s bang;
  animation-delay: 0.1s;
  bottom: 3px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(79) {
  transform: skewY(42deg) rotate(129deg) translate(5px, -1230px) scale(0.3);
  background: #00ff7b;
  animation: 2s bang;
  animation-delay: 0.25s;
  bottom: 1px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(80) {
  transform: skewY(50deg) rotate(332deg) translate(73px, -1735px) scale(0.1);
  background: #00ffb3;
  animation: 2s bang;
  animation-delay: 0.15s;
  bottom: 2px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(81) {
  transform: skewY(42deg) rotate(155deg) translate(72px, -1500px) scale(0.3);
  background: #7b00ff;
  animation: 2s bang;
  animation-delay: 0.1s;
  bottom: 7px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(82) {
  transform: skewY(4deg) rotate(328deg) translate(91px, -2230px) scale(0.4);
  background: #ae00ff;
  animation: 2s bang;
  animation-delay: 0.15s;
  bottom: 6px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(83) {
  transform: skewY(10deg) rotate(25deg) translate(37px, -2240px) scale(0.2);
  background: #9dff00;
  animation: 2s bang;
  animation-delay: 0.2s;
  bottom: 9px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(84) {
  transform: skewY(17deg) rotate(342deg) translate(80px, -2465px) scale(0.2);
  background: #ff0080;
  animation: 2s bang;
  animation-delay: 0.1s;
  bottom: 4px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(85) {
  transform: skewY(43deg) rotate(137deg) translate(54px, -1760px) scale(0.5);
  background: #ff00d9;
  animation: 2s bang;
  animation-delay: 0.2s;
  bottom: 4px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(86) {
  transform: skewY(23deg) rotate(289deg) translate(43px, -1185px) scale(0.5);
  background: #51ff00;
  animation: 2s bang;
  animation-delay: 0.15s;
  bottom: 7px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(87) {
  transform: skewY(21deg) rotate(278deg) translate(95px, -1300px) scale(0.1);
  background: #ff0400;
  animation: 2s bang;
  animation-delay: 0.2s;
  bottom: 5px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(88) {
  transform: skewY(38deg) rotate(49deg) translate(43px, -845px) scale(0.3);
  background: #ff0099;
  animation: 2s bang;
  animation-delay: 0.05s;
  bottom: 2px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(89) {
  transform: skewY(34deg) rotate(26deg) translate(13px, -860px) scale(0.5);
  background: #00ff99;
  animation: 2s bang;
  animation-delay: 0.05s;
  bottom: 5px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(90) {
  transform: skewY(6deg) rotate(231deg) translate(1px, -2430px) scale(0.5);
  background: #26ff00;
  animation: 2s bang;
  animation-delay: 0.25s;
  bottom: 9px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(91) {
  transform: skewY(6deg) rotate(355deg) translate(51px, -1455px) scale(0.4);
  background: #1500ff;
  animation: 2s bang;
  animation-delay: 0.25s;
  bottom: 1px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(92) {
  transform: skewY(8deg) rotate(92deg) translate(95px, -2005px) scale(0.3);
  background: #04ff00;
  animation: 2s bang;
  animation-delay: 0.1s;
  bottom: 6px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(93) {
  transform: skewY(14deg) rotate(146deg) translate(20px, -1545px) scale(0.2);
  background: #00fffb;
  animation: 2s bang;
  animation-delay: 0.1s;
  bottom: 9px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(94) {
  transform: skewY(44deg) rotate(174deg) translate(81px, -1920px) scale(0.3);
  background: #001eff;
  animation: 2s bang;
  animation-delay: 0.05s;
  bottom: 2px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(95) {
  transform: skewY(11deg) rotate(323deg) translate(85px, -875px) scale(0.3);
  background: #ffbf00;
  animation: 2s bang;
  animation-delay: 0.2s;
  bottom: 4px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(96) {
  transform: skewY(5deg) rotate(317deg) translate(14px, -1505px) scale(0.4);
  background: #ff0004;
  animation: 2s bang;
  animation-delay: 0.2s;
  bottom: 2px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(97) {
  transform: skewY(46deg) rotate(302deg) translate(77px, -2180px) scale(0.3);
  background: #ff0091;
  animation: 2s bang;
  animation-delay: 0.1s;
  bottom: 3px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(98) {
  transform: skewY(17deg) rotate(111deg) translate(1px, -1680px) scale(0.2);
  background: #00ff37;
  animation: 2s bang;
  animation-delay: 0.05s;
  bottom: 10px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(99) {
  transform: skewY(50deg) rotate(350deg) translate(17px, -80px) scale(0.3);
  background: #00ff99;
  animation: 2s bang;
  animation-delay: 0.25s;
  bottom: 1px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(100) {
  transform: skewY(25deg) rotate(221deg) translate(52px, -1965px) scale(0.2);
  background: #001aff;
  animation: 2s bang;
  animation-delay: 0.2s;
  bottom: 7px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(101) {
  transform: skewY(38deg) rotate(108deg) translate(57px, -1205px) scale(0.3);
  background: #ff001a;
  animation: 2s bang;
  animation-delay: 0.15s;
  bottom: 8px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(102) {
  transform: skewY(20deg) rotate(57deg) translate(13px, -550px) scale(0.5);
  background: #7b00ff;
  animation: 2s bang;
  animation-delay: 0.2s;
  bottom: 2px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(103) {
  transform: skewY(21deg) rotate(182deg) translate(57px, -1030px) scale(0.4);
  background: #0011ff;
  animation: 2s bang;
  animation-delay: 0.1s;
  bottom: 4px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(104) {
  transform: skewY(17deg) rotate(51deg) translate(1px, -1450px) scale(0.4);
  background: #0059ff;
  animation: 2s bang;
  animation-delay: 0.05s;
  bottom: 2px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(105) {
  transform: skewY(18deg) rotate(83deg) translate(90px, -125px) scale(0.4);
  background: #a2ff00;
  animation: 2s bang;
  animation-delay: 0.2s;
  bottom: 6px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(106) {
  transform: skewY(46deg) rotate(336deg) translate(19px, -215px) scale(0.2);
  background: #ff005e;
  animation: 2s bang;
  animation-delay: 0.2s;
  bottom: 4px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(107) {
  transform: skewY(29deg) rotate(328deg) translate(28px, -1985px) scale(0.3);
  background: #c800ff;
  animation: 2s bang;
  animation-delay: 0.15s;
  bottom: 3px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(108) {
  transform: skewY(49deg) rotate(114deg) translate(3px, -2095px) scale(0.2);
  background: #5e00ff;
  animation: 2s bang;
  animation-delay: 0.2s;
  bottom: 7px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(109) {
  transform: skewY(3deg) rotate(109deg) translate(22px, -1505px) scale(0.3);
  background: #0011ff;
  animation: 2s bang;
  animation-delay: 0.25s;
  bottom: 9px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(110) {
  transform: skewY(25deg) rotate(238deg) translate(29px, -1015px) scale(0.3);
  background: #00ff6a;
  animation: 2s bang;
  animation-delay: 0.05s;
  bottom: 8px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(111) {
  transform: skewY(29deg) rotate(204deg) translate(97px, -2190px) scale(0.1);
  background: #00ff22;
  animation: 2s bang;
  animation-delay: 0.1s;
  bottom: 9px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(112) {
  transform: skewY(17deg) rotate(76deg) translate(25px, -810px) scale(0.3);
  background: #00ffcc;
  animation: 2s bang;
  animation-delay: 0.05s;
  bottom: 2px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(113) {
  transform: skewY(44deg) rotate(3deg) translate(29px, -735px) scale(0.4);
  background: #00ff6f;
  animation: 2s bang;
  animation-delay: 0.15s;
  bottom: 1px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(114) {
  transform: skewY(3deg) rotate(296deg) translate(55px, -1015px) scale(0.2);
  background: #0059ff;
  animation: 2s bang;
  animation-delay: 0.1s;
  bottom: 9px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(115) {
  transform: skewY(22deg) rotate(273deg) translate(53px, -465px) scale(0.3);
  background: #00ff09;
  animation: 2s bang;
  animation-delay: 0.25s;
  bottom: 2px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(116) {
  transform: skewY(20deg) rotate(14deg) translate(23px, -1425px) scale(0.4);
  background: #ff006a;
  animation: 2s bang;
  animation-delay: 0.05s;
  bottom: 3px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(117) {
  transform: skewY(32deg) rotate(74deg) translate(22px, -2010px) scale(0.5);
  background: #8800ff;
  animation: 2s bang;
  animation-delay: 0.15s;
  bottom: 2px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(118) {
  transform: skewY(22deg) rotate(240deg) translate(59px, -2090px) scale(0.3);
  background: #ff00e6;
  animation: 2s bang;
  animation-delay: 0.15s;
  bottom: 10px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(119) {
  transform: skewY(9deg) rotate(140deg) translate(21px, -895px) scale(0.5);
  background: #ff00aa;
  animation: 2s bang;
  animation-delay: 0.05s;
  bottom: 5px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(120) {
  transform: skewY(37deg) rotate(293deg) translate(15px, -285px) scale(0.1);
  background: #8800ff;
  animation: 2s bang;
  animation-delay: 0.2s;
  bottom: 2px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(121) {
  transform: skewY(9deg) rotate(338deg) translate(91px, -1285px) scale(0.5);
  background: #4000ff;
  animation: 2s bang;
  animation-delay: 0.25s;
  bottom: 1px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(122) {
  transform: skewY(42deg) rotate(208deg) translate(61px, -850px) scale(0.1);
  background: #00ff1a;
  animation: 2s bang;
  animation-delay: 0.25s;
  bottom: 3px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(123) {
  transform: skewY(9deg) rotate(30deg) translate(86px, -2410px) scale(0.2);
  background: #ff6f00;
  animation: 2s bang;
  animation-delay: 0.2s;
  bottom: 2px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(124) {
  transform: skewY(44deg) rotate(259deg) translate(19px, -1365px) scale(0.5);
  background: #00ffb3;
  animation: 2s bang;
  animation-delay: 0.2s;
  bottom: 8px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(125) {
  transform: skewY(49deg) rotate(54deg) translate(12px, -1820px) scale(0.1);
  background: #fff200;
  animation: 2s bang;
  animation-delay: 0.15s;
  bottom: 10px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(126) {
  transform: skewY(45deg) rotate(157deg) translate(42px, -1965px) scale(0.4);
  background: #ff8800;
  animation: 2s bang;
  animation-delay: 0.05s;
  bottom: 4px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(127) {
  transform: skewY(1deg) rotate(115deg) translate(75px, -1370px) scale(0.2);
  background: #00ff1e;
  animation: 2s bang;
  animation-delay: 0.2s;
  bottom: 1px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(128) {
  transform: skewY(2deg) rotate(305deg) translate(47px, -2150px) scale(0.1);
  background: #00ff51;
  animation: 2s bang;
  animation-delay: 0.15s;
  bottom: 5px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(129) {
  transform: skewY(20deg) rotate(120deg) translate(24px, -1855px) scale(0.4);
  background: #ff001a;
  animation: 2s bang;
  animation-delay: 0.05s;
  bottom: 7px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(130) {
  transform: skewY(8deg) rotate(193deg) translate(47px, -880px) scale(0.1);
  background: #ff0051;
  animation: 2s bang;
  animation-delay: 0.1s;
  bottom: 9px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(131) {
  transform: skewY(35deg) rotate(96deg) translate(11px, -1475px) scale(0.2);
  background: #f700ff;
  animation: 2s bang;
  animation-delay: 0.1s;
  bottom: 4px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(132) {
  transform: skewY(18deg) rotate(95deg) translate(38px, -2260px) scale(0.1);
  background: #4dff00;
  animation: 2s bang;
  animation-delay: 0.05s;
  bottom: 2px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(133) {
  transform: skewY(33deg) rotate(328deg) translate(42px, -1935px) scale(0.4);
  background: #0011ff;
  animation: 2s bang;
  animation-delay: 0.1s;
  bottom: 4px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(134) {
  transform: skewY(4deg) rotate(224deg) translate(79px, -1625px) scale(0.4);
  background: #ffe600;
  animation: 2s bang;
  animation-delay: 0.25s;
  bottom: 3px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(135) {
  transform: skewY(39deg) rotate(192deg) translate(73px, -2100px) scale(0.3);
  background: #ff6600;
  animation: 2s bang;
  animation-delay: 0.2s;
  bottom: 5px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(136) {
  transform: skewY(24deg) rotate(293deg) translate(86px, -450px) scale(0.3);
  background: #00ff11;
  animation: 2s bang;
  animation-delay: 0.1s;
  bottom: 10px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(137) {
  transform: skewY(11deg) rotate(179deg) translate(4px, -235px) scale(0.5);
  background: #e600ff;
  animation: 2s bang;
  animation-delay: 0.2s;
  bottom: 3px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(138) {
  transform: skewY(45deg) rotate(209deg) translate(38px, -2040px) scale(0.1);
  background: #00eaff;
  animation: 2s bang;
  animation-delay: 0.05s;
  bottom: 3px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(139) {
  transform: skewY(22deg) rotate(219deg) translate(26px, -155px) scale(0.1);
  background: #00ffd5;
  animation: 2s bang;
  animation-delay: 0.25s;
  bottom: 3px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(140) {
  transform: skewY(28deg) rotate(252deg) translate(39px, -370px) scale(0.4);
  background: #1aff00;
  animation: 2s bang;
  animation-delay: 0.15s;
  bottom: 2px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(141) {
  transform: skewY(9deg) rotate(71deg) translate(23px, -1050px) scale(0.3);
  background: #ff00e6;
  animation: 2s bang;
  animation-delay: 0.15s;
  bottom: 6px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(142) {
  transform: skewY(9deg) rotate(111deg) translate(19px, -2250px) scale(0.5);
  background: #fff700;
  animation: 2s bang;
  animation-delay: 0.1s;
  bottom: 6px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(143) {
  transform: skewY(36deg) rotate(162deg) translate(10px, -175px) scale(0.5);
  background: #0059ff;
  animation: 2s bang;
  animation-delay: 0.2s;
  bottom: 9px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(144) {
  transform: skewY(15deg) rotate(34deg) translate(14px, -1300px) scale(0.2);
  background: #00ff66;
  animation: 2s bang;
  animation-delay: 0.2s;
  bottom: 3px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(145) {
  transform: skewY(47deg) rotate(286deg) translate(58px, -1130px) scale(0.5);
  background: #ff5100;
  animation: 2s bang;
  animation-delay: 0.05s;
  bottom: 1px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(146) {
  transform: skewY(50deg) rotate(119deg) translate(59px, -740px) scale(0.1);
  background: #009dff;
  animation: 2s bang;
  animation-delay: 0.05s;
  bottom: 7px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(147) {
  transform: skewY(19deg) rotate(118deg) translate(40px, -1490px) scale(0.5);
  background: #fff700;
  animation: 2s bang;
  animation-delay: 0.25s;
  bottom: 6px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(148) {
  transform: skewY(2deg) rotate(22deg) translate(52px, -290px) scale(0.5);
  background: #66ff00;
  animation: 2s bang;
  animation-delay: 0.2s;
  bottom: 8px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(149) {
  transform: skewY(29deg) rotate(10deg) translate(91px, -1340px) scale(0.4);
  background: red;
  animation: 2s bang;
  animation-delay: 0.25s;
  bottom: 9px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(150) {
  transform: skewY(41deg) rotate(206deg) translate(75px, -100px) scale(0.1);
  background: #ff0d00;
  animation: 2s bang;
  animation-delay: 0.1s;
  bottom: 1px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(151) {
  transform: skewY(7deg) rotate(300deg) translate(81px, -835px) scale(0.3);
  background: #00ffd5;
  animation: 2s bang;
  animation-delay: 0.1s;
  bottom: 7px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(152) {
  transform: skewY(19deg) rotate(69deg) translate(68px, -200px) scale(0.1);
  background: #0004ff;
  animation: 2s bang;
  animation-delay: 0.25s;
  bottom: 6px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(153) {
  transform: skewY(23deg) rotate(22deg) translate(36px, -455px) scale(0.1);
  background: #003cff;
  animation: 2s bang;
  animation-delay: 0.05s;
  bottom: 4px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(154) {
  transform: skewY(5deg) rotate(145deg) translate(55px, -2220px) scale(0.1);
  background: #ff8800;
  animation: 2s bang;
  animation-delay: 0.2s;
  bottom: 10px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(155) {
  transform: skewY(36deg) rotate(94deg) translate(29px, -680px) scale(0.2);
  background: #ffd900;
  animation: 2s bang;
  animation-delay: 0.05s;
  bottom: 9px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(156) {
  transform: skewY(47deg) rotate(313deg) translate(67px, -2245px) scale(0.2);
  background: #ff1500;
  animation: 2s bang;
  animation-delay: 0.1s;
  bottom: 3px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(157) {
  transform: skewY(44deg) rotate(159deg) translate(26px, -1005px) scale(0.5);
  background: #e6ff00;
  animation: 2s bang;
  animation-delay: 0.05s;
  bottom: 4px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(158) {
  transform: skewY(44deg) rotate(130deg) translate(75px, -710px) scale(0.5);
  background: #ff00c8;
  animation: 2s bang;
  animation-delay: 0.05s;
  bottom: 1px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(159) {
  transform: skewY(47deg) rotate(319deg) translate(48px, -490px) scale(0.1);
  background: #ffbf00;
  animation: 2s bang;
  animation-delay: 0.1s;
  bottom: 2px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(160) {
  transform: skewY(7deg) rotate(319deg) translate(79px, -1340px) scale(0.4);
  background: #006fff;
  animation: 2s bang;
  animation-delay: 0.15s;
  bottom: 6px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(161) {
  transform: skewY(46deg) rotate(273deg) translate(70px, -1215px) scale(0.5);
  background: #ff9100;
  animation: 2s bang;
  animation-delay: 0.25s;
  bottom: 7px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(162) {
  transform: skewY(20deg) rotate(4deg) translate(97px, -1770px) scale(0.1);
  background: #6fff00;
  animation: 2s bang;
  animation-delay: 0.05s;
  bottom: 2px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(163) {
  transform: skewY(6deg) rotate(341deg) translate(88px, -2195px) scale(0.1);
  background: #00ff1e;
  animation: 2s bang;
  animation-delay: 0.2s;
  bottom: 9px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(164) {
  transform: skewY(17deg) rotate(72deg) translate(32px, -2165px) scale(0.5);
  background: #4d00ff;
  animation: 2s bang;
  animation-delay: 0.05s;
  bottom: 6px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(165) {
  transform: skewY(24deg) rotate(216deg) translate(28px, -130px) scale(0.1);
  background: #ffe600;
  animation: 2s bang;
  animation-delay: 0.1s;
  bottom: 7px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(166) {
  transform: skewY(21deg) rotate(152deg) translate(48px, -1015px) scale(0.2);
  background: #73ff00;
  animation: 2s bang;
  animation-delay: 0.25s;
  bottom: 7px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(167) {
  transform: skewY(24deg) rotate(119deg) translate(69px, -1145px) scale(0.2);
  background: #ff0033;
  animation: 2s bang;
  animation-delay: 0.05s;
  bottom: 7px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(168) {
  transform: skewY(16deg) rotate(123deg) translate(54px, -1510px) scale(0.5);
  background: #00ff0d;
  animation: 2s bang;
  animation-delay: 0.1s;
  bottom: 10px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(169) {
  transform: skewY(50deg) rotate(22deg) translate(18px, -735px) scale(0.3);
  background: #00ff6a;
  animation: 2s bang;
  animation-delay: 0.1s;
  bottom: 3px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(170) {
  transform: skewY(1deg) rotate(231deg) translate(28px, -2010px) scale(0.3);
  background: #cc00ff;
  animation: 2s bang;
  animation-delay: 0.1s;
  bottom: 6px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(171) {
  transform: skewY(33deg) rotate(68deg) translate(66px, -1745px) scale(0.2);
  background: #11ff00;
  animation: 2s bang;
  animation-delay: 0.05s;
  bottom: 4px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(172) {
  transform: skewY(11deg) rotate(176deg) translate(65px, -855px) scale(0.5);
  background: #00ccff;
  animation: 2s bang;
  animation-delay: 0.1s;
  bottom: 6px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(173) {
  transform: skewY(27deg) rotate(279deg) translate(84px, -960px) scale(0.5);
  background: #00ff8c;
  animation: 2s bang;
  animation-delay: 0.05s;
  bottom: 4px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(174) {
  transform: skewY(8deg) rotate(180deg) translate(59px, -550px) scale(0.5);
  background: #80ff00;
  animation: 2s bang;
  animation-delay: 0.05s;
  bottom: 4px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(175) {
  transform: skewY(18deg) rotate(116deg) translate(81px, -70px) scale(0.3);
  background: #ff1100;
  animation: 2s bang;
  animation-delay: 0.2s;
  bottom: 7px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(176) {
  transform: skewY(1deg) rotate(66deg) translate(50px, -2130px) scale(0.4);
  background: #0080ff;
  animation: 2s bang;
  animation-delay: 0.25s;
  bottom: 9px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(177) {
  transform: skewY(34deg) rotate(355deg) translate(18px, -850px) scale(0.2);
  background: #ff00bf;
  animation: 2s bang;
  animation-delay: 0.1s;
  bottom: 9px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(178) {
  transform: skewY(4deg) rotate(52deg) translate(96px, -1475px) scale(0.5);
  background: #2bff00;
  animation: 2s bang;
  animation-delay: 0.05s;
  bottom: 9px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(179) {
  transform: skewY(19deg) rotate(351deg) translate(4px, -1220px) scale(0.3);
  background: #00fbff;
  animation: 2s bang;
  animation-delay: 0.25s;
  bottom: 10px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(180) {
  transform: skewY(13deg) rotate(15deg) translate(74px, -2365px) scale(0.1);
  background: #00ff95;
  animation: 2s bang;
  animation-delay: 0.1s;
  bottom: 2px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(181) {
  transform: skewY(37deg) rotate(36deg) translate(20px, -2270px) scale(0.2);
  background: #00ff3c;
  animation: 2s bang;
  animation-delay: 0.05s;
  bottom: 6px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(182) {
  transform: skewY(12deg) rotate(245deg) translate(2px, -100px) scale(0.1);
  background: #a200ff;
  animation: 2s bang;
  animation-delay: 0.25s;
  bottom: 1px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(183) {
  transform: skewY(11deg) rotate(174deg) translate(51px, -1820px) scale(0.1);
  background: #dd00ff;
  animation: 2s bang;
  animation-delay: 0.25s;
  bottom: 6px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(184) {
  transform: skewY(20deg) rotate(174deg) translate(21px, -2165px) scale(0.1);
  background: aqua;
  animation: 2s bang;
  animation-delay: 0.25s;
  bottom: 5px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(185) {
  transform: skewY(14deg) rotate(279deg) translate(68px, -715px) scale(0.4);
  background: #4dff00;
  animation: 2s bang;
  animation-delay: 0.2s;
  bottom: 10px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(186) {
  transform: skewY(23deg) rotate(259deg) translate(54px, -2025px) scale(0.5);
  background: #7300ff;
  animation: 2s bang;
  animation-delay: 0.1s;
  bottom: 10px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(187) {
  transform: skewY(50deg) rotate(295deg) translate(44px, -1245px) scale(0.2);
  background: #f700ff;
  animation: 2s bang;
  animation-delay: 0.05s;
  bottom: 6px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(188) {
  transform: skewY(11deg) rotate(1deg) translate(44px, -125px) scale(0.4);
  background: #00e1ff;
  animation: 2s bang;
  animation-delay: 0.2s;
  bottom: 8px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(189) {
  transform: skewY(36deg) rotate(172deg) translate(16px, -1485px) scale(0.4);
  background: #1e00ff;
  animation: 2s bang;
  animation-delay: 0.05s;
  bottom: 10px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(190) {
  transform: skewY(24deg) rotate(56deg) translate(84px, -1640px) scale(0.1);
  background: aqua;
  animation: 2s bang;
  animation-delay: 0.1s;
  bottom: 9px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(191) {
  transform: skewY(14deg) rotate(297deg) translate(66px, -1115px) scale(0.5);
  background: #00ff33;
  animation: 2s bang;
  animation-delay: 0.2s;
  bottom: 5px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(192) {
  transform: skewY(12deg) rotate(79deg) translate(38px, -590px) scale(0.1);
  background: #c800ff;
  animation: 2s bang;
  animation-delay: 0.15s;
  bottom: 8px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(193) {
  transform: skewY(32deg) rotate(131deg) translate(4px, -2275px) scale(0.5);
  background: #ae00ff;
  animation: 2s bang;
  animation-delay: 0.2s;
  bottom: 5px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(194) {
  transform: skewY(42deg) rotate(360deg) translate(14px, -340px) scale(0.5);
  background: #ff0044;
  animation: 2s bang;
  animation-delay: 0.25s;
  bottom: 2px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(195) {
  transform: skewY(37deg) rotate(217deg) translate(54px, -45px) scale(0.4);
  background: #0062ff;
  animation: 2s bang;
  animation-delay: 0.1s;
  bottom: 7px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(196) {
  transform: skewY(13deg) rotate(34deg) translate(64px, -925px) scale(0.2);
  background: #00ff77;
  animation: 2s bang;
  animation-delay: 0.1s;
  bottom: 6px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(197) {
  transform: skewY(8deg) rotate(159deg) translate(26px, -1190px) scale(0.3);
  background: #55ff00;
  animation: 2s bang;
  animation-delay: 0.15s;
  bottom: 8px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(198) {
  transform: skewY(16deg) rotate(70deg) translate(21px, -1740px) scale(0.3);
  background: #d9ff00;
  animation: 2s bang;
  animation-delay: 0.2s;
  bottom: 8px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(199) {
  transform: skewY(24deg) rotate(115deg) translate(30px, -2185px) scale(0.4);
  background: #ff0400;
  animation: 2s bang;
  animation-delay: 0.25s;
  bottom: 10px;
  opacity: 0.3;
}
.confetti.animated p:nth-of-type(200) {
  transform: skewY(48deg) rotate(78deg) translate(88px, -640px) scale(0.3);
  background: #ffbb00;
  animation: 2s bang;
  animation-delay: 0.2s;
  bottom: 1px;
  opacity: 0.3;
}

@keyframes bang {
  from {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.voucher-shad {
    box-shadow: -10px 10px 40px rgba(0, 0, 0, 0.2);
}