/*
	bbg User Interface jQuery Plugin,  Version 1.0
*/
.bbg-accordion, .bbg-accordion-content, .bbg-accordion-section, .bbg-accordion-title {
    width: 100%;
    display: block;
}
.bbg-accordion-title {
    cursor: pointer;
    border: 1px solid #000;
    text-align: center;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
}
.bbg-accordion-content {
    border: 1px solid #bbb;
    padding: 1em;
}
.bbg-checkbox {
    display: inline-block;
    width: 25px;
    height: 25px;
    margin: 5px 0;
    background-size: 100%;
    cursor: pointer;
    background-color: red;
}
.bbg-checkbox.on {
    background-color: #0f0;
}
.bbg-numberPicker, .bbg-numberPicker-add, .bbg-numberPicker-input, .bbg-numberPicker-sub {
    display: inline-block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    height: 50px;
    text-align: center;
    line-height: 50px;
    vertical-align: top;
}
.bbg-numberPicker-add, .bbg-numberPicker-sub {
    width: 50px;
    font-size: 25px;
    border: 0px solid #000;
    cursor: pointer;
		background-color: #F7931E;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
}
.bbg-numberPicker .disabled {
	background-color: #950 !important;
}
.bbg-numberPicker-input {
		display: inline-block !important;
    width: 100px !important;
    font-size: 18px;
    border: 1px solid #F7931E !important;
}
.bbg-options-option {
    border: 1px solid #000;
    padding: 5px 0;
    cursor: pointer;
    text-align: center;
}
.bbg-options-option.on {
    background-color: #999;
}
.bbg-prompt-on {
    overflow: hidden;
}
.bbg-prompt-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 101vw;
    height: 101vh;
    z-index: 9998;
}
.bbg-prompt-overlay.on {
    background-color: rgba(0, 0, 0, .8);
}
.bbg-prompt {
    position: absolute;
    display: inline-block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 50vw;
    max-width: 90vh;
    height: 50vw;
    max-height: 90vh;
    z-index: 9999;
    background-color: #fff;
    border: 1px solid #000;
}
.bbg-prompt.m {
	width: 300px;
	height: 300px;
}
.bbg-prompt-inner, .bbg-prompt-overlay-inner {
    position: relative;
    width: 100%;
    height: 100%}
.bbg-prompt-btns {
    width: 100%;
    position: absolute;
    bottom: 0;
}
.bbg-prompt-btns div {
    display: inline-block;
    width: 50%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    text-align: center;
    font-size: 24px;
    padding: 5px 0;
    border: 1px solid #000;
    border-bottom: 0 solid #000;
    cursor: pointer;
}
.bbg-prompt-btns div:hover {
	background-color: #F7931E;
}
.bbg-prompt-btns div.only {
    width: 100%
}
.bbg-prompt-btns div:first-child {
    border-left: 0;
}
.bbg-prompt-btns div:last-child {
    border-right: 0;
}
.bbg-prompt-title {
    width: 100%;
    border-bottom: 1px solid #000;
    text-align: center;
    font-size: 20px;
    padding: 5px 0;
		background-color: #00718f;
		color: white;
}
.bbg-prompt-message {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100%;
    padding: 10px;
    max-height: calc(100% - 72px);
    overflow-y: auto;
    overflow-x: hidden;
}
.bbg-radio {
    border: 0;
}
.bbg-radio input[type=radio] {
    display: none;
}
.bbg-radio-radio {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 99px;
    background-color: #999;
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, .5), 0 0 1px rgba(0, 0, 0, .5);
    border: 1px solid #555;
    margin: 3px;
}
.bbg-radio-radio.on {
    background-color: #CCC;
    box-shadow: inset 2px 2px 5px rgba(255, 255, 255, .5), inset -2px -2px 3px rgba(0, 0, 0, .5);
}
.bbg-toggle, .bbg-toggle-handle {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    border: 1px solid #000;
    height: 50px;
}
.bbg-toggle {
    width: 100px;
    cursor: pointer;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    position: relative;
}
.bbg-toggle-handle {
    display: inline-block;
    width: 50px;
    position: absolute;
    top: -1px;
    left: -1px;
    background-color: #BBB;
}
.bbg-toggle-text {
    display: inline-block;
    height: 50px;
    width: 50px;
    line-height: 50px;
    vertical-align: top;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    text-align: center;
    position: absolute;
    top: -1px;
    right: -1px;
}
.bbg-toggle.on .bbg-toggle-handle {
    position: absolute;
    top: -1px;
    left: auto;
    right: -1px;
}
.bbg-toggle.on .bbg-toggle-text {
    position: absolute;
    top: -1px;
    left: -1px;
    right: auto;
}