.tbl-add-listing-button-wrap {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
}

.tbl-add-listing-button {
    display: inline-flex;
    flex-direction: row;
    direction: rtl;
    justify-content: center;
    align-items: center;
    gap: 8px;
    min-height: 56px;
    padding: 16px 22px;
    border: 0;
    border-radius: 12px;
    background: var(--tbl-color-primary);
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    text-decoration: none !important;
    cursor: pointer;
    box-sizing: border-box;
    transition: background .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease, opacity .18s ease;
}

.tbl-add-listing-button:hover,
.tbl-add-listing-button:focus {
    color: #FFFFFF;
    background: #eb3e34;
    box-shadow: 0 14px 30px rgba(var(--tbl-color-primary-rgb), 0.25);
    transform: translateY(-1px);
    outline: none;
}

.tbl-add-listing-button:active {
    transform: translateY(0);
    box-shadow: 0 8px 20px rgba(var(--tbl-color-primary-rgb), 0.18);
}

.tbl-add-listing-button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    color: currentColor;
    line-height: 1;
}

.tbl-add-listing-button-icon svg {
    display: block;
    width: 20px;
    height: 20px;
}

.tbl-add-listing-button-text {
    display: inline-block;
    white-space: nowrap;
}

.tbl-add-listing-button.is-disabled {
    opacity: .55;
    pointer-events: none;
    cursor: not-allowed;
}
