.simple-swiper-container {
    width: 520px;
    border-radius: 10px;
    height: 280px;
    overflow: hidden;
    position: relative;
    margin: auto;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .simple-swiper-container > .swiper-wrapper {
        width: 100%;
        height: 100%;
        position: relative;
        min-height: 220px;
    }

        .simple-swiper-container > .swiper-wrapper > .swiper-slider {
            overflow: hidden;
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
        }

            .simple-swiper-container > .swiper-wrapper > .swiper-slider > .swiper-items
            img {
                border: none;
                height: 100%;
                width: 100%;
            }

                .simple-swiper-container > .swiper-wrapper > .swiper-slider > .swiper-items
                img:hover {
                    max-width: 150%;
                    height: 150%;
                    max-height: 150%;
                    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, .2);
                }

    .simple-swiper-container > .btn {
        position: absolute;
        cursor: pointer;
        z-index: 5;
        top: 45%;
        display: block;
    }

    .simple-swiper-container > .btn-prev {
        left: 0;
    }

    .simple-swiper-container > .btn-next::before {
        border-left: 12px solid #2a82d5;
        border-right: 12px solid transparent;
    }

    .simple-swiper-container > .btn-next::before,
    .simple-swiper-container > .btn-prev::before {
        content: "";
        border-top: 12px solid transparent;
        border-bottom: 12px solid transparent;
        display: block;
    }

    .simple-swiper-container > .btn-prev::before {
        border-left: 12px solid transparent;
        border-right: 12px solid #2a82d5;
    }

    .simple-swiper-container > .btn-next {
        right: 0;
    }

    .simple-swiper-container > .pagination {
        position: absolute;
        bottom: 0;
        width: 100%;
        height: auto;
        z-index: 5;
        text-align: center;
    }

.pagination > .pagination-items {
    display: inline-block;
    height: 10px;
    width: 10px;
    margin-left: 5px;
    margin-right: 5px;
    box-sizing: border-box;
    cursor: pointer;
    background-color: aqua;
    border-radius: 50%;
    border: 2px solid #eaeaea;
}

.pagination-items-active {
    background-color: red !important;
}

.no-click a {
    pointer-events: none;
}
