/* =========================================================
   TIMES BANK v6.0 — UI REFRESH
   Òîëüêî âíåøíèé âèä. Ìåõàíèêà áàíêà íå çàòðàãèâàåòñÿ.
   ========================================================= */


/* =========================================================
   ÎÑÍÎÂÀ
   ========================================================= */

#times-bank-v60 {
    --tb-bg: #f5f4ef;
    --tb-card: rgba(255,255,255,.46);
    --tb-card-strong: rgba(255,255,255,.62);
    --tb-result: rgba(255,255,255,.42);

    --tb-text: #343832;
    --tb-muted: #737970;

    --tb-border: rgba(71,79,68,.16);
    --tb-border-soft: rgba(71,79,68,.11);

    --tb-accent: #7d8975;
    --tb-accent-dark: #687361;
    --tb-accent-soft: rgba(125,137,117,.14);

    --tb-success: #708672;
    --tb-warning: #9b8158;
    --tb-error: #9a5f5f;

    margin: 20px 0;
    padding: 28px 30px 30px;

    border: 1px solid var(--tb-border);
    border-radius: 20px;

    background: var(--tb-bg);
    color: var(--tb-text);

    box-shadow:
        0 8px 28px rgba(40,45,39,.05);

    line-height: 1.5;

    display: grid;

    grid-template-columns:
        minmax(0,1fr)
        minmax(390px,.9fr);

    grid-template-areas:
        "head overall"
        "status overall"
        "sections sections"
        "send send";

    column-gap: 34px;
}


#times-bank-v60 * {
    box-sizing: border-box;
}


#times-bank-v60 h3,
#times-bank-v60 h4,
#times-bank-v60 p {
    margin-top: 0;
}


/* =========================================================
   ØÀÏÊÀ
   ========================================================= */

#times-bank-v60 .tb-head {
    grid-area: head;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    min-width: 0;
    margin: 3px 0 0;
}


#times-bank-v60 .tb-title {
    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 31px;
    line-height: 1.1;

    font-weight: 400;
    letter-spacing: -.025em;

    text-transform: none;
}


#times-bank-v60 .tb-user {
    margin-top: 8px;

    color: var(--tb-muted);

    font-size: 11px;
    letter-spacing: .02em;
}

/* =========================================================
   ÑÒÀÒÓÑ / ÏÎÄÑÊÀÇÊÀ
   ========================================================= */

#times-bank-v60 .tb-status {
    grid-area: status;

    align-self: start;

    max-width: 470px;

    margin: 14px 0 0;
    padding: 14px 0 0;

    border: 0;
    border-top: 1px solid var(--tb-border);

    border-radius: 0;
    background: transparent;

    color: var(--tb-muted);

    font-size: 11px;
    line-height: 1.65;
    font-weight: 400;
}


/* =========================================================
   ÁÀËÀÍÑ
   ========================================================= */

#times-bank-v60 .tb-overall {
    grid-area: overall;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0,1fr));

    align-self: start;

    gap: 0;

    margin: 0;

    border: 1px solid var(--tb-border);
    border-radius: 13px;

    background: var(--tb-card-strong);

    overflow: hidden;
}


#times-bank-v60 .tb-summary-card {
    position: relative;

    min-width: 0;

    padding: 17px 10px 16px;

    border: 0;
    border-radius: 0;

    background: transparent;

    text-align: center;
}


#times-bank-v60 .tb-summary-card + .tb-summary-card {
    border-left:
        1px solid
        var(--tb-border);
}


#times-bank-v60 .tb-summary-label {
    display: block;

    min-height: 14px;
    margin-bottom: 7px;

    color: var(--tb-muted);

    font-size: 8px;
    line-height: 1.25;

    text-transform: uppercase;
    letter-spacing: .08em;

    opacity: 1;
}


#times-bank-v60 .tb-summary-value {
    display: block;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 25px;
    line-height: 1;

    font-weight: 400;

    white-space: nowrap;
}


#times-bank-v60
.tb-summary-card:nth-child(2)
.tb-summary-value {
    color: var(--tb-success);
}


/* =========================================================
   ÑÅÊÖÈÈ
   ========================================================= */

#times-bank-v60 .tb-sections {
    grid-area: sections;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0,1fr));

    gap: 14px;

    margin-top: 31px;
}


#times-bank-v60 .tb-sections::before {
    content: "ÒÀÐÈÔÛ È ÍÀ×ÈÑËÅÍÈß";

    grid-column: 1 / -1;

    display: block;

    margin-bottom: 1px;
    padding-bottom: 12px;

    border-bottom:
        1px solid
        var(--tb-border);

    color: var(--tb-muted);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: .27em;
}


/* =========================================================
   ÊÀÐÒÎ×ÊÈ
   ========================================================= */

#times-bank-v60 .tb-section {
    position: relative;

    min-width: 0;

    padding: 20px 20px 18px;

    border:
        1px solid
        var(--tb-border);

    border-radius: 13px;

    background:
        var(--tb-card);

    box-shadow:
        0 3px 12px
        rgba(50,55,48,.025);
}


#times-bank-v60 .tb-section-head {
    display: flex;

    align-items: center;
    justify-content: flex-start;

    gap: 11px;

    margin-bottom: 16px;
}


/* äåêîðàòèâíûé êðóæîê */

#times-bank-v60 .tb-section-head::before {
    content: "";

    flex:
        0
        0
        34px;

    width: 34px;
    height: 34px;

    border-radius: 50%;

    background-color:
        var(--tb-accent-soft);

    background-position:
        center;

    background-repeat:
        no-repeat;

    background-size:
        18px 18px;
}


/* ÏÎÑÒÛ — ïåðî */

#times-bank-v60
.tb-section[data-section="posts"]
.tb-section-head::before {
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19.5 3.5c-4.7.2-8.7 2.2-11.2 5.8-1.8 2.5-2.3 5.1-2.4 7.2l-2.2 2.2 1.2 1.2 2.2-2.2c2-.1 4.6-.6 7.1-2.4 3.6-2.6 5.5-6.6 5.7-11.3l-.4-.5Z' fill='none' stroke='%237d8975' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6.8 17.2 16 8' fill='none' stroke='%237d8975' stroke-width='1.7' stroke-linecap='round'/%3E%3C/svg%3E");
}


/* ÀÊÒÈÂÍÎÑÒÜ — ñîîáùåíèÿ */

#times-bank-v60
.tb-section[data-section="activity"]
.tb-section-head::before {
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 5.5h11a3 3 0 0 1 3 3v4a3 3 0 0 1-3 3H9l-4.5 3 .9-3H4a3 3 0 0 1-3-3v-4a3 3 0 0 1 3-3Z' transform='translate(2 0)' fill='none' stroke='%237d8975' stroke-width='1.7' stroke-linejoin='round'/%3E%3Cpath d='M8 10h.01M12 10h.01M16 10h.01' stroke='%237d8975' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E");
}


/* ÐÅÊËÀÌÀ — ìåãàôîí */

#times-bank-v60
.tb-section[data-section="advertising"]
.tb-section-head::before {
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m4 11 12-5v12L4 13v-2Z' fill='none' stroke='%237d8975' stroke-width='1.7' stroke-linejoin='round'/%3E%3Cpath d='M7 14.3 8.5 19h3L10 15.5' fill='none' stroke='%237d8975' stroke-width='1.7' stroke-linejoin='round'/%3E%3Cpath d='M18 9v6' stroke='%237d8975' stroke-width='1.7' stroke-linecap='round'/%3E%3C/svg%3E");
}


/* ÂÐÅÌß — ÷àñû */

#times-bank-v60
.tb-section[data-section="time"]
.tb-section-head::before {
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='8' fill='none' stroke='%237d8975' stroke-width='1.7'/%3E%3Cpath d='M12 7.5V12l3 2' fill='none' stroke='%237d8975' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}


#times-bank-v60 .tb-section-title {
    min-width: 0;

    color: var(--tb-text);

    font-size: 12px;
    line-height: 1.3;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .055em;
}


/* ñòàðûé ÿðëûê — íà ñëó÷àé åñëè ãäå-òî îñòàëñÿ */

#times-bank-v60 .tb-section-total {
    display: none;
}


/* =========================================================
   ÒÀÐÈÔÛ
   ========================================================= */

#times-bank-v60 .tb-rates {
    display: grid;

    grid-template-columns: 1fr;

    gap: 0;

    margin: 0 0 17px;

    font-size: 10.5px;
}


#times-bank-v60 .tb-rate {
    display: grid;

    grid-template-columns:
        minmax(0,1fr)
        auto;

    gap: 12px;

    align-items: center;

    min-height: 34px;

    padding: 8px 0;

    border-bottom:
        1px solid
        var(--tb-border-soft);

    color: var(--tb-muted);
}


/*
 * Öåíà ñïðàâà.
 * ÍÈÊÀÊÈÕ ÖÂÅÒÍÛÕ ÏËÀØÅÊ.
 */

#times-bank-v60 .tb-rate-money {
    grid-column: 2;
    grid-row: 1;

    flex: none;

    min-width: 0;

    padding: 0;

    border: 0;
    border-radius: 0;

    background: transparent;
    color: var(--tb-text);

    text-align: right;

    font-size: 10.5px;
    font-weight: 700;

    white-space: nowrap;
}


/*
 * Â èñõîäíîé ðàçìåòêå öåíà èä¸ò ïåðâîé.
 * CSS âèçóàëüíî ïåðåñòàâëÿåò îïèñàíèå íàëåâî.
 */

#times-bank-v60 .tb-rate > span:not(.tb-rate-money) {
    grid-column: 1;
    grid-row: 1;

    min-width: 0;
}


/* =========================================================
   ÊÍÎÏÊÈ
   ========================================================= */

#times-bank-v60 button,
.times-bank-modal button {
    cursor: pointer;

    border:
        1px solid
        var(--tb-accent-dark);

    border-radius: 6px;

    background:
        var(--tb-accent);

    color: #fff;

    font: inherit;

    font-size: 9px;
    font-weight: 600;

    letter-spacing: .04em;

    text-transform: uppercase;

    transition:
        filter .16s ease,
        transform .16s ease,
        opacity .16s ease;
}


#times-bank-v60 button:hover:not(:disabled),
.times-bank-modal button:hover:not(:disabled) {
    filter:
        brightness(.94);

    transform:
        translateY(-1px);
}


#times-bank-v60 button:disabled,
.times-bank-modal button:disabled {
    cursor: default;

    opacity: .42;

    transform: none;
}


#times-bank-v60 .tb-calc-row {
    margin: 0;

    text-align: stretch;
}


#times-bank-v60 .tb-calc-row button {
    width: 100%;

    padding: 9px 14px;
}


/* çàãðóçêà / ãîòîâî */

#times-bank-v60 .tb-button-loading::before,
#times-bank-v60 .tb-button-done::before {
    content: "";

    display: inline-block;

    width: 11px;
    height: 11px;

    margin-right: 6px;

    vertical-align: -1px;

    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}


#times-bank-v60 .tb-button-loading::before {
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='9' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-dasharray='42 16'/%3E%3C/svg%3E");

    animation:
        times-bank-spin
        1s
        linear
        infinite;
}


#times-bank-v60 .tb-button-done::before {
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12.5l4.2 4.2L19 7' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}


@keyframes times-bank-spin {
    to {
        transform:
            rotate(360deg);
    }
}


/* =========================================================
   ÐÅÇÓËÜÒÀÒÛ ÐÀÑ×¨ÒÀ
   ========================================================= */

#times-bank-v60 .tb-result {
    margin-top: 14px;
    padding: 12px 0 0;

    border-top:
        1px solid
        var(--tb-border);

    border-radius: 0;

    background: transparent;

    font-size: 10px;
}


#times-bank-v60 .tb-result-empty {
    padding: 3px 0 0;

    color: var(--tb-muted);

    text-align: center;

    opacity: .72;
}


#times-bank-v60 table {
    width: 100%;

    border-collapse: collapse;

    margin: 7px 0 11px;

    font-size: 10px;
}


#times-bank-v60 th,
#times-bank-v60 td {
    padding: 6px 5px;

    border-bottom:
        1px solid
        var(--tb-border-soft);

    text-align: left;
    vertical-align: top;
}


#times-bank-v60 .tb-result-summary {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0,1fr));

    gap: 6px;

    margin-top: 10px;
}


#times-bank-v60 .tb-mini {
    padding: 8px 6px;

    border:
        1px solid
        var(--tb-border-soft);

    border-radius: 7px;

    background:
        var(--tb-result);

    text-align: center;
}


#times-bank-v60 .tb-mini span {
    display: block;

    color: var(--tb-muted);

    font-size: 7.5px;

    text-transform: uppercase;

    letter-spacing: .045em;

    opacity: 1;
}


#times-bank-v60 .tb-mini strong {
    display: block;

    margin-top: 3px;

    font-size: 12px;
}


/* =========================================================
   ÈÃÐÎÂÛÅ ÏÎÑÒÛ
   ========================================================= */

#times-bank-v60 .tb-posts-details {
    margin-top: 12px;
}


#times-bank-v60 .tb-posts-details summary,
#times-bank-v60 .tb-diagnostics summary {
    padding: 5px 0;
}


#times-bank-v60 .tb-posts-list {
    margin-top: 8px;

    border-top:
        1px solid
        var(--tb-border-soft);
}


#times-bank-v60 .tb-post-row {
    display: grid;

    grid-template-columns:
        minmax(0,1fr)
        auto
        auto;

    gap: 12px;

    align-items: center;

    padding: 8px 3px;

    border-bottom:
        1px solid
        var(--tb-border-soft);

    font-size: 9.5px;
}


#times-bank-v60 .tb-post-title {
    min-width: 0;

    overflow: hidden;

    color: inherit;

    text-overflow: ellipsis;

    white-space: nowrap;

    font-weight: 600;

    text-decoration: none;
}


#times-bank-v60 .tb-post-title:hover {
    text-decoration: underline;
}


#times-bank-v60 .tb-post-chars {
    color: var(--tb-muted);

    white-space: nowrap;
}


#times-bank-v60 .tb-post-money {
    min-width: 48px;

    white-space: nowrap;

    text-align: right;

    font-weight: 700;
}


/* =========================================================
   ÇÎÍÀ ÂÛÏËÀÒÛ
   ========================================================= */

#times-bank-v60 .tb-send-zone {
    grid-area: send;

    position: relative;

    display: grid;

    grid-template-columns:
        minmax(180px,260px)
        minmax(0,1fr);

    align-items: center;

    gap: 18px;

    margin-top: 15px;
    padding: 18px 20px;

    border:
        1px solid
        var(--tb-border);

    border-radius: 13px;

    background:
        var(--tb-card-strong);

    text-align: left;
}


#times-bank-v60 .tb-send-zone button {
    width: 100%;
    min-width: 0;

    padding: 11px 18px;

    font-size: 9.5px;
}


#times-bank-v60 .tb-note {
    margin: 0;

    color: var(--tb-muted);

    font-size: 9.5px;
    line-height: 1.55;

    opacity: 1;
}


/* =========================================================
   ÑÎÎÁÙÅÍÈß / ÑÎÑÒÎßÍÈß
   ========================================================= */

#times-bank-v60 .tb-message {
    margin: 12px 0;
    padding: 10px 12px;

    border-radius: 8px;
}


#times-bank-v60 .tb-success {
    border:
        1px solid
        rgba(91,122,94,.25);

    background:
        rgba(111,139,113,.09);
}


#times-bank-v60 .tb-warning {
    border:
        1px solid
        rgba(154,126,81,.25);

    background:
        rgba(170,137,83,.08);
}


#times-bank-v60 .tb-error {
    border:
        1px solid
        rgba(154,95,95,.25);

    background:
        rgba(154,95,95,.08);

    color:
        #8f5454;

    white-space:
        pre-wrap;
}


#times-bank-v60 .tb-receipt {
    margin-top: 12px;
    padding: 13px;

    border:
        1px dashed
        var(--tb-border);

    border-radius: 8px;

    background:
        var(--tb-card);

    text-align: left;

    white-space: pre-wrap;
    word-break: break-word;

    font-family: monospace;

    font-size: 10px;
}


#times-bank-v60 details {
    margin-top: 9px;
}


#times-bank-v60 summary {
    cursor: pointer;

    font-weight: 600;
}


/* =========================================================
   ÄÈÀÃÍÎÑÒÈÊÀ
   ========================================================= */

#times-bank-v60 .tb-diagnostics {
    display: none !important;

    margin-top: 10px;

    opacity: .7;
}


.times-admin
#times-bank-v60
.tb-diagnostics {
    display: block !important;
}


#times-bank-v60 .tb-diagnostics pre {
    overflow-x: auto;

    font-size: 9px;
}


/* =========================================================
   ÑËÓÆÅÁÍÛÅ ÝËÅÌÅÍÒÛ
   ========================================================= */

.times-bank-service-frame {
    position: fixed !important;

    left: -10000px !important;
    top: -10000px !important;

    width: 10px !important;
    height: 10px !important;

    opacity: 0 !important;

    pointer-events: none !important;

    border: 0 !important;
}


.times-bank-user-mode
.times-bank-hidden-control {
    display: none !important;
}


/* =========================================================
   ÌÎÄÀËÜÍÎÅ ÎÊÍÎ
   ========================================================= */

.times-bank-modal {
    --tb-accent: #7d8975;

    position: fixed;

    z-index: 2147483000;

    inset: 0;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 20px;

    background:
        rgba(29,31,27,.58);
}


.times-bank-modal.is-open {
    display: flex;
}


.times-bank-modal-card {
    width:
        min(520px,100%);

    max-height:
        calc(100vh - 40px);

    overflow: auto;

    padding: 24px;

    border:
        1px solid
        rgba(71,79,68,.17);

    border-radius: 14px;

    background:
        #f5f4ef;

    color:
        #343832;

    box-shadow:
        0 18px 55px
        rgba(0,0,0,.28);

    line-height: 1.5;
}


.times-bank-modal-card h3 {
    margin: 0 0 10px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 23px;

    font-weight: 400;
}


.times-bank-modal-warning {
    margin: 12px 0 17px;
    padding: 10px 12px;

    border:
        1px solid
        rgba(154,126,81,.25);

    border-radius: 8px;

    background:
        rgba(170,137,83,.08);

    font-size: 11px;
    font-weight: 600;
}


.times-bank-modal-steps {
    margin: 0;
    padding: 0;

    list-style: none;
}


.times-bank-modal-steps li {
    position: relative;

    padding:
        5px
        0
        5px
        25px;

    font-size: 11px;
}


/* îæèäàåò */

.times-bank-modal-steps li::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 14px;
    height: 14px;

    transform:
        translateY(-50%);

    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='8' fill='none' stroke='%23949b91' stroke-width='2.5'/%3E%3C/svg%3E");

    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}


/* âûïîëíÿåòñÿ */

.times-bank-modal-steps li.is-running::before {
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='8' fill='none' stroke='%237d8975' stroke-width='2.5' stroke-linecap='round' stroke-dasharray='30 20'/%3E%3C/svg%3E");

    animation:
        times-bank-modal-spin
        1s
        linear
        infinite;
}


/* âûïîëíåíî */

.times-bank-modal-steps li.is-done::before {
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12.5l4.2 4.2L19 7' fill='none' stroke='%237d8975' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");

    animation:
        none;
}


/* îøèáêà */

.times-bank-modal-steps li.is-error::before {
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 7l10 10M17 7L7 17' fill='none' stroke='%239a5f5f' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");

    animation:
        none;
}


@keyframes times-bank-modal-spin {

    from {
        transform:
            translateY(-50%)
            rotate(0deg);
    }

    to {
        transform:
            translateY(-50%)
            rotate(360deg);
    }
}


.times-bank-modal-detail {
    margin-top: 15px;
    padding-top: 12px;

    border-top:
        1px solid
        rgba(71,79,68,.14);

    white-space: pre-wrap;

    word-break: break-word;

    font-size: 11px;
}


.times-bank-balance-arrow {
    display: inline-block;

    width: 14px;
    height: 10px;

    margin:
        0
        3px;

    vertical-align:
        -1px;

    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 12'%3E%3Cpath d='M1 6h16M13 2l4 4-4 4' fill='none' stroke='%237d8975' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");

    background-position: center;

    background-repeat: no-repeat;

    background-size: contain;
}


#times-bank-modal-close {
    display: none;

    margin-top: 15px;

    padding: 8px 16px;
}


#times-bank-modal-close.is-visible {
    display: inline-block;
}


/* =========================================================
   ÏËÀÍØÅÒ
   ========================================================= */

@media (max-width: 900px) {

    #times-bank-v60 {
        grid-template-columns:
            minmax(0,1fr);

        grid-template-areas:
            "head"
            "overall"
            "status"
            "sections"
            "send";

        row-gap: 0;
    }


    #times-bank-v60 .tb-overall {
        margin-top: 20px;
    }


    #times-bank-v60 .tb-status {
        max-width: none;

        margin-top: 15px;
    }
}


/* =========================================================
   ÌÎÁÈËÜÍÛÉ ÂÈÄ
   ========================================================= */

@media (max-width: 700px) {

    #times-bank-v60 {
        display: block;

        padding:
            20px
            16px;

        overflow-x:
            hidden;
    }


    #times-bank-v60 .tb-title {
        font-size: 27px;
    }


    #times-bank-v60 .tb-overall {
        grid-template-columns:
            repeat(3,minmax(0,1fr));

        margin:
            20px
            0
            0;
    }


    #times-bank-v60 .tb-summary-card {
        padding:
            14px
            5px;
    }


    #times-bank-v60 .tb-summary-label {
        min-height: 22px;

        font-size: 6.8px;
    }


    #times-bank-v60 .tb-summary-value {
        font-size: 18px;
    }


    #times-bank-v60 .tb-status {
        margin-top: 15px;
    }


    #times-bank-v60 .tb-sections {
        grid-template-columns:
            minmax(0,1fr);

        margin-top: 26px;
    }


    #times-bank-v60 .tb-section {
        padding:
            17px
            15px;
    }


    #times-bank-v60 .tb-result-summary {
        grid-template-columns:
            repeat(3,minmax(0,1fr));
    }


    #times-bank-v60 .tb-send-zone {
        grid-template-columns:
            1fr;

        gap: 10px;

        margin-top: 14px;

        padding:
            16px;
    }


    #times-bank-v60 .tb-note {
        text-align: center;
    }


    #times-bank-v60 .tb-post-row {
        grid-template-columns:
            minmax(0,1fr)
            auto;

        gap: 8px;
    }


    #times-bank-v60 .tb-post-chars {
        display: none;
    }


    .times-bank-modal {
        padding: 10px;
    }


    .times-bank-modal-card {
        max-height:
            calc(100vh - 20px);

        padding: 18px;
    }
}

#times-bank-v60 .tb-status {
    margin: 10px 0 0 !important;
    padding: 0 !important;

    border: 0 !important;
    outline: 0 !important;
    border-radius: 0 !important;

    background: transparent !important;
    box-shadow: none !important;

    color: var(--tb-muted) !important;

    font-size: 10px !important;
    line-height: 1.5 !important;
    font-weight: 400 !important;

    letter-spacing: .02em !important;
    opacity: .72 !important;
}