body {
	background-color: var(--body-bg);
	color: #262626;
	font-size: 14px;
}

/*  End Dot Pulse Large */
@keyframes dot-pulse-before-large {
	0% {
		box-shadow: 9976px 0 0 -9px;
	}

	30% {
		box-shadow: 9976px 0 0 2px;
	}

	60%,
	100% {
		box-shadow: 9976px 0 0 -9px;
	}
}

@keyframes dot-pulse-large {
	0% {
		box-shadow: 9999px 0 0 -9px;
	}

	30% {
		box-shadow: 9999px 0 0 2px;
	}

	60%,
	100% {
		box-shadow: 9999px 0 0 -9px;
	}
}

@keyframes dot-pulse-after-large {
	0% {
		box-shadow: 10022px 0 0 -9px;
	}

	30% {
		box-shadow: 10022px 0 0 2px;
	}

	60%,
	100% {
		box-shadow: 10022px 0 0 -9px;
	}
}

/*  End Dot Pulse Default */
@keyframes dot-pulse-before {
	0% {
		box-shadow: 9984px 0 0 -5px;
	}

	30% {
		box-shadow: 9984px 0 0 2px;
	}

	60%,
	100% {
		box-shadow: 9984px 0 0 -5px;
	}
}

@keyframes dot-pulse {
	0% {
		box-shadow: 9999px 0 0 -5px;
	}

	30% {
		box-shadow: 9999px 0 0 2px;
	}

	60%,
	100% {
		box-shadow: 9999px 0 0 -5px;
	}
}

@keyframes dot-pulse-after {
	0% {
		box-shadow: 10014px 0 0 -5px;
	}

	30% {
		box-shadow: 10014px 0 0 2px;
	}

	60%,
	100% {
		box-shadow: 10014px 0 0 -5px;
	}
}

/**
 * ==============================================
 * Dot Pulse
 * ==============================================
 */

label.disabled {
	background-color: var(--color-3);
  opacity: 0.85;
}

.snippet {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.dot-pulse {
	position: relative;
	left: -9999px;
	width: 10px;
	height: 10px;
	border-radius: 5px;
	background-color: var(--sub-text-color);
	color: var(--sub-text-color);
	box-shadow: 9999px 0 0 -5px;
	animation: dot-pulse 1.5s infinite linear;
	animation-delay: 0.25s;
}

.dot-pulse.dot-pulse-large {
	width: 16px;
	height: 16px;
	border-radius: 8px;
	animation: dot-pulse-large 1.5s infinite linear;
	animation-delay: 0.25s;
}

.dot-pulse::before,
.dot-pulse::after {
	content: '';
	display: inline-block;
	position: absolute;
	top: 0;
	width: 10px;
	height: 10px;
	border-radius: 5px;
	background-color: var(--sub-text-color);
	color: var(--sub-text-color);
}

.dot-pulse.dot-pulse-large::before,
.dot-pulse.dot-pulse-large::after {
	width: 16px;
	height: 16px;
	border-radius: 8px;
}

.dot-pulse::before {
	box-shadow: 9984px 0 0 -5px;
	animation: dot-pulse-before 1.5s infinite linear;
	animation-delay: 0s;
}

.dot-pulse.dot-pulse-large::before {
	animation: dot-pulse-before-large 1.5s infinite linear;
	animation-delay: 0s;
}

.dot-pulse::after {
	box-shadow: 10014px 0 0 -5px;
	animation: dot-pulse-after 1.5s infinite linear;
	animation-delay: 0.5s;
}

.dot-pulse.dot-pulse-large::after {
	animation: dot-pulse-after-large 1.5s infinite linear;
	animation-delay: 0.5s;
}

.main-bg {
	background-color: var(--color-2);
}

.sub-main-bg {
	background-color: var(--color-4);
}

footer {
	background-color: var(--color-2);
	color: #262626;
}

.navbar-nav.sidebar {
	/* box-shadow: .1875rem .25rem .875rem #0000004d; */
}

.radius-4 {
	border-radius: 4px
}

*.button-default {
	font-size: 13px;
	padding: 6px 18px;
	border-radius: 4px;
	border: 1px solid var(--sub-text-color);
}

*.button-default:hover,
*.button-default:active {
	background-color: rgba(0, 0, 0, 0.04);
}

.btn-x-primary {
	color: var(--primary) !important;
	border: 1px solid var(--primary);
}

.btn-x-primary:hover,
.btn-x-primary:hover {
	background-color: var(--primary);
	color: #ffffff !important;
	box-shadow: rgba(22, 119, 255, 0.2) 0px 6px 4px;
}

.btn-x-success {
	color: var(--success) !important;
	border: 1px solid var(--success);
}

.btn-x-success:hover,
.btn-x-success:hover {
	background-color: var(--success);
	color: #ffffff !important;
	box-shadow: rgba(82, 196, 26, 0.2) 0px 6px 4px;
}

.bg-x-success {
	color: var(--success) !important;
	border: 1px solid var(--success);
}

/* .bg-x-success:hover,
.bg-x-success:focus {
	background-color: var(--success);
	color: #ffffff !important;
	box-shadow: rgba(82, 196, 26, 0.2) 0px 6px 4px;
} */

.bg-x-primary {
	color: var(--primary) !important;
	border: 1px solid var(--primary);
}

/* .bg-x-primary:hover,
.bg-x-primary:focus {
	background-color: var(--primary);
	color: #ffffff !important;
	box-shadow: rgba(22, 119, 255, 0.2) 0px 6px 4px;
} */

.bg-x-warning {
	color: var(--warning) !important;
	border: 1px solid var(--warning);
}

/* .bg-x-warning:hover,
.bg-x-warning:focus {
	background-color: var(--warning);
	color: #ffffff !important;
	box-shadow: rgba(250, 173, 20, 0.2) 0px 6px 4px;
} */

.btn-x-warning {
	color: var(--warning) !important;
	border: 1px solid var(--warning);
}

.btn-x-warning:hover,
.btn-x-warning:focus {
	background-color: var(--warning);
	color: #ffffff !important;
	box-shadow: rgba(250, 173, 20, 0.2) 0px 6px 4px;
}

.bg-x-danger {
	color: var(--danger) !important;
	border: 1px solid var(--danger);
}

/* .bg-x-danger:hover,
.bg-x-danger:focus {
	background-color: var(--danger);
	color: #ffffff !important;
	box-shadow: rgba(255, 77, 79, 0.2) 0px 6px 4px;
} */

.btn-x-danger {
	color: var(--danger) !important;
	border: 1px solid var(--danger);
}

.btn-x-danger:hover,
.btn-x-danger:focus {
	background-color: var(--danger);
	color: #ffffff !important;
	box-shadow: rgba(255, 77, 79, 0.2) 0px 6px 4px;
}

.bg-none {
	background-color: transparent;
}

.button-none:hover,
.button-none:active,
.button-none:focus {
	background-color: var(--color-4);
	/* color: #262626; */
}
*.border-none {
	border: none !important;
	border-bottom: none !important;
	border-top: none !important;
	border-left: none !important;
	border-right: none !important;
}
*.border-none:focus {
	box-shadow: none !important
}

button[aria-expanded="true"] {
	background-color: hsl(158, 75%, 35%) !important;
	color: #ffffff !important;
	border: 1px solid #169b6b !important;
}

button[aria-expanded="true"]:hover,
button[aria-expanded="true"]:active,
button[aria-expanded="true"]:focus {
	background-color: #169b6b !important;
	color: #ffffff !important;
	box-shadow: rgba(82, 196, 26, 0.2) 0px 6px 4px;
}

.topic-wrapper input[aria-label=Search] {
	width: 120px;
}

.loading-content {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(227, 230, 240, 0.2);
	z-index: 10000;
	display: block;
}

.content-wrap {
	border-radius: 8px;
	border: 1px solid var(--border);
}

.border-default {
	border: 1px solid var(--border);
}

.table a {
	color: var(--color-6);
}

.lead-wrap .topic-name {
	max-width: calc(100% - 50px);
}

.dropdown-select.wide .current {
	overflow: hidden;
	display: inline-block;
	white-space: nowrap;
	text-overflow: ellipsis;
	width: 100%;
}

.topic-name {
	line-height: 20px;
	max-width: calc(100% - 80px);
	overflow: hidden;
	display: inline-block;
	white-space: nowrap;
	text-overflow: ellipsis;
	border: 1px solid var(--sub-text-color);
	font-size: 13px;
	padding: 6px 18px;
	border-radius: 4px;
}

.table textarea {
	border: none;
	outline: none;
}

.table input {
	line-height: 36px;
	border: none;
	outline: none;
	width: 100%;
}

.table select {
	height: 36px;
	border: none;
	outline: none;
	width: 100%;
}

.sniper-form input,
.sniper-form button,
.sniper-form select {
	font-size: 12px;
	padding: 6px 8px;
}

.sniper-form {
	display: flex;
	gap: 8px;
}

.mw-25 {
	max-width: 25% !important;
}

.my-10px {
	margin-top: 10px !important;
	margin-bottom: 10px !important;
}

.jstree-hovered,
.jstree-wholerow-hovered,
.jstree-clicked,
.jstree-wholerow-clicked {
	background: transparent;
	box-shadow: none;
}

.jstree-wholerow-ul {
	min-width: auto
}

#tree ul {}

.treeview-node__level {
	width: 24px;
}

button.treeview-node__toggle {
	width: 24px;
}

.treeview-node__toggle {
	transform: rotate(-90deg);
	padding: 0;
	position: relative;
}

.treeview-node__toggle i {
	position: absolute;
	left: 50%;
	transform: translate(-50%, -50%);
	right: 50%;
	font-size: 20px;
	color: var(--color-7);
}

.treeview-node__toggle.treeview-node__toggle--open {
	transform: none;
}

.treeview-node__root {
	display: flex;
	align-items: center;
	min-height: 40px;
	padding-left: 8px;
	padding-right: 8px;
	position: relative;
}

.treeview-node__content {
	align-items: center;
	display: flex;
	flex-basis: 0%;
	flex-grow: 1;
	flex-shrink: 0;
	min-width: 0;
	gap: 8px;
	margin-left: 16px;
}

.treeview-node__prepend {
	min-width: 24px;
}


.treeview-node__label {
	flex: 1;
	font-size: inherit;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #dddddd;
}

.treeview-node__label span {
	cursor: pointer;
}

.checkbox-custom-label > span {
	margin-left: 20px;
}

.treeview-node .btn {
	width: 20px;
	height: 20px;
	padding: 0;
	text-align: center;
	margin: 4px 2px;
}

.treeview-node__input {
	align-items: flex-start;
	display: flex;
	flex: 1 1 auto;
	font-size: 16px;
	letter-spacing: normal;
	max-width: 100%;
	text-align: left;
}

.treeview-node__input input {
	width: 100%;
	background-color: var(--color-4);
	border-bottom: 1px solid var(--color-5);
	outline: none;
	border-width: 0 0 1px 0;
	border-radius: 4px;
	color: #dddddd;
}

.treeview-node__input input:active,
.treeview-node__input input:focus {
	outline: none;
}

.treeview-node a {
	color: var(--color-6);
	line-height: 28px;
}

.text-link {
	color: var(--color-6);
}

.text-link:hover,
.text-link:active {
	color: var(--color-7);
}

.treeview-node a.no-link{
	color: #dddddd;
	cursor: default;
	pointer-events: none;
}

a.no-link:hover {
	text-decoration: none
}

.border-gray {
	border-color: #aaaaaa;
}

.table.border-gray th,
.table.border-gray td {
	border-color: #aaaaaa;
}

.flex-1 {
	flex: 1;
}

.font-sm {
	font-size: 12px;
}

i.sortable {
	font-size: 16px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

/* .treeview-node__level {
	margin-right: 12px;
}
.treeview-node__content {
	margin-left: 12px;
} */

select.search-select {
	display: none !important;
}

.dropdown-select {
	/* background-color: var(--color-4); */
	border-radius: 4px;
	border: 1px solid var(--border);
	/* box-shadow: 0px 2px 5px 0px rgba(155, 155, 155, 0.5); */
	box-sizing: border-box;
	cursor: pointer;
	display: block;
	float: left;
	font-size: 14px;
	font-weight: normal;
	/* height: 42px; */
	line-height: 1.5;
	outline: none;
	/* padding-left: 18px; */
	/* padding-right: 30px; */
	position: relative;
	text-align: left !important;
	transition: all 0.2s ease-in-out;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	white-space: nowrap;
	width: auto;

}

.dropdown-select:focus {
	background-color: transparent;
}

.dropdown-select:hover {
	background-color: transparent;
}

.dropdown-select:active,
.dropdown-select.open {
	background-color: transparent;
	border-color: var(--color-5);
}

.dropdown-select:after {
	height: 0;
	width: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 4px solid #777;
	-webkit-transform: origin(50% 20%);
	transform: origin(50% 20%);
	transition: all 0.125s ease-in-out;
	content: '';
	display: block;
	margin-top: -2px;
	pointer-events: none;
	position: absolute;
	right: 10px;
	top: 50%;
}

.dropdown-select.open:after {
	-webkit-transform: rotate(-180deg);
	transform: rotate(-180deg);
}

.dropdown-select.open .list {
	-webkit-transform: scale(1);
	transform: scale(1);
	opacity: 1;
	pointer-events: auto;
}

.dropdown-select.open .option {
	cursor: pointer;
}

.dropdown-select.wide {
	width: 100%;
}

.dropdown-select.wide .list {
	left: 0 !important;
	right: 0 !important;
}

.dropdown-select .list {
	box-sizing: border-box;
	transition: all 0.15s cubic-bezier(0.25, 0, 0.25, 1.75), opacity 0.1s linear;
	-webkit-transform: scale(0.75);
	transform: scale(0.75);
	-webkit-transform-origin: 50% 0;
	transform-origin: 50% 0;
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.09);
	background-color: var(--color-2);
	border-radius: 6px;
	margin-top: 4px;
	padding: 3px 0;
	opacity: 0;
	overflow: hidden;
	pointer-events: none;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 9;
	max-height: 500px;
	overflow: auto;
	border: 1px solid var(--border);
}

.dropdown-select .list:hover .option:not(:hover) {
	background-color: transparent !important;
	color: var(--color-main);
}

.dropdown-select .dd-search {
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0.5rem;
}

.dropdown-select .dd-searchbox {
	width: 100%;
	outline: none;
	height: 40px;
	background-color: var(--border);
	border: none;
	color: var(--color-main);
}

.dropdown-select .list ul {
	padding: 0;
}

.dropdown-select .option {
	cursor: default;
	font-weight: 400;
	line-height: 40px;
	outline: none;
	padding-left: 18px;
	padding-right: 29px;
	text-align: left;
	transition: all 0.2s;
	list-style: none;
}

.dropdown-select .option:hover,
.dropdown-select .option:focus {
	background-color: var(--primary);
	color: #fff;
}

.dropdown-select .option.selected {
	font-weight: 600;
	color: #fff;
	background-color: var(--primary);
}

.dropdown-select .option.selected:focus {
	background-color: var(--primary);
}

.dropdown-select a {
	color: #aaa;
	text-decoration: none;
	transition: all 0.2s ease-in-out;
}

.dropdown-select a:hover {
	color: #666;
}

.checkbox .checkbox-custom-label:hover {
	background-color: var(--color-2);
}

.dropdown-select>.main-input,
.dropdown-select>.textarea-placeholder {
	position: absolute;
	z-index: -1;
	opacity: 0;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.dropdown-select.toggled>.main-input,
.dropdown-select.toggled>.textarea-placeholder {
	z-index: 1;
	opacity: 1;
	position: relative;
}

.dropdown-select .dropdown-list {
	position: absolute;
	top: calc(100% + 12px);
	left: 0;
	right: 0;
	max-height: 206px;
	overflow-y: auto;
	display: none;
	z-index: 10;
	background-color: var(--color-2);
	border-radius: 4px;
	box-shadow: 0 0 20px var(--border);
}

.dropdown-select.open .dropdown-list {
	display: block;
}

.dropdown-select .dropdown-label {
	display: block;
	font-size: 14px;
	/* line-height: 28px; */
	padding: 0.375rem 0;
	cursor: pointer;
	position: relative;
	background-color: transparent;
	background-clip: padding-box;
	margin-bottom: 0;
}

.dropdown-select .checkbox {
	opacity: 0;
	transition: opacity 0.2s;
	border-bottom: 1px solid var(--border);
}

.dropdown-select.open .checkbox {
	transition: 2s opacity 2s;
	opacity: 1;
}

.checkbox .checkbox-custom {
	display: none;
}

.checkbox .checkbox-custom-label {
	position: relative;
	cursor: pointer;
	display: block;
	padding: 12px 16px;
	line-height: 16px;
	font-size: 14px;
	color: var(--color-main);
	margin: 0;
}

.treeview-node__label label span span {
	font-size: 11px;
}

.checkbox .checkbox-custom+.checkbox-custom-label.large:before {
	width: 20px;
	height: 20px;
}

.checkbox .checkbox-custom+.checkbox-custom-label:before {
	content: '';
	/* background: var(--color-5); */
	/* display: inline-block; */
	vertical-align: middle;
	/* margin-right: 10px; */
	text-align: center;
	width: 16px;
	height: 16px;
	border: 1px solid var(--sub-text-color);
	border-radius: 2px;
	/* margin-top: -2px; */
	position: absolute;
}
.checkbox .checkbox-custom:checked+.checkbox-custom-label.large:after {
	top: 4px;
	left: 5px;
}

.checkbox .checkbox-custom:checked+.checkbox-custom-label:after {
	content: '';
	position: absolute;
	top: 5px;
	left: 3px;
	height: 8px;
	padding: 4px;
	transform: rotate(47deg);
	text-align: center;
	border: solid var(--red);
	border-width: 0 2px 2px 0;
}

.checkbox .value-input {
	display: none;
}

/* .treeview .checkbox .checkbox-custom+.checkbox-custom-label:before {
	width: 28px;
} */

.treeview .checkbox .checkbox-custom:checked+.checkbox-custom-label:after {
	top: 8px;
	left: 12px;
}

.upload-picture {
	border: 1px dashed;
	border-radius: 8px;
	background-color: var(--color-4);
}

.upload-picture img {
	cursor: pointer;
	height: 86px;
	width: 86px;
	border-radius: 0.35rem;
}

.upload-picture input {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.upload-image {
	border: 1px solid var(--color-5);
	border-radius: 0.35rem;
	height: 122px;
	padding: 1rem;
	display: flex;
}

.upload-image button {
	height: 100%;
	width: 86px;
	background-color: var(--color-4);
	border: none;
	outline: none;
	border-radius: 8px;
	color: var(--color-9);
	font-size: 11px;
}

.upload-tip {
	flex: 1;
	font-size: 11px;
	padding-left: 0.75rem;
}

.upload-tip p {
	margin-bottom: 0;
}

.treeview-node::before,
.treeview-node::after {
	content: '';
	position: absolute;
}

.treeview-node::before {
	width: 24px;
	top: 20px;
	left: 20px;
	border-bottom: 1px dashed #818ea3;
}

.treeview-node::after {
	display: block;
	width: 0;
	top: 0;
	left: 20px;
	height: 39px;
	border-left: 1px dashed #818ea3;
	bottom: 0;
}

.treeview-node__label > span,
.treeview-node__label-sub > span {
	line-height: 32px;
}


.treeview-node::after {
	height: 100%;
  top: -20px;
}
.treeview-node.node_lever-2::before,
.treeview-node.node_lever-2::after {
    left: 44px;
}
.treeview-node.node_lever-3::before,
.treeview-node.node_lever-3::after {
    left: 68px;
}
.treeview-node.node_lever-4::before,
.treeview-node.node_lever-4::after {
    left: 92px;
}


.treeview-node {
	position: relative;
}

#sub-menu ul {
	list-style: none;
}

#sub-menu > ul {
	display: flex;
	list-style: none;
	/* position: relative; */
	margin: 0;
	padding: 0;
}

#sub-menu li > span {
	cursor: pointer;
}

#sub-menu li:hover > ul {
	display: block;
}
#sub-menu li:hover span {
	background-color: var(--color-4);
}

#sub-menu ul ul {
	position: absolute;
	width: 100%;
	background-color: var(--color-4);
	z-index: 1;
	display: none;
	left: 0;
	padding: 0;
}
#sub-menu > ul > li > span {
	line-height: 32px;
}
#sub-menu span ,
#sub-menu a {
	display: inline-block;
}

#sub-menu ul ul li {
	width: 360px;
	border-width: 0 1px 0 0;
	border-color: var(--color-3);
	border-style: solid;
}
#sub-menu ul ul ul li {
	border: none;
}

#sub-menu ul ul li span {
	width: 100%;
}

#sub-menu li li:hover span {
    background-color: var(--color-5);
}

#sub-menu ul ul ul {
	top: 0;
	left: 361px;
	width: calc(100% - 361px);
}

#sub-menu ul ul ul li {
	width: 100%;
}

#sub-menu ul ul ul li:hover a {
	background-color: var(--color-6);
	color: #fff;
}
#sub-menu ul ul ul li a {
	width: 100%;
	color: var(--color-3);
}

.d-grid {
	display: grid !important;
}

.gap-3 {
	gap: 1rem;
}

.topic-item {
	display: flex;
  align-items: center;
}

.topic-item.active .topic-name {
	color: #ffffff;
	background-color: var(--primary);
	border-color: var(--primary);
}

.border-right {
	border-right: 1px solid var(--border);
}
.border-left {
	border-left: 1px solid var(--border);
}
.border-top {
	border-top: 1px solid var(--border);
}
.border-bottom {
	border-bottom: 1px solid var(--border);
}

.border-all {
	border: 1px solid var(--border);
}

.mang-wrap {
	max-height: 200px;
	overflow: auto;
}
.lead-wrap {
	max-height: calc(100vh - 300px);
	overflow: auto;
	width: 203px;
}

.topic-item button:first-child {
	max-width: calc(100% - 50px);
	overflow:hidden;
	display: inline-block;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.topic-item .down-btn button {
	max-width: calc(100% - 16px);
}

.nav-link {
	color: var(--color-main);
}

.nav-link:hover {
	color: var(--color-main);
  background-color: rgb(230, 244, 255);
}

.active .nav-link {
	color: rgb(22, 119, 255);
  background-color: rgb(230, 244, 255);
	border-right: 2px solid rgb(22, 119, 255);
	border-top-color: rgb(22, 119, 255);
	border-bottom-color: rgb(22, 119, 255);
	border-left-color: rgb(22, 119, 255);

}

.content-divider {

}

.two-items {
	width: 252px;
	position: relative;
	overflow: hidden;
	border: 1px solid var(--border);
	border-width: 0 1px 0 1px;
}
.two-items div:first-child {
	text-align: right;
}
.two-items div:last-child {

}
.two-items hr {
	width: 100%;
	height: 1px;
	color: var(--border);
	position: absolute;
	transform: rotate(30deg);
}

.colon {
	position: relative;
}
.colon::before {
	position: absolute;
	content: ":";
	right: -2px;
	top: 50%;
	transform: translateY(-50%);
	font-weight: 700;
	font-size: 16px;
}

.file-input-custom {
	position: relative;
}

.text-break {
  word-break: break-word !important;
  word-wrap: break-word !important;
}

.file-input-custom button {
	z-index: 1;
}

.file-input-custom span.label {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	padding-left: 112px;
	cursor: pointer;
	overflow: hidden !important;
  text-overflow: ellipsis;
}

@media (width >= 64rem) {
  .grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
	.grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
	.grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* ALERT */

@keyframes forwards{
	0% {
		transform: translate(calc(100% + 1.5rem), 0);
	}
	100% {
		transform: translate(0, 0);
	}
}


#alert {
	position: fixed;
	z-index: 9999;
	bottom: 0;
	right: 0;
	max-width: 360px;
	margin-right: 1.5rem;
}

#alert>div {
	/* display: flex;
	justify-content: flex-end; */
	max-width: 360px;
	min-width: 280px;
	/* transform: translate(calc(100% + 1.5rem), 0); */
	animation: notify 0.4s ease-out forwards;
}
.alert-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 0.5rem;
}

.alert-header h5 {
	font-size: 14px;
}

.alert-header i{
	font-size: 16px;
}

.alert-header button {
	outline: none;
	background: none;
	border: none;
	color: var(--color-3);
	padding: 0;
	width: 24px;
	height: 24px;
	font-size: 20px;
}

.alert-header button:hover {
	color: var(--color-4);
}

.alert-header button {
	line-height: 100%;
}
.alert-body {
	font-size: 13px;
	padding-left: 1rem;
}

.toggle {
  position: relative;
  cursor: pointer;
}

/* Hide checkbox but keep it accessible */
.toggle-input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

/* Toggle background */
.switch {
  display: flex;
  align-items: center;
  width: 40px;
  height: 24px;
  border: none;
  border-radius: 1rem;
  background-color: #dddddd;
  transition: all ease-in 300ms;
}

/* Toggle button */
.switch::before {
  content: "";
  position: absolute;
  left: 3px;
  width: 20px;
  height: 20px;
  background-color: white;
  border-radius: 50%;
  transition: all ease-in 300ms;
}

/* Focus when navigating via keyboard */
.toggle-input:focus-visible + .switch {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Change background colour when the toggle is checked */
.toggle-input:checked + .switch {
  background-color: var(--primary);
}

/* Move toggle button to the right when checked */
.toggle-input:checked + .switch::before {
  transform: translateX(14px);
}

/* Disable the transitions if reduced motion is enabled */
@media (prefers-reduced-motion: reduce) {
  .Toggle__display {
    transition-duration: 0ms;
  }
}