._btn {
	position: relative;
	text-align: center;
	height: 28px;
	white-space: nowrap;
	padding: 0 14px;
	border-radius: 4px;
	border: 1px solid hsl(212, 11%, 26%);
	color: hsl(212, 11%, 26%);
	background-color: transparent;
	cursor: pointer;
	display: inline-block;
	vertical-align: bottom;
	transition: all 120ms ease;
	-webkit-transition: all 120ms ease;
	box-shadow: 0px 1px 1px 0px hsla(0, 0%, 0%, 0.25);
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-image: none;
}
._btn::before {
	content: '';
	vertical-align: middle;
	margin-left: -2px;
	display: inline-block;
	height: 100%;
	width: 1px;
}
input._btn {
	padding-top: 4px;
}
._btn .icon {
	margin-right: 5px;
}
._btn.-small {
    font-size: 11px;
    padding: 0 8px;
    height: 24px;
}
._btn.-icon-only {
	width: 28px;
	padding-left: 0;
	padding-right: 0;
}
._btn.-icon-only .icon {
	margin-right: 0;
	vertical-align: middle;
	font-size: 1em;
}
._btn.-dropdown::after {
	content: '\e918';
	font-family: 'zone-icon-set';
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	font-size: 0.714em;
	margin-left: 4px;
}
._btn.-big-icon {
	height: 33px;
}
._btn.-big-icon > .icon:first-child {
	font-size: 1.714em;
	vertical-align: middle;
	display: inline-block;
	margin-top: -4px;
	margin-right: 8px;
}
._btn.-link {
	text-decoration: underline;
    cursor: pointer;
}
._btn.-flat {
	box-shadow: none;
}
._btn.-circle {
	border-radius: 35px;
}
._btn.-main {
	color: #FFF;
	background-color: #5d96df;
	border-color: #5d96df;
	text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
}
._btn.-white {
	color: #FFF;
    border-color: #666;
	text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
}
._btn.-white:hover {
    color: #333;
}
._btn.-emphasize {
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: bold;
}
._btn.-bold {
	font-weight: bold;
}
._btn.-icon-right > .icon {
	margin-right: 0;
	margin-left: 4px;
}
._btn.-text-small {
	font-size: 12px;
}
._btn.-large {
	height: 33px;
}
._btn.-large.-icon-only {
	width: 33px;
}
._btn.-block {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}
._btn.-expandable {
	overflow: hidden;
	-webkit-transition-duration: 260ms;
	        transition-duration: 260ms;
	-webkit-transition-property: width, background-color, opacity;
	transition-property: width, background-color, opacity;
}
._btn.-expandable.-circle {
	border-radius: 35px;
}
._btn.-expandable:hover,
._expand-active:hover ._btn.-expandable {
	width: 165px;
	padding-left: 6px;
}
._btn.-expandable > *:last-child,
._btn.-glass.-expandable > .inner > *:last-child {
	display: inline;
	opacity: 0;
	position: absolute;
	-webkit-transition: none;
	transition: none;
}
._btn.-expandable.-swap > *:first-child {}
._btn.-expandable.-swap:hover > *:first-child,
._expand-active:hover ._btn.-expandable.-swap > *:first-child {
	display: none;
}
._btn.-expandable:hover > *:last-child,
._expand-active:hover ._btn.-expandable > *:last-child,
._btn.-expandable:hover > .inner > *:last-child,
._expand-active:hover ._btn.-expandable > .inner > *:last-child {
	opacity: 1;
	position: static;
	position: initial;
	-webkit-transition: opacity 180ms ease 140ms;
	transition: opacity 180ms ease 140ms;
}
._btn.-borderless {
    border: none;
    background-color: transparent;
    outline: none;
    box-shadow: none;
    border-radius: 0;
}
._btn.-compact {
	border: none;
	background-color: transparent;
	outline: none;
	box-shadow: none;
	border-radius: 0;
	padding: 0;
}
._btn.-text {
	border: none;
	background-color: transparent;
	outline: none;
	box-shadow: none;
	border-radius: 0;
	padding: 0;
}
._btn.-text:hover {
    background-color: transparent;
    color: hsl(212, 11%, 40%);
}
._btn.-glass {
	overflow: hidden;
}
._btn.-glass > .tint {
	border-radius: 4px;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #3a4149;
	opacity: 0;

	-webkit-transition: opacity 180ms ease-out;

	transition: opacity 180ms ease-out;
}
._btn.-glass.-circle > .tint {
	border-radius: 35px;
}
._btn.-glass:hover > .tint {
	opacity: 0.25;
}
._btn.-glass > .blur {
	position: absolute;
	top: 0;
	left: 0;
	filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="4" /></filter></svg>#filter');
	-webkit-filter: blur(4px);
	        filter: blur(4px);
}
._btn.-glass > .inner,
._btn.-glass.-expandable > .inner {
	position: relative;
}
._btn.-glass.-expandable.-swap:hover > *:first-child,
._expand-active:hover ._btn.-glass.-expandable.-swap > *:first-child {
	display: inline;
	display: initial;
}
._btn.-glass.-expandable.-swap:hover > .inner > *:first-child,
._expand-active:hover ._btn.-glass.-expandable.-swap > .inner > *:first-child {
	display: none;
}
._btn.-glass.-expandable > *:last-child {
	opacity: 1;
	position: relative;
}
._btn.-glass.-expandable:hover > *:last-child,
._expand-active:hover ._btn.-glass.-expandable > *:last-child {
	position: relative;
}
._btn.-glass.-expandable > .blur {
	-webkit-transition: margin-left 260ms ease;
	transition: margin-left 260ms ease;
	margin-left: 0;
}
._btn.-glass.-expandable:hover > .blur,
._expand-active:hover ._btn.-glass.-expandable > .blur {
	margin-left: 132px;
}
._btn:hover {
	background-color: #F3F3F3;
}
._btn.-main:hover {
	background-color: hsl(214, 67%, 62%);
	border-color: hsl(214, 67%, 62%);
}
._btn:focus {
	outline: none;
	/*transform: translate(0, -1px);*/
	/*box-shadow: 0px 1px 4px -1px hsla(0, 0%, 0%, 0.4), 0px 0px 1px 2px hsla(29, 99%, 58%, 0.35);*/
}
._btn:active {
	box-shadow: none;
	-webkit-transform: translate(0px, 1px) scale(0.99);
	        transform: translate(0px, 1px) scale(0.99);
}
._btn.-active, ._btn:hover.-active {
    color: #FFF !important;
	background-color: #296dde;
}
._btn.-error {
	color: #FF0000 !important;
}
._btn > .icon.-active {
    color: #296dde !important;
}
._btn-group.-wide > ._btn {
	margin-right: 20px;
}
._btn-group > ._btn {
    margin-right: 8px;
}
._btn-group > ._btn:last-child {
    margin-right: 0;
}
._btn-group.-vertical > ._btn {
    margin-right: 0;
    margin-bottom: 8px;
}
._btn-group.-vertical > ._btn:last-child {
    margin-bottom: 0;
}
._btn-group.-filled {
	height: 100%;
	width: 100%;
}
._btn-group.-filled > ._btn {
	height: 100%;
}
.btn-save {
   background-color: #1E73BF;	
   color: #FFF;
}