/* ==========================================================
   Restino
   Restaurant Profile Management
========================================================== */

.chutio-profile-management {
	display: flex;
	align-items: center;
	flex-wrap: wrap;

	gap: 10px 14px;

	margin: 14px 0 0;
}


/* ==========================================================
   Status
========================================================== */

.chutio-profile-management-status {
	display: inline-flex;
	align-items: center;

	gap: 8px;

	padding: 7px 13px;

	border-radius: 999px;

	font-size: 13px;
	font-weight: 700;
	line-height: 1;
}


/* Dot */

.chutio-profile-management-dot {
	display: block;

	width: 8px;
	height: 8px;

	flex: 0 0 8px;

	border-radius: 50%;
}


/* ==========================================================
   Managed by restaurant
========================================================== */

.chutio-profile-management-status.managed {
	background: #EEF4F0;
	color: #5D6F63;
}

.chutio-profile-management-status.managed
.chutio-profile-management-dot {
	background: #5D6F63;
}


/* ==========================================================
   Community profile
========================================================== */

.chutio-profile-management-status.community {
	background: #FBEAE5;
	color: #C96D55;
}

.chutio-profile-management-status.community
.chutio-profile-management-dot {
	background: #E57A5E;
}


/* ==========================================================
   Description
========================================================== */

.chutio-profile-management-description {
	margin: 0;

	color: #080808;

	font-size: 13px;
	line-height: 1.45;
}


/* ==========================================================
   Action
========================================================== */

.chutio-profile-management-action {
	display: inline-flex;
	align-items: center;

	margin-left: 4px;

	color: #E57A5E;

	font-size: 13px;
	font-weight: 600;

	text-decoration: none;

	transition:
		color 0.2s ease,
		transform 0.2s ease;
}

.chutio-profile-management-action:hover {
	color: #D86F54;

	transform: translateX(2px);
}


/* ==========================================================
   Mobile
========================================================== */

@media (max-width: 767px) {

	.chutio-profile-management {
		align-items: flex-start;
		flex-direction: column;

		gap: 8px;

		margin-top: 12px;
	}

	.chutio-profile-management-action {
		margin-left: 0;
	}

}