/*   CSS   */


body{
	margin: 0;
	height: 2000px;
	padding-top: 100px;
	padding-left: 100px;
	background-color: rgb(235, 235, 235);
}



.thumbnail{
	width: 100%;
}



.txt1{

	margin-top: 0;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	margin-bottom: 15px;
}




.video-info-grid{
	display: grid;
	grid-template-columns: 50px 1fr;
}





.propic{

	width: 40px;
	border-radius: 50px;


}



.thumbnail-row{
	position: relative;
	margin-bottom: 12px;

}



.author,
.stats		{

	font-size: 12px;
	color: rgb(96, 96, 96);


}


.author{

	margin-bottom: 6px;
}


.video-info-grid2{
	display: grid;
	grid-template-columns: 50px 1fr;
}




.txt2{

	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	margin-bottom: 15px;

}

.propic2{

	border-radius: 50px;
	width: 40px;

}

.thumbnail-row2{
	position: relative;
	margin-bottom: 12px;
}

.author2{
	font-size: 12px;
	color: rgb(96, 96, 96);
	margin-bottom: 6px;
}

.stats2{

	font-size: 12px;
	color: rgb(96, 96, 96);

}


.video-grid{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	column-gap: 16px;
	grid-row-gap: 40px;
}


@media (max-width: 750px){
	.video-grid{
		grid-template-columns: 1fr 1fr;
	}
}


@media (min-width: 750px) and (max-width: 999){
	.video-grid{
		grid-template-columns: 1fr 1fr 1fr;
	}
}



@media (min-width: 1000px){
	.video-grid {
		grid-template-columns: 1fr 1fr 1fr 1fr;
	}
}

.header{
	height: 55px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 50px;
	background-color: white;
	border-bottom-width: 1px;
	border-bottom-color: rgb(192, 192, 192);
	border-bottom-style: solid;
	padding-bottom: 10px;
	padding-top: 10px;
	z-index: 100;

}


.left-sec{
	display: flex;
	align-items: center;
}

.hamburger-menu{
	height: 24px;
	margin-left: 24px;
	margin-right: 24px;
}

.youtube-logo{
	height: 20px;
}

.middle-sec{
	
	display: flex;
	align-items: center;
	flex: 1;
	margin-left: 70px;
	margin-right: 35px;
	max-width: 500px;
}

.search-bar{
	flex: 1;
	height: 36px;
	padding-left: 10px;
	font-size: 16px;
	border-width: 1px;
	border-style: solid;
	border-color: rgb(192, 192, 192);
	border-radius: 2px;
	box-shadow: inset 1px 2px 3px rgba(0, 0, 0, 0.05);
	width: 0;
}

.search-bar::placeholder{
	font-family: Roboto, Arial;
	font-size: 16px;

}

.search-button{
	height: 40px;
	width: 66px;
	background-color: rgb(240, 240, 240);
	border-width: 1px;
	border-style: solid;
	border-color: rgb(192, 192, 192);
	margin-left: -1px;
	margin-right: 10px;
	position: relative;
}


.search-button,
.voice-search-button{
	display: flex;
	justify-content: center;
	align-items: center;
}

.search-button .tooltip,
.voice-search-button .tooltip{
	font-size: 12px;
	font-family: Roboto, Arial;
	background-color:gray;
	color: white;
	padding-top: 4px;
	padding-bottom: 4px;
	padding-left: 8px;
	padding-right: 8px;
	position: absolute;
	bottom: -30px;
	opacity: 0;
	transition: opacity 0.15s;
	pointer-events: none;
	white-space: nowrap;
}




.search-button:hover .tooltip,
.voice-search-button:hover .tooltip{
	opacity: 1;
}

.search-icon{
	height: 25px;
	
}

.voice-search-button{
	height: 40px;
	width: 40px;
	border-radius: 20px;
	border: none;
	background-color: rgb(245, 245, 245);
    position: relative;
}


.voice-search-icon{

	height: 24px;
	

}

.right-sec{
	margin-right: 20px;
	width: 250px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-shrink: 0;
}




.upload-button .tooltip,
.apps-button .tooltip{
	font-size: 12px;
	font-family: Roboto, Arial;
	background-color:gray;
	color: white;
	padding-top: 4px;
	padding-bottom: 4px;
	padding-left: 8px;
	padding-right: 8px;
	position: absolute;
	bottom: -30px;
	opacity: 0;
	transition: opacity 0.15s;
	pointer-events: none;
	white-space: nowrap;
}




.notifications-ifmt .tooltip{
	font-size: 12px;
	font-family: Roboto, Arial;
	background-color:gray;
	color: white;
	padding-top: 4px;
	padding-bottom: 4px;
	padding-left: 8px;
	padding-right: 8px;
	position: absolute;
	bottom: -30px;
	opacity: 0;
	transition: opacity 0.15s;
	pointer-events: none;
	white-space: nowrap;
}

.upload-button:hover .tooltip,
.apps-button:hover .tooltip{
	opacity: 1;
}



.notifications-ifmt:hover .tooltip{
	opacity: 1;
}

.upload-button,
.apps-button{
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.notifications-ifmt{
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.upload-icon{
	height: 33px;
	cursor: pointer;
	
}

.youtube-apps-icon{
	height: 33px;
	cursor: pointer;
	
}

.notifications-icon{
	height: 33px;
	cursor: pointer;
}

.ly-icon{
	height: 40px;	
	border-radius: 20px;
	
}

.sidebar{
	background-color: white;
	position: fixed;
	top: 70px;
	left: 0;
	bottom: 0;
	width: 72px;
	z-index: 200;
	padding-top: 5px;
	
	
}


.time{
	font-family: Roboto, Arial;
	font-size: 12px;
	font-weight: 500;
	border-radius: 2px;
	color: white;
	position: absolute;
	background-color: black;
	padding-top: 4px;
	padding-bottom: 4px;
	padding-left: 4px;
	padding-right: 4px;
	bottom: 8px;
	right: 5px;

}

.notifications-ifmt{
	position: relative;
}


.notifications-count{
	position: absolute;
	top: -3px;
	right: -2px;
	background-color: rgb(200, 0, 0);
	font-family: Roboto, Arial;
	font-weight: 500;
	font-size: 14px;
	padding-top: 2px;
	padding-bottom: 2px;
	padding-left: 5px;
	padding-right: 5px;
	color: white;
	border-radius: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
}


.sidebarlink{
	height: 80px;
	margin-bottom: 1px;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}


.sidebarlink:hover{
	background-color: rgb(235, 235, 235);
}

.sidebarpic{
	height: 25px;
}

.sidebartitle{
	font-family: Roboto, Arial;
	
	font-size: 10px;
	margin-top: 5px;
}







