/* Import custom font */
@import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&display=swap');

.page-container.blur {
    filter: blur(8px); /* Adjust the blur amount as needed */
}

.page-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
    z-index: 999; /* Ensure the overlay is above other content */
    display: none; /* Initially hidden */
}

.popupBox {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.popupBox__content {
    position: relative;
    width: 350px; /* Set a fixed width */
    background: #fff;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    transform-style: preserve-3d;
    transition: transform 0.5s;
    font-family: 'Kaushan Script', cursive; /* Apply custom font */
}

.popupBox__content.do-flip {
    transform: rotateY(180deg);
}

.back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transform: rotateY(180deg);
    background: #e7ffe0;
}

.popupBox__img {
    width: 100%; /* Ensure it fits within the content */
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 50px;
}

.at{
color: #de1c1c;

}

.popupBox__img img {
    width: 100%; /* Ensure the image fits the container */
    max-width: 300px; /* Prevent the image from being too large */
    height: auto;
    align-items:center;
    border-radius: 30px 30px 0 0; /* Rounded corners at the top */
}

.popupBox__contentTwo {
    padding: 20px; /* Added padding for spacing */
    display: flex;
    flex-direction: row; /* Inline text and icon */
    align-items: center;
    color: rgb(11, 0, 11); /* Text color set to red */
}

.pricing-price {
    display: flex;
    flex-direction: row; /* Inline text and icon */
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.p-icon {
    font-size: 3rem; /* Increased the size of the icon */
    margin-right: 10px; /* Added margin for spacing */
    animation: pulse 3s infinite; /* Pulsing animation for the icon */
    color: rgb(97, 101, 234);
}

.price-info {
    text-align: left; /* Left-aligned text */
}

.discounted-price1 {
  margin: 0 5px; /* Added margin for spacing */
  font-weight: bold;
  padding: 7px;
}

 .discounted-price2 {
    margin: 0 5px; /* Added margin for spacing */
    font-weight: bold;
    animation: pulse 2s infinite;
    color: #de1c1ce4;
}

.original-price {
  margin: 0 5px; /* Added margin for spacing */
  font-weight: bold;
  
}
 
/* .discounted-price .price{
  animation: pulse 3s infinite;
} */

/* Animation for text */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes strikeThrough {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

/* Apply animations */
.animated-text {
    animation: fadeInUp 1s ease-in-out;
}

.strikeout-offer {
    position: relative;
    display: inline-block;
    color: gray;
}

.strikeout-offer span::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: red;
    transform: rotate(-5deg);
    animation: strikeThrough 1s ease-in-out;
}

.close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #f3f3f3 url(https://www.pikpng.com/pngl/m/302-3024308_close-icon-png-x-png-icon-clipart.png);
    background-repeat: no-repeat;
    background-size: 10px;
    background-position: center;
    z-index: 10;
    cursor: pointer;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .popupBox__content {
        position: relative;
        width: 300px;
        height: auto;
        
    }

    .popupBox__img {
        width: 250px;
        transform: translateY(-5px);
    }

    .popupBox__contentTwo {
        height: auto;
        text-align: center;
        padding: 20px;
        padding-top: 0;
        flex-direction: column; /* Stack text and icon vertically */
    }

    /* .popupBox__img::before {
        content: "";
        position: absolute;
        width: 180px;
        height: 180px;
        background: #c3d9bd;
        border-radius: 50%;
    } */
    
    .close {
        top: 10px;
        right: 10px;
        background: #ffffff url(https://www.pikpng.com/pngl/m/302-3024308_close-icon-png-x-png-icon-clipart.png);
        background-repeat: no-repeat;
        background-size: 10px;
        background-position: center;
    }
}

.credit a {
    text-decoration: none;
    color: #887fff;
}

.credit {
    margin-top: 5px;
}
