.iox-bundle {
    background: #ff0000;
    color: #000;
    font-weight: 700;
    padding: 20px 20px 5px 20px;
    border-radius: 8px;
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    text-align: center;
    line-height: 1.1;
    justify-content: center;
}

.iox-bundle-text {
    font-size: 16px;
}

.iox-bundle-price {
    color: #000;
    font-size: 40px;
}

.iox-bundle-subtext {
    font-size: 10px;
}
.iox-bundle .whiz-upprice {
    font-size: 8px;
    color:#000;
}
#iox-product-bundles-checkout bdi{
    color:#fff;
}
.iox-bundle span.whiz-upprice-actual {
    color: #fff;
    font-weight: bold;
    font-size: 12px;
    line-height: 0.5;
    position: relative;
    top: 1.5px;
}
.bundledevices {
    width: 100%;
}
.iox-bundle span.whiz-upprice-actual {
    color: #000;
}
.bundlecheck::after {
    content: '\2713';
    position: absolute;
    top: 0;
    right: 0;
    background-color: green;
    color: white;
    font-size: 25px;
    width: 32px;
    border: 3px solid #fff;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
}
.iox-bundle .whiz-phonebrand {
    display: none;
}
.iox-bundle .whiz-phonespic {
    position: relative;
    max-width: unset;
    background: #ff0000;
    padding: 5px;
}
.iox-bundle img {
    border-radius: 10px;
}
.iox-bundle .whiz-phonespics {
    background: #ff0000;
    border-radius: 0 0 10px 10px;
    position: relative;
    padding-top: 10px;
}
.iox-bundle .whiz-phonespic {
    position: relative;
    max-width: unset;
    background: #ff0000;
    padding: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}
.iox-bundle .whiz-phonespics {
    background: #ff0000;
    border-radius: 0 0 10px 10px;
}
.iox-bundle .whiz-phonename {
    color: #fff;
    font-size: 12px;
    padding: 0;
    margin: 0;
    line-height: 1;
    padding-bottom: 5px;
}
.iox-bundle bdi {
    position: relative;
    z-index: 2;  /* Ensures text appears above fireworks */
}

.fireworks {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;  /* Fireworks are behind the text */
    overflow: hidden;
    pointer-events: none;  /* Prevent any interaction issues */
}

.firework {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #ff0;
    animation: firework-animation 2s ease-out infinite;
    opacity: 0;
}
canvas#canvas {
    height: unset;
    width: 150%;
    position: absolute;
    left: -25%;
    top: 0;
    pointer-events: none;
    transform: translate(-0%, -30%);
}

.iox-bundle-inner {
    position: relative;
}

@keyframes firework-animation {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
    }
    100% {
        transform: scale(0);
        opacity: 0;
    }
}