.elka_left{
    position: absolute;top:0px;height: 100%;background-color: #fff;z-index: 2;
}

.elka_bottom{
    position: absolute;width: 100%;bottom: 0px;margint-top:1px;z-index: 9;
}

.elka_btn{
    text-align: center;
    margin: auto auto 20px;
}
.elka_btn button{
    width: 90%;
    border: none;
    /*background:#83a7f0 !important;*/
    color: white;
    border-radius: 15px;
    padding: 5px;
    cursor: pointer;
    font-size: 8px;
    font-family: arial;
    font-weight: bold;
    text-transform: none;
    letter-spacing:normal;
    line-height: normal !important;
}

.elka_btn button:hover{
    background-image: linear-gradient(rgb(0 0 0/40%) 0 0) !important;
}
.elka_desc{color: #000;font-size: 11px;
    margin: 5px 5px 6px;
    font-weight: bold}

.elka_carousel-item{display: none;}

.elka_carousel-item.active{display: block}

    /* Parent wrapper to carousel. Width can be changed as needed. */
.carousel-wrapper {
    overflow: hidden;
    width: 100%;
    margin: auto;
    height: 100%;
}

/* Apply 'border-box' to 'box-sizing' so border and padding is included in the width and height. */
.carousel-wrapper * {
    box-sizing: border-box;
}

/* We'll be using the 'transform' property to move the carousel's items, so setting the 'transform-style' to 'preserve-3d' will make sure our nested elements are rendered properly in the 3D space. */
.carousel {
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

/* By default we're hiding items (except the initial one) until the JS initiates. Elements are absolutely positioned with a width of 100% (as we're styling for mobile first), letting the content's height dictate the height of the carousel. Our magic property here for all our animation needs is 'transition', taking the properties we wish to animate 'transform' and 'opacity', along with the length of time in seconds. */
.carousel__photo {
    /*opacity: 0;*/
    /*position: absolute;*/
    /*top:0;*/
    width: 100%;
    margin: auto;
    transition: transform .5s, opacity .5s, z-index .5s;
}

/* Set 'z-index' to sit behind our '.active' item. */
.carousel__photo.prev,
.carousel__photo.next {
    z-index: 800;
}

/* Translate previous item to the left */
.carousel__photo.prev {
    transform: translateX(-100%);
}

/* Translate next item to the right */
.carousel__photo.next {
    transform: translateX(100%);
}

/* Style navigation buttons to sit in the middle, either side of the carousel. */
.carousel__button--prev,
.carousel__button--next {
    position: absolute;
    width: 24px;
    height: 24px;
    background-color: #FFF;
    transform: translateY(-50%);
    border-radius: 50%;
    cursor: pointer;
    border:1px solid black;
    margin: 5px;
    /*  opacity: 0;  Hide buttons until carousel is initialised
      transition:opacity 1s;*/
}

.carousel__button--prev {
    left:0;
}

.carousel__button--next {
    right:0;
}

/* Use pseudo elements to insert arrows inside of navigation buttons */
.carousel__button--prev::after,
.carousel__button--next::after {
    content: " ";
    position: absolute;
    width: 10px;
    height: 10px;
    top: 50%;
    left: 54%;
    border-right: 2px solid black;
    border-bottom: 2px solid black;
    transform: translate(-50%, -50%) rotate(135deg);
}

.carousel__button--next::after {
    left: 47%;
    transform: translate(-50%, -50%) rotate(-45deg);
}


/*aaaa*/

.containerDot {
    text-align: center;
    padding-bottom: 15px;
    line-height: 1px !important;
    height: 11px;
    margin-top: -4px;
}
.containerDot .dot {
    background-color: #eee;
    border: 0px solid #666;
    border-radius: 5px;

    display: inline-block;
    height: 5px;
    width: 5px;
    cursor: pointer;
    margin-right: 2px;
}
.containerDot .dot.active {
    background-color:#bec7d6;
    box-shadow: inset 2px 0px 2px -2px #333;
}

.videoAdLightContainer_fixed .elka_btn button {font-size: 8px;padding: 1px}
.videoAdLightContainer_fixed .containerDot .dot{width: 6px;height: 6px}
.videoAdLightContainer_fixed .containerDot {padding-bottom: 5px;}
.videoAdLightContainer_fixed .elka_desc {display: none}