/* Countdown Timer Styling */
.countdown-container {
    text-align: center;
    /* background: #E53935; */
    padding: 20px;
    color: #000;
}

#countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.countdown-box-days {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 15px;
    border-radius: 5px;
    margin: 0 5px;
}

.countdown-value-days{
    height: 120px;
    font-family: Roboto;
font-weight: 400;
font-size: 70px;
line-height: 100%;
letter-spacing: 0%;

}

.countdown-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    
}

.countdown-value {
    text-align: center;
    font-family: Roboto;
    font-weight: 400;
    font-size: 70px;
    letter-spacing: Blur/100;    
    background-color: white;
    border-radius: 5px;
    margin: 0 5px;
    width: 120px;
    height: 120px;
}

.countdown-label {
    font-family: Roboto;
font-weight: 400;
font-size: 20px;
line-height: 100%;
letter-spacing: 0%;
    margin-top: 20px;
}

.separator {
    font-size: 3rem;
    font-weight: bold;
    border-radius: 50%;
    margin: 0 5px;
    color: white;
}

/* Progress Bar Styling */
.progress-bar-container {
    position: relative;
    width: 80%;
    height: 56px;
    background: white;
    margin: 50px auto;
    border-radius: 100px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: black;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Roboto;
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;

}

.goal-amount {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-family: Roboto;
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;

}

@media (max-width: 480px) {
    #countdown {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }

    .countdown-value-days,
    .countdown-value {
        height: 70px;
        width: 70px;
        font-size: 40px;
    }

    .countdown-label {
        font-size: 14px;
    }

    .separator-img {
        visibility: hidden;
    }

    .progress-bar-container {
        width: 100%;
        height: 45px;
    }

    .progress-bar {
        font-size: 14px;
    }

    .goal-amount {
        font-size: 14px;
    }
}
