/* -------------------- Carousels -------------------- */
/* * * Carousel * * */
.b-carousel {
    position: relative;
    width: auto;
}

.b-carousel__padding {
    padding-left: 32px;
    padding-right: 32px;
}

/* * * Carousel :: no js * * */
.b-carousel {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -moz-box;
    display: flex;
    position: relative;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    letter-spacing: -6px;
}

.b-carousel > .b-carousel_item {
    display: inline-block;
    vertical-align: top;
    letter-spacing: normal;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* * * Carousel :: js * * */
.b-carousel.owl-carousel,
.b-related .carousel-tabs_new{
    letter-spacing: normal;
}

.b-carousel.owl-carousel.owl-drag .owl-stage,
.b-related .carousel-tabs_new.owl-drag .owl-stage {
    cursor: move;
}

.b-carousel.owl-carousel.owl-drag.owl-drag-no-cursor .owl-stage,
.b-related .carousel-tabs_new.owl-drag.owl-drag-no-cursor .owl-stage {
    cursor: inherit !important;
}

.b-carousel.owl-carousel.flex,
.b-related .carousel-tabs_new.flex {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: auto !important;
}

.b-carousel.owl-carousel .b-carousel_item[class*="col-"] ,
.b-related .carousel-tabs_new .owl-item > [class*="col-"] {
    display: block;
    float: none;
    width: auto;
    padding-left: 0;
    padding-right: 0;
}
.b-related .carousel-tabs_new .label-ring{
    margin-bottom: 5px;
    padding: 7px 16px;
    font: 900 12px/1 'Roboto', sans-serif;
    text-transform: uppercase;
    color: #fff;
    background: #1fa6a3;
    border: none;
    position: absolute;
    z-index: 18;
    top: 12px;
    left: 0;
    display: inline-flex;
    right: auto;
    pointer-events: none;
    width: auto;
}

.b-carousel__barrel .owl-stage-outer {
    overflow: visible;
}

.b-carousel__barrel .owl-stage-outer .owl-item {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 250ms, visibility 250ms;
    -o-transition: opacity 250ms, visibility 250ms;
    transition: opacity 250ms, visibility 250ms;
}

.b-carousel__barrel .owl-stage-outer .owl-item.active {
    opacity: 1;
    visibility: visible;
}

.b-carousel__with_shadows.owl-carousel,
.b-carousel__with_shadows.owl-carousel.flex {
    margin: -6px -5px;
}

.b-carousel__with_shadows.owl-carousel .b-carousel_item,
.b-carousel__with_shadows.owl-carousel .b-carousel_item[class*="col-"] {
    padding: 6px 5px;
}

/* * * Carousel :: js * * */
.b-carousel.owl-carousel {
    letter-spacing: normal;
}

.b-carousel.owl-carousel .owl-nav.disabled,
.b-carousel.owl-carousel .b-carousel_arrow.disabled,
.b-carousel.owl-carousel .b-carousel_paging.disabled {
    display: none;
}

/* * * Carousel :: arrows * * */
.b-carousel_arrow {
    position: absolute;
    z-index: 25;
    top: 50%;
    margin-top: -6px;
    width: 27px;
    height: 12px;
    font-size: 12px;
    line-height: 1;
    color: #bebebe; /*padding: 0; background: none; border: none; */
    -webkit-transition: all 250ms;
    -o-transition: all 250ms;
    transition: all 250ms;
    cursor: pointer;
}

.b-carousel_arrow:before {
    display: block;
    position: relative;
    width: inherit;
    height: inherit;
    font-size: inherit;
    line-height: inherit;
}

.b-carousel_arrow:hover {
    color: #1fa6a3;
}

.b-carousel_arrow__prev {
    left: 0;
}

.b-carousel_arrow__next {
    right: 0;
}

.b-carousel_arrow.disabled {
    opacity: 0 !important;
    visibility: hidden !important;
}

/* * * Carousel :: paging * * */
.b-carousel_paging {
    position: relative;
    margin-top: 10px;
    height: 6px;
    line-height: 6px;
    white-space: nowrap;
    text-align: center;
    counter-reset: pagination;
}

.b-carousel_paging_bullet {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    margin: 0 6px; /*padding: 0; background: none; border: none; */
    -webkit-transition: all 250ms;
    -o-transition: all 250ms;
    transition: all 250ms;
}

.b-carousel_paging_bullet span {
    display: block;
    width: 12px;
    height: 6px;
    background: #1fa6a3;
    border: none;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-transition: all 250ms;
    -o-transition: all 250ms;
    transition: all 250ms;
    cursor: pointer;
}

.b-carousel_paging_bullet span:hover {
    background: #000 !important;
}

.b-carousel_paging_bullet.active span {
    background: #000 !important;
}

/* * * Carousel :: progress bar * * */
.b-carousel_progress_bar {
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, .5);
}

.b-carousel_progress_bar_line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: #fe6913;
    -webkit-animation: progressBar linear;
    -o-animation: progressBar linear;
    animation: progressBar linear;
}

@-webkit-keyframes progressBar {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@-o-keyframes progressBar {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes progressBar {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}