.swiper-button-next,
.swiper-button-prev
{
    color: #fff;

    top: -130px;

    display: flex;

    width: 80px;
    height: 80px;
    margin: 0;

    transition: .2s linear;
    transform: none;

    border-radius: 50%;
    background: rgba(29, 167, 226, .2);

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.swiper-button-prev
{
    right: 100px;
    left: auto;
}

.swiper-button-next
{
    right: 0;
}

.swiper-button-next:after,
.swiper-button-prev:after
{
    display: none;
}


.swiper-button-next .icon,
.swiper-button-prev .icon
{
    display: block;

    width: 23px;
    height: 16px;
}

.swiper-button-next .icon
{
    transform: rotate(180deg);
}


.swiper-button-next:hover,
.swiper-button-prev:hover
{
    background: #1da7e2;
}



.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet
{
    margin: 0;
}



.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction
{
    position: absolute;
    bottom: 49px;
    left: 50%;

    display: flex;

    width: auto;
    height: 6px;
    margin-left: -616px;

    pointer-events: none;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.swiper-pagination-bullet
{
    position: relative;

    display: block;

    width: 6px;
    height: 6px;

    transition: background .2s linear;
    pointer-events: auto;

    opacity: 1;
    border-radius: 50%;
    background: rgba(255, 255, 255, .4);
}

.swiper-pagination-bullet + .swiper-pagination-bullet
{
    margin-left: 26px !important;
}

.swiper-pagination-bullet:hover,
.swiper-pagination-bullet.active
{
    background: #fff;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet
{
    margin: 0;
}


.swiper-pagination-bullet svg
{
    position: absolute;
    top: -5px;
    left: -5px;

    width: calc(100% + 10px);
    height: calc(100% + 10px);

    transition: opacity .2s linear;

    opacity: 0;
}

.swiper-pagination-bullet.active svg
{
    opacity: 1;
}

.swiper-pagination-bullet svg circle
{
    display: block;

    animation: activeAnim 5s linear infinite;

    fill-opacity: 0;
    stroke-dasharray: 58;
    stroke-dashoffset: 11;
    stroke-linejoin: round;
}

@keyframes activeAnim
{
    from
    {
        stroke-dashoffset: 58;
    }

    to
    {
        stroke-dashoffset: 11;
    }
}


.swiper-horizontal > .swiper-scrollbar
{
    position: absolute;
    z-index: 9;
    top: 0;
    bottom: auto;
    left: 0 !important;

    width: 100%;
    height: 2px;
    margin-top: 10px;

    cursor: pointer;

    border-radius: 2px;
    background: #efefef;
}

.swiper-scrollbar-drag
{
    border-radius: inherit;
    background: #1da7e2;
}


.hike_program .swiper-horizontal > .swiper-scrollbar
{
    position: relative;
    left: 0 !important;

    display: none;
}
