﻿.orbit-container {
    background: none;
    overflow: hidden;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    top: 0;
    left: 0;
}

    .orbit-container .orbit-slides-container {
        list-style: none;
        margin: 0 auto;
        padding: 0;
        position: relative;
        -webkit-transform: translateZ(0);
        -moz-transform: translateZ(0);
        -ms-transform: translateZ(0);
        -o-transform: translateZ(0);
        transform: translateZ(0);
    }

        .orbit-container .orbit-slides-container > *:first-child {
            margin-left: 0;
        }

        .orbit-container .orbit-slides-container > * {
            position: absolute;
            top: 0;
            width: 100%;
            margin-left: 100%;
        }

.orbit-container .orbit-slides-container img {
    display: block;
    max-width: 100%;
}

.orbit-container .orbit-slides-container > * .orbit-caption {
    bottom: 0;
    position: absolute;
    background-color: rgba(51, 51, 51, 0.8);
    color: #FFFFFF;
    font-size: 0.77778rem;
    padding: 0.55556rem 0.77778rem;
    width: 100%;
}

.orbit-container .orbit-prev {
    left: 0;
    border-radius: 0 30px 30px 0;
}

.orbit-container .orbit-prev, .orbit-container .orbit-next {
    background-color: transparent;
    color: white;
    height: 60px;
    line-height: 50px;
    margin-top: -25px;
    position: absolute;
    text-indent: -9999px !important;
    top: 45%;
    width: 36px;
    z-index: 10;
}

    .orbit-container .orbit-prev:hover, .orbit-container .orbit-next:hover {
        background: -moz-linear-gradient(top, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.4) 1%, rgba(0,0,0,0.4) 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0.4)), color-stop(1%,rgba(0,0,0,0.4)), color-stop(100%,rgba(0,0,0,0.4))); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, rgba(0,0,0,0.4) 0%,rgba(0,0,0,0.4) 1%,rgba(0,0,0,0.4) 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top, rgba(0,0,0,0.4) 0%,rgba(0,0,0,0.4) 1%,rgba(0,0,0,0.4) 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top, rgba(0,0,0,0.4) 0%,rgba(0,0,0,0.4) 1%,rgba(0,0,0,0.4) 100%); /* IE10+ */
        background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%,rgba(0,0,0,0.4) 1%,rgba(0,0,0,0.4) 100%); /* W3C */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#66000000', endColorstr='#66000000',GradientType=0 ); /* IE6-9 */
    }

    .orbit-container .orbit-prev > span, .orbit-container .orbit-next > span {
        border: inset 10px;
        display: block;
        height: 0;
        margin-top: -10px;
        position: absolute;
        top: 50%;
        width: 0;
    }

    .orbit-container .orbit-prev > span {
        border-right-style: solid;
        border-color: transparent;
        border-right-color: #FFFFFF;
        left: -3px;
    }

    .orbit-container .orbit-next > span {
        border-color: transparent;
        border-left-style: solid;
        border-left-color: #FFFFFF;
        margin-left: -4px;
        right: -3px;
    }

.orbit-container .orbit-timer {
    position: absolute;
    top: 12px;
    right: 10px;
    height: 6px;
    width: 100px;
    z-index: 10;
}

.orbit-container .orbit-slide-number span {
    font-weight: 700;
    padding: 0.27778rem;
}

.orbit-bullets-container {
    text-align: center;
}

.orbit-bullets {
    display: block;
    float: none;
    margin: 0 auto 30px auto;
    overflow: hidden;
    position: relative;
    text-align: center;
    top: 10px;
}

    .orbit-bullets li {
        background: #CCCCCC;
        cursor: pointer;
        display: inline-block;
        float: none;
        height: 0.5rem;
        margin-right: 6px;
        width: 0.5rem;
        border-radius: 1000px;
    }

.orbit-container .orbit-next {
    right: 0;
    border-radius: 30px 0 0 30px;
}

.orbit-container span.text {
    z-index: 6;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    color: #fff;
}

.orbit-container a.button {
    background: #fff;
    margin: 10px 20px 20px 0;
    padding: 10px 15px;
    font-weight: normal;
    font-size: 16px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
    color: #666;
    text-align: center;
    opacity: .8;
    box-shadow: 0 0 5px #000;
}

    .orbit-container a.button:last-of-type {
        margin-right: 0;
    }

    .orbit-container a.button:hover {
        opacity: 1;
        color: #007dc6;
        box-shadow: 0 0 10px #000;
    }

/***** ALIGNING SLIDER-TEXT *****/

span.text span {
    display: block;
}

/*left aligned slider-text*/
.left span.text {
    background: -moz-linear-gradient(left, rgba(0,0,0,0.51) 0%, rgba(0,0,0,0) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(0,0,0,0.51)), color-stop(100%,rgba(0,0,0,0))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(left, rgba(0,0,0,0.51) 0%,rgba(0,0,0,0) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(left, rgba(0,0,0,0.51) 0%,rgba(0,0,0,0) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(left, rgba(0,0,0,0.51) 0%,rgba(0,0,0,0) 100%); /* IE10+ */
    background: linear-gradient(to right, rgba(0,0,0,0.51) 0%,rgba(0,0,0,0) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#82000000', endColorstr='#00000000',GradientType=1 ); /* IE6-9 */
}

    .left span.text span {
        padding: 0 40% 0 40px;
    }

@media only screen and (max-width:1199px) {
    .left span.text span {
        padding: 0 40px;
    }
}

/*right aligned slider-text*/
.right span.text {
    background: -moz-linear-gradient(right, rgba(0,0,0,0.51) 0%, rgba(0,0,0,0) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, right top, left top, color-stop(0%,rgba(0,0,0,0.51)), color-stop(100%,rgba(0,0,0,0))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(right, rgba(0,0,0,0.51) 0%,rgba(0,0,0,0) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(right, rgba(0,0,0,0.51) 0%,rgba(0,0,0,0) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(right, rgba(0,0,0,0.51) 0%,rgba(0,0,0,0) 100%); /* IE10+ */
    background: linear-gradient(to left, rgba(0,0,0,0.51) 0%,rgba(0,0,0,0) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#82000000',GradientType=1 ); /* IE6-9 */
}

    .right span.text span {
        text-align: right !important;
        padding: 0 40px 0 40%;
    }

@media only screen and (max-width:1199px) {
    .right span.text span {
        padding: 0 40px;
    }
}

/*centre aligned slider-text*/
.center span.text {
    background: -moz-linear-gradient(left, rgba(0,0,0,0) 0%, rgba(0,0,0,0.51) 41%, rgba(0,0,0,0.51) 60%, rgba(0,0,0,0) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(0,0,0,0)), color-stop(41%,rgba(0,0,0,0.51)), color-stop(60%,rgba(0,0,0,0.51)), color-stop(100%,rgba(0,0,0,0))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(left, rgba(0,0,0,0) 0%,rgba(0,0,0,0.51) 41%,rgba(0,0,0,0.51) 60%,rgba(0,0,0,0) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(left, rgba(0,0,0,0) 0%,rgba(0,0,0,0.51) 41%,rgba(0,0,0,0.51) 60%,rgba(0,0,0,0) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(left, rgba(0,0,0,0) 0%,rgba(0,0,0,0.51) 41%,rgba(0,0,0,0.51) 60%,rgba(0,0,0,0) 100%); /* IE10+ */
    background: linear-gradient(to right, rgba(0,0,0,0) 0%,rgba(0,0,0,0.51) 41%,rgba(0,0,0,0.51) 60%,rgba(0,0,0,0) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#00000000',GradientType=1 ); /* IE6-9 */
}

    .center span.text span {
        text-align: center !important;
        padding: 0 20%;
    }

/*vertical slider-text alignment -- default is top*/
.top span.text span {
}

/*vertical slider-text alignment -- middle*/
.middle span.text span {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

/*vertical slider-text alignment -- bottom*/
.bottom span.text span {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
}

.orbit-container span.text h2,
.orbit-container span.text p {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0 0 15px 0;
    text-shadow: 0 0 4px #000;
    font-weight: 300;
}

.orbit-container span.text h2 {
    color: #fff;
    font-size: 5em;
}

.orbit-bullets li.active {
    background: #999999;
}

.sn-index-slider a.button {
    min-width: 200px;
}

.sn-index-slider .orbit-container span.text h2 {
    display: block;
    width: 62%;
}

@media only screen and (max-width:1399px) {
    .middle span.text span {
        top: 65%;
    }

    .sn-index-slider .orbit-container span.text h2 {
        width: 75%;
    }
}
