/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
    width: 100%;
    position: absolute;
    top: 50%;
    margin-top: -27px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 14px;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px;
}

.owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default;
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 10px;
}
.owl-carousel-vertical.owl-theme {
    padding-left: 50px; /* отступ слева для навигационных точек */
}
.owl-carousel-vertical.owl-theme .owl-dots {
    width: 50px;
    position: absolute;
    top: 10%;
/*    margin-top: -50px !important;*/
    margin-left: -50px; /* для выравнивание по левому краю */
}

.owl-theme .owl-dots {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
    -webkit-transition: width 0.3s;
    -moz-transition: width 0.3s;
    -o-transition: width 0.3s;
    transition: width 0.3s;
    width: 20px;
    display: inline-block;
    margin: 0 3px;
    zoom: 1;
}
.owl-theme .owl-dots .owl-dot.active {
    width: 40px;
}
.owl-carousel-vertical.owl-theme .owl-dots .owl-dot.active {
    height: 40px;
}
.owl-carousel-vertical.owl-theme .owl-dots .owl-dot {
    -webkit-transition: height 0.3s;
    -moz-transition: height 0.3s;
    -o-transition: height 0.3s;
    transition: height 0.3s;
    width: 7px;
    height: 20px;
    display: block;
    margin: 4px 0;
}

.owl-theme .owl-dots .owl-dot span {
    width: 100%;
    height: 7px;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 200ms ease;
    border-radius: 30px;
}
.owl-carousel-vertical.owl-theme .owl-dots .owl-dot span {
    height: 100%;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--bs-pink);
}

.owl-prev, .owl-next {
    transition: opacity 0.3s;
	opacity: 0 !important;
}
.owl-carousel:hover .owl-prev {
	opacity: 1 !important;
}
.owl-carousel:hover .owl-next {
	opacity: 1 !important;
}


.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
    width: 44px;
    background-color: var(--bs-dark);
    border-radius: 22px;
    height: 44px;
}
.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    right: 5%;
}
.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    left: 5%;
}
.owl-carousel .owl-nav button span {
    color: #ffffff;
    font-size: 35px;
    line-height: 30px;
}

.owl-carousel .owl-stage .owl-item {
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
    opacity: 0.3;
}
.owl-carousel .owl-stage .owl-item.active {
    -webkit-transition: opacity 1;
    -moz-transition: opacity 1;
    -o-transition: opacity 1;
    transition: opacity 1;
    opacity: 1;
}

.owl-carousel.owl-carousel-vertical .owl-item img {
    width: inherit;
}

/* 4 вида каруселей */
/* Тип 1: 4 блока с радиусами при наведении */
.owl-carousel.owl-carousel-primary .item {
    overflow: hidden;
    -webkit-transition: border-radius 0.5s;
    -moz-transition: border-radius 0.5s;
    -o-transition: border-radius 0.5s;
    transition: border-radius 0.5s;
}
.owl-carousel.owl-carousel-primary .item.hover-radius:hover {
    border-top-right-radius: 130px;
    border-top-left-radius: 130px;
}
.owl-carousel.owl-carousel-primary .item .badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    font-size: 20px;
    font-family: var(--bs-font-vetrino);
    font-weight: var(--bs-body-font-weight);
}
/* Тип 2: Змейка */
.owl-carousel.owl-carousel-snake .owl-item:nth-child(2n+1) {
    margin-top: 35px;
}
/* Тип 3: 3 крупных блока */
.owl-carousel.owl-carousel-three {

}
/* Тип 3: 1 большой блок */
.owl-carousel.owl-carousel-one {

}


@media(max-width:991px) {
    .owl-carousel {
        display: block;
    }
}
@media(min-width:992px) {
    .owl-carousel .item.collapse {
        display: block;
    }
}