@CHARSET "UTF-8";

.labels_container {
	position: relative;
	margin: 0;
	height: 40px;
	
	word-spacing: -4px;
	
	z-index: 10;
	
	display: flex;
	flex-flow: row nowrap;
	align-items: stretch;
}

.labels_container .label {
	position: relative;
	margin: 0;
	
	width: 150px;
	height: inherit;
	line-height: 40px;
	
	text-align: center;
	font-weight: bold;
	
	border-right: solid 2px;
	
	word-spacing: normal;
	vertical-align: top;
	cursor: pointer;
	
	z-index: 20;
}

/*.labels_container .label input {
	display: none;
}*/

.labels_container .label .img_container {
	position: absolute;
	top: 2px;
	left: 2px;
	
	width: 36px;
	height: 36px;
}

.labels_container .label .img_container img {
	position: absolute;
	top: 50%;
	left: 50%;
	
	margin: 0;
	margin-right: -50%;
	
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.labels_container .label .hidden_label_companion {
	position: absolute;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	
	line-height: inherit;
	
	/*font-size: 1.1em;*/
}

.labels_container .hidden_label {
	position: absolute;
	top: 38px;
	right: 0px;
	left: 0px;
	
	height: 0;
	/*line-height: 40px;*/
	
	z-index: 10;
	overflow: hidden;
	
	border-bottom: solid 2px;
}

.labels_container .hidden_label form .label_success_button,
.labels_container .hidden_label form .label_cancel_button {
	position: absolute;
	right: 0;
	
	width: 150px;
	height: 50%;
}

.labels_container .hidden_label form .label_success_button {
	top: 0;
}

.labels_container .hidden_label form .label_cancel_button {
	bottom: 0;
}

.labels_container .hidden_label {
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	
	-webkit-transform: translate3d(0, 0, 0);
	-webkit-backface-visibility: hidden;
}
