/*  Temporary - Hide Theme switch - New Admin Dashboard  */
/*  ============================================================= */
/*  Cache bust: 2026-03-13  */

.content-wrap.recommendation .theme-color-switch,
.content-wrap.homepage .theme-color-switch {
	display: none;
}

body.body-creator {margin-top: 0;}
#header-creator {position: relative;}

/*  Szukajka */
/*  ============================================================= */

.nav-menu-search-popup-wrap {
	position: fixed;
	inset: 0%;
	overflow: hidden;
	padding: 10px;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	height: 100%;
	z-index: 9999;
	display: none;
	background: var(--wtl-panel-color-bg-overlay);
}

.nav-menu-search-popup-wrap.active {
	display: flex;
}

.nav-menu-search-popup-wrap.search-input > .search-popup {	max-width: 550px;}
.nav-menu-search-popup-wrap.search-result > .search-popup {	max-width: 920px;}

.search-popup {
	position: relative;
	display: flex;
	max-height: 100%;
	max-width: 100%;
	border-radius: 10px;
	overflow: hidden;
	width: 100%;
	height: unset;
	max-height: unset;
	grid-row-gap: unset;
	margin: unset;
	background-color: var(--wtl-panel-color-bg-white);
	flex-direction: column;
	box-shadow: 0 0 10px var(--wtl-panel-color-bg-border);
}

.search-popup .search-bar {
	display: flex;
	flex-direction: row;
	position: relative;
	width: auto;
	padding: 10px;
}

.search-popup .search-bar > i {
	width: 40px;
	min-width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: nowrap;
	white-space: nowrap;
	transition: all .2s ease;
	border-radius: 10px;
}

.search-popup .search-bar > i.fa-xmark {
	background: var(--wtl-panel-color-bg-transparent);
}

.search-popup .search-bar > i.fa-xmark:hover {
	background: var(--wtl-panel-color-dark-light-hover);
	cursor: pointer;
}

.search-popup .search-bar > input {
	padding: 10px 10px 10px 0;
	line-height: 20px;
	border: none;
	width: 100%;
	max-height: 40px;
	background: var(--wtl-panel-color-bg-transparent);
}

.search-popup .search-bar > input:focus-visible {
	outline: none;
}

.search-popup .search-bar > button {
	width: 40px;
	min-width: 40px;
	height: 40px;
	border-radius: 10px;
	justify-content: center;
	align-items: center;
	font-size: 15px;
	line-height: 20px;
	font-weight: 500;
	text-decoration: none;
	transition: all .2s;
	display: flex;
	flex-wrap: nowrap;
	white-space: nowrap;
	cursor: pointer;
	grid-column-gap: 10px;
	flex-direction: row;
	color: var(--wtl-panel-color-font-dark-100);
	background-color: var(--wtl-panel-color-bg-transparent);
	max-height: 40px;
}

.search-popup .search-bar > button:hover {
	background-color: var(--wtl-panel-color-dark-light-hover);
}

.search-popup .search-bar > button:disabled {
	opacity: .55;
	cursor: wait;
	pointer-events: none;
}

.search-popup .search-notification {
	padding-left: 20px;
	color: var(--wtl-color-red);
	font-size: 12px;
	line-height: 10px;
	margin-top: -10px;
	padding-bottom: 15px;
	transition: opacity 0.3s ease-out;
	height: 0;
	opacity: 0;
	overflow: hidden;
}

.search-popup .search-notification.active {
	opacity: 1;
}

.search-popup .search-additional {
	width: 100%;
	padding: 0 10px 10px 10px;
	border-top: 1px solid var(--wtl-panel-color-bg-border);
}

.search-popup .search-additional a {
	color: var(--wtl-panel-color-font-dark-100);
	text-decoration: none;
}

.search-popup .search-additional .search-additional-header {
	height: 30px;
	padding: 10px 10px 0 10px;
	font-size: 12px;
	font-weight: bold;
	line-height: 20px;
	color: var(--wtl-panel-color-font-dark-50);
	text-transform: uppercase;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.search-popup .search-additional .search-additional-item {
	display: flex;
	flex-direction: row;
	align-items: center;
	transition: all .2s ease;
	border-radius: 10px;
	cursor: pointer;
}

.search-popup .search-additional .search-additional-item:hover {
	background: var(--wtl-panel-color-dark-light-hover);
}

.search-popup .search-additional .search-additional-item i {
	width: 40px;
	min-width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: nowrap;
	white-space: nowrap;
	transition: all .2s ease;
	border-radius: 10px;
}

.search-popup .search-additional .search-additional-item i.fa-xmark:hover {
	background: var(--wtl-panel-color-dark-light-hover);
}

.search-popup .search-additional .search-additional-item .search-additional-item-name {
	flex: 1;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.search-popup .search-additional-wrap {
	overflow-y: auto;
}

.search-popup .search-additional.fast-access .search-additional-item {
	padding-left: 10px;
}

.search-popup .search-result {
	display: flex;
	flex-direction: column;
	gap: 0;
	width: 100%;
	padding: 0;
	border-top: 1px solid var(--wtl-panel-color-bg-border);
	overflow: hidden;
}

.search-popup .search-result .search-result-header {
	padding: 20px 20px 10px 20px;
	font-size: 17px;
	font-weight: 600;
	line-height: 20px;
	color: var(--wtl-panel-color-font-dark-100);
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	min-height: 50px;
}

.search-popup .search-result .search-result-tabs-wrap {
	overflow: hidden;
}

.search-popup .search-result .search-result-tabs {
	margin: 0 20px;
	display: flex;
	column-gap: 10px;
	overflow-x: auto;
	min-height: 30px;
	-ms-overflow-style: none;	/* IE and Edge */
	scrollbar-width: none;	/* Firefox */
}
.search-popup .search-result .search-result-tabs::-webkit-scrollbar {
	display: none;				/* Chrome, Safari and Opera */
  }

.search-popup .search-result .search-result-tabs .tab-link {
	display: flex;
	column-gap: 7px;
	font-size: 15px;
	font-weight: 500;
	color: var(--wtl-panel-color-font-dark-50);
	cursor: pointer;
	transition: all .2s ease;
	align-items: center;
	background: var(--wtl-panel-color-dark-light);
	padding: 5px 10px;
	line-height: 20px;
	border-radius: 15px;
	white-space: nowrap;
}

.search-popup .search-result .search-result-tabs .tab-link span {
	font-size: 12px;
	font-weight: 600;
	line-height: 18px;
	padding: 0 4px;
	background: var(--wtl-panel-color-bg-white);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	transition: all .2s ease;
	min-width: 18px;
}

.search-popup .search-result .search-result-tabs .tab-link.active,
.search-popup .search-result .search-result-tabs .tab-link:hover {
	color: var(--wtl-panel-color-font-dark-100);
}

.search-popup .search-result .search-result-tabs .tab-link.active span,
.search-popup .search-result .search-result-tabs .tab-link:hover span {
	background: var(--wtl-panel-color-bg-dark);
	color: var(--wtl-panel-color-font-white);
}

.search-popup .search-result .search-result-content {
	display: flex;
	gap: 0;
	flex-direction: column;
	overflow-y: auto;
	padding: 10px 10px 10px 10px;
}

.search-popup .search-empty-state {
	padding: 28px 10px;
	text-align: center;
	font-size: 14px;
	line-height: 20px;
	color: var(--wtl-panel-color-font-dark-50);
}

.search-popup .result-item {
	padding: 10px;
	display: flex;
	flex-direction: row;
	column-gap: 20px;
	border-radius: 10px;
	transition: all .2s ease;
	position: relative;
}

.search-popup .result-item:after {
	position: absolute;
	top: auto;
	bottom: 0;
	left: 10px;
	width: calc(100% - 20px);
	height: 1px;
	content: '';
	background: var(--wtl-panel-color-bg-border);
}

.search-popup .result-item:last-child:after {
	display: none;
}

.search-popup .result-item:hover {
	background: var(--wtl-panel-color-dark-light-hover);
}

.search-popup .result-item .information-wrap {
	display: flex;
	flex-direction: column;
	row-gap: 5px;
	width: 100%;
}

.search-popup .result-item .information-wrap > h4 {
	font-size: 17px;
	line-height: 20px;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
}

.search-popup .result-item .information-wrap > h4 a {
	text-decoration: none;
	color: var(--wtl-panel-color-font-dark-100);
	transition: all .2s ease;
	width: 100%;
	display: block;
}

.search-popup .result-item .information-wrap > h4 a:hover {
	color: var(--wtl-panel-color-accent);
}

.search-popup .result-item .information-wrap > p {
	font-size: 15px;
	line-height: 20px;
	font-weight: 500;
	color: var(--wtl-panel-color-font-dark-75);
	max-height: 40px;
	display: block;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	white-space: pre-wrap;
	text-overflow: ellipsis;
	margin: 0;
}

.search-popup .result-item .information-wrap .user-info {
	display: flex;
	align-items: center;
	flex-direction: row;
	gap: 10px;
}

.search-popup .result-item .information-wrap .user-info > img {
	width: 20px;
	height: 20px;
	border-radius: 5px;
}

.search-popup .result-item .information-wrap .user-info > p {
	line-height: 20px;
	margin: 0;
}

.search-popup .result-item .information-wrap .user-info > p a {
	text-decoration: none;
	transition: all .2s ease;
}

.search-popup .result-item .information-wrap .user-info > p a:hover {
	text-decoration: underline;
}

.search-popup .result-item .image-wrap.post {
	height: 90px;
	aspect-ratio: 5/2;
}

.search-popup .result-item .image-wrap.training {
	height: 65px;
	aspect-ratio: 4/3;
}

.search-popup .result-item .image-wrap.lesson {
	height: 90px;
	aspect-ratio: 16/9;
}

.search-popup .result-item .image-wrap .image {
	border-radius: 10px;
	background: var(--wtl-panel-color-bg-border);
	background-size: cover;
	background-position: center center;
	background-position-y: center;
	background-repeat: no-repeat;
	width: 100%;
	aspect-ratio: inherit;
}

.search-history {
	display: none;
}

.search-history.active {
	display: block;
}

@media screen and (max-width: 768px) {
	.search-popup .result-item {
		flex-direction: column-reverse;
		row-gap: 10px;
	}
	.search-popup .result-item .image-wrap.lesson,
	.search-popup .result-item .image-wrap.training,
	.search-popup .result-item .image-wrap.post {
		height: unset;
		width: 100%;
	}
}





/*  Header bar */
/*  ============================================================= */

.header {
	width: 100%;
	z-index: 100;
	grid-column-gap: 20px;
	background-color: var(--wtl-panel-color-bg-accent);
	justify-content: space-between;
	align-items: center;
	padding: 10px 30px 10px 10px;
	display: flex;
	position: fixed;
	top: 0;
	max-height: 60px;
}

.header.header-guest {
	background-color: var(--wtl-panel-color-bg-accent);
	padding: 10px 30px 10px 30px;
}

.header > .header-left {
	display: flex;
	justify-content: flex-start;
	gap: 5px;
	align-items: center;
	flex-wrap: nowrap;
	white-space: nowrap;
	flex-shrink: 0;
}

.header > .header-left > .sidebar-trigger {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 40px;
	height: 40px;
	color: var(--wtl-panel-color-font-dark-100);
	background-color: var(--wtl-panel-color-bg-transparent);
	border-radius: 20px;
	font-size: 18px;
	font-weight: 300;
	line-height: 20px;
	text-decoration: none;
	transition: all .2s ease;
	cursor: pointer;
}

.header > .header-left > .sidebar-trigger:hover {
	background-color: var(--wtl-panel-color-accent-light-hover);
}

.header > .header-left > .logo,
.header > .header-left > .logo > img {
	max-height: 40px;
	max-width: 160px;
	color: var(--wtl-panel-color-font-dark-100);
	text-decoration: none;
	overflow: hidden;
}

.header > .header-left > .logo > div {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: pre-wrap;
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
	text-decoration: none;
	max-height: inherit;
	color: var(--wtl-panel-color-font-dark-100);
}

.header.header-user > .header-center {
	display: flex;
	flex: 1;
	justify-content: center;
}

.header.header-guest > .header-center {
	display: flex;
	flex: 1;
	justify-content: flex-end;
}

.header.header-guest > .header-center a {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
	padding: 10px 15px;
	border-radius: 10px;
	background: var(--wtl-panel-color-bg-transparent);
	transition: all .2s ease;
	color: var(--wtl-panel-color-font-dark-100);
	font-size: 15px;
	line-height: 20px;
	font-weight: 500;
	text-decoration: none;
	cursor: pointer;
}

.header.header-guest > .header-center a svg {
	width: 16px;
	height: 18px;
}

.header.header-guest > .header-center a:hover {
	background: var(--wtl-panel-color-dark-light);
}

.header.header-guest > .header-center .menu-dropdown-wrap {
	position: relative;
}

.header.header-guest > .header-center .menu-dropdown-wrap i {
	font-style: normal;
}

.header.header-guest > .header-center .menu-dropdown-wrap .menu-dropdown-list {
	display: none;
	flex-direction: column;
	position: absolute;
	top: 50px;
	right: 0;
	background: var(--wtl-panel-color-bg-white);
	border: 1px solid var(--wtl-panel-color-bg-border);
	border-radius: 20px;
	padding: 10px;
}

.header.header-guest > .header-center .menu-dropdown-wrap .menu-dropdown-list.active {
	display: flex;
}

.header.header-guest > .header-center .menu-dropdown-wrap .menu-dropdown-list a {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	max-width: 300px;
}

.header.header-guest > .header-center .menu-dropdown-wrap .menu-dropdown-list a:hover {
	background: var(--wtl-panel-color-dark-light);
}

.header > .header-right {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	list-style-type: none;
}

.header > .header-right > .header-btn-ico {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 40px;
	height: 40px;
	color: var(--wtl-panel-color-font-dark-100);
	background-color: var(--wtl-panel-color-bg-transparent);
	border-radius: 20px;
	font-size: 18px;
	font-weight: 300;
	line-height: 20px;
	text-decoration: none;
	transition: all .2s ease;
	cursor: pointer;
}

.header > .header-right > .header-btn-ico:hover {
	background-color: var(--wtl-panel-color-accent-light-hover);
}

.header > .header-right > .header-btn-login {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
	padding: 10px 15px;
	border-radius: 10px;
	font-family: var(--wtl-panel-font-family);
	color: var(--wtl-panel-color-font-white);
	background-color: var(--wtl-panel-color-accent);
	font-size: 15px;
	line-height: 20px;
	font-weight: 500;
	text-decoration: none;
	cursor: pointer;
	transition: all .2s ease;
}

.header > .header-right > .header-btn-login:hover {
	background-color: var(--wtl-panel-color-accent-hover);
}

.header > .header-right > .header-btn-login svg {
	width: 20px;
	height: 20px;
	fill: var(--wtl-panel-color-font-white);
}

.header > .header-right > .header-btn-ico.unread:after {
	position: absolute;
	top: 3px;
	right: 3px;
	width: 12px;
	height: 12px;
	content: '';
	border-radius: 50%;
	border: 2px solid var(--wtl-panel-color-bg-white);
	background: var(--wtl-color-red);
	box-sizing: border-box;
}

.header > .header-right > .header-btn-ico.unread .fa-bell {
	animation: jump-shaking 0.83s infinite;
}

@keyframes jump-shaking {
	0% { transform: translateX(0) }
	25% { transform: translateY(0) }
	35% { transform: translateY(0) rotate(17deg) }
	55% { transform: translateY(0) rotate(-17deg) }
	65% { transform: translateY(0) rotate(17deg) }
	75% { transform: translateY(0) rotate(-17deg) }
	100% { transform: translateY(0) rotate(0) }
}

.header > .header-right > .nav-menu-avatar-trigger {
	position: relative;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0;
	margin: 0 0 0 10px;
	cursor: pointer;
	font-size: 20px;
}

#header-creator.header > .header-right > .nav-menu-avatar-trigger {border-radius: 10px;}

.header.header-guest > .header-right > .nav-menu-avatar-trigger {
	display: none;
}

.header > .header-right > .nav-menu-avatar-trigger i {
	font-size: inherit;
}

.header > .header-right > .nav-menu-avatar-trigger > svg {
	width: 25px;
	height: 25px;
}

.header > .header-right > .nav-menu-avatar-trigger:after {
	position: absolute;
	content: '';
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--wtl-panel-color-bg-transparent);
	transition: all .2s ease;
	z-index: 1;
	opacity: .3;
	border-radius: 50%;
}

#header-creator.header > .header-right > .nav-menu-avatar-trigger:after {
	opacity: 1;
}

.header > .header-right > .nav-menu-avatar-trigger:hover:after {
	background: var(--wtl-panel-color-accent-light-hover);
}

#header-creator.header > .header-right > .nav-menu-avatar-trigger:hover:after {
	background: var(--wtl-panel-color-dark-light);
}

.header > .header-right > .nav-menu-avatar-trigger img {
	display: block;
	border-radius: 50%;
	overflow: hidden;
}

@media screen and (max-width: 991px) {
	.header {
		grid-column-gap: 0;
	}
	.header > .header-left {
		justify-content: flex-start;
		align-items: center;
	}
	.header.header-user > .header-center {
		display: none;
	}
	.header.header-guest > .header-center {
		display: none;
	}
	.header > .header-right {
		margin-left: 0;
		flex: 0 auto;
	}
	.header > .header-right > .header-btn-login {
		display: none;
	}
	.header.header-guest > .header-right > .nav-menu-avatar-trigger {
		display: flex;
	}
}

@media screen and (max-width: 767px) {
	.header {
		padding: 10px 20px 10px 10px;
	}
	.header.header-guest {
		padding: 10px 20px;
	}
}

@media screen and (max-width: 479px) {
	.header > .header-left > .logo,
	.header > .header-left > .logo > img {
		max-width: 140px;
	}

	.header > .header-right > .header-btn-ico.nav-menu-item-notifications,
	.header > .header-right > .header-btn-ico.nav-menu-item-messages,
	.header > .header-right > .header-btn-ico.nav-menu-item-surveys,
	.header > .header-right > .header-btn-ico.nav-menu-item-boxed {
		display: none;
	}

	.header > .header-right > .nav-menu-avatar-trigger.unread:before {
		position: absolute;
		top: 0;
		right: 0;
		width: 12px;
		height: 12px;
		content: '';
		border-radius: 50%;
		border: 2px solid var(--wtl-panel-color-bg-white);
		background: var(--wtl-color-red);
		box-sizing: border-box;
	}

}

/*  Admin - Menu Boxed */
/*  ============================================================= */


.nav-menu-boxed-wrap {
	display: none;
	width: 295px;
	height: 410px;
	position: fixed;
	top: 70px;
	right: 30px;
	background-color: var(--wtl-panel-color-bg-white);
	border: 1px solid var(--wtl-panel-color-bg-border);
	border-radius: 20px;
	z-index: 99;
}

.nav-menu-boxed-wrap.active {
	display: flex;
}

.nav-menu-boxed-wrap > .nav-menu-boxed {
	display: grid;
	grid-template-rows: auto auto;
	grid-template-columns: 1fr 1fr 1fr;
	grid-auto-rows: minmax(auto, 1fr);
	grid-auto-columns: 1fr;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	scrollbar-width: none;
	border-style: none;
	padding: 10px;
	overflow: scroll;
}

.nav-menu-boxed-wrap .menu-item {
	display: inline-block;
	float: left;
	position: relative;
	width: 100%;
	height: 100px;
	vertical-align: top;
	margin: 0;
	overflow: visible;
}

.nav-menu-boxed-wrap .menu-item a {
	display: flex;
	flex-direction: column;
	position: absolute;
	width: 100%;
	border-radius: 10px;
	margin: 0;
	padding: 0 10px;
	text-align: center;
	text-decoration: none;
	transition: all .2s ease;
	overflow: visible;
}

.nav-menu-boxed-wrap .menu-item a:hover {
	background-color: var(--wtl-panel-color-accent-light-hover);
}

.nav-menu-boxed-wrap .menu-item a:hover p {
	overflow-wrap: break-word;
	white-space: normal;
	word-wrap: break-word;
}

.nav-menu-boxed-wrap .menu-item i {
	width: 100%;
	height: 50px;
	margin-top: 5px;
	margin-bottom: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--wtl-panel-color-accent);
	font-size: 24px;
}

.nav-menu-boxed-wrap .menu-item p {
	width: 100%;
	color: var(--wtl-panel-color-font-dark-100);
	text-align: center;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	font-size: 14px;
	line-height: 15px;
	min-height: 20px;
}




/*  Nav Avatar */
/*  ============================================================= */

.nav-menu-avatar {
	display: none;
	position: fixed;
	right: 10px;
	top: 70px;
	width: 100%;
	max-width: 295px;
	background-color: var(--wtl-panel-color-bg-white);
	border: 1px solid var(--wtl-panel-color-bg-border);
	border-radius: 20px;
	overflow: scroll;
	-ms-overflow-style: none;  /* IE and Edge */
	scrollbar-width: none;  /* Firefox */
	z-index: 99;
}

.nav-menu-avatar.active {
	display: block;
}

#header-creator .nav-menu-avatar {top: 60px;}

.nav-menu-avatar .nav-menu-list {
	padding-top: 10px;
	background: var(--wtl-panel-color-bg-white);
	display: none;
}

.nav-menu-avatar .nav-menu-list.active {
	display: block;
}




/*  Nav Menu Sidebar */
/*  ============================================================= */

.nav-menu-sidebar .nav-menu-sidebar-mobile-top {
	display: none;
	flex-direction: row;
	align-items: center;
	flex-wrap: nowrap;
	white-space: nowrap;
	flex-shrink: 0;
	position: absolute;
	top: 0;
	left: 0;
	gap: 5px;
	width: 300px;
	padding: 10px;
	background-color: var(--wtl-panel-color-bg-accent);
	border-radius: 0;
	z-index: 1;
}

.nav-menu-sidebar .nav-menu-sidebar-mobile-top .sidebar-trigger {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 40px;
	height: 40px;
	color: var(--wtl-panel-color-font-dark-100);
	background-color: var(--wtl-panel-color-bg-accent);
	border-radius: 10px;
	font-size: 18px;
	font-weight: 300;
	line-height: 20px;
	text-decoration: none;
	transition: all .2s ease;
	cursor: pointer;
}

.nav-menu-sidebar .nav-menu-sidebar-mobile-top .sidebar-trigger:hover {
	background-color: var(--wtl-panel-color-accent-light-hover);
}

.nav-menu-sidebar .nav-menu-sidebar-mobile-top .logo,
.nav-menu-sidebar .nav-menu-sidebar-mobile-top .logo > img {
	max-height: 40px;
	max-width: 160px;
	color: var(--wtl-panel-color-font-dark-100);
	text-decoration: none;
	overflow: hidden;
}

.nav-menu-sidebar .nav-menu-sidebar-mobile-top .logo > div {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: pre-wrap;
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
	text-decoration: none;
	max-height: inherit;
	color: var(--wtl-panel-color-font-dark-100);
}

.nav-menu-sidebar {
	position: relative;
	top: 0;
	left: 0;
	flex-direction: column;
	justify-content: flex-start;
	flex-shrink: 0;
	width: 300px;
	height: 100vh;
	border-radius: 20px;
	display: none;
	z-index: 1;
}

.nav-menu-sidebar.active {
	display: flex;
}

.nav-menu-sidebar:before {
    position: fixed;
    top: 60px;
    left: 300px;
    content: '';
    width: 20px;
    aspect-ratio: 1;
    background: radial-gradient(
        farthest-side at 100% 100%,
        transparent 99.5%,
        var(--wtl-panel-color-bg-accent) 100%
    );
}

.nav-menu-sidebar .nav-menu-list {
	position: fixed;
	top: 60px;
	bottom: 0;
	left: 0;
	width: 300px;
	height: calc(100vh - 60px);
	background: var(--wtl-panel-color-bg-accent);
	display: none;
}

.nav-menu-sidebar .nav-menu-list:has(.nav-menu-list.active) {
  display: block;
  z-index: 1;
}

.nav-menu-sidebar .nav-menu-list.active {
	display: flex;
	flex-direction: column;
	z-index: 1;
	overflow-y: auto;
}

.nav-menu-sidebar .nav-menu-list-community {
	width: 100%;
	padding: 0 0 10px 0;
	margin: 0;
	list-style-type: none;
	font-size: 15px;
	line-height: 20px;
	font-weight: 500;
}

.nav-menu-sidebar .nav-menu-list-community.active {
	display: block;
	z-index: 2;
}

.nav-menu-list-title-community.active i {transform: rotate(90deg);}
.nav-menu-list-title-community.active ~ .nav-menu-list-community {display: none;}

.nav-menu-additional {
	display: flex;
	flex-direction: column;
	justify-content: end;
	flex: 1;
	gap: 10px;
	padding-top: 20px;
}

.nav-menu-additional .nav-menu-list-item {
	background: var(--wtl-panel-color-bg-white);
}

.nav-menu-additional .nav-menu-list-item:hover {
	background: var(--wtl-panel-color-accent);
	color: var(--wtl-panel-color-font-white);
}

.nav-wtl-badge {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	border-radius: 20px;
	padding: 10px 15px;
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
	gap: 7px;
	transition: all .2s ease;
	margin: 0 10px;
	text-decoration: none;
	color: var(--wtl-panel-color-font-dark-100);
}

.nav-wtl-badge:hover {
	background: var(--wtl-panel-color-bg-white);
}

.nav-wtl-badge img {
	max-width: 80px;
	margin-top: -1px;
}

.nav-become-creator {
	display: flex;
	flex-direction: column;
	gap: 10px;
	background: var(--wtl-panel-color-bg-white);
	border-radius: 10px;
	padding: 10px;
	margin: 0px 10px 0px 10px;
}

.nav-become-creator.hide {
	display: none;
}

.nav-become-creator > div {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.nav-become-creator > div > p {
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
	margin: 0;
}

.nav-become-creator > div > i {
	display:flex;
	justify-content: center;
	width: 20px;
	height: 20px;
	font-size: 16px;
	line-height: 20px;
	border-radius: 5px;
	cursor: pointer;
}
.nav-become-creator > div > i:hover {
	background: var(--wtl-panel-color-bg-accent);
}

.nav-become-creator > p {
	font-size: 14px;
	font-weight: 500;
	color: var(--wtl-panel-color-font-dark-75);
	line-height: 20px;
	margin: 0;
}
.nav-become-creator > a {
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 10px;
	font-size: 14px;
	line-height: 20px;
	transition: all .2s ease;
	color: var(--wtl-panel-color-font-dark-100);
	background: var(--wtl-panel-color-bg-accent);
	padding: 10px 15px;
	border-radius: 10px;
	text-decoration: none;
}

.nav-become-creator > a:hover {
	background: var(--wtl-panel-color-accent);
	color: var(--wtl-panel-color-font-white);
}

.nav-become-creator > a > i {
	font-size: 18px;
	line-height: 20px;;
}


@media screen and (max-width: 1280px) {

	.sidebar-active {
		overflow: hidden;
	}

	.nav-menu-sidebar {
		z-index: 4;
		position: fixed;
	}

	.nav-menu-sidebar:after {
		position: fixed;
		content: '';
		top: 0;
		right: 0;
		bottom: 0;
		left: 0px;
		background: var(--wtl-panel-color-bg-overlay);
	}

	.nav-menu-sidebar .nav-menu-sidebar-mobile-top {
		display: flex;
	}

	.nav-menu-sidebar .nav-menu-sidebar-mobile-top .sidebar-trigger {
		top: 0;
	}

}




/*  Nav Menu Sidebar + Nav Menu Avatar */
/*  ============================================================= */

.nav-menu-list {
	padding: 0 0 10px 0;
	margin: 0;
	list-style-type: none;
	font-size: 15px;
	line-height: 20px;
	font-weight: 500;
}

.nav-menu-list-recent {
	display: block;
	position: relative;
	padding: 0;
	margin: 0;
	list-style-type: none;
	font-size: 15px;
	line-height: 20px;
	font-weight: 500;
}

.nav-menu-list-user {
	display: flex;
	flex-direction: row;
	gap: 15px;
	position: relative;
	align-items: center;
	padding: 10px 20px 21px 20px;
	margin-bottom: 10px;
}

.nav-menu-list-user:after {
	position: absolute;
	content: '';
	bottom: 1px;
	left: 20px;
	width: calc(100% - 40px);
	height: 1px;
	background-color: var(--wtl-panel-color-bg-border);
}

.nav-menu-list-user img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
}

.nav-menu-list-user .nav-menu-list-user-info {
	display: flex;
	flex-direction: column;
	width: 100%;
	overflow: hidden;
}

.nav-menu-list-user .nav-menu-list-user-info span {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	width: 100%;
}

.nav-menu-list-item {
	position: relative;
	display: flex;
	flex-direction: row;
	flex: 1;
	gap: 15px;
	margin: 0 10px;
	padding: 10px 40px 10px 10px;
	border-radius: 20px;
	transition: all .2s ease;
	text-decoration: none;
	cursor: pointer;
	color: var(--wtl-panel-color-font-dark-100);
	font-size: 14px;
}

.nav-menu-list-item.active,
.nav-menu-list-item:hover {
	background-color: var(--wtl-panel-color-accent-light-hover);
}

#header-creator .nav-menu-list-item.active,
#header-creator .nav-menu-list-item:hover {
	background-color: var(--wtl-panel-color-dark-light);
}

.nav-menu-list-item svg {
	width: 20px;
	height: 20px;
}

.nav-menu-list-community .nav-menu-list-item {
	border-radius: 15px;
	padding: 5px 10px 5px 10px;
	font-size: 13px;
}

.nav-menu-list-recent .nav-menu-list-item {
	padding: 10px 40px 10px 10px;
	margin-left: 45px;
}

.nav-menu-list-recent:after {
	position: absolute;
	content: '';
	top: 10px;
	left: 30px;
	width: 1px;
	height: calc(100% - 20px);
	background: var(--wtl-panel-color-bg-border);
}

.nav-menu-list-item.back {
	margin-bottom: 21px;
}

.nav-menu-list-item.back:after {
	position: absolute;
	content: '';
	width: calc(100% - 20px);
	height: 1px;
	background: var(--wtl-panel-color-bg-border);
	bottom: -10px;
	left: 10px;
}

.nav-menu-list-item span {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	pointer-events: none;
}

.nav-menu-list-item img {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 1px solid var(--wtl-panel-color-bg-border);
	pointer-events: none;
}

.nav-menu-list-item .nav-menu-emoji,
.nav-menu-list-item i {
	display: flex;
	justify-content: center;
	flex-shrink: 0;
	line-height: inherit;
	width: 20px;
	pointer-events: none;
	position: relative;
}

.nav-menu-list-item .nav-menu-emoji {font-size: 14px;}
.nav-menu-list-item i {font-size: 18px;}

.nav-menu-list-item svg.chevron-right,
.nav-menu-list-item i.fa-chevron-right {
	font-size: 15px;
	text-align: right;
	position: absolute;
	right: 10px;
	justify-content: end;
}

.nav-menu-list-item i.unread:after {
	position: absolute;
	top: -6px;
	right: -6px;
	width: 12px;
	height: 12px;
	content: '';
	border-radius: 50%;
	border: 2px solid var(--wtl-panel-color-bg-white);
	background: var(--wtl-color-red);
	box-sizing: border-box;
}

.nav-menu-list-title {
	font-size: 14px;
	line-height: 20px;
	padding: 10px;
	margin: 0 10px 0 10px;
	color: var(--wtl-panel-color-font-dark-75);
}

.nav-menu-list-title-community {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
	padding: 5px 10px;
	margin: 0 10px 0 10px;
	text-decoration: none;
	color: var(--wtl-panel-color-font-dark-75);
	transition: all .2s ease;
	cursor: pointer;
}

.nav-menu-list-title-community:hover {
	color: var(--wtl-panel-color-font-dark-100);
}

.nav-menu-list-title-community span {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	pointer-events: none;
}

.nav-menu-list-title-community i {
	display: flex;
	justify-content: center;
	flex-shrink: 0;
	line-height: inherit;
	width: 20px;
	transition: all .2s ease;
}

.nav-menu-list-sep {
	height: 1px;
	margin: 10px 20px;
	background-color: var(--wtl-panel-color-bg-border);
}





/* Theme switch */
/*  ============================================================= */

.theme-color-switch label {
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: center;
	margin: 0 10px;
	padding: 10px 10px 10px 10px;
	border-radius: 20px;
	transition: all .2s ease;
	cursor: pointer;
}

.theme-color-switch label:hover {
	background-color: var(--wtl-panel-color-accent-light-hover);
}

.theme-color-switch label input {display: none;}
.theme-color-switch label input:checked ~ .toggle {background: var(--wtl-color-green);}
.theme-color-switch label input:checked ~ .toggle > .switch {left: 13px;}

.theme-color-switch label span {
	position: relative;
	display: flex;
	flex-direction: row;
	flex-grow: 1;
	gap: 15px;
	margin: 0;
	padding: 0;
	color: var(--wtl-panel-color-font-dark-100);
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.theme-color-switch label span i {
	font-size: 18px;
	line-height: inherit;
	width: 20px;
}

.theme-color-switch label .toggle {
	position: relative;
	width: 30px;
	height: 20px;
	margin-right: 0;
	padding-right: 0;
	justify-content: flex-start;
	align-items: center;
	border-radius: 10px;
	background-color: var(--wtl-panel-color-bg-border);
	transition: all 200ms ease;
}

.theme-color-switch label .toggle .switch {
	position: absolute;
	left: 3px;
	top: 3px;
	width: 14px;
	height: 14px;
	align-items: center;
	border-radius: 50%;
	background-color: var(--wtl-panel-color-font-white);
	transition: all 200ms ease;
}

