* {
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
	scrollbar-color: rgba(191, 213, 255, .3) rgba(191, 213, 255, .1);
	scrollbar-width: thin;
	-webkit-overflow-scrolling: touch;
	-webkit-font-smoothing: antialiased;
	-webkit-text-stroke-width: 0px
}

*:disabled,
* [disabled=true],
* [disabled] {
	opacity: .5;
	pointer-events: none
}

:root {
	--dark: #001926;
	--green: #76ff33;
	--orange: #ffcc00;
	--gray: #bfd5ff;
	--red: #ff3333;
	--error: #ff4848;
	--white-25: rgba(255, 255, 255, .25);
	--padding-horizontal: 4rem
}

@media screen and (max-width: 600px) {
	:root {
		--padding-horizontal: 1.25rem
	}
}

html {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	font-size: 16px
}

@media screen and (max-width: 1600px) {
	html {
		font-size: 14px
	}
}

@media screen and (max-width: 1440px) {
	html {
		font-size: 13px
	}
}

@media screen and (max-width: 1366px) {
	html {
		font-size: 13px
	}
}

@media screen and (max-width: 1024px) {
	html {
		font-size: 11px
	}
}

@media screen and (max-width: 900px) {
	html {
		font-size: 16px
	}
}

@media screen and (max-width: 390px) {
	html {
		font-size: 16px
	}
}

@media screen and (max-width: 340px) {
	html {
		font-size: 13px
	}
}

@media screen and (min-width: 1701px) {
	html {
		font-size: 16px
	}
}

@media screen and (min-width: 2180px) {
	html {
		font-size: 21px
	}
}

@media screen and (min-width: 2700px) {
	html {
		font-size: 23px
	}
}

@media screen and (min-width: 3140px) {
	html {
		font-size: 25px
	}
}

@media screen and (min-width: 3440px) {
	html {
		font-size: 28px
	}
}

button,
input,
textarea {
	font-family: Rubik
}

input:disabled,
input[disabled] {
	opacity: .5
}

h1, h2, h3 {
    text-align: center;
    text-shadow: 1px 1px 1px black;
    background: #45454573;
    border-radius: 10px 10px 0px 0px;
    margin: 0;
}
*::-webkit-scrollbar {
	opacity: .1;
	width: .375rem;
	height: .375rem
}

*::-webkit-scrollbar-track {
	background-color: #bfd5ff1a
}

*::-webkit-scrollbar-thumb {
	background-color: #bfd5ff4d;
	border-radius: .375rem
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    background: #161514;
    overflow-x: hidden;
    overflow-y: auto;
    font-family: Rubik;
    background-repeat: no-repeat !important;
	background-attachment: fixed !important;
	background-size: cover !important;
    background: url(/templates/loleslav/images/background.png);
}
body.header-banner-active {
	padding-top: 80px
}

@media screen and (max-width: 900px) {
	body.header-banner-active {
		padding-top: 0
	}
}

section {
	display: flex;
	flex-direction: column;
	position: relative
}

.popup {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 3;
	pointer-events: none
}

.popup .close-wrapper {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 25, 38, .75);
	opacity: 0;
	transition: .3s ease
}

.popup .content {
	display: flex;
	flex-direction: column;
	background: var(--dark);
	transition: .3s ease;
	opacity: 0;
	transform: translateY(30%);
	z-index: 1;
	border-radius: .625rem;
	border: 1px solid var(--white-25)
}

.popup .content .heading {
	padding: 1.25rem 1.5rem;
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--white-25);
	margin-bottom: 1.5rem
}

.popup .content .heading .title {
	color: #fff;
	font-weight: 500;
	text-transform: uppercase;
	font-size: 1.125rem;
	margin-right: 2rem
}

.popup .content .heading .close-icon {
	width: 1.5rem;
	height: 1.5rem;
	background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCjxnIGlkPSJEZWxldGUiIG9wYWNpdHk9IjAuNSI+DQo8cGF0aCBpZD0iVW5pb24iIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjEgMEwyNCAzTDEyIDE1TDMgMjRMMCAyMUw5IDEyTDAgM0wzIDBMMTIgOUwyMSAwWk0xMiAxNUgxOEwyNCAyMUwyMSAyNEwxMiAxNVoiIGZpbGw9IiNCRkQ1RkYiLz4NCjwvZz4NCjwvc3ZnPg0K);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	opacity: .5;
	transition: .3s ease;
	margin-left: auto;
	cursor: pointer
}

.popup .content .heading .close-icon:hover {
	opacity: 1
}

.popup.active {
	pointer-events: auto
}

.popup.active .close-wrapper {
	opacity: 1
}

.popup.active .content {
	opacity: 1;
	transform: none
}

.support-form .content {
	width: 30rem;
	overflow: hidden
}

@media screen and (max-width: 900px) {
	.support-form .content {
		width: 95vw
	}
}

.support-form .content form {
	width: 100%;
	flex-direction: column;
	padding: 0 1.5rem .75rem;
	display: none;
	position: relative
}

.support-form .content form.active {
	display: flex
}

.support-form .content form .form-group {
	width: 100%;
	display: flex;
	flex-direction: column
}

.support-form .content form .form-group:not(:last-child) {
	margin-bottom: .75rem
}

.support-form .content form .form-group input,
.support-form .content form .form-group textarea {
	border: none;
	outline: none;
	width: 100%;
	border: 1px solid var(--white-25);
	overflow: hidden;
	color: #fff;
	font-size: 1rem;
	font-weight: 500;
	padding: .75rem;
	max-width: 100%;
	background: rgba(0, 0, 0, .25);
	border-radius: .5rem;
	outline: 1px solid transparent;
	transition: .15s ease
}

.support-form .content form .form-group input::-moz-placeholder,
.support-form .content form .form-group textarea::-moz-placeholder {
	font-family: Rubik;
	font-weight: 400;
	color: #fff6;
	font-size: 1rem
}

.support-form .content form .form-group input::placeholder,
.support-form .content form .form-group textarea::placeholder {
	font-family: Rubik;
	font-weight: 400;
	color: #fff6;
	font-size: 1rem
}

.support-form .content form .form-group input:focus,
.support-form .content form .form-group textarea:focus {
	border-color: var(--green);
	outline-color: var(--green)
}

.support-form .content form .form-group input:-moz-read-only {
	pointer-events: none
}

.support-form .content form .form-group input:read-only,
.support-form .content form .form-group input[readonly] {
	pointer-events: none
}

.support-form .content form .form-group textarea {
	min-height: 16rem
}

.support-form .content form .form-group button {
	outline: none;
	border: none;
	background: #ffffff;
	position: relative;
	border-radius: .5rem;
	padding: 1rem 2.25rem;
	color: var(--dark);
	font-size: .75rem;
	line-height: 1rem;
	font-weight: 500;
	letter-spacing: .02em;
	text-transform: uppercase;
	text-decoration: none;
	transition: .3s ease;
	cursor: pointer
}

.support-form .content form .form-group button:hover {
	background: #ffffff
}

.support-form .content form .errors {
	display: flex;
	align-items: center;
	flex-direction: column
}

.support-form .content form .errors .error {
	width: 100%;
	align-items: center;
	background: var(--error);
	border-radius: .5rem;
	color: #fff;
	margin: 1rem 0;
	padding: .75rem 1rem;
	display: none
}

.support-form .content form .errors .error.active {
	display: flex
}

.support-form .content form .errors .error:before {
	content: "";
	background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzAiIGhlaWdodD0iMzAiIHZpZXdCb3g9IjAgMCAzMCAzMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCjxwYXRoIG9wYWNpdHk9IjAuNCIgZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNSAyNi4yNUMyMS4yMTMyIDI2LjI1IDI2LjI1IDIxLjIxMzIgMjYuMjUgMTVDMjYuMjUgOC43ODY4IDIxLjIxMzIgMy43NSAxNSAzLjc1QzguNzg2OCAzLjc1IDMuNzUgOC43ODY4IDMuNzUgMTVDMy43NSAyMS4yMTMyIDguNzg2OCAyNi4yNSAxNSAyNi4yNVpNMTUgMzBDMjMuMjg0MyAzMCAzMCAyMy4yODQzIDMwIDE1QzMwIDYuNzE1NzMgMjMuMjg0MyAwIDE1IDBDNi43MTU3MyAwIDAgNi43MTU3MyAwIDE1QzAgMjMuMjg0MyA2LjcxNTczIDMwIDE1IDMwWiIgZmlsbD0iI2ZmZiIvPg0KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNSAyNi4yNUMyMS4yMTMyIDI2LjI1IDI2LjI1IDIxLjIxMzIgMjYuMjUgMTVDMjYuMjUgOC43ODY4IDIxLjIxMzIgMy43NSAxNSAzLjc1QzguNzg2OCAzLjc1IDMuNzUgOC43ODY4IDMuNzUgMTVDMy43NSAyMS4yMTMyIDguNzg2OCAyNi4yNSAxNSAyNi4yNVpNMTMuMTI1IDE4Ljc1VjIxLjU2MjVIMTYuODc1VjE4Ljc1SDEzLjEyNVpNMTMuMTI1IDE2Ljg3NUwxMy4xMjUgOC40Mzc1SDE2Ljg3NVYxNC4zNzVDMTYuODc1IDE1Ljc1NTcgMTUuNzU1NyAxNi44NzUgMTQuMzc1IDE2Ljg3NUgxMy4xMjVaIiBmaWxsPSIjZmZmIi8+DQo8L3N2Zz4NCg==);
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: contain;
	height: 1.875rem;
	width: 1.875rem;
	min-width: 1.875rem;
	margin-right: .75rem
}

.support-form .content form .success {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: var(--dark);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	opacity: 0;
	pointer-events: none;
	transition: .3s ease
}

.support-form .content form .success.active {
	opacity: 1;
	pointer-events: auto
}

.support-form .content form .success .image {
	width: 6rem;
	height: 6rem;
	margin-bottom: 2rem;
	background-image: url(data:image/png;base64,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);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat
}

.support-form .content form .success .text {
	color: #fff;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.25rem;
	padding: 0 1rem;
	text-align: center
}

@media screen and (max-width: 370px) {
	.support-form .content form .g-recaptcha {
		transform: scale(.8) translate(-12.5%)
	}
}

.popup.video-popup,
.popup.image-popup {
	z-index: 5
}

.popup.video-popup .content,
.popup.image-popup .content {
	width: 60vw;
	position: relative;
	border-radius: 0;
	border: none
}

@media screen and (max-width: 900px) {

	.popup.video-popup .content,
	.popup.image-popup .content {
		width: 90vw
	}
}

.popup.video-popup .content .close-icon,
.popup.image-popup .content .close-icon {
	position: absolute;
	right: -.5rem;
	top: -.5rem;
	transform: translate(100%, -100%);
	width: 1.5rem;
	height: 1.5rem;
	background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCjxnIGlkPSJEZWxldGUiIG9wYWNpdHk9IjAuNSI+DQo8cGF0aCBpZD0iVW5pb24iIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjEgMEwyNCAzTDEyIDE1TDMgMjRMMCAyMUw5IDEyTDAgM0wzIDBMMTIgOUwyMSAwWk0xMiAxNUgxOEwyNCAyMUwyMSAyNEwxMiAxNVoiIGZpbGw9IiNCRkQ1RkYiLz4NCjwvZz4NCjwvc3ZnPg0K);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	opacity: .5;
	transition: .3s ease;
	margin-left: auto;
	cursor: pointer
}

@media screen and (max-width: 900px) {

	.popup.video-popup .content .close-icon,
	.popup.image-popup .content .close-icon {
		right: 0;
		top: -1rem;
		transform: translateY(-100%);
		opacity: 1
	}
}

.popup.video-popup .content .close-icon:hover,
.popup.image-popup .content .close-icon:hover {
	opacity: 1
}

.popup.video-popup .content .filler,
.popup.image-popup .content .filler {
	padding-top: 56.25%
}

.popup.video-popup .content iframe,
.popup.video-popup .content img,
.popup.image-popup .content iframe,
.popup.image-popup .content img {
	position: absolute;
	width: 100%;
	height: 100%
}

.popup.video-popup .content img,
.popup.image-popup .content img {
	-o-object-fit: contain;
	object-fit: contain
}

.news {
	padding-bottom: 5rem
}

.news.main-page-news {
	transform: translate(5.5rem);
	opacity: 0;
	transition: .6s ease-out;
	transition-delay: 1ms;
	will-change: transform, opacity
}

.news h2 {
	padding-left: var(--padding-horizontal);
	font-size: .75rem;
	font-weight: 500;
	line-height: 1rem;
	letter-spacing: .0375rem;
	text-transform: uppercase;
	color: var(--green);
	margin-bottom: 1rem
}

.news .news-buttons-wrapper {
	position: relative
}

.news .news-buttons-wrapper .slider-button {
	position: absolute;
	top: 29%;
	width: 4rem;
	height: 4rem;
	border: 1px solid rgba(255, 255, 255, .5);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	z-index: 1;
	cursor: pointer;
	transition: .15s ease;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none
}

@media screen and (max-width: 900px) {
	.news .news-buttons-wrapper .slider-button {
		display: none
	}
}

.news .news-buttons-wrapper .slider-button.button-prev {
	left: 2rem;
	transform: rotate(180deg)
}

.news .news-buttons-wrapper .slider-button.button-next {
	right: 2rem
}

.news .news-buttons-wrapper .slider-button:before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) scale(.9);
	width: 100%;
	height: 100%;
	background: #ffffff;
	border-radius: 50%;
	z-index: -1;
	transition: .15s ease
}

.news .news-buttons-wrapper .slider-button img {
	width: 1.5rem;
	height: 1.5rem;
	-o-object-fit: contain;
	object-fit: contain
}

.news .news-buttons-wrapper .slider-button.disabled {
	opacity: 0
}

.news .news-buttons-wrapper .slider-button:hover:before {
	transform: translate(-50%, -50%)
}

.news .news-wrapper {
	display: flex;
	padding-left: var(--padding-horizontal);
	overflow: hidden;
	position: relative
}

.news .news-wrapper .news-inner {
	display: flex;
	padding-right: var(--padding-horizontal)
}

.news .news-wrapper.scroll .news-inner {
	pointer-events: none
}

.loader {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background: #263B46;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .15s ease
}

.loader .loader-inner {
	width: 3.375rem;
	height: 3.375rem;
	border-radius: 50%;
	border: .325rem solid #5C6C74;
	position: relative
}

.loader .loader-inner:before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: -.325rem;
	top: -.325rem;
	border-radius: 50%;
	border: .325rem solid #fefefe;
	border-color: #fefefe transparent transparent transparent;
	animation: load infinite 1s linear
}

@keyframes load {
	0% {
		transform: rotate(0)
	}

	to {
		transform: rotate(360deg)
	}
}

.loader.fade-out {
	opacity: 0;
	pointer-events: none
}

.loader.fade-out .loader-inner {
	animation: none
}

.news-card {
	display: flex;
	flex-direction: column;
	width: 24.85rem;
	cursor: pointer;
	text-decoration: none
}

.news-card:not(:last-child) {
	margin-right: 1rem
}

@media screen and (max-width: 450px) {
	.news-card {
		width: 75vw
	}
}

.news-card .image {
	width: 100%;
	border-radius: 1rem;
	border: 1px solid var(--white-25);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: .75rem;
	transition: .15s ease;
	overflow: hidden;
	position: relative
}

.news-card .image .image-wrapper {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 100%;
	height: 100%;
	border: 1px solid var(--white-15, rgba(255, 255, 255, .15));
	border-radius: .625rem;
	transform: translate(-50%, -50%) scaleX(.98) scaleY(.96);
	transition: .15s ease;
	overflow: hidden
}

.news-card .image .image-wrapper img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	pointer-events: none
}

.news-card .image .filler {
	width: 100%;
	padding-top: 56.25%
}

.news-card .info {
	display: flex;
	align-items: center;
	color: #ffffff80;
	font-size: .75rem;
	font-weight: 500;
	text-transform: uppercase;
	margin-bottom: .5rem;
	letter-spacing: .00375rem
}

.news-card .info .date {
	margin-right: auto
}

.news-card h3 {
	color: #fff;
	font-size: 1.125rem;
	font-weight: 500;
	text-transform: uppercase;
	line-height: 122%;
	transition: .15s ease
}

.news-card:hover h3 {
	color: var(--green)
}

.news-card:hover .image {
	border-color: var(--green);
	outline: 1px solid var(--green)
}

.news-card:hover .image .image-wrapper {
	transform: translate(-50%, -50%) scaleX(1.04) scaleY(1.02);
	border-color: var(--green);
	border-radius: 1rem
}

.news-card.all-news .image .image-wrapper {
	background: rgba(191, 213, 255, .15);
	display: flex;
	align-items: center;
	justify-content: center
}

.news-card.all-news .image .image-wrapper .all-news-title {
	text-decoration: none;
	color: var(--gray);
	font-size: 1.125rem;
	text-transform: uppercase;
	line-height: 122%;
	font-weight: 500
}
.additional-links {
    padding: 28px;
    left: 3%;
    width: 66%;
    height: 100%;
    border-radius: 6px 3px 10px 5px;
    border: 9px solid rgb(105 49 11);
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: .15s ease;
    background: url(/templates/loleslav/images/bg-repeat.png);
}


.additional-links h1 {
    border-bottom: 1px solid white;
    font-size: 1.25rem;
    font-weight: 500;
    height: 43px;
    display: grid;
    border-radius: 11px;
    line-height: 1rem;
    letter-spacing: .0375rem;
    text-transform: uppercase;
    color: white;
    margin-bottom: .625rem;
    align-content: center;
    justify-content: center;
    align-items: start;
    justify-items: center;
}

.additional-links label {
	font-size: 0.90rem;
    font-weight: 500;
    line-height: 1rem;
    letter-spacing: .0375rem;
    text-transform: uppercase;
    color: white;
    margin-bottom: .625rem;
}
.additional-links button {
    background-color: orange;
    color: black;
    border: 1px solid transparent;
    font-weight: bold;
    padding: 10px 20px;
    transition: 0.4s;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
}

.additional-links button:hover {
    filter: drop-shadow(1px 2px 2px white);
	transform: translateY(-2px);
    border: 1px solid black;
	font-weight: bold;
}

.btn {
    background-color: orange;
    color: black;
    border: 2px solid transparent;
    font-weight: bold;
    padding: 7px 19px;
    text-shadow: 1px 1px 1px navajowhite;
    transition: 0.4s;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 9px;
}

.btn:hover {
    filter: drop-shadow(1px 2px 2px white);
	transform: translateY(-2px);
    border: 2px solid black;
	font-weight: bold;
}
table {
     width: 100% !important;; /* Define a largura da tabela como 100% */
    table-layout: fixed !important;; /* Define a largura das células da tabela como fixa */
    overflow: auto !important;; /* Adiciona uma barra de rolagem se o conteúdo da tabela for maior que a largura definida */
}

.info {
    display: grid;
    border-radius: 23px;
    border-top: 2px solid white;
    height: 100%;
    border-bottom: 2px solid white;
    padding: 13px;
    margin-top: -1%;
    align-content: center;
    justify-content: center;
    align-items: center;
}

button.btn:hover {
    filter: drop-shadow(1px 2px 2px white);
	transform: translateY(-2px);
    border: 1px solid black;
	font-weight: bold;
}

.additional-links input[type="text"] {
    width: auto;
    padding: 10px 40px 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #e8f0fd;
    border: 1px solid black;
    color: #352406;
}
.additional-links input[type="repeat"] {
    width: auto;
    padding: 10px 40px 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #d4d4d4;
    color: #352406;
}

.login-button:hover, .create-account-button:hover {
    box-shadow: 0 0 5px 1px white; /* Adiciona um brilho branco de 1px ao passar o mouse */
}.login-button.flashing {
    animation: flashBorder 0.5s;
}

@keyframes flashBorder {
    0% { box-shadow: 0 0 0 0 white; }
    50% { box-shadow: 0 0 5px 1px white; }
    100% { box-shadow: 0 0 0 0 white; }
}
/* Estilo para todos os selects */
form select.form-select {
    width: 228px;
    padding: 10px;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    background-color: #fff9ed;
    color: black;
    outline: none;
}
form select.form-select:active {
    width: 228px;
    padding: 10px;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    background-color: #fff9ed;
    color: black;
    outline: none;
}
td.white {
    background: #be7b00;
    color: black;
    border-radius: 5px;
}
/* Estilo para o select quando está focado diretamente */
form select.form-select:focus {
    border-color: orange;
    box-shadow: 0 0 0 0.2rem rgba(255, 165, 0, 0.5); /* Adiciona uma sombra laranja quando o select está focado */
}
/* Estilo para quando o select está focado */
form select.form-select:focus {
    border-color: orange;
}

.additional-links input[type="email"] {
    width: auto;
    padding: 10px 40px 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #e8f0fd;
    color: #352406;
}
.additional-links input[type="password"] {
    width: auto;
    padding: 10px 40px 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #ffffff;
    color: #352406;
}
.additional-links input[type="submit"] {
    background-color: orange;
    color: black;
    border: 1px solid transparent;
    min-width: 80px;
    width: 100px;
    font-weight: bold;
    padding: 10px 20px;
    transition: 0.4s;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
}
.additional-links input[type="submit"]:hover {
    filter: drop-shadow(1px 2px 2px white);
	transform: translateY(-2px);
    border: 1px solid black;
	font-weight: bold;
}
@media screen and (max-width: 900px) {
	.additional-links {
		margin-bottom: 5rem
	}
}

.additional-links h4 {
    font-size: 1.55rem;
    font-weight: 500;
    line-height: 1rem;
    display: grid;
    letter-spacing: .0375rem;
    text-transform: uppercase;
    color: #ffc20e;
    margin-bottom: .625rem;
    height: 46px;
    margin-top: -3%;
    border-bottom: 1px solid black;
    background: #00000085;
    width: 106%;
    align-content: center;
    justify-content: center;
}
h4 {
    font-size: 1.55rem;
    font-weight: 500;
    line-height: 1rem;
    display: grid;
    letter-spacing: .0375rem;
    text-transform: uppercase;
    color: #ffc20e;
    margin-bottom: .625rem;
    height: 46px;
    margin-top: -3%;
    border-bottom: 1px solid black;
    background: #00000085;
    width: 106%;
    align-content: center;
    justify-content: center;
}
.additional-links .links {
    width: 105%;
    margin-top: -2%;
    display: flex;
    grid-template-columns: 1fr 1fr;
    color: white;
    align-content: center;
    justify-content: center;
}

/* Configurações de cores */
.bg-dark {
    background-color: #343a40 !important;
    color: #fff !important;
}

.bg-light {
    background-color: #fff !important;
    color: #000 !important;
}

.navbar-dark {
    background-color: #343a40 !important;
    color: #fff !important;
}

.navbar-light {
    background-color: #fff !important;
    color: #000 !important;
}

.table-dark {
    background-color: #343a40 !important;
    color: #fff !important;
}

.table-light {
    background-color: #fff !important;
    color: #000 !important;
}

.btn-secondary {
    background-color: #6c757d !important;
    color: #fff !important;
}

.btn-primary {
    background-color: #007bff !important;
    color: #fff !important;
}

.text-white {
    color: #fff !important;
}

/* Configurações de borda */
.dark-border {
    border-color: #fff !important;
}

.light-border {
    border-color: #fff !important;
}

.vdark-border {
    border-color: #212529 !important;
}
.additional-links input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: white;
    width: 19px;
    height: 19px;
    margin: 6px;
    border: 2px solid transparent;
    border-radius: 4px;
    outline: none;
    transition: all 0.3s ease;
}

.additional-links input[type="checkbox"]:checked {
    background-color: #FFA500; /* Cor laranja */
    border-color: #000; /* Cor preta */
}

.additional-links input[type="checkbox"]::before {
    content: "\2713"; /* Código unicode para o marcador de seleção */
    display: block;
    width: 100%;
    height: 100%;
    color: #fff; /* Cor do marcador de seleção */
    text-align: center;
    line-height: 16px; /* Alinhar verticalmente */
    font-size: 14px;
    transition: all 0.3s ease;
    visibility: hidden; /* Inicialmente oculto */
}

.additional-links input[type="checkbox"]:checked::before {
    visibility: visible; /* Exibir quando checked */
}


@media screen and (max-width: 900px) {
	.additional-links .links {
		grid-template-columns: 1fr
	}
}

.additional-links .links .link {
    transition: .15s ease;
}

.additional-links .links .link .filler {
	width: 100%;
	padding-top: 45.04%
}

@media screen and (max-width: 600px) {
	.additional-links .links .link .filler {
		padding-top: 59%
	}
}

.additional-links .links .link .content-wrapper {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: hidden
}

.additional-links .links .link .image {
	border-radius: .625rem;
	border: 1px solid rgba(255, 255, 255, .25);
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) scale(.985, .97);
	z-index: -1;
	transition: .15s ease
}

@media screen and (max-width: 600px) {
	.additional-links .links .link .image {
		transform: translate(-50%, -50%) scale(.965, .95)
	}
}

.additional-links .links .link .image img,
.additional-links .links .link .image video {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover
}

.additional-links .links .link .image:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 50%;
	border-radius: 10px;
	background: radial-gradient(100% 100% at 0% 100%, var(--dark) 0%, rgba(0, 25, 38, 0) 100%);
	transition: .15s ease
}

.additional-links .links .link .info {
	display: flex;
	flex-direction: column;
	padding: .75rem 1.25rem;
	transform: translateY(calc(100% - 3.1225rem));
	transition: .15s ease;
	pointer-events: none
}

@media screen and (max-width: 900px) {
	.additional-links .links .link .info {
		transform: none
	}
}

.additional-links .links .link .info h3 {
	margin: 0;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 122%;
	text-transform: uppercase;
	color: #fff
}

.additional-links .links .link .info p {
	margin: 0;
	font-size: 1rem;
	color: #fff;
	margin-top: .25rem;
	opacity: 0;
	transition: .15s ease
}

@media screen and (max-width: 900px) {
	.additional-links .links .link .info p {
		display: none
	}
}

.additional-links .links .link:after {
	content: "";
	position: absolute;
	right: 1.125rem;
	top: 1.125rem;
	width: 1rem;
	height: 1rem;
	background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCjxyZWN0IHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgcng9IjMiIGZpbGw9IndoaXRlIi8+DQo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQgNEM0IDMuNDQ3NzIgNC40NDc3MiAzIDUgM0gxMkMxMi41NTIzIDMgMTMgMy40NDc3MiAxMyA0VjExQzEzIDExLjU1MjMgMTIuNTUyMyAxMiAxMiAxMkMxMS40NDc3IDEyIDExIDExLjU1MjMgMTEgMTFWNi40MTQyMUw0LjcwNzExIDEyLjcwNzFDNC4zMTY1OCAxMy4wOTc2IDMuNjgzNDIgMTMuMDk3NiAzLjI5Mjg5IDEyLjcwNzFDMi45MDIzNyAxMi4zMTY2IDIuOTAyMzcgMTEuNjgzNCAzLjI5Mjg5IDExLjI5MjlMOS41ODU3OSA1SDVDNC40NDc3MiA1IDQgNC41NTIyOCA0IDRaIiBmaWxsPSIjMDAxOTI2Ii8+DQo8L3N2Zz4NCg==);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	transition: .15s ease
}

.additional-links .links .link:hover {
	border-color: var(--gray);
	transition-delay: .1s
}

.additional-links .links .link:hover .image {
	border-color: var(--gray);
	outline: 1px solid var(--gray);
	transform: translate(-50%, -50%);
	border-radius: 1rem
}

.additional-links .links .link:hover .image:after {
	opacity: .5
}

@media screen and (max-width: 550px) {
	.additional-links .links .link:hover .image {
		border-radius: .625rem
	}
}

.additional-links .links .link:hover .info {
	transform: none
}

.additional-links .links .link:hover .info p {
	opacity: 1
}

.additional-links .links .link:hover:after {
	transform: translate(50%, -50%)
}

.additional-links .links .link.e-sports .info h3 {
	color: #ccaa7b
}

@media screen and (max-width: 600px) {
	.additional-links .links .link .info {
		transform: none
	}

	.additional-links .links .link .info p {
		opacity: 1
	}
}

.social-links {
	padding: 0 var(--padding-horizontal)
}

.social-links h2 {
	font-size: .75rem;
	font-weight: 500;
	line-height: 1rem;
	letter-spacing: .0375rem;
	text-transform: uppercase;
	color: var(--green);
	margin-bottom: .625rem
}

.social-links .social-links-wrapper {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: 1fr;
    gap: .875rem;
    margin-bottom: 6rem;
    width: 74%;
    margin-left: 6%;
    align-content: center;
    justify-content: center;
    align-items: center;
    justify-items: center;
}

@media screen and (max-width: 1330px) {
	.social-links .social-links-wrapper {
		grid-template-columns: repeat(5, 1fr)
	}
}

@media screen and (max-width: 1130px) {
	.social-links .social-links-wrapper {
		grid-template-columns: repeat(4, 1fr)
	}
}

@media screen and (max-width: 900px) {
	.social-links .social-links-wrapper {
		grid-template-columns: repeat(2, 1fr)
	}
}

@media screen and (max-width: 600px) {
	.social-links .social-links-wrapper {
		grid-template-columns: repeat(2, 1fr)
	}
}

.social-links .social-links-wrapper .social-link {
	width: 100%;
	height: 100%;
	border-radius: 1rem;
	border: 1px solid var(--white-25);
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: .15s ease;
	aspect-ratio: 1;
	overflow: hidden
}

.social-links .social-links-wrapper .social-link .inner {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: flex-end;
	position: relative
}

.social-links .social-links-wrapper .social-link .inner .icon {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 3rem;
	height: 3rem
}

@media screen and (max-width: 700px) {
	.social-links .social-links-wrapper .social-link .inner .icon {
		width: 2.5rem;
		height: 2.5rem
	}
}

@media screen and (max-width: 500px) {
	.social-links .social-links-wrapper .social-link .inner .icon {
		width: 2rem;
		height: 2rem
	}
}

.social-links .social-links-wrapper .social-link .inner .icon img {
	width: 100%;
	-o-object-fit: contain;
	object-fit: contain
}

.social-links .social-links-wrapper .social-link .inner .info {
    padding: 1.125rem 1.375rem;
    transform: translateY(calc(100% - 3.385rem));
    transition: .15s ease;
    pointer-events: none;
    position: absolute;
}

@media screen and (max-width: 600px) {
	.social-links .social-links-wrapper .social-link .inner .info {
		width: 100%;
		text-align: center
	}
}

.social-links .social-links-wrapper .social-link .inner .info .name {
	color: #fff;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 122%;
	text-transform: uppercase
}

@media screen and (max-width: 600px) {
	.social-links .social-links-wrapper .social-link .inner .info .name {
		padding-bottom: 1rem
	}
}

.social-links .social-links-wrapper .social-link .inner .info p {
	margin: 0;
	font-size: 1rem;
	color: #fff;
	margin-top: .25rem;
	opacity: 0;
	transition: .15s ease
}

@media screen and (max-width: 600px) {
	.social-links .social-links-wrapper .social-link .inner .info p {
		display: none
	}
}

.social-links .social-links-wrapper .social-link .inner:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(.95);
    background: #41200e;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: .625rem;
    transition: .15s ease;
}

@media screen and (max-width: 900px) {
	.social-links .social-links-wrapper .social-link .inner:before {
		transform: translate(-50%, -50%) scale(.91)
	}
}

.social-links .social-links-wrapper .social-link .inner:after {
	content: "";
	position: absolute;
	right: 1.125rem;
	top: 1.125rem;
	width: 1rem;
	height: 1rem;
	background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCjxyZWN0IHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgcng9IjMiIGZpbGw9IndoaXRlIi8+DQo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQgNEM0IDMuNDQ3NzIgNC40NDc3MiAzIDUgM0gxMkMxMi41NTIzIDMgMTMgMy40NDc3MiAxMyA0VjExQzEzIDExLjU1MjMgMTIuNTUyMyAxMiAxMiAxMkMxMS40NDc3IDEyIDExIDExLjU1MjMgMTEgMTFWNi40MTQyMUw0LjcwNzExIDEyLjcwNzFDNC4zMTY1OCAxMy4wOTc2IDMuNjgzNDIgMTMuMDk3NiAzLjI5Mjg5IDEyLjcwNzFDMi45MDIzNyAxMi4zMTY2IDIuOTAyMzcgMTEuNjgzNCAzLjI5Mjg5IDExLjI5MjlMOS41ODU3OSA1SDVDNC40NDc3MiA1IDQgNC41NTIyOCA0IDRaIiBmaWxsPSIjMDAxOTI2Ii8+DQo8L3N2Zz4NCg==);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	transition: .15s ease
}

.social-links .social-links-wrapper .social-link:hover {
	border-color: var(--gray);
	transition-delay: .05s
}

.social-links .social-links-wrapper .social-link:hover .inner:before {
	transform: translate(-49.9%, -50%) scale(.998);
	border-color: var(--gray);
	outline: 1px solid var(--gray);
	border-radius: 1rem
}

.social-links .social-links-wrapper .social-link:hover .inner:after {
	transform: translate(.375rem, -.375rem)
}

.social-links .social-links-wrapper .social-link:hover .inner .info {
	transform: none
}

.social-links .social-links-wrapper .social-link:hover .inner .info p {
	opacity: 1
}

.cookies {
	position: fixed;
	width: 100%;
	background: var(--dark);
	padding: 1.125rem;
	display: flex;
	align-items: center;
	justify-content: center;
	left: 0;
	bottom: 0;
	border-top: 1px solid rgba(255, 255, 255, .25);
	z-index: 2
}

.cookies p {
	margin: 0;
	padding: 0;
	color: #e6e6e6e8;
	font-size: .875rem
}

.cookies p a {
	text-decoration: none;
	color: var(--green);
	transition: .15s ease
}

.cookies p a:hover {
	opacity: .85
}

.cookies button {
	margin: 0;
	padding: 0;
	outline: none;
	border: none;
	color: var(--dark);
	font-weight: 500;
	font-size: .875rem;
	background: var(--green);
	padding: .25rem .5rem;
	margin-left: .625rem;
	text-transform: uppercase;
	border-radius: .25rem;
	cursor: pointer;
	transition: .15s ease
}

.cookies button:hover {
	opacity: .85
}

.cookies-ru {
	position: fixed;
	bottom: 1.875em;
	z-index: 3;
	background: #1d3546;
	border: .0625em solid var(--white-25);
	border-radius: .375em;
	padding-bottom: 1.875em;
	width: 60em;
	height: 24.5em;
	left: 50%;
	transform: translate(-50%);
	font-size: 16px
}

.cookies-ru.cookie-notification_hidden_yes {
	display: none
}

.cookies-ru .heading {
	display: flex;
	justify-content: space-between;
	padding: 0 1.875em;
	text-transform: uppercase;
	border-bottom: 1px solid var(--white-25)
}

.cookies-ru .heading .option {
	position: relative;
	width: 100%;
	display: flex;
	justify-content: center;
	color: #fff;
	font-family: Rubik;
	font-style: normal;
	font-weight: 500;
	font-size: 1em;
	line-height: 1.125em;
	transition: .3s ease;
	text-align: center;
	cursor: pointer;
	padding: 1em 0
}

.cookies-ru .heading .option:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -.0625em;
	width: 100%;
	height: .125em;
	background-color: #76ff33;
	visibility: hidden;
	transform: scaleX(0);
	transition: all .3s ease-in-out
}

.cookies-ru .heading .option:hover {
	color: #76ff33
}

.cookies-ru .heading .option:hover:after {
	visibility: visible;
	transform: scaleX(1)
}

.cookies-ru .heading .chosen {
	color: #76ff33;
	cursor: default
}

.cookies-ru .heading .chosen:after {
	visibility: visible;
	transform: scaleX(1)
}

.cookies-ru .main-block {
	font-family: Rubik;
	font-style: normal;
	font-weight: 400;
	font-size: 1em;
	line-height: 140%;
	color: #bfd5ff;
	height: 16.5em;
	padding: 1.5em .375em 1.875em
}

.cookies-ru .main-block .title {
	font-family: Rubik;
	font-style: normal;
	font-weight: 500;
	font-size: 1.625em;
	line-height: 120%;
	color: #fff;
	margin-bottom: .5em;
	display: flex;
	align-items: center
}

.cookies-ru .main-block .text-approval {
	font-size: .875em
}

.cookies-ru .main-block .option-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: .25em
}

.cookies-ru .main-block .option-header .title {
	text-transform: uppercase;
	font-size: 1em
}

.cookies-ru .main-block .info-table {
	margin-top: .5em;
	border-collapse: collapse;
	display: none
}

.cookies-ru .main-block .info-table.visible {
	display: block
}

.cookies-ru .main-block .info-table th,
.cookies-ru .main-block .info-table td {
	border: .0625em solid #496980;
	border-radius: .375em;
	padding: .5em;
	text-align: -webkit-center
}

.cookies-ru .main-block .text {
	display: none;
	overflow: auto;
	height: 13.5em;
	padding: 0 1.5em
}

.cookies-ru .main-block .text.chosen {
	display: block
}

.cookies-ru .main-block .text::-webkit-scrollbar {
	opacity: .1;
	width: .25em;
	height: 1em;
	right: .5em
}

.cookies-ru .main-block .text::-webkit-scrollbar-track {
	background-color: #bfd5ff00
}

.cookies-ru .main-block .text::-webkit-scrollbar-thumb {
	background-color: #bfd5ff4d
}

.cookies-ru .main-block .text .details-option {
	margin-bottom: 1.375em
}

.cookies-ru .main-block .text .details-option .details-settings {
	display: flex;
	color: #76ff33cc;
	align-items: center;
	cursor: pointer;
	opacity: .8;
	transition: .3s ease;
	margin-top: .125em
}

.cookies-ru .main-block .text .details-option .details-settings .arrow-details {
	background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iNyIgdmlld0JveD0iMCAwIDEwIDciIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+DQo8cGF0aCBkPSJNMSAxTDUgNUw5IDEiIHN0cm9rZT0iIzg0RDEwNSIgc3Ryb2tlLXdpZHRoPSIyIi8+DQo8L3N2Zz4NCg==) no-repeat center center;
	height: .5em;
	width: 1em;
	margin-left: .125em;
	transition: transform .3s ease-in-out 0s;
	transform: rotate(0)
}

.cookies-ru .main-block .text .details-option .details-settings.active .arrow-details {
	transform: rotate(180deg)
}

.cookies-ru .main-block .text.info a,
.cookies-ru .main-block .more-info,
.cookies-ru .main-block .decline-cookies {
	color: #76ff33cc;
	opacity: .8;
	text-decoration: none;
	transition: .3s ease;
	cursor: pointer
}

.cookies-ru .main-block .text.info a:hover,
.cookies-ru .main-block .more-info:hover,
.cookies-ru .main-block .decline-cookies:hover {
	opacity: 1
}

.cookies-ru .buttons-block {
	display: flex;
	justify-content: space-between;
	padding: 0 1.875em;
	cursor: pointer
}

.cookies-ru .buttons-block div {
	text-transform: uppercase;
	padding: 1em;
	font-family: Rubik;
	font-style: normal;
	font-weight: 700;
	font-size: 1em;
	line-height: 1.125em;
	border-radius: .375em;
	width: 18em;
	display: flex;
	justify-content: center;
	transition: .3s ease;
	border: .0625em solid rgba(118, 255, 51, 0);
	align-items: center;
	text-align: center
}

.cookies-ru .buttons-block div.disagree,
.cookies-ru .buttons-block div.settings {
	background: rgba(118, 255, 51, .4);
	color: #76ff33
}

.cookies-ru .buttons-block div.agree {
	background: rgba(118, 255, 51, .8);
	color: #fff
}

.cookies-ru .buttons-block div:hover {
	background: rgba(118, 255, 51, 0);
	color: #fff;
	border: .0625em solid #496980
}

.cookies-ru .info-text {
	position: relative
}

.cookies-ru .info-text:hover,
.cookies-ru .info-text.active {
	opacity: 1
}

.cookies-ru .save-settings {
	text-transform: uppercase;
	padding: 1em;
	font-family: Rubik;
	font-style: normal;
	font-weight: 700;
	font-size: 1em;
	line-height: 1.125em;
	border-radius: .375em;
	display: flex;
	justify-content: center;
	transition: .3s ease;
	border: .0625em solid rgba(118, 255, 51, 0);
	align-items: center;
	text-align: center;
	background: rgba(118, 255, 51, .8);
	color: #fff;
	cursor: pointer;
	width: 100%;
	margin-bottom: .125em
}

.cookies-ru .toggle-button {
	position: relative;
	width: 2.75em;
	height: 1.5em;
	opacity: .9;
	border-radius: 6.25em;
	background: rgba(191, 213, 255, .25);
	transition: background .3s ease;
	cursor: pointer
}

.cookies-ru .toggle-button .circle {
	position: absolute;
	width: 1em;
	height: 1em;
	min-height: 1em;
	min-width: 1em;
	left: .25em;
	top: calc(50% - .5em);
	background: #bfd5ff;
	border-radius: 1em;
	transition: background .3s ease, left .3s ease, .3s ease-out
}

.cookies-ru .toggle-button.on {
	background: rgba(118, 255, 51, .25)
}

.cookies-ru .toggle-button.on .circle {
	background: #76ff33;
	transform: translate(125%)
}

.cookies-ru .toggle-button.on.default {
	opacity: .3;
	pointer-events: none
}

@media screen and (max-width: 1024px) {
	.cookies-ru {
		font-size: 11px
	}
}

@media (max-width: 900px) {
	.cookies-ru {
		font-size: 14px;
		height: auto;
		width: calc(100% - var(--padding-horizontal) * 2)
	}

	.cookies-ru .main-block {
		height: 17.5em
	}

	.cookies-ru .main-block .approval {
		height: 100%
	}

	.cookies-ru .main-block .info-table {
		overflow-x: auto;
		overflow-y: visible
	}

	.cookies-ru .buttons-block {
		flex-direction: column;
		align-items: center
	}

	.cookies-ru .buttons-block div {
		width: 100%
	}

	.cookies-ru .buttons-block div:not(:last-child) {
		margin-bottom: .625em
	}

	.cookies-ru .heading .option {
		align-items: center
	}
}

@media (max-width: 450px) {
	.cookies-ru {
		font-size: 12px
	}
}

/* Estilizando o radio button */
input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Estilizando a aparência do radio button */
input[type="radio"] + label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    color: black;
}

/* Estilizando a aparência do círculo do radio button */
input[type="radio"] + label:before {
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
  width: 10px;
  height: 10px;
  border: 2px solid #aaa;
  border-radius: 50%;
  background-color: #fff;
}

/* Estilizando a aparência do círculo do radio button quando selecionado */
input[type="radio"]:checked + label:before {
  background-color: orange;
  border-color: orange;
}

/* Estilizando a aparência do ponto central do radio button quando selecionado */
input[type="radio"]:checked + label:after {
  content: '';
  position: absolute;
  top: 6px;
  left: 4px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #fff;
}

/* Estilizando o texto ao lado do radio button */
label {
  margin-right: 10px;
}

th {
	text-align: center;
}
.additionalrank {
    padding: 28px;
    left: -3%;
    float: right;
    width: 297px;
    min-width: 293px;
    height: 100%;
    border-radius: 6px 3px 10px 5px;
    border: 9px solid rgb(105 49 11);
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: .15s ease;
    background: url(/templates/loleslav/images/bg-repeat.png);
}
.containerrank {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    padding: 20px !important;
}
.card {
    position: relative !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-direction: column !important;
    flex-direction: row !important;
    filter: drop-shadow(1px 2px 3px white) !important;
    overflow: hidden !important;
    min-width: 0 !important;
    border: 1px solid #ffffff99 !important;
    width: 246px !important;
    word-wrap: break-word !important;
    background-color: #5e3115a8 !important;
    background-clip: border-box !important;
    border-radius: 1.25rem !important;
    flex-wrap: nowrap !important;
}
.player-info {
    margin-left: 16px !important;
    margin-top: 14px !important;
    height: 74px !important;
    padding-top: 8px !important;
    border-left: 1px solid white !important;
    padding-left: 29px !important;
    line-height: 20px !important;
}
.player-info .player-name {
    margin: 0 !important;
    text-shadow: 1px 1px 1px black !important;
    color: orange !important;
    font-size: 16px !important;
}
.player-level {
    margin: -1px !important;
    font-size: 14px !important;
    color: white !important;
    font-size: 13px !important;
    color: #ffdeaf !important;
    text-shadow: 1px 1px 1px black !important;
}
.player-img {
    width: 100px !important;
    height: 96px !important;
    border-right: 1px solid white !important;
    border-radius: 50% !important;
    object-fit: cover !important;
}


