.detail-item {
	display: table;
	width: 100%;
	padding: 15px 0 15px;
	position: relative;
	overflow: hidden;
	
	.background {
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		width: 100%;
		background-size: cover;
		z-index: -2;
		.blur(10px);
		box-shadow: inset 0 -30px 30px @backgroundColor;
	}


	&>* {
		display: table-cell;
		padding-left: 5%;
		vertical-align: top;
	}

	.thumb {
		width: 30%;

		img {
			width: 100%;
			display: block;
		}
	}

	.content {
		padding: 0 5%;
		font-size: 0.9em;

		h1 {
			font-size: 1.2em;
			font-weight: bold;
			margin: 0.5em 0;
		}

		p {
			color: #fff;
			margin: 0.25em 0 0;
			text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
		}


		.viewedInfo {
			margin-top: 10px;
			padding: 3px 6px;
			font-size: 0.7em;
			color: @titleColor;
			background: rgba(0, 0, 0, 0.2);
			border-radius: 2px;
		}

		.actions {
			margin-top: 1em;
			display: table;
			width: 100%;

			&>* {
				display: table-cell;
			}

			.gap {
				width: 10%;
			}

			a {
				text-align: center;
				line-height: 2.2em;
				font-weight: bold;
				border-radius: 3px;
				color: @linkColor;
				display: block;
				box-sizing: border-box;
				width: 45%;
				font-size: 1.1em;
			}


			a.play {
				background-color: @playButtonBackgroundColor;

				&:active {
					background-color: @playButtonBackgroundColorActived;
				}
			}

			a.download {
				background-color: rgba(0, 0, 0, 0.4);
				box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);

				&:active {
					background-color: rgba(0, 0, 0, 0.5);
				}
			}

			&.disabled {
				a {
					opacity: 0.4;
				}
			}
		}
	}
}

@media screen and (min-width: 375px) {

	.detail-item {

		.content {

			.actions {
				margin-top: 1em;

				a {
					border-radius: 4px;
				}
			}
		}
	}
}

@media screen and (min-width: 768px) {

	.detail-item {
		padding: 15px 0;

		.thumb {
			width: 20%;
			padding-left: 3%;
		}

		.content {
			font-size: 1.1em;

			p {
				margin: 0.5em 0 0;
			}

			.actions {
				margin-top: 1.5em;
				a {
					line-height: 2.5em;
				}
			}
		}
	}
}















