﻿.container {
    width: auto;
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.carousel-inner > .item {
    position: relative;
    display: none;
    background-color: #777;
    -webkit-transition: .6s ease-in-out left;
    -o-transition: .6s ease-in-out left;
    transition: .6s ease-in-out left;
}
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
    line-height: 1;
    top: 0;
    left: 0;
}
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
    display: block;
}
.carousel-inner > .active {
    left: 0;
}
.carousel-inner > .next,
.carousel-inner > .prev {
    position: absolute;
    top: 0;
    width: 100%;
}
.carousel-inner > .next {
    left: 100%;
}
.carousel-inner > .prev {
    left: -100%;
}
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
    left: 0;
}
.carousel-inner > .active.left {
    left: -100%;
}
.carousel-inner > .active.right {
    left: 100%;
}
.controlsBlock {
    position: absolute;
    display: inline-block;
    width: 150px;
    margin: 0 20px;
    z-index: 1;
/*    height: 24px;*/
    text-align: center;
    cursor: pointer;
}
.controls {
    position: relative;
    display: block;
}
.carousel-control {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #000000;
    font-size: 5px;
    background: none !important;
    color: #000 !important;
    text-align: center;
}
.carousel-control i {
    font-size: 6px;
}
.carousel-control.left {
    left: 0px;
    top: 40%;
}
.carousel-control.right {
    right: 0px;
    top: 40%;
}
.carousel-control:hover,
.carousel-control:focus {
    color: #000;
}
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
    position: absolute;
    z-index: 5;
    display: inline-block;
}
.carousel-control .glyphicon-chevron-left {
    left: 0;
}
.carousel-control .glyphicon-chevron-right {
    right: 0;
}
.carousel-indicators {
    position: relative;
    bottom: 0;
    z-index: 15;
    padding-left: 0;
    text-align: center;
    list-style: none;
}
.carousel-indicators li {
    display: inline-block;
    zoom: 1;
    width: 6px;
    height: 6px;
    margin: 0 2px;
    background: transparent;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 1px solid transparent;
    -webkit-box-shadow: rgba(0, 0, 0, 0.5) 0 0 2px;
    -moz-box-shadow: rgba(0, 0, 0, 0.5) 0 0 2px;
    box-shadow: rgba(0, 0, 0, 0.5) 0 0 2px;
}
.carousel-indicators .active {
    width: 6px;
    height: 6px;
    margin: 0 2px;
    background-color: #eee;
}
.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 20px;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
}
.carousel-caption .btn {
    text-shadow: none;
}
@media screen and (min-width: 768px) {
    .carousel {
        max-width: 740px;
    }
    .carousel-control .glyphicon-chevron-left,
    .carousel-control .glyphicon-chevron-right,
    .carousel-control .icon-prev,
    .carousel-control .icon-next {
        font-size: 6px;
        top: 110%;
    }
    .carousel-caption {
        right: 20%;
        left: 20%;
    }
    .carousel-indicators {
        bottom: .0;
    }
    .carousel-control.left {
    left: 0px;
    top: 40%;
	}
	.carousel-control.right {
    right: 0px;
    top: 40%;
	}
}
