.pages .character-block {
	position: relative;
	display: flex;
	justify-content: space-between;
	width: 100%;
	padding: 40px;
	background-color: #071924cc;
	border-bottom: 1px solid #153046;
	gap: 25px;
	margin-top: -13px;
	padding-top: 120px;
}

.pages .character-block .left-content {
	width: 100%;
	max-width: 300px;
}

.pages .character-block .right-content {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: calc(100% - 25px - 300px);
	min-height: 500px;
}

.character-info {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	height: 370px;
	padding: 25px;
	background-color: #031018;
	background-image: url('../images/guild/bg-shadow.png');
	background-position: center;
	background-repeat: no-repeat;
	margin-bottom: 13px;
	padding-bottom: 0;
}

.character-name {
	font-size: 24px;
	line-height: 60px;
	color: #6ec9eb;
}

.diamond-border {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100px;
	height: 100px;
	background: #6ec9eb;
	clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
	margin-bottom: 60px;
}

.diamond {
	width: 97px;
	height: 97px;
	background-color: #031018;
	clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
	overflow: hidden;
}

.character-info .icon-border {
	position: absolute;
	top: 160px;
	left: 50%;
	display: flex;
	width: 78px;
	height: 69px;
	transform: translateX(-50%);
	background-image: url('../images/guild/border-guild-img.png');
	background-repeat: no-repeat;
	background-size: contain;
}

.character-info .icon-border div {
	position: absolute;
	top: 50%;
	left: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 25px;
	height: 25px;
	font-size: 18px;
	transform: translate(-50%, -50%);
}

.character-info .icon-border div .lvl {
	font-size: 10px;
	color: #6ec9eb;
	text-transform: uppercase;
}

.total-members {
	font-size: 12px;
	font-weight: 700;
	color: #6ec9eb;
	text-transform: uppercase;
}

.created-date {
	margin-bottom: 30px;
	margin-top: 15px;
}

.created-date span {
	color: #616f7b;
}

.line-separator {
	width: 100%;
	height: 1px;
	background: radial-gradient(
		circle,
		rgb(25 148 223 / 30%) 0%,
		rgb(3 16 24 / 100%) 100%
	);
}

.status {
	display: flex;
	flex: 1;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	max-width: 300px;
}

.status .vip {
	font-weight: 700;
	color: #687682;
}

.status > .status-character {
	display: flex;
	align-items: center;
	gap: 5px;
}

.icon-container.on {
	width: 30px;
	height: 30px;
	background-image: url('../images/icon-server-on.png');
}

.icon-container.off {
	width: 30px;
	height: 30px;
	background-image: url('../images/icon-server-off.png');
}

.accordion {
	display: flex;
	flex-direction: column;
	width: 100%;
	gap: 3px;
}
.accordion-item {
  border: none !important;
  background-color: transparent !important;
}
.accordion-item:first-of-type {
  border: none !important;
}
.accordion-header {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.3s;
	cursor: pointer;
}

.accordion-header .accordion-content-row {
	background-color: #031018;
	padding-right: 40px;
}

.accordion-header::before {
	position: absolute;
	top: 50%;
	right: 20px;
	display: block;
	width: 9px;
	height: 5px;
	transition: all 0.3s;
	transform: translateY(-50%);
	background-image: url('../images/guild/accordion-arrow.png');
	background-position: center;
	background-repeat: no-repeat;
	content: '';
}

.accordion-header.active::before {
	transform: translateY(-50%) rotate(180deg);
}

.accordion-header:hover .accordion-content-row {
	background-color: #04131c;
}

.accordion-content {
	display: none;
	margin-top: 3px;
}

.rows-wrapper {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.accordion-content-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 45px;
	padding: 0 20px;
	background-color: #04131c;
}

.accordion-content-row-title {
	font-size: 13px;
	font-weight: 400;
	color: #fff;
	text-transform: uppercase;
}

.accordion-content-row-value {
	font-size: 14px;
	font-weight: 700;
	color: #6ec9eb;
}

.search-input {
	position: relative;
}

.search-input::after {
	position: absolute;
	top: calc(50% - 9.5px);
	right: 22px;
	width: 17px;
	height: 19px;
	background: url('../images/search-icon.png') center no-repeat;
	content: '';
	cursor: pointer;
}

.search-input input {
	width: 100%;
	height: 45px;
	padding: 0 32px;
	font-size: 14px;
	color: #fff;
	background: #031018;
	border: none;
	transition: all 0.3s;
	font-family: Philosopher;
	outline: none;
}

.search-input input:hover {
	background-color: #04131c;
}

.character-content {
	position: relative;
}

.wrapper-content-links {
	width: 100%;
	overflow-x: auto;
}

.character-content-links {
	display: flex;
	border-bottom: 1px solid #1f343e;
	gap: 10px;
	min-width: 765px;
}

.character-content-links li {
	display: flex;
	justify-content: center;
	align-items: center;
}

.character-content-links li .tab-link {
	position: relative;
	padding: 30px 45px;
	color: #fff;
	transition: all 0.3s;
	cursor: pointer;
	text-transform: uppercase;
}

.character-content-links li .tab-link::after {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 128px;
	height: 80px;
	opacity: 0;
	transition: all 0.3s;
	transform: translateX(-50%);
	background-image: url('../images/guild/tab-link-hover.png');
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: contain;
	content: '';
}

.character-content-links li .tab-link--active,
.character-content-links li .tab-link:hover {
	color: #67bee0;
}

.character-content-links li .tab-link--active::after,
.character-content-links li .tab-link:hover::after {
	opacity: 1;
}

.search-input input::placeholder {
	color: #fff;
}

.tab-content {
	padding: 20px 0;
}

.content-title {
	display: flex;
	align-items: center;
	gap: 10px;
}

.content-title span {
	font-size: 18px;
	font-weight: 700;
	color: transparent;
	background-clip: text;
	background-image: linear-gradient(
		180deg,
		rgb(122 239 255 / 100%) 0%,
		rgb(169 160 247 / 100%) 100%
	);
	text-transform: uppercase;
}

.content-title .icon-border {
	position: relative;
	display: flex;
	width: 78px;
	height: 69px;
	background-image: url('../images/guild/border-guild-img.png');
	background-repeat: no-repeat;
	background-size: contain;
}

.content-title .icon-border::after {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	transform: translate(-50%, -50%);
	background-repeat: no-repeat;
	background-size: cover;
	content: '';
	filter: drop-shadow(0 0 5px #ae67f6b3) drop-shadow(0 0 10px #ae67f6b3);
}

.content-title .icon-border.members::after {
	width: 24px;
	height: 24px;
	background-image: url('../images/guild/icon-guild-members.png');
}

.content-title .icon-border.medals::after {
	width: 17px;
	height: 25px;
	background-image: url('../images/guild/icon-medals.png');
}

.content-title .icon-border.trophies::after {
	width: 20px;
	height: 26px;
	background-image: url('../images/guild/icon-trophies.png');
}

.table-wrapper {
	position: relative;
	width: 100%;
	overflow: auto;
}

.info-table {
	position: absolute;
	top: 15px;
	right: 10px;
	display: block;
	width: 25px;
	height: 25px;
	transition: all 0.3s;
	background-color: #15242e;
}

.info-table::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 17px;
	height: 17px;
	transform: translate(-50%, -50%);
	background-image: url('../images/guild/icon-info.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: '';
}

.info-table:hover {
	background-color: #04131c;
}

.medals-table {
	display: flex;
	flex-direction: column;
	width: 100%;
	margin-bottom: 20px;
	min-width: 500px;
}

.medals-table .table-row.table-heading-row {
	display: flex;
	align-items: center;
	height: 80px;
}

.medals-table .table-row {
	display: flex;
	align-items: center;
	height: 45px;
	color: #6ec9eb;
	gap: 6px;
}

.table-title,
.table-gold,
.table-silver,
.table-bronze {
	width: calc(25% - 4.5px);
	min-width: 165px;
}

.table-gold,
.table-silver,
.table-bronze {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	font-size: 13px;
	font-weight: 700;
	background-position: bottom center;
	background-repeat: no-repeat;
	background-size: contain;
	text-transform: uppercase;
}

.table-heading-row .table-gold {
	color: #ffd200;
	background-image: url('../images/guild/gold-shadow.png');
	text-shadow: #ffd200 0 0 24px;
}

.table-heading-row .table-silver {
	color: #b3b3b3;
	background-image: url('../images/guild/silver-shadow.png');
	text-shadow: #b3b3b3 0 0 24px;
}

.table-heading-row .table-bronze {
	color: #f47b56;
	background-image: url('../images/guild/bronze-shadow.png');
	text-shadow: #f47b56 0 0 24px;
}

.medals-table .table-row:not(.table-heading-row) {
	margin-bottom: 3px;
}

.medals-table .table-row:not(.table-heading-row) .table-title {
	display: flex;
	align-items: center;
	height: 100%;
	padding: 0 20px;
	font-weight: 400;
	color: #fff;
	background-color: #031018;
	text-transform: uppercase;
}

.medals-table .table-row:not(.table-heading-row) .table-gold,
.medals-table .table-row:not(.table-heading-row) .table-silver,
.medals-table .table-row:not(.table-heading-row) .table-bronze {
	background-color: #04131c;
}

.table-no-result {
	display: flex;
	flex: 1;
	justify-content: center;
	align-items: center;
	height: 100%;
	font-size: 13px;
	color: #6ec9eb;
	background-color: #04131c;
	min-width: calc(165px * 3 + 6px);
	text-transform: uppercase;
}

.list-victories,
.list-defeats {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.list-victories .item,
.list-defeats .item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 60px;
}

.characters-war {
	display: flex;
	flex: 1;
	justify-content: space-between;
	align-items: center;
	height: 100%;
	padding: 0 40px;
	background-color: #031018;
}

.item-time {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	padding: 20px;
	font-size: 12px;
	color: #76767ee6;
	background-color: #04131c;
	gap: 5px;
	margin-left: 3px;
}

.name-character {
	font-size: 20px;
	color: #fdefb5e6;
}

.name-losing-character {
	font-size: 20px;
	color: #fd9494e6;
}

.list-victories .name-losing-character:hover,
.list-defeats .name-character:hover {
	opacity: 0.7;
}

.icon-container.sword {
	width: 50px;
	height: 50px;
	background-image: url('../images/guild/icon-sword.png');
}

.icon-container.skull {
	width: 50px;
	height: 50px;
	background-image: url('../images/guild/icon-skull.png');
}

/* character */

.guild-banner {
	position: relative;
	display: flex;
	align-items: center;
	height: 150px;
	margin: 10px 0;
	padding: 20px 40px;
	border: 1px solid #04131c;
	background-color: #061721;
	background-image: url('../images/guild/guild-banner.jpg');
	background-position: right;
	background-repeat: no-repeat;
	background-size: cover;
	gap: 30px;
}

.guild-link {
	position: absolute;
	top: 15px;
	right: 10px;
	z-index: 0;
	display: block;
	width: 25px;
	height: 25px;
	transition: all 0.3s;
	background-color: #15242e;
}

.guild-link::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 10px;
	height: 10px;
	transform: translate(-50%, -50%);
	background-image: url('../images/guild/icon-link-arrow.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: '';
}

.guild-link:hover {
	background-color: #04131c;
}

.guild-banner .diamond-border {
	margin-bottom: 0;
}

.guild-name {
	display: flex;
	flex-direction: column;
	font-size: 48px;
	color: #fff;
	gap: 5px;
}

.guild-name span {
	font-size: 14px;
	color: #687682;
}

@media (width <= 770px) {
	.pages .character-block {
		flex-direction: column;
		padding-left: 15px;
		padding-right: 15px;
	}

	.pages .character-block .right-content,
	.pages .character-block .left-content {
		max-width: unset;
	}

	.guild-banner {
		padding: 10px;
		gap: 5px;
	}
}

@media (width <= 500px) {
	.name-losing-character,
	.name-character {
		font-size: 14px;
	}

	.characters-war {
		padding: 10px 15px;
	}
}
.profile-character-page .character-items-block {
  background-color: #031018;
  background-image: url(../images/guild/bg-shadow.png);
  background-position: center;
  background-repeat: no-repeat;
  padding: 5rem;
}
.profile-character-page .character-items-class {
  position: relative;
  width: 392px;
  height: 315px;
  background: url("../images/characters/character-small-bg/character-small-bg-all.png") center no-repeat;
  margin: 0 auto;
}

.profile-character-page .character-items-mg {
  position: relative;
  width: 392px;
  height: 315px;
  background: url("../images/characters/character-small-bg/character-small-bg-mg.png") center no-repeat;
  margin: 0 auto;
}

.profile-character-page .character-items-ik {
  position: relative;
  width: 392px;
  height: 315px;
  background: url("../images/characters/character-small-bg/character-small-bg-ik.png") center no-repeat;
  margin: 0 auto;
}

.profile-character-page .character-items-rf {
  position: relative;
  width: 392px;
  height: 315px;
  background: url("../images/characters/character-small-bg/character-small-bg-rf.png") center no-repeat;
  margin: 0 auto;
}

.profile-character-page .character-item.small {
  width: 29px;
  height: 29px;
}

.profile-character-page .character-item.middle {
  width: 84px;
  height: 54px;
}

.profile-character-page .character-item.large {
  width: 125px;
  height: 110px;
}

.profile-character-page .character-item.circle {
  width: 105px;
  height: 105px;
  border-radius: 50%;
}

.profile-character-page .character-item.w58 {
  width: 58px;
}

.profile-character-page .character-item.w71 {
  width: 71px;
}

.profile-character-page .character-item.w78 {
  width: 78px;
}

.profile-character-page .character-item.w82 {
  width: 82px;
}

.profile-character-page .character-item.w84 {
  width: 84px;
}

.profile-character-page .character-item.h54 {
  height: 54px;
}

.profile-character-page .character-item.h65 {
  height: 65px;
}

.profile-character-page .character-item.h75 {
  height: 75px;
}

.profile-character-page .character-item.h78 {
  height: 78px;
}

.profile-character-page .character-item.h99 {
  height: 99px;
}

.profile-character-page .character-item.h131 {
  height: 131px;
}

.profile-character-page .character-item {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  overflow: hidden;
}

.profile-character-page .character-item img {
  max-width: initial !important;
  max-height: 100%;
}

.profile-character-page .character-item.item-0 {
  bottom: 0;
  left: 0;
}

.profile-character-page .character-item.item-1 {
  bottom: 0;
  right: -1px;
}

.profile-character-page .character-item.item-2 {
  top: -21px;
  left: 69px;
  height: 100px;
}

.profile-character-page .character-item.item-3 {
  top: 72px;
  left: 33px;
}

.profile-character-page .character-item.item-4 {
  bottom: 1px;
  left: 83px;
}

.profile-character-page .character-item.item-5 {
  top: 112px;
  right: 41px;
  height: 75px;
}

.profile-character-page .character-item.item-6 {
  top: 239px;
  right: 81px;
}

.profile-character-page .character-item.item-7 {
  top: 0;
  right: 1px;
}

.profile-character-page .character-item.item-8 {
  top: 0;
  left: 0;
  padding: 15px;
}

.profile-character-page .character-item.item-9 {
  top: 22px;
  right: 136px;
}

.profile-character-page .character-item.item-10 {
  bottom: 91px;
  left: 94px;
}

.profile-character-page .character-item.item-11 {
  bottom: 91px;
  right: 96px;
}

.profile-character-page .character-item.item-12 {
  bottom: 92px;
  right: 96px;
}

.profile-character-page .character-item.item-13 {
  bottom: 0;
  right: 0;
}

.profile-character-page .character-item.item-14 {
  bottom: 0;
  left: 84px;
}

.profile-character-page .character-item.item-15 {
  bottom: 0;
  left: 158px;
}

.profile-character-page .character-item.item-16 {
  bottom: 0;
  right: 84px;
}

.profile-character-page .character-item.item-20 {
  top: 0;
  left: 0;
}

.profile-character-page .character-item.item-22 {
  top: 89px;
  left: 143px;
}