
.galleryContainer{
 	height:320px;
    max-width:1000px;
	/*float:left;*/
	margin:auto auto;
	text-align:center;
    user-select: none;
	padding:9px;
	background-color:rgba(250,250,275, 0.5); box-shadow: 0px 2px 6px 0px #E6E6FF; 
    box-sizing: border-box;
}
.galleryContainer .slideShowContainer{
    width: 100%;
    height: 90%;
    overflow: hidden;
    background-color: gainsboro;
    position: relative;
}
.galleryContainer .slideShowContainer #playPause{
    width: 20px;
    height: 20px;
    position: absolute;
    background-image: url(../imagen/playPause.png);
    background-repeat: no-repeat;
    z-index: 5;
    background-size:cover;
    margin: 5px;
	margin-right:10px;
	right:10px;
	opacity:.5;
    cursor: pointer;
	border-radius:50%;
}
.galleryContainer .slideShowContainer #playPause:hover{
    opacity: .3;
}
.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-color:transparent; /*#00000036;*/ 
    position: absolute;
    left: 0;
    z-index: 1;
    transition: 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{
    opacity: 0.5; 
    cursor: pointer; /*border de arrow*/
}
.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:hover{
border: 3px solid #AA0000;
border-left: none;
border-bottom: none;
}
.galleryContainer .arrow.arrowLeft{
    transform: rotateZ(-135deg);
}
.galleryContainer .arrow.arrowRight{
    transform: rotateZ(45deg);
}


.galleryContainer .slideShowContainer>.captionTextHolder{
    /*display:flex; */
    display:flex;
    position: absolute;
    bottom: 5px;
    z-index: 1;
    color: white;
    font-family:Arial, Helvetica, sans-serif;
    font-size: 15px;
    width: 50%;
    background: #00000047;
    height:100px;
    line-height:100px;
	border-radius:0.3em;
	left:25%;
	}
	
.galleryContainer .slideShowContainer>.captionTextHolder>.captionText{
  margin:0;  /*display:flex; */
    display:flex;
}
.nota{font-family: Arial, Helvetica, sans-serif; 
 margin-bottom:13px;
 bottom: 13px; 
 font-style:oblique;
 position:absolute; 
 color:white; 
 font-size:16px; 
}
 @media only screen and(max-width:300){.captionTextHolder,.nota{font-size:12px}}
 
.galleryContainer #dotsContainer{
    width: 100%;
    height: 10%;
    text-align: center;
    padding-top:10px;
    box-sizing: border-box;
	background:transparent;
	z-index:1001;
}
.galleryContainer #dotsContainer .dots{
    display: inline-block;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    margin-left: 5px;
    background-color: #bbb;
    cursor: pointer;
    transition:0.5s;
}
.galleryContainer #dotsContainer .dots:first-child{
    margin-left: 0;
}
.galleryContainer #dotsContainer .dots:hover,.galleryContainer #dotsContainer .dots.active{
    background-color: #AA0000;
}

.galleryContainer .moveLeftCurrentSlide{
    animation-name: moveLeftCurrent;
    animation-duration: 0.6s;
    animation-timing-function: linear;
    animation-fill-mode:forwards;

}
.galleryContainer .moveLeftNextSlide{
    animation-name: moveLeftNext;
    animation-duration: 0.6s;
    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.6s;
    animation-timing-function: linear;
    animation-fill-mode:forwards;
}
.galleryContainer .moveRightPrevSlide{
    animation-name: moveRightPrev;
    animation-duration: 0.6s;
    animation-timing-function: linear;
    animation-fill-mode:forwards;
}
@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: .1;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: .1;margin-top: -100px}
    to {opacity: 1;margin-top: 0px;}
}
