.tb-phone-field {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: stretch;
    width: 100%;
    min-width: 0;
    overflow: hidden;
    border: 1px solid #cbdcdf;
    border-radius: 16px;
    background: #fff;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.tb-phone-field:focus-within {
    border-color: var(--tenant-primary, #2f8589);
    box-shadow: 0 0 0 3px rgba(47, 133, 137, 0.12);
}

.tb-phone-field.has-error {
    border-color: #c95252;
    box-shadow: 0 0 0 3px rgba(201, 82, 82, 0.1);
}

.tb-phone-field__country {
    min-width: 116px;
    padding: 0 34px 0 14px;
    border: 0;
    border-right: 1px solid #dce7e9;
    border-radius: 0;
    background-color: #f4f9f9;
    color: #24334d;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.tb-phone-field > input[type="tel"] {
    width: 100%;
    min-width: 0;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
}

.tb-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: inherit;
    text-decoration: none;
}

.tb-phone-link:hover,
.tb-phone-link:focus-visible {
    color: var(--tenant-primary, #2f8589);
    text-decoration: underline;
}

.tb-phone-link svg,
.tb-phone-link i {
    width: 0.9em;
    height: 0.9em;
}

@media (max-width: 560px) {
    .tb-phone-field__country {
        min-width: 102px;
        padding-left: 10px;
    }
}
