/* ************************************* */
/*                                       */
/* Material icons (Default properties)   */
/*                                       */
/* ************************************* */

.material-icons {
	font-family: "Material Icons";
	font-weight: normal;
	font-style: normal;
	font-size: 24px; /* Preferred icon size */
	display: inline-block;
	line-height: 1;
	text-transform: none;
	letter-spacing: normal;
	word-wrap: normal;
	white-space: nowrap;
	direction: ltr;

	/* Support for all WebKit browsers. */
	-webkit-font-smoothing: antialiased;

	/* Support for Safari and Chrome. */
	text-rendering: optimizeLegibility;

	/* Support for Firefox. */
	-moz-osx-font-smoothing: grayscale;

	/* Support for IE. */
	font-feature-settings: "liga";
}

/* ************************************* */
/*                                       */
/* Material icons (Custom properties)    */
/*                                       */
/* ************************************* */

.material-icons {
	vertical-align: middle;
}

.md-34 {
	font-size: 34px;
}

/* ************************************* */
/*                                       */
/* Custom SVG icons                      */
/*                                       */
/* ************************************* */

.icon svg {
	fill: currentColor;
	vertical-align: middle;
	height: 24px;
	width: auto;
}

.icon--12 svg {
	height: 12px;
	width: auto;
}

.icon--14 svg {
	height: 14px;
	width: auto;
}

.icon--16 svg {
	height: 16px;
	width: auto;
}

.icon--18 svg {
	height: 18px;
	width: auto;
}

.icon--20 svg {
	height: 20px;
	width: auto;
}

.icon--21 svg {
	height: 21px;
	width: auto;
}

.icon--30 svg {
	height: 30px;
	width: auto;
}

.icon--36 svg {
	height: 36px;
	width: auto;
}

.icon--40 svg {
	height: 40px;
	width: auto;
}

.icon--50 svg {
	height: 50px;
	width: auto;
}

.icon--60 svg {
	height: 60px;
	width: auto;
}

.icon--circle svg {
	border-radius: 50%;
	width: 24px;
	height: 24px;
	background-color: var(--color-light);
	color: inherit;
}

.icon--off {
	color: var(--color-grey-medium);
}

/* ************************************* */
/*                                       */
/* VUE Custom generic classes            */
/*                                       */
/* ************************************* */

.icon--left.active--rotate180 {
	transform: rotate(180deg) translateY(50%);
}

.icon--right.rotate-180 {
	transform: translateY(-50%) rotate(180deg);
}

.icon--left {
	position: absolute;
	display: block;
	width: auto;
	height: 24px;
	top: 50%;
	left: -5px;
	transform: translateY(-50%);
	font-size: 15px;
	text-transform: unset;
	vertical-align: unset;
}

.icon--right {
	position: absolute;
	display: block;
	width: auto;
	height: 24px;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	font-size: 15px;
	text-transform: unset;
	vertical-align: unset;
}

.icon--right svg {
	vertical-align: unset;
}

.icon--right:hover {
	color: var(--color-grey-darker);
}

.icon--circle.icon--right {
	width: 24px;
}

.icon--edit,
.page__content a.icon--edit,
.icon--create,
.page__content a.icon--create,
.icon--delete,
.page__content a.icon--delete {
	border-radius: 50%;
	width: 36px;
	height: 36px;
	color: var(--color-light);
	background-color: var(--color-editor);
	box-shadow: 3px 3px 3px 0 var(--color-shadow);
	z-index: 10;
	justify-content: center;
	align-items: center;
	top: 20px;
	right: 20px;
	cursor: pointer;
	display: flex;
	padding: 0;
	position: absolute;
}

.icon--create {
	position: unset;
}

.icon--edit--currentuser {
	position: unset;
	background-color: var(--color-accent);
	margin-top: 10px;
}

.icon--delete,
.page__content a.icon--delete {
	right: 60px;
}

.list--news .icon--create {
	margin-left: 40px;
}

.icon--edit:hover,
.icon--create:hover,
.icon--delete:hover {
	opacity: 0.8;
	box-shadow: unset;
	top: 22px;
	right: 18px;
}

.icon--delete:hover,
.page__content a.icon--delete:hover {
	background-color: var(--color-warn);
	right: 58px;
}

.page__content a.icon--edit::after,
.page__content a.icon--create::after,
.page__content a.icon--delete::after,
.page__content a.icon--edit:hover::after,
.page__content a.icon--create:hover::after,
.page__content a.icon--delete:hover::after {
	content: none;
}

/* ************************************* */
/*                                       */
/* ICON animations                       */
/*                                       */
/* ************************************* */

.animation {
	display: block;
}

.animation--rotate {
	-webkit-animation: svrotate 4s linear infinite;
	animation: svrotate 4s linear infinite;
}

@-webkit-keyframes svrotate {
	from {
		-webkit-transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(360deg);
	}
}

@keyframes svrotate {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}
