/*----  Image Slider ----*/
.power_imagecarousel_content{
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    background: transparent;
    border-radius: 0px 0px 0px 0px;
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: #222;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.power_imagecarousel_content .power_imagecarousel_item{
    text-align: center;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    border-radius: 0px 0px 0px 0px;
    border-width: 0px 0px 0px 0px;
    border-style: solid;
    border-color: #222;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.power_imagecarousel_content .owl-carousel .owl-item img,
.power_imagecarousel_content .power_imagecarousel_item img{
    width: auto;
    margin: 0 auto;
}

/*--------- power_imagecarousel Carousel Dots --------*/
.power_imagecarousel .owl-dots {
  position: relative;
  text-align: center; 
}
.power_imagecarousel .owl-dots .owl-dot {
    margin: 0px 7px;
    border-radius: 100%;
    border: 1px solid transparent;
    width: 20px;
    height: 20px;
    background: transparent;
    cursor: pointer;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.power_imagecarousel .owl-dots .owl-dot span{
    width: 8px;
    height: 8px;
    background: #d6d6d6;
    border-radius: 100%;
    display: block;
    margin: 0 auto;
}
.power_imagecarousel .owl-dots .owl-dot.active, 
.power_imagecarousel .owl-dots .owl-dot:hover {
    border: 1px solid #0092ff;
    outline: none;
}
.power_imagecarousel .owl-dots .owl-dot:focus{
    outline: none;
}
.power_imagecarousel .owl-dots .owl-dot.active span, 
.power_imagecarousel .owl-dots .owl-dot:hover span {
    background: #0092ff;
}