.cve-wrapper {
    position: relative;
    cursor: pointer;
    overflow: hidden;
	border-radius: 32px;
	box-shadow: 0px 16px 32px 0px #121111;
	margin-bottom:64px;
}

@media only screen and (max-width: 768px) {
	.cve-wrapper {
		border-radius: 24px;
	}
}


.cve-video {
    width:calc(100% - 18px);
    height: auto;
    display: block;
	margin-left:9px;
	margin-right:9px;
}

.cve-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: #23AC95;
    border-radius: 50%;
    z-index: 10;
}

.cve-play-btn::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 32px;
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

.cve-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.7);
    padding: 8px 12px;
    z-index: 15;
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.3s;
}

.cve-wrapper.show-controls .cve-controls {
    opacity: 1;
}

.cve-controls button {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 0 6px;
}

.cve-controls input[type="range"] {
    flex-grow: 1;
    margin: 0 10px;
}
