.tns-outer{
    padding:0 !important
}
.tns-outer [hidden]{
    display:none !important
}

.tns-slider{
    -webkit-transition:all 0s;
    -moz-transition:all 0s;
    transition:all 0s
}
.tns-slider>.tns-item{
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    box-sizing:border-box
}
.tns-horizontal.tns-subpixel{
    white-space:nowrap
}
.tns-horizontal.tns-subpixel>.tns-item{
    display:inline-block;
    vertical-align:top;
    white-space:normal
}
.tns-horizontal.tns-no-subpixel:after{
    content:'';
    display:table;
    clear:both
}
.tns-horizontal.tns-no-subpixel>.tns-item{
    float:left
}
.tns-horizontal.tns-carousel.tns-no-subpixel>.tns-item{
    margin-right:-100%
}
.tns-no-calc{
    position:relative;
    left:0
}
.tns-gallery{
    position:relative;
    left:0;
    min-height:1px
}
.tns-gallery>.tns-item{
    position:absolute;
    left:-100%;
    -webkit-transition:transform 0s, opacity 0s;
    -moz-transition:transform 0s, opacity 0s;
    transition:transform 0s, opacity 0s
}
.tns-gallery>.tns-slide-active{
    position:relative;
    left:auto !important
}
.tns-gallery>.tns-moving{
    -webkit-transition:all 0.25s;
    -moz-transition:all 0.25s;
    transition:all 0.25s
}
.tns-autowidth{
    display:inline-block
}
.tns-lazy-img{
    -webkit-transition:opacity 0.6s;
    -moz-transition:opacity 0.6s;
    transition:opacity 0.6s;
    opacity:0.6
}
.tns-lazy-img.tns-complete{
    opacity:1
}
.tns-ah{
    -webkit-transition:height 0s;
    -moz-transition:height 0s;
    transition:height 0s
}
.tns-ovh{
    overflow:hidden
}
.tns-visually-hidden{
    position:absolute;
    left:-10000em
}
.tns-transparent{
    opacity:0;
    visibility:hidden
}
.tns-fadeIn{
    opacity:1;
    filter:alpha(opacity=100);
    z-index:0
}
.tns-normal,.tns-fadeOut{
    opacity:0;
    filter:alpha(opacity=0);
    z-index:-1
}
.tns-vpfix{
    white-space:nowrap
}
.tns-vpfix>div,.tns-vpfix>li{
    display:inline-block
}
.tns-t-subp2{
    margin:0 auto;
    width:310px;
    position:relative;
    height:10px;
    overflow:hidden
}
.tns-t-ct{
    width:2333.3333333%;
    width:-webkit-calc(100% * 70 / 3);
    width:-moz-calc(100% * 70 / 3);
    width:calc(100% * 70 / 3);
    position:absolute;
    right:0
}
.tns-t-ct:after{
    content:'';
    display:table;
    clear:both
}
.tns-t-ct>div{
    width:1.4285714%;
    width:-webkit-calc(100% / 70);
    width:-moz-calc(100% / 70);
    width:calc(100% / 70);
    height:10px;
    float:left
}

/**
 * Custom WFA
 */

.main .tns-controls {
    width: 100%;
    max-width: 65rem;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1.3rem;
    padding-left: 1.3rem;
    outline: none;
}


/**
 * Circle timer
 */

@keyframes rota {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fill {
    0%        { opacity: 0; }
    50%, 100% { opacity: 1; }
}

@keyframes mask {
    0%        { opacity: 1; }
    50%, 100% { opacity: 0; }
}

.tns-outer [aria-controls],
.tns-outer [data-action],
.slider__button {
    height: 50px;
    width: 50px;
    display: inline-block;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
    padding: 0;
    border: none;
    box-sizing: border-box;
    text-decoration: none;
    cursor: pointer;
    outline: none;
    position: relative;
    border-radius: 100%;
    cursor:pointer;
    background: #1e1e1e  !important;
    color: transparent;
    margin: 0 .5em 1em 0;
}

.tns-outer [aria-controls]:hover,
.tns-outer [data-action]:hover,
.slider__button:hover {
    box-shadow: 0 0 0 1.6em var(--primaryColor) inset;
    color: transparent;
}

.tns-outer [aria-controls]::after,
.tns-outer [data-action]::after,
.slider__button::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    font-family: 'icons';
    color: #fff;
    line-height: 48px;
    font-weight: normal;
    font-size: .8rem;
}

button[data-controls='prev']::after,
.slider__prev::after {
    content: '\2190'
}

button[data-controls='next']::after,
.slider__next::after {
    content: '\2192'
}

.tns-outer button[data-action='start'],
.tns-outer button[data-action='stop'] {
    display: none;
}

.slider__timer {
    position: absolute;
    top: calc(50% - 21px);
    left: calc(50% - 21px);
    z-index: 2;
    fill: rgba(30,30,30,0);
    stroke: #fff;
    stroke-width: 2px;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    stroke-dasharray: 119.3808;
    stroke-dashoffset: -119.3808;
    -webkit-transition: opacity 0s cubic-bezier(.25, .46, .45, .94);
    transition: opacity 0s cubic-bezier(.25, .46, .45, .94);
}

.slider__timer--active {
    -webkit-animation: partnersSliderTimer 4.8s linear forwards;
    animation: partnersSliderTimer 4.8s linear forwards;
}

.slider__timer--revert {
    -webkit-animation: partnersSliderTimerRevert .275s linear forwards;
    animation:partnersSliderTimerRevert .275s linear forwards;
}

@-webkit-keyframes partnersSliderTimer{
    0% {
        stroke-dashoffset:119.3808
    }
    to {
        stroke-dashoffset:0
    }
}

@keyframes partnersSliderTimer{
    0% {
        stroke-dashoffset: 119.3808
    }
    to {
        stroke-dashoffset:0
    }
}

@-webkit-keyframes partnersSliderTimerRevert {
    0% {
        stroke-dashoffset: 0
    }
    to {
        stroke-dashoffset: -119.3808
    }
}

@keyframes partnersSliderTimerRevert {
    0% {
        stroke-dashoffset: 0 }
    to {
        stroke-dashoffset: -119.3808
    }
}
