@charset "UTF-8";
* {
	-webkit-tap-highlight-color: transparent;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-overflow-scrolling: touch;
	-webkit-touch-callout: none;
	-webkit-text-size-adjust: none;
}
html {
	height: 100%;
}
body {
	min-height: 100%;
    display: flex;
    flex-direction: column;
}
html, body {
	background-color: #F5F5F5;
	margin: 0px;
	padding: 0px;
	color: #000000;
	/*overflow: auto;*/
	/*min-height: 100%;*/
}
html.welcome, html.welcome body {
	background-color: #FDF4EF;
}
html.fullscreen, html.fullscreen body, html.landscape, html.landscape body {
	overflow: hidden;
	/*left: 0px;
	top: 0px;*/
	width: 100%;
	height: 100%;
}
/*html.fullscreen.android, html.fullscreen.android body, html.landscape.android, html.landscape.android body {
	position: fixed;
}*/
html, body, input, button, select, textarea, a {
	font-family: "Helvetica Neue", Helvetica, Arial, "微軟正黑體", "微软雅黑", "メイリオ", "맑은 고딕", sans-serif;
	font-size: 17px;
	color: #000000;
}
button:focus, input:focus, textarea:focus, video:focus {
	outline: 0;
}
button:disabled, textarea:disabled {
	opacity: 0.3;
	pointer-events: none;
}

html.desktop ::-webkit-scrollbar {
	width: 12px;
	height: 12px;
	margin: 0px;
	padding: 0px;
}
html.desktop ::-webkit-scrollbar-track {
	width: 12px;
	height: 12px;
	margin: 0px;
	padding: 0px;
	background: #FFFFFF;
}
html.desktop ::-webkit-scrollbar-thumb {
	width: 12px;
	height: 12px;
	margin: 0px;
	padding: 0px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	background: #777777;
	margin: 0px;
	padding: 0px;
}
html.desktop ::-webkit-scrollbar-thumb:hover {
	background: #999999; 
}
html.desktop ::-webkit-scrollbar-thumb:active {
	background: #666666; 
}

::-moz-selection {
	background: #BED1D1;
}
::selection {
	background: #BED1D1;
}

html.android.fullscreen, html.android.fullscreen body, html.android.landscape, html.android.landscape body {
	position: fixed;
}

/*a {
	cursor: pointer;
}
a:active {
	opacity: 0.75;
}*/

.loader-effect {
	width: 100px;
	height: 100px;
	position: absolute;
	pointer-events: none;
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	left: 50%;
	top: 50%;
}
.loader-effect > div {
	width: 100%;
	height: 100%;
	border: 2px solid transparent;
	border-radius: 50%;
	border-top: 2px solid #AAAAAA;
	/*background-color: #FFCC00;*/
	pointer-events: none;
	position: absolute;
	left: 0px;
	top: 0px;
	-webkit-animation: spin 1s linear infinite; /* Safari */
	animation: spin 1s linear infinite;
}
/* Safari */
@-webkit-keyframes spin {
	0% { -webkit-transform: rotate(0deg); }
	100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

nav {
	width: 100%;
	position: -webkit-sticky;
	position: sticky;
	/*position: fixed;*/
	top: 0px;
	z-index: 1;
	height: 60px;
	overflow: hidden;
	/*background-color: rgba(34, 34, 34, 0.75);*/
	background-color: rgba(255, 255, 255, 0.75);/*#a63a3f*/ /*rgba(220, 79, 86, 0.75);*/
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}
html.fullscreen nav, html.landscape nav {
	display: none;
}
nav > div {
	padding: 10px;
	padding-left: max(15px, constant(safe-area-inset-left));
	padding-left: max(15px, env(safe-area-inset-left));
	padding-right: max(15px, constant(safe-area-inset-right));
	padding-right: max(15px, env(safe-area-inset-right));
	width: 100%;
	height: 100%;
	max-width: 1400px;
	-ms-transform: translate(-50%, 0%);
	transform: translate(-50%, 0%);
	position: relative;
	left: 50%;
	display: flex;
	flex-direction: row;
	align-items: center;
	/*gap: 15px;*/
}
nav .title {
	font-size: 0px;
}
nav .title img {
	padding-top: 5px;
	padding-bottom: 5px;
    width: 100%;
    max-width: 165px;
    padding-left: 10px;
}
nav .title a {
	font-size: 0px;
	/*font-size: 24px;
	white-space: nowrap;
	cursor: pointer;
	text-decoration: none;*/
}
nav/* .title*/ a:active {
	opacity: 0.75;
}
nav .gap {
	flex: 1;
	min-width: 10px;
}
nav .gap2 {
	flex: 1;
	max-width: 15px;
}
nav .link {
    padding: 10px;
	text-decoration: none;
    text-align: center;
	white-space: nowrap;
    color: #133B3A;
    font-weight: bold;
    display: flex;
    align-items: center;
}
nav .link img {
	height: 15px;
	margin-right: 8px;
}
/*nav .line {
	width: 1.5px;
	height: calc(100% - 20px);
	background-color: #FFFFFF;
	opacity: 0.5;
}*/
html.welcome nav.footer {
	display: none;
}
nav.footer {
	background-color: #133B3A;
}
nav.footer a {
	color: #FFFFFF;
}

#context-menu {
	position: fixed;
	/*right: 20px;*/
	z-index: 1;
	border: 1px solid #133B3A;
	padding-top: 10px;
	padding-bottom: 10px;
	background-color: #FFFFFF;
	border-radius: 5px;
	pointer-events: none;
	opacity: 0;
	transform: scale(0);
	transform-origin: top right;
	-webkit-transition: opacity 0.3s, transform 0.3s;
	transition: opacity 0.3s, transform 0.3s;
}
#context-menu.open {
	pointer-events: all;
	transform: scale(1);
	opacity: 1;
}
#context-menu .item {
	padding-left: 18px;
	padding-right: 20px;
	padding-top: 7px;
	padding-bottom: 7px;
	cursor: pointer;
    display: none;
    flex-direction: row;
	align-items: center;
    gap: 10px;
}
#context-menu .item:active {
	opacity: 0.75;
}
html.desktop #context-menu .item:hover {
	background-color: #F5F5F5;
}
#context-menu .item img {
	height: 20px;
}
/*#context-menu.video .play, #context-menu.video .share {
	display: flex;
}
#context-menu.comment .edit, #context-menu.comment .delete {
	display: flex;
}
#context-menu.report .report {
	display: flex;
}
#context-menu.admin .report, #context-menu.admin .delete {
	display: flex;
}*/

.alert-window {
	/*display: contents;*/
	/*visibility: hidden;*/
	text-align: center;
	width: 100%;
	height: 100%;
	position: fixed;
	pointer-events: none;
	left: 0px;
	top: 0px;
	z-index: 2;
}
#alert-window .warning, #alert-window .login, #alert-window .delete {
	display: none;
}
#alert-window.warning .warning {
	display: unset;
}
#alert-window.login .login {
	display: unset;
}
#alert-window.delete .delete {
	display: unset;
}
.alert-window.open {
	display: block;
	/*visibility: visible;*/
	pointer-events: auto;
}
.alert-window > div {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}
.alert-window .mask {
	background-color: #000000;
	opacity: 0;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}
.alert-window.open .mask {
	opacity: 0.5;
}
.alert-window .panel {
	display: flex;
	flex-direction: column;
	padding: 20px;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}
.alert-window .content {
	align-items: center;
	transform: scale(0);
	opacity: 0;
	max-width: 500px;
	padding: 30px;
	overflow-x: hidden;
	overflow-y: auto;
	background-color: #FFFFFF;
	border: 1px solid #133B3A;
	/*flex: 1;
	height: 100%;*/
	min-width: min(200px, 100%);
	max-width: min(400px, 100%);
	border-radius: 5px;
	-webkit-transition: transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s;
	pointer-events: all;
}
.alert-window.open .content {
	transform: scale(1);
	opacity: 1;
}
.alert-window .info {
	margin-top: 10px;
	font-size: 14px;
	color: #919191;
	font-weight: normal;
}
.alert-window button {
	margin-top: 15px;
	border: 1px solid #BED1D1;
	background-color: #BED1D1;
	color: #222222;
	border-radius: 1000px;
	padding: 20px;
	padding-top: 7px;
	padding-bottom: 7px;
	cursor: pointer;
	white-space: nowrap;
}
.alert-window button.cancel {
	margin-right: 7px;
	border: 1px solid #133B3A;
	background-color: transparent;
	color: #222222;
}
.alert-window button:active {
	-ms-transform: scale(0.95);
	transform: scale(0.95);
}
.alert-window .content > img {
	width: 60px;
	margin-bottom: 5px;
}
.alert-window .close {
	font-size: 0px;
	cursor: pointer;
	padding: 20px;
	position: absolute;
	right: 0px;
	top: 0px;
}
.alert-window .close img {
	width: 17px;
	height: 17px;
}
.alert-window .close:active {
	-ms-transform: scale(0.95);
	transform: scale(0.95);
}

#relogin {
	z-index: 3;
}
/*#relogin.alert-window.open .mask {
	opacity: 1;
}*/

#main {
	/*padding: 30px;
	padding-top: max(30px, constant(safe-area-inset-top));
	padding-top: max(30px, env(safe-area-inset-top));
	padding-bottom: max(30px, constant(safe-area-inset-bottom));
	padding-bottom: max(30px, env(safe-area-inset-bottom));*/
	/**margin-top: 60px;**/
	padding: 10px;
	display: flex;
	flex-direction: row;
	/*align-items: start;*/
	/**min-height: calc(100% - 60px);**/
	flex: 1;
	max-width: 1400px;
	-ms-transform: translate(-50%, 0%);
	transform: translate(-50%, 0%);
	position: relative;
	left: 50%;
	/*overflow: hidden;*/
	min-height: calc(100vh - 60px);
}
html.welcome #main {
	max-width: unset;
}
/*html.home #main {
	flex-direction: column;
}*/
html.mobile #main, html.welcome #main {
	padding: 0px;
}
html.fullscreen #main, html.landscape #main {
	-ms-transform: unset;
	transform: unset;
	width: 100%;
	height: 100%;
	min-height: unset;
	max-width: unset;
	left: auto;
	margin-top: 0px!important;
	padding: 0px;
}

/*#main > div {
	padding: 10px;
}*/

#container {
	flex: 1;
	width: 100%;
	overflow: hidden;
	padding: 10px;
    position: sticky;
    align-self: flex-end;
    bottom: 10px;
}
html.mobile #container {
	padding: 0px;
    position: relative;
    align-self: auto;
	bottom: auto;
}
html.fullscreen #container, html.landscape #container {
	height: 100%;
	padding: 0px;
}

#player {
	color: #FFFFFF;
	position: relative;
	/*padding-top: 75%;*/
	padding-top: 56.25%;
	/*background-color: #1A1A1A;*/
	background-color: #133B3A;
	border-radius: 5px;
	overflow: hidden;
	-webkit-transition: padding-top 0.5s;
	transition: padding-top 0.5s;
}
html.mobile #player {
	border-radius: 0px;
}
html.fullscreen #player/* iframe*/, html.landscape #player/* iframe*/ {
	width: 100%;
	height: 100%;
	padding-top: 0px!important;
	/*background-color: #000000;*/
}
#player iframe {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	border: 0px solid #FFFFFF;
	margin: 0px;
	padding: 0px;
}
#player .mask {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	display: none;
	background-color: #1A1A1A;
}
/*#player .mask.error {
	background-color: #1A1A1A;
}*/
#player .mask > span {
	text-align: center;
	font-size: 30px;
	width: 100%;
	position: absolute;
	left: 50%;
	top: 50%;
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	display: none;
}
#player .mask.error > span {
	display: block;
}
#player .mask > div {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
html.fullscreen #player .mask > div, html.landscape #player .mask > div {
	background-size: contain;
}
#player .mask.error > div {
	display: none;
}
#player .loading {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background-color: #1A1A1A;/*不然按上一頁會看到Player*/
}
/*html.fullscreen #player .loading, html.landscape #player .loading {
	background-color: #000000;
}*/
#player .notice {
	display: none;
	position: absolute;
	left: 50%;
	top: 50%;
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	text-align: center;
	padding: 15px;
	width: 100%;
	max-height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
    filter: drop-shadow(0 0 2px #1A1A1A);
}
/*html.landscape #player .notice {
	overflow-y: auto;
}*/
#player .notice img {
	width: 60px;
	margin-bottom: 5px;
}
#player .upgrade img, #player .trial img {
	width: 80px;
	margin-bottom: 7px;
}
#player .buy img {
	width: 80px;
	margin-bottom: 3px;
}
#player.login .login.notice, #player.upgrade .upgrade.notice, #player.buy .buy.notice, #player.error .error.notice, #player.trial .trial.notice {
	display: block;
}
#player.login iframe, #player.upgrade iframe, #player.buy iframe, #player.error iframe, #player.trial iframe {
	visibility: hidden;
}
#player .trial .buttons {
	font-size: 0px;
}
#player .trial .play {
	margin-right: 7px;
    border: 1px solid #FFFFFF;
    background-color: transparent;
    color: #FFFFFF;
}
#player .notice button {
	margin-top: 15px;
	border: 1px solid #FFFFFF;
	background-color: #FFFFFF;
	color: #222222;
	border-radius: 1000px;
	padding: 20px;
	padding-top: 7px;
	padding-bottom: 7px;
	cursor: pointer;
	white-space: nowrap;
}
#player .notice button:active {
	-ms-transform: scale(0.95);
	transform: scale(0.95);
}
#player .countdown {
	display: none;
	position: absolute;
	right: 10px;
	top: 10px;
	border-radius: 1000px;
	background-color: rgba(51, 51, 51, 0.75);
	padding: 5px;
	flex-direction: row;
	align-items: center;
	pointer-events: none;
}
#player .countdown.show {
	display: flex;
}
/*#player .countdown.enabled {
	opacity: 1;
}*/
#player .countdown .title {
	margin-left: 10px;
	margin-right: 5px;
}
#player .countdown .time {
	border-radius: 100%;
	width: 40px;
	height: 40px;
	position: relative;
	overflow: hidden;
	/*display: flex;
	justify-content: center;
	align-items: center;*/
	-webkit-transition: background-color 0.3s;
	transition: background-color 0.3s;
}
#player .countdown.enabled .time {
	background-color: #FF5C5C;
}
#player .countdown .time > div {
	width: 100%;
	height: 100%;
	opacity: 0.3;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}
#player .countdown.enabled .time > div {
	opacity: 1;
}
#player .countdown .time > * {
	position: absolute;
}
#player .countdown .time > span {
	font-weight: bold;
	left: 50%;
	top: 50%;
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
#player .timer {
	position: absolute;
	left: 0px;
	top: 0px;
	background-color: rgba(26, 26, 26, 0.75);
	padding: 10px;
	pointer-events: none;
	display: none;
}
#player .timer > .start {
	color: #00FF00;
}
#player .timer > .end {
	color: #FF0000;
}
#player .banner {
	pointer-events: none;
	border-radius: 5px;
	overflow: hidden;
	position: absolute;
	left: 50%;
	top: 10px;
	transform: translate(-50%, -50px);
	max-width: calc(100% - 20px);
	height: 22%;
	max-height: 100px;
	background-color: #1A1A1A;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
	-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
	font-size: 0px;
	opacity: 0;
	-webkit-transition: opacity 0.5s, transform 0.5s;
	transition: opacity 0.5s, transform 0.5s;
}
#player .banner.show {
	pointer-events: all;
	opacity: 1;
	transform: translate(-50%, 0px);
}
html.fullscreen #player .banner, html.landscape #player .banner {
	top: max(10px, constant(safe-area-inset-top));
	top: max(10px, env(safe-area-inset-top));
}
#player .banner a {
    font-size: 0px;
}
#player .banner a > img {
	height: 100%;
}
#player .banner a.redirect {
	cursor: pointer;
}
#player .banner a.redirect:active {
	opacity: 0.75;
}
#player .banner .close {
	font-size: 0px;
	cursor: pointer;
	padding: 5px;
	position: absolute;
	right: 0px;
	top: 0px;
	filter: drop-shadow(0 0 2px #000000);
	/*border-radius: 100%;
	background-color: rgba(26, 26, 26, 0.5);*/
}
#player .banner .close img {
	width: 15px;
	height: 15px;
}
#player .banner .close:active {
	-ms-transform: scale(0.95);
	transform: scale(0.95);
}
#player > .background {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	opacity: 0;
	display: none;
	-webkit-transition: opacity 1s;
	transition: opacity 1s;
}
#player > .background.show {
	opacity: 0.5;
}
#player.login .background, #player.upgrade .background, #player.buy .background, #player.trial .background, #player .background.canplay {
	display: block;
}
/*html.fullscreen #player > .background, html.landscape #player > .background {
	display: none;
}*/

#info {
	/*background-color: rgb(62, 51, 36);*/
	margin-bottom: 15px;
	margin-top: 15px;
	display: none;
}
html.fullscreen #info, html.landscape #info {
	display: none;
}
html.mobile #info {
	margin-top: 0px;
	margin-bottom: 0px;
	padding: 20px;
	padding-top: 15px;
	padding-bottom: 0px;
}
#info .title {
	font-size: 30px;
	margin-bottom: 10px;
	color: #133B3A;
	font-weight: bold;
}
#info .action {
	display: flex;
	flex-direction: row;
	/*justify-content: space-between;*/
	/*align-items: center;*/
}
#info .action.small {
	flex-direction: column;
}
#info .action.small > div {
	width: 100%;
}
#info .action > div {
	display: flex;
	flex-direction: row;
	gap: 10px;
	margin-bottom: 10px;
}
#info .action .name {
	align-items: center;
	display: flex;
	gap: 7px;
	margin-right: 2px;
}
#info .action.small .buttons {
	overflow-x: auto;
	overflow-y: hidden;
	-ms-transform: translate(-20px, 0px);
	transform: translate(-20px, 0px);
	width: calc(100% + 40px);
	padding-left: 20px;
	padding-right: 20px;
}
#info .action * {
	white-space: nowrap;
}
#info .action .button {
	border-radius: 1000px;
	padding: 20px;
	padding-top: 7px;
	padding-bottom: 7px;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 5px;
	background-color: transparent;
	border: 2px solid #BED1D1;
    color: #222222;
}
#info .action .button.enabled {
	background-color: #BED1D1;
	border: 2px solid transparent;
	cursor: pointer;
}
#info .action .button.enabled:active {
	-ms-transform: scale(0.95);
	transform: scale(0.95);
}
html.desktop #info .action .button.enabled:hover {
	background-color: #93C2C2;
}
#info .action .button.enabled.selected {
	border: 2px solid #133B3A;
	background-color: #93C2C2;
}
#info .action .button.disabled {
	opacity: 0.3;
	pointer-events: none;
}
#info .action .button img {
	height: 20px;
}
#info .action .icon {
	min-width: 40px;
	width: 40px;
	height: 40px;
	background-color: #888888;
	border-radius: 100%;
	cursor: pointer;
}
#info .action .name {
	text-decoration: underline;
	cursor: pointer;
	flex: 1;
    color: #919191;
}
#info .action .name:active, #info .action .icon:active {
	opacity: 0.75;
}
#info .action .collection {
	display: none;
	/*border: 2px solid #FFFFFF;
	background-color: transparent;*/
	background-color: #CCCCCC;
	color: #222222;
	padding-left: 15px;
	gap: 2px;
}
#info .action .gap {
	flex: 1;
}
#info .info {
	color: #133B3A;
	white-space: pre-wrap;
}
#info .info a:active {
	opacity: 0.75;
}

#comment {
	/*border: 1px solid #888888;*/
	background-color: #FFFFFF;
	border-radius: 5px;
	padding-top: 20px;
	/*padding-left: 0px;
	padding-right: 0px;*/
	display: none;
    overflow: hidden;
	position: relative;
}
#comment.empty {
	padding-bottom: 20px;
}
html.mobile #comment {
	border-radius: 0px;
	margin-top: 15px;
}
#comment .publish {
	padding-left: 20px;
	padding-right: 20px;
    position: relative;
}
#comment.login .publish textarea, #comment.upgrade .publish textarea, #comment.buy .publish textarea {
	visibility: hidden;
}
#comment textarea {
	width: 100%;
}
#comment textarea/*, #comment .item.edit .comment[contenteditable="true"]*/ {
	overflow: hidden;
	border-color: #133B3A;
	border-style: solid;
	border-width: 1px;
	outline: none;
	resize: none;
	padding: 10px;
	border-radius: 5px;
	background-color: #F5F5F5;
	color: #000000;
}
#comment textarea:focus {
	/*border-color: #CCCCCC;*/
	background-color: #E6F0F0;
}
html.desktop #comment textarea {
	border-width: 1.5px;
}
#comment textarea::placeholder {
	color: #AAAAAA;
}
#comment button {
	margin-top: 5px;
	border: 1px solid #BED1D1;
    background-color: #BED1D1;
    color: #222222;
    border-radius: 1000px;
    padding: 20px;
    padding-top: 7px;
    padding-bottom: 7px;
    cursor: pointer;
    white-space: nowrap;
}
#comment button:active {
	-ms-transform: scale(0.95);
	transform: scale(0.95);
}
#comment .publish .loading, #comment .publish .error {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background-color: #FFFFFF;
	display: none;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 20px;
}
#comment .publish .loading.show, #comment .publish .error.show {
	display: flex;
}
#comment.finish .publish .loading {
	background-color: rgba(255, 255, 255, 0.5);
}
#comment.error .publish .error {
	z-index: 2;
	display: flex;
}
#comment.login .publish .error, #comment.upgrade .publish .error, #comment.buy .publish .error {
	display: flex;
	background-color: transparent;
}
#comment .publish .title {
	margin-bottom: 7px;
	z-index: 1;
	position: relative;
	display: none;
}
#comment.finish .publish .title {
	display: block;
}
#comment .publish .title .count {
	margin-right: 5px;
}
#comment .publish .footer {
	display: flex;
	justify-content: end;
}
#comment .publish .login, #comment .publish .upgrade, #comment .publish .buy {
	display: none;
}
#comment.login .publish .login, #comment.upgrade .publish .upgrade, #comment.buy .publish .buy {
	display: block;
	z-index: 3;
}
#comment.login .publish .send, #comment.upgrade .publish .send, #comment.buy .publish .send {
	display: none;
}
#comment .myself {
	margin-top: 15px;
	background-color: #E6F0F0;
	padding: 20px;
}
#comment .other {
	padding: 20px;
	padding-top: 0px;
}
#comment .item {
	position: relative;
	/*border-bottom: 1px solid #444444;*/
	padding-top: 15px;
	padding-bottom: 15px;
}
#comment .item.end {
	/*border-bottom: 0px solid #444444;*/
	padding-bottom: 0px;
}
#comment .item .container {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
}
#comment .item .icon {
	width: 40px;
	height: 40px;
	border-radius: 1000px;
    background-color: #888888;
}
#comment .item .title {
	flex: 1;
	display: flex;
	flex-direction: column;
}
#comment .item .date {
	font-size: 12px;
    margin-top: 5px;
    opacity: 0.75;
}
#comment .item .content {
	color: #133B3A;
	margin-left: 50px;
	margin-top: 5px;
}
#comment .item .comment {
	white-space: pre-wrap;
}
#comment .item .comment, #comment .item.edit textarea {
	display: block;
}
#comment .item.edit .comment, #comment .item textarea {
	display: none;
}
#comment .item .edit {
	margin-top: 2px;
	text-align: right;
	display: none;
}
#comment .item.edit .edit {
	display: block;
}
#comment .item .edit .cancel {
	margin-right: 7px;
    border: 1px solid #133B3A;
    background-color: transparent;
    color: #222222;
}
#comment .item .line {
	position: absolute;
	right: 0px;
	bottom: 0px;
	width: calc(100% - 50px);
	height: 1px;
	background-color: #BED1D1;
    z-index: 1;
}
html.desktop #comment .item .line {
	height: 1.5px;
}
#comment .item .more {
    /*padding: 5px;*/
	padding-top: 5px;
	padding-bottom: 5px;
    font-size: 0px;
    cursor: pointer;
}
#comment .item .more:active {
	-ms-transform: scale(0.95);
	transform: scale(0.95);
}
#comment .item .more img {
	width: 25px;
    height: 25px;
}
#comment .item.end .line {
	display: none;
}
#comment .item .mask {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background-color: rgba(230, 240, 240, 0.75);
	display: none;
}
#comment .other .item .mask {
	background-color: rgba(255, 255, 255, 0.75);
}
#comment .item .mask .waiting {
	display: none;
}
#comment .item.waitting .mask {
	display: block;
}
#comment .item.update .mask .waiting {
	display: block;
}

#menu {
	position: -webkit-sticky;
	position: sticky;
	width: 406px;
	/*align-self: flex-start;
	top: 72px;*/
	align-self: flex-end;
    bottom: 10px;
	/*background-color: #182448;*/
	overflow: hidden;
	padding: 5px;
}
#menu.channel {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
html.large #menu.channel {
	flex-direction: row;
}
/*#menu.finish {
	align-self: flex-end;
	top: auto;
    bottom: 10px;
}*/
html.fullscreen #menu, html.landscape #menu {
	display: none;
}
html.home #menu {
	width: 100%;
    align-self: auto;
    bottom: auto;
	/*display: block;*/
}
html.mobile.home #menu {
	padding-top: 15px;
}
html.mobile.home.welcome #menu {
    padding: 0px;
}
html.mobile #menu {
	bottom: 0px;
	width: 100%;
	padding-top: 15px;
	padding-bottom: 15px;
	padding-bottom: max(15px, constant(safe-area-inset-bottom));
	padding-bottom: max(15px, env(safe-area-inset-bottom));
	padding-left: 15px;
	padding-left: max(15px, constant(safe-area-inset-left));
	padding-left: max(15px, env(safe-area-inset-left));
	padding-right: 15px;
	padding-right: max(15px, constant(safe-area-inset-right));
	padding-right: max(15px, env(safe-area-inset-right));
}
#menu > .part {
	overflow: hidden;
	/*background-color: #556677;*/
	/*margin-top: 20px;*/
	padding-top: 15px;
	/*padding-bottom: 40px;*/
}
html.large #menu > .part {
	padding-top: 30px;
}
/*#menu > .part.top {
	padding-top: 0px;
}
html.large #menu > .part.top {
	padding-top: 15px;
}*/
#menu > .part > .title {
	padding-left: 10px;
	padding-right: 10px;
	margin-bottom: 10px;
	display: flex;
    align-items: center;
	gap: 10px;
}
html.mobile #menu > .part > .title {
	flex-direction: column;
    align-items: start;
}
#menu > .part > .title > div {
	flex: 1;
}
#menu > .part > .title .name {
	font-size: 30px;
    font-weight: bold;
}
#menu > .part > .title .info {
	margin-top: 5px;
    color: #133B3A;
	font-size: 20px;
}
#menu > .part > .title a {
	font-size: 20px;
	font-weight: bold;
	color: #6D6D6D;
	text-decoration: none;
}
#menu > .part > .title .order {
	display: flex;
	gap: 10px;
	align-items: center;
    color: #A73A3F;
    padding: 15px;
    padding-left: 30px;
    padding-right: 30px;
    background-color: #FFFFFF;
    border-radius: 1000px;
	box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.2);
	-webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.2);
}
#menu > .part > .title .order img {
	height: 20px;
}
#menu > .part > .title .order:active {
	-ms-transform: scale(0.97);
	transform: scale(0.97);
}
/*#menu > .part > .title button {
	border: 1px solid #FFFFFF;
	background-color: #FFFFFF;
	color: #222222;
	border-radius: 1000px;
	padding: 20px;
	padding-top: 7px;
	padding-bottom: 7px;
	cursor: pointer;
	white-space: nowrap;
}
#menu > .part > .title button:active {
	-ms-transform: scale(0.95);
	transform: scale(0.95);
}*/
#menu > .part > .empty {
	padding: 20px;
	margin: 5px;
	background-color: #1A1A1A;
	border-radius: 5px;
}
#menu .item, #menu .group, #menu .channel {
	width: 100%;
	/*background-color: #1A1A1A;*/
	border-radius: 5px;
	position: relative;
	overflow: hidden;
}
#menu .group > a > div, #menu .channel > a > div {
	border-radius: 5px;
}
#menu .item:active {
	/*background-color: #FFFFFF;*/
	opacity: 0.75;
}
html.desktop #menu .item:hover, html.desktop #menu .group > a > div:hover, html.desktop #menu .channel:hover > a > div {
	background-color: #E6F0F0;
}
#menu .item *, #menu .group *, #menu .channel * {
	text-decoration: none;
}
html.home #menu .item, html.home #menu .group, html.home #menu .channel {
	float: left;
	/*width: 33.33%;*/
}
#menu .item.selected {
	background-color: #BED1D1;
}
#menu .item > a:active > div, #menu .group > a:active > div {
	opacity: 0.75;
}
#menu .channel > a:active > div {
	-ms-transform: scale(0.98);
	transform: scale(0.98);
}
#menu .item > a > div {
	width: 100%;
	min-height: 120px;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: row;
	/*cursor: pointer;*/
	padding: 5px;
}
/*html.mobile #menu .item {
	border-radius: 0px;
}*/
#menu .item .more {
	position: absolute;
	right: 0px;
	top: 0px;
	padding: 5px;
	font-size: 0px;
	cursor: pointer;
}
#menu .item .more:active {
	-ms-transform: scale(0.95);
	transform: scale(0.95);
}
#menu .item .more img {
	width: 25px;
	height: 25px;
}
#menu .item .icon {
	position: relative;
	width: 160px;
	max-width: 50%;
	/*height: 100%;*/
	border-radius: 5px;
	/*background: url(icon.jpg) no-repeat center;
	background-size: cover;*/
	overflow: hidden;
	background-color: #133B3A;
}
html.large #menu .item .icon {
	width: 200px;
}
html.desktop #menu .item:hover .icon, html.desktop #menu .group:hover .icon, html.desktop #menu .channel:hover .icon {
	filter: brightness(1.5);
}
#menu .item .icon .statu {
	position: absolute;
	left: 0px;
    top: 0px;
	width: 100%;
	height: 100%;
	display: none;
    border-radius: 5px;
    filter: drop-shadow(0 0 10px #000000);
	/*backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);*/
}
#menu .item .icon .normal {
	position: relative;
	width: 100%;
	height: 100%;
}
#menu .item .icon .login {
	background: url(login.png) no-repeat center;
	background-size: 38%;
	/*background-color: rgba(0, 0, 0, 0.5);*/
}
#menu .item .icon .upgrade {
	background: url(upgrade.png) no-repeat center;
	background-size: 38%;
	/*background-color: rgba(0, 0, 0, 0.5);*/
}
#menu .item .icon .trial {
	background: url(30.png) no-repeat center;
	background-size: 42%;
	/*background-color: rgba(0, 0, 0, 0.5);*/
}
#menu .item .icon .buy {
	background: url(buy.png) no-repeat center;
	background-size: 42%;
	/*background-color: rgba(0, 0, 0, 0.5);*/
}
#menu .item.login .icon .login {
	display: block;
}
#menu .item.upgrade .icon .upgrade {
	display: block;
}
#menu .item.trial .icon .trial {
	display: block;
}
#menu .item.buy .icon .buy {
	display: block;
}
#menu .item .icon .image, #menu .item .icon .error, #menu .item .icon .mask {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
}
#menu .item.login .icon, #menu .item.upgrade .icon, #menu .item.trial .icon, #menu .item.buy .icon {
	background-color: #133B3A;
}
#menu .item.login .icon .normal, #menu .item.upgrade .icon .normal, #menu .item.trial .icon .normal, #menu .item.buy .icon .normal {
	opacity: 0.5;
	/*filter: blur(5px);*/
}
#menu .item .icon .loading {
	width: 70px;
	height: 70px;
}
#menu .item .icon .error {
	background: url(movie.png) no-repeat center;
	background-color: #555555;
}
#menu .item .icon .error, #menu .group .icon .error, #menu .channel .icon .error {
	background-size: 50%;
	opacity: 0.5;
}
#menu .item .icon .mask {
	background-color: #333333;
	-webkit-transition: opacity 1s;
	transition: opacity 1s;
}
#menu .item .icon.hide .mask {
	opacity: 0;
}
/*html.mobile #menu .item {
	min-height: 90px;
}
html.mobile #menu .item .icon {
	width: 120px;
}*/
#menu .item .content {
	flex: 1;
	padding-left: 10px;
	padding-right: 30px;
	display: flex;
	flex-direction: column;
}
/*html.mobile #menu .item .content {
	padding: 5px;
}*/
#menu .item .name {
	margin-top: 6px;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 5px;
}
#menu .item .name > span {
	color: #919191;
	font-size: 14px;
	/*text-decoration: underline;*/
	cursor: pointer;
}
#menu .item .name > .user-icon {
	background-color: #888888;
	min-width: 15px;
	width: 15px;
	height: 15px;
	border-radius: 100%;
}
#menu .item .name > span:active {
	opacity: 0.75;
}
#menu .item .gap {
	flex: 1;
	min-height: 5px;
}
/*#menu .item .info {
	opacity: 0.75;
	margin-top: 3px;
	font-size: 12px;
}*/
#menu .item .count {
	opacity: 0.75;
	margin-top: 8px;
	/*margin-bottom: 5px;*/
	display: flex;
	flex-direction: row;
	/*justify-content: center;*/
	align-items: center;
	gap: 10px;
	font-size: 12px;
}
#menu .item .count > div {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 3px;
}
#menu .item .count img {
	height: 12px;
}
#menu .item .time {
	font-size: 12px;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 5px;
	opacity: 0.75;
}
#menu .item .time img {
	min-width: 8px;
	width: 8px;
	height: 10px;
}
#menu .item .live {
	font-size: 12px;
	color: #FF5C5C;
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-left: 1px;
	gap: 5px;
}
#menu .item .live.finish {
	color: #000000;
	opacity: 0.75;
}
#menu .item .live-icon {
	min-width: 8px;
	width: 8px;
	height: 8px;
	border-radius: 100%;
	background-color: #FF5C5C;
}
#menu .item .live.finish .live-icon {
	background-color: #000000;
}
#menu .item .plan {
	position: absolute;
	left: 10px;
	top: 10px;
	height: 15px;
	filter: drop-shadow(0 0 4px #000000);
}
#menu .group {
	padding: 10px;
}
#menu .group.expired {
	opacity: 0.5;
}
#menu .group > a > div, #menu .channel > a > div {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
	/*padding: 5px;*/
	background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
}
#menu .channel > a > div {
	padding: 10px;
}
#menu .group .icon, #menu .channel .icon {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
	/*height: 100%;*/
	/*border-radius: 5px;*/
	/*background: url(icon.jpg) no-repeat center;
	background-size: cover;*/
	overflow: hidden;
	background-color: #133B3A;
}
#menu .group .icon .play-icon {
	width: 60px;
	position: absolute;
	left: 50%;
	top: 50%;
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	filter: drop-shadow(0 0 4px #133B3A);
}
#menu .group .icon .image, #menu .group .icon .error, #menu .group .icon .mask,
#menu .channel .icon .image, #menu .channel .icon .error, #menu .channel .icon .mask {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
}
#menu .group .icon .loading {
	width: 120px;
	height: 120px;
}
#menu .channel .icon .loading {
	width: 150px;
	height: 150px;
}
#menu .group .icon .error, #menu .channel .icon .error {
	background: url(broken.png) no-repeat center;
	background-size: 30%;
}
#menu .group .icon .mask, #menu .channel .icon .mask {
	background-color: #222222;
	-webkit-transition: opacity 1s;
	transition: opacity 1s;
}
#menu .group .icon.hide .mask, #menu .channel .icon.hide .mask {
	opacity: 0;
}
#menu .group .footer {
	/*margin-top: 5px;*/
	padding: 20px;
	padding-left: 15px;
	padding-right: 15px;
    /*margin-bottom: 5px;*/
    overflow: hidden;
	border-radius: 5px;
	color: #133B3A;
    display: flex;
    flex-direction: column;
	flex: 1;
}
#menu .group .footer .user {
	display: flex;
	flex-direction: row;
	margin-top: 10px;
	color: #919191;
    align-items: center;
	gap: 10px;
}
#menu .group .footer .gap {
	flex: 1;
}
#menu .group .footer .user > img, #menu .group .footer .status {
	min-width: 30px;
	width: 30px;
	height: 30px;
	background-color: #EEEEEE;
	border-radius: 100%;
    border: 0px;
}
#menu .group .footer .status {
	padding: 7px;
}
#menu .group .footer .status img {
	width: 100%;
	height: 100%;
}
#menu .group .footer .name {
	flex: 1;
	display: flex;
	flex-direction: row;
	gap: 10px;
}
#menu .group .footer .name > .value {
	font-weight: bold;
	flex: 1; 
	align-items: center;
	display: flex;
	min-height: 30px;
    font-size: 20px;
}
#menu .group .info {
	font-size: 14px;
	opacity: 0.75;
	margin-top: 5px;
    display: flex;
    gap: 10px;
	align-items: center;
}
#menu .group .info img {
	width: 14px;
	height: 14px;
}
#menu .channel {
	width: 400px;
	max-width: 100%;
}
#menu .channel .name {
	font-size: 20px;
	text-align: center;
	padding: 10px;
}
#menu .default {
	height: 140px;
	position: relative;
	/*background-color: #1A1A1A;
	border-radius: 5px;*/
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
}
html.home #menu .default {
    min-height: 100%;
}
#menu .default .error {
	display: none;
	position: absolute;
	left: 50%;
	top: 50%;
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	flex-direction: column;
	text-align: center;
}
#menu .default .error img {
	height: 60px;
	margin-bottom: 5px;
}

html.welcome #menu {
	padding: 0px;
    font-size: 0px;
}
#menu iframe {
	width: 100%;
	height: 100%;
	border: 0px solid #FFFFFF;
	margin: 0px;
	padding: 0px;
}

#menu > .banner {
	width: 100%;
	padding: 10px;
	display: none;
}
html.large #menu > .banner {
	margin-top: 15px;
}
#menu > .banner > div {
	width: 100%;
	background-color: #C57993;
	border-radius: 5px;
    font-size: 0px;
    border: 5px;
    overflow: hidden;
}
#menu > .banner > div a:active {
	opacity: 0.75;
}
#menu > .banner > div img {
	width: 100%;
}

/*#menu > .bar {
	overflow: hidden;
	padding-top: 15px;
}
html.large #menu > .bar {
    padding-top: 30px;
}
#menu > .bar > a {
	float: left;
    font-size: 0px;
	padding: 5px;
}
#menu > .bar > a:active {
	opacity: 0.75;
}
#menu > .bar > a > img {
	width: 100%;
}
html.desktop #menu > .bar a:hover {
	filter: brightness(1.5);
}*/

button, /*#info .action .buttons .button, */#context-menu .item {
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-o-user-select: none;
}