@charset "utf-8";

/* CSS Document */
* {
	margin: 0;
	padding: 0;
	font-family: Calibri, Arial, sans-serif;
	outline: none;
	box-sizing: border-box;
}

body {
	--sb-track-color: #010a13;
	--sb-thumb-color: #785a28;
	--sb-size: 7px;
}

body::-webkit-scrollbar {
	width: var(--sb-size)
}

body::-webkit-scrollbar-track {
	background: var(--sb-track-color);
	border-radius: 14px;
}

body::-webkit-scrollbar-thumb {
	background: var(--sb-thumb-color);
	border-radius: 14px;

}

@supports not selector(::-webkit-scrollbar) {
	body {
		scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
	}
}

.modal-body {
	--sb-track-color: #010a13;
	--sb-thumb-color: #785a28;
	--sb-size: 7px;
}

.modal-body::-webkit-scrollbar {
	width: var(--sb-size);
}

.modal-body::-webkit-scrollbar-track {
	background: var(--sb-track-color);
	border-radius: 14px;
}

.modal-body::-webkit-scrollbar-thumb {
	background: var(--sb-thumb-color);
	border-radius: 14px;
}

@supports not selector(::-webkit-scrollbar) {
	.modal-body {
		scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
	}
}


body {
	display: none;
	background-color: #010a13;
}

/* Estilo para a barra de navegação superior */
.nav-bar {
	background-color: #010a13;
	border-top: 2px solid #785A28;
	border-bottom: 1px solid #F0E6D236;
	/* Linha sutil */
	display: flex;
	align-items: center;
	justify-content: left;
	height: 75px;
}

.nav-button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	transition: color 0.3s;
	/* Transição suave de cor */
}

.nav-link {
	position: relative;
	/* Adiciona posição relativa para usar pseudo-elementos */
	text-decoration: none;
	/* Remove sublinhado padrão */
	color: #F0E6D2;
	/* Cor do texto */
	transition: color 0.3s;
	/* Transição suave de cor */
	padding: 25px 15px 0px 15px;
	height: 100%;
}

.nav-link:hover {
	cursor: pointer;
}

.nav-link::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, #F0E6D200 15%, #F0E6D215 100%);
	/* Gradiente translúcido */
	opacity: 0;
	/* Inicia completamente transparente */
	transition: opacity 0.3s;
	/* Transição suave de opacidade */
}

.nav-link:hover::before,
.nav-link.selected::before {
	opacity: 1;
	/* Torna o gradiente visível ao passar o mouse */
}

.nav-icon {
	font-size: 24px;
}

.nav-text {
	font-size: 14px;
	margin-top: 5px;
	transition: color 0.3s;
	/* Transição suave de cor */
}

.title {
	font-family: 'Spiegel' sans-serifs;
	text-transform: uppercase;
	font-weight: bold;
	color: #F0E6D2;
	/* Cor do texto: dourado */
}

.arrow-button {
	display: inline-flex;
	position: relative;
	background-color: #000a17;
	padding: 5px;
	//border: 1px solid #c8a763;
	border-top-left-radius: 25px;
	border-bottom-left-radius: 25px;
}

.arrow-button::before {
	content: '';
	position: absolute;
	top: 5px;
	right: 5px;
	height: 32px;
	width: 32px;
	box-sizing: border-box;
	border: 2px solid #05222d;
}

.arrow-button .circle {
	height: 32px;
	width: 32px;
	border-radius: 50%;
	border: 2px solid transparent;
	background: linear-gradient(#202425, #202425) padding-box, linear-gradient(#c8a763, #715b29) border-box;
	color: #c5c09a;
	cursor: pointer;
	z-index: 1;
}

.arrow-button .main {
	shape-outside: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0% 100%);
	clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, 0% 100%);
	background: linear-gradient(#018699, #006284);
	height: 32px;
	min-width: 155px;
	cursor: pointer;
	border: 0;
	font-family: 'Beaufort';
	font-weight: bold;
	font-size: 15px;
	color: #a3c0c0;
	text-transform: uppercase;
	position: relative;
	margin-left: -16px;
	padding: 0 48px;
}

.arrow-button .main::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	shape-outside: polygon(2px 2px, calc(100% - 22px) 2px, calc(100% - 4px) 50%, calc(100% - 22px) calc(100% - 2px), 2px calc(100% - 2px));
	clip-path: polygon(2px 2px, calc(100% - 16px) 2px, calc(100% - 3px) 50%, calc(100% - 16px) calc(100% - 2px), 2px calc(100% - 2px));
	background-color: #1e222c;
	height: 32px;
	width: 100%;
	z-index: -1;
}

.arrow-button .main::after {
	content: '';
	position: absolute;
	top: -7px;
	left: -23px;
	height: 42px;
	width: 42px;
	box-sizing: content-box;
	border-radius: 50%;
	border: 2px solid transparent;
	background: linear-gradient(#000a17, #000a17) padding-box, linear-gradient(#018699, #006284) border-box;
}

.arrow-button:not(.is-disabled) .main:hover {
	background: linear-gradient(#83d7ca, #1f8faf);
	color: #e2e2d8;
}

.is-primary {
	border: 3px solid transparent;
	background: #1e2328;
	border-image: linear-gradient(#08abac, #01698b) 1;
	transition: all ease .5s;
}

.is-tiny {
	font-size: 16px;
	padding: 0.375rem 2rem;
	border-width: 2px !important;
}

input.submit {
	font-family: 'Beaufort';
	text-transform: uppercase;
	font-size: 18px;
	color: #f0e6d2;
	padding: 0.75rem 2rem;
}

.dropdown {
	position: relative;
	display: inline-block;
}

.dropdown-menu {
	display: none;
	position: absolute;
	z-index: 1;
	background-color: #010a13;
	border-left: 1px solid #785A28;
	border-bottom: 1px solid #785A28;
	border-right: 1px solid #785A28;
	border-radius: unset;
	min-width: 160px;
	box-shadow: 0px 2px 7px 0 #785a28;
	padding: unset;
}

.dropdown-menu a {
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
}

.dropdown-menu a:hover {
	/*background-color: #f1f1f1;*/
}

.dropdown:hover .dropdown-menu {
	display: block;
}

hr {
	border-top: 1px solid #785A28;
	opacity: 0.85;
}

.map {
	border-radius: 3px;
	border: solid 4px #e08c00;
}

.toast {
	border-radius: unset;
	width: unset;
	border: 1px solid #785A28;
}

.toast-header{
	background-color: #020a12;
	color: #785A28;
	border-top-left-radius: unset;
	border-top-right-radius: unset;
	border-bottom: 2px solid #785A28
}

.toast-body{
	background-color: #021323;
	color: #a68349;
}

#logo {
	height: 135px;
	width: 500px;
	margin-left: 39%;
	background: url("images/logo.png") top center;
}

#content {
	margin: auto;
	display: flex;
	justify-content: start;
}

#left {
	float: left;
	width: 190px;
	padding: 10px;
}

#center {
	float: right;
	width: 100%;
	padding-top: 10px;
	padding-right: 10px;
	padding-left: 10px;
}

div.painel {
	margin-bottom: 10px;
	background: #091428;
	width: 100%;
	padding: 6px;
	border: 2px solid #785A28;
	color: #F0E6D2;
}

div.painel h2 {
	padding-left: 6px;
	font-size: 16px;
	color: #F0E6D2;
	border-bottom: 1px #666 dashed;
	margin-bottom: 4px;
}

div.painel p {
	font-size: 12px;
	padding-top: 0px;
	margin-bottom: 0px;
}

div.painel h6 {
	margin: 6px 0;
	text-align: right;
}

div.center {
	text-align: center;
}

#message,
#login {
	font-size: 12px;
}

input,
select,
option {
	border: 0;
	background: #010a13;
}

input.text,
select.text,
option.text {
	border-radius: 6px;
	padding: 6px;
	margin-top: 4px;
	color: #EEE;
}

input.submit {
	font-size: 12px;
	border-radius: 6px;
	padding: 4px 16px;
	margin-top: 6px;
	font-weight: bold;
	cursor: pointer;
	color: #EEE;
}

input.submit:hover {
	background: #95080B;
}

input:disabled {
	background: red;
}

.box{
	border: 2px solid #785A28;
	width: 50px;
	height: 50px;
	background-color: #1e2328;
	color: #ffdd98;
	font-size: 23px;
}

.chat{
	padding-left: 11px;
	padding-top: 12px;
}

.mic{
	padding-left: 14px !important;
	padding-top: 12px !important;
}

.scroll{
	padding-left: 10px;
	padding-top: 12px;
}

.bug{
	padding-left: 12px;
    padding-top: 12px;
}

.friend:hover{
	background-color: #ffffff17;
	color: #fff;
	cursor: pointer;
}

.mainIconContainer{
	width: 20%;
	border-left: 1px solid #F0E6D236;
	padding-left: 12px;
}

.mainIconContainerFlex{
	position: relative;
	bottom: 4px;
}

.mainIconOutBorder{
	width: 60px;
	height: 60px;
	border-radius: 60px;
	border: 2px solid #785A28;
}

.mainIconInContent{
	outline: 3px solid #2d84a7;
	outline-offset: 1px;
	outline-style: outset;
	width: 50px;
	height: 50px;
	border-radius: 50px;
	border: 2px solid #785A28;
	margin: 3.5px;
	background-image: url(https://raw.communitydragon.org/latest/plugins/rcp-be-lol-game-data/global/default/v1/profile-icons/0.jpg);
	background-size: 100% 100%;
	background-repeat: no-repeat;
}

.mainIconOutBorder:hover{
	background-color: #34250ccf;
}

.mainIconInContent::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 50px;
	height: 50px;
	border-radius: 50px;
	margin: 5.5px;
	background-color: #ff000000;
	/* Transparente inicialmente */
	transition: background-color 0.3s ease;
	/* Transição suave */
}

.mainIconInContent::after {
	content: "\f303";
	/* Código do ícone 'pencil' do Font Awesome */
	font-family: "Font Awesome 6 Pro";
	/* Fonte do Font Awesome */
	font-weight: 300;
	-webkit-font-smoothing: antialiased;
	display: var(--fa-display, inline-block);
	font-style: normal;
	font-variant: normal;
	line-height: 1;
	text-rendering: auto;
	/* Para garantir que o ícone seja exibido */
	position: absolute;
	top: 25%;
	left: 7%;
	/* Centraliza o ícone */
	font-size: 25px;
	/* Tamanho do ícone */
	color: transparent;
	/* Inicialmente invisível */
	transition: color 0.3s ease;
	/* Transição suave para a cor no hover */
	pointer-events: none;
	/* Não interfere nas interações de clique */
}

.mainIconInContent:hover::after {
	color: #c5c09a;
	/* Cor do ícone ao passar o mouse */
}

.mainIconInContent:hover::before {
	background-color: #34250ccf;
	cursor: pointer;
}

.modal-content{
	border-radius: unset !important;
}

.modal-header{
	border-bottom: unset !important;
	padding: unset !important;
	align-items: unset !important;

}

.modal-footer{
	border-top: unset !important;
}

.btn-close{
	position: relative !important;
	top: 7px !important;
	right: 6px !important;
	padding: unset !important;
	--bs-btn-close-bg: url("data: image/svg+xml, <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23785A28' ><path d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z' /></svg>")
}

ul#championInfo, ul#championStats {
	list-style-type: none;
	/* Remove os marcadores padrão da lista */
}

ul#championInfo>li,
ul#championStats>li {
	background-size: 16px 16px;
	background-repeat: no-repeat;
	background-position-y: 5px;
	padding-left: 22px;
	text-transform: uppercase;
}

li#attack {
	background-image: url('images/StatMods/Attack_damage_icon.png');
}

li#defense {
	background-image: url('images/StatMods/Armor_icon.png');
}

li#magic {
	background-image: url('images/StatMods/StatModsAdaptiveForceIcon.png');
}

li#difficulty {
	background-image: url('images/StatMods/StatModsTenacityIcon.png');
}

li#hp {
	background-image: url('images/StatMods/Health_icon.webp');
}
li#hpperlevel {
	background-image: url('images/StatMods/Health_regeneration_icon.png');
}
li#mp {
	background-image: url('images/StatMods/Mana_icon.webp');
}
li#mpperlevel {
	background-image: url('images/StatMods/Mana_regeneration_icon.png');
}
li#movespeed {
	background-image: url('images/StatMods/Movement_speed_icon.png');
}
li#armor {
	background-image: url('images/StatMods/Armor_icon.png');
}
li#armorperlevel {
	background-image: url('images/StatMods/Armor_icon.png');
}
li#spellblock {
	background-image: url('images/StatMods/Magic_resistance_icon.webp');
}
li#spellblockperlevel {
	background-image: url('images/StatMods/Magic_resistance_icon.webp');
}
li#attackrange {
	background-image: url('images/StatMods/Range_icon.png');
}
li#hpregen {
	background-image: url('images/StatMods/Health_regeneration_icon.png');
}
li#hpregenperlevel {
	background-image: url('images/StatMods/Health_regeneration_icon.png');
}
li#mpregen {
	background-image: url('images/StatMods/Mana_regeneration_icon.png');
}
li#mpregenperlevel {
	background-image: url('images/StatMods/Mana_regeneration_icon.png');
}
li#crit {
	background-image: url('images/StatMods/Critical_strike_damage_icon.png');
}
li#critperlevel {
	background-image: url('images/StatMods/Critical_strike_damage_icon.png');
}
li#attackdamage {
	background-image: url('images/StatMods/Attack_damage_icon.png');
}
li#attackdamageperlevel {
	background-image: url('images/StatMods/Attack_damage_icon.png');
}
li#attackspeedperlevel {
	background-image: url('images/StatMods/Attack_speed_icon.png');
}
li#attackspeed {
	background-image: url('images/StatMods/Attack_speed_icon.png');
}