/**
 * Campaign Custom Stylesheet - Progoti Bazar
 * Extracted from inline styles in campaign.blade.php
 */

/* Style for selected product card */
.selected {
    border: 2px solid green;
}

.countdown-container {
    text-align: center;
}

.counter-card {
    border: 2px dotted white;
    border-radius: 15px;
    padding: 5px;
    background-color: transparent;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.counter-card div {
    font-size: 1.2em;
    font-weight: bolder;
    color: white;
}

.counter-card span {
    display: block;
    font-size: 0.8em;
    color: orange;
}

@keyframes colorAnimation {
    0% {
        color: pink;
    }
    33% {
        color: green;
    }
    66% {
        color: red;
    }
    100% {
        color: pink;
    }
}

.animated-heading {
    font-size: 2em;
    font-weight: bold;
    animation: colorAnimation 3s linear infinite;
}

.form_inn {
    padding: 10px;
}

@media (max-width: 992px) {
    .campro_inn,
    .cont_inner,
    .cont_num,
    .discount_inn {
        padding: 10px !important;
        width: 100%;
    }
    .discount_inn {
        margin: 10px 0 0 0;
    }
    .campro_inn h2 {
        font-size: 20px;
    }
}

.button-3d {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.button-3d:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.button-animated-border {
    position: relative;
    overflow: hidden;
    border: 3px solid white;
    border-radius: 10px;
    transition: color 0.3s ease;
    animation: border-animation 3s linear infinite;
}

@keyframes border-animation {
    0% {
        border-color: white;
        transform: scale(0.95);
    }
    25% {
        border-color: yellow;
        transform: scale(1);
    }
    50% {
        border-color: white;
        transform: scale(0.95);
    }
    75% {
        border-color: yellow;
        transform: scale(1);
    }
    100% {
        border-color: white;
        transform: scale(0.95);
    }
}

.button-animated-border:hover {
    color: #fff;
}
