.mailbox-menu-icon-container {
	cursor: pointer;
	stroke: #303030;
	padding: 15px 0px;
	margin: 4px 0px;
	position: relative !important;
}

.mailbox-menu-icon-container:hover {
	color: #11A9A9;
	stroke: #11A9A9;
}

.mailbox-menu-icon-container:active {
	background-color: #15aeae;
	-webkit-transition: background-color 1000ms linear;
	-ms-transition: background-color 1000ms linear;
	transition: background-color 1000ms linear;
}

.mailbox-menu-icon-container.active {
	color: #11A9A9;
	stroke: #11A9A9;
}

.mailbox-menu-icon-container .mailbox-menu-icon-container-selected {
	background-color: #11A9A9;
	width: 3px !important;
	height: 100% !important;
	position: absolute;
	top: 50%;
	left: 0px;
	transform: translateY(-50%);
	display: none;
}

.mailbox-menu-icon-container.active .mailbox-menu-icon-container-selected {
	display: block;
}

#search-mailbox {
	border: none;
	display: block;
	padding: 5px 4px 5px 40px;
	border-radius: 10px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' class='bi bi-search' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'%3E%3C/path%3E%3C/svg%3E") no-repeat 13px center;
	background-color: #f9f9f9;
	font-size: 0.8em;
}

#search-mailbox:focus {
	outline: 0;
	box-shadow: 0 0 0 0.25rem #0d6efd40;
}

#unread-message-count::before {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: var(--fa-display, inline-block);
	font-style: normal;
	font-variant: normal;
	line-height: 1;
	text-rendering: auto;
	box-sizing: border-box;
	content: "\f111";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	color: #888;
	font-size: 0.3em;
	padding-right: 10px;
}

.message {
	cursor: pointer;
}

.message .mailbox-message-selected {
	background-color: #11A9A9;
	width: 3px !important;
	height: 100% !important;
	position: absolute;
	top: 50%;
	left: 0px;
	transform: translateY(-50%);
	display: none;
	z-index: 4;
}

.message-list {
	outline: none;
}

.message.active .mailbox-message-selected {
	display: block;
}

.message.active {
	background-color: #f9f9f9;
}

.message-subject {
	font-size: 1.1em;
	font-weight: bold;
}

.from-avatar-container {
	max-width: 40px;
}

#message-envelope-from-avatar {
	border-radius: 50%;
	width: 40px;
	height: 40px;
}

.message-datetime-container {
	margin-left: auto;
	width: 275px;
	text-align: right;
}

.toolbar-font {
	font-size: 0.8em;
}

.message-header {
	background-color: #FFFFFF;
	position: sticky;
	top: 0px;
	left: 0px;
}

.mail-toolbar-button {
	cursor: pointer;
}

.message-envelope-from-name {
	color: #000;
	font-size: 0.9em;
	font-weight: bold;
}

.envelope-label {
	color: #aeaeae;
	font-size: 0.75em;
	min-width: 45px;
	display: inline-block;
}

.envelope-value {
	color: #000;
	font-size: 0.75em;
}

#message-datetime {
	color: #000;
	font-size: 0.75em;
}

.additional-envelope-controller-icon {
	border-radius: 50%;
	background-color: #f0f0f0;
	width: 24px;
	height: 24px;
}

.additional-envelope-controller-icon:active {
	background-color: #15aeae;
	-webkit-transition: background-color 1000ms linear;
	-ms-transition: background-color 1000ms linear;
	transition: background-color 1000ms linear;
}

.mail-toolbar-button {
	border-radius: 5px;
	padding: 2px 8px;
	border: solid transparent 1px;
}

.mail-toolbar-button:hover {
	border: solid #888 1px;
}

.mail-toolbar-button:active {
	background-color: #888;
	-webkit-transition: background-color 1000ms linear;
	-ms-transition: background-color 1000ms linear;
	transition: background-color 1000ms linear;
}

.write-message {
	min-height: calc(100vh - 4px);
	max-height: calc(100vh - 4px);
}

.recipient-address {
	background-color: #D9F1F6;
	border-radius: 1em;
	padding: 2px 2px 2px 10px;
	font-size: 0.8em;
}

.write-message-recipients-input {
	border: none;
	font-size: 0.8em;
	outline: none;
	background-color: transparent;
}

.write-message-recipients {
	background-color: #F9F9F9;
}

.write-message-recipients-cc-toggler {
	border: none;
	font-size: 0.8em;
	outline: none;
	background-color: transparent;
}

.write-message-recipients-cc-toggler:focus {
	border: solid #15aeae 1px;
}

.write-message-recipients-cc-toggler:active {
	background-color: #15aeae;
	-webkit-transition: background-color 1000ms linear;
	-ms-transition: background-color 1000ms linear;
	transition: background-color 1000ms linear;
}

.write-message-subject-inner-container {
	background-color: #F9F9F9;
}

.write-message-subject {
	outline: none;
	font-size: 0.8em;
	display: inline-block;
	min-height: 0.8em;
	width: 100%;
	border: none;
	background-color: transparent;
	resize: none;
}

.message-action-button {
	border: none;
	font-size: 0.8em;
	color: #FFFFFF;
	border-radius: 5px;
	margin: 0px 0.25em;
	padding: 0.5em 1em;
}

.note-editor .dropdown-toggle::after {
	all: unset;
}

.note-editor .note-dropdown-menu {
	box-sizing: content-box;
}

.note-editor .note-modal-footer {
	box-sizing: content-box;
}

.note-editor .note-editable p {
	margin-bottom: 0 !important;
}

.email-autocomplete-list.disabled {
	font-style: italic;
	pointer-events: none;
}

.email-autocomplete-list {
	font-size: 0.8em;
	padding: 3px 10px;
}

/* 
.email-autocomplete-list:hover {
	background-color: #11A9A9;
} */

.email-autocomplete-list.disabled:hover {
	background-color: #FF4E4E;
}

.write-message-recipients-to-items,
.write-message-recipients-cc-items,
.write-message-recipients-bcc-items {
	cursor: text;
}

.message-attachment-details {
	max-width: 110px;
	font-size: 0.8em;
}

.message-attachment {
	border: solid gray 1px;
	border-radius: 25px;
	cursor: pointer;
}

.message-attachment-icon-container {
	width: 2.5em;
	height: 2.5em;
	background-color: #F0F0F0;
	border-radius: 18px;
	position: relative;
}

.message-attachment-icon {
	width: 1.5em;
	height: 1.5em;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.recipient-address-remove {
	cursor: pointer;
}

.alerts-container {
	top: 10px;
	right: 10px;
	list-style: none;
	z-index: 99;
}

.alert-li-info {
	background-color: #bfecf5;
}

.alert-li-warn {
	background-color: #f3edd8;
}

.alert-li-pass {
	background-color: #aaf1ad;
}

.alert-li-fail {
	background-color: #fac4bb;
}

.alert-message-type {
	width: 20px;
	height: 20px;
}

.alert-message-action-loader,
.alert-message-action-closer {
	width: 20px;
	height: 20px;
}

.alert-message-container {
	border-radius: 10px;
	padding: 5px;
	width: 20vw !important;
}

.alert-message-content-container {
	line-height: 0.9em;
}

.alert-message-content {
	font-size: 0.8em;
}

.message-content hr {
	position: relative;
	z-index: -1;
}

.autocomplete-list-p {
	font-size: 1em;
	margin: 0px;
	background-color: transparent !important;
	border: none !important;
	padding-top: 0px !important;
}

.email-autocomplete-list.focused {
	background-color: #11A9A9;
	color: #FFFFFF;
}

.message-attachments-download-all {
	font-size: 0.8em;
	background-color: transparent;
	border: none;
	color: #000;
	text-decoration: underline;
}