
.galleryContainer{
    width: 100%;
    height: 100%;
    margin: auto;
    user-select: none;
    box-shadow: 0px 0px 8px 1px #00000078;
    padding-top: 10px;
    padding-bottom: 0;
    box-sizing: border-box;
}
.galleryContainer .slideShowContainer{
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: gainsboro;
    position: relative;
}
.galleryContainer .slideShowContainer #playPause{
    width: 32px;
    height: 32px;
    position: absolute;
    background-image: url(images/playPause.png);
    background-repeat: no-repeat;
    z-index: 5;
    background-size: cover;
    margin: 5px;
    cursor: pointer;
}
.galleryContainer .slideShowContainer #playPause:hover{
    opacity: .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: maroon;
    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: #423c3ca8;
    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%;
    height: 50px;
    line-height: 50px;
    overflow: hidden;
}
.galleryContainer .slideShowContainer>.captionTextHolder>.captionText{
    margin: 0;
    font-family: 'Old Standard TT', serif;
	font-size: 22px;
	font-style: italic;
    color:white;
}

.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: maroon;;
}




.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.7s;
    animation-timing-function: linear;
    animation-fill-mode:forwards;
    transition: all 500ms ease;
}
.galleryContainer .moveRightPrevSlide{
    animation-name: moveRightPrev;
    animation-duration: 0.7s;
    animation-timing-function: linear;
    animation-fill-mode:forwards;
    transition: all 500ms ease;
}
@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;}
}




/* CSS Document */

/******************************

[Table of Contents]

1. 1600px
2. 1440px
3. 1280px
4. 1199px
5. 1024px
6. 991px
7. 959px
8. 880px
9. 768px
10. 767px
11. 539px
12. 479px
13. 400px

******************************/

/************
1. 1600px
************/

@media only screen and (max-width: 1600px)
{

}

/************
2. 1440px
************/

@media only screen and (max-width: 1440px)
{
    .galleryContainer{
        width: 100%;
        height: 630px;
        margin: auto;
        user-select: none;
        box-shadow: 0px 0px 3px 1px #00000078;
        padding-top: 10px;
        box-sizing: border-box;
    }
}

/************
3. 1380px
************/

@media only screen and (max-width: 1380px)
{
	.galleryContainer{
        width: 100%;
        height: 630px;
        margin: auto;
        user-select: none;
        box-shadow: 0px 0px 3px 1px #00000078;
        padding-top: 10px;
        box-sizing: border-box;
    }
}

/************
3. 1280px
************/

@media only screen and (max-width: 1280px)
{
	.galleryContainer{
        width: 100%;
        height: 600px;
        margin: auto;
        user-select: none;
        box-shadow: 0px 0px 3px 1px #00000078;
        padding-top: 10px;
        box-sizing: border-box;
    }
}

/************
4. 1199px
************/

@media only screen and (max-width: 1199px)
{
	.galleryContainer{
        width: 100%;
        height: 550px;
        margin: auto;
        user-select: none;
        box-shadow: 0px 0px 3px 1px #00000078;
        padding-top: 10px;
        box-sizing: border-box;
    }
}

/************
4. 1100px
************/

@media only screen and (max-width: 1100px)
{
	.galleryContainer{
        width: 100%;
        height: 500px;
        margin: auto;
        user-select: none;
        box-shadow: 0px 0px 3px 1px #00000078;
        padding-top: 10px;
        box-sizing: border-box;
    }
}

/************
5. 1024px
************/

@media only screen and (max-width: 1024px)
{
	.galleryContainer{
        width: 100%;
        height: 550px;
        margin: auto;
        user-select: none;
        box-shadow: 0px 0px 3px 1px #00000078;
        padding-top: 10px;
        box-sizing: border-box;
    }
}

/************
6. 991px
************/

@media only screen and (max-width: 991px)
{
    .galleryContainer{
        width: 100%;
        height: 250%;
        margin: auto;
        user-select: none;
        box-shadow: 0px 0px 3px 1px #00000078;
        padding-top: 10px;
        box-sizing: border-box;
    }
}

/************
7. 959px
************/

@media only screen and (max-width: 959px)
{
	.galleryContainer{
        width: 100%;
        height: 200%;
        margin: auto;
        user-select: none;
        box-shadow: 0px 0px 3px 1px #00000078;
        padding-top: 10px;
        box-sizing: border-box;
    }
}

/************
8. 880px
************/

@media only screen and (max-width: 880px)
{
	.galleryContainer{
        width: 100%;
        height: 200%;
        margin: auto;
        user-select: none;
        box-shadow: 0px 0px 3px 1px #00000078;
        padding-top: 10px;
        box-sizing: border-box;
    }
}

/************
9. 768px
************/

@media only screen and (max-width: 768px)
{
	.galleryContainer{
        width: 100%;
        height: 200%;
        margin: auto;
        user-select: none;
        box-shadow: 0px 0px 3px 1px #00000078;
        padding-top: 10px;
        box-sizing: border-box;
    }
}

/************
10. 767px
************/

@media only screen and (max-width: 767px)
{
	.galleryContainer{
        width: 100%;
        height: 200%;
        margin: auto;
        user-select: none;
        box-shadow: 0px 0px 3px 1px #00000078;
        padding-top: 10px;
        box-sizing: border-box;
    }
}

/************
11. 575px
************/

@media only screen and (max-width: 575px)
{
	.galleryContainer{
        width: 100%;
        height: 200%;
        margin: auto;
        user-select: none;
        box-shadow: 0px 0px 3px 1px #00000078;
        padding-top: 10px;
        box-sizing: border-box;
    }
}

/************
11. 539px
************/

@media only screen and (max-width: 539px)
{
	.galleryContainer{
        width: 100%;
        height: 200%;
        margin: auto;
        user-select: none;
        box-shadow: 0px 0px 3px 1px #00000078;
        padding-top: 10px;
        box-sizing: border-box;
    }
}

/************
12. 480px
************/

@media only screen and (max-width: 480px)
{
	.galleryContainer{
        width: 100%;
        height: 210%;
        margin: auto;
        user-select: none;
        box-shadow: 0px 0px 3px 1px #00000078;
        padding-top: 10px;
        box-sizing: border-box;
    }
}

/************
13. 479px
************/

@media only screen and (max-width: 479px)
{
	.galleryContainer{
        width: 100%;
        height: 200%;
        margin: auto;
        user-select: none;
        box-shadow: 0px 0px 3px 1px #00000078;
        padding-top: 10px;
        box-sizing: border-box;
    }
}

/************
14. 400px
************/

@media only screen and (max-width: 400px)
{
	.galleryContainer{
        width: 100%;
        height: 200%;
        margin: auto;
        user-select: none;
        box-shadow: 0px 0px 3px 1px #00000078;
        padding-top: 10px;
        box-sizing: border-box;
    }
}