.box-upsell-content {
    margin-top: -2em;
}

/*TIMER + COUNTER*/
.offer-title {
    font-size: 1.5rem;
    font-weight: 600;
}

.offer-timer {
    color: red;
    font-weight: bold;
}

.underline {
    width: 200px;
    height: 3px;
    background-color: red;
    margin: 5px auto 0;
}

.status-line {
    font-size: 1rem;
    color: #333;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dot-live {
    width: 10px;
    height: 10px;
    background-color: #28c76f;
    border-radius: 50%;
    display: inline-block;
}

.animate-pulse {
    animation: pulse 1.2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.3);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.hourglass-icon {
    display: inline-block;
    transition: transform 0.3s ease;
}

/*MOBILE*/
@media (max-width: 768px) {
    .box-upsell-content {
        padding-top: 3.5em !important;
        padding-left: 1em !important;
        padding-right: 1em !important;
    }

    #copyb .products {
        margin-left: -1em !important;
        margin-right: -1em !important;
    }
}