.dp-select {
	width: 100%;
	border: 1px solid #ccc;
}
.dp-select-element {
	border: 0 !important;
	clip: rect(0 0 0 0) !important;
	clip-path: inset(50%) !important;
	height: 1px !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: absolute !important;
	white-space: nowrap !important;
	width: 1px !important;
}
.dp-select-container {
	width: 100%;
	position: relative;
}
.dp-select-container__options {
	background: #fff;
	border-radius: 4px;
	box-shadow: 3px 3px 3px 3px rgba(0, 0, 0, 0.16);
	max-height: 300px;
	opacity: 0;
	overflow: hidden scroll;
	padding: 0;
	pointer-events: none;
	transition: 300ms ease-in-out;
	width: 100%;
	z-index: 10001;
}
.dp-select-container__options.open {
	opacity: 1;
	pointer-events: all;
}
.dp-select-container__options-selected {
	display: inline-flex;
	flex-wrap: wrap;
	row-gap: 0.5rem;
}
.dp-select-container__handler {
	width: 100%;
}
.dp-select-container_unstyled, .dp-select-container__input_unstyled {
	display: block;
	width: 100%;
	cursor: pointer;
	border: 1px solid #ced4da;
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
	padding: 0.2rem;
	border-radius: 0.25rem;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	appearance: none;
	box-sizing: border-box;
}
.dp-select-input {
	display: inline-block !important;
	width: 1ch;
	box-sizing: content-box !important;
	margin: 0 !important;
	padding: 0 !important;
	outline: none !important;
	border: 0 !important;
	box-shadow: none !important;
}
.dp-select-input:disabled {
	cursor: not-allowed;
}
.dp-select-input:focus-visible {
	color: inherit;
	box-shadow: none;
}
.dp-select-option {
	position: relative;
	padding: 0.2rem 1rem;
	cursor: pointer;
}
.dp-select-option-group__label {
	display: block;
	font-weight: bold;
	margin: 0.2rem 0;
	padding: 0.2rem 0.5rem;
	border-bottom: 1px solid #cecece;
}
.dp-select-option[data-selected=true], .dp-select-option:hover {
	background: #ddd;
}
.dp-select-option[data-disabled=true] {
	background: #fff;
	color: #999;
	cursor: not-allowed;
}
.dp-select-option-input {
	cursor: pointer;
}
.dp-select-option[data-selected=true] {
	display: inline-flex;
	align-items: center;
	margin-right: 0.5rem;
}
.dp-select-option__icon {
	display: flex;
	margin-left: 0.5rem;
}
.dp-select-option__icon svg {
	width: 1rem;
	height: 1rem;
}
.dp-select-option_selected {
	background-color: rgba(0, 0, 0, 0.1);
}
.dp-select_error {
	border: 3px solid #f5515c;
}

/*# sourceMappingURL=dpcalendar.css.map */