﻿
.coming-soon-ctr {
    position:absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
}

.coming-soon-lbl {
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    text-align:center;
    width:100%;
    background-color:rgba(0,0,0,0.5);
    padding-bottom:10px;
}

.glyphicon-chevron-left {
    background-image: url('../images/left.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.glyphicon-chevron-left:before {
    content: '';
}

.glyphicon-chevron-right {
    background-image: url('../images/right.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.glyphicon-chevron-right:before {
    content: '';
}

.carousel-inner {
    position: absolute !important;
    top:50px;
    bottom: 20px;
}

.item {
    height: 100% !important;
}

.slidesContainer {
    width: 100%;
    height: 100%;
}

#mainScroller {
    position: absolute !important;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.slide {
    width:100%;
    height:100% !important;
    object-fit:cover;
    object-position:center;
}

.animateSlideOff {
    animation-name:slideOff;
    animation-duration:1s;
    animation-delay:2s;
    animation-fill-mode:forwards;
}

.animateSlideOn {
    animation-name:slideOn;
    animation-duration:1s;
    animation-delay:2s;
    animation-fill-mode:forwards;
}

@keyframes slideOff {
    0% {
            transform:translateX(0%);
    }
    100% {
            transform:translateX(-100%);
    }
}

@keyframes slideOn {
    0% {
            transform:translateX(100%);
    }
    100% {
            transform:translateX(0%);
    }
}



@media (max-width: 768px) {
    .slideImg {
        max-width:none;
        height:100%;
    }

    .carousel-caption {
        display:none;
    }
}