.c2d-showreel {
	--c2d-item-height: 97px;
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 32px;
	color: #fff;
	font-family: inherit;
}

/* Player */

.c2d-showreel__frame {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	background: #000;
	overflow: hidden;
}

.c2d-showreel__video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.c2d-showreel__playbtn {
	position: absolute;
	top: 16px;
	left: 16px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	background: rgba(0, 0, 0, 0.55);
	border: 0;
	color: #fff;
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
}

.c2d-showreel__playbtn-icon {
	width: 8px;
	height: 8px;
	display: inline-block;
	position: relative;
}

.c2d-showreel__playbtn-icon::before,
.c2d-showreel__playbtn-icon::after {
	content: "";
	position: absolute;
	top: 0;
	width: 8px;
	height: 8px;
}

/* paused = play triangle */
.c2d-showreel__playbtn-icon {
	border-left: 8px solid #fff;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	width: 0;
	height: 0;
}

/* playing = pause bars */
.is-playing .c2d-showreel__playbtn-icon {
	border: 0;
	width: 8px;
	height: 10px;
	border-left: 3px solid #fff;
	border-right: 3px solid #fff;
}

.c2d-showreel__playbtn-label {
	color: #d9b26b;
}

.c2d-showreel__scrub {
	position: absolute;
	left: 16px;
	right: 60px;
	bottom: 14px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.c2d-showreel__scrub-bar {
	flex: 1;
	height: 3px;
	background: rgba(255, 255, 255, 0.28);
	cursor: pointer;
}

.c2d-showreel__scrub-fill {
	height: 100%;
	width: 0%;
	background: #d9b26b;
}

.c2d-showreel__time {
	font-size: 11px;
	letter-spacing: 0.05em;
	color: #fff;
	white-space: nowrap;
}

/* List */

.c2d-showreel__list {
	display: flex;
	flex-direction: column;
	max-height: calc(var(--c2d-item-height) * 4);
	overflow-y: auto;
	scrollbar-width: thin;
	scrollbar-color: rgba(255, 255, 255, 0.25) transparent;
}

.c2d-showreel__list::-webkit-scrollbar {
	width: 4px;
}

.c2d-showreel__list::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.25);
}

.c2d-showreel__item {
	display: flex;
	align-items: center;
	gap: 16px;
	width: 100%;
	height: var(--c2d-item-height);
	box-sizing: border-box;
	flex-shrink: 0;
	background: transparent;
	border: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding: 16px 12px;
	text-align: left;
	color: inherit;
	cursor: pointer;
	font-family: inherit;
}

.c2d-showreel__item:hover {
	background: rgba(255, 255, 255, 0.04);
}

.c2d-showreel__item.is-active {
	background: rgba(255, 255, 255, 0.07);
}

.c2d-showreel__item-thumb {
	flex-shrink: 0;
	width: 64px;
	height: 64px;
	overflow: hidden;
	display: block;
}

.c2d-showreel__item-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.c2d-showreel__item-body {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.c2d-showreel__item-scene,
.c2d-showreel__item-title {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.c2d-showreel__item-scene {
	font-size: 10px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #d9b26b;
}

.c2d-showreel__item-title {
	font-size: 1.05rem;
}

.c2d-showreel__item-desc {
	font-size: 0.78rem;
	color: #8f8f8f;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.c2d-showreel__item-status {
	flex-shrink: 0;
	min-width: 56px;
	text-align: right;
	font-size: 10px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #d9b26b;
}









.c2d-showreel__volume-control{
	position: absolute;
	right: 10px;
	bottom: 3px;
	z-index: 20;
	border: 1px solid #d8b16a;
}

.c2d-showreel__volume-btn{

    width:42px;

    height:42px;

    border:none;

    background:rgba(15,15,15,.85);

    color:#d9b26b;

    border-radius:6px;

    cursor:pointer;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.25s;

}

.c2d-showreel__volume-btn:hover{

    background:#d9b26b;

    color:#000;

}

.c2d-showreel__volume-slider{

    position:absolute;

    bottom:52px;

    right:7px;

    width:90px;

    transform:rotate(-90deg);

    transform-origin:right bottom;

    opacity:0;

    pointer-events:none;

    transition:.25s;

    accent-color:#d9b26b;

}

.c2d-showreel__volume-slider::-webkit-slider-thumb{

    -webkit-appearance:none;

    width:14px;
    height:14px;

    border-radius:50%;

    background:#d9b26b;

    cursor:pointer;

}

.c2d-showreel__volume-slider::-moz-range-thumb{

    width:14px;
    height:14px;

    border:none;

    border-radius:50%;

    background:#d9b26b;

}

.c2d-showreel__volume-control.open
.c2d-showreel__volume-slider{

    opacity:1;

    pointer-events:auto;

}




@media (max-width: 860px) {
	.c2d-showreel {
		grid-template-columns: 1fr;
	}
}