.tsbls-slider,
.tsbls-slider * {
    box-sizing: border-box;
}

.tsbls-slider {
    position: relative;
    width: 100%;
    --tsbls-gap: 20px;
}

.tsbls-viewport {
    width: 100%;
    overflow: hidden;
	padding: 40px 0px;
}

.tsbls-track {
    display: flex;
    align-items: stretch;
    gap: var(--tsbls-gap);
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.tsbls-slide {
    flex: 0 0 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-decoration: none !important;
    color: inherit;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.tsbls-logo-wrap {
    width: 100%;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0px !important;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.tsbls-logo-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.tsbls-logo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 12px;
    text-align: center;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 600;
    color: #111111;
}

.tsbls-brand-title {
    display: block;
    text-align: center;
    color: #111111;
    font-size: 14px;
    line-height: 1.35;
    margin-top: 10px;
}

.tsbls-slider.is-grayscale .tsbls-logo-wrap img {
    filter: grayscale(100%);
    opacity: 0.72;
}

.tsbls-slider.is-grayscale .tsbls-slide:hover .tsbls-logo-wrap img,
.tsbls-slider.is-grayscale .tsbls-slide:focus-visible .tsbls-logo-wrap img {
    filter: grayscale(0%);
    opacity: 1;
}

.tsbls-slider.has-hover-lift .tsbls-slide:hover .tsbls-logo-wrap,
.tsbls-slider.has-hover-lift .tsbls-slide:focus-visible .tsbls-logo-wrap {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
}

.tsbls-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #111111;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
    transform: translateY(-50%);
    transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.tsbls-arrow:hover,
.tsbls-arrow:focus-visible {
    transform: translateY(-50%) scale(1.06);
}

.tsbls-arrow:disabled {
    opacity: 0.35;
    cursor: default;
    transform: translateY(-50%);
}

.tsbls-prev {
    left: -18px;
}

.tsbls-next {
    right: -18px;
}

.tsbls-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}

.tsbls-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.22);
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}

.tsbls-dot.is-active {
    background: #111111;
    transform: scale(1.25);
}

.tsbls-empty {
    padding: 16px 18px;
    border: 1px dashed rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.03);
    color: #222222;
    font-size: 14px;
}

@media (max-width: 767px) {
    .tsbls-prev {
        left: 4px;
    }

    .tsbls-next {
        right: 4px;
    }

    .tsbls-arrow {
        width: 34px;
        height: 34px;
        font-size: 24px;
    }
}
