.tlh-fd, .tlh-fd * {
    box-sizing: border-box;
}

.tlh-fd__list {
    margin: 0;
    padding: 0;
}

.tlh-fd__row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    padding: 8px 0;
}

.tlh-fd__label {
    margin: 0;
    font-weight: 800;
    font-size: 16px;
    line-height: 1.2;
    color: #111;
}

.tlh-fd__value {
    margin: 0;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    color: #111;
    text-align: right;
}

.tlh-fd__disclaimer {
    margin-top: 16px;
    color: rgba(0,0,0,.35);
    font-size: 12px;
    line-height: 1.4;
}

.tlh-fd__disclaimer p:last-child {
    margin-bottom: 0;
}

.tlh-fd__cta {
    margin-top: 22px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.tlh-fd__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;

    padding: 18px 18px;
    border-radius: 6px;

    text-decoration: none;
    font-weight: 800;
    font-size: 16px;
    line-height: 1;

    border: 1px solid rgba(0,0,0,.08);
}

.tlh-fd__btn--dark {
    background: #1f1f1f;
    color: #fff;
    border-color: #1f1f1f;
}
.tlh-fd__btn--dark:hover {
    background: #1f1f1f;
    color: #fff;
    border-color: #1f1f1f;
}

.tlh-fd__btn--red {
    background: #c22035;
    color: #fff;
    border-color: #9B0A21;
}
.tlh-fd__btn--red:hover {
    background: #9B0A21;
    color: #fff;
    border-color: #9B0A21;
}

@media (max-width: 640px) {
    .tlh-fd__label,
    .tlh-fd__value {
        font-size: 16px;
    }

    .tlh-fd__cta {
        grid-template-columns: 1fr;
    }
}

.tlh-fd__controls {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.tlh-fd__controlLabel {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

.tlh-fd__input {
    width: 100%;
    padding: 12px 14px;
    box-sizing: border-box;
}

.tlh-fd-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;
}

.tlh-fd-modal__dialog {
    position: relative;
    width: min(900px, 100%);
    max-height: calc(100vh - 40px);
    overflow-y: auto;

    background: #fff;
    padding: 30px;
    box-sizing: border-box;
    border-radius: 15px;
}

.tlh-fd-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1;
}

.tlh-fd-modal__dialog {
    z-index: 2;
}

.tlh-fd-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    cursor: pointer;
    background-color: #eaeaea;
    border-radius: 24px;
    border: 1px solid #d6d6d6;
    color: #222;
    font-weight: bold;
    padding: 3px 10px 5px 10px;
}

html.tlh-fd-modal-open {
    overflow: hidden;
}

.tlh-fd__input {
    border: 1px solid #d3d3d3;
    border-radius: 4px;
    background-color: #f5f5f5;
}