/* СТИЛЬ кнопки которая заполняется слева на право при наведении */
.bar_button{
	font-family: 'Koliko';
	font-size: 14px;
	font-weight: 500;
	white-space: nowrap;
	letter-spacing: 1px;
	text-shadow: 1px 1px 0px #000;
}
.bar_button .rrap{
	border: 2px solid green;
	display: inline-block;
	position: relative;
	
	width: auto;
}
.bar_button .cont_w{
	border: 0px solid blue;
	
	display: inline-block;
	position: relative;
	width: 150px;
	height: 40px;
}
.bar_button .cont_ww{
	border: 0x solid red;
	
	display: inline-block;
	position: absolute;
	top: 0px;
	height: 40px;
	box-sizing: border-box;
	
	overflow: hidden;
	
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.bar_button .cont_ww.first{
	width: 150px;
	right: 0px;
}
.bar_button .cont_ww.second{
	width: 0px;
	left: 0px;
}
.bar_button:hover .cont_ww.first{
	width: 0px;
}
.bar_button:hover .cont_ww.second{
	width: 150px;
}
.bar_button .cont{
	border: 2px solid #000;
	
	display: inline-block;
	position: absolute;
	top: 0px;
	
	width: 150px;
	height: 40px;
	padding: 10px 20px 0px 20px;
	box-sizing: border-box;
	
	cursor: pointer;
	overflow: hidden;
	
	-webkit-transition: 0.2s;
	transition: 0.2s;
}
.bar_button .cont.first{
	right: 0px;
	color: #000;
	text-shadow: 1px 1px 0px #fff;
	background-color: #fff;
}
.bar_button .cont.second{
	left: 0px;
	color: #fff;
	text-shadow: 1px 1px 0px #000;
	background-color: #000;
}

/* selected */
.bar_button.selected .cont.first,
.bar_button.selected .cont.second{
	border: 1px solid transparent;
	
	color: #fff;
	text-shadow: 1px 1px 0px #000;
	background-color: #000;
}

















