/** ORIGIN BASE CSS **/

.tns-outer {
    padding: 0 !important;
}
.tns-outer [hidden] {
    display: none !important;
}
.tns-outer [aria-controls],
.tns-outer [data-action] {
    cursor: pointer;
}
.tns-slider {
    -webkit-transition: all 0s;
    -moz-transition: all 0s;
    transition: all 0s;
}
.tns-slider > .tns-item {
    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 STYLES
/** ========================================= **/
.tiny-slider .box{position: relative;}

/* controls */
.tiny-slider .controls{
    color: #072869;
    outline: none;
}
.tiny-slider .controls li{
    position: absolute;
    top: 0;
    cursor: pointer;
    outline: none;
    z-index: 1;
    width: 40px;
    height: 100%;
    display: inline-block;
    font-size: 0;
    user-select: none;
    text-align: center;
    background-color: var(--white);
    background-repeat: no-repeat;
    background-size: 10px;
    background-position: center;
    opacity: 0.5;
}
.tiny-slider .controls li:hover{
    color: #e72d2b; opacity: 1;
}
.tiny-slider .controls li.next{
    right: -40px;
    background-image: url('data:image/svg+xml, <svg width="7" height="9" viewBox="0 0 7 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.04395 0.828247L5.32294 4.39407L1.04394 7.9599" stroke="#798196" stroke-width="1.5"/></svg>');
}
.tiny-slider .controls li.prev{
    left: -40px;
    background-image: url('data:image/svg+xml, <svg width="7" height="9" viewBox="0 0 7 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.04395 0.828247L5.32294 4.39407L1.04394 7.9599" stroke="#798196" stroke-width="1.5"/></svg>');
    transform: rotate(180deg);
}
.tiny-slider .autoplay{
    display: none;
}


/* thumbnails */
.tiny-slider .thumbnails{
    text-align: center;
    margin-top: 10px;
}
.tiny-slider .thumbnails li{
    display: inline-block;
    padding: 3px;
    outline: none;
}
.tiny-slider .thumbnails img{
    width: 40px;
    height: 40px;
    padding: 2px;
    border: 2px solid transparent;
    border-radius: 3px;
    object-fit: cover;
    object-position: center;
    cursor: pointer;
}
.tiny-slider .thumbnails .tns-nav-active img{
    border-color: #9696ff;
    cursor: default;
}

.tiny-slider .tns-nav{display: none;}
.tiny-slider .tns-nav button{
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 0;
    background-color: #072869;
    margin: 4px;
    padding: 0;
}
.tiny-slider .tns-nav button.tns-nav-active{background-color: #e72d2b;}
.tiny-slider .slide_counter{
    position: absolute;
    left: 20px;
    bottom: 9px;
    color: var(--white);
    font-size: 1.3em;
    text-shadow: 1px 1px 1px #0000005e;
}
/* cover parent area */
.tiny-slider.cover .box,
.tiny-slider.cover .tns-outer,
.tiny-slider.cover .tns-ovh,
.tiny-slider.cover .tns-inner,
.tiny-slider.cover .slides,
.tiny-slider.cover .tns-item{
    height: 100%!important;
}

@media(max-width: 765px){
    .tiny-slider .box{padding: 0;}
}