.multiselect {
	width: 100%;
}

.multiselect #checkboxes .sourceItem {
	flex-basis: 25%;
	padding: 0.5rem 0.5rem 0rem;
}

/* custom checkbox */
#checkboxes {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 10px;
	justify-content: flex-start;
}
#checkboxes label {
	display: flex;
	max-width: 23ch;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	cursor: pointer;
}

#checkboxes label input {
	display: none;
}
.customCheckbox {
	width: 20px;
	height: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	border-radius: 3px;
	border: 2px solid #cccccc;
	margin-right: 10px;
	flex-shrink: 0;
}
.customCheckbox::after {
	content: '\2714';
	color: white;
}

/* Tooltip */
.toolTipTitle {
	font-size: 18px;
}
.toolTipDates {
	color: rgb(177, 177, 177);
	font-size: 11px;
}
.toolTipContainer,
.toolTipDescription,
.toolTipContainer ol li,
.toolTipMore {
	font-size: 13px;
}

/* media queries */
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.multiselect #checkboxes .sourceItem {
		flex-basis: 33.33%;
	}
}
@media only screen and (min-width: 520px) and (max-width: 767px) {
	.multiselect #checkboxes .sourceItem {
		flex-basis: 50%;
	}
}
@media only screen and (max-width: 519px) {
	.multiselect #checkboxes .sourceItem {
		flex-basis: 100%;
	}
}
