.slider {
    overflow: hidden;
}

.slider .my-swiper-container {
    width: 100%;
    height: 100%;
}

.slider__flex {
    display: flex;
    align-items: flex-start;
}

.slider__col {
    display: flex;
    flex-direction: column;
    width: 350px;
    margin-right: 25px;
}

.slider__prev,
.slider__next {
    cursor: pointer;
    text-align: center;
    font-size: 14px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.slider__prev:focus,
.slider__next:focus {
    outline: none;
}

.slider__thumbs {
    height: 700px;
    overflow: hidden;
}

@media (min-width: 1023px) {
    .slider__thumbs {
        width: 270px;
    }
}

.slider__thumbs .slider__image {
    transition: all .3s cubic-bezier(0.075, 0.82, 0.165, 1);
    /* -webkit-filter: grayscale(100%);
    filter: grayscale(100%); */
    opacity: 0.7;
}

.slider__thumbs .slider__image:hover {
    opacity: 1;
}

.slider__thumbs .swiper-slide-thumb-active .slider__image {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
    opacity: 1;
    border: 3px var(--e-global-color-9f8c9d3) solid;
    box-shadow: 0px 0 20px 0px rgba(0, 0, 0, 0.08);
}

.slider__images {
    height: 700px;
}

.slider__images .slider__image img {
    transition: all .7s linear;
}

.slider__images .slider__image:hover img {
    transform: scale(1.05);
}

.slider__image {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.slider__image img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.gallery-slider .wrap-button-nav {
    top: 0;
    left: 75px;
    box-shadow: 0 0 11px 0 #0000002b;
    display: inline-grid;
    gap: 5px;
    justify-content: center;
    z-index: 99;
}

.gallery-slider .icon-svg {
    display: flex;
}

@media (max-width: 767.98px) {
    .slider__flex {
        flex-direction: column-reverse;
    }

    .slider__col {
        flex-direction: row;
        align-items: center;
        margin-right: 0;
        margin-top: 15px;
        width: 100%;
    }

    .slider__images {
        width: 100%;
        height: 350px;

    }

    .slider__thumbs .swiper-slide-thumb-active .slider__image {
        border-width: 2px;
    }


    .slider__thumbs {
        height: 100px;
        /* width: calc(100% - 96px); */
        /* margin: 0 16px; */
    }

    .slider__prev,
    .slider__next {
        height: auto;
        width: 32px;
    }

    .gallery-slider .wrap-button-nav {
        width: 100%;
        left: 0;
        display: flex;
        justify-content: space-between;
        height: 0;
        padding: 0 5px;
        top: 90%;
    }

    .custome-slider .elementor-swiper-button {
        transform: rotate(-90deg);
        background: #fff;
        border-radius: 100%;
        box-shadow: 0 0 11px 0 #0000002b;
    }
}