#hortia-countdown {

    display:flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 30px;

    background: #fffbf0;
    border: 1px solid #E2C64D;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 18px;
    margin-bottom: 30px;
    margin-top:-15px;
    animation: fadein 0.5s ease;
}

/* Countdown Icon */
.countdown_icon img {
    width: 40px;
    height: 40px;
    min-width:30px;
}
@media screen and (max-width:481px) {
    .countdown_icon img {
        width: 50px!important;
        height: 50px!important;
        min-width:50px!important;
    }
}

.countdown_title_label {
    transform: translateY(2px);
}

.countdown-title {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    font-weight: 500;
    font-size: 1.4em;
    line-height:100%;
}
/* deprecated - using image instead of svg*/
.countdown-title svg {
    width: 35px;
    height: 35px;
    fill:none;
    stroke: #333333;
    stroke-width: 4px;
}
@media screen and (max-width:481px) {
    .countdown-title span {
        font-size:120%!important;
    }
    .countdown-title svg {
        width: 25px!important;
        height: 25px!important;
        min-width:25px!important;
    }
}

.timer-text {
    font-weight: 500;
    font-size: 1.2em;
    transform: translateY(2px);
}
@media screen and (max-width:481px) {
    .timer-text {
        font-weight: 500;
        font-size: 1em;
        transform: translateX(60px);
        margin-top:-30px;
    }
    .countdown_title_label {
        transform: translateY(-10px);
    }
}
.timer-text .timer {
    font-weight: 700;
}

#hortia-countdown .refresh-text {
    font-weight: bold;
    color: #c38b00;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}


.entry-summary-items #hortia-countdown {
    margin-top:25px;
}
.entry-summary-items .countdown-title svg {
    width:25px;
    height:25px;
    stroke-width: 5px;
    margin-top:-3px;
}
.entry-summary-items .countdown-title {
    font-size:clamp(14px, 1.2vw, 16px);
    line-height:25px;
    font-weight:700;
    align-items:center;
    white-space: nowrap;
    gap:10px;
}
@media screen and (min-width:935px) {
    .entry-summary-items .timer-text {
        font-size:clamp(14px, 1.2vw, 16px);
        white-space: nowrap;
    }
}



/* Mobile */

@media screen and (max-width:480px) {
    #hortia-countdown {
        flex-direction: column;
        gap: 7px;
        font-size: 16px!important;
        align-items: flex-start;
    }
}