.button {
	display: inline-block;
    height: 32px;
    padding: 3px 12px;
	margin:6px 0;
    background-color: #00b3c0;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    line-height: 0;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.button_active {
    background-color: #0c878e;
    color: #fff;
	outline: 0;
}
.button:hover {
    background-color: #149da5;
    color: #fff;
}

.button-group {
	height: 32px;
}
.button-group>.button {
	border-left: 1px solid #0c878e;
}
.button-group>.button:first-child {
    margin-left: 0;
}
.button-group>.button {
    position: relative;
    float: left;
}
.button-group>.button:first-child:not(:last-child):not(.dropdown-toggle) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.button-group>.button:last-child:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;

}
.button-group>.button:not(:first-child):not(:last-child):not(.dropdown-toggle) {
    border-radius: 0;
}
.button-group>.button:first-child {
	border-left: none;
}
.button-group .button+.button, .button-group .button+.button-group, .button-group .button-group+.button, .button-group .button-group+.button-group {
    margin-left: -1px;
}

.select-block {
	display: block;
    position: relative;
    width: fit-content;
    height: 42px;
    font-size: 15px;
    border: none;
    border-radius: 4px;
	cursor: pointer;
}
/*.select-block:before {
	content: " ";
    position: absolute;
    top: 4px;
    right: 1px;
    width:15px;
    height:36px;
    background:#fff;
}
.select-block:after {
	content: "\e114";
    position: absolute;
    top: 12px;
    right: 10px;
    font-family: 'Glyphicons Halflings';
    color: #888;
	cursor: pointer;
}*/
.select-block__select {
	display: block;
    height: 42px;
    padding: 6px 12px;
    padding-right: 20px;
    color: #555;
    background: #fff;
    border: 1px solid #efefef;
    border-radius: 4px;
    outline: 0;
	cursor: pointer;
}
.select-block__select_focus {
	border-color: #00b3c0;
}

.input-text {
    position: relative;
}
.input-text__input {
	display: block;
	width: 100%;
    border: 1px solid #efefef;
    border-radius: 4px;
	font-size: 15px;
	color: #383838;
	line-height: 16px;
	height: 44px;
	margin: 0;
	background: #fff;
	padding: 10px 14px 0 14px;
	box-sizing: border-box;
	-webkit-transition: .2s;
	transition: .2s;
	box-shadow: none;
    outline: 0;
}
.input-text__label {
	position: absolute;
    top: 14px;
    left: 14px;
    font-size: 15px;
    line-height: 15px;
    color: #888;
    -webkit-transition: .2s;
    transition: .2s;
    cursor: text;
    will-change: top,font-size,line-height;
    font-weight: 400;
}
.input-text__input_focus {
	border-color: #00b3c0;
}
.input-text__label_active {
	top: 4px;
	font-size: 12px;
}

.input-date {
    position: relative;
    width: fit-content;
	-webkit-width: fit-content;
	-moz-width: fit-content;
	-o-width: fit-content;
}
.input-date:after {
	content: "\e109";
    position: absolute;
    top: 12px;
    right: 15px;
    font-family: 'Glyphicons Halflings';
    color: #888;
	cursor: pointer;
}
.input-date__input {
	display: block;
	width: 135px;
	border: 1px solid #efefef;
	border-radius: 4px;
	font-size: 15px;
	color: #383838;
	line-height: 16px;
	height: 44px;
	margin: 0;
	background: #fff;
	padding: 5px 40px 5px 14px;
	box-sizing: border-box;
	-webkit-transition: .2s;
	transition: .2s;
	box-shadow: none;
	outline: 0;
}
.input-date__input_focus {
	border-color: #00b3c0;
}

.input-search .input-text__input {
	padding-right: 40px;
}
.input-search:after {
	content: "\e003";
    position: absolute;
    top: 12px;
    right: 15px;
    font-family: 'Glyphicons Halflings';
    color: #888;
	cursor: pointer;
}


.input-radio__input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}
.input-radio__label {
	display: block;
    position: relative;
    padding: 1px 10px 10px 30px;
	cursor: pointer;
}
.input-radio__label:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
    width: 16px;
    height: 16px;
    line-height: 16px;
    padding: 2px;
	border: 1px solid #c5c5c5;
	border-radius: 50%;
}
.input-radio__label_checked:before {
	content: "\e013";
    font-family: 'Glyphicons Halflings';
    font-size: 14px;
    color: #888;
}

.input-checkbox__input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}
.input-checkbox__label {
	display: block;
    position: relative;
    padding: 1px 10px 10px 30px;
	cursor: pointer;
}
.input-checkbox__label:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 14px;
    height: 14px;
	line-height: 14px;
    padding: 3px;
	border: 1px solid #c5c5c5;
	border-radius: 4px;
    background-color: #fff;
}
.input-checkbox__label_checked:before {
	content: "\e013";
    font-family: 'Glyphicons Halflings';
    font-size: 14px;
    color: #888;
}
