/* Универсальный виджет таймера обратного отсчёта (классы .tc-*) — web-calculator.ru */
.tc-result { font-family: 'Unbounded', serif; color: #000; }
.tc-chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 16px; }
/* .calculator-wrapper-скоуп — чтобы перебить глобальное .calculator-wrapper button{width:100%;height:64px;...} */
.calculator-wrapper .tc-chip {
    width: auto; height: auto; flex: 0 0 auto; margin: 0; padding: 8px 14px;
    font-family: 'Unbounded', serif; font-size: 12px; line-height: 1; cursor: pointer;
    background: #fff; color: #000; border: 1px solid #000; border-radius: 999px; transition: .15s;
}
.calculator-wrapper .tc-chip:hover { background: #f1f1f1; }
.calculator-wrapper .tc-chip.is-active { background: #000; color: #fff; }
.tc-headline { font-size: 12px; opacity: .6; text-align: center; margin: 0 0 12px; line-height: 1.4; }
.tc-timer { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.tc-cell {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    border: 1px solid #000; border-radius: 12px; padding: 14px 4px;
}
.tc-num { font-size: 32px; font-weight: 700; line-height: 1; }
.tc-lbl { font-size: 10px; opacity: .55; margin-top: 6px; text-transform: lowercase; }
.tc-units { margin-top: 16px; border-top: 1px dashed #ddd; padding-top: 12px; }
.tc-units__title { font-size: 11px; opacity: .55; display: block; margin-bottom: 8px; }
.tc-units ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px 18px; }
.tc-units li { font-size: 12px; opacity: .85; }
.tc-units b { font-weight: 700; }
.table-scroll { overflow-x: auto; }
.tc-tbl { border-collapse: collapse; width: 100%; font-size: 14px; }
.tc-tbl th, .tc-tbl td { border: 1px solid #ddd; padding: 6px 10px; text-align: left; white-space: nowrap; }
.tc-tbl thead th { background: #f5f5f5; font-weight: 700; }
.tc-tbl td:first-child, .tc-tbl td:last-child { font-weight: 700; }
@media (max-width: 560px) {
    .tc-num { font-size: 24px; }
    .tc-timer { gap: 6px; }
    .tc-cell { padding: 12px 2px; border-radius: 10px; }
    .tc-tbl { font-size: 13px; }
}
