@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


* {
	margin: 0;
	padding: 0;
	font-family: "IBM Plex Sans", sans-serif;
}

p {
	margin: 0;
}

.ivtopsection {
	display: flex;
	flex-direction: column;
}

.ivvideosectionmain {
	width: 100%;
	height: 613px;
	overflow: hidden;
	object-fit: cover;
	background-color: #0000004D;
	position: relative;
}

.ivvideosectionmain video {
	height: inherit;
	width: inherit;
}


.ivtextsectionmain {
	background-color: #EDEDED;
	padding: 45px 35px;
	border-radius: 2px;
	display: flex;
	flex-direction: column;
	gap: 15px;
	font-family: "IBM Plex Sans", sans-serif;
}

.ivcattextbox {
	color: #B32B26;
	font-size: 14px;
	font-weight: 700;
	width: fit-content;
	transition: 0.3s ease;
	font-family: "IBM Plex Sans", sans-serif;
}

.ivcattextbox:hover {
	border-bottom: 2px solid #B32B26;
}

.ivtitletextbox {
	color: #1F1C1C;
	font-size: 36px;
	font-weight: 600;
	font-family: "IBM Plex Sans", sans-serif;
}

.ivdesctextbox {
	color: #484848;
	font-size: 14px;
	font-weight: 400;
	font-family: Roboto;
}

.ivdateandtimesec {
	padding: 8px 0;
	font-size: 14px;
	font-weight: 400;
	display: flex;
	gap: 8px;
	align-items: center;
	color: #7C7C7C;
	font-family: Roboto;
}

.ivwatchtimetextbox {
	display: flex;
	gap: 4px;
	align-items: center;
}





















.ivvideocontrols {
	position: absolute;
	top: 0px;
	width: 100%;
	/* width: calc(100% - 228px); */
	/* width: calc(100% - 80px); */
	height: calc(613px - 0px);
}




/* .flex {
	display: flex;
}

.aic {
	align-items: center;
}

.jcc {
	justify-content: center;
}

.jcsb {
	justify-content: space-between;
}

.fdc {
	flex-direction: column;
}

.object-cover {
	object-fit: cover;
}

.w-full {
	width: 100%;
}

.h-full {
	height: 100%;
} */


.VP-video-controls {
	top: 0;
	left: 0;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.30) 0%, rgba(0, 0, 0, 0.30) 100%);
	justify-content: end;
	padding: 32px 40px;
	/* opacity: 0; */
	transition: opacity 0.3s ease;
}

.VP-video-controls.visible {
	opacity: 1;
}

.VP-videobar-container {
	border-radius: 2px;
	background: #EDEDED;
	height: 5px;
	margin-bottom: 25px;
}

.VP-videobar {
	top: 0;
	left: 0;
	width: 0;
	border-radius: 2px;
	background: #B32B26;
	transition: width 0.3s ease;
}

.VP-video-thumb {
	top: 50%;
	right: -2px;
	transform: translateY(-50%);
	color: #B32B26;
}

.VP-video-btns {
	gap: 20px;
}

.VP-play-pause {
	width: 48px;
	height: 48px;
	background: var(--Grays-White, #FFF);
	border-radius: 50%;
	padding-left: 2px;
}

.VP-play-pause svg,
.VP-video-fullscreen svg,
.VP-video-copy-button svg {
	transition: all 0.3s ease;
}

.VP-play-pause:hover svg,
.VP-video-fullscreen:hover svg,
.VP-video-copy-button:hover svg {
	transform: scale(1.1);
}

.VP-video-duration {
	color: var(--Grays-White, #FFF);
	font-family: "Roboto", sans-serif;
	font-size: 16px;
	font-weight: 300;
	line-height: 100%;
	/* 16px */
}

.VP-video-volume {
	gap: 0px;
	transition: all 0.3s ease;
}

.VP-video-volume .VP-volume-range {
	width: 0;
	overflow: hidden;
	transition: all 0.3s ease;
}

.VP-video-volume .VP-volume-range input {
	accent-color: #B32B26;
}

.VP-video-volume:hover {
	gap: 20px;
}

.VP-video-volume:hover .VP-volume-range {
	width: 100px;
	overflow: visible;
}


.youtuberedirectbtn{
			display: flex;
			align-items: center;
			background-color: #FFFFFF47;
			gap: 8px;
			height: 48px;
			padding: 12px;
			cursor: pointer;

			color: #ffffff;
			font-size: 16px;
			font-weight: 400;
		}

		.showmobile{
			display: none;
		}



@media (max-width: 1025px) {
	/* .ivvideocontrols {
		top: 116px;
		width: calc(100% - 64px);
	} */
}





@media (max-width: 850px) {


	.ivvideosectionmain {
		height: auto;
	}

	.showmobile{
		display: flex;
		position: absolute;
		top: 10px;
		right: 20px;
		background: #00000047;
	}

	.ivvideocontrols {
		display: none;
	}

	.ivtextsectionmain {
		padding: 16px;
		gap: 8px;
	}
}

@media (max-width: 550px) {
	/* .ivvideocontrols {
		top: 116px;
		width: calc(100% - 32px);
	} */

	.ivtextsectionmain {
		padding: 16px;
		gap: 6px;
	}

	.ivcattextbox,
	.ivdesctextbox {
		font-size: 12px;
	}

	.ivtitletextbox {
		font-size: 16px;
	}

	.ivdateandtimesec {
		font-size: 12px;
		gap: 5px;
	}



	.ivwatchtimetextbox svg {
		height: 12px;
		width: 12px;
	}


}