.slideshow-container {
    position: relative;
    display: inline-block;
}


.slideshow-slide {
    /*position: absolute;*/
    /*width: 100%;*/
    /*height: auto;*/
    /*left: 0;*/
    display: none;
}

.slideshow-slide {
    opacity: 0;
    transition: opacity 0.5s;
}


.slideshow-slide.active {
    opacity: 1;
    display: block;
}

.slideshow-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    cursor: pointer;
    z-index: 2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: bold;
    text-decoration: none;
}

.slideshow-control.prev:hover,
.slideshow-control.next:hover {
    color: #cb9744;
    opacity: 0.7;
}

.slideshow-control span {
    display: inline-block;
    vertical-align: middle;
}

.slideshow-control.prev {
    left: -20px;
    color: #cb9744;
}

.slideshow-control.next {
    right: 10px;
    color: #cb9744;
    z-index: 999;
}

.image-column {
    text-align: center;
}


.slideshow-control button {
    left: 15px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: 1px solid #fc5a34;
    border-radius: 0;
    background: #fff;
    color: #fc5a34;
    margin: 0;
    -webkit-transition: .5s;
    transition: .5s;
    text-align: center;
    font: inherit;
}

.slideshow-control button:hover {
    color: #fff;
    background: #fc5a34;
    border: 1px solid transparent;
}