
.billardpad_context_menu {
    display: block;
    position: absolute;
    width: 240px;
    background-color: white;
    box-shadow: 0 0 5px grey;
    border-radius: 3px;
}

.billardpad_context_menu button {
    font-size:11pt;
    width: 100%;
    background-color: white;
    border: none;
    margin: 0;
    padding: 10px;
}

.billardpad_context_menu button:hover {
    background-color: lightgray;
}
    
.billardpad_color-picker{
	width: 90%;
	align: right;
    background: #d3d3d3;
	border:none;
	margin:5px;
}

.billardpad_context_menu select{
	width: 90%;
	align: right;
    background: #d3d3d3;
	border:none;
	margin:5px;
}

.billardpad_context_menu input[type="number"]{
	width: 90%;
	align: right;
    background: #d3d3d3;
	border:none;
	margin:5px;
}
	
.billardpad_slider {
    -webkit-appearance: none;
    width: 90%;
    height: 25px;
    align: right;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.billardpad_slider:hover {
    opacity: 1;
}

.billardpad_slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    background: #04AA6D;
    cursor: pointer;
}

.billardpad_slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background: #04AA6D;
    cursor: pointer;
}

.billardpad_input_label{
    font-size:11pt;
    text-align:right;
}