/**
 * Tenbit Addon - Info Callout Box Widget Styles
 * Author: Team Tenbit Solutions
 */

.tenbit-info-box-wrap {
	position: relative;
	display: flex;
	align-items: flex-start;
	width: 100%;
	background-color: #FFF7F2;
	border: 1px solid #FFE4D6;
	border-radius: 14px;
	padding: 18px 24px;
	box-sizing: border-box;
	text-decoration: none;
	transition: all 0.25s ease;
}

/* Link reset */
a.tenbit-info-box-wrap {
	color: inherit;
	cursor: pointer;
}

a.tenbit-info-box-wrap:hover,
a.tenbit-info-box-wrap:focus {
	text-decoration: none;
	color: inherit;
	border-color: #FFCDB2;
	box-shadow: 0 4px 18px rgba(255, 90, 0, 0.08);
}

/* Icon */
.tenbit-info-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #FF5A00;
	font-size: 18px;
	line-height: 1;
	margin-right: 12px;
	margin-top: 2px;
	flex-shrink: 0;
}

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

/* Content Container */
.tenbit-info-content {
	flex-grow: 1;
	font-family: inherit;
	line-height: 1.55;
	box-sizing: border-box;
}

/* Highlight Prefix / Title */
.tenbit-info-prefix {
	display: inline;
	color: #FF5A00;
	font-size: 14.5px;
	font-weight: 700;
	margin-right: 6px;
	letter-spacing: -0.01em;
}

/* Description Text */
.tenbit-info-text {
	display: inline;
	color: #3C5A80;
	font-size: 14.5px;
	font-weight: 400;
	letter-spacing: -0.01em;
}

/* Responsive */
@media (max-width: 767px) {
	.tenbit-info-box-wrap {
		padding: 14px 18px;
	}

	.tenbit-info-prefix,
	.tenbit-info-text {
		font-size: 13.5px;
	}

	.tenbit-info-icon {
		font-size: 16px;
		margin-right: 10px;
	}
}
