﻿.swiper-container
{
    position: relative;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    height: 100%;
}
.swiper-wrapper
{
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}
.swiper-slide
{
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    height: 100%;
    width: 100%;
    position: relative;
    transition-property: transform,-webkit-transform;
}
.swiper-pagination
{
    position: relative;
    margin-top: 1.728em;
}
@media(min-width: 90em)
{
    .swiper-pagination
    {
        margin-top: 1.953125em;
    }
}
.swiper-container-horizontal>.swiper-pagination.swiper-pagination-bullets
{
    top: auto;
    bottom: 0;
}
.section-row:not(.module-hero) .swiper-pagination
{
    text-align: center;
}
.section-row:not(.module-hero) .swiper-pagination-bullet
{
    display: inline-block;
    opacity: 1;
    width: 8px;
    height: 8px;
    margin: 0 9px!important;
    background-color: var(--color-grey-medium);
    border-radius: 50%;
    -webkit-transition: background .25s cubic-bezier(.215,.61,.355,1);
    transition: background .25s cubic-bezier(.215,.61,.355,1);
}
.section-row:not(.module-hero) .swiper-pagination-bullet:hover
{
    cursor: pointer;
}
.section-row:not(.module-hero) .swiper-pagination-bullet.swiper-pagination-bullet-active
{
    background-color: var(--color-alpha);
    -webkit-animation: .6s cubic-bezier(.215,.61,.355,1) 0s 1 forwards swiper-pagination-bullet-active;
    animation: .6s cubic-bezier(.215,.61,.355,1) 0s 1 forwards swiper-pagination-bullet-active;
}
@-webkit-keyframes swiper-pagination-bullet-active
{
    0%
    {
        -webkit-box-shadow: 0 0 0 2px var(--color-alpha-80);
        box-shadow: 0 0 0 2px var(--color-alpha-80);
    }
    100%
    {
        -webkit-box-shadow: 0 0 0 10px var(--color-alpha-0);
        box-shadow: 0 0 0 10px var(--color-alpha-0);
    }
}
@keyframes swiper-pagination-bullet-active
{
    0%
    {
        -webkit-box-shadow: 0 0 0 2px var(--color-alpha-80);
        box-shadow: 0 0 0 2px var(--color-alpha-80);
    }
    100%
    {
        -webkit-box-shadow: 0 0 0 10px var(--color-alpha-0);
        box-shadow: 0 0 0 10px var(--color-alpha-0);
    }
}
.swiper-button-next, .swiper-button-prev
{
    width: auto;
    height: auto;
    background-color: transparent;
    background-image: none;
    margin-top: -80px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    z-index: 5;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.swiper-button-next:hover:after, .swiper-button-prev:hover:after
{
    color: #fff;
    background-color: var(--color-alpha);
}
.swiper-button-prev
{
    left: 10px;
    right: auto;
}
.swiper-button-next
{
    right: 10px;
    left: auto;
}
.swiper-button-next:hover, .swiper-button-prev:hover
{
    cursor: pointer;
}
.swiper-button-next:after, .swiper-button-prev:after
{
    width: 34px;
    height: 34px;
    border-radius: 100%;
    border: 2px solid var(--color-alpha);
    background: #fff;
    color: var(--color-alpha);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: color .25s cubic-bezier(.215,.61,.355,1),background-color .25s cubic-bezier(.215,.61,.355,1);
    transition: color .25s cubic-bezier(.215,.61,.355,1),background-color .25s cubic-bezier(.215,.61,.355,1);
}
.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled
{
    opacity: 0;
}
.swiper-container .swiper-notification
{
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000;
}