main {
	display: block;
}

hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

figure {
	margin: 30px 0;
}

pre {
	font-family: inherit;
	font-size: 1em;
}

b, strong {
	font-weight: bolder;
}

code, kbd, samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

small {
	font-size: 80%;
}

sub, sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -.25em;
}

sup {
	top: -.5em;
}

fieldset {
	padding: .35em .75em .625em;
}

legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

progress {
	vertical-align: baseline;
}

textarea {
	overflow: auto;
}

details {
	display: block;
}

summary {
	display: list-item;
}

.ts-nav-menu>ul.ts-nav-vertical {
	flex-wrap: wrap;
	width: 100%;
}

.ts-nav-menu>ul.ts-nav-vertical li {
	width: 100%;
}

.ts-nav-menu>ul.ts-nav-vertical li a {
	width: 100%;
	white-space: nowrap;
}

.ts-nav-menu>ul.ts-nav-vertical .ts-item-link {
	width: 100%;
}

.ts-parent-menu {
	display: none;
	grid-column: 1/-1;
}

.burger-right {
	margin-left: auto;
}

.ts-nav-collapsed {
	transition: width .2s cubic-bezier(.53, .13, .28, .98);
}

.ts-nav-collapsed .ts-item-link>span {
	opacity: 0;
}

.ts-nav-collapsed:hover .ts-item-link>span {
	opacity: 1;
}

.ts-user-area>ul>li>a .ts-comp-icon>svg {
	height: var(--ts-icon-size);
	width: var(--ts-icon-size);
	transition: all .3s ease;
	fill: var(--ts-icon-color);
}

.ts-user-area>ul>li.ts-user-area-avatar img {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	-o-object-fit: cover;
	object-fit: cover;
}

.ts-user-area>ul>li.ts-user-area-avatar span {
	font-size: 16px;
}

span.unread-indicator {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	position: absolute;
	top: 0;
	background: var(--ts-accent-1);
	left: 50%;
	transform: translateX(-50%);
}

.user-bar-tabs span.unread-indicator {
	top: -7px;
}

.ts-tab-content {
	padding: 15px;
}

@media (max-width:767px) {
	.ts-list-container {
		flex-grow: 1;
	}
}

.vx-viewport-card {
	max-width: 600px;
	margin: auto;
}

pre[debug] {
	box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, .4196078431);
	color: #7ee882;
	background: #0b1223;
	font-size: var(--e-global-typography-text-font-size);
	max-height: 500px;
	overflow-y: auto;
}

pre[debug], pre[sql] {
	padding: 10px;
	border-radius: 5px;
	white-space: break-spaces;
	margin: 0 0 10px;
}

pre[sql] {
	color: #000;
	background: #eee;
}

.vx-disabled, .vx-pending {
	opacity: .6;
	pointer-events: none;
}

.vx-inert {
	pointer-events: none;
}

.ts-btn.ts-btn-small {
	height: 40px;
}

.ts-btn i {
	font-size: var(--ts-icon-size);
	color: var(--ts-icon-color);
}

.ts-btn>span {
	display: flex;
}

.ts-btn.btn-disabled {
	pointer-events: none;
	opacity: .6;
}

.ts-no-posts i {
	font-size: var(--ts-icon-size);
	color: var(--ts-icon-color);
}

p.ts-restricted {
	width: 100%;
	padding: 10px 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: var(--e-global-typography-text-font-size);
	text-align: center;
}

.ts-generic-tabs {
	width: 100%;
}

.ts-generic-tabs li {
	display: flex;
	margin: 0 15px 15px 0;
}

.ts-generic-tabs li.ts-tab-active a {
	font-weight: 600;
}

.ts-generic-tabs li a {
	color: var(--ts-shade-1);
	font-size: 16px;
}

@media (min-width:1025px) {
	.hidden-desktop {
		display: none;
	}
}

@media (max-width:1024px) {
	.has-tooltip[data-tooltip]:after, .ts-action[data-tooltip]:after {
		display: none;
	}
}

@media (min-width:768px) and (max-width:1024px) {
	.hidden-tablet {
		display: none;
	}
}

@media (max-width:767px) {
	.hidden-mobile {
		display: none;
	}
}

.ts-search-widget form[v-cloak] {
	display: none;
}

.has-tooltip[data-tooltip]:after, .ts-action[data-tooltip]:after {
	opacity: 0;
}

.current-plan-btn {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	grid-gap: 10px;
}

.ts-panel {
	border-radius: 8px;
	border: 1px solid var(--ts-shade-4);
	background: #fff;
	position: relative;
	overflow: hidden;
}

.ts-panel .ac-head {
	display: flex;
	padding: 12px 20px;
	align-items: center;
	border-bottom: 1px solid var(--ts-shade-4);
}

.ts-panel .ac-head:last-child {
	border: none;
}

.ts-panel .ac-head i {
	font-size: 22px;
	color: var(--ts-shade-4);
	margin-right: 7px;
}

.ts-panel .ac-head b {
	font-weight: 600;
	font-size: var(--e-global-typography-text-font-size);
	color: var(--ts-shade-1);
}

.ts-panel .ac-body {
	padding: 20px;
	width: 100%;
	grid-gap: 15px;
	display: flex;
	flex-direction: column;
}

.ts-panel .ac-body .ac-plan-name {
	color: var(--ts-accent-1);
	font-weight: 600;
	margin-bottom: 10px;
	display: block;
}

.ts-panel .ac-body p {
	font-size: var(--e-global-typography-text-font-size);
	color: var(--ts-shade-2);
	line-height: 1.4;
	margin-bottom: 0;
}

.ts-panel .ac-body p a {
	color: var(--ts-accent-1);
	font-weight: 600;
}

.ts-panel .ac-bottom {
	width: 100%;
}

.ts-switcher-btn {
	width: 100%;
	display: inline-flex;
	position: fixed;
	justify-content: center;
	bottom: 90px;
	z-index: 500;
	left: 0;
	pointer-events: none;
}

.ts-switcher-btn .ts-btn {
	width: auto;
	background: #fff;
	pointer-events: all;
}

.pac-container {
	z-index: 600000;
	box-shadow: none;
	border: 1px solid #eee;
}

@media (min-width:1024px) {
	body.admin-bar .dialog-lightbox-widget {
		height: 100%;
		z-index: 10000000000000000;
	}
	
	#wp-admin-bar-elementor_edit_page .ab-submenu .ab-item {
		width: 350px !important;
	}
}

.elementor-lightbox .dialog-widget-content {
	width: 100% !important;
}

.dialog-close-button:not(:hover) {
	opacity: 1;
}

.ts-icon-btn.ts-smaller {
	width: 30px;
	height: 30px;
}

.ts-icon-btn.invert {
	background: var(--ts-accent-1);
	color: #fff;
	border: none;
}

.ts-icon-btn.invert:hover {
	border: none;
	background: var(--ts-accent-2);
}

.disabled {
	opacity: .5;
	pointer-events: none;
}

.ts-right-icon {
	transform: rotate(-45deg);
}

.ts-left-icon, .ts-right-icon {
	margin-top: 0;
	margin-right: 3px;
}

.ts-left-icon {
	transform: rotate(135deg);
	margin-left: 0;
}

.toggle-wrapper, .ts-template-tab:not(.active-tab) {
	display: none;
}

.ts-term-dropdown li.ts-term-centered a {
	justify-content: center;
}

.ts-term-dropdown li.ts-term-centered a span {
	margin: 0;
}

.ts-term-dropdown li.ts-term-heading a {
	pointer-events: none;
}

.ts-term-dropdown li.term-dropdown-back a {
	justify-content: center;
}

.ts-term-dropdown li.term-dropdown-back a span {
	margin-right: 7px;
	font-size: 20px;
}

.ts-term-dropdown li>a .ts-left-icon, .ts-term-dropdown li>a .ts-right-icon {
	opacity: .5;
}

.ts-term-dropdown li>a:focus .ts-left-icon, .ts-term-dropdown li>a:focus .ts-right-icon, .ts-term-dropdown li>a:hover .ts-left-icon, .ts-term-dropdown li>a:hover .ts-right-icon {
	opacity: 1;
}

.term-dropdown-back {
	grid-column: 1/-1;
}

.ts-term-icon span img {
	border-radius: 50px;
}

.ts-term-dropdown .ts-term-image img {
	width: 28px;
	height: 28px;
	border-radius: 50%;
}

.wparchive-pagination .disabled {
	opacity: 0;
}

.ts-file-upload {
	position: relative;
}

.ts-file-upload .drop-mask {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
}

div.elementor-widget-image a {
	display: contents;
}