/* .modal{
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	display: none;
}

.dashicons {
	cursor: pointer;
}

.modal-content {
	background: white;
	padding: 20px;
	border-radius: 5px;
	width: 500px;
	position: relative;
	top: 30%;
	left: 40%;
}

.close {
	position: absolute;
	top: 15px;
	right: 20px;
	cursor: pointer;
	font-size: x-large;
}

.wpt-modal-header {
	margin-bottom: 15px;
	font-weight: 600;
	font-size: large
}

.modal-search-input {
	width: 100%;
}

.wpt-modal-body {
	height: 300px;
	overflow-y: scroll;
	scrollbar-width: none;
}

.wpt-modal-footer {
	display: flex;
	justify-content: space-between;
}

#selectButton {
	border-radius: 3px;
	font-size: .875rem;
	height: 2.75rem;
	line-height: .875rem;
	padding: 0 1.125rem;
	color: rgb(var(--wpt-lms-primary-700));
	transition: all .2s ease-in-out;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: .5rem;
}

.tablinks {
	background-color: white;
	border: none;
	padding: 10px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.tablinks.active {
	background-color: #7b2cbf;
	font-weight: bold;
	color: white;
} */