/* ================= SIDEBAR ================= */
.agent-sidebar {
	background: transparent;
	border-radius: 25px;
	color: #fff;
}

/* ================= PROFILE ================= */
.sidebar-profile {
	padding: 50px 0px 10px 0px;
}

/* EDIT ICON */
.edit-badge {
	position: absolute;
	top: 15px;
	right: 5px;
	background: red;
	color: #fff;
	padding: 6px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.edit-btn {
	border: 1px solid #ca9043;
	border-radius: 10px;
	padding: 7px 15px;
	display: flex;
	align-items: center;
	gap: 10px;
	color: #ca9043;
	text-decoration: none;
	font-family: var(--font-inter);
	font-weight: 500;
	font-size: 14px;
}
.edit-btn:hover {
	background: var(--secondary-color);
	color: var(--dark-color);
}
/* TEXT */
.sidebar-profile h5 {
	margin: 10px 0 5px;
	font-size: 23px;
	font-weight: 800;
}

.sidebar-profile p {
	font-size: 14px;
	opacity: 0.7;
}

/* ================= MENU ================= */
.sidebar-menu {
	list-style: none;
	padding: 0;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 19px;
    color: var(--extra-color-8);
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
    font-family: var(--font-inter);
    font-weight: 400;
    border-radius: 12px;
}

.border-none-last {
	border-bottom: none !important;
}
/* ICON */
.sidebar-menu i {
	width: 20px;
}

li.logout {
	padding: 9px 0;
}

/* HOVER */
.sidebar-menu a:hover {
	background: rgba(255, 255, 255, 0.1);
}

/* ACTIVE (RED) */
.sidebar-menu a.active {
	background: #251D13;
	color: #ca9043;
}

/* LOGOUT */
.sidebar-menu .logout a {
	color: #DC2828;
}

.my-profile-wrapper {
	padding: 30px;
	background: #17171c;
	border-radius: 20px;
	border: 1px solid #202026;
}
.profile-banner {
	position: relative;
	height: 260px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: #000;
}

/* RIGHT SIDE IMAGE */
.banner-img {
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.banner-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.6);
}

/* OVERLAY */
.overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, #000 20%, transparent 100%);
}

/* CONTENT LEFT */
.profile-content {
	position: relative;
	z-index: 2;
}

/* AVATAR */
.avatar-wrap {
	position: relative;
	display: inline-block;
}

.avatar1 {
	width: 95px;
	height: 95px;
	border-radius: 50%;
	border: 4px solid rgba(255, 255, 255, 0.2);
	object-fit: cover;
}

/* CAMERA BUTTON */
.cam-btn {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 32px;
	height: 32px;
	border: none;
	border-radius: 50%;
	background: #d79a38;
	color: #111;
}

/* TEXT */
.profile-content h1 {
	font-size: 38px;
	font-family: "Playfair Display", serif;
	font-weight: 700;
	color: #fff;
}

.profile-content p {
	margin: 5px 0;
}

/* STATS */
.stats {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	color: #fff;
	font-family: var(--font-inter);
}

.stats span strong {
	margin-right: 5px;
	color: #fff;
	font-family: var(--font-inter);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
	.banner-img {
		width: 100%;
		opacity: 0.3;
	}

	.overlay {
		background: rgba(0, 0, 0, 0.6);
	}

	.profile-banner {
		height: auto;
		padding: 30px 0;
	}
}

/* post */
.my-profile-wrapper1 {
	padding: 21px 30px;
	background: #17171c;
	border-radius: 20px;
	border: 1px solid #202026;
}
.plan-btn-wra {
	width: fit-content;
	border-radius: 50px !important;
}
.subscription-benefits-list {
	padding-left: 0px;
	list-style: none;
}
/* chat */
.chat-wrapper {
	display: flex;
	background: #15161a;
	border-radius: 12px;
}

/* ================= LEFT ================= */
.chat-sidebar {
	width: 300px;
	background: #1b1c21;
	border-right: 1px solid #2a2b30;
	display: flex;
	flex-direction: column;
}

.chat-search {
	padding: 15px;
	position: relative;
}

.chat-search input {
	width: 100%;
	padding: 12px 40px 12px 15px;
	border-radius: 10px;
	border: none;
	background: #2a2b31;
	color: #fff;
	font-family: var(--font-inter);
	font-weight: 500;
}

.chat-search i {
	position: absolute;
	right: 25px;
	top: 50%;
	transform: translateY(-50%);
	color: #aaa;
}

.chat-list {
	overflow: auto;
	padding: 10px;
}

.chat-item {
	display: flex;
	align-items: center;
	padding: 10px;
	border-radius: 10px;
	cursor: pointer;
	transition: 0.2s;
}

.chat-item .avatar {
	position: relative;
}

.chat-item img {
	width: 55px;
	height: 55px;
	border-radius: 50%;
	object-fit: scale-down;
}

/* status dot */
.online-dot {
	width: 10px;
	height: 10px;
	bottom: 3px;
	right: 3px;
	border-radius: 50%;
	border: 2px solid #1b1c21;
}

.online-dot.online {
	background: #00c853;
}

.online-dot.offline {
	background: #ff3b30;
}

.online-dot.away {
	background: #ffc107;
}

.chat-info {
	margin-left: 10px;
	flex: 1;
}

.chat-info h5 {
	font-size: 14px;
	color: #fff;
	margin: 0;
	font-family: var(--font-inter);
	font-weight: 500;
}

.chat-info p {
	font-size: 12px;
	color: #aaa;
	margin: 0;
}

.chat-time {
	font-size: 12px;
	color: #888;
	font-family: var(--font-inter);
	font-weight: 500;
}

/* ================= RIGHT ================= */
.chat-main {
	flex: 1;
	display: flex;
	flex-direction: column;
	background: #141518;
}

/* header */
.chat-header {
	padding: 15px;
	border-bottom: 1px solid #2a2b30;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.chat-user {
	display: flex;
	align-items: center;
	gap: 10px;
}

.chat-user img {
	width: 45px;
	height: 45px;
	border-radius: 50%;
}

.chat-user h5 {
	color: #fff;
	margin: 0;
	font-family: var(--font-inter);
	font-weight: 500;
}

.chat-user span {
	font-size: 12px;
	color: #00c853;
	font-family: var(--font-inter);
	font-weight: 500;
}

/* actions */
.chat-actions {
	position: relative;
	color: #fff;
}

.chat-actions i {
	cursor: pointer;
	padding: 8px;
}

/* dropdown */
.dropdown-menu-custom {
	position: absolute;
	right: 0;
	top: 40px;
	background: #fff;
	border-radius: 8px;
	display: none;
	min-width: 160px;
	z-index: 99;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.dropdown-menu-custom.show {
	display: block;
}

.dropdown-menu-custom button {
	border: none;
	padding: 10px 13px;
	background: #fff;
	cursor: pointer;
	width: 100%;
	text-align: left;
	color: red;
	font-family: var(--font-inter);
	font-weight: 500;
	border-radius: 8px;
}

.dropdown-menu-custom button:hover {
	background: #f5f5f5;
}

/* messages */
.chat-body {
	flex: 1;
	overflow: auto;
	padding: 20px;
	font-family: var(--font-inter);
	font-weight: 500;
	font-size: 14px;
}

.date-divider {
	text-align: center;
	color: #aaa;
	margin: 15px 0;
	font-size: 12px;
	position: relative;
}

.date-divider:before {
	content: "";
	height: 1px;
	background: #2a2b30;
	display: block;
	margin: 10px 0;
	width: 64px;
	position: absolute;
	left: 28%;
}

.date-divider:after {
	content: "";
	height: 1px;
	background: #2a2b30;
	display: block;
	margin: 10px 0;
	width: 62px;
	position: absolute;
	right: 27%;
	top: 0;
}

.message {
	display: flex;
	align-items: flex-end;
	margin-bottom: 15px;
}

.message.left {
	justify-content: flex-start;
}

.message.right {
	justify-content: flex-end;
}

.message img {
	width: 35px;
	height: 35px;
	border-radius: 50%;
}

.bubble {
	max-width: 70%;
	padding: 12px;
	border-radius: 16px 16px 0px 10px;
	background: #2a2b31;
	margin: 0 10px;
	color: #fff;
	position: relative;
}

.message.right .bubble {
	background: #d79a3f;
	border-radius: 16px 16px 10px 0px !important;
}

.message.right .bubble h6 {
	color: #000;
}

.message.right .bubble p {
	color: #000;
}

.message.right .bubble span {
	color: #000;
}

.bubble h6 {
	font-size: 12px;
	margin: 0 0 5px;
	color: #fff;
}

.bubble p {
	font-size: 13px;
	margin: 0;
	color: #fff;
}

.bubble span {
	font-size: 10px;
	color: #ddd;
	position: absolute;
	right: 10px;
	bottom: 5px;
}

/* input */
.chat-input {
	display: flex;
	align-items: center;
	padding: 10px;
	border-top: 1px solid #2a2b30;
	gap: 10px;
}

.chat-input .tools i {
	color: #aaa;
	margin-right: 8px;
	cursor: pointer;
}

.chat-input input {
	flex: 1;
	padding: 10px;
	border-radius: 8px;
	border: none;
	background: #2a2b31;
	color: #fff;
	font-family: var(--font-inter);
	font-weight: 500;
}

.chat-input button {
	background: #d79a3f;
	border: none;
	padding: 10px 20px;
	border-radius: 8px;
	color: #fff;
	font-family: var(--font-inter);
	font-weight: 500;
}
/* setting */
/*================ SETTINGS PAGE ================*/

.setting_subtitle_unique {
	font-size: 26px;
	font-weight: 500;
	color: #ffffff;
	margin-bottom: 24px;
	font-family: var(--font-inter);
	font-weight: 500;
}

/* rows */
.setting_row_unique {
	background: #23242d;
	border-radius: 14px;
	min-height: 62px;
	padding: 0 18px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
}

.setting_label_unique {
	color: #ffffff;
	font-size: 19px;
	font-weight: 400;
	margin: 0;
	font-family: var(--font-inter);
	font-weight: 500;
}

/* custom toggle */
.switch_unique {
	position: relative;
	width: 56px;
	height: 30px;
	display: inline-block;
}

.switch_unique input {
	display: none;
}

.slider_unique {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #3a3428;
	border-radius: 50px;
	cursor: pointer;
	transition: 0.3s;
}

.slider_unique:before {
	content: "";
	position: absolute;
	width: 18px;
	height: 18px;
	left: 7px;
	top: 6px;
	background: #d79a3f;
	border-radius: 50%;
	transition: 0.3s;
}

/* active */
.switch_unique input:checked + .slider_unique {
	background: #4b4028;
}

.switch_unique input:checked + .slider_unique:before {
	transform: translateX(24px);
}

/* bottom links */
.setting_link_pass_unique {
	display: block;
	margin-top: 8px;
	color: #d79a3f;
	font-size: 22px;
	text-decoration: none;
	transition: 0.3s;
	font-family: var(--font-inter);
	font-weight: 500;
}

.setting_link_pass_unique:hover {
	color: #efb04c;
}

.setting_link_delete_unique {
	display: block;
	margin-top: 8px;
	color: #ff2222;
	font-size: 22px;
	text-decoration: none;
	transition: 0.3s;
	font-family: var(--font-inter);
	font-weight: 500;
}

.setting_link_delete_unique:hover {
	color: #ff4a4a;
}
/* upload */
.wrapper-music-content {
	width: 60px;
	height: 60px;
	border-radius: 15px;
	background: #3a2f23;
	display: flex;
	align-items: center;
	justify-content: center;
}
/* logout model */
/*=========================================
LOGOUT MODAL
=========================================*/
.logout_modal_unique {
	background: #ffffff;
	border: none;
	border-radius: 18px;
	position: relative;
	margin-top: 40px;
	display: block;
}

/* top image half outside */
.logout_top_icon_unique {
	width: 82px;
	height: 82px;
	border-radius: 50%;
	background: #f01313;
	position: absolute;
	top: -40px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.logout_top_icon_unique img {
	width: 36px;
	height: 36px;
	object-fit: contain;
}

/* body */
.logout_body_unique {
	padding: 60px 20px 24px;
	text-align: center;
}

.logout_body_unique h4 {
	color: var(--dark-color);
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 10px;
}

.logout_body_unique p {
	color: var(--dark-color);
	font-size: 20px;
	margin: 0;
	line-height: 1.6;
	font-weight: 300;
}

/* footer */
.logout_footer_unique {
	display: flex;
	width: 100%;
}

/* buttons */
.logout_yes_btn_unique,
.logout_no_btn_unique {
	width: 50%;
	height: 56px;
	border: none;
	outline: none;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-size: 18px;
	font-weight: 600;
	margin: 0;
	border-radius: 0;
}

/* yes */
.logout_yes_btn_unique {
	background: #f01313;
	color: #fff;
	border-radius: 0px 0px 0px 15px;
}

.logout_yes_btn_unique:hover {
	background: #e2281e;
	color: #fff;
}

/* no */
.logout_no_btn_unique {
	background: #e5e5e5;
	color: var(--dark-color);
	border-radius: 0px 0px 10px 0px;
}

.logout_no_btn_unique:hover {
	background: #ececec;
}

/* responsive */
@media (max-width: 991px) {
	.setting_box_unique {
		padding: 20px;
	}

	.setting_title_unique {
		font-size: 24px;
	}

	.setting_subtitle_unique {
		font-size: 22px;
	}

	.setting_label_unique {
		font-size: 18px;
	}

	.setting_link_pass_unique,
	.setting_link_delete_unique {
		font-size: 22px;
	}
}

@media (max-width: 768px) {
	.profile-banner {
		height: 320px;
	}

	.profile-content {
		left: 20px;
		bottom: 20px;
		flex-direction: column;
		align-items: flex-start;
	}

	.info h1 {
		font-size: 30px;
	}
}

/* mobile */
@media (max-width: 575px) {
	.logout_body_unique h4 {
		font-size: 24px;
	}

	.logout_body_unique p {
		font-size: 15px;
	}

	.logout_yes_btn_unique,
	.logout_no_btn_unique {
		height: 52px;
		font-size: 16px;
	}
}
