/* ==========================================================================
   TSVST Live Search
   فقط فرم اختصاصی جست‌وجوی هدر
   ========================================================================== */

.tsvst-live-search {
    --ls-primary: #6d52eb;
    --ls-primary-dark: #4f36ca;
    --ls-blue: #168fc3;
    --ls-cyan: #18b8c8;
    --ls-text: #293043;
    --ls-muted: #858d9e;
    --ls-line: #e1e5ee;
    position: relative;
    width: 100%;
    direction: rtl;
    isolation: isolate;
}

.tsvst-live-search-form {
    position: relative;
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr) 78px;
    min-height: 54px;
    overflow: hidden;
    margin: 0 !important;
    border: 1px solid var(--ls-line);
    border-radius: 7px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(31, 39, 68, .055);
    transition: border-color .2s ease, box-shadow .2s ease;
}

.tsvst-live-search:focus-within .tsvst-live-search-form {
    border-color: rgba(109,82,235,.35);
    box-shadow:
        0 0 0 3px rgba(109,82,235,.055),
        0 10px 24px rgba(31,39,68,.065);
}

/* دسته‌بندی داخل سرچ --------------------------------------------------- */

.tsvst-live-search-category {
    position: relative;
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr) 16px;
    min-width: 0;
    align-items: center;
    gap: 5px;
    margin: 0 !important;
    padding: 0 9px;
    border-left: 1px solid #e7eaf1;
    background:
        linear-gradient(135deg, #faf9ff, #f5f9fc);
}

.tsvst-live-search-category-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 6px;
    color: #6550ca;
    background: #eeebff;
    font-size: 10px;
}

.tsvst-live-search-category select {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 52px;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    outline: 0 !important;
    color: #3f4659;
    background: transparent !important;
    box-shadow: none !important;
    font-family: inherit;
    font-size: 9px;
    font-weight: 900;
    appearance: none;
    cursor: pointer;
}

.tsvst-live-search-category-arrow {
    color: #7a8394;
    font-size: 9px;
    pointer-events: none;
}

/* ورودی ---------------------------------------------------------------- */

.tsvst-live-search-field {
    position: relative;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 20px;
    align-items: center;
    gap: 6px;
    min-width: 0;
    margin: 0 !important;
    padding: 0 10px;
    background: #fff;
}

.tsvst-live-search-field-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 7px;
    color: #6651ca;
    background: linear-gradient(135deg, #f0edff, #eaf7ff);
    font-size: 12px;
}

.tsvst-live-search-field-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.tsvst-live-search-field-copy small {
    margin-bottom: 1px;
    color: #9aa1af;
    font-size: 7px;
    font-weight: 700;
    line-height: 1.3;
}

.tsvst-live-search-field input {
    width: 100%;
    height: 25px;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    outline: 0 !important;
    color: #303647 !important;
    background: transparent !important;
    box-shadow: none !important;
    font-family: inherit;
    font-size: 10px;
    font-weight: 850;
    line-height: 25px;
}

.tsvst-live-search-field input::placeholder {
    color: #9da4b2;
    opacity: 1;
    font-weight: 650;
}

.tsvst-live-search-spinner {
    display: none;
    width: 15px;
    height: 15px;
    border: 2px solid #dedaf5;
    border-top-color: #6d52eb;
    border-radius: 50%;
    animation: tsvstLiveSearchSpin .7s linear infinite;
}

.tsvst-live-search.is-loading .tsvst-live-search-spinner {
    display: block;
}

@keyframes tsvstLiveSearchSpin {
    to { transform: rotate(360deg); }
}

/* دکمه ----------------------------------------------------------------- */

.tsvst-live-search-submit {
    display: inline-flex;
    min-width: 78px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2px;
    padding: 0 8px;
    border: 0 !important;
    border-radius: 0 !important;
    color: #fff !important;
    background: linear-gradient(135deg, var(--ls-primary), var(--ls-blue)) !important;
    box-shadow: none !important;
    font-family: inherit;
    cursor: pointer;
    transition: filter .2s ease;
}

.tsvst-live-search-submit:hover {
    filter: brightness(1.06);
}

.tsvst-live-search-submit i {
    font-size: 12px;
}

.tsvst-live-search-submit span {
    font-size: 7.5px;
    font-weight: 900;
}

/* پنل نتایج ------------------------------------------------------------ */

.tsvst-live-search-panel {
    position: absolute;
    z-index: 99999;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    overflow: hidden;
    border: 1px solid rgba(109,82,235,.16);
    border-radius: 7px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(24, 29, 48, .16);
}

.tsvst-live-search-panel[hidden] {
    display: none !important;
}

.tsvst-live-search-panel-head {
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    border-bottom: 1px solid #e9ecf2;
    background:
        radial-gradient(circle at left top, rgba(24,184,200,.07), transparent 38%),
        linear-gradient(135deg, #fff, #faf9ff);
}

.tsvst-live-search-panel-head > div {
    display: flex;
    flex-direction: column;
}

.tsvst-live-search-panel-head strong {
    color: #2d3447;
    font-size: 10px;
    font-weight: 950;
}

.tsvst-live-search-panel-head small {
    color: #929aaa;
    font-size: 7.5px;
    font-weight: 650;
}

.tsvst-live-search-close {
    display: inline-flex;
    width: 29px;
    height: 29px;
    align-items: center;
    justify-content: center;
    border: 1px solid #e1e5ed !important;
    border-radius: 6px;
    color: #6e7789 !important;
    background: #f8f9fc !important;
    box-shadow: none !important;
    font-size: 10px;
    cursor: pointer;
}

.tsvst-live-search-results {
    max-height: 430px;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 7px;
    background: #f8f9fd;
    scrollbar-width: thin;
    scrollbar-color: #c8c3ed transparent;
}

.tsvst-live-search-result-link {
    display: grid !important;
    grid-template-columns: 48px minmax(0, 1fr) 27px;
    min-height: 65px;
    align-items: center;
    gap: 9px;
    margin-bottom: 6px;
    padding: 7px;
    border: 1px solid #e5e8f0;
    border-radius: 6px;
    color: #353c4e !important;
    background: #fff;
    box-shadow: 0 4px 12px rgba(31,39,68,.035);
    transition: border-color .16s ease, background .16s ease;
}

.tsvst-live-search-result-link:last-of-type {
    margin-bottom: 0;
}

.tsvst-live-search-result-link:hover,
.tsvst-live-search-result-link.is-keyboard-active {
    border-color: rgba(109,82,235,.28);
    background: linear-gradient(135deg, #fff, #f7f6ff);
}

.tsvst-live-search-thumb {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #e2e6ee;
    border-radius: 6px;
    color: #6751d5;
    background: linear-gradient(135deg, #efecff, #eaf7ff);
    font-size: 15px;
}

.tsvst-live-search-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tsvst-live-search-result-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 3px;
}

.tsvst-live-search-result-topline {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
}

.tsvst-live-search-result-topline strong {
    overflow: hidden;
    color: #303647;
    font-size: 9px;
    font-weight: 950;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tsvst-live-search-result-topline em {
    display: inline-flex;
    flex: 0 0 auto;
    min-height: 20px;
    align-items: center;
    padding: 2px 6px;
    border-radius: 12px;
    font-size: 6.8px;
    font-style: normal;
    font-weight: 900;
}

.tsvst-live-search-result-topline em.is-post {
    color: #5d49be;
    background: #f0edff;
}

.tsvst-live-search-result-topline em.is-download {
    color: #08799b;
    background: #e9f8fb;
}

.tsvst-live-search-result-excerpt {
    overflow: hidden;
    color: #858d9d;
    font-size: 7.5px;
    font-weight: 600;
    line-height: 1.7;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tsvst-live-search-result-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    color: #969dad;
    font-size: 6.8px;
    font-weight: 700;
}

.tsvst-live-search-result-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.tsvst-live-search-result-meta i {
    color: #6751d5;
}

.tsvst-live-search-result-arrow {
    display: inline-flex;
    width: 27px;
    height: 27px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #6751d5;
    background: #f0edff;
    font-size: 9px;
}

.tsvst-live-search-all {
    display: flex !important;
    min-height: 52px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 7px;
    padding: 8px 12px;
    border-radius: 6px;
    color: #fff !important;
    background: linear-gradient(135deg, #6d52eb, #168fc3);
    box-shadow: 0 7px 17px rgba(79,54,202,.16);
}

.tsvst-live-search-all > span {
    display: flex;
    flex-direction: column;
}

.tsvst-live-search-all strong {
    font-size: 8.5px;
    font-weight: 950;
}

.tsvst-live-search-all small {
    color: rgba(255,255,255,.78);
    font-size: 6.8px;
    font-weight: 650;
}

/* پیام و Skeleton ------------------------------------------------------ */

.tsvst-live-search-message {
    display: flex;
    min-height: 105px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 18px;
    color: #8b93a4;
    text-align: center;
}

.tsvst-live-search-message-icon {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    margin-bottom: 2px;
    border-radius: 50%;
    color: #6751d5;
    background: linear-gradient(135deg, #efecff, #eaf7ff);
    font-size: 14px;
}

.tsvst-live-search-message strong {
    color: #434b5e;
    font-size: 9px;
    font-weight: 950;
}

.tsvst-live-search-message small,
.tsvst-live-search-message > span {
    font-size: 7.5px;
    font-weight: 650;
}

.tsvst-live-search-skeleton {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    gap: 9px;
    min-height: 65px;
    margin-bottom: 6px;
    padding: 7px;
    border: 1px solid #e7eaf1;
    border-radius: 6px;
    background: #fff;
}

.tsvst-live-search-skeleton::before {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    content: "";
    background: linear-gradient(90deg, #eef0f5, #f8f9fc, #eef0f5);
    background-size: 200% 100%;
    animation: tsvstLiveSearchSkeleton 1.1s linear infinite;
}

.tsvst-live-search-skeleton span {
    display: block;
    height: 8px;
    margin-bottom: 7px;
    border-radius: 5px;
    background: linear-gradient(90deg, #eef0f5, #f8f9fc, #eef0f5);
    background-size: 200% 100%;
    animation: tsvstLiveSearchSkeleton 1.1s linear infinite;
}

.tsvst-live-search-skeleton span:last-child {
    width: 63%;
    margin-bottom: 0;
}

@keyframes tsvstLiveSearchSkeleton {
    to { background-position: -200% 0; }
}

/* فوکوس ---------------------------------------------------------------- */

.tsvst-live-search button:focus:not(:focus-visible),
.tsvst-live-search input:focus:not(:focus-visible),
.tsvst-live-search select:focus:not(:focus-visible),
.tsvst-live-search a:focus:not(:focus-visible) {
    outline: 0 !important;
}

.tsvst-live-search button:focus-visible,
.tsvst-live-search input:focus-visible,
.tsvst-live-search select:focus-visible,
.tsvst-live-search a:focus-visible {
    outline: 2px solid rgba(109,82,235,.72) !important;
    outline-offset: 2px;
}

/* موبایل --------------------------------------------------------------- */

@media (max-width: 767px) {
    .tsvst-live-search-form {
        grid-template-columns: 116px minmax(0, 1fr) 52px;
    }

    .tsvst-live-search-category {
        grid-template-columns: 22px minmax(0, 1fr) 12px;
        padding: 0 6px;
    }

    .tsvst-live-search-category-icon {
        width: 22px;
        height: 22px;
    }

    .tsvst-live-search-category select {
        font-size: 8px;
    }

    .tsvst-live-search-field {
        grid-template-columns: 28px minmax(0, 1fr) 17px;
        padding: 0 7px;
    }

    .tsvst-live-search-field-icon {
        width: 28px;
        height: 28px;
    }

    .tsvst-live-search-field-copy small {
        display: none;
    }

    .tsvst-live-search-field input {
        height: 31px;
        font-size: 9px;
        line-height: 31px;
    }

    .tsvst-live-search-submit {
        min-width: 52px;
    }

    .tsvst-live-search-submit span {
        display: none;
    }

    .tsvst-live-search-panel {
        position: fixed;
        z-index: 999999;
        top: 12px;
        right: 10px;
        left: 10px;
        max-height: calc(100vh - 24px);
    }

    .tsvst-live-search-results {
        max-height: calc(100vh - 90px);
    }

    .tsvst-live-search-result-link {
        grid-template-columns: 43px minmax(0, 1fr) 24px;
    }

    .tsvst-live-search-thumb {
        width: 43px;
        height: 43px;
    }
}
/* ==========================================================================
   اصلاح نهایی چیدمان فرم هدر — نسخه 1.0.1
   خنثی‌کردن استایل‌های عمومی قالب و افزونه‌های قدیمی
   ========================================================================== */

.tsvst-live-search,
.tsvst-live-search *,
.tsvst-live-search *::before,
.tsvst-live-search *::after {
    box-sizing: border-box !important;
}

/* فرم دقیقاً در محدوده ستون هدر بماند */
.tsvst-live-search .tsvst-live-search-form {
    display: grid !important;
    grid-template-columns: 150px minmax(0, 1fr) 86px !important;
    width: 100% !important;
    min-width: 0 !important;
    height: 54px !important;
    min-height: 54px !important;
    max-height: 54px !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    border: 1px solid #e0e4ed !important;
    border-radius: 7px !important;
    background: #fff !important;
}

/*
 * جلوگیری از position، float، width و transform قدیمی قالب
 * روی سه بخش اصلی فرم.
 */
.tsvst-live-search
.tsvst-live-search-form
> .tsvst-live-search-category,

.tsvst-live-search
.tsvst-live-search-form
> .tsvst-live-search-field,

.tsvst-live-search
.tsvst-live-search-form
> .tsvst-live-search-submit {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    float: none !important;
    transform: none !important;
}

/* دسته‌بندی ------------------------------------------------------------ */

.tsvst-live-search .tsvst-live-search-category {
    display: grid !important;
    grid-template-columns: 26px minmax(0, 1fr) 14px !important;
    width: auto !important;
    min-width: 0 !important;
    height: 52px !important;
    min-height: 52px !important;
    margin: 0 !important;
    padding: 0 9px !important;
    overflow: hidden !important;
    border: 0 !important;
    border-left: 1px solid #e7eaf1 !important;
    border-radius: 0 !important;
    background: linear-gradient(135deg, #faf9ff, #f5f9fc) !important;
    box-shadow: none !important;
}

.tsvst-live-search .tsvst-live-search-category-icon,
.tsvst-live-search .tsvst-live-search-category-arrow {
    position: static !important;
    float: none !important;
    transform: none !important;
}

.tsvst-live-search .tsvst-live-search-category select {
    position: static !important;
    display: block !important;
    float: none !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    height: 52px !important;
    min-height: 52px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    outline: 0 !important;
    text-align: right !important;
    direction: rtl !important;
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
}

/* ورودی جست‌وجو -------------------------------------------------------- */

.tsvst-live-search .tsvst-live-search-field {
    display: grid !important;
    grid-template-columns: 36px minmax(0, 1fr) 18px !important;
    width: auto !important;
    min-width: 0 !important;
    height: 52px !important;
    min-height: 52px !important;
    margin: 0 !important;
    padding: 0 10px !important;
    overflow: hidden !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
}

.tsvst-live-search .tsvst-live-search-field-icon {
    position: static !important;
    display: inline-flex !important;
    float: none !important;
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 7px !important;
    color: #6651ca !important;
    background: linear-gradient(135deg, #f0edff, #eaf7ff) !important;
    box-shadow: none !important;
    transform: none !important;
    font-size: 12px !important;
    line-height: 1 !important;
}

.tsvst-live-search .tsvst-live-search-field-icon i {
    position: static !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    color: inherit !important;
    background: transparent !important;
    transform: none !important;
    font-size: inherit !important;
    line-height: 1 !important;
}

/*
 * توضیح کوچک بالای ورودی حذف می‌شود تا placeholder و آیکن
 * روی هم قرار نگیرند.
 */
.tsvst-live-search .tsvst-live-search-field-copy {
    position: static !important;
    display: block !important;
    min-width: 0 !important;
    width: 100% !important;
    height: 42px !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    transform: none !important;
}

.tsvst-live-search .tsvst-live-search-field-copy > small {
    display: none !important;
}

.tsvst-live-search .tsvst-live-search-field input[type="search"] {
    position: static !important;
    display: block !important;
    float: none !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    height: 42px !important;
    min-height: 42px !important;
    max-height: 42px !important;
    margin: 0 !important;
    padding: 0 3px !important;
    border: 0 !important;
    border-radius: 0 !important;
    outline: 0 !important;
    color: #303647 !important;
    background: transparent !important;
    box-shadow: none !important;
    text-align: right !important;
    direction: rtl !important;
    transform: none !important;
    font-family: inherit !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    line-height: 42px !important;
}

.tsvst-live-search .tsvst-live-search-field input[type="search"]::placeholder {
    color: #9aa1af !important;
    opacity: 1 !important;
    text-align: right !important;
    font-size: 9.5px !important;
    font-weight: 650 !important;
}

/* حذف × پیش‌فرض مرورگر که در پنل یا کنار ورودی ظاهر می‌شد */
.tsvst-live-search
.tsvst-live-search-field
input[type="search"]::-webkit-search-cancel-button,

.tsvst-live-search
.tsvst-live-search-field
input[type="search"]::-webkit-search-decoration,

.tsvst-live-search
.tsvst-live-search-field
input[type="search"]::-webkit-search-results-button,

.tsvst-live-search
.tsvst-live-search-field
input[type="search"]::-webkit-search-results-decoration {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

/* Spinner در ستون اختصاصی خودش */
.tsvst-live-search .tsvst-live-search-spinner {
    position: static !important;
    float: none !important;
    align-self: center !important;
    justify-self: center !important;
    margin: 0 !important;
    transform-origin: center !important;
}

/* دکمه جست‌وجو -------------------------------------------------------- */

.tsvst-live-search .tsvst-live-search-submit {
    display: inline-flex !important;
    width: calc(100% - 12px) !important;
    min-width: 0 !important;
    max-width: none !important;
    height: 42px !important;
    min-height: 42px !important;
    max-height: 42px !important;
    align-self: center !important;
    justify-self: center !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: row !important;
    gap: 5px !important;
    margin: 6px !important;
    padding: 0 8px !important;
    overflow: hidden !important;
    border: 0 !important;
    border-radius: 7px !important;
    outline: 0 !important;
    color: #fff !important;
    background: linear-gradient(135deg, #6d52eb, #168fc3) !important;
    box-shadow: 0 6px 14px rgba(79, 54, 202, .19) !important;
    text-indent: 0 !important;
    font-family: inherit !important;
    font-size: 0 !important;
    line-height: 1 !important;
}

.tsvst-live-search .tsvst-live-search-submit::before,
.tsvst-live-search .tsvst-live-search-submit::after {
    display: none !important;
    content: none !important;
}

.tsvst-live-search .tsvst-live-search-submit i {
    position: static !important;
    display: block !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #fff !important;
    background: transparent !important;
    transform: none !important;
    font-size: 13px !important;
    line-height: 1 !important;
}

.tsvst-live-search .tsvst-live-search-submit span {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #fff !important;
    background: transparent !important;
    font-size: 7.5px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
}

/* تبلت --------------------------------------------------------------- */

@media (max-width: 991px) {
    .tsvst-live-search .tsvst-live-search-form {
        grid-template-columns: 135px minmax(0, 1fr) 78px !important;
    }
}

/* موبایل -------------------------------------------------------------- */

@media (max-width: 767px) {
    .tsvst-live-search .tsvst-live-search-form {
        grid-template-columns: 108px minmax(0, 1fr) 58px !important;
    }

    .tsvst-live-search .tsvst-live-search-category {
        grid-template-columns: 20px minmax(0, 1fr) 11px !important;
        padding-right: 6px !important;
        padding-left: 6px !important;
    }

    .tsvst-live-search .tsvst-live-search-category-icon {
        width: 20px !important;
        height: 20px !important;
        min-width: 20px !important;
        min-height: 20px !important;
        font-size: 8px !important;
    }

    .tsvst-live-search .tsvst-live-search-category select {
        font-size: 8px !important;
    }

    .tsvst-live-search .tsvst-live-search-field {
        grid-template-columns: 29px minmax(0, 1fr) 15px !important;
        padding-right: 6px !important;
        padding-left: 6px !important;
    }

    .tsvst-live-search .tsvst-live-search-field-icon {
        width: 27px !important;
        height: 27px !important;
        min-width: 27px !important;
        min-height: 27px !important;
        font-size: 10px !important;
    }

    .tsvst-live-search .tsvst-live-search-field input[type="search"] {
        font-size: 8.5px !important;
    }

    .tsvst-live-search .tsvst-live-search-field input[type="search"]::placeholder {
        font-size: 8px !important;
    }

    .tsvst-live-search .tsvst-live-search-submit {
        width: calc(100% - 10px) !important;
        height: 40px !important;
        min-height: 40px !important;
        margin: 5px !important;
        padding: 0 !important;
    }

    .tsvst-live-search .tsvst-live-search-submit span {
        display: none !important;
    }
}
