/*
 * RMGallery - 0.0.5 - 2017-04-20
 * 
 * Copyright (c) I.P.;
 * Licensed under the MIT license */

.rm-gallery {
    position: relative;
    overflow: hidden;
    height: 400px;
    width: 100%;
    font-family: arial;
}
.rm-gallery.full-screen {
    position: fixed;
    top:0;
    bottom:0;
    left:0;
    right:0;
    height: auto !important;
    z-index: 199;
    background-color: #000;
}
.rm-gallery .rm-gallery-slide {
/*    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);*/
    position: relative;
    overflow: hidden;
    height: 100%;
    width: 9999px;
}
.rm-gallery .rm-gallery-arrow-left,
.rm-gallery .rm-gallery-arrow-right {
    position: absolute;
    top: 45%;
    line-height: 120px;
    height: 120px;
    margin-top: -60px;
    color: #ddd;
    cursor: pointer;
    font-size: 25px;
    text-shadow: 0 0 2px #000;
    width: 40px;
}
.rm-gallery .rm-gallery-arrow-left {
    left: 0px;
    text-align: left;
    padding-left: 10px;
}
.rm-gallery .rm-gallery-arrow-right {
    right: 0px;
    text-align: right;
    padding-right: 10px;
}
.rm-gallery .rm-gallery-image {
    position: relative;
    overflow: hidden;
    float: left;
    height: 100%;
    text-align: center;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    -webkit-transition: opacity 0.25s ease-out;
    -moz-transition: opacity 0.25s ease-out;
    -ms-transition: opacity 0.25s ease-out;
    -o-transition: opacity 0.25s ease-out;
    transition: opacity 0.25s ease-out;
}
.rm-gallery .rm-gallery-counter {
    position: absolute;
    top: 5px;
    left: 5px;
    padding: 5px 8px;
    font-size: 12px;
    color: #ddd;
    text-shadow: 0 0 2px #000;
    border-radius: 2px;
    background-color: rgba(0,0,0,0.3);
}
.rm-gallery .rm-gallery-autoplay {
    position: absolute;
    top: 35px;
    left: 5px;
    width: 50px;
    height: 30px;
    color: #fff;
    cursor: pointer;
    text-shadow: 0 0 2px #000;
    border-radius: 2px;
    background-color: rgba(0,0,0,0.3);
    background-image: url(icons/play.svg);
    background-size: 16px auto;
    background-repeat: no-repeat;
    background-position: center center;
}
.rm-gallery .rm-gallery-autoplay.active {
    background-image: url(icons/pause.svg);
}
.rm-gallery .rm-gallery-fullscreen {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 50px;
    height: 30px;
    color: #fff;
    cursor: pointer;
    text-shadow: 0 0 2px #000;
    border-radius: 2px;
    background-color: rgba(0,0,0,0.3);
    background-image: url(icons/enlarge2.svg);
    background-size: 16px auto;
    background-repeat: no-repeat;
    background-position: center center;
}
.rm-gallery.full-screen .rm-gallery-fullscreen {
    background-image: url(icons/shrink2.svg);
}
.rm-gallery.full-screen .rm-gallery-image,
.rm-gallery.contain .rm-gallery-image {
    background-size: contain;
    background-position: center center;
}
.rm-gallery.big-arrows .rm-gallery-arrow-left,
.rm-gallery.big-arrows .rm-gallery-arrow-right {
    font-size: 35px;
}