.selectus {
	position: relative;
	font-size: 14px;
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1;
	z-index: 5;
	cursor: pointer;
	color: #434343;
	background-color: #dfdfdf;
	border: solid 1px #434343;
	border-radius: 2px;
	display: inline-block;
	max-width: 100%;
	transition: background-color 0.2s;
}

.selectus:not(.multiple) {
	padding-right: 20px;
}

.selectus:hover {
	background-color: #e6e6e6;
}

.selectus .arrow {
	display: block;
	width: 0;
	height: 0;
	border-left: solid 5px transparent;
	border-right: solid 5px transparent;
	border-top: solid 5px #434343;
	position: absolute;
	right: 5px;
	top: 50%;
	transform: translateY(-50%);
}

.selectus:not(.multiple) .options:not(.autowidth) {
	position: absolute;
	left: -1px;
	right: -1px;
	top: 100%;
	display: none;
	background-color: inherit;
	max-height: 200px;
	overflow-y: auto;
	overflow-x: hidden;
	border-style: solid;
	border-width: 0 1px 1px 1px;
	border-color: #434343;
	border-radius: 0 0 1px 1px;
}

.selectus:not(.multiple) .options.autowidth {
	position: absolute;
	left: auto;
	right: -1px;
	top: 100%;
	display: none;
	background-color: inherit;
	max-height: 200px;
	overflow-y: auto;
	overflow-x: hidden;
	border-style: solid;
	border-width: 1px;
	border-color: #434343;
	border-radius: 1px 0 1px 1px;
}

.selectus.multiple .options {
	position: relative;
	display: block;
	background-color: inherit;
	overflow-x: hidden;
	overflow-y: auto;
}

.selectus .selected-option {
	overflow-x: hidden;
}

.selectus .selected-option,
.selectus .options .option {
	min-height: 1em;
	font-family: inherit;
	padding: 0.2em;
}

.selectus .options .option {
	color: #787878;
	transition: background-color 0.2s, color 0.2s;
}

.selectus .options .optgroup {
	padding-left: 0.3em;
	padding-right: 0.3em;
}

.selectus .options .optgroup .optgroup-label {
	font-weight: 700;
	padding-top: 0.3em;
	padding-bottom: 0.3em;
	cursor: auto;
}

.selectus.multiple .options .option {
	padding-left: 0.3em;
	padding-right: 0.3em;
}

.selectus .options .option:hover {
	background-color: #434343;
	color: #dfdfdf;
}

.selectus:not(.multiple) .options .option.selected {
	color: #434343;
	background-color: #ffffff;
}

.selectus.multiple .options .option.selected {
	background-color: #434343;
	color: #dfdfdf;
}

.selectus .options .option .swatch,
.selectus .selected-option .swatch {
	display: inline-block;
	vertical-align: middle;
	width: 0.8em;
	height: 0.8em;
	border-radius: 50%;
	margin-right: 0.2em;
}* {
	outline: none;
}

body {
	margin: 0;
	padding: 0;
	font-family: 'Poppins', sans-serif;
	color: #212121;
	font-size: 1.1em;
	background-color: #ffffff;
}

.preload {
	display: none;
}

input[type="text"],
input[type="email"],
input[type="password"] {
	font-family: 'Poppins', sans-serif;
	line-height: 1;
	color: #424B5F;
	padding: 4px;
	border: solid 1px #424B5F;
	border-radius: 2px;
	box-sizing: border-box;
	width: 100%;
	transition: color 0.2s, border 0.2s, box-shadow 0.2s;
	font-size: inherit;
	outline: none;
}

input[type="text"]:hover,
input[type="email"]:hover,
input[type="password"]:hover,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
	color: #050B1B;
	border-color: #050B1B;
	box-shadow: 0 0 4px #050B1B;
}

input[type="text"],
input[type="email"],
input[type="password"] {
	/*text-input-style*/
}

input[type="text"]:hover,
input[type="email"]:hover,
input[type="password"]:hover,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
	/*text-input-hover-style*/
}

input[type="text"]:read-only {
	background-color: #d1d1d1 !important;
}

input[type="submit"] {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	line-height: 1;
	border-radius: 2px;
	border: 0;
	padding: 6px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	background-color: #004B5E;
	color: #ffffff;
	cursor: pointer;
	transition: background-color 0.2s, box-shadow 0.2s, opacity 0.2s;
	font-size: inherit;
}

input[type="submit"]:not(:disabled):hover {
	background-color: #49A1B3;
	box-shadow: 0 0 10px #49A1B3;
}

input[type="submit"]:disabled {
	opacity: 0.6;
	cursor: no-drop;
}

input[type="submit"].smaller {
	font-size: 0.8em;
}

textarea {
	font-family: 'Poppins', sans-serif;
	line-height: 1.3;
	color: #424B5F;
	padding: 4px;
	border: solid 1px #424B5F;
	border-radius: 2px;
	box-sizing: border-box;
	width: 100%;
	transition: color 0.2s, border 0.2s, box-shadow 0.2s;
	font-size: inherit;
	resize: none;
	outline: none;
	min-height: 15vh;
}

textarea:hover {
	color: #050B1B;
	border-color: #050B1B;
	box-shadow: 0 0 4px #050B1B;
}

textarea {
	/*text-input-style*/
}

textarea:hover,
textarea:focus {
	/*text-input-hover-style*/
}

select {
	display: inline-block;
	flex: 1;
	font-size: 16px;
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	color: #334455;
	line-height: 1.3;
	padding: .2em 1.6em .2em .2em;
	width: auto;
	max-width: 100%;
	box-sizing: border-box;
	margin: 0;
	border: 2px solid #ababab;
	box-shadow: 0 1px 0 1px rgba(0,0,0,.04);
	border-radius: 2px;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: #dfdfdf;
	background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23004B5E%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
	background-repeat: no-repeat, repeat;
	background-position: right .7em top 50%, 0 0;
	background-size: .65em auto, 100%;
	cursor: pointer;
	transition: color 0.2s, background 0.2s;
}

select[multiple="multiple"] {
	background-image: none;
}

select:hover,
select:focus {
	color: #203040;
	background-color: #ffffff;
}

select:disabled {
	cursor: no-drop;
	opacity: 0.5;
}

select option {
	font-weight:normal;
}

a {
	color: #004B5E;
	text-decoration: none;
}
/*
a:not(.nodefault):not(.ui-state-default):hover {
	border-bottom: solid 0.2em #004B5E;
}
*/

a.std:hover {
	border-bottom: solid 0.2em #004B5E;
}

label:not(.fancy-checker) {
	display: block;
	margin-bottom: 0.3em;
}

.row {
	margin-bottom: 1.2em;
}

.bold {
	font-weight: 700;
}

.underline {
	text-decoration: underline;
}

.thin {
	font-weight: 300;
}

.italic {
	font-style: italic;
}

.bigger {
	font-size: 120%;
}

.mono {
	font-family: monospace;
}

.center {
	text-align: center;
}

.red {
	color: #ff0000;
}

.fancy-checker {
	cursor: pointer;
	position: relative;
	padding-left: 1.5em;
	user-select: none;
}

.fancy-checker input {
	display: none;
}

.fancy-checker .check {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1em;
	height: 1em;
	display: block;
	border: solid 1px currentColor;
	border-radius: 50%;
	box-sizing: border-box;
	transition: background-color 0.2s, box-shadow 0.2s;
}


.fancy-checker:hover input ~ .check {
	box-shadow: 0 0 4px currentColor;
}

.check::after {
	content: '';
	position: absolute;
	display: none;
}

.fancy-checker:not(.checkmark) input:checked ~ .check::after {
	display: block;
}

.fancy-checker:not(.checkmark) .check::after {
	position: absolute;
	border-radius: 50%;
	background-color: currentColor;
	top: 1px;
	left: 1px;
	right: 1px;
	bottom: 1px;
}

.fancy-checker.checkmark .check svg {
	position: absolute;
	width: 180%;
	height: auto;
	top: 50%;
	left: 50%;
	transform: translate(-37%, -70%);
	fill: rgb(13, 143, 86);
	stroke: #212121;
	stroke-width: 2px;
}

.fancy-checker.disabled {
	opacity: 0.8;
	cursor: no-drop;
}

.fancy-checker.checkmark input:not(:checked) ~ .check svg,
.fancy-checker.checkmark.disabled .check svg {
	display: none;
}

.smaller {
	font-size: 80%;
}

.progress-holder {
	height: 0.5em;
	position: relative;
	border-radius: 0.25em;
	overflow: hidden;
	display: none;
}

.progress-holder .progress {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 0;
	background-color: #49A1B3;
	border-radius: 0.25em;
}

.error {
	background-color: #DF6567;
	padding: 1.2em;
	border-radius: 2px;
	margin-bottom: 1.2em;
	font-weight: 700;
	display: none;
}

.shade {
	background-color: #212121;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999;
	opacity: 0.8;
	display: none;
}

.viewer {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: none;
}

.viewer .viewer-content {
	position: absolute;
	top: 5vmin;
	left: 5vmin;
	right: 5vmin;
	bottom: 5vmin;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.viewer .viewer-close-button {
	display: block;
	height: 1em;
	width: 1em;
	position: absolute;
	top: 1em;
	right: 1em;
	border: solid 1px #ffffff;
	background-color: #ffffff;
	background-image: url('/images/btn-close.png');
	background-size: cover;
	background-position: center;
	border-radius: 50%;
	transition: transform 0.2s;
}

.viewer .viewer-close-button:hover {
	transform: scale(1.4);
}

.backdrop {
	position: fixed;
	z-index: 0;
	font-size: 25vh;
	font-weight: 700;
	bottom: 1vmin;
	left: 1vmin;
	line-height: 1;
	color: #cfcfcf;
}

.backdrop.logged-in {
	font-size: 8vh;
}

.backdrop .branding {
	width: 90%;
	padding-bottom: 12%;
	background-image: url('/images/logo-cdca-wreb-cita.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	margin-left: auto;
	margin-right: auto;
	filter: saturate(0%) contrast(35%) brightness(1.4);
}

.backdrop .branding {
	/*backdrop-branding-filter*/
}

.general-error {
	position: fixed;
	padding: 2em;
	font-size: 120%;
	font-weight: 700;
	background-color: #DF6567;
	border: solid 2px #ff0000;
	border-radius: 2px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

.login,
.forgot,
.forgot-success,
.reset,
.reset-success {
	position: fixed;
	z-index: 10;
	width: 30vmax;
	min-width: 200px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

.forgot,
.forgot-success,
.reset-success {
	display: none;
}

.login input[type="text"],
.login input[type="password"],
.forgot input[type="text"],
.reset input[type="password"] {
	text-align: center;
}

.login .login-error,
.forgot .forgot-error,
.reset .reset-error {
	background-color: #DF6567;
	padding: 1.2em;
	border-radius: 2px;
	margin-bottom: 1.2em;
	font-weight: 700;
	display: none;
}

.selectus {
	font-size: 1em;
	font-family: 'Poppins', sans-serif;
}

.login .forgot-password-button-holder {
	margin-top: 1em;
	font-size: 80%;
}

.reset .reset-name {
	font-weight: bold;
	margin-bottom: 1em;
	font-size: 3vmax;
}

.reset-success {
	font-size: 2vmax;
	font-weight: 700;
}

.logged {
	position: fixed;
	padding: 1em;
	font-size: 0.8em;
	border-style: solid;
	border-color: #cfcfcf;
	border-width: 1px 0 0 1px;
	border-radius: 5px 0 0 0;
	box-shadow: 0 0 10px #cfcfcf;
	bottom: 0;
	right: 0;
	z-index: 1000000;
	background-color: #ffffff;
}

.logged .logged-item {
	display: inline-block;
	vertical-align: middle;
}

.logged .logged-item .fa-envelope {
	transition: opacity 0.2s;
}

.logged .logged-item .fa-envelope:hover {
	opacity: 0.6;
}

.loading-holder {
	position: fixed;
	background-color: #ffffff;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	opacity: 0.5;
	display: none;
}

.loading,
.loading:after {
	border-radius: 50%;
	width: 50vmin;
	height: 50vmin;
}
.loading {
	font-size: 10px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -25vmin;
	margin-top: -25vmin;
	text-indent: -9999em;
	border-top: 1.1em solid rgba(0, 0, 0, 0.8);
	border-right: 1.1em solid rgba(0, 0, 0, 0.8);
	border-bottom: 1.1em solid rgba(0, 0, 0, 0.8);
	border-left: 1.1em solid #ffffff;
	transform: translateZ(0);
	-webkit-animation: load8 1.1s infinite linear;
	animation: load8 1.1s infinite linear;
}
@-webkit-keyframes load8 {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes load8 {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.internal-error {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10000000;
	background-color: rgba(255, 140, 140, 0.3);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.internal-error .internal-error-text {
	padding: 1em;
	border-radius: 0.2em;
	background-color: #ffffff;
	max-height: 80%;
	max-width: 60%;
	overflow: auto;
	text-align: center;
}

.internal-error .internal-error-text .details .internal-error-details-loading {
	display: block;
	height: 2em;
	width: 2em;
	border-radius: 50%;
	margin-left: auto;
	margin-right: auto;
	border-top: solid 2px rgba(0, 0, 0, 0.4);
	border-left: solid 2px rgba(0, 0, 0, 0.4);
	border-right: solid 2px rgba(0, 0, 0, 0.4);
	border-bottom: solid 2px transparent;
	animation: load8 1.1s infinite linear;
}

.internal-error .internal-error-text .details.loaded {
	background-color: #f4f4f4;
	padding: 1em;
	font-family: monospace;
	font-size: 0.9em;
	border: solid 2px #212121;
}

.internal-error .internal-error-text .internal-error-buttons .internal-error-reload-button,
.internal-error .internal-error-text .internal-error-buttons .internal-error-dismiss-button {
	color: #434387;
	border-radius: 2px;
	transition: color 0.2s, background 0.2s;
}

.internal-error .internal-error-text .internal-error-buttons {
	display: flex;
	align-items: center;
	gap: 1.5em;
	justify-content: center;
}

.internal-error .internal-error-text .internal-error-buttons .internal-error-reload-button:hover,
.internal-error .internal-error-text .internal-error-buttons .internal-error-dismiss-button:hover {
	color: #ffffff;
	background-color: #434387;
}

.settings-holder {
	position: fixed;
	background-color: #ffffff;
	border-radius: 2px;
	z-index: 1000;
	top: 50%;
	left: 50%;
	width: 50vw;
	padding: 1em;
	transform: translate(-50%, -50%);
	display: none;
}

.superadmin-settings-holder {
	position: fixed;
	top: 0;
	left: 20vw;
	bottom: 0;
	right: 20vw;
	background-color: #ffffff;
	padding: 1em;
	z-index: 999999;
	display: none;
}

.superadmin-settings-shade {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #212121;
	z-index: 999998;
	display: none;
}

.settings-holder .topbar,
.superadmin-settings-holder .topbar {
	position: relative;
	margin-bottom: 1em;
}

.settings-holder .topbar .title,
.superadmin-settings-holder .topbar .title {
	font-size: 2em;
	font-weight: bold;
}

.settings-holder .topbar .settings-save-button,
.superadmin-settings-holder .topbar .superadmin-settings-save-button {
	position: absolute;
	top: 0;
	right: 0;
}

.settings-holder .settings-progress-holder,
.superadmin-settings-holder .superadmin-settings-progress-holder {
	position: absolute;
	bottom: 1em;
	left: 1em;
	right: 1em;
}

.superadmin-settings-holder .content {
	position: absolute;
	top: 5em;
	bottom: 3em;
	left: 1em;
	right: 1em;
	overflow-y: auto;
}

.superadmin-settings-holder .content .fancy-checker {
	margin-left: 4px;
}

.superadmin-settings-button {
	position: fixed;
	z-index: 1;
	top: 1vmin;
	right: 1vmin;
	display: block;
	height: 2em;
	width: 2em;
	background-size: cover;
	background-position: center;
	background-image: url('/images/btn-settings.png');
	background-repeat: no-repeat;
	transition: transform 0.2s;
	/*superadmin-settings-button-filter*/
}

.superadmin-settings-button:hover {
	border-bottom: 0;
	transform: scale(1.4);
}

.superadmin-desktop-button,
.admin-desktop-button {
	position: fixed;
	z-index: 1;
	right: 1vmin;
	display: block;
	height: 2em;
	width: 2em;
	background-size: cover;
	background-position: center;
	background-image: url('/images/btn-desktop.png');
	background-repeat: no-repeat;
	transition: transform 0.2s;
	/*superadmin-settings-button-filter*/
}

.settings-button,
.logout-button,
.mr-link {
	transition: color 0.2s, background 0.2s;
}

.settings-button:hover,
.logout-button:hover,
.mr-link:hover {
	color: #ffffff;
	background-color: #004B5E;
}

.superadmin-desktop-button {
	top: calc(2vmin + 2em);
}

.admin-desktop-button {
	top: 1vmin;
}

.superadmin-desktop-button:not(.disabled):hover,
.admin-desktop-button:not(.disabled):hover {
	border-bottom: 0;
	transform: scale(1.4);
}

.superadmin-desktop-button.disabled,
.admin-desktop-button.disabled {
	cursor: no-drop;
	opacity: 0.6;
}

.superadmin-desktop-button.disabled:hover,
.admin-desktop-button.disabled:hover {
	border-bottom: 0;
}

.base:not(.positioning) {
	text-align: center;
	width: 70vw;
	margin: 0 auto;
}

.base.positioning {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.base:not(.positioning) .button-container {
	display: inline-block;
	position: relative;
	margin: 1.5vw;
}

.base.positioning .button-container {
	display: block;
	position: absolute;
	margin: 0;
}

.base .button-container .base-button {
	display: block;
	position: relative;
	width: 10vw;
	height: 10vw;
	border-radius: 50%;
	transition: transform 0.2s;
	z-index: 10;
}

.base .button-container .base-button .image {
	position: absolute;
	display: block;
	width: 60%;
	padding-bottom: 60%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.base .button-container .base-button .title {
	position: absolute;
	display: block;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 120%);
	color: #feffff;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 0.9vw;
	text-align: center;
	white-space: nowrap;
}
.base .button-container .base-button {
	/*nightmode-filter*/
}

.base .button-container .base-button:hover {
	border-bottom: 0;
}

.base .button-container .base-button:not(.noclick):hover {
	transform: scale(1.3);
}

.base .button-container.clicked {
	z-index: 50;
}

.base .button-container.clicked .base-button {
	transform: scale(1.3);
}

.base .button-container .base-button-shade,
.logged .logged-item .logged-menu-shade {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ffffff;
	opacity: 0.7;
	z-index: 9;
	display: none;
}

.base .button-container .menu,
.logged .logged-item .menu,
.base-button-menu {
	position: fixed;
	z-index: 50;
	white-space: nowrap;
	text-align: left;
	background-color: #ffffff;
	border-radius: 2px;
	display: none;
	border: solid 1px #dfdfdf;
	box-shadow: 0 0 10px #dfdfdf;
}

.base .button-container .menu .item,
.logged .logged-item .menu .item,
.base-button-menu .item {
	display: block;
	position: relative;
	line-height: 1;
	padding: 6px;
	color: #434343;
	z-index: 1;
	font-size: 1.4vw;
}

.base .button-container .menu .item:hover,
.logged .logged-item .menu .item:hover,
.base-button-menu .item:hover {
	color: #ffffff;
	background-color: #434343;
	border-bottom: 0;
	z-index: 2;
	box-shadow: 0 0 4px #434343;
}

.headshake {
	animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
	transform: translate3d(0, 0, 0);
	backface-visibility: hidden;
	perspective: 1000px;
}

@keyframes shake {
	10%, 90% {
		transform: translate3d(-1px, 0, 0);
	}

	20%, 80% {
		transform: translate3d(2px, 0, 0);
	}

	30%, 50%, 70% {
		transform: translate3d(-4px, 0, 0);
	}

	40%, 60% {
		transform: translate3d(4px, 0, 0);
	}
}

.notify-holder {
	position: absolute;
	width: 2.5em;
	height: 2.5em;
	background-color: #004B5E;
	color: #ffffff;
	left: -1.25em;
	top: -1.25em;
	border-radius: 50%;
	cursor: pointer;
	transition: transform 0.2s, box-shadow 0.2s;
}

.notify-holder:after {
	content: attr(count);
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.notify-holder:hover {
	transform: scale(1.4);
	box-shadow: 0 0 10px #004B5E;
}

.notify-holder[count="0"] {
	display: none;	
}

.notify-list-holder {
	position: absolute;
	right: 0;
	width: 24em;
	max-width: 100%;
	box-sizing: border-box;
	bottom: 110%;
	display: none;
	padding: 1em;
	border: solid 1px #cfcfcf;
	border-radius: 5px;
	background-color: #ffffff;
	max-height: 50vh;
	overflow: auto;
}

.notify-loading-holder {
	position: relative;
	margin: 0 auto 2em;
	display: none;
	width: 5em;
	height: 5em;
}

.notify-loading-holder .notify-loading,
.notify-loading-holder .notify-loading:after {
	border-radius: 50%;
	width: 100%;
	height: 100%;
}

.notify-loading-holder .notify-loading {
	position: relative;
	border-top: 0.6em solid rgba(0, 0, 0, 0.8);
	border-right: 0.6em solid rgba(0, 0, 0, 0.8);
	border-bottom: 0.6em solid rgba(0, 0, 0, 0.8);
	border-left: 0.6em solid #ffffff;
	transform: translateZ(0);
	-webkit-animation: load8 1.1s infinite linear;
	animation: load8 1.1s infinite linear;
}

.notify-list-holder .notifications-clear-all-button-holder {
	text-align: right;
	font-size: 0.8em;
	margin-bottom: 1em;
}

.notify-list-holder .notifications-clear-all-button-holder .notifications-clear-all-button,
.notify-list-holder .notifications-clear-all-button-holder .notifications-clear-formatted-button {
	transition: color 0.2s, background 0.2s;
}

.notify-list-holder .notifications-clear-all-button-holder .notifications-clear-all-button:hover,
.notify-list-holder .notifications-clear-all-button-holder .notifications-clear-formatted-button:hover {
	color: #ffffff;
	background-color: #004B5E;
}

.notify-list-holder .notification {
	font-size: 1em;
	margin-bottom: 1em;
	padding-bottom: 1em;
	border-bottom: solid 1px #cfcfcf;
	position: relative;
}

.notify-list-holder .notification:last-child {
	border-bottom: 0;
	padding-bottom: 0;
	margin-bottom: 0;
}

.notify-list-holder .notification .notification-delete-button {
	position: absolute;
	display: block;
	height: 16px;
	width: 16px;
	top: 0;
	right: 0;
	background-color: #212121;
	border-radius: 50%;
	opacity: 0;
	/*nightmode-filter*/
	transition: opacity 0.2s, transform 0.2s;
}

.notify-list-holder .notification .notification-delete-button:before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	background-color: #ffffff;
	width: 2px;
	height: 9px;
	transform: translate(-50%, -50%) rotate(-45deg);
}

.notify-list-holder .notification .notification-delete-button:after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	background-color: #ffffff;
	width: 2px;
	height: 9px;
	transform: translate(-50%, -50%) rotate(45deg);
}

.notify-list-holder .notification:hover .notification-delete-button {
	opacity: 1;
}

.notify-list-holder .notification .notification-delete-button:hover {
	transform: scale(1.3);
	border-bottom: 0;
}

.notify-list-holder .notification .date {
	margin-bottom: 0.4em;
	color: #666666;
}

.notify-list-holder .notification .bold {
	font-weight: 700;
}

.notify-list-holder .notification .profile-image {
	display: block;
	width: 50%;
	padding-bottom: 50%;
	margin: 0.3em auto 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.notify-list-holder .notification .fields .field {
	font-size: 85%;
	margin-top: 0.5em;
}

.notify-list-holder .notification .fields .field .notification-swatch {
	display: inline-block;
	vertical-align: middle;
	height: 1.5em;
	width: 1.5em;
	border-radius: 50%;
}

.notify-list-holder .notification .fields .field .notification-image-old {
	max-height: 3em;
	max-width: 5em;
	display: inline-block;
	vertical-align: middle;
}

.notify-list-holder .notification .notification-image-new{
	width: 60%;
	display: block;
	margin: 0.5em auto 0 auto;
}

.notify-list-holder .notification .candidate-results {
	font-size: 0.8em;
	padding-left: 1em;
	display: flex;
	flex-direction: column;
	gap: 0.5em;
}

.json-input {
	display: none;
}