.tag-item {
	font-size: 14px;
	display: inline-block;
	margin: 0 2px 5px 0;
	padding: 5px 8px;
	letter-spacing: 2px;
	color: #717171;
	border: 2px solid #d8d8d8;
	border-radius: 5px;
	background-color: #d8d8d8;
}

.tag-item-selected {
	font-size: 15px;
	background-color: blue;
	color: white;
}

.pointer {
	cursor: pointer;
}

h4 {
	font-weight: bold;
}

.movie-tabs ul {
	list-style-type: square;
	font-size: inherit;
	margin: inherit;
	padding: inherit;
	border-bottom: inherit;
	margin-top: 0px;
	padding-top: 0px;
	margin-bottom: 10px;
	margin-left: 20px;
}

.movie-tabs ul li {
	list-style-type: square;
	display: list-item;
}

.btn-success,
.btn-default,
.btn-info,
.btn-danger,
.btn-primary {
	color: #FFFFFF;
}

/**
* Glowing Button
*/

.glowing-button {
	background-color: #004A7F;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	border: none;
	color: #FFFFFF;
	cursor: pointer;
	display: inline-block;
	font-family: Arial;
	font-size: 20px;
	padding: 5px 10px;
	text-align: center;
	text-decoration: none;
	-webkit-animation: glowing 1500ms infinite;
	-moz-animation: glowing 1500ms infinite;
	-o-animation: glowing 1500ms infinite;
	animation: glowing 1500ms infinite;
}

@-webkit-keyframes glowing {
	0% {
		background-color: #B20000;
		-webkit-box-shadow: 0 0 3px #B20000;
	}

	50% {
		background-color: #FF0000;
		-webkit-box-shadow: 0 0 40px #FF0000;
	}

	100% {
		background-color: #B20000;
		-webkit-box-shadow: 0 0 3px #B20000;
	}
}

@-moz-keyframes glowing {
	0% {
		background-color: #B20000;
		-moz-box-shadow: 0 0 3px #B20000;
	}

	50% {
		background-color: #FF0000;
		-moz-box-shadow: 0 0 40px #FF0000;
	}

	100% {
		background-color: #B20000;
		-moz-box-shadow: 0 0 3px #B20000;
	}
}

@-o-keyframes glowing {
	0% {
		background-color: #B20000;
		box-shadow: 0 0 3px #B20000;
	}

	50% {
		background-color: #FF0000;
		box-shadow: 0 0 40px #FF0000;
	}

	100% {
		background-color: #B20000;
		box-shadow: 0 0 3px #B20000;
	}
}

@keyframes glowing {
	0% {
		background-color: #B20000;
		box-shadow: 0 0 3px #B20000;
	}

	50% {
		background-color: #FF0000;
		box-shadow: 0 0 40px #FF0000;
	}

	100% {
		background-color: #B20000;
		box-shadow: 0 0 3px #B20000;
	}
}


/**
 Part of steps to disable videojs download
*/

video::-internal-media-controls-download-button {
	display: none;
}

video::-webkit-media-controls-enclosure {
	overflow: hidden;
}

video::-webkit-media-controls-panel {
	width: calc(100% + 30px);
}

/* -------------------------------------------------------------------------- */
/*                                 AI Chat bot                                */
/* -------------------------------------------------------------------------- */
.chat-container {
	position: fixed;
	bottom: 30px;
	right: 30px;
  }
  
  .chat-btn {
	position: absolute;
	bottom: 0;
	right: 0;
	margin-bottom: 50px;
	width: 180px;
	animation: pulseAnimation 2s infinite;
  }
  
  @keyframes pulseAnimation {
	0% { transform: scale(1); }
	50% { transform: scale(1.05); }
	100% { transform: scale(1); }
  }
  
  .chat-overlay {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: rgba(255, 255, 255, 0.95);
	border: 4px solid #000;
	padding: 20px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	width: 80%;
	max-width: 600px;
	max-height: 70%;
	overflow-y: auto;
	z-index: 2147483647;
  }
  
  .chat-overlay .input-label {
	font-size: 16px;
	color: #333;
	font-weight: bold;
  }
  
  .chat-messages {
	max-height: 70%;
	overflow-y: auto;
	padding-bottom: 10px;
	scrollbar-width: thin;
	scrollbar-color: #ccc #f0f0f0;
  }
  
	.chat-messages::-webkit-scrollbar {
	  width: 8px;
	}
  
	.chat-messages::-webkit-scrollbar-track {
	  background: #f0f0f0;
	}
  
	.chat-messages::-webkit-scrollbar-thumb {
	  background-color: #ccc;
	  border-radius: 4px;
	}
  
	.chat-input {
	  margin-top: 10px;
	}
  
	.close-btn {
	  position: absolute;
	  top: 5px;
	  right: 8px;
	  cursor: pointer;
	  font-size: 30px;
	}
