/* Base */
:root {
	--color-text: #1f2229;
	--color-primary: #1a73e8;
	--color-secondary: #3367d6;
	--color-active-1: #f5f8fd;
	--color-active-2: #e8f0fe;
	--color-dark-1: #454647;
	--color-light-1: #f5f5f5;
	--color-light-2: #dadce0;
	--color-light-3: #adaeaf;
	--color-error: #f8604a;
	--color-error-bg: #f8604a2b;
	--color-success: #4bbb5c;
	--color-success-bg: #4bbb5c2b;
	--font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, Helvetica, Arial, Lucida, sans-serif;
	}



/* Icon Font */
@font-face {
	font-family: 'bfg-icons';
	src: url('fonts/bfg-icons.eot?dy99rx');
	src: url('fonts/bfg-icons.eot?dy99rx#iefix') format('embedded-opentype'),
		url('fonts/bfg-icons.ttf?dy99rx') format('truetype'),
		url('fonts/bfg-icons.woff?dy99rx') format('woff'),
		url('fonts/bfg-icons.svg?dy99rx#bfg-icons') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display: block;
	}
[class^="bfg-icon-"], [class*=" bfg-icon-"] {
	font-family: 'bfg-icons' !important;
	speak: never;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	}
.bfg-icon-link:before {
	content: "\6c";
	}
.bfg-icon-user:before {
	content: "\75";
	}
.bfg-icon-users:before {
	content: "\70";
	}
.bfg-icon-arrow-right:before {
	content: "\72";
	}
.bfg-icon-logout:before {
	content: "\6f";
	}
.bfg-icon-help:before {
	content: "\68";
	}
.bfg-icon-cross:before {
	content: "\78";
	}
.bfg-icon-copy:before {
	content: "\63";
	}
.bfg-icon-search:before {
	content: "\73";
	}
.bfg-icon-reload:before {
	content: "\65";
	}
.bfg-icon-more:before {
	content: "\6d";
	}
.bfg-icon-trash:before {
	content: "\74";
	}


/* Icons */
.bfg-icons {
	display: inline-block;
	border: solid .07em transparent;
	width: 1.125em;
	height: 1.125em;
	margin: .5625em;
	font-size: 1em;
	line-height: 1em;
	text-align: center;
	}
.bfg-icons-loading {
	display: inline-block;
	border-top: solid .07em transparent;
	border-right: solid .07em var(--color-primary);
	border-bottom: solid .07em transparent;
	border-left: solid .07em var(--color-primary);
	width: 1em;
	height: 1em;
	margin: 0;
	padding: 0;
	font-size: 1em;
	line-height: 1em;
	text-align: center;
	border-radius: 100%;
	animation: processing 1s infinite linear;
	}
.bfg-icons-loading.dark {
	border-top: solid .07em transparent;
	border-right: solid .07em #fff;
	border-bottom: solid .07em transparent;
	border-left: solid .07em #fff;
	}
.processing:not(.reload) .bfg-icons {
	border-top: solid .07em #fff;
	border-right: solid .07em var(--color-primary);
	border-bottom: solid .07em #fff;
	border-left: solid .07em var(--color-primary);
	border-radius: 2em;
	animation: processing 1s infinite linear;
	}
.processing.reload .bfg-icons {
	animation: reloading 1s infinite linear;
	}
.processing.delete-item .bfg-icons {
	border-top: solid .07em transparent;
	border-right: solid .07em #fff;
	border-bottom: solid .07em transparent;
	border-left: solid .07em #fff;
	}
.processing:not(.reload) .bfg-icons:before { content: " "; }









/* General */
* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	}
body {
	font-family: var(--font-family);
	font-size: 1rem;
	font-weight: 400;
	color: var(--color-text);
	}
@media (min-width: 1921px) {
	body {
		font-size: .8333vw !important;
		}
}
@media (max-width: 767px) {
	body {
		font-size: .9375rem !important;
		}
}



/* Misc */
svg {
	display: block;
	}
img {
	max-width: 100%;
	}
strong {
	font-weight: 600;
	}
small {
	opacity: .47;
	}
.hidden {
	display: none !important;
	}
.block {
	display: block !important;
	}
.nowrap {
	white-space: nowrap;
	}
.ellipsis {
	display: block !important;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	}



/* Links */
a, a:visited {
	text-decoration: none;
	color: var(--color-primary);
	border-bottom: solid .07em transparent;
	transition: all 300ms ease 0ms;
	}
a:hover,
a:active {
	color: var(--color-secondary);
	text-decoration: none;
	border-bottom: solid .07em;
	transition: all 300ms ease 0ms;
	}



/* Forms */
fieldset {
	border-color: var(--color-light-2);
	border-style: solid;
	border-width: .07em;
	border-radius: 1em;
	padding: .5em .94em .75em 1em;
	margin: 0;
	}
legend {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	gap: .55em;
	max-width: 80%;
	font-size: .6875em;
	font-weight: 800;
	letter-spacing: .07em;
	padding: 0 .55em;
	}
legend > span {
	display: block;
	font-weight: 400;
	white-space: nowrap;
	border-left: solid .09em var(--color-light-2);
	overflow: hidden;
	text-overflow: ellipsis;
	padding-left: .55em;
	}
code {
	background-color: var(--color-light-1);
	line-height: 2.25em;
	display: block;
	padding: 0 .875em;
	border-radius: .5em;
	}
ul, ol {
	padding-left: 1.25em;
	line-height: 1.4;
	}
button {
	cursor: pointer;
	padding: 0 .875em;
	margin: 0;
	border: 0;
	line-height: 2.25em;
	vertical-align: middle;
	height: 2.25em;
	color: var(--color-text);
	background-color: var(--color-light-1);
	border-radius: .5em;
	transition: all 300ms ease 0ms;
	}
button:hover:not([disabled]),
button:active:not([disabled]) {
	background-color: var(--color-active-2);
	transition: all 300ms ease 0ms;
	}
button.help,
button.reload,
button.trash {
	padding: 0;
	border-radius: 3em;
	}
button.delete-user {
	background-color: #fff;
	}
button.delete-user:hover:not([disabled]),
button.delete-user:active:not([disabled]) {
	background-color: var(--color-error);
	color: #fff;
	transition: all 300ms ease 0ms;
	}
a.button {
	display: inline-block;
	border-radius: .75em;
	padding: .375em;
	color: var(--color-text);
	background-color: var(--color-light-1);
	border: 0 !important;
	transition: all 300ms ease 0ms;
	}
a.button:hover,
a.button:active {
	background-color: var(--color-active-2);
	transform: scale(1.09);
	transition: all 300ms ease 0ms;
	}
select {
	border: solid .07em var(--color-light-2);
	background-color: #fff;
	border-radius: 1em;
	padding: 0 1em;
	line-height: 2.25em;
	height: 2.375em;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	cursor: pointer;
	outline: 0;
	transition: all 300ms ease 0ms;
	}
select::-ms-expand { display: none; }
select:hover,
select:focus,
select:active,
select:focus-visible {
	border-color: var(--color-primary);
	transition: all 300ms ease 0ms;
	}
select option {
	background-color: #fff;
	}
input[type="text"] {
	font-size: 1em;
	line-height: 3em;
	border: solid .07em var(--color-light-2);
	border-radius: 1em;
	background-color: #fff;
	padding: 0 3.375em 0 1em;
	outline: 0;
	max-width: 100%;
	margin: .25em 0;
	transition: all 300ms ease 0ms;
	}
input[type="text"]:hover {
	border: solid .07em var(--color-primary);
	transition: all 300ms ease 0ms;
	}
input[type="text"]:focus {
	border-color: var(--color-primary);
	background-color: var(--color-active-1);
	transition: all 300ms ease 0ms;
	}
.row-auth input[type="text"] {
	width: 100%;
	}
.inputmask-button {
	padding: 0;
	border-radius: .75em;
	color: #fff;
	background-color: var(--color-primary);
	transition: all 300ms ease 0ms;
	}
.inputmask-button:hover,
.inputmask-button:active {
	color: #fff;
	background-color: var(--color-secondary) !important;
	transform: scale(1.09);
	transition: all 300ms ease 0ms;
	}
.inputmask-button[disabled],
.inputmask-button[disabled]:hover,
.inputmask-button[disabled]:active {
	color: var(--color-light-2);
	background-color: transparent !important;
	transform: scale(1);
	transition: all 300ms ease 0ms;
	}
select.error,
input[type="text"].error {
	border: solid .07em var(--color-error);
	background-color: var(--color-error-bg);
	transition: all 300ms ease 0ms;
	}
.delete-user[disabled] {
	opacity: .67;
	cursor: default;
	}
.trash.logs[disabled] {
	cursor: default;
	}
.trash.logs[disabled] span {
	opacity: .27;
	}
pre.log-content {
	font-family: inherit;
	line-height: 1.2;
	width: 100%;
	background-color: var(--color-light-1);
	border: none;
	border-radius: 0;
	padding: .75em;
	margin: 0;
	cursor: default;
	white-space: pre-wrap;
	word-break: break-word;
	}



/* reCaptcha */
.grecaptcha-badge {
	visibility: hidden;
	}



/* Grid */
.section {
	margin: 0;
	padding: 0;
	}
.row {
	width: 88%;
	max-width: 81vw;
	margin: 0 auto;
	padding: 2.4em 0;
	}
.row.row-small {
	max-width: 64vw;
	padding: 1.4em 0;
	}
.row.row-auth {
	max-width: 25em;
	padding: 1.4em 0;
	min-height: 60vh;
	display: flex;
	align-items: center;
	}
.row-auth .inner {
	width: 100%;
	}
.main-wrap {
	min-height: 77vh;
	}



/* Section header */
.header {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
	gap: 1em;
	}
.header-nav {
	width: 100%;
	display: flex;
	justify-content: flex-end;
	gap: .5em;
	align-items: center;
	flex-wrap: nowrap;
	}
.header-logo {
	flex-shrink: 0;
	}
.header-logo a {
	display: flex;
	align-items: center;
	gap: 1em;
	border: 0 !important;
	}
.header-logo .logo {
	width: 2.6738em;
	}
.header-logo .text {
	color: var(--color-text);
	font-weight: 800;
	font-size: 1.1875em;
	letter-spacing: .06em;
	text-transform: uppercase;
	}
.header-nav a.button {
	border: solid .07em var(--color-light-2) !important;
	background-color: #fff;
	border-radius: 1em;
	padding: .13em;
	}
.header-nav a.button:hover {
	transform: scale(1);
	border-color: var(--color-primary) !important;
	transition: all 300ms ease 0ms;
	}



/* Section token */
fieldset .inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: .25em;
	}
fieldset .inner .token {
	display: flex;
	align-items: center;
	gap: .25em;
	}
.token .copy-token {
	position: relative;
	cursor: pointer;
	padding-right: 2.375em;
	transition: all 300ms ease 0ms;
	}
.token .copy-api {
	padding: 0;
	background-color: transparent;
	transition: all 300ms ease 0ms;
	}
.token .copy-token:hover,
.token .copy-api:hover {
	background-color: var(--color-active-2);
	transition: all 300ms ease 0ms;
	}
.token.copy-token-success .copy-token,
.token.copy-token-success .copy-token:hover,
.token.copy-api-success .copy-api,
.token.copy-api-success .copy-api:hover {
	background-color: var(--color-success-bg);
	transition: all 300ms ease 0ms;
	}
.token .copy-token:before {
	content: "\63";
	position: absolute;
	font-size: 1em;
	font-family: 'bfg-icons' !important;
	width: 1em;
	height: 1em;
	speak: never;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	top: calc(50% - .5em);
	right: .625em;
	color: var(--color-light-3);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	transition: all 300ms ease 0ms;
	}
.token .copy-token:hover:before,
.token.copy-token-success .copy-token:before {
	color: var(--color-text);
	transition: all 300ms ease 0ms;
	}



/* Section options */
.list-count {
	margin-top: .75em;
	}
.options-list {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: .375em;
	margin: .75em 0;
	}
.options-list .item {
	position: relative;
	background-color: var(--color-light-1);
	border-radius: .5em;
	padding: 0 3em 0 .875em;
	font-size: 1em;
	line-height: 2.25;
	width: auto;
	max-width: 100%;
	cursor: default;
	box-sizing: border-box;
	transition: all 300ms ease 0ms;
	}
.options-list .item:hover {
	background-color: var(--color-active-2);
	transition: all 300ms ease 0ms;
	}
.options-list .item.error,
.options-title .reload.error,
.options-title .trash.error,
.delete-user.error,
.delete-user.error:hover {
	background-color: var(--color-error-bg);
	transition: all 300ms ease 0ms;
	}
.options-list .item .delete-item,
.options-list .item .options-user {
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
	bottom: 0;
	padding: 0;
	background-color: transparent;
	border-radius: .5em;
	border-left: solid .07em var(--color-light-2);
	}
.options-list .item .delete-item[disabled],
.options-list .item .delete-item[disabled]:hover {
	background-color: transparent;
	border-left: solid .07em var(--color-light-2);
	cursor: default;
	}
.options-list .item .delete-item[disabled] span {
	opacity: .47;
	}
.options-list .item.active .options-user,
.options-list .item.active .options-user:hover,
.options-list .item.active .options-user:active {
	background-color: #fff !important;
	transform: scale(1.4);
	border-radius: .75em;
	box-shadow: 0 0 0 .07em var(--color-primary);
	border: 0;
	height: 2.25em;
	z-index: 6;
	}
.options-list .item.active .options-user > span:before,
.options-list .item.active .options-user:hover > span:before,
.options-list .item.active .options-user:active > span:before {
	content: "\78";
	}
.options-list .item .options-user:hover,
.options-list .item .options-user:active {
	background-color: rgba(37,37,37,.17);
	border-left-color: transparent;
	}
.options-list .item .delete-item:hover,
.options-list .item .delete-item:active,
.options-list .item .delete-item.processing {
	background-color: var(--color-error-bg);
	border-left-color: transparent;
	}
.options-list .item .delete-item.processing {
	background-color: var(--color-error);
	color: #fff;
	border-left-color: transparent;
	}
.options-list.success .item:first-of-type {
	background-color: var(--color-success-bg);
	transform: scale(1.17);
	z-index: 1;
	transition: all 300ms ease 0ms;
	}
.options-title {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: .5em;
	}
.options-title .title {
	font-size: 1em;
	font-weight: 800;
	line-height: 2em;
	white-space: nowrap;
	}
.options-title .form {
	display: none;
	transition: all 300ms ease 0ms;
	}
.options-title .form.active,
form .input-area {
	display: block;
	position: relative;
	transition: all 300ms ease 0ms;
	}
.options-title .show-form {
	padding: .4375em;
	margin: .25em 0;
	border-radius: 1em;
	height: 3.125em;
	}
.options-title .show-form.active,
.options-title .show-form:hover,
.options-title .show-form:active {
	background-color: var(--color-active-2);
	transform: scale(1.09);
	}
.options-title .show-form.new > span {
	transform: rotate(45deg);
	transition: all 300ms ease 0ms;
	}
.options-title .show-form.active > span {
	transform: rotate(0);
	transition: all 300ms ease 0ms;
	}
.options-title .show-form.list-search.active span:before {
	content: "\78";
	}
.options-title .form .new-item,
form .input-area .go {
	position: absolute;
	top: calc(50% - 1.125em);
	right: .5em;
	}



/* Logs */
.logs-list {
	margin: 1em -.5em;
	}
.logs-list .empty {
	margin: 0 .5em;
	}
.logs-list .item-log {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 2%;
	border-top: solid .07em var(--color-light-1);
	font-size: .8125em;
	line-height: 1;
	margin: 0;
	padding: .85em .62em;
	border-radius: 0;
	background-color: transparent;
	cursor: default;
	transition: all 300ms ease 0ms;
	}
.logs-list .item-log:hover {
	background-color: var(--color-light-1);
	transition: all 300ms ease 0ms;
	}
.item-log .meta {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	gap: 2%;
	width: 68%;
	}
.item-log .tag {
	word-break: break-all;
	flex-shrink: 0;
	max-width: 30%;
	}
.item-log .tag .tooltip {
	font-size: 1em;
	}
.item-log .content {
	display: none;
	flex-shrink: 0;
	width: 100%;
	margin-top: .5714em;
	}
.item-log.show-content .content {
	display: block;
	}
.item-log .label {
	display: none;
	}
.item-log .date {
	flex-shrink: 0;
	width: 11em;
	white-space: nowrap;
	}
.item-log .ip {
	flex-shrink: 0;
	width: 9em;
	white-space: nowrap;
	}
.item-log .ip a {
	color: var(--color-text);
	border-bottom: dashed .07em var(--color-light-2);
	}
.item-log .ip a:hover,
.item-log .ip a:active {
	color: var(--color-primary);
	text-decoration: none;
	border-bottom: solid .07em;
	transition: all 300ms ease 0ms;
	}
.item-log .host {
	width: auto;
	word-break: break-all;
	}
.item-log .tag .show-log-content {
	color: var(--color-text);
	cursor: pointer;
	border-bottom: dashed .07em var(--color-light-2);
	display: inline-block;
	transition: all 300ms ease 0ms;
	}
.item-log .tag .show-log-content:hover {
	color: var(--color-primary);
	border-bottom: solid .07em var(--color-primary);
	transition: all 300ms ease 0ms;
	}




/* Auth */
.title-auth {
	display: flex;
	align-items: center;
	gap: .5em;
	font-size: 1em;
	font-weight: 800;
	line-height: 2em;
	padding: .5em .75em;
	}
.navigation {
	text-align: center;
	margin: 1em 0 0 0;
	color: var(--color-light-2);
	}



/* Notices */
.notice {
	font-size: .875em;
	padding: .875em 1em;
	border-radius: .5em;
	background-color: var(--color-light-1);
	}
.notice.error {
	background-color: var(--color-error-bg);
	}
.notice.success {
	background-color: var(--color-success-bg);
	}



/* Pages */
.section-page .inner p {
	text-align: justify;
	line-height: 1.4;
	hyphens: auto;
	}



/* Footer */
.footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1em;
	}
.footer .copyright {
	flex-shrink: 0;
	font-size: .9375em;
	text-align: center;
	}
.footer .footer-links {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 1.5em;
	}
.footer .footer-links a {
	display: block;
	text-align: center;
	}



/* Tooltip */
.tooltip,
.popover {
	position: absolute;
	z-index: 1030;
	display: block;
	font-size: .8125em;
	font-weight: 400;
	line-height: 1.2;
	color: #fff;
	text-align: center;
	text-decoration: none;
	background-color: var(--color-dark-1);
	border-radius: .5em;
	opacity: 0;
	filter: alpha(opacity=0);
	visibility: visible;
	}
.popover {
	font-size: .875em;
	}
.tooltip.in,
.popover.in {
	opacity: 1;
	filter: alpha(opacity=100);
	}
.tooltip.top,
.popover.top {
	padding: .4em 0;
	margin-top: -.4em;
	}
.active .popover.top {
	margin-top: -1em;
	}
.tooltip.right,
.popover.right {
	padding: 0 .4em;
	margin-left: .4em;
	}
.active .popover.right {
	margin-left: 1em;
	}
.tooltip.bottom,
.popover.bottom {
	padding: .4em 0;
	margin-top: .4em;
	}
.active .popover.bottom {
	margin-top: 1em;
	}
.tooltip.left,
.popover.left {
	padding: 0 .4em;
	margin-left: -.4em;
	}
.active .popover.left {
	margin-left: -1em;
	}
.tooltip-inner,
.popover-content,
.popover .popover-title {
	width: max-content;
	max-width: calc(88vw - 5em);
	padding: .75em .375em;
	word-break: break-word;
	white-space: normal;
	}
.popover-content {
	width: 100%;
	min-height: 2.75em;
	padding-top: 0;
	text-align: left;
	}
.tooltip-inner {
	padding: .3125em .875em;
	max-width: 17em;
	}
.tooltip-arrow,
.popover .arrow {
	position: absolute;
	width: 0;
	height: 0;
	border-color: transparent;
	border-style: solid;
	}
.tooltip.top .tooltip-arrow,
.popover.top .arrow {
	bottom: -.3em;
	left: 50%;
	margin-left: -.3em;
	border-top-color: var(--color-dark-1);
	border-width: .4em .4em 0;
	}
.tooltip.top-left .tooltip-arrow,
.popover.top-left .arrow {
	bottom: -.3em;
	left: .3em;
	border-top-color: var(--color-dark-1);
	border-width: .4em .4em 0;
	}
.tooltip.top-right .tooltip-arrow,
.popover.top-right .arrow {
	right: .3em;
	bottom: -.3em;
	border-top-color: var(--color-dark-1);
	border-width: .4em .4em 0;
	}
.tooltip.right .tooltip-arrow,
.popover.right .arrow {
	top: 50%;
	left: -.3em;
	margin-top: -.3em;
	border-right-color: var(--color-dark-1);
	border-width: .4em .4em .4em 0;
	}
.tooltip.left .tooltip-arrow,
.popover.left .arrow{
	top: 50%;
	right: -.3em;
	margin-top: -.3em;
	border-left-color: var(--color-dark-1);
	border-width: .4em 0 .4em .4em;
	}
.tooltip.bottom .tooltip-arrow,
.popover.bottom .arrow {
	top: -.3em;
	left: 50%;
	margin-left: -.3em;
	border-bottom-color: var(--color-dark-1);
	border-width: 0 .4em .4em;
	}
.tooltip.bottom-left .tooltip-arrow,
.popover.bottom-left .arrow {
	top: -.3em;
	left: .3em;
	border-bottom-color: var(--color-dark-1);
	border-width: 0 .4em .4em;
	}
.tooltip.bottom-right .tooltip-arrow,
.popover.bottom-right .arrow {
	top: -.3em;
	right: .3em;
	border-bottom-color: var(--color-dark-1);
	border-width: 0 .4em .4em;
	}
.popover .popover-title {
	max-width: calc(88vw - 5em);
	margin: 0;
	padding: 0 .375em;
	font-size: 1em;
	font-weight: 400;
	text-align: left;
	}
.popover .popover-title span {
	display: block;
	}
.popover .popover-title .user-token {
	font-weight: 600;
	line-height: 1.4;
	text-align: center;
	padding: .75em 0;
	cursor: pointer;
	transition: all 300ms ease 0ms;
	}
.popover .popover-title .user-token.copy-success {
	color: var(--color-success);
	transition: all 300ms ease 0ms;
	}
.popover table {
	width: 100%;
	font-weight: 400;
	margin: 1em 0;
	}
.popover table td:first-of-type {
	text-align: left;
	padding: .125em .5em .125em 0;
	}
.popover table td:last-of-type {
	text-align: right;
	padding: .125em 0 .125em .5em;
	min-width: 3em;
	}



@media only screen and (max-width: 1120px) {
	.row, .row.row-small {
		max-width: 100%;
		}
}
@media only screen and (max-width: 768px) {
	input[type="text"] {
		font-size: 1.2667em;
		line-height: 2.6316em;
		border-radius: .8421em;
		}
	input[type="text"],
	.options-title .form.active {
		width: 100%;
		}
	.token .copy-api {
		background-color: var(--color-light-1);
		}
	.options-title .form .new-item,
	form .input-area .go {
		top: calc(50% - 1.3333em);
		}
	.inputmask-button {
		height: 2.6667em;
		line-height: 2.6667em;
		}
	.inputmask-button .bfg-icons {
		font-size: 1.6em;
		width: 1em;
		height: 1em;
		margin: .3333em;
		}
	fieldset {
		padding: .14em .46em .46em .67em;
		margin: 0 -3%;
		}
	.main-wrap {
		min-height: 50vh;
		}
	.row {
		padding: 1.8em 0;
		}
	.row.row-small {
		padding: 1em 0;
		}
	.row.row-auth {
		min-height: 40vh;
		}
	.header-logo .text {
		font-size: 1em;
		}
	.footer {
		flex-direction: column-reverse;
		}
	.footer .footer-links {
		justify-content: center;
		flex-direction: column;
		gap: .75em;
		}
	h1 {
		font-size: 1.4em;
		hyphens: auto;
		}
	h4 {
		font-size: 1.0667em;
		hyphens: auto;
		}
	.options-list {
		gap: .4667em;
		margin: 1em 0;
		}
	.options-list .item .delete-item {
		background-color: var(--color-error-bg);
		border: none;
		}
	.logs-list {
		margin: 1em 0;
		}
	.logs-list .item-log {
		border-top: solid .07em var(--color-light-2);
		font-size: .8667em;
		line-height: 1.4;
		margin: 0;
		padding: .923em 0;
		border-radius: 0;
		}
	.logs-list .item-log:hover {
		background-color: transparent;
		}
	.item-log .meta {
		flex-wrap: wrap;
		justify-content: space-between;
		width: 100%;
		}
	.item-log .tag {
		width: auto;
		max-width: 100%;
		flex-shrink: 1;
		}
	.item-log .label {
		display: inline;
		}
	.item-log .date,
	.item-log .ip {
		width: auto;
		min-width: auto;
		white-space: normal;
		flex-shrink: 1;
		}
	.item-log .ip {
		color: var(--color-light-3);
		}
	.item-log .ip a {
		color: var(--color-light-3);
		border-bottom: dashed .07em var(--color-light-2);
		}
	.item-log .host {
		width: 100%;
		}
	pre.log-content {
		padding: .6154em;
		}
}
@media only screen and (max-width: 490px) {
	.header-logo .text {
		display: none;
		}
}
@media only screen and (max-width: 390px) {
	.options-list .item {
		width: 100%;
		}
}



/* Animation */
@keyframes processing{ from{ transform:rotate(0deg) scale(0.8); } to{ transform:rotate(359deg) scale(0.8); } }
@keyframes reloading{ from{ transform:rotate(0deg); } to{ transform:rotate(359deg); } }