body {
	height: 100vh;
	overflow: hidden;
}

.albumn-title,
.albumn-info,
.menu,
#overview-close,
#overview-title,
#overview-counter,
h1 {
	position: fixed;
	left: 15px;
	bottom: 15px;
	text-transform: uppercase;
	font-size: 11px;
	margin: 0px;
	font-weight: 400;
	letter-spacing: normal;
}
.albumn-title {
	left: calc(15% + 100px);
	transition: all 0.3s;
}
.albumn-title.hide {
	opacity: 0;
}
.albumn-title.show {
	opacity: 1;
}
.albumn-info {
	left: auto;
	right: calc(15% + 100px);
	transition: all 0.3s;
}
.albumn-info.hide {
	opacity: 0;
}
.albumn-info.show {
	opacity: 1;
}
.menu {
	left: auto;
	right: 15px;
	cursor: pointer;
}
.overview {
	padding-left: 20px;
	cursor: pointer;
}
.overview-bg {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 200vh;
	background: #fff;
	opacity: 0;
	pointer-events: none;
	transition: all 0.5s;
}
#overview-container.show .overview-bg {
	opacity: 0.5;
	pointer-events: auto;
}
#overview-title,
#overview-counter,
#overview-close {
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	position: relative;
	cursor: pointer;
}
#overview-title {
	margin-right: 30vw;
}
#overview-close {
	margin-left: auto;
}
.info {
	padding-left: 10px;
}
a {
	text-decoration: none;
	color: #000;
}
.index-container-photos img {
	display: block;
	position: absolute;
	left: 15px;
	height: 60vh;
	bottom: 15px;
	width: 100%;
	max-width: 600px;
	object-fit: contain;
	object-position: left bottom;
	pointer-events: none;
	opacity: 0;
	transition: all 0.8s;
}
.last-album img,
.img {
	display: block;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	height: calc(100% - 60px);
	top: 15px;
	width: 100%;
	max-width: 1200px;
	object-fit: contain;
	pointer-events: none;
	opacity: 0;
	transition: all 0.8s;
}
.active {
	opacity: 1;
}
#clickHandler {
	position: absolute;
	width: 100%;
	height: 100vh;
}
#overview-container {
	position: absolute;
	top: 0px;
	width: 100%;
	left: 0px;
	transition: all 0.7s;
	transform: translateY(-100%);
}
#overview-container.show {
	transform: translateY(0px);
}
#album {
	position: absolute;
	width: 100%;
	top: 0px;
	height: 100vh;
	transition: opacity 0.3s, top 0.7s, height 0.7s;
}
#album.hide {
	opacity: 0;
}

#album.new-album {
	-webkit-animation: cssAnimationNewAlbum 0.5s forwards; 
    animation: cssAnimationNewAlbum 0.5s forwards;
}

@keyframes cssAnimationNewAlbum {
    0%  { top: 100vh; }
    100% { top: 0px; }
}
@-webkit-keyframes cssAnimationNewAlbum {
    0%  { top: 100vh; }
    100% { top: 0px; }
}
.overview-info {
	display: flex;
	width: calc(100% - 30px);
	padding: 0px 15px;
}
#overview-protos {
	position: relative;
	padding: 15px 15px 0px;
	width: 100%;
}

#overview-protos img {
	height: 100px;
	margin-right: 10px;
	margin-bottom: 15px;
	float: left;
	cursor: pointer;
	transition: all 0.3s linear;
}
.new-line {
	clear: both;
}
#index-container {
	position: absolute;
	background: #fff;
	top: 0px;
	left: 0px;
	opacity: 0;
	pointer-events: none;
	width: 100%;
	min-height: calc(100% - 30px);
	transition: all 0.5s;
}
#index-container.show {
	opacity: 1;
	pointer-events: auto;
}
.index-container-menu {
	position: absolute;
	bottom: -30px;
	padding-bottom: 15px;
	right: calc(15% - 10px);
	display: flex;
    align-items: flex-end;
}
.index-container-menu > div > div {
	text-transform: uppercase;
	font-size: 11px;
	margin: 0px 0px 0px 30px;
	font-weight: 400;
	letter-spacing: normal;
	opacity: 0.5;
	cursor: pointer;
	transition: all 0.5s;
}
.index-container-menu > div > div.active {
	opacity: 1;
}
.index-container-menu > div > div:hover {
	opacity: 1;
}
.index-container-photos img {
	opacity: 0;
	transition: all 0.3s;
}
.index-container-photos img.show {
	opacity: 1;
}
.index-menu.hidden {
	max-height: 0px;
	opacity: 0 !important;
	pointer-events: none;
}
.preloader {
	pointer-events: none;
	position: absolute;
	width: 100%;
	top: 0px;
	left: 0px;
	height: 100vh;
	display: flex;
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: normal;
	opacity: 1;
    justify-content: center;
    align-items: center;

    -webkit-animation: cssAnimationHideText 3.5s forwards; 
    -webkit-animation-timing-function: ease-out;
    animation: cssAnimationHideText 3.5s forwards;
    animation-timing-function: ease-in;
}
.preloader span {
	z-index: 1;
}
.preloader::before {
	content: " ";
	display: block;
	position: absolute;
	width: 100%;
	height: 100vh;
	background: #fff;
	top: 0vh;
	z-index: 0;

	-webkit-animation: cssAnimation 3.5s forwards; 
    -webkit-animation-timing-function: ease-out;
    animation: cssAnimation 3.5s forwards;
    animation-timing-function: ease-in;
}
@keyframes cssAnimation {
    80%  { top: 0vh; }
    100% { top: -100vh; }
}
@-webkit-keyframes cssAnimation {
    80%  { top: 0vh; }
    100% { top: -100vh; }
}

@keyframes cssAnimationHideText {
    92%  {color: #000;}
    93% {color: transparent;}
    100% {color: transparent;}
}
@-webkit-keyframes cssAnimationHideText {
    92%  {color: #000;}
    93% {color: transparent;}
    100% {color: transparent;}
}

.site-title,
.albumn-title,
.albumn-info,
.menu {
	-webkit-animation: cssAnimation2 4.5s forwards; 
    animation: cssAnimation2 4.5s forwards;
}
@keyframes cssAnimation2 {
    0%   {opacity: 0; bottom: -15px;}
    80%  {opacity: 0; bottom: -15px; }
    100% { bottom: 15px; }
}
@-webkit-keyframes cssAnimation2 {
    0%   {opacity: 0; bottom: -15px;}
    80%  {opacity: 0; bottom: -15px; }
    100% { bottom: 15px; }
}
.mt {
	margin-top: 10px !important;
}
.images-in-album {
	opacity: 1 !important;
}
.info-container {
	opacity: 0;
	pointer-events: none;
    font-size: 11px;
    text-transform: uppercase;
    transition: all 0.3s;
}
.info-container.show {
	opacity: 1;
	pointer-events: auto;
}
.info-container p {
	margin: 0px;
}
.info-imgs {
	opacity: 0;
	pointer-events: none;
	transition: all 0.3s;
}
.info-imgs.show {
	opacity: 1;
}
.info-imgs {
	position: absolute;
	left: calc(80% - 185px);
	top: 15px;
	display: flex;
    flex-direction: column;
}
.info-imgs img {
	max-height: 105px;
	max-width: 140px;
	min-height: 105px;
	min-width: 140px;
	margin-bottom: calc(27vh - 140px);
	object-fit: contain;
	object-position: left top;
}
@media only screen and (min-width: 601px) {
	.info-container {
	    position: absolute;
	    bottom: 15px;
	    width: 100%;
	    left: 15px;
	    display: flex;
    	justify-content: flex-start;
	}
	.info-padding-left {
		min-width: 200px;
		margin-left: 30px;
		display: flex;
        flex-direction: column;
	}
	.instagram-link {
	    margin-top: auto !important;
	}
	.info-padding-left p {
		margin-bottom: 10px;
	}
	.info-padding-left p:last-child {
		margin-bottom: 0px;
	}
	.info-container-text {
		width: calc(80% - 230px);
		padding-left: 200px;
		position: relative;
		margin-bottom: 0px;
	}
	.info-container-text p {
	    margin-bottom: 20px;
	}
	.top-right {
	    position: absolute;
	    top: 0px;
	    left: 0px;
	}
	.info-container-text p:last-child,
	.has-black-color {
		margin-bottom: 0px !important;
	}
	.info-container s {
	    display: none;
	}
}
@media only screen and (max-width: 600px) {
	@keyframes cssAnimation3 {
	    0%   {opacity: 0; bottom: -15px;}
	    80%  {opacity: 0; bottom: -15px; }
	    100% { bottom: 35px; }
	}
	@-webkit-keyframes cssAnimation3 {
	    0%   {opacity: 0; bottom: -15px;}
	    80%  {opacity: 0; bottom: -15px; }
	    100% { bottom: 35px; }
	}
	.last-album img,
	.img {
	    left: 50%;
	    object-position: center top;
	    transform: translateX(-50%);
	    width: calc(100% - 30px);
	    height: calc(100vh - 90px);
	    top: 15px;
	}
	.albumn-title {
		position: absolute;
		left: 15px;
		bottom: 15px;
		max-width: calc(100% - 130px);
	}
	.albumn-info {
		position: absolute;
		left: 15px;
		right: auto;
		-webkit-animation: cssAnimation3 4.5s forwards; 
    	animation: cssAnimation3 4.5s forwards;
	}
	.overview {
		display: none;
	}
	.menu {
		position: absolute;
		bottom: 15px;
	}
	.index-container-photos {
		display: none;
	}
	.site-title {
		display: none;
	}
	.index-container-menu {
		left: 15px;
		right: auto;
	}
	.index-container-album-categories .index-menu {
		margin-left: 0px !important;
	}
	.images-in-album {
/*		opacity: 0 !important;*/
	}
	.info-container {
		top: 130px;
		width: calc(100% - 0px);
		left: 15px;
		line-height: 1.2;
		position: absolute;
		display: flex;
		font-size: 11px;
        justify-content: space-between;
        height: calc(100% - 145px);
	}
	.top-right {
	    position: absolute;
        bottom: 90px !important;
	}
	.info-container .has-text-color {
	    position: absolute;
        bottom: 138px;
	}
	.info-padding-left {
		padding: 0px 30px;
		position: absolute;
        bottom: 0px;
        right: 30px;
	}
	.info-container p {
		text-indent: 30px;
	}
	.info-container p {
		margin-top: 10px;
		text-indent: 0px;
	}
	.info-imgs {
		display: flex;
		width: calc(100% - 30px);
		left: 15px;
	    flex-direction: row;
	    justify-content: space-between;
	}
	.info-imgs img {
		max-height: 100px;
		max-width: 100px;
		min-height: 100px;
		min-width: 100px;
		margin-bottom: 0px;
		object-fit: contain;
		object-position: left top;
	}
	.info-imgs img:nth-child(2) {
		object-position: center top;
	}
	.info-imgs img:nth-child(3) {
		object-position: right top;
	}
	.menu {
		z-index: 1;
	}
	.info-container s {
	    text-decoration: none;
	}
}
/*.last-album img {
	opacity: 1 !important;
}
.last-album {
	top: 0px;
	position: absolute;
	transition: top 1s;
	width: 100%;
	opacity: 0;
	pointer-events: none;
}
.last-album.scroll {
	top: -100vh;
	opacity: 1;
}*/
.last-album img {
	opacity: 1 !important;
	-webkit-animation: cssAnimationLastAlbum 0.5s forwards; 
    animation: cssAnimationLastAlbum 0.5s forwards;
}
@keyframes cssAnimationLastAlbum {
    0%   { top: 15px; }
    100% { top: calc(-100vh + 15px); }
}
@-webkit-keyframes cssAnimationLastAlbum {
    0%   { top: 15px; }
    100% { top: calc(-100vh + 15px); }
}
.info-container kbd {
    font-family: Arial;
    font-size: 20px;
    line-height: 0.1;
}
.index-container-albums {
    max-height: calc(100vh - 30px);
    overflow-y: auto;
}