.admin-bar {
	display: flex;
	gap: 15px;
	background-color: #338b33;
	text-align: center;
	justify-content: center;
	color: white;
	padding: 3px 15px;
	align-items: center;
}
.admin-bar p {
	margin-bottom: 0px;
	color: white;
	font-size: 14px;
}
.admin-bar .link {
	color: white;
	background-color: rgba(0, 0, 0, 0.1);
	padding: 1px 10px;
	border: 1px solid transparent;
	display: inline-block;
	font-size: 14px;
}
.admin-bar .link:hover {
	border-color: rgba(255, 255, 255, 0.5);
}
.admin-bar .link.logout {
	justify-self: flex-end;
	margin-left: auto;
	background-color: rgba(54, 9, 9, 0.5);
}

.admin-bar .link.logout:hover {
	background-color: rgba(137, 24, 24, 0.8);
}

@media screen and (max-width: 991px) {
	.admin-bar {
		padding-top: 10px;
		flex-wrap: wrap;
		gap: 10px;
		padding-bottom: 10px;
	}
}

body:has(.admin-bar) .header-area.style-1 .header-menu-area.sticky_menu {
	margin-top: 0px !important;
}

.quick-action {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 50px;
	z-index: 999999999;
}

.quick-action .sub-actions {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 70px;
	height: 50px;
	position: fixed;
	bottom: 0;
	left: 0;
}

.quick-action .background img {
	width: auto;
	max-width: none;
}
.quick-action .background {
	display: -webkit-box;
	display: flex;
	justify-content: center;
	overflow: hidden !important;
}
.quick-action .main-action {
	position: fixed;
	bottom: 17px;
	left: 50%;
	-webkit-transform: translate(-50%);
	transform: translate(-50%);
	z-index: 1;
}

.quick-action .sub-actions a i {
	width: 35px;
	height: 35px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	background-color: #292929;
	line-height: 1;
	font-size: 16px;
	color: white;
}

.quick-action .sub-actions a {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #292929;
}

.quick-action .main-action a {
	background: #1e9331;
	width: 67px;
	height: 67px;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	border-radius: 100px;
	display: -webkit-box;
	display: flex;
	color: white;

	font-size: 25px;
	line-height: 1;

	box-shadow: 0 0 0 0 rgba(93, 215, 70, 1);
	transform: scale(1);
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(93, 215, 70, 0.7);
		transform: scale(0.95);
	}

	70% {
		transform: scale(1);
		box-shadow: 0 0 0 10px rgba(93, 215, 70, 0);
	}

	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(93, 215, 70, 0);
	}
}

@media screen and (min-width: 769px) {
	.quick-action {
		display: none;
		visibility: hidden;
		height: 0px;
		width: 0px;
		opacity: 0px;
		border: none;
		pointer-events: none;
	}
}

form .response-message p {
	margin-top: 15px !important;
	width: 100% !important;
	padding: 10px 15px;
	border-radius: 15px;
}

form .response-message p.success {
	color: #289d47;
	background-color: #ecfff1;
	border: 1px solid #289d47;
}

form .response-message p.error {
	color: #9d2828;
	background-color: #fff6f6;
	border: 1px solid #9d2828;
}

.editor-content {
	display: flex;
	flex-direction: column;
	gap: 25px;
	margin-bottom: 30px;
	margin-top: 30px;
}

.editor-content .editor-block * {
	margin-top: 0px !important;
	margin-bottom: 15px;
}
.editor-content .editor-block *:last-of-type {
	margin-bottom: 0px;
}

.editor-content .editor-block .embed-link a {
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 15px;
	padding: 15px;
	display: flex;
	width: 100%;
	color: #292929;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
}

.editor-content .editor-block .embed-link a * {
	margin: 0px;
}

.editor-content .editor-block .embed-link a:hover {
	background-color: #f2fcff;
}

.editor-content .editor-block .embed-link a p.title {
	font-weight: bold;
	font-size: 20px;
	line-height: 1.4;
	margin-bottom: 10px;
}

.editor-content .editor-block .embed-link a p.descripiton {
	opacity: 0.95;
	font-size: 16px;
	line-height: 1.2;
	margin-bottom: 0px;
}
.editor-content .editor-block .embed-link .info {
	flex: 1;
}
.editor-content .editor-block .embed-link img {
	width: 100%;
	height: auto;
	border-radius: 10px;
	max-width: 260px;
}

.editor-block table {
	width: 100%;
}

.editor-block table {
	border-spacing: 0 0.85rem !important;
	border-collapse: separate !important;
}

.table td,
.table th {
	vertical-align: middle;
	margin-bottom: 10px;
	border: none;
}

.table thead tr,
.table thead th {
	border: none;
	font-size: 12px;
	letter-spacing: 1px;
	text-transform: uppercase;
	background: transparent;
}

.table td {
	background: #f3f3f3;
}

.table td:first-child {
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
}

.table td:last-child {
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
}

table > tbody > tr[role="row"] > td:first-child:before,
table > tbody > tr[role="row"] > th:first-child:before {
	top: 28px;
	left: 14px;
	border: none;
	box-shadow: none;
}

table > tbody > tr ul {
	width: 100%;
}

table > tbody > tr span {
	min-width: 50%;
}

table > tbody > tr > td,
table > tbody > tr > th,
table > tbody > tr > td {
	padding: 0.75rem 1rem 0.125rem;
}

.editor-content .editor-block a,
.editor-content .editor-block p,
.editor-content .editor-block li {
	font-size: 18px;
	line-height: 1.4;
}

.editor-content .editor-block a.inline-btn {
	color: var(--theme);
}
.editor-content .editor-block a.inline-btn:hover {
	color: var(--text);
}

.editor-content .editor-block a.inline-btn img {
	height: 18px;
	width: auto;
}

.editor-block .attachement a {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 15px;
	padding: 10px;
}
.editor-block .attachement a:hover {
	background-color: #f2fcff;
}

.editor-block .attachement a .icon {
	background-color: var(--theme);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0px;
	color: var(--white);
}

.editor-block .attachement a span {
	font-size: 80%;
	opacity: 0.8;
}

.editor-block .attachement a .info {
	line-height: 1.4;
}
