
/* Game options */
.game-options .tools-action {
	display: block;
	position: absolute;
	top: 47px;
	right: 0;
	background: rgba(0,0,0,0.2);
	padding: 12px 12.3px;
	border-top: 1px solid rgba(0,0,0,0.3);
	border-left: 1px solid rgba(0,0,0,0.2);
}
.game-options .tools-action .icon {
	width: 25px;
}

.game-options .tools {
	line-height: 1;
    border: 1px solid #444;
    width: 200px;
    font-size: 22px;
    position: absolute;
    right: -205px;
    top: 47px;
    z-index: 9999;
    text-align: center;
    transition: right 0.2s ease-in-out;
}

.game-options .tools.slide-in {
	right: 0;
}

.game-options .tools h3 {
	margin: 0;
	border-bottom: 1px solid #444;
	font-size: 17px;
	padding: 5px 0;
	text-transform: uppercase;
	background: #555;
	color: #fff;
}

.game-options .tools .tool {
	padding: 4px;
    border-bottom: 1px solid #151515;
    position: relative;
    background: rgba(255,255,255,0.8);
}

.game-options .tools .tool .tool-icon {
	width: 17px;
	position: absolute;
	left: 7px;
	top: 50%;
	transform: translateY(-50%);
}

/* ----- responsive styles ----- */
@media only screen and (min-width: 950px) and (min-device-width: 950px) {

	.game-options .tools-action {
		display: none;
	}
	
	.game-options .tools,
	.game-options .obscure-options {		
		width: 75%;
		font-size: 20px;
		position: relative;
		right: unset;
		top: unset;
		margin: 0 auto 20px auto;
	}
	
	.game-options .tools .tool {
		background: rgba(255,255,255,0.15);
	}

}