/**
 * Base styles for BE Social Icons List Elementor widget.
 * Class prefix: BE_
 * Enqueue this file as the 'be-social-icons-list' style handle
 * (already declared via get_style_depends() in the widget class).
 */

.BE_social-icons-list-widget {
	display: block;
}

.BE_social-icons-list-wrap {
	display: inline-flex;
}

.BE_social-icons-list {
	display: flex;
	flex-direction: column;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 10px;
}

.BE_social-icons-list__list-item {
	list-style: none;
	margin: 0;
	padding: 0;
	line-height: 0;
}

.BE_social-icons-list__item {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	color: #ffffff;
	background-color: #3b5998;
	text-decoration: none;
	transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.BE_social-icons-list__item:hover,
.BE_social-icons-list__item:focus {
	text-decoration: none;
}

.BE_social-icons-list__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	font-size: 18px;
}

.BE_social-icons-list__icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

/* -----------------------------------------------------------
 * Fixed / floating position on screen
 * ---------------------------------------------------------*/
.BE_fixed-widget {
	position: fixed;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 9999;
}

.BE_fixed-widget[data-be-side="right"] {
	left: auto;
	right: 0;
}

.BE_fixed-widget[data-be-vpos="top"] {
	top: 0;
	transform: translateY(0);
}

.BE_fixed-widget[data-be-vpos="bottom"] {
	top: auto;
	bottom: 0;
	transform: translateY(0);
}

.BE_fixed-widget[data-be-vpos="middle"] {
	top: 50%;
	bottom: auto;
	transform: translateY(-50%);
}

@media ( max-width: 767px ) {
	.BE_fixed-widget.BE_hide-on-mobile {
		display: none;
	}
}
