@import "base.less";
.detail-item {
	display: table;
	width: 100%;
	padding: 15px 0 0;
	position: relative;
	overflow: hidden;
	
	.background {
		position: absolute;
		top: -20px;
		left: -20px;
		bottom: -20px;
		right: -20px;
		// width: 100%;
		background-size: cover;
		z-index: -2;
		.blur(10px);
		box-shadow: inset 0 -130px 30px rgba(0, 0, 0, 0.5);
		// height: 100%;

		@media screen and (min-width: 768px){
			box-shadow: inset 0 -190px 30px #000;
		}
	}

	.video-info{
		padding-bottom: 3%;
		position: relative;
	}

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

	.thumb {
		width: 30%;
		padding-right: 3%;

		img {
			width: 100%;
			display: block;
		}
		
		.viewedInfo {
			margin-top: 5px;
			font-size: 0.7em;
			color: #fff;
			text-align: right;
		}
	}

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

		h1 {
			font-size: 1.5em;
			font-weight: bold;
			margin: 0.5em 0;
			color: #fff;
			float: left;
			width: 100%;
			text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.6);

			@media screen and (min-width: 768px){
				font-size: 1.6em;
			}
		}

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

		.content-item{
			background-color: rgba(0, 0, 0, 0.3);
			height: 26px;
			line-height: 26px;
			border-radius: 5px;
			float: left;
		}

		// .actions {
		// 	// margin-top: 1em;
		// 	padding: 3%;
		// 	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;
		// 		text-decoration: none;
		// 		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;
		// 		}
		// 	}
		// }
		
	}
}

.actions {
	// margin-top: 1em;
	padding: 3%;
	display: table;
	width: 100%;
	box-sizing: border-box;
	border-top: @lineColor 1px solid;

	&>* {
		display: table-cell;
	}

	.gap {
		width: 4%;
	}

	a {
		text-align: center;
		line-height: 2.2em;
		height: 2.2em;
		font-weight: bold;
		border-radius: 3px;
		color: #fff;
		border: 1px solid rgba(255, 255, 255, 0.8);
		text-decoration: none;
		width: 45%;
		font-size: 1.1em;

		@media screen and (min-width: 667px){
			font-size: 1.1em;
			line-height: 2.5em;
			height: 2.5em;
		}
	}


	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;
			// 	}
			// }
		}
	}

	.actions {
		// margin-top: 1em;

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

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

	.detail-item {
		padding: 15px 0 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;
			// 	}
			// }
		}
	}

	.actions {
		// margin-top: 1.5em;
		a {
			// line-height: 3em;
			// height: 3em;
			font-size: 1.3em;
		}
	}
}

















