.sxs-car {
    &__arws {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;

        .sxs-car__arws-arw--next {
            margin-left: .75rem;
        }
    }

    &__buls {
        &-lis {
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            margin-top: calc((5px + 1rem) / 2* 1);
            height: calc(10px + 4rem);
            list-style: none;
        }

        &-ite {
            flex: 0 0 auto;
            width: auto;
            max-width: 100%;
            margin: 0 calc(2px + .25rem);
        }

        &-bul {
            display: block;
            width: 1em;
            height: 1em;
            font-size: calc(4px + 1rem);
            border-radius: 50%;
            background-color: #FFF;
            opacity: .6;
            transition: opacity $transitionDuration;

            &.active {
                background-color: #FFF;
                opacity: 1
            }
        }
    }
}