/* slick style */
.container-arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f0f0f0;
}

.container-arrows .arr {
    width: 8px;
    height: 8px;
    border: 1px solid #4b4b4b;
    border-width: 0 1px 1px 0;
    margin: 0 10px;
}

.container-arrows .arr-next {
    transform: rotateZ(-45deg);
}

.container-arrows .arr-prev {
    transform: rotateZ(135deg);
}
