/*** Voucher ***/
.tse-voucher {
    overflow: hidden;
}
.tse-voucher .tse-voucher__inner {
    padding: 30px;
    background-color: #ffffca;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tse-voucher .tse-voucher__item {
    padding: 0 20px;
}
.tse-voucher .tse-voucher__item h2 {
    font-size: 24px;
    margin: 0;
}
.tse-voucher .tse-voucher__item span.code {
    padding: 10px 20px;
    background-color: #000;
    color: #FFF;
    display: inline-block;
}
.tse-voucher .countdown__item {
    padding: 0 20px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid;
}
.tse-voucher .countdown__item:last-child {
    border-right: 0;
}
.tse-voucher .countdown__item span {
    font-family: var(--heading-font);
    font-size: 58px;
    font-weight: 300;
}
.tse-voucher .countdown__item strong {
    font-family: var(--header-nav-font);
    font-weight: 300;
}
@media (max-width:576px) {
    .tse-voucher .tse-voucher__item {
        padding: 10px 0;
    }
    .tse-voucher .tse-voucher__inner {
        padding: 30px 0;
    }
    .tse-voucher .countdown__item {
        padding: 0 10px;
    }
    .tse-voucher .countdown__item span {
        font-size: 28px;
    }
    .tse-voucher .tse-voucher__inner {
        flex-wrap: wrap;
        text-align: center;
    }
}