.unslider {
    overflow: auto;
    margin: 0;
    padding: 0;
    position: relative;
}
.unslider img{float: left;margin: 0!important;}

.unslider-wrap {
    position: relative;
}

.simple-slider-wrap{    max-width: 100%;  }

.unslider-wrap.unslider-carousel > li {
    float: left;
    height:100%;
}

.unslider-vertical > ul {
    height: 100%
}

.unslider-vertical li {
    float: none;
    width: 100%
}

.unslider-fade {
    position: relative
}

.unslider-fade .unslider-wrap li {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    z-index: 8
}

.unslider-fade .unslider-wrap li.unslider-active {
    z-index: 10
}

.unslider li, .unslider ol, .unslider ul {
    list-style: none;
    margin: 0;
    padding: 0;
    border: none
}

.unslider-arrow {
    position: absolute;
    left: 20px;
    z-index: 2;
    cursor: pointer;
    top: 0;
    bottom: 0;
    margin: auto;
    color: #FFF;
    height: 48px;
    font-size: 40px;
}

.unslider-arrow.next {
    left: auto;
    right: 20px
}

/* dots */
.unslider-nav ol {
    list-style: none;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.unslider-nav ol li {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 4px;
    background: transparent;
    border-radius: 5px;
    overflow: hidden;
    text-indent: -999em;
    border: 2px solid #FFF;
    cursor: pointer;
}

.unslider-nav ol li.unslider-active {
    background: #FFF;
    cursor: default;
}

/* Custom changes */
.unslider-carousel > li {
    position: relative
}

.unslider .caption {
    position: absolute;
    width: 100%;
    box-sizing: border-box;
    bottom: 0;
    padding: 10px 20px 20px;
    background: rgba(0, 0, 0, .2);
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
    color: #FFF;
    text-align: center
}

.unslider .caption.left,
.unslider .caption.center,
.unslider .caption.right {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: left;

}
.unslider .caption.center{
    text-align: center;
    height: 100%;
    background: none!important;
}

.unslider .caption.left {
    width: 40%;
    left: 0;
    top: 0;
    bottom: 0;
}

.unslider .caption.right {
    width: 40%;
    right: 0;
    top: 0;
    bottom: 0;
}

.unslider .caption.left {
}

.unslider .caption h2 {
    padding: 0!important;
    margin-bottom: .5em
}

.unslider .caption a {
    color: #FFF
}

.unslider .caption .more-link {
    margin-bottom: 0
}

.unslider-carousel,
.container-wide .unslider ul li,
.unslider .srs-preview ul li,
.image-bg {
    height: 100%
}

.image-bg {
    display: block;
    background-repeat: no-repeat;
    background-size: cover
}


.unslider .caption .more-link {
    display: none
}

/*@todo replace below two lines with a loader*/
.srs-slider {
    position: relative
}

.srs-slider:before {
    content: "\73";
    font-family: swift-icons;
    text-align: center;
    display: block;
    position: absolute;
    width: 100%;
    font-size: 48px;
    height: 48px;
    line-height: 48px;
    top: 0;
    bottom: 0;
    margin: auto;
    background: -webkit-linear-gradient(#FFF200, #0073FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.srs-slider ul > li {
    display: none
}

.unslider-wrap > li {
    display: inline !important
}

@media only screen and (max-width: 768px) {
    .unslider-arrow {
        height: 24px;
        font-size: 20px;

    }

    .unslider .caption {
        font-size: .7em
    }

    .unslider .caption p {
        display: none
    }

    .srs-slider {
        height: auto;
    }
}

/*
   Spinner code taken from https://codepen.io/appalaszynski/pen/erGjqR?page=1&
*/
.animate-spin,
.srs-slider:before {
    content: "";
    box-sizing: border-box;
    height: 5vw;
    width: 5vw;
    max-width: 60px;
    max-height: 60px;
    border-radius: 50%;
    border: 3px solid #333;
    border-top-color: #FFF200;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    animation: spinner 0.7s linear infinite;
}

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