html, body {
	background: transparent none;
	height: 100%;
	margin: 0;
	padding: 0;
}

body {
	min-height: 100%;
	overflow: hidden;
	position: relative;
}

a {
	text-decoration: none;
}

.hidden--transparent {
	display: none !important;
	opacity: 0;
}

.widget {
	bottom: 0;
	left: 0;
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 0;
}

.widget__inner {
	height: 100%;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.widget__viewport {
	display: flex;
	flex-wrap: nowrap;
	height: 100%;
	justify-content: space-between;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	-webkit-overflow-scrolling: touch;
}

.widget__panel {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	position: relative;
}

.widget__item {
	display: block;
	position: relative;
}

.widget__item--piano {
	transform: translate3d(0, 20%, 0) scale(1);
	transition: 300ms ease-in-out;
}

.widget__item--scaled {
	transform: translate3d(0, 4%, 0) scale(1.09);
	z-index: 1;
}

.widget__cover {
	align-items: center;
	display: flex;
	flex-flow: column nowrap;
	justify-content: flex-end;
	position: relative;
}

.widget__image-container {
	overflow: hidden;
	position: relative;
}

.widget__image-shadow {
	align-items: center;
	display: flex;
	flex-flow: column nowrap;
	height: 100%;
	justify-content: flex-end;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.widget__image {
	display: block;
	position: absolute;
	max-width: 100%;
	width: 100%;
	transition: 0.15s ease-in-out;
}

.widget__title, .widget__subtitle {
	box-sizing: border-box;
	overflow: hidden;
	padding-left: 2px;
	padding-right: 2px;
	position: relative;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.widget__scroll-button {
	background-color: rgba(255, 255, 255, 0.3);
	cursor: pointer;
	display: none;
	overflow: hidden;
	position: absolute;
	z-index: 5;
}

.widget__scroll-button--left, .widget__scroll-button--right {
	height: 100%;
	width: 36px;
}

.widget__scroll-button--up, .widget__scroll-button--down {
	height: 36px;
	width: 100%;
}

.widget__scroll-button--left {
	left: 0;
}

.widget__scroll-button--right {
	right: 0;
}

.widget__scroll-button--up {
	top: 0;
}

.widget__scroll-button--down {
	bottom: 0;
}

.widget__arrow {
	border: solid rgba(50, 50, 50, 0.7);
	cursor: pointer;
	height: 12px;
	position: absolute;
	transform: rotate(45deg);
	width: 12px;
	z-index: 5;
}

.widget__arrow--left, .widget__arrow--right {
	margin-top: -6px;
	top: 50%;
}

.widget__arrow--left {
	border-width: 0 0 3px 3px;
	box-shadow: -2px 2px 0 rgba(246, 246, 246, 0.9);
	left: 14px;
}

.widget__arrow--right {
	border-width: 3px 3px 0 0;
	box-shadow: 2px -2px 0 rgba(246, 246, 246, 0.9);
	right: 14px;
}

.widget__arrow--up, .widget__arrow--down {
	left: 50%;
	margin-left: -6px;
}

.widget__arrow--up {
	border-width: 3px 0 0 3px;
	box-shadow: -2px -2px 0 rgba(246, 246, 246, 0.9);
	top: 14px;
}

.widget__arrow--down {
	border-width: 0 3px 3px 0;
	box-shadow: 2px 2px 0 rgba(246, 246, 246, 0.9);
	bottom: 14px;
}

/* hover effects */

.widget__item-mask {
	background-color: #000;
	height: 100%;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	transition: opacity .1s ease-in-out;
	width: 100%;
	z-index: 1;
}

.widget__btn-open {
	background-color: rgba(0, 0, 0, 0.3);
	border: 1px solid #fff;
	border-radius: 3px;
	box-sizing: border-box;
	color: #fff;
	display: block;
	font-size: 13px;
	height: 36px;
	left: 50%;
	line-height: 36px;
	margin-left: -45px;
	opacity: 0;
	position: absolute;
	text-align: center;
	text-transform: uppercase;
	top: 50%;
	transition: 0.2s ease-in-out;
	width: 90px;
	z-index: 2;
}

.has-mouse .widget__item--hover:hover .widget__item-mask {
	opacity: 0.5;
}

.has-mouse .widget__item--hover:hover .widget__image {
	transform: scale(1.1);
}

.has-mouse .widget__item--hover:hover .widget__btn-open {
	opacity: 1;
	transform: translateY(-15px);
}

.widget__status-text {
	color: grey;
	font-size: 13px;
	padding: 20px;
	text-align: center;
}

/* lazyloading */

.no-src.lazyload,
.no-src.lazyloading {
	opacity: 0;
}

.lazyloaded {
	transition: 0.3s ease-in-out;
}

/* loader */

.typing-loader {
	-webkit-animation: typing 1s linear infinite alternate;
	-moz-animation: Typing 1s linear infinite alternate;
	animation: typing 1s linear infinite alternate;
	border-radius: 50%;
	height: 6px;
	left: 50%;
	margin-left: -3px;
	margin-top: -3px;
	position: absolute;
	top: 50%;
	width: 6px;
}

@-webkit-keyframes typing {
	0% {
		background-color: rgba(85, 85, 85, 1);
		box-shadow: 12px 0 0 0 rgba(85, 85, 85, 0.2),
		24px 0 0 0 rgba(85, 85, 85, 0.2);
	}
	25% {
		background-color: rgba(85, 85, 85, 0.4);
		box-shadow: 12px 0 0 0 rgba(85, 85, 85, 2),
		24px 0 0 0 rgba(85, 85, 85, 0.2);
	}
	75% {
		background-color: rgba(85, 85, 85, 0.4);
		box-shadow: 12px 0 0 0 rgba(85, 85, 85, 0.2),
		24px 0 0 0 rgba(85, 85, 85, 1);
	}
}

@-moz-keyframes typing {
	0% {
		background-color: rgba(85, 85, 85, 1);
		box-shadow: 12px 0 0 0 rgba(85, 85, 85, 0.2),
		24px 0 0 0 rgba(85, 85, 85, 0.2);
	}
	25% {
		background-color: rgba(85, 85, 85, 0.4);
		box-shadow: 12px 0 0 0 rgba(85, 85, 85, 2),
		24px 0 0 0 rgba(85, 85, 85, 0.2);
	}
	75% {
		background-color: rgba(85, 85, 85, 0.4);
		box-shadow: 12px 0 0 0 rgba(85, 85, 85, 0.2),
		24px 0 0 0 rgba(85, 85, 85, 1);
	}
}

@keyframes typing {
	0% {
		background-color: rgba(85, 85, 85, 1);
		box-shadow: 12px 0 0 0 rgba(85, 85, 85, 0.2),
		24px 0 0 0 rgba(85, 85, 85, 0.2);
	}
	25% {
		background-color: rgba(85, 85, 85, 0.4);
		box-shadow: 12px 0 0 0 rgba(85, 85, 85, 2),
		24px 0 0 0 rgba(85, 85, 85, 0.2);
	}
	75% {
		background-color: rgba(85, 85, 85, 0.4);
		box-shadow: 12px 0 0 0 rgba(85, 85, 85, 0.2),
		24px 0 0 0 rgba(85, 85, 85, 1);
	}
}