HTML
CSS
JS
Run
Processing your payment
Thank you for shopping at imw3.com
Your order has been placed successfully and is under process.
@import url(https://fonts.googleapis.com/css?family=Open+Sans); * { box-sizing: border-box; } body { margin: 0; font-family: "Open Sans"; border: 1px solid #efefef; height: 100vh; } .loader{ position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 300px; padding: 25px; text-align: center; } .card{ position: relative; } .card .card-body{ position: relative; background: linear-gradient(120deg, #032a97, #e91e63); width: 100px; height: 55px; border-radius: 6px; margin: 0 auto 30px; transform: rotate(333deg); animation: card 5s; } .card .card-body::before{ content: ""; position: absolute; left: -1px; right: -1px; bottom: 10px; background-color: #fff; height: 12px; } .card .card-swiper{ position: absolute; left: 50%; transform: translateX(-50%); z-index: 999; width: 150px; height: 25px; background-color: #fff; border: 2px solid #e91e63; border-bottom: 1px solid transparent; border-radius: 20px 20px 0px 0px; } h2{ margin-top: 90px; font-size: 16px; font-weight: 500; } .dot{ position: relative; display: flex; align-items: center; justify-content: center; gap: 5px; } .dot span{ display: inline-flex; width: 6px; height: 6px; background-color: #032a97; border-radius: 50%; } .thankyou{ background-color: #fff; position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 9999; padding: 25px; opacity: 0; animation: thankyou 5s; animation-delay: 4s; } .thankyou h3{ margin: 30px 0px 0px; font-size: 16px; } .thankyou p{ font-size: 13px; } .thankyou .success-icon span{ display: inline-flex; align-items: center; justify-content: center; width: 55px; height: 55px; border-radius: 50%; border: 2px solid #e91e63; color: #032a97; } .thankyou .success-icon span i{ display: inline-flex; align-items: center; justify-content: center; min-width: 39px; height: 39px; border-radius: 50%; border: 2px solid #032a97; } .thankyou .star{ position: absolute; animation: star 3s infinite; } .thankyou .star.s0{ top: 60px; left: 90px; } .thankyou .star.s1{ left: 90px; } .thankyou .star.s2{ left: 120px; top: 0px; } .thankyou .star.s3{ right: 120px; top: 0; } .thankyou .star.s4{ right: 90px; } .thankyou .star.s5{ right: 90px; top: 60px; } @keyframes card { 0% {top: 0px;} 10% {top: 55px; left: -60px;} 20% {top: 53px; transform: rotate(360deg);} 100% {top: 53px; left: 95px; transform: rotate(360deg);} } @keyframes thankyou { 0% {opacity: 0;} 18% {opacity: 1;} 100% {opacity: 1;} } @keyframes star { 0% {color:#8bc34a} 25% {color:#ff5722} 50% {color:#3f51b5} 100% {color:#e91e63} }
Press Ctrl+Space Key for Auto complete and Intelli Sense