/* nav bar */
.navbar{
	position:fixed;
	top:0;
	width:100%;
	z-index:100;
	background-color:white;
	/* height:8.85vh; */
	padding: 0 4.75vw;
}
.navbar_title h1{
	height:100%; 
	padding-left:0;
	font-weight: bold;
	color:white !important;
	font-size:1.5rem;
}
.navbar_title:hover{
	text-decoration: none;
}
.container-fluid{
	padding: 0;
	margin:0;
	vertical-align:middle;
}
.search_textbox{
	border-radius: 90px 90px 90px 90px;
	width: 14.5vw;
	height: 47%;
	background-color:transparent;
	font-size: 0.9rem;
} 
.form-control{
	padding-left: 2.375rem;
}
.fa-search{
	/* position:absolute; */
	pointer-events:None;
	color:#aaa;
	/* display:block; */
	transform: translate(90%,55%);
}

.navbar .nav-item a{
	color:white;
	font-size:0.9rem;
	font-weight:100;
	padding:0;
	vertical-align:middle;
}
.nav-link{
	margin:0;
	padding:0;
}
@media screen and (max-width:768px) {
	.nav-item{
		display: none !important;
	}
}
#nav-item-search{
	cursor: pointer;
	width: 4%;
	align-self:stretch;
}
#nav-item-live{
	width: 45px;
	display: flex;
	align-items: center;
	justify-content: space-around;
}
#nav-item-live-content{
	position: relative;
	width: 15px;
	height: 15px;
}
#nav-item-live-content-1{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	height: 10px;
	width: 10px;
	border: 1px white solid;
	border-radius: 5px;
}
#nav-item-live-content-2{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	background-color: red;
	height: 8px;
	width: 8px;
	border-radius: 4px;
	animation-name: bounce;
	animation-duration: 1.3s;
	animation-iteration-count: infinite;
	animation-direction: alternate-reverse;
	animation-timing-function: ease-out;
}
#account-dropdown{
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	min-width: 5.5vh;
	text-align: center;
}
.avatar{
	display: inline-block;
	object-fit: cover; 
	height:2.8vh;
	width:2.8vh;
	border-radius: 50%;
	transform: translate(0,-5%);
}
#account-dropdown .fas{
	display: inline-block;
	color:white;
	transition: transform 0.2s;
}
.dropdown{
	display: none;
	position: absolute;
	left: 1.4vh;
	top: 3vh;
	transform: translateX(-50%);
	min-width: 10vw;
	text-align: center;
	z-index: 1;
	font-size: 1.5rem;
}
.dropdown-content {
	background-color: black;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	border: 1px rgb(50,50,50) solid;
}
.dropdown-content *{
	color: white !important;
	text-decoration: none !important;
	display: block;
	font-size: 0.8rem;
	font-weight: 100;
	margin: 15px 2px;
}
#account-dropdown:hover .fa-caret-down{
	transform: rotate(180deg);
}
#account-dropdown:hover .dropdown{
	display: block;
}
select {
	appearance: none;
	background-color: transparent;
	border: none;
	margin: 0;
	width: 100%;
	font-family: inherit;
	font-size: 25px;
	cursor: inherit;
	line-height: inherit;
}
@keyframes bounce{
	from{
		transform: translate(-50%,-50%) scale(0.2);
	}
	to{
		transform: translate(-50%,-50%) scale(1.0);
	}
}
#nav-item-live-word{
	width: 26px;
}

/* login */
.swal-login{
	width:580px !important;
	height:515px !important; 
}
.swal-login .swal2-title{
	margin-top: 30px !important; 
	margin-bottom: 20px !important;
	color: black !important;
}
#login-top{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#login-left{
	width:200px;
}
#login-right{
	width:200px;
}
#login-right-title{
	color:rgb(151,151,151);
}
#login-bottom{
	width: 100%;
	height: auto;
	margin-top: 30px;
}
#account{
	width:200px;
	height: 40px;
	margin: 0 0 15px 0;
	font-size: 0.9rem;
	background-color: white !important;
	border-color: rgb(151,151,151);
	color: rgb(151,151,151);
	border-radius: 5px;
}
#password{
	width:200px;
	height: 40px;
	margin: 0 0 15px 0;
	font-size: 0.9rem;
	background-color: white !important;
	border-color: rgb(151,151,151);
	color: rgb(151,151,151);
	border-radius: 5px;
}
input:-internal-autofill-selected{
	-webkit-box-shadow: 0 0 0px 1000px white inset;
}
input:-webkit-autofill {
	-webkit-box-shadow: 0 0 0px 1000px white inset;
}
.loginBtn{
	background-color: white;
	border:1px rgb(74,74,74) solid;
	border-radius: 5px;
	box-shadow: none;
	color: black;
	cursor: pointer;
	font-size: 0.9rem;
	font-weight: 500;
	margin-bottom: 23px;
	width:200px;
	height: 40px;
}
.fbLoginBtn{
	background-color: rgb(66,103,191);
	border:1px rgb(66,103,191) solid;
	border-radius: 5px;
	box-shadow: none;
	color: white;
	cursor: pointer;
	font-size: 0.9rem;
	font-weight: 500;
	margin-top: 23px;
	width:200px;
	height: 40px;
}
.appleLoginBtn{
	background-color: black;
	border:1px black solid;
	border-radius: 5px;
	box-shadow: none;
	color: white;
	cursor: pointer;
	font-size: 0.9rem;
	font-weight: 500;
	margin-top: 14px;
	width:200px;
	height: 40px;
}
.verticalSeparator {
	border-left: 1px solid rgb(151,151,151);
	height: 140px;
}
.separator {
	border-bottom: 1px solid rgb(151,151,151);
	width: 100%;
}
#classContainer{
	display: flex;
	justify-content: space-between;
	padding: 0px 27vw;
}
#tagContainer{
	display: flex;
	justify-content: space-between;
	padding: 0px 2vw;
}
.theTag , .theClass{
	color: #ffffff;
    border: 3px #6c707a solid;
    border-radius: 12px;
    margin: 3px;
    padding: 2px 7px;
    cursor: pointer;
    background-color: #202124;
}
#searchContainer{
	display: none;
	opacity: 0;
	position: fixed;
	width: 100vw;
    top: 0;
    left: 0;
	background-color: rgb(7%, 7%, 7%, 0.8);
	height: auto;
	padding: 20px;
	z-index: 1000;
}
#closeSearchContainer{
	padding: 20px;
	color :cornsilk;
	cursor: pointer;
	height: 10px;
}
#searchFrominput{
	width: 100%;
    border-radius: 25px;
    border: 3px #6c707a solid;
    background-color: #202124;
    color: white;
    height: 50px;
	padding: 0px 15px;
}
#searchVideoContainer{
	display: flex;
	/* flex-wrap: wrap; */
	overflow: scroll;
	width: 100%;
	padding: 10px;
	margin-top: 12vh;
}
#searchVideoContainer::-webkit-scrollbar{
    display: none;
}
.videoBox{
	display: block;
	width: 225px;
	margin: 0px 10px;
}
.filterContainer{
	width: 16%;
	padding: 10px;
}
.tag-container-filter{
	display: inline;
	position: relative;
    background-color: #FF7C34;
    color: white;
    padding: 0px 3px 3px 3px;
    border-radius: 4px;
    margin: 0px 3px;
	left: 5%;
    bottom: 65%;
}
.title-filter{
	color: white;
}