.b-slideshow {
    position: relative;
}

.b-slideshow__slides {
    position: relative;
}

.b-slideshow__slide {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    user-select: none;
    transition: opacity .85s;
    opacity: 0;
    z-index: -1;
    pointer-events: none;
}

.b-slideshow__slide--active {
    position: relative;
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
}

.b-slideshow__slide-img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: auto;
}

.b-slideshow__slide-caption {
    display: none !important;
}

.b-slideshow__arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: 50%;
    width: 50px;
    height: 100%;
    color: #fff;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 100;
}

.b-slideshow__arrow svg {
    display: block;
}

.b-slideshow__arrow:hover {
    color: #ca0f0a;
}

.b-slideshow__arrow--prev {
    left: 10px;
}

.b-slideshow__arrow--next {
    right: 10px;
}

.b-slideshow__bullets {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left:  50%;
    bottom: 0;
    z-index: 100;
    transform: translate(-50%, -100%);
    cursor: pointer;
}

.b-slideshow__bullet {
    display: block;
    width: 10px;
    height: 10px;
    margin: 5px;
    background: #fff;
    border-radius: 50%;
}

.b-slideshow__bullet:hover,
.b-slideshow__bullet--active {
    background: #ca0f0a;
}

.b-slideshow__caption {
    padding: 16px 60px;
    font-size: 14px;
    line-height: 1.25;
    font-family: 'Open Sans';
    text-align: center;
    border-bottom: 1px solid #ccc;
}

.b-slideshow__caption:empty {
    display: none;
}

.b-slideshow__caption a {
    color: #ca0f09;
    text-decoration: underline;
}

.b-slideshow__caption a:hover {
    text-decoration: none;
}

@media (max-width: 640px) {
    .b-slideshow__caption {
        padding: 0 60px;
    }
}