.avatar {
	position: relative;
	width: 38px;
	height: 38px;
}

.avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.avatar-initial {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #8392a5;
	color: #fff;
	font-weight: 700;
	font-size: 15px;
	font-family: -apple-system, BlinkMacSystemFont, "Inter UI", Roboto,
		sans-serif;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	justify-content: center;
}

.avatar-offline::after, .avatar-online::after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 2px;
	width: 8px;
	height: 8px;
	border-radius: 100%;
	box-shadow: 0 0 0 2px #fff;
}

.avatar-offline::after {
	background-color: #c0ccda;
}

.avatar-online::after {
	background-color: #10b759;
}

.avatar-xs {
	width: 26px;
	height: 26px;
}

.avatar-xs .avatar-initial {
	font-size: 10px;
}

.avatar-xs.avatar-offline::after, .avatar-xs.avatar-online::after {
	width: 5px;
	height: 5px;
}

.avatar-sm {
	width: 32px;
	height: 32px;
}

.avatar-sm .avatar-initial {
	font-size: 13px;
}

.avatar-sm.avatar-offline::after, .avatar-sm.avatar-online::after {
	width: 7px;
	height: 7px;
}

.avatar-md {
	width: 48px;
	height: 48px;
}

.avatar-md .avatar-initial {
	font-size: 18px;
}

.avatar-md.avatar-offline::after, .avatar-md.avatar-online::after {
	width: 9px;
	height: 9px;
	right: 2px;
	bottom: 2px;
}

.avatar-lg {
	width: 64px;
	height: 64px;
}

.avatar-lg .avatar-initial {
	font-size: 24px;
}

.avatar-lg.avatar-offline::after, .avatar-lg.avatar-online::after {
	width: 10px;
	height: 10px;
	bottom: 3px;
	right: 4px;
}

.avatar-xl {
	width: 72px;
	height: 72px;
}

.avatar-xl .avatar-initial {
	font-size: 30px;
}

.avatar-xl.avatar-offline::after, .avatar-xl.avatar-online::after {
	width: 11px;
	height: 11px;
	bottom: 4px;
	right: 5px;
	box-shadow: 0 0 0 2.5px #fff;
}

.avatar-xxl {
	width: 100px;
	height: 100px;
}

.avatar-xxl .avatar-initial {
	font-size: 45px;
}

.avatar-xxl.avatar-offline::after, .avatar-xxl.avatar-online::after {
	width: 13px;
	height: 13px;
	bottom: 6px;
	right: 7px;
	box-shadow: 0 0 0 3px #fff;
}

.avatar-group {
	display: flex;
}

.avatar-group .list-item {
	margin: 0px -8px 0px 0px;
	margin-right: -8px;
	margin-left: 0px;
	display: flex;
	flex-wrap: wrap;
	margin-right: -10px;
	margin-left: -10px;
}

.avatar-group .avatar {
	position: relative;
	line-height: 0;
}

.avatar-group .avatar img {
	border: 1.5px solid #fff;
}

.avatar-group .avatar+.avatar {
	margin-left: -5px;
}

.avatar-group .avatar-add {
	margin-left: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	border: 1.5px solid #b4bdce;
	border-radius: 100%;
	color: #97a3b9;
}

.avatar-group .avatar-add svg, .avatar-group .avatar-add .svg {
	width: 12px;
	height: 12px;
	stroke-width: 3px;
}