._module {
	display: block;
	position: relative;
	border: 1px dashed rgba(146, 26, 31, .8);
	min-height: 64px;
}

	._module:hover {
		border: 1px solid rgba(146, 26, 31, 1);
	}

	._module__controls {
		display: block;
		position: absolute;
		left: 0;
		top: 0;
	}

	/*
	._module__label {
		display: none;
		position: absolute;
		top: 0;
		left: 0;
		height: 27px;
		width: auto;
		line-height: 27px;
		background-color: rgb(146, 26, 31);
		color: #fff;
		border-radius: 3px;
		padding: 0 10px;
		z-index: 1200;
	}

		._module__controls:hover>._module__label {
			display: block;
		}

	*/

	._module__label {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: auto;
		font-size: 10px;
		text-transform: uppercase;
		line-height: 15px;
		background: rgba(146, 26, 31, .8) url('assets/gear.png') 5px center no-repeat;
		color: #fff;
		border-radius: 0 0 5px 0;
		padding: 0 10px 0 20px;
		z-index: 1100;
	}

		._module:hover ._module__label {
			background-color: rgba(146, 26, 31, 1);
		}

	._module__controls-list {
		display: none;
		position: absolute;
		top: 15px;
		left: 0;
		padding: 0;
		background-color: #fff;
		box-shadow: 0 0 5px rgba(0,0,0,.5);
		z-index: 1200;
	}

		._module__controls:hover>._module__controls-list {
			display: block;
		}

	._module__controls-item {
		display: block;
	}

	._module__controls-link {
		display: block;
		padding: 10px;
		color: #c2262e;
		text-transform: uppercase;
		font-size: 12px;
		text-decoration: none;
		min-width: 80px;
		border-bottom: 1px solid #ccc;
	}

		._module__controls-link:hover {
			background-color: #c2262e;
			color: #fff;
		}

	._module__content {
	}