/* Notifications CSS */
.notifications_btn .notifications-badge {width: 10px;height: 10px;border-radius: 100%;position: absolute;right: 2px;top: 10px;padding: 0;background: rgba(var(--bs-secondary-rgb), 1)}
.avatar {height: 40px;width: 40px;background-size: cover;}
.dropdown_user {min-width: 300px;}
.avatar_big {font-size: 20px;width: 50px !important;height: 50px !important;background-size: cover;}
.notification *:last-child {margin-bottom: 0 !important;}
#notifications.modal.right .modal-dialog,
#menu_panel.modal.right .modal-dialog {max-width: 400px;}


body {
	--bs-body-bg: #FFF;
	-webkit-font-smoothing: antialiased;
}

.main-header {
	position: sticky;
	top: 0;
	box-shadow: 0 0 5px rgba(0,0,0,.1);
	z-index: 30;
}

.main-header .nav-link {
	border-bottom: 2px solid transparent;
}

.main-header .nav-link.active {
	font-weight: bold;
	color: var(--bs-primary) !important;
	border-color: var(--bs-primary);
}

.sidebar {
	position: sticky;
	top: 100px;
	left: 0;
	height: min-content;
}

.sidebar .nav-link {
	text-decoration: none;
	padding: 0.35rem .5rem;
	border-radius: .25rem;
}

.sidebar .nav-link {
	line-height: 1;
	--bs-nav-link-color: rgb(var(--bs-gray-500-rgb));
	--bs-navbar-active-color: rgb(var(--bs-secondary-rgb))
}

.sidebar .nav-link.nav-title {
	background: none !important;
	color: #000 !important;
	font-weight: bold;
	margin-bottom: 1rem
}

.sidebar .nav-link.active {
	background: var(--bs-secondary-100);
}

.tmp-copy-holder {
	width: 1px;
	height: 1px;
	position: absolute;
	opacity: 0;
}

pre code {
	border-radius: .5rem;
}

pre code.hljs {
	max-height: 50vh;
}

input.codet {
	padding: 1rem;
	color: #8685a7;
	font-family: monospace;
	width: 800px;
}

.fake-tooltip {
	position: absolute;
	right: 0;
	top: -40px;
	text-transform: uppercase;
	background: var(--bs-secondary);
	color: white;
	border-radius: 4px !important;
	font-size: 12px;
	padding: 0.15rem 0.25rem;
}


copy-component {
	position: relative;
	pre code.hljs {
		display: flex;
	}
	button {
		background: #FFF;
		border: 0;
		box-shadow: none;
		font-size: 11px;
		position: absolute;
		inset: auto 0 0 auto
	}
}

.loading-iframe {
	opacity: 0;
}

.resizable {
	resize: horizontal;
	overflow: auto;

	display: flex;
}

.resizable > * {
	flex: 1;
}

.iframe-container {
	padding-right: 20px;
	position: relative;
	position: relative;
	width: 100%;
	max-width: 100%;
	height: 650px;
	/*height: 80vh;*/

	/* margin: 20px auto; */
}
.iframe-container .inner-iframe {
	height: 100%;
	overflow: hidden;
	margin-right: -20px;
	border: 1px solid #CCC;
	border-radius: 10px;
	background-color: var(--bs-secondary-soft);
}

.resizable-iframe {
	width: 100%;
	height: 100%;
	max-height: 650px;
}

.resize-handle {
	position: absolute;
	width: 15px;
	height: 100%;
	top: 0;
	right: -10px;
	cursor: ew-resize;
	z-index: 1;
	&:after {
		top: 45%;
		width: 8px;
		height: 45px;
		border-radius: 6px;
		background: #CCC;
		content: '';
		position: absolute;
		right: 0;
	}
}

code.light {
	color: #333;
	background: #f4f4f4;
	border-radius: .25rem;
	padding: .25rem;
}

.nav-item {
	margin-bottom: 0;
}

/* OL */

ol.numbered {
	list-style-type: none;
	counter-reset: ordered;
	padding: 0;
	margin-left: 5px;
	li {
		margin-bottom: 1rem;
	}

	li::before {
		border: 1px solid #e74c3c;
		border-radius: 50%;
		color: #e74c3c;
		content: counter(ordered);
		counter-increment: ordered;
		display: inline-block;
		font-weight: 100;
		padding: 2px 5px;
		line-height: 1;
		font-size: 13px;
		position: relative;
		top: -2px;
		left: -5px;
	}
}



/* UL */

ul.default {
	li {
		margin-bottom: 1rem;
		&::marker {
			color: #CCC;
		}
	}
}

/* GRADIENTS */
.gradient-bg01 {
	background: var(--BG-03, linear-gradient(0deg, var(--bs-secondary-50, #ECECF7) 0%, var(--bs-white, #FFF) 100%));}
.gradient-bg02 {
	background: var(--BG-03, linear-gradient(0deg, var(--bs-white, #FFF) 0%, var(--bs-secondary-50, #ECECF7) 100%));}
.gradient-sec_pri {
	background: linear-gradient(289deg, var(--bs-secondary-100, #DADAF0) 25.81%, var(--bs-primary-100, #F7D1DF) 77.43%);}
.gradient-pri_sec {
	background: linear-gradient(289deg, var(--bs-primary-100, #F7D1DF) 25.81%, var(--bs-secondary-100, #DADAF0) 77.43%);}
.bg-glass {
	background: rgba(255, 255, 255, 0.5);
	border-radius: 16px;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(7.3px);
	-webkit-backdrop-filter: blur(7.3px);
	border: 1px solid rgba(255, 255, 255, 0.23);
}
.gradient-docs {
	background: linear-gradient(112deg, var(--bs-secondary-50, #ECECF7) 25.64%, #FFF 58.45%);
}