.hide {
	display: none !important;
}

.app-modal-editor {
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	z-index: 50;
	visibility: hidden;
	opacity: 0;
	height: 0px;
	overflow: hidden;
	transition: opacity 0.7s ease-in-out, visibility 0.7s ease-in-out;
}

.app-modal-editor.show {
	visibility: visible;
	opacity: 1;
	height: auto;
}

.app-form.domains .form-group.content textarea#content {
	min-height: 585px;
}

.app-form.domains .card-body.no-html .form-group:not(.content),
.app-form.domains .card-body.no-html .form-group.content .form-label {
	display: none;
}

.app-form.domains .card-body.no-html .form-group.content {
	margin-top: 0px;
}

.tox-fullscreen .tab-pane,
.tox-fullscreen .app-main {
	transform: none;
	z-index: 1100;
	position: relative;
}

.tox-fullscreen .app-main .app-main__outer {
	z-index: 50;
}

.tox-fullscreen .app-file-list {
	display: none;
}

.login-page {
	margin: -1.5rem;
}

.dropdown-menu-header .widget-content {
	padding: 0px;
}

.card-header > .nav {
	margin: 0px;
}

.tabs-animated .nav-item {
	margin: 0px;
}

.form-group {
	margin-top: calc(0.5 * var(--bs-gutter-x));
}

.form-group:first-child {
	margin-top: 0px;
}

.form-group > .form-label {
	display: flex;
	align-items: center;
	justify-content: end;
	font-weight: bold;
	margin: 0px;
}

.error-details:before {
	color: #d82451;
	border-radius: 50%;
	font-weight: bold;
	font-size: 20px;
	vertical-align: top;
	position: relative;
	top: -2px;
}

.error-details > span {
	position: absolute;
	left: 50%;
	bottom: 25px;
	background: #444054;
	color: white;
	padding: 5px;
	font-family: sans-serif;
	border-radius: 10px;
	font-weight: bold;
	width: 220px;
	margin: 0px 0px 0px -110px;
	transition: opacity 0.3s, visibility 0.3s ease;
	opacity: 0;
	visibility: hidden;
}

.error-details {
	position: relative;
	cursor: pointer;
}

.error-details:hover > span {
	opacity: 1;
	visibility: visible;
}

.app-form {
	position: relative;
}

.app-form.proccess:before {
	content: "";
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background: url(../../images/loader.svg) no-repeat center / 210px 210px #ffffff66;
	z-index: 25;
	border-radius: 10px;
	animation: f-blink 1s 0s ease infinite;
}

@keyframes f-blink {
	0% {
		background: url(../../images/loader.svg) no-repeat center / 210px 210px rgb(255 255 255 / 40%);
	}
	50% {
		background: url(../../images/loader.svg) no-repeat center / 210px 210px rgb(255 255 255 / 70%);
	}
	100% {
		background: url(../../images/loader.svg) no-repeat center / 210px 210px rgb(255 255 255 / 40%);
	}
}

@media (max-width: 767.98px) {
	.form-group > .form-label {
		justify-content: flex-start;
	}
}