.keen-slider {
    & + .dots {
        position: absolute;
        top: -75px;
        right: 5%;
        bottom: 75px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;

        .dot {
            width: 20px;
            height: 20px;
            padding: 3px;
            border: 2px solid var(--white);
            border-radius: 50%;
            cursor: pointer;

            &.dot--active::before {
                content: '';
                position: relative;
                display: block;
                width: 100%;
                height: 100%;
                background-color: var(--white);
                border-radius: 50%;
            }

            &:not(:last-child) {
                margin-bottom: 10px;
            }
        }
    }
}