[class^="number-slide"],
[class*=" number-slide"] {
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: #fff;
    font-weight: 500;
}


.navigation-wrapper {
    position: relative;
}

.dots {
    display: flex;
    padding: 10px 0;
    justify-content: center;
}

.dot {
    border: none;
    width: 10px;
    height: 10px;
    background: #c5c5c5;
    border-radius: 50%;
    margin: 0 5px;
    padding: 5px;
    cursor: pointer;
}

.dot:focus {
    outline: none;
}

.dot--active {
    background: #000;
}

.arrow {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    fill: #f8db68;
    cursor: pointer;
}

.arrow--left {
    left: 30px;
    fill: #f8db68;
    background-image: url('left.svg');
}

.arrow--right {
    left: auto;
    right: 30px;
    background-image: url('right.svg');
}

/*.arrow--disabled.arrow--left {*/
/*    background-image: url('left.svg');*/
/*}*/

/*.arrow--disabled.arrow--right {*/
/*    background-image: url('right.svg');*/
/*}*/


.lazy__slide {
    height: 100vh;
    background: black url('/keen/loader.svg') no-repeat center;
    background-size: 100px;
}



.lazy__slide img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
}
