.bbb_color_thema {
	border: 1px solid #333;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0.00, #e9e9e9), color-stop(1.00, #ababab));
	background: -webkit-linear-gradient(#e9e9e9, #ababab);
	background: -moz-linear-gradient(#e9e9e9, #ababab);
	background: -o-linear-gradient(#e9e9e9, #ababab);
	background: -ms-linear-gradient(#e9e9e9, #ababab);
	background: linear-gradient(#e9e9e9, #ababab);
}
.bbb_button_hover:hover {
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0.00, #fff9c1), color-stop(1.00, #c1bb83));
	background: -webkit-linear-gradient(#fff9c1, #c1bb83);
	background: -moz-linear-gradient(#fff9c1, #c1bb83);
	background: -o-linear-gradient(#fff9c1, #c1bb83);
	background: -ms-linear-gradient(#fff9c1, #c1bb83);
	background: linear-gradient(#fff9c1, #c1bb83);
}
.bbb_modal {
	position: fixed;
	top: 0;
	left: 0;
	display: none;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: 100;
}
.bbb_dialog {
	/*background: #fff;*/
	border-radius: 10px;
	position: fixed;
	top: 0;
	left: 0;
	box-sizing: border-box;
	padding: 5px;
	z-index: 101;
	display: none;
	overflow: hidden;
	text-align: center;
}
.bbb_close_button {
	width: 16px;
	height: 16px;
	position: absolute;
	top: 8px;
	right: 8px;
	border-radius: 3px;
	cursor: pointer;
}
.bbb_close_button:before {
	content: "";
	width: 16px;
	height: 1px;
	border-bottom: 1px solid #333;
	position: absolute;
	top: 7px;
	left: 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.bbb_close_button:after {
	content: "";
	width: 16px;
	height: 1px;
	border-bottom: 1px solid #333;
	position: absolute;
	top: 7px;
	left: 0;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.bbb_title_bar {
	width: calc(100% - 4px);
	height: 32px;
	border-radius: 8px;
	color: #333;
	font-size: 18px;
	font-weight: bold;
	line-height: 32px;
	padding-left: 10px;
	box-sizing: border-box;
	position: absolute;
	top: 2px;
	left: 2px;
}
.bbb_button_space {
	width: 100%;
	font-size: 0px;
	text-align: center;
	position: absolute;
	bottom: 10px;
	left: 0;
}
.bbb_buttons {
	min-width: 70px;
	height: 30px;
	line-height: 30px;
	font-size: 16px;
	text-align: center;
	display: inline-block;
	margin: 0 3px 0 3px;
	padding: 0 3px 0 3px;
	box-sizing: border-box;
	border-radius: 5px;
	cursor: pointer;
}
