#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;
}
@media screen and (max-width:480px) {
    #hortia-countdown {
        flex-direction: column;
        gap: 7px;
        font-size: 16px;
    }
}

.countdown-title {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    font-weight: 500;
    font-size: 1.2em;
}
.countdown-title svg {
    width: 35px;
    height: 35px;
    fill:none;
    stroke: #333333;
    stroke-width: 4px;
}
@media screen and (max-width:480px) {
    .countdown-title span {
        font-size:120%!important;
    }
    .countdown-title svg {
        width: 25px!important;
        height: 25px!important;
    }
}

.timer-text {
    font-weight: 500;
    font-size: 1.2em;
}
.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;
}
.entry-summary-items .timer-text {
    font-size:clamp(14px, 1.2vw, 16px);
    white-space: nowrap;
}