@charset "utf-8";

/*complaints video styles*/

:root {
	--video-block-colour-blue: rgb(0,51,102);
	--video-block-colour-blue-light: rgb(51,153,204);
	--video-block-colour-light: #fff;
	--video-block-colour-dark: #000
}
.content-unlock {
	border-top: 2px solid var(--video-block-colour-blue-light);
	margin-top: 1rem;
	padding-top: 2rem;
	transition: all .3s ease
}
.content-unlock.disabled {
	display: none;
	height: 0
}
/* Demo video section styling */
.demo-video-protect {
	background: #fff;
	padding: 2rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	margin: 2rem 0;
}

.section-protect-video-wrapper video {
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* Button container styling */
.section-protect-video-wrapper > div[style*="text-align:center"] {
	margin-top: 1rem;
	display: flex;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
}
.section-protect-video-wrapper > div[style*="text-align:center"] button  { /*to overwrite the button style from forms.css*/
	margin: 0;
	box-shadow: none;
	text-align: center;
}
.video_buttons {
	background-color: var(--video-block-colour-blue);
	border: 4px solid var(--video-block-colour-blue);
	border-radius: 0;
	color: var(--video-block-colour-light);
	cursor: pointer;
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	height: 48px;
	line-height: 20px;
	margin-bottom: 10px;
	margin-top: 10px;
	max-width: 50px !important;
	min-width: 140px;
	min-width: 50px !important;
	padding: 10px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	transition: all .3s ease
}

.video_buttons:hover {
	background-color: transparent;
	color: var(--video-block-colour-blue);
	text-decoration: none
}
/* Download button styling */
.video-block-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: -webkit-linear-gradient(rgb(75,151,0), rgb(92,185,0)); /* For Safari 5.1 to 6.0 */
	background: -o-linear-gradient(rgb(75,151,0), rgb(92,185,0)); /* For Opera 11.1 to 12.0 */
	background: -moz-linear-gradient(rgb(75,151,0), rgb(92,185,0)); /* For Firefox 3.6 to 15 */
	background: linear-gradient(rgb(75,151,0), rgb(92,185,0)); /* Standard syntax */
	color: #fff;
	padding: 14px 28px;
	border-radius: 5rem;
	text-decoration: none;
	font-weight: 400;
	font-size: 1.4rem;
	transition: all 0.3s ease;
	position: relative;
}

.video-block-button:hover:not(.disabled),
.video-block-button:visited:not(.disabled) {
	background: -webkit-linear-gradient(rgb(92,185,0), rgb(75,151,0)); /* For Safari 5.1 to 6.0 */
	background: -o-linear-gradient(rgb(92,185,0), rgb(75,151,0)); /* For Opera 11.1 to 12.0 */
	background: -moz-linear-gradient(rgb(92,185,0), rgb(75,151,0)); /* For Firefox 3.6 to 15 */
	background: linear-gradient(rgb(92,185,0), rgb(75,151,0)); /* Standard syntax */
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 51, 102, 0.3);
}

.video-block-button.disabled {
	background: #9ca3af;
	cursor: not-allowed;
	opacity: 0.7;
}

.lock-tooltip {
	display: none;
	font-size:1.4rem;
}

.video-block-button.disabled:hover .lock-tooltip {
	display: block;
	position: absolute;
	bottom: 110%;
	left: 50%;
	transform: translateX(-50%);
	background: #333;
	color: #fff;
	padding: 8px 12px;
	border-radius: 4px;
	font-size: 0.85rem;
	white-space: nowrap;
	z-index: 10;
}


/* Content unlock animation */
.content-unlock:not(.disabled) {
	animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
	from { opacity: 0; transform: translateY(-10px); }
	to { opacity: 1; transform: translateY(0); }
}
