
.no_notes {
	font-size: 32px;
	text-align: center;
	padding:80px;
	color:#828C8D;
}
.no_notes i {
	display: block;
	margin:0 auto;
	margin-bottom:40px;
	font-size: 84px;
}


.note_list_item {
	cursor: pointer;
	-webkit-transform: translate3d(0, 0, 0);
	border-bottom:1px solid #eceff0;
	position: relative;
	-webkit-transition:.2s;
	-moz-transition:.2s;
	transition:.2s;
}

.note_list_item_inside {
	padding:30px 80px;
	cursor: pointer;
	position: relative;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition:.2s;
	-moz-transition:.2s;
	transition:.2s;
}
.note_list_item:hover {
	background:#eceff0;
}
.note_list_item_inside:not(:has(button:active)):active {
	background: #bec3c7;
}
.note_list_item_inside > div {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-transition:.2s;
	-moz-transition:.2s;
	transition:.2s;
}
.note_list_item_inside:not(:has(button:active)):active > div {
	transform: scale(.98);
}
.group_note_thumbnail {
	display: none;
}
.group_note_rtg {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-bottom: 10px;
}
.group_note_rtg_amount {
	padding: 0px 8px;
	border-radius: 6px;
	background: #00B44E;
    background-image: linear-gradient(135deg, #00b44e 0%,#24c37b 100%);
    border: 2px solid #00B44E;
	color: #fff;
}
.group_note_rtg_fund {
	text-transform: capitalize;
	color: #828c8d;
	font-weight: 400;
	font-size: 14px;
}

@media screen and (min-width: 600px) {
	.group_note_thumbnail {
		display: block;
		max-width: 144px;
		position: absolute;
		left: 100%;
		margin-left: 20px;
		top:50%;
		box-shadow: rgba(0,0,0,.2) 0 0 4px;
		border-radius: 3px;
		-webkit-transform:translateY(-50%);
		-moz-transform:translateY(-50%);
		transform:translateY(-50%);
		-webkit-transition: -webkit-transform .2s;
		-moz-transition: -moz-transform .2s;
		transition: transform .2s;
	}
	.note_list_itemq:hover .group_note_thumbnail {
		-webkit-transform:translateY(-50%) scale(1.05);
		-moz-transform:translateY(-50%) scale(1.05);
		transform:translateY(-50%) scale(1.05);
	}
	.note_list_item.has_thumbnail .note_list_item_inside {
		padding-right:224px;
	}
	.note_list_item.has_thumbnail .note_list_item_inside > div {
		min-height: 160px;
	}
}

.note_list_item_inside .view_filters_button_portal_container {
    display: inline-block;
    padding-left: 0.1875rem;
    transform: scale(/* 12/13 */ 0.9231);
}

.group_note_options {
	color:#828c8d;
	font-size: 18px;
	line-height: 19px;
	position: absolute;
	right: 80px;
	bottom: 30px;
	z-index: 100;
}
.group_note_option_button {
	width: 19px;
	text-align: center;
	cursor: pointer;
	display: inline-block;
	background:rgba(255,255,255,0);
	-webkit-transition: .2s;
	-moz-transition: .2s;
	transition: .2s;
}
.group_note_option_button:hover {
	color:#278DC1;
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	transform: scale(1.2);
}
.group_note_option_button:active {
	-webkit-transform: scale(.95);
	-moz-transform: scale(.95);
	transform: scale(.95);
}
.group_note_option_delete_button:hover {
	color: #fA3046;
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	transform: scale(1.2);
}
.note_list_item .title {
	font-size: 24px;
	margin-bottom: 10px;
}
.note_list_item .author {
	color:#828c8d;
	font-size: 14px;
	margin-right: 40px;
}
.note_list_item .summary {
	margin-bottom: 10px;
}

.notes_holder .toolbar {
	font-weight: 400;
	padding:20px 60px;
	cursor: pointer;
	font-size: 18px;
	border-bottom: 1px solid #98a4a5;
	-webkit-transition:.2s;
	-moz-transition:.2s;
	-ms-transition:.2s;
	-o-transition:.2s;
	transition:.2s;
}
.note_holder .open .toolbar {
	-webkit-transform: translate3d(0, 0, 0);
	border-bottom: 1px solid #eceff0;
}
.notes_holder .toolbar:hover {
	background:#bec3c7;
}
.notes_holder .toolbar:active {
	background:#98a4a5;
}

.notes_holder .toolbar .type_indicator {
	margin-right: 10px;
}
.notes_holder .toolbar .opened_indicator, .notes_holder .toolbar .closed_indicator {
	right:60px;
	position: absolute;
	font-size: 28px;
}
.notes_holder .closed .opened_indicator, .notes_holder .open .closed_indicator {
	display: none;
}
.drafts .holder, .scheduled .holder, .autosaved .holder, .deleted .holder {
	display: none;
}

.drafts .note_list_item:last-child, .scheduled .note_list_item:last-child, .autosaved .note_list_item:last-child, .deleted .note_list_item:last-child {
	border-bottom: 2px solid #98a4a5;
}
.notes_count {
	color:#828c8d;
	font-weight: 100;
}

@media screen and (max-width:600px) {
	.note_list_item_inside {
		padding:20px;	
	}
	.group_note_options {
		right: 20px;
		bottom: 20px;	
	}
	.note_list_item .summary {
		display: none;
	}
	.note_list_item .title {
		line-height: 30px;
		margin-bottom: 4px;
		font-size: 22px;
	}
}
