.bk-range-row,
.bk-select-row,
.bk-pickr-row {
	display: flex;
	align-items: stretch;
	width: 100%;
	border: 1px solid #ccc;
	border-radius: 4px;
	background: #fff;
	overflow: hidden;
}

.bk-range-label,
.bk-range-value,
.bk-select-label,
.bk-pickr-label {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0 14px;
	background: #eee;
	color: #333;
	font-size: 16px;
	font-weight: 400;
	white-space: nowrap;
}

.bk-range-label,
.bk-range-value {
	min-height: 58px;
}

.bk-select-label,
.bk-pickr-label {
	min-height: 46px;
}

.bk-range-label,
.bk-select-label,
.bk-pickr-label {
	border-right: 1px solid #ccc;
}

.bk-range-value {
	min-width: 64px;
	border-left: 1px solid #ccc;
	font-weight: 400;
}

.bk-range-input {
	flex: 1 1 auto;
	min-width: 0;
	height: 58px;
	margin: 0;
	padding: 0;
	border: 0;
	background: #fff;
	box-shadow: none;
}

.bk-range-input::-webkit-slider-thumb {
	width: 30px;
	height: 30px;
}

.bk-range-input::-moz-range-thumb {
	width: 30px;
	height: 30px;
}

.bk-select-input {
	flex: 1 1 auto;
	min-width: 0;
	height: 46px;
	padding: 0 12px;
	border: 0;
	background: #fff;
	color: #333;
	font-size: 16px;
	box-shadow: none;
}

.bk-pickr-trigger,
.bk-pickr-trigger .pickr,
.bk-pickr-trigger .pcr-button {
	display: block;
	width: 86px;
	height: 46px;
	border: 0;
	border-radius: 0;
	margin: 0;
	font-size: 16px;
}

.bk-pickr-button {
	display: block;
	box-sizing: border-box;
	width: 86px;
	height: 46px;
	margin: 0;
	border: 0;
	border-radius: 0;
	background: #3fb1e4 !important;
	background-image: linear-gradient(to bottom, #3fb1e4 0%, #3fb1e4 50%, #2daae1 51%, #2daae1 100%) !important;
	background-repeat: repeat-x;
	color: #fff !important;
	font-size: 16px;
	text-shadow: none;
	box-shadow: inset 0 0 0 1px #1a84b3;
	text-align: center;
	white-space: nowrap;
}

.bk-pickr-button:hover,
.bk-pickr-button:focus {
	background: #2daae1 !important;
	background-image: linear-gradient(to bottom, #2daae1 0%, #2daae1 100%) !important;
	background-position: 0 -15px;
	color: #fff !important;
	outline: 0;
	text-decoration: none;
}

.bk-pickr-button:active {
	background: #2daae1 !important;
	background-image: none !important;
	box-shadow: inset 0 0 0 1px #1a84b3, inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.bk-pickr-swatch {
	position: relative;
	display: block;
	flex: 0 0 44px;
	width: 44px;
	height: 46px;
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
	background: #fff;
}

.bk-pickr-swatch::before {
	position: absolute;
	top: 5px;
	left: 5px;
	right: 5px;
	bottom: 5px;
	border: 1px solid #888;
	border-radius: 4px;
	background: var(--bk-pickr-swatch-color, #ffffff);
	content: "";
}

.bk-pickr-input {
	flex: 1 1 auto;
	min-width: 0;
	height: 46px;
	padding: 0 12px;
	border: 0;
	background: #fff;
	color: #333;
	font-size: 16px;
	box-shadow: none;
}

@media (max-width: 480px) {
	.bk-range-row {
		display: grid;
		grid-template-columns: auto 1fr auto;
	}

	.bk-range-label {
		padding: 0 10px;
	}

	.bk-range-input {
		min-width: 100px;
	}

}

@media (max-width: 360px) {
	.bk-pickr-row {
		flex-wrap: wrap;
	}

	.bk-pickr-label,
	.bk-pickr-input {
		flex: 1 0 100%;
	}

	.bk-pickr-label {
		justify-content: flex-start;
		border-right: 0;
		border-bottom: 1px solid #ccc;
	}
}
