/** custom style sheet by Thilo Ilg **/

/** id's **/

/**
* all
*/
.jAlbum * {
	/** prevent blue outline **/
	outline: none;
	/** image-rendering: pixelated; **/
}
/**
* wrapper -> presents size of the window or the embetted section
*/
.Responsive {
	/** if transparent adopt color of parent page if embedded **/
	-webkit-backface-visibility: hidden; /* prevent flickering */
	background-color: transparent;

	width: 100%;
	overflow: hidden;

	/** prevent selection **/
	-webkit-touch-callout: none !important;
	-webkit-user-select: none !important;
	-khtml-user-select: none !important;
	-moz-user-select: none !important;
	-ms-user-select: none !important;
	user-select: none !important;
}

/**
* fullscreen -> shows imformation of media in fullscreen, goes out of the frame, takes whole page size
*/
.jAlbum #fullscreen {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 200%;
	height: 200%;
	overflow: hidden;
	z-index: 100000;
	display: none;
	background: rgba(0, 0, 0, .75);
}

.jAlbum #fullscreen .fs_box {
	z-index: 400;
	position: absolute;
	background: transparent;
	text-align: center;
}

.jAlbum #fullscreen img {
	position: absolute;
	border: 1px solid #fff;
	background-color: #fff;
	z-index: 200;
	border: none;
}

/**
* content -> includes the media like images and folders of images
*/
.jAlbum #jAlbum-content, .jAlbum #jAlbum-content a, .jAlbum #jAlbum-content p{
	text-decoration: none;
}

.jAlbum #jAlbum-content img{
	position: absolute;
	border: 1px solid #fff;
	background-color: #fff;
}

/**
* footer -> includes footer information
*/
.jAlbum #jAlbum-footer{
	position: static;
	min-height: 58px;
	text-decoration: none;
}

.jAlbum #jAlbum-footer .center{
	padding: 20px 0px;
	text-align: center;
}

.jAlbum #jAlbum-footer .left{
	padding-left: 50px;
	padding-top: 8px;
	padding-bottom: 20px;
	z-index: 50;
	position: absolute;
	text-align: left;
}

.jAlbum #jAlbum-footer a{
	cursor: pointer;
	text-decoration: none;
}

.jAlbum #jAlbum-footer p {
	position: static;
	display: inline;
}

/** classes **/

/**
* shadow -> shadow behind images and folders
*/
.jAlbum .shadow{
	box-shadow: none;
}

/**
* cancel icon 
*/
.jAlbum .cancel{
	height: 28px;
	width: 28px;
	opacity: .75;
	margin: 2px;
	padding: 0px;
	z-index: 500;
	top: 0px;
	right: 0px;
	position: absolute;
	background-image: url("../img/cancel.png");
	background-size: cover;
	cursor: pointer;
}

/**
* play icon
*/
.jAlbum .play{
	height: 75px;
	width: 75px;
	opacity: .75;
	margin: auto;
	padding: 0px;
	z-index: 500;
	top: 0px;
	right: 0px;
	left: 0px;
	bottom: 0px;
	position: absolute;
	background-image: url("../img/play.png");
	background-size: cover;
	cursor: pointer;
}

/**
* fullscreeen description (shows description in fullscreen mode)
*/
.jAlbum .fs_desc{
	-webkit-backface-visibility: hidden; /* prevent flickering */
    animation: fadein 2s;
    -moz-animation: fadein 2s; /* Firefox */
    -webkit-animation: fadein 2s; /* Safari and Chrome */
    -o-animation: fadein 2s; /* Opera */
	pointer-events: none; /* prevent click events on surface */
	bottom: 0px;
	padding: 0px;
	text-align: center;
	z-index: 400;
	position: absolute;
}

.jAlbum .fs_desc p{
	word-wrap: normal;
	margin: 0px;
	padding: 8px 16px 8px 16px;
	color: white;
	background-color: rgba(64, 64, 64, 0.75);
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

@media screen and (max-width: 750px){
	.jAlbum .fs_desc{
		font-size: 13px;
	}
}

@media screen and (min-width: 750px){
	.jAlbum .fs_desc{
		font-size: 16px;
	}
}

/**
* empty folder representation
*/
.jAlbum .emptyFolderThumbnail {
	background-color: transparent !important;
	border-color: transparent !important;
}

/**
* folder title
*/
.jAlbum .folderTitle{
	position: inherit;
	text-decoration: none;
	padding: 0px;
	margin: 0px;
}

/**
* video icon
*/
.jAlbum .video_icon_wrapper{
	pointer-events: none; /* prevent click events on surface */
	position: relative;
	cursor: pointer;
	z-index: 20;
}

.jAlbum .video_icon{
	position: relative;
	margin: 0 auto;
	width: 50px;
	height: 50px;
	border: none !important;
    background-color: transparent !important;
}


/**
* div structur of image and folder elements
*/
.jAlbum .main-box{
	position: static;
	overflow: hidden;
	float: left;
}

.jAlbum .text-box{
	position: absolute;
}

.jAlbum .wrapper-box{
	position: absolute;
	overflow: visible;
	float: left;
}

/**
* fade in classes
*/
.jAlbum .fadein-1 {
	-webkit-backface-visibility: hidden; /* prevent flickering */
	animation: fadein 2s;
    -moz-animation: fadein 2s; /* Firefox */
    -webkit-animation: fadein 2s; /* Safari and Chrome */
    -o-animation: fadein 2s; /* Opera */
}

.jAlbum .fadein-2 {
	-webkit-backface-visibility: hidden; /* prevent flickering */
	animation: fadein 3s;
    -moz-animation: fadein 3s; /* Firefox */
    -webkit-animation: fadein 3s; /* Safari and Chrome */
    -o-animation: fadein 3s; /* Opera */
}

.jAlbum .fadein-3 {
	-webkit-backface-visibility: hidden; /* prevent flickering */
    -animation-delay: 5s;
	-moz-delay: 5s;
	-webkit-animation-delay: 5s;
	-o-animation-delay: 5s;
}

/** fade in keyframe **/
@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-moz-keyframes fadein { /* Firefox */
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-webkit-keyframes fadein { /* Safari and Chrome */
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-o-keyframes fadein { /* Opera */
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}