.tabs-carousel {
    display: block
}

.tabs-carousel>.section {
    margin-bottom: 0
}

.tabs-carousel .lightbox-carousel {
    margin-bottom: 0
}

.tabs-carousel .lightbox-carousel img {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.tabs-carousel__content {
    padding: var(--grid-col-gutter);
    background-color: var(--color-white);
    border-bottom-left-radius: var(--border-radius-small);
    border-bottom-right-radius: var(--border-radius-small);
    display: flex;
    flex-direction: column
}

@media screen and (min-width: 1280px) {
    .tabs-carousel__content {
        padding-top: 20px
    }
}

.tabs-carousel__nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 10px;
    order: 2
}

@media screen and (min-width: 1280px) {
    .tabs-carousel__nav {
        order: initial;
        justify-content: flex-start;
        gap: 3px
    }
}

@media screen and (min-width: 1280px) {
    .tabs-carousel__nav-item {
        margin-bottom: 20px;
        flex: 1;
        min-width: 0
    }
}

.tabs-carousel__nav-item button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    font-size: 0;
    background-color: var(--color-gray-400);
    min-width: auto;
    transition-property: background-color;
    transition-duration: var(--transition-time);
    transition-timing-function: var(--transition-easing)
}

@media(hover: hover) {
    .tabs-carousel__nav-item button:hover {
        background-color: var(--color-bunker)
    }
}

@media screen and (min-width: 1280px) {
    .tabs-carousel__nav-item button:hover::before {
        opacity: 1
    }
}

@media screen and (min-width: 1280px) {
    .tabs-carousel__nav-item button {
        position: relative;
        display: block;
        color: var(--color-white);
        background-color: #332524;
        padding: 9px 20px;
        letter-spacing: .7px;
        text-align: center;
        font-size: 12px;
        border-radius: var(--border-radius-xsmall);
        width: 100%;
        height: 100%
    }
}

.tabs-carousel__nav-item[current=yes] button {
    background-color: #bb832b;
    scale: 1.4
}

@media screen and (min-width: 1280px) {
    .tabs-carousel__nav-item[current=yes] button {
        scale: 1
    }
}

@media screen and (min-width: 1280px) {
    .tabs-carousel__nav-item[current=yes] button::before {
        content: "";
        position: absolute;
        background: url(../../../src/assets/svg/box-arrow.svg) no-repeat center;
        background-size: contain;
        bottom: -7px;
        left: 0;
        right: 0;
        margin: auto;
        transform: rotate(180deg);
        width: 27px;
        height: 7px
    }
}

.tabs-carousel__label {
    position: relative;
    display: block;
    color: var(--color-white);
    background-color: var(--color-bunker-dark);
    padding: 9px 20px;
    letter-spacing: .7px;
    text-align: center;
    transition: none;
    margin-bottom: 20px;
    border-radius: var(--border-radius-xsmall)
}

.tabs-carousel__label::before {
    content: "";
    position: absolute;
    background: url(../../../src/assets/svg/box-arrow.svg) no-repeat center;
    color: red;
    background-size: contain;
    bottom: -7px;
    left: 0;
    right: 0;
    margin: auto;
    transform: rotate(180deg);
    width: 27px;
    height: 7px
}

@media screen and (min-width: 1280px) {
    .tabs-carousel__label {
        display: none
    }
}

.tabs-carousel__slider-track {
    overflow: hidden
}

.tabs-carousel tp-slider[behaviour=fade] tp-slider-slides:first-of-type>tp-slider-slide[active=yes] {
    opacity: 1;
    transition: none
}

.tabs-carousel tp-slider[behaviour=fade] tp-slider-slides:first-of-type>tp-slider-slide[active=yes]>*:not(.tabs-carousel__label),
.tabs-carousel tp-slider[behaviour=fade] tp-slider-slides:first-of-type>tp-slider-slide[active=yes] .tabs-carousel__label-text {
    opacity: 1
}

.tabs-carousel tp-slider[behaviour=fade] tp-slider-slides:first-of-type>tp-slider-slide {
    opacity: 1;
    transition: none
}

.tabs-carousel tp-slider[behaviour=fade] tp-slider-slides:first-of-type>tp-slider-slide>*:not(.tabs-carousel__label),
.tabs-carousel tp-slider[behaviour=fade] tp-slider-slides:first-of-type>tp-slider-slide .tabs-carousel__label-text {
    opacity: 0;
    transition-property: all;
    transition-duration: var(--transition-time);
    transition-timing-function: var(--transition-easing)
}