/* Bragspark – clean Social Warfare style */

.br-share-panel {
	display: flex;
	width: 100%;
	gap: 10px;
    margin: 20px 0 10px 0;
}

.br-swp-btn {
	flex: 0 0 calc((100% - 30px) / 5);
	display: flex;
	align-items: center;
	justify-content: center;
	background: #2a2e3a;
	color: #ffffff;
	padding: 10px 18px;
	border-radius: 2px;
	cursor: pointer;
	text-decoration: none;
	overflow: hidden;
	white-space: nowrap;
	transition: flex-basis 0.20s ease;
	font-size: 15px;
}

/* Prevent icons from collapsing when buttons shrink */
.br-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
}

.br-svg-icon,
.br-icon img {
    opacity: 1 !important;
    visibility: visible !important;
    width: 20px !important;
    height: 20px !important;
    display: block !important;
}

.br-text {
	display: none;
	margin-left: 8px;
	color: #ffffff;
}

.br-share-panel:hover .br-swp-btn {
	flex-basis: calc((70% - 30px) / 4);
}

.br-share-panel:hover .br-swp-btn:hover {
	flex-basis: 30%;
}

.br-swp-btn:hover .br-text {
	display: inline-block;
}

.fb { background: #1877f2; }
.x { background: #000000; }
.linkedin { background: #0a66c2; }
.pinterest { background: #e60023; }
.email { background: #6c6f7a; }

.br-swp-btn{box-sizing:border-box;}
