.Gallery {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
}

.Gallery__imageContainer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.Gallery__imageWrapper {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 100px;
    left: 0;
    overflow: hidden;
}

.Gallery__button {
    display: block;
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    cursor: pointer;
    z-index: 100;
}

.Gallery__button--next {
    right: 0;
}

.Gallery__button--prev {
    left: 0;
}

.Gallery__buttonInner {
    display: none;
    position: absolute;
    top: calc( 50% - 35px );
    width: 50px;
    height: 70px;
    z-index: 101;
}

.Gallery__button:hover .Gallery__buttonInner {
    display: block;
}

.Gallery__button--next .Gallery__buttonInner {
    right: 0;
    background: url('./next.png');
}

.Gallery__button--prev .Gallery__buttonInner {
    background: url('./prev.png');
}

.Gallery__image {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

.Gallery__navigation {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 75px;
}

.Gallery__thumbnails {
    width: 100%;
    padding: 0 20px;
    overflow: hidden;
}

.Gallery__thumbnailList {
    float: left;
    margin: 0;
    padding: 0;
    width: 90000px;
    list-style-type: none;
}

.Gallery__thumbnailList li {
    float: left;
    padding-right: 5px;
}

.Gallery__thumbnailList a {
    opacity: .7;
    transition: opacity .5s ease-in-out;
}

.Gallery__thumbnailList a:hover,
.Gallery__thumbnailList a.Gallery__thumbnail--active {
    opacity: 1;
}

.Gallery__thumbnailImage {
    height: 90px;
}
