.entry-content .swiper-wrapper {
    margin: 0;
    padding: 0;
    list-style: none;
}

:root {
  --swiper-theme-color: var(--primary-color);
}

.on-click-true {
    cursor: pointer;
}

.swiper-slide .image-wrapper img {
    display: block;
}

.swiper-lazy {
    will-change: opacity;
    transition: opacity ease .35s;
    opacity: 0;

    position: absolute;
    top: 0;
    z-index: 1;
    left: 0;
}
.swiper-lazy-loaded {
    opacity: 1;
}
.image-wrapper {
    background: var(--third-color);
}

.swiper-lazy-loader {
    display: block;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity ease .2s, visibility ease .2s;
}
.swiper-lazy-loading + .swiper-lazy-loader {
    opacity: 1;
    visibility: visible;
}
.swiper-lazy-loader:before {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    top: 0;
    opacity: 0;
    background: var(--secondary-color);
    animation: lazybg .95s ease infinite;
}

.swiper-lazy-loader-circular {
    animation: swiper-lazy-loader-rotate 1s linear infinite;
    height: 100%;
    transform-origin: center center;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.swiper-lazy-loader-path {
    stroke: var(--secondary-color);
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    animation: swiper-lazy-loader-dash 1.5s ease-in-out infinite;
    stroke-linecap: round;
    transition: stroke .2s;

    stroke-width: 4;
}

@keyframes swiper-lazy-loader-rotate {
    100% {
        transform: rotate(360deg);
    }
}
@keyframes swiper-lazy-loader-dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px;
    }
}

.swiper-big .image-wrapper {
    background: transparent;
}
.swiper-big .swiper-lazy-loader {
    position: absolute;
    margin: 0 auto;
    width: 26px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: auto;
}
.swiper-big .swiper-lazy-loader:before {
    padding-top: 100%;
    background: transparent;
    animation: none;
}

.swiper-button-nav {
    stroke: var(--primary-color);
    transition: stroke ease .2s, opacity ease .2s, background ease .2s, transform ease .2s;
}
.swiper-button-nav:hover {
    transform: scale(1.15);
}
.swiper-button-prev:after,
.swiper-button-next:after {
    display: none;
}
.swiper-button-nav svg {
    stroke-width: 1;
    width: 18px;
}