@charset "utf-8";
/* CSS Document */

html,body {
	width: 100%;
	height: 100%;
	margin: 0px;
	padding: 0px;
  background-color: #f0f0f0;
}

#container {
	width: 90%;
	margin: 10px auto;
	padding-bottom: 10px;
	box-shadow: 0 0px 10px 0px rgba(0,0,0,0.5);
}

.video-js .vjs-time-control { /*再生時間/全体時間表示*/
    display: block;
}
.video-js .vjs-remaining-time { /*残り時間非表示*/
    display: none;
}
.video-js .vjs-picture-in-picture-control { /*ピクチャーインピクチャー非表示*/
    display: none;
}

#title {
  color: #F0F0F0;
  text-align: center;
  padding: 0.4em;
  font-size: 16px;
  background-color: #0F0F0F;
}

#listbox {
	overflow: hidden;
	width: 90%;
	margin: 0.4em auto;
	text-align: center;
	position: relative;
}
#listbox select {
	width: 100%;
	padding-right: 1em;
	cursor: pointer;
	text-indent: 0.01px;
	text-overflow: ellipsis;
	border-radius: 2px;
	border: 1px solid #666666;
  background-color: #333;
	-webkit-appearance: none;
	appearance: none;
	padding: 8px 38px 8px 8px;
	color: #F0F0F0;
  font-size: 14px;
}
#listbox select::-ms-expand {
    display: none;
}
#listbox::before {
	position: absolute;
	top: 0.8em;
	right: 0.8em;
	width: 0;
	height: 0;
	padding: 0;
	content: '';
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #F0F0F0;
	pointer-events: none;
}
#listbox option {
  background-color: #333;
  color: #F0F0F0;
}
