.bt-gallery-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #fff;
}

.bt-gallery-slider__swiper,
.bt-gallery-slider__slide {
    width: 100%;
}

.bt-gallery-slider__stage {
    display: flex;
    width: 100%;
    height: 880px;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0 clamp(70px, 10vw, 180px);
}

.bt-gallery-slider__image {
    display: block;
    width: auto;
    max-width: 900px;
    height: auto;
    max-height: 100%;
    object-fit: contain;
}

.bt-gallery-slider__button {
    position: absolute;
    z-index: 3;
    top: 50%;
    display: grid;
    width: 52px;
    height: 64px;
    margin: 0;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 0;
    color: #8b8b8b;
    background: transparent;
    cursor: pointer;
    transform: translateY(-50%);
    transition: color 0.2s ease, opacity 0.2s ease;
}

.bt-gallery-slider__button:hover,
.bt-gallery-slider__button:focus-visible {
    color: #303030;
    background: transparent;
}

.bt-gallery-slider__button:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

.bt-gallery-slider__button svg {
    width: 30px;
    height: 30px;
}

.bt-gallery-slider__prev {
    left: clamp(8px, 4vw, 82px);
}

.bt-gallery-slider__next {
    right: clamp(8px, 4vw, 82px);
}

.bt-gallery-slider__button.swiper-button-disabled {
    opacity: 0.3;
    cursor: default;
}

.bt-gallery-slider__footer {
    display: flex;
    min-height: 42px;
    align-items: center;
    margin-top: 18px;
    padding: 0 clamp(18px, 4vw, 82px);
}

.bt-gallery-slider__counter {
    color: #111;
    font-family: "Ubuntu", Arial, Helvetica, sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
}

.bt-gallery-slider__empty {
    margin: 0;
    padding: 30px;
    border: 1px dashed #bbb;
    text-align: center;
}

@media (max-width: 1024px) {
    .bt-gallery-slider__stage {
        height: 680px;
        padding-inline: 72px;
    }

    .bt-gallery-slider__counter {
        font-size: 21px;
    }
}

@media (max-width: 767px) {
    .bt-gallery-slider__stage {
        height: 480px;
        padding-inline: 42px;
    }

    .bt-gallery-slider__button {
        width: 38px;
        height: 52px;
    }

    .bt-gallery-slider__button svg {
        width: 24px;
        height: 24px;
    }

    .bt-gallery-slider__prev {
        left: 0;
    }

    .bt-gallery-slider__next {
        right: 0;
    }

    .bt-gallery-slider__footer {
        min-height: 32px;
        padding-inline: 4px;
    }

    .bt-gallery-slider__counter {
        font-size: 18px;
    }
}
