.pages .guild-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 .guild-block .left-content {
	width: 100%;
	max-width: 300px;
}

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

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

.guild-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;
}

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

.guild-info .icon-border::after {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 24px;
	height: 18px;
	transform: translate(-50%, -50%);
	background-image: url('../images/guild/icon-members.png');
	background-repeat: no-repeat;
	background-size: cover;
	content: '';
	filter: drop-shadow(0 0 5px #ae67f6b3) drop-shadow(0 0 10px #ae67f6b3);
}

.total-members {
	font-size: 12px;
	font-weight: 700;
	color: #6ec9eb;
	text-transform: uppercase;
}
.accordion-item {
  border: none !important;
}
.accordion {
	display: flex;
	flex-direction: column;
	width: 100%;
	gap: 3px;
}

.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;
}

.guild-content {
	position: relative;
}

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

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

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

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

.guild-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: '';
}

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

.guild-content-links li .tab-link--active::after,
.guild-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');
}

.members-table {
	display: flex;
	flex-direction: column;
	width: 100%;
	min-width: 700px;
}

.members-table .row-wrapper {
	position: relative;
	background-color: #031018;
	margin-bottom: 3px;
}

.members-table .row-wrapper::after {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		45deg,
		rgb(130 222 249 / 16.6%) 0%,
		rgb(3 16 24 / 100%) 50%
	);
	opacity: 0;
	transition: all 0.3s;
	background-color: #031018;
	content: '';
}

.members-table .row-wrapper:hover::after {
	opacity: 1;
}

.members-table .table-row {
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 60px;
	padding: 0 20px;
	font-size: 14px;
	font-weight: 700;
	text-align: center;
	transition: all 0.3s;
	gap: 20px;
	text-transform: uppercase;
}

.members-table .table-heading-row {
	padding: 10px 20px;
	background-color: transparent;
}

.members-table .table-heading-row span {
	font-size: 13px;
	font-weight: 400;
	color: #fff;
}

.members-table .table-row::after:not(.table-heading-row):hover {
	opacity: 1;
}

.members-table .table-member {
	display: flex;
	align-items: center;
	width: 40%;
	gap: 20px;
	min-width: 300px;
}

.members-table .table-number {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 6%;
	font-weight: 700;
	min-width: 50px;
}

.members-table .table-number .icon-container {
	position: relative;
	justify-content: center;
}

.members-table .table-number .icon-container::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 49px;
	height: 37px;
	transform: translate(-50%, -50%);
	background-image: url('../images/bg-icon.png');
	background-repeat: no-repeat;
	background-size: contain;
	content: '';
}

.members-table .table-icon {
	width: 8%;
	min-width: 75px;
}

.members-table .table-icon-wrapper {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.members-table .table-icon .img-container {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 49px;
	background-color: #264994;
	clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
	overflow: hidden;
}

.members-table .table-icon .border-img {
	position: absolute;
	top: calc(50% - 1px);
	left: 50%;
	width: 78px;
	height: 58px;
	transform: translate(-50%, -50%);
	background-image: url('../images/ava-border.png');
}

.members-table .table-icon .img-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.members-table .table-icon.guild .img-container img {
	width: 25px;
	height: 25px;
}

.members-table .member-name-class {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 5px;
}

.members-table .table-class {
	font-size: 12px;
	font-weight: 700;
	color: #83e0fb;
	text-transform: capitalize;
}

.members-table .table-reset {
	width: 25%;
	min-width: 100px;
}

.members-table .table-kills {
	width: 25%;
	min-width: 100px;
}

.members-table .table-status {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 10%;
	min-width: 100px;
}

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

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

.members-table a.table-name:hover,
.members-table a.table-guild-name:hover {
	opacity: 0.5;
}

.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;
}

.guilds-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-guild {
	font-size: 20px;
	color: #fdefb5e6;
}

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

.list-victories .name-losing-guild:hover,
.list-defeats .name-guild: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');
}

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

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

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

	.guilds-war {
		padding: 10px 15px;
	}
}

.img-container.diamond>svg {
  position: absolute;
  left: 15px;
  top: 15px;
  transform: scale(0.9) rotate(45deg);
}
