/*!
 * Banner v1.0.0 (http://www.wse-ltd.com)
 * Copyright 2015 Works Software & Engineering Limited
 * 
 */
/*! banner.css  */

.banner {
    position: relative;
    margin-bottom: 4px;
}

.banner-inner {
    position: relative;
    overflow: hidden;
    width: 100%;
}

    .banner-inner > .item {
        display: none;
        position: relative;
        -webkit-transition: 0.6s ease-in-out left;
        -o-transition: 0.6s ease-in-out left;
        transition: 0.6s ease-in-out left;
    }

        .banner-inner > .item > img,
        .banner-inner > .item > a > img {
            line-height: 1;
        }

@media all and (transform-3d), (-webkit-transform-3d) {
    .banner-inner > .item {
        -webkit-transition: -webkit-transform 0.6s ease-in-out;
        -o-transition: -o-transform 0.6s ease-in-out;
        transition: transform 0.6s ease-in-out;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        perspective: 1000px;
    }

        .banner-inner > .item.next,
        .banner-inner > .item.active.right {
            -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
            left: 0;
        }

        .banner-inner > .item.prev,
        .banner-inner > .item.active.left {
            -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
            left: 0;
        }

            .banner-inner > .item.next.left,
            .banner-inner > .item.prev.right,
            .banner-inner > .item.active {
                -webkit-transform: translate3d(0, 0, 0);
                transform: translate3d(0, 0, 0);
                left: 0;
            }
}

.banner-inner > .active,
.banner-inner > .next,
.banner-inner > .prev {
    display: block;
}

.banner-inner > .active {
    left: 0;
}

.banner-inner > .next,
.banner-inner > .prev {
    position: absolute;
    top: 0;
    width: 100%;
}

.banner-inner > .next {
    left: 100%;
}

.banner-inner > .prev {
    left: -100%;
}

    .banner-inner > .next.left,
    .banner-inner > .prev.right {
        left: 0;
    }

.banner-inner > .active.left {
    left: -100%;
}

.banner-inner > .active.right {
    left: 100%;
}

.banner-control {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 15%;
    opacity: 0.5;
    filter: alpha(opacity=50);
    font-size: 20px;
    color: #ffffff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

    .banner-control.left {
        background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
        background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
        background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
        background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
        background-repeat: repeat-x;
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
    }

    .banner-control.right {
        left: auto;
        right: 0;
        background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
        background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
        background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
        background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
        background-repeat: repeat-x;
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
    }

    .banner-control:hover,
    .banner-control:focus {
        outline: 0;
        color: #ffffff;
        text-decoration: none;
        opacity: 0.9;
        filter: alpha(opacity=90);
    }

    .banner-control .icon-prev,
    .banner-control .icon-next,
    .banner-control .glyphicon-chevron-left,
    .banner-control .glyphicon-chevron-right {
        position: absolute;
        top: 50%;
        margin-top: -10px;
        z-index: 5;
        display: inline-block;
    }

    .banner-control .icon-prev,
    .banner-control .glyphicon-chevron-left {
        left: 50%;
        margin-left: -10px;
    }

    .banner-control .icon-next,
    .banner-control .glyphicon-chevron-right {
        right: 50%;
        margin-right: -10px;
    }

    .banner-control .icon-prev,
    .banner-control .icon-next {
        width: 20px;
        height: 20px;
        line-height: 1;
        font-family: serif;
    }

        .banner-control .icon-prev:before {
            content: '\2039';
        }

        .banner-control .icon-next:before {
            content: '\203a';
        }

.banner-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    z-index: 15;
    width: 60%;
    margin-left: -30%;
    padding-left: 0;
    list-style: none;
    text-align: center;
}

    .banner-indicators li {
        display: inline-block;
        width: 10px;
        height: 10px;
        margin: 1px;
        text-indent: -999px;
        border: 1px solid #777777;
        border-radius: 10px;
        cursor: pointer;
        background-color: #000 \9;
        background-color: rgba(0, 0, 0, 0);
    }

    .banner-indicators .active {
        margin: 0;
        width: 12px;
        height: 12px;
        background-color: #777777;
    }

.banner-caption {
    position: absolute;
    left: 1%;
    right: 1%;
    bottom: 20px;
    z-index: 10;
    padding-top: 20px;
    color: #000000;
    text-align: left;
}

    .banner-caption .btn {
        text-shadow: none;
    }

    .banner-caption h1 {
        color: #464848;
        text-shadow: none;
    }

    .banner-caption .lead {
        color: #000000;
        display: block;
        font-size: 18px;
        margin-bottom: 17px;
        line-height: 24px;
        text-shadow: none;
    }

.ws-banner {
    background-color: rgb(41, 165, 222);
    display: block;
    padding: 10px;
    margin-bottom: 0px !important;
    position: absolute;
    width: 220px;
    right: 0;
    bottom: 20px;
    z-index: 10;
    padding-top: 5px;
    color: #000000;
    text-align: left;
}

.ws-banner-demo {
    background-color: #89c402;
    display: block;
    padding: 10px;
    margin-bottom: 0px !important;
    position: absolute;
    width: 220px;
    right: 0;
    bottom: 120px;
    z-index: 10;
    padding-top: 5px;
    color: #000000;
    text-align: left;
}

.info-bg {
    background: #e9e9e9 url(images/tiny_grid.png) repeat 0 0;
}

.product-display {
    box-shadow: 3px 3px 13px 0px #888888;
    margin: auto;
}

.margin-25 {
    margin: 40px 25px;
}

.font-27 {
    font-size: 27px;
}

.download-link {
    vertical-align: bottom;
    margin-left: 5px;
    font-size: 12px;
}

.product-main-image {
    display: block;
    margin: 30px auto;
    text-align: center;
}

.product-screenshot {
    padding: 10px 10px 15px 15px;
}

.product-back {
    background:white;
    min-height:340px;
    padding-top: 50px;
}

.product-back-nopad {
    background:white;
    min-height:340px;
    padding-top: 0;
}

.product-usage {
    display:block; 
    margin:30px auto;
    text-align:center;
}

.banner-bpts {
    padding-bottom: 4px;
    padding-left: 15px;
    text-align: left;
}

.featurette-heading {
    margin-top: 40px;
}

/* Offer */
.banner-offer {
    text-align: center;
    background: transparent;
    padding-bottom: 4px;
    padding-left: 40px;
}

    .banner-offer .icon {
        margin-bottom: 8px;
    }

    .banner-offer h4 {
        padding: 0 5px;
    }

    .banner-offer hr {
        width: 25px;
        height: 2px;
        background-color: rgb(41, 165, 222);
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .banner-offer p {
        padding-bottom: 3px;
    }

/* Banner */
@media (min-width: 200px) {
    .banner-mobile {
        height: 200px;
    }

    @media (min-width: 768px) {
        .banner-mobile {
            height: 273px;
            width: 100%;
        }
    }
}

@media (min-width: 200px) {
    .banner-offer {
        padding-left: 0px;
    }

    @media (min-width: 768px) {
        .banner-offer {
            padding-left: 40px;
        }
    }
}

@media (min-width: 200px) {
    .ms-azure {
        visibility: hidden;
    }

    @media (min-width: 768px) {
        .ms-azure {
            visibility: visible;
        }
    }
}

@media (min-width: 200px) {
    .demo-box {
        width: 250px;
        bottom: 5px;
        font-size: 14px;
    }

    @media (min-width: 768px) {
        .demo-box {
            width: 220px;
            bottom: 120px;
            font-size: inherit;
        }
    }
}

@media (min-width: 200px) {
    .banner-bpts {
        padding-left: 0px;
    }

    @media (min-width: 768px) {
        .banner-bpts {
            padding-left: 15px;
        }
    }
}

@media screen and (min-width: 768px) {
    .banner-control .glyphicon-chevron-left,
    .banner-control .glyphicon-chevron-right,
    .banner-control .icon-prev,
    .banner-control .icon-next {
        width: 30px;
        height: 30px;
        margin-top: -15px;
        font-size: 30px;
    }

    .banner-control .glyphicon-chevron-left,
    .banner-control .icon-prev {
        margin-left: -15px;
    }

    .banner-control .glyphicon-chevron-right,
    .banner-control .icon-next {
        margin-right: -15px;
    }

    .banner-caption {
        left: 2%;
        right: 2%;
        padding-bottom: 0px;
        padding-top: 0px;
        max-width: 340px;
        top: 0px;
    }

    .banner-indicators {
        bottom: 20px;
    }
}

@media screen and (min-width: 992px) {
    .banner-control .glyphicon-chevron-left,
    .banner-control .glyphicon-chevron-right,
    .banner-control .icon-prev,
    .banner-control .icon-next {
        width: 30px;
        height: 30px;
        margin-top: -15px;
        font-size: 30px;
    }

    .banner-control .glyphicon-chevron-left,
    .banner-control .icon-prev {
        margin-left: -15px;
    }

    .banner-control .glyphicon-chevron-right,
    .banner-control .icon-next {
        margin-right: -15px;
    }

    .banner-caption {
        left: 2%;
        right: 2%;
        padding-bottom: 30px;
        max-width: 400px;
        top: 20px;
    }

    .banner-indicators {
        bottom: 20px;
    }
}

@media screen and (min-width: 100px) {

    .banner-caption {
        bottom: 0px;
    }
}

@media screen and (min-width: 100px) {

    .banner-caption-mobile {
        bottom: 20px;
    }
}
