.galleryContainer {
    width: 100%;
    height: 650px;
    max-width: 1300px;
    margin: auto;
    user-select: none;
    /*box-shadow: 0px 0px 3px 1px #00000078;*/
    padding: 0px;
    box-sizing: border-box;
}
.galleryContainer .slideShowContainer {
    width: 100%;
    height: 90%;
    overflow: hidden;
    background-color: gainsboro;
    position: relative;
    box-shadow: 0px 0px 3px 1px #00000078;
    border-radius: 15px;
}
.galleryContainer .slideShowContainer #playPause {
    width: 32px;
    height: 32px;
    position: absolute;
    background-image: url(../img/slider/playPause.png);
    background-repeat: no-repeat;
    z-index: 5;
    background-size: cover;
    margin: 5px;
    cursor: pointer;
}
.galleryContainer .slideShowContainer #playPause:hover {
    opacity: 0.7;
}
.galleryContainer .slideShowContainer .imageHolder {
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0;
}
.galleryContainer .slideShowContainer .imageHolder img {
    width: 100%;
    height: 100%;
}
.galleryContainer .slideShowContainer .imageHolder .captionText {
    display: none;
}

.galleryContainer .slideShowContainer .leftArrow,
.galleryContainer .slideShowContainer .rightArrow {
    width: 50px;
    background: #00000036;
    position: absolute;
    left: 0;
    z-index: 1;
    transition: background 0.5s;
    height: 72px;
    top: 50%;
    transform: translateY(-50%);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.galleryContainer .slideShowContainer .rightArrow {
    left: auto;
    right: 0;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.galleryContainer .slideShowContainer .leftArrow:hover,
.galleryContainer .slideShowContainer .rightArrow:hover {
    background: #000000a8;
    cursor: pointer;
}
.galleryContainer .arrow {
    display: inline-block;
    border: 3px solid white;
    width: 10px;
    height: 10px;
    border-left: none;
    border-bottom: none;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.galleryContainer .arrow.arrowLeft {
    transform: rotateZ(-135deg);
}
.galleryContainer .arrow.arrowRight {
    transform: rotateZ(45deg);
}

.galleryContainer .slideShowContainer > .captionTextHolder {
    position: absolute;
    bottom: 0;
    z-index: -1;
    color: white;
    font-family: sans-serif;
    font-size: 20px;
    text-align: center;
    width: 100%;
    background: #00000047;
    height: 50px;
    line-height: 50px;
    overflow: hidden;
}
.galleryContainer .slideShowContainer > .captionTextHolder > .captionText {
    margin: 0;
}

.galleryContainer #dotsContainer {
    width: 100%;
    height: 10%;
    text-align: center;
    padding-top: 20px;
    box-sizing: border-box;
}
.galleryContainer #dotsContainer .dots {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin-left: 5px;
    background-color: #bbb;
    cursor: pointer;
    transition: background-color 0.5s;
}
.galleryContainer #dotsContainer .dots:first-child {
    margin-left: 0;
}
.galleryContainer #dotsContainer .dots:hover,
.galleryContainer #dotsContainer .dots.active {
    background-color: #717171;
}

.galleryContainer .moveLeftCurrentSlide {
    animation-name: moveLeftCurrent;
    animation-duration: 0.5s;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}
.galleryContainer .moveLeftNextSlide {
    animation-name: moveLeftNext;
    animation-duration: 0.5s;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}
@keyframes moveLeftCurrent {
    from {
        margin-left: 0;
        opacity: 1;
    }
    to {
        margin-left: -100%;
        opacity: 1;
    }
}
@keyframes moveLeftNext {
    from {
        margin-left: 100%;
        opacity: 1;
    }
    to {
        margin-left: 0%;
        opacity: 1;
    }
}

.galleryContainer .moveRightCurrentSlide {
    animation-name: moveRightCurrent;
    animation-duration: 0.5s;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}
.galleryContainer .moveRightPrevSlide {
    animation-name: moveRightPrev;
    animation-duration: 0.5s;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}

.slideShowContainer .imageHolder a:nth-child(4) {
    -webkit-animation-delay: 12s;
    -moz-animation-delay: 12s;
    -ms-animation-delay: 12s;
    -o-animation-delay: 12s;
    animation-delay: 12s;
}

.slideShowContainer .imageHolder a:nth-child(3) {
    -webkit-animation-delay: 8s;
    -moz-animation-delay: 8s;
    -ms-animation-delay: 8s;
    -o-animation-delay: 8s;
    animation-delay: 8s;
}

.slideShowContainer .imageHolder a:nth-child(2) {
    -webkit-animation-delay: 4s;
    -moz-animation-delay: 4s;
    -ms-animation-delay: 4s;
    -o-animation-delay: 4s;
    animation-delay: 4s;
}

.slideShowContainer .imageHolder a:nth-child(1) {
    -webkit-animation-delay: 0s;
    -moz-animation-delay: 0s;
    -ms-animation-delay: 0s;
    -o-animation-delay: 0s;
    animation-delay: 0s;
}

@keyframes moveRightCurrent {
    from {
        margin-left: 0;
        opacity: 1;
    }
    to {
        margin-left: 100%;
        opacity: 1;
    }
}
@keyframes moveRightPrev {
    from {
        margin-left: -100%;
        opacity: 1;
    }
    to {
        margin-left: 0%;
        opacity: 1;
    }
}
.slideTextFromBottom {
    animation-name: slideTextFromBottom;
    animation-duration: 0.7s;
    animation-timing-function: ease-out;
}
@keyframes slideTextFromBottom {
    from {
        opacity: 0;
        margin-top: 100px;
    }
    to {
        opacity: 1;
        margin-top: 0px;
    }
}
.slideTextFromTop {
    animation-name: slideTextFromTop;
    animation-duration: 0.7s;
    animation-timing-function: ease-out;
}
@keyframes slideTextFromTop {
    from {
        opacity: 0;
        margin-top: -100px;
    }
    to {
        opacity: 1;
        margin-top: 0px;
    }
}

@media only screen and (max-width: 990.98px) {
    .galleryContainer {
        height: 547px;
        border-radius: 0px !important;
        width: 100%;
        margin-bottom: 20px;
    }

    .galleryContainer .slideShowContainer .leftArrow,
    .galleryContainer .slideShowContainer .rightArrow {
        width: 50px;

        position: absolute;
        left: 0;
        z-index: 1;
        transition: background 0.5s;
        height: 32px;
        top: 50%;
        transform: translateY(-50%);
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
    }
    .galleryContainer .slideShowContainer .rightArrow {
        left: auto;
        right: 0;
        border-top-right-radius: 0px;
        border-bottom-right-radius: 0px;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
    }
    .galleryContainer .slideShowContainer .leftArrow:hover,
    .galleryContainer .slideShowContainer .rightArrow:hover {
        cursor: pointer;
    }
}

@media only screen and (max-width: 848.98px) {
    .galleryContainer {
        height: 500px;
        border-radius: 0px !important;
        width: 100%;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 736.98px) {
    .galleryContainer {
        height: 460px;
        border-radius: 0px !important;
        width: 100%;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 702.98px) {
    .galleryContainer {
        height: 420px;
        border-radius: 0px !important;
        width: 100%;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 664.98px) {
    .galleryContainer {
        height: 390px;
        border-radius: 0px !important;
        width: 100%;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 608.98px) {
    .galleryContainer {
        height: 360px;
        border-radius: 0px !important;
        width: 100%;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 544.98px) {
    .galleryContainer {
        height: 290px;
        border-radius: 0px !important;
        width: 100%;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 426.98px) {
    .galleryContainer {
        height: 245px;
        border-radius: 0px !important;
        width: 100%;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 400.98px) {
    .galleryContainer {
        height: 220px;
        border-radius: 0px !important;
        width: 100%;
        margin-bottom: 20px;
    }
}
