@charset "utf-8";

@-webkit-keyframes traits {
	0% {
		width: 0;
		opacity: 0
	}
}

@-moz-keyframes traits {
	0% {
		width: 0;
		opacity: 0
	}
}

@keyframes traits {
	0% {
		width: 0;
		opacity: 0
	}
}

.widget {
	display: flex;
	position: relative;
	height: 100%;
	width: 100%;
	max-height: 1000px;
	max-width: 1560px;
	margin: 0 auto;
	padding: 35px 0;
	align-items: center;
	justify-content: center;
	gap: 50px;
	color: var(--text-secondary)
}

@media screen and (max-width:1679px) {
	.widget {
		max-height: 1200px;
		max-width: 1180px;
		gap: 30px
	}
}

@media screen and (max-width:1279px) {
	.widget {
		max-height: 1800px;
		max-width: 840px
	}
}

@media screen and (max-width:959px) {
	.widget {
		max-height: 100%;
		max-width: 690px;
		padding: 25px 0 90px
	}
}

@media screen and (max-width:767px) {
	.widget {
		max-width: unset;
		padding: 15px 10px 70px
	}
}

.widget .wallpaper {
	position: fixed;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	background-image: linear-gradient(to right bottom, #212750, #020409, #2b1c3c);
	-webkit-filter: contrast(115%);
	filter: contrast(115%)
}

.classic .widget .wallpaper {
	background-image: none
}

.widget_menu {
	z-index: 10;
	display: flex;
	width: 100px;
	padding: 50px 20px;
	border: 2px solid var(--line-primary);
	border-radius: 18px;
	align-items: center;
	flex-direction: column;
	gap: 35px;
	background-color: var(--white-translucent-5)
}

.classic .widget_menu {
	background-color: var(--black-translucent-20)
}

.widget_menu_unit {
	height: 60px;
	width: 60px;
	border-radius: 8px;
	background: transparent
}

.widget_menu_unit svg {
	height: 24px;
	width: 24px
}

.widget_menu_unit svg .fill,
.widget_menu_unit svg .stroke,
.widget_menu_unit svg .hollow {
	stroke: var(--text-secondary)
}

.widget_menu_unit.active svg .fill {
	fill: var(--theme-color);
	stroke: var(--theme-color)
}

.widget_menu_unit.active svg .stroke {
	stroke: var(--theme-color)
}

.widget_menu_unit.active svg .hollow {
	stroke: #333
}

.widget_menu_unit span {
	display: block;
	font-size: 14px;
	font-weight: 700;
	margin-top: 4px;
	color: var(--text-secondary)
}

.widget_menu_unit.active span {
	color: var(--theme-color)
}

@media screen and (max-width:959px) {
	.widget_menu {
		position: fixed;
		width: 100%;
		height: 80px;
		max-width: 680px;
		bottom: 10px;
		margin-right: 10px;
		padding: 10px;
		flex-direction: row;
		justify-content: space-around
	}
}

@media screen and (max-width:767px) {
	.widget_menu {
		width: calc(100% - 25px);
		max-width: unset;
		height: 60px;
		margin: 0;
		padding: 5px
	}

	.widget_menu_unit {
		height: 50px;
		width: 50px
	}

	.widget_menu_unit svg {
		width: 18px;
		height: 18px
	}

	.widget_menu_unit span {
		font-size: 12px;
		margin-top: 0
	}
}

.widget_entry {
	position: relative;
	height: 100%;
	width: 100%;
	padding: 15px
}

.widget_page {
	position: relative;
	height: 0;
	width: 100%;
	opacity: 0;
	overflow: hidden;
	visibility: hidden;
	-webkit-transition: opacity 500ms cubic-bezier(0.455, 0.03, 0.515, 0.955), visibility 500ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
	-moz-transition: opacity 500ms cubic-bezier(0.455, 0.03, 0.515, 0.955), visibility 500ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
	-o-transition: opacity 500ms cubic-bezier(0.455, 0.03, 0.515, 0.955), visibility 500ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
	transition: opacity 500ms cubic-bezier(0.455, 0.03, 0.515, 0.955), visibility 500ms cubic-bezier(0.455, 0.03, 0.515, 0.955)
}

.widget_page.active {
	height: 100%;
	opacity: 1;
	visibility: visible
}

.widget_header {
	display: flex;
	height: 80px;
	margin-bottom: 20px;
	padding-left: 5px;
	padding-bottom: 10px;
	border-bottom: 1px dashed var(--line-tertiary);
	flex-direction: column;
	justify-content: center;
	gap: 5px
}

.widget_header h4 {
	font-size: 24px;
	letter-spacing: 1.5px
}

.widget_header p {
	font-size: 14px;
	letter-spacing: 1px
}

.widget_grid {
	height: calc(100% - 100px);
	padding-right: 10px;
	overflow-y: auto
}

.widget_grid_box {
	display: grid;
	grid-gap: 15px;
	grid-template-columns: repeat(12, 1fr)
}

@media screen and (max-width:767px) {
	.widget_entry {
		padding: 10px;
		padding-right: 5px
	}

	.widget_grid {
		height: calc(100% - 65px)
	}

	.widget_grid_box {
		grid-gap: 10px
	}

	.widget_header {
		height: 50px;
		margin-bottom: 15px;
		padding-bottom: 20px;
		gap: unset
	}

	.widget_header p {
		display: none
	}
}

.tile {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	min-height: 200px;
	padding: 20px 25px;
	border: 2px solid var(--line-primary);
	border-radius: 12px;
	text-shadow: 0 .1rem .5rem rgb(0 0 0 / 80%);
	font-size: 14px;
	align-content: space-between;
	justify-content: space-between;
	align-items: flex-end;
	overflow: hidden;
	background-color: var(--white-translucent-5);
	color: var(--text-secondary);
	-webkit-transition: border 500ms, background-color 500ms;
	-moz-transition: border 500ms, background-color 500ms;
	-o-transition: border 500ms, background-color 500ms;
	transition: border 500ms, background-color 500ms
}

.classic .tile {
	text-shadow: none;
	background-color: var(--black-translucent-20)
}

.tile:hover {
	border-color: var(--line-tertiary);
	background-color: var(--white-translucent-10)
}

.classic .tile:hover {
	background-color: var(--black-translucent-30)
}

.tile>* {
	z-index: 2
}

.tile_large_1,
.tile_large_2 {
	grid-column: span 3
}

.tile_large_3 {
	grid-column: span 4
}

.tile_large_4,
.tile_large_5,
.tile_large_6 {
	grid-column: span 6
}

.tile_large_12 {
	grid-column: span 12
}

.tile_title {
	width: 100%;
	font-size: 14px;
	font-weight: 700;
	padding-bottom: 20px;
	letter-spacing: 1px
}

.tile_grid {
	display: flex;
	width: 100%
}

@media screen and (max-width:1679px) {

	.tile_large_1,
	.tile_large_4 {
		grid-column: span 4
	}

	.tile_large_2,
	.tile_large_3 {
		grid-column: span 6
	}

	.tile_large_6 {
		grid-column: span 8
	}
}

@media screen and (max-width:1279px) {

	.tile_large_1,
	.tile_large_2 {
		grid-column: span 6
	}

	.tile_large_3,
	.tile_large_4,
	.tile_large_5,
	.tile_large_6 {
		grid-column: span 12
	}
}

@media screen and (max-width:539px) {
	.tile {
		min-height: 180px;
		padding: 15px 20px
	}

	.tile_large_1,
	.tile_large_2,
	.tile_large_3,
	.tile_large_4,
	.tile_large_5,
	.tile_large_6 {
		grid-column: span 12
	}
}

.tile_load {
	display: none
}

.tile_grid.load>.tile_load {
	display: flex;
	flex-direction: row;
	align-items: center
}

.tile_grid.load>.tile_load .loader {
	display: inline-block;
	height: 18px;
	width: 18px;
	border-radius: 50%;
	border-top: 2px solid var(--text-secondary);
	border-right: 2px solid transparent;
	-webkit-animation: rotation 1s linear infinite;
	-moz-animation: rotation 1s linear infinite;
	-o-animation: rotation 1s linear infinite;
	animation: rotation 1s linear infinite
}

.tile_load .iconfont {
	font-size: 18px
}

.tile_load .text {
	font-size: 13px;
	margin-left: 12px
}

.tile_grid.load>* {
	display: none
}

.tile_external {
	display: inline-block;
	margin: 0 auto 0 0
}

.tile_external>* {
	display: inline-block;
	vertical-align: middle
}

.tile_external span {
	font-size: 12px;
	color: var(--text-quaternary);
	-webkit-transition: color 300ms;
	-moz-transition: color 300ms;
	-o-transition: color 300ms;
	transition: color 300ms
}

.tile_external:hover>span {
	color: var(--text-primary)
}

.tile_external img {
	height: 22px;
	-webkit-filter: contrast(0);
	filter: contrast(0);
	-webkit-transition: filter 300ms;
	-moz-transition: filter 300ms;
	-o-transition: filter 300ms;
	transition: filter 300ms
}

.tile_external:hover>img {
	-webkit-filter: contrast(1);
	filter: contrast(1)
}

.tile_avatar {
	justify-content: flex-end;
	align-content: flex-end
}

.tile_avatar::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: url('../images/avatar.png') no-repeat center;
	background-size: cover;
	-webkit-filter: contrast(85%);
	filter: contrast(85%);
	-webkit-transition: transform 700ms;
	-moz-transition: transform 700ms;
	-o-transition: transform 700ms;
	transition: transform 700ms
}

.tile_avatar:hover::after {
	-webkit-transform: translate3d(0, -65px, 0px);
	-moz-transform: translate3d(0, -65px, 0px);
	-o-transform: translate3d(0, -65px, 0px);
	transform: translate3d(0, -65px, 0px)
}

.tile_avatar .tile_content {
	letter-spacing: 1px
}

.tile_avatar .tile_content>* {
	display: inline-block;
	vertical-align: middle
}

.tile_avatar .tile_content h3 {
	font-size: 22px;
	font-weight: 700
}

.tile_avatar .tile_content span {
	margin-right: 6px;
	opacity: 0;
	-webkit-transform: translate3d(0, 8px, 0);
	-moz-transform: translate3d(0, 8px, 0);
	-o-transform: translate3d(0, 8px, 0);
	transform: translate3d(0, 8px, 0);
	-webkit-transition: opacity 500ms, transform 700ms;
	-moz-transition: opacity 500ms, transform 700ms;
	-o-transition: opacity 500ms, transform 700ms;
	transition: opacity 500ms, transform 700ms
}

.tile_avatar:hover>.tile_content span {
	opacity: 1;
	-webkit-transform: translate3d(0, 1px, 0);
	-moz-transform: translate3d(0, 1px, 0);
	-o-transform: translate3d(0, 1px, 0);
	transform: translate3d(0, 1px, 0);
	-webkit-transition: opacity 700ms;
	-moz-transition: opacity 700ms;
	-o-transition: opacity 700ms;
	transition: opacity 700ms
}

.tile_info .tile_content {
	display: flex;
	flex: 1;
	line-height: 28px;
	letter-spacing: 1px
}

.tile_info .tile_content li {
	flex: auto
}

.tile_info .tile_content h5 {
	font-size: 13px
}

.tile_info .tile_content span {
	font-size: 18px
}

.tile_tag .tile_content {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 8px
}

.tile_tag .tile_content li {
	font-size: 13px;
	padding: 6px 12px;
	border-radius: 4px;
	background-color: var(--white-translucent-5);
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	-webkit-transition: background-color 500ms;
	-moz-transition: background-color 500ms;
	-o-transition: background-color 500ms;
	transition: background-color 500ms
}

.tile_tag:hover>.tile_content li {
	background-color: var(--white-translucent-10)
}

.tile_attribute::before,
.tile_work::before {
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	background: var(--white-translucent-10);
	-webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -140%, 0);
	-moz-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -140%, 0);
	-o-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -140%, 0);
	transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -140%, 0);
	-webkit-transition: transform 900ms;
	-moz-transition: transform 900ms;
	-o-transition: transform 900ms;
	transition: transform 900ms
}

.tile_attribute:hover::before,
.tile_work:hover::before {
	-webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 140%, 0);
	-moz-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 140%, 0);
	-o-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 140%, 0);
	transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 140%, 0)
}

.tile_attribute::after,
.tile_work::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: .15
}

.tile_attribute::after {
	background: url('../images/constellation.svg') right -1rem / auto 70% no-repeat
}

.tile_work::after {
	background: url('../fonts/network.svg') right top / auto 68% no-repeat
}

.tile_place::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: url('../fonts/map.svg') no-repeat 60% 15%;
	background-size: 125%;
	opacity: .3;
	-webkit-transition: opacity 1s cubic-bezier(.575, .015, 0, .995), background-position 1s cubic-bezier(.575, .015, 0, .995) 500ms, background-size 1s cubic-bezier(.575, .015, 0, .995);
	-moz-transition: opacity 1s cubic-bezier(.575, .015, 0, .995), background-position 1s cubic-bezier(.575, .015, 0, .995) 500ms, background-size 1s cubic-bezier(.575, .015, 0, .995);
	-o-transition: opacity 1s cubic-bezier(.575, .015, 0, .995), background-position 1s cubic-bezier(.575, .015, 0, .995) 500ms, background-size 1s cubic-bezier(.575, .015, 0, .995);
	transition: opacity 1s cubic-bezier(.575, .015, 0, .995), background-position 1s cubic-bezier(.575, .015, 0, .995) 500ms, background-size 1s cubic-bezier(.575, .015, 0, .995)
}

.tile_place:hover::after {
	background-position: 65% 50%;
	background-size: max(100rem, 100vw);
	opacity: .8;
	-webkit-transition: opacity 1s cubic-bezier(.575, .015, 0, .995) 500ms, background-position 1s cubic-bezier(.575, .015, 0, .995), background-size 1s cubic-bezier(.575, .015, 0, .995) 500ms;
	-moz-transition: opacity 1s cubic-bezier(.575, .015, 0, .995) 500ms, background-position 1s cubic-bezier(.575, .015, 0, .995), background-size 1s cubic-bezier(.575, .015, 0, .995) 500ms;
	-o-transition: opacity 1s cubic-bezier(.575, .015, 0, .995) 500ms, background-position 1s cubic-bezier(.575, .015, 0, .995), background-size 1s cubic-bezier(.575, .015, 0, .995) 500ms;
	transition: opacity 1s cubic-bezier(.575, .015, 0, .995) 500ms, background-position 1s cubic-bezier(.575, .015, 0, .995), background-size 1s cubic-bezier(.575, .015, 0, .995) 500ms
}

.tile_traits .tile_content {
	display: flex;
	flex: auto;
	flex-direction: column;
	gap: 2px
}

.tile_traits .type {
	display: flex;
	font-size: 18px;
	padding-bottom: 4px;
	line-height: 28px;
	letter-spacing: 1px;
	align-items: center;
	white-space: nowrap;
	gap: 15px
}

.tile_traits .tile_external {
	padding-bottom: 4px
}

.tile_traits .scalebar {
	display: flex;
	line-height: 24px;
	align-items: center;
	gap: 15px
}

.tile_traits .trait {
	font-size: 13px
}

.tile_traits .percentage {
	display: flex;
	flex-grow: 1;
	height: 8px;
	width: auto;
	border-radius: 8px;
	background-color: var(--white-translucent-5);
	opacity: .5;
	overflow: hidden;
	-webkit-transition: opacity 500ms;
	-moz-transition: opacity 500ms;
	-o-transition: opacity 500ms;
	transition: opacity 500ms
}

.tile_traits:hover .percentage {
	opacity: 1
}

.tile_traits .percentage.right {
	justify-content: flex-end
}

.tile_traits .percentage i {
	background-color: var(--white-translucent-10);
	-webkit-transition: width 1s, background-color 500ms;
	-moz-transition: width 1s, background-color 500ms;
	-o-transition: width 1s, background-color 500ms;
	transition: width 1s, background-color 500ms
}

.tile_traits:hover .percentage i {
	-webkit-animation: traits 1s cubic-bezier(.6, .1, 0, 1);
	-moz-animation: traits 1s cubic-bezier(.6, .1, 0, 1);
	-o-animation: traits 1s cubic-bezier(.6, .1, 0, 1);
	animation: traits 1s cubic-bezier(.6, .1, 0, 1)
}

.tile_traits:hover .percentage.mind i {
	background-color: #4298b4
}

.tile_traits:hover .percentage.energy i {
	background-color: #e4ae3a
}

.tile_traits:hover .percentage.nature i {
	background-color: #33a474
}

.tile_traits:hover .percentage.tactics i {
	background-color: #88619a
}

.tile_traits:hover .percentage.identity i {
	background-color: #f25e62
}

.tile_traits_cover {
	position: relative;
	display: flex;
	margin-left: 25px;
	flex: 0 0 max(180px, 25%);
	aspect-ratio: 1
}

.tile_traits_cover::after {
	content: "";
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	background: url('../fonts/intj-architect.svg') no-repeat center;
	background-size: cover;
	opacity: .3;
	-webkit-transition: transform 500ms, opacity 500ms;
	-moz-transition: transform 500ms, opacity 500ms;
	-o-transition: transform 500ms, opacity 500ms;
	transition: transform 500ms, opacity 500ms
}

.tile_traits:hover .tile_traits_cover::after {
	opacity: .8;
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-o-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2)
}

@media screen and (max-width:539px) {
	.tile_traits .tile_grid {
		flex-direction: column;
		gap: 20px
	}

	.tile_traits_cover {
		width: 50%;
		margin: 0 auto
	}
}

.tile_running .tile_grid {
	position: relative;
	width: 50%;
	flex-direction: column;
	gap: 2px
}

.tile_running .tile_content h5 {
	display: inline-block;
	padding-left: 10px
}

.tile_running .tile_content span {
	font-size: 30px;
	font-weight: 700;
	font-style: italic
}

.tile_running .tile_external img {
	height: 15px
}

.tile_running .tile_animation {
	display: flex;
	position: relative;
	width: 50%;
	flex-direction: column
}

.tile_running .tile_animation>object {
	opacity: .5;
	-webkit-transition: opacity 500ms;
	-moz-transition: opacity 500ms;
	-o-transition: opacity 500ms;
	transition: opacity 500ms
}

.tile_running:hover .tile_animation>object {
	opacity: 1
}

@media screen and (max-width:1679px) and (min-width:1280px),
screen and (max-width:767px) {

	.tile_running .tile_grid,
	.tile_running .tile_animation {
		width: 100%
	}

	.tile_running .tile_content {
		gap: 35px
	}

	.tile_running .tile_content li {
		flex: none
	}
}

@media screen and (max-width:767px) {
	.tile_running .tile_content {
		flex-direction: column;
		gap: 5px
	}
}

.tile_social .tile_content {
	display: flex;
	width: 100%
}

.tile_social .tile_content a {
	display: flex;
	width: 30%;
	margin-left: 5%;
	padding: 15px 10px;
	border-radius: 12px;
	flex-direction: column;
	align-items: center;
	background-color: var(--white-translucent-5);
	-webkit-transition: background-color 500ms;
	-moz-transition: background-color 500ms;
	-o-transition: background-color 500ms;
	transition: background-color 500ms
}

.tile_social .tile_content a:first-child {
	margin-left: 0
}

.tile_social .tile_content a:hover {
	background-color: var(--theme-color)
}

.tile_social .tile_content i {
	font-size: 20px
}

.tile_social .tile_content span {
	font-size: 13px;
	margin-top: 10px
}

@media screen and (max-width:1279px) {
	.tile_social .tile_content {
		flex-direction: column
	}

	.tile_social .tile_content a {
		width: 100%;
		margin-top: 10px;
		margin-left: 0;
		padding: 12px 20px;
		flex-direction: row
	}

	.tile_social .tile_content a:first-child {
		margin-top: 0
	}

	.tile_social .tile_content span {
		margin-top: 0;
		margin-left: 10px
	}
}

.tile_game {
	min-height: 215px
}

.tile_game .tile_content span {
	display: block;
	margin-bottom: 2px
}

.tile_game .tile_content label {
	font-size: 9px !important;
	font-weight: 700;
	padding: 2px 6px;
	border: 1px solid var(--text-quaternary);
	border-radius: 4px;
	letter-spacing: .5px
}

.tile_game .tile_content date {
	font-size: 12px;
	margin-left: 10px;
	letter-spacing: .5px;
	vertical-align: middle
}

.tile_game_cover {
	position: absolute;
	height: 100px;
	width: 100px;
	top: 20px;
	right: 20px;
	border-radius: 12px;
	background-size: cover;
	background-repeat: no-repeat;
	background-color: var(--white-translucent-5);
	opacity: .5;
	-webkit-filter: contrast(85%);
	filter: contrast(85%);
	-webkit-transition: opacity 500ms;
	-moz-transition: opacity 500ms;
	-o-transition: opacity 500ms;
	transition: opacity 500ms
}

.tile_game:hover .tile_game_cover {
	opacity: 1
}

@media screen and (max-width:767px) {
	.tile_game_cover {
		height: 80px;
		width: 80px
	}
}

.tile_application {
	min-height: 140px;
	flex-wrap: nowrap;
	align-items: center
}

.tile_application_info {
	display: flex;
	align-items: center;
	gap: 25px
}

.tile_application_icon {
	height: 70px;
	width: 70px;
	min-width: 70px;
	border-radius: 12px;
	background-size: cover;
	background-repeat: no-repeat;
	background-color: var(--white-translucent-5);
	-webkit-filter: contrast(85%);
	filter: contrast(85%)
}

.tile_application_text h5 {
	font-size: 13px;
	margin-top: 8px;
	letter-spacing: .5px;
	color: var(--text-tertiary)
}

.tile_application_text span {
	font-size: 18px;
	letter-spacing: 1px
}

.tile_application_button {
	position: relative;
	font-size: 12px;
	width: 70px;
	min-width: 70px;
	margin-left: 20px;
	padding: 8px 0;
	border-radius: 18px;
	letter-spacing: 1px;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	background-color: var(--white-translucent-10);
	-webkit-transition: background-color 500ms;
	-moz-transition: background-color 500ms;
	-o-transition: background-color 500ms;
	transition: background-color 500ms
}

.tile_application_button:hover {
	background-color: var(--theme-color)
}

.tile_application_button.inactive {
	letter-spacing: 0;
	cursor: no-drop
}

.tile_application_button.inactive:hover {
	background-color: var(--white-translucent-10)
}

@media screen and (max-width:539px) {
	.tile_application_info {
		align-items: flex-start;
		flex-direction: column;
		gap: 15px
	}

	.tile_application_icon {
		height: 50px;
		width: 50px;
		min-width: 50px;
		border-radius: 8px
	}

	.tile_application_text h5 {
		margin-top: 5px
	}

	.tile_application_button {
		position: absolute;
		top: 30px;
		right: 20px;
		margin: 0
	}
}

.tile_status .tile_content {
	padding-right: 120px
}

.tile_status_cover {
	position: absolute;
	height: 180px;
	width: 200px;
	top: -30px;
	right: 0
}

.tile_status_cover .gear {
	position: absolute;
	height: 60px;
	width: 60px;
	opacity: .15
}

.tile_status_cover .gear:nth-child(1) {
	top: 12px;
	left: 10px
}

.tile_status_cover .gear:nth-child(2) {
	top: 61px;
	left: 60px
}

.tile_status_cover .gear:nth-child(3) {
	top: 110px;
	left: 10px
}

.tile_status_cover .gear:nth-child(4) {
	height: 120px;
	width: 120px;
	top: 13px;
	left: 128px
}

.tile_status_cover .gear-inner {
	position: relative;
	height: 100%;
	width: 100%;
	border-radius: 50%;
	background: transparent;
	-webkit-transition: transform 500ms;
	-moz-transition: transform 500ms;
	-o-transition: transform 500ms;
	transition: transform 500ms;
	-webkit-animation-name: counter-rotation;
	-moz-animation-name: counter-rotation;
	-o-animation-name: counter-rotation;
	animation-name: counter-rotation;
	-webkit-animation-duration: 3s;
	-moz-animation-duration: 3s;
	-o-animation-duration: 3s;
	animation-duration: 3s;
	-webkit-animation-iteration-count: infinite;
	-moz-animation-iteration-count: infinite;
	-o-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	-moz-animation-timing-function: linear;
	-o-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-play-state: paused;
	-moz-animation-play-state: paused;
	-o-animation-play-state: paused;
	animation-play-state: paused
}

.tile_status:hover .tile_status_cover .gear-inner {
	-webkit-animation-play-state: running;
	-moz-animation-play-state: running;
	-o-animation-play-state: running;
	animation-play-state: running
}

.tile_status_cover .gear-inner::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: 12px solid var(--white);
	border-radius: 50%
}

.tile_status_cover .gear:nth-child(2) .gear-inner {
	-webkit-animation-name: rotation;
	-moz-animation-name: rotation;
	-o-animation-name: rotation;
	animation-name: rotation
}

.tile_status_cover .gear:nth-child(4) .gear-inner {
	-webkit-animation-duration: 6s;
	-moz-animation-duration: 6s;
	-o-animation-duration: 6s;
	animation-duration: 6s
}

.tile_status_cover .bar {
	position: absolute;
	height: 16px;
	width: 76px;
	left: 50%;
	top: 50%;
	margin-left: -38px;
	margin-top: -8px;
	background: linear-gradient(90deg, rgb(255 255 255) 0%, rgb(255 255 255) 14%, rgb(0 0 0 / 0%) 15%, rgb(0 0 0 / 0%) 85%, rgb(255 255 255) 86%, rgb(255 255 255) 100%)
}

.tile_status_cover .gear:nth-child(4) .bar {
	width: 136px;
	margin-left: -68px
}

.tile_status_cover .bar:nth-child(2) {
	-webkit-transform: rotate(60deg);
	-moz-transform: rotate(60deg);
	-o-transform: rotate(60deg);
	-ms-transform: rotate(60deg);
	transform: rotate(60deg)
}

.tile_status_cover .bar:nth-child(3) {
	-webkit-transform: rotate(120deg);
	-moz-transform: rotate(120deg);
	-o-transform: rotate(120deg);
	-ms-transform: rotate(120deg);
	transform: rotate(120deg)
}

.tile_status_cover .bar:nth-child(4) {
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg)
}

.tile_status_cover .bar:nth-child(5) {
	-webkit-transform: rotate(30deg);
	-moz-transform: rotate(30deg);
	-o-transform: rotate(30deg);
	-ms-transform: rotate(30deg);
	transform: rotate(30deg)
}

.tile_status_cover .bar:nth-child(6) {
	-webkit-transform: rotate(150deg);
	-moz-transform: rotate(150deg);
	-o-transform: rotate(150deg);
	-ms-transform: rotate(150deg);
	transform: rotate(150deg)
}

@media screen and (max-width:1679px) and (min-width:1280px),
screen and (max-width:539px) {
	.tile_status .tile_content {
		padding-right: 0;
		flex-direction: column;
		gap: 4px
	}

	.tile_status .tile_content li {
		display: flex;
		padding-right: 0;
		gap: 20px
	}

	.tile_status_cover {
		top: -40px;
		right: -20px
	}
}

.tile_posts .tile_content li {
	text-align: center
}

.tile_posts .tile_content span {
	font-size: 26px;
	padding-left: 1px;
	letter-spacing: 1px
}

.tile_visitor .tile_content {
	flex-direction: column;
	gap: 8px
}

.tile_visitor .tile_content li {
	display: flex;
	align-items: center
}

.tile_visitor .tile_content i {
	font-size: 24px;
	margin-right: 8px
}

.tile_visitor .tile_content span {
	font-size: 24px;
	margin: 0 0 0 auto;
	padding-left: 1px;
	letter-spacing: 1px
}

.tile_statistics .tile_grid {
	flex-direction: column;
	gap: 10px
}

.tile_statistics .tile_echarts {
	opacity: .5;
	-webkit-transition: opacity 500ms;
	-moz-transition: opacity 500ms;
	-o-transition: opacity 500ms;
	transition: opacity 500ms
}

.tile_statistics:hover .tile_echarts {
	opacity: 1
}

.tile_statistics .tile_external {
	margin: 0 0 0 auto
}

.tile_statistics .tile_external img {
	height: 15px
}

.tile_history .tile_grid {
	font-size: 13px;
	flex-direction: column;
	gap: 15px
}

.history_preview {
	display: flex;
	position: relative;
	height: 100%;
	width: 100%;
	padding: 0 10px;
	flex-direction: column;
	gap: 15px
}

.history_preview .history_media {
	opacity: .5;
	-webkit-transition: opacity 500ms;
	-moz-transition: opacity 500ms;
	-o-transition: opacity 500ms;
	transition: opacity 500ms
}

.tile_history:hover .history_preview .history_media {
	opacity: 1
}

.history_preview.simple .history_media_list,
.history_preview.complex .history_media {
	position: relative;
	height: 180px;
	width: 100%
}

.history_preview.complex .history_media_list {
	position: absolute;
	height: 100%;
	width: 100%;
	opacity: 0
}

.history_media_list img {
	position: absolute;
	height: auto;
	width: auto;
	max-width: 100%;
	max-height: 100%;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	pointer-events: none
}

.history_media_list glass-container {
	display: block;
	position: absolute;
	left: 50%;
	bottom: 0;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%)
}

.history_media_list glass-hardware,
.history_media_list glass-screen {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	background-size: cover;
	background-repeat: no-repeat
}

.history_preview.simple .history_detail_list,
.history_preview.complex .history_detail {
	display: flex;
	position: relative;
	height: 50px;
	width: 100%;
	flex-direction: column;
	justify-content: center;
	overflow: hidden
}

.history_preview.complex .history_detail_list {
	position: absolute;
	height: auto;
	width: 100%;
	opacity: 0
}

.history_preview .history_detail_list p {
	position: relative;
	padding: 14px 10px;
	line-height: 22px;
	border-radius: 12px;
	text-align: center;
	white-space: nowrap;
	background-color: var(--white-translucent-5);
	-webkit-transition: background-color 500ms;
	-moz-transition: background-color 500ms;
	-o-transition: background-color 500ms;
	transition: background-color 500ms
}

.tile_history:hover .history_detail_list p {
	background-color: var(--white-translucent-10)
}

.history_preview .history_detail_list br {
	display: none
}

.history_preview .history_media_list.active,
.history_preview .history_detail_list.active {
	-webkit-transition: opacity 500ms linear 100ms;
	-moz-transition: opacity 500ms linear 100ms;
	-o-transition: opacity 500ms linear 100ms;
	transition: opacity 500ms linear 100ms;
	opacity: 1
}

.history_control {
	position: relative;
	display: flex;
	height: 80px;
	width: 100%
}

.history_axis {
	position: relative;
	width: 100%;
	margin: 0 40px;
	overflow: hidden
}

.history_axis_prev,
.history_axis_next {
	position: absolute;
	height: 44px;
	width: 27px;
	top: 50%;
	margin-top: -22px;
	background-color: transparent
}

.history_axis_prev {
	left: 6px
}

.history_axis_next {
	right: 6px
}

.history_axis_prev::before,
.history_axis_prev::after,
.history_axis_next::before,
.history_axis_next::after {
	content: '';
	display: block;
	height: 3px;
	width: 20px;
	margin: 10px auto;
	background-color: var(--theme-color)
}

.history_axis_prev::after,
.history_axis_next::before {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg)
}

.history_axis_prev::before,
.history_axis_next::after {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg)
}

.history_line_short,
.history_line_long {
	z-index: 1;
	position: absolute;
	height: 0;
	top: 50%
}

.history_line_short {
	width: 50px;
	left: 0;
	border-bottom: 1px dashed var(--theme-color)
}

.history_line_long {
	width: calc(100% - 50px);
	left: 50px;
	border-bottom: 1px solid var(--theme-color)
}

.history_line {
	z-index: 2;
	position: absolute;
	height: 50%;
	min-width: 100%;
	top: 0;
	left: 0
}

.history_line_dot {
	position: absolute;
	border: 1px solid var(--theme-color);
	border-radius: 50%;
	background: #1e1e1e;
	box-sizing: border-box;
	-webkit-transition: background 300ms linear;
	-moz-transition: background 300ms linear;
	-o-transition: background 300ms linear;
	transition: background 300ms linear
}

.classic .history_line_dot {
	background: #e1e1e1
}

.history_line_dot.active {
	background: var(--theme-color)
}

.history_control.simple .history_date_list,
.history_control.simple .history_title_list {
	z-index: 4;
	position: absolute;
	width: 100%;
	top: 50%;
	line-height: 20px;
	text-align: center
}

.history_control.simple .history_date_list {
	margin-top: -35px
}

.history_control.simple .history_title_list {
	margin-top: 15px
}

.history_control.complex .history_date,
.history_control.complex .history_title {
	position: absolute;
	height: 20px;
	width: 100%;
	left: 0
}

.history_control.complex .history_date {
	bottom: 15px
}

.history_control.complex .history_title {
	bottom: -35px
}

.history_control.complex .history_date_list,
.history_control.complex .history_title_list {
	position: absolute;
	top: 0;
	line-height: 20px;
	text-align: center;
	white-space: nowrap;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%)
}

.history_control.complex .history_date_list {
	padding-right: 2px
}

@media screen and (max-width:1679px) and (min-width:1280px),
screen and (max-width:767px) {
	.history_preview {
		padding: 0
	}

	.history_preview.simple .history_detail_list,
	.history_preview.complex .history_detail {
		height: 72px
	}

	.history_preview .history_detail_list br {
		display: block
	}
}