/**
 * Tenbit Addon - Badge Divider Widget Styles
 * Author: Team Tenbit Solutions
 */

.tenbit-badge-divider-wrap {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	box-sizing: border-box;
	margin: 0 auto;
}

/* Alignments */
.tenbit-badge-divider-wrap.align-center {
	justify-content: center;
}

.tenbit-badge-divider-wrap.align-left {
	justify-content: flex-start;
}

.tenbit-badge-divider-wrap.align-right {
	justify-content: flex-end;
}

/* Divider Lines */
.tenbit-divider-line {
	flex-grow: 1;
	border-top: 1.5px solid #E2EDF8;
	height: 0;
	box-sizing: border-box;
	transition: border-color 0.3s ease;
}

.tenbit-divider-line.line-left {
	margin-right: 16px;
}

.tenbit-divider-line.line-right {
	margin-left: 16px;
}

/* Badge Container */
.tenbit-badge-pill {
	display: inline-flex;
	align-items: center;
	background-color: #F0F6FC;
	border: 1px solid #D8E6F5;
	border-radius: 30px;
	padding: 8px 22px;
	box-sizing: border-box;
	text-decoration: none;
	flex-shrink: 0;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

/* Link reset */
a.tenbit-badge-pill {
	color: inherit;
	cursor: pointer;
}

a.tenbit-badge-pill:hover,
a.tenbit-badge-pill:focus {
	text-decoration: none;
	color: inherit;
	transform: translateY(-2px);
	box-shadow: 0 4px 14px rgba(11, 43, 92, 0.08);
	border-color: #FFD3B8;
}

/* Bullet Dot Indicator */
.tenbit-badge-dot {
	display: inline-block;
	width: 7px;
	height: 7px;
	min-width: 7px;
	border-radius: 50%;
	background-color: #FF5A00;
	margin-right: 10px;
	flex-shrink: 0;
}

/* Custom Icon */
.tenbit-badge-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #FF5A00;
	margin-right: 10px;
	font-size: 13px;
	line-height: 1;
	flex-shrink: 0;
}

.tenbit-badge-icon svg {
	width: 14px;
	height: 14px;
	fill: #FF5A00;
	stroke: #FF5A00;
}

/* Badge Text */
.tenbit-badge-text {
	color: #0B2B5C;
	font-family: inherit;
	font-size: 13.5px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.01em;
	transition: color 0.25s ease;
	white-space: normal;
}

a.tenbit-badge-pill:hover .tenbit-badge-text {
	color: #FF5A00;
}

/* Responsive */
@media (max-width: 767px) {
	.tenbit-badge-pill {
		padding: 7px 16px;
	}

	.tenbit-badge-text {
		font-size: 12.5px;
	}

	.tenbit-divider-line.line-left {
		margin-right: 10px;
	}

	.tenbit-divider-line.line-right {
		margin-left: 10px;
	}
}
