

/* Start:/local/components/glit/kinescope.my_videos/templates/.default/style.css?17829105044596*/
.kinescope-my-videos-page {
	width: min(calc(100% - 32px), var(--breakpoint-max-container-width, 1472px));
	margin: 0 auto;
	padding: 40px 0 72px;
}

.kinescope-my-videos-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 24px;
}

.kinescope-my-videos-header__label,
.kinescope-my-videos-state__label {
	margin-bottom: 8px;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
	color: #6b6576;
	text-transform: uppercase;
}

.kinescope-my-videos-header__title,
.kinescope-my-videos-state__title {
	font-size: 42px;
	line-height: 1.05;
}

.kinescope-my-videos-header__count {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 8px 14px;
	border: 1px solid rgba(21, 21, 21, 0.1);
	border-radius: 8px;
	background: #fff;
	font-size: 14px;
	font-weight: 700;
	white-space: nowrap;
}

.kinescope-my-videos-header__side {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
}

.kinescope-my-videos-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.kinescope-my-videos-nav a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 8px 13px;
	border: 1px solid rgba(21, 21, 21, 0.1);
	border-radius: 8px;
	background: #fff;
	color: #151515;
	font-size: 14px;
	font-weight: 900;
	text-decoration: none;
	white-space: nowrap;
	transition: transform 150ms ease, border-color 150ms ease, background-color 150ms ease;
}

.kinescope-my-videos-nav a:hover {
	transform: translateY(-1px);
	border-color: rgba(111, 84, 221, 0.38);
}

.kinescope-my-videos-nav a.is-active {
	border-color: #151515;
	background: #151515;
	color: #fff;
}

.kinescope-my-videos {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 16px;
}

.kinescope-my-videos__item {
	display: grid;
	grid-template-columns: 88px minmax(0, 1fr);
	grid-template-areas:
		"preview content"
		"preview action";
	gap: 12px 16px;
	min-height: 128px;
	padding: 16px;
	border: 1px solid rgba(21, 21, 21, 0.08);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 12px 28px rgba(21, 21, 21, 0.06);
	transition: transform 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}

.kinescope-my-videos__item:hover {
	transform: translateY(-2px);
	border-color: rgba(120, 82, 204, 0.35);
	box-shadow: 0 16px 36px rgba(21, 21, 21, 0.09);
}

.kinescope-my-videos__preview {
	grid-area: preview;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 88px;
	height: 96px;
	border-radius: 8px;
	background: #151515;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
	color: #fff;
}

.kinescope-my-videos__preview .fa-play {
	font-size: 22px;
	transform: translateX(1px);
}

.kinescope-my-videos__content {
	grid-area: content;
	min-width: 0;
}

.kinescope-my-videos__title {
	display: block;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.25;
	overflow-wrap: anywhere;
}

.kinescope-my-videos__meta {
	display: block;
	margin-top: 6px;
	font-size: 14px;
	line-height: 1.4;
	color: #6b6576;
}

.kinescope-my-videos__action {
	grid-area: action;
	align-self: end;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: fit-content;
	min-height: 36px;
	padding: 8px 12px;
	border-radius: 8px;
	background: #abf;
	font-size: 14px;
	font-weight: 700;
	color: #151515;
}

.kinescope-my-videos-state {
	width: 100%;
	padding: 32px;
	border: 1px solid rgba(21, 21, 21, 0.08);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 12px 28px rgba(21, 21, 21, 0.06);
}

.kinescope-my-videos-state__text {
	margin-top: 12px;
	font-size: 18px;
	line-height: 1.5;
	color: #4e4957;
}

.kinescope-my-videos-state__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	margin-top: 24px;
	padding: 10px 18px;
	border-radius: 8px;
	background: #151515;
	font-size: 15px;
	font-weight: 700;
	color: #fff;
}

@media (max-width: 640px) {
	.kinescope-my-videos-page {
		padding-top: 28px;
		padding-bottom: 48px;
	}

	.kinescope-my-videos-header {
		align-items: flex-start;
		flex-direction: column;
		gap: 14px;
	}

	.kinescope-my-videos-header__side {
		justify-content: flex-start;
	}

	.kinescope-my-videos-header__title,
	.kinescope-my-videos-state__title {
		font-size: 32px;
	}

	.kinescope-my-videos {
		grid-template-columns: 1fr;
	}

	.kinescope-my-videos__item {
		grid-template-columns: 72px minmax(0, 1fr);
		min-height: 112px;
		padding: 14px;
	}

	.kinescope-my-videos__preview {
		width: 72px;
		height: 84px;
	}

	.kinescope-my-videos-state {
		padding: 24px;
	}
}

/* End */
/* /local/components/glit/kinescope.my_videos/templates/.default/style.css?17829105044596 */
