.sd-wrapper {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.sd-main-trigger {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: #333;
	color: #fff;
	cursor: pointer;
	z-index: 2;
	transition: all 0.3s ease;
}

.sd-main-trigger svg {
	width: 20px;
	height: 20px;
	fill: #fff;
}

.sd-dropdown-list {
	position: absolute;
	display: flex;
	flex-direction: column;
	gap: 10px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 1;
}

.sd-wrapper.is-active .sd-dropdown-list {
	opacity: 1;
	visibility: visible;
}

.sd-dropdown-item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #555;
	color: #fff;
	text-decoration: none;
	transition: transform 0.3s ease, background-color 0.3s ease;
}

.sd-dropdown-item:hover {
	transform: scale(1.1);
}

.sd-dropdown-item svg {
	width: 16px;
	height: 16px;
	fill: #fff;
}

/* Direction: Down */
.sd-wrapper.sd-direction-down .sd-dropdown-list {
	top: 100%;
	padding-top: 15px;
	transform: translateY(-10px);
}
.sd-wrapper.sd-direction-down.is-active .sd-dropdown-list {
	transform: translateY(0);
}

/* Direction: Up */
.sd-wrapper.sd-direction-up .sd-dropdown-list {
	bottom: 100%;
	padding-bottom: 15px;
	transform: translateY(10px);
}
.sd-wrapper.sd-direction-up.is-active .sd-dropdown-list {
	transform: translateY(0);
}