.pteunsw-site-carousel-wrapper {
    display: none;
}

@media (min-width: 768px) {
    .pteunsw-site-carousel-wrapper {
        position: relative;
        top: 0;
        /*z-index: 1;*/
        width: 100%;
        display: block;
        margin-bottom: 30px;
    }

    .pteunsw-site-carousel {
        position: relative;
        top: 20px;
        display: block;
        overflow: hidden;
        width: 300px;
        height: 176px;
        margin: auto;
        right: 215px;
        box-shadow: 2px 2px 2px rgb(100, 100, 100);
    }

    .pteunsw-site-carousel .carousel-control {
        background-image: none !important;
    }

    .carousel .carousel-inner {
        position: relative;
        top: 0;
        left: 0;
    }

    .carousel .carousel-indicators {
        position: absolute;
        bottom: 5px;
        margin-left: -50%;
        z-index: 5;
        width: 100%;
    }

    .carousel .carousel-indicators li {
        text-align: center;
        list-style-type: none !important;
        margin: 0 1px;
        width: 15px;
        height: 15px;
        border: 0;
        background-color: rgb(150, 150, 150);
        box-shadow: 3px 3px 3px rgb(33, 33, 33);
    }

    .carousel .carousel-indicators li.active {
        border: 0;
        background-color: #fff;
    }

    .carousel .item {
        z-index: 1;
        margin-top: 0;
    }

    .carousel .item .image {
        z-index: 9;
        position: absolute;
        top: 0;
    }

    .carousel-control {
        z-index: 10;
        position: absolute;
        width: 30px;
        margin-top: 60px;
        height: 20px;
        font-size: 4em;
    }

    .left.carousel-control {
        top: 0;
        left: 10px;
        font-size: 3em;
    }

    .right.carousel-control {
        top: 0;
        right: 10px;
        font-size: 3em;
    }

    .carousel-control i {
        color: rgba(255, 255, 255, 1);
        opacity: 1;
    }
}

@media (min-width: 1024px) {
    .carousel .item .image {
        left: 0;
    }

    .pteunsw-site-carousel {
        width: 560px;
        height: 330px;
    }

    .carousel-control {
        z-index: 10;
        position: absolute;
        width: 30px;
        margin-top: 140px;
        height: 20px;
        font-size: 4em;
    }
}

@media (min-width: 1025px) {
    .carousel .item .image {
        left: 0;
    }

    .pteunsw-site-carousel {
        right: 290px;
    }
}

/* fade on slider */
.carousel-fade .carousel-inner .item {
    opacity: 0;
    transition-property: opacity;
}

.carousel-fade .carousel-inner .active {
    opacity: 1;
}

.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    left: 0;
    opacity: 0;
    z-index: 1;
}

.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
    opacity: 1;
}

@media all and (transform-3d), (-webkit-transform-3d) {
    .carousel-fade .carousel-inner > .item.next,
    .carousel-fade .carousel-inner > .item.active.right {
        opacity: 0;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .carousel-fade .carousel-inner > .item.prev,
    .carousel-fade .carousel-inner > .item.active.left {
        opacity: 0;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .carousel-fade .carousel-inner > .item.next.left,
    .carousel-fade .carousel-inner > .item.prev.right,
    .carousel-fade .carousel-inner > .item.active {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}