@font-face {
	font-family: aassassinninjaregular;
	src: url(../fonts/assassinninja.woff2) format('woff2'), url(../fonts/assassinninja.woff) format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: fot-comicreggae_stdb;
	src: url(../fonts/comic_reggaestd.woff2) format('woff2'), url(../fonts/comic_reggaestd.woff) format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: fot-reggae_std_bregular;
	src: url(../fonts/fot_reggaestd.woff2) format('woff2'), url(../fonts/fot_reggaestd.woff) format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: itc_machine_stdmedium;
	src: url(../fonts/machinestd.woff2) format('woff2'), url(../fonts/machinestd.woff) format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: bebas neue;
	src: url(../fonts/bebasneue_regular-webfont.eot);
	src: url(../fonts/bebasneue_regular-webfont.eot?#iefix) format('embedded-opentype'),
		url(../fonts/bebasneue_regular-webfont.woff2) format('woff2'),
		url(../fonts/bebasneue_regular-webfont.woff) format('woff'),
		url(../fonts/bebasneue_regular-webfont.ttf) format('truetype'),
		url(../fonts/bebasneue_regular-webfont.svg#bebas_neue_regularregular) format('svg');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: bebas neue bold;
	src: url(../fonts/bebasneue_bold-webfont.eot);
	src: url(../fonts/bebasneue_bold-webfont.eot?#iefix) format('embedded-opentype'),
		url(../fonts/bebasneue_bold-webfont.woff2) format('woff2'), url(../fonts/bebasneue_bold-webfont.woff) format('woff'),
		url(../fonts/bebasneue_bold-webfont.ttf) format('truetype'),
		url(../fonts/bebasneue_bold-webfont.svg#bebas_neuebold) format('svg');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
    background: url(../images/bg3.png) center top no-repeat, #061123;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: 0% 0%;
    background-size: 100% 100%;
    width: 100%;
    overflow-x: hidden;
}

/* Style dla trybu ciemnego */
body.dark-mode {
    background: url(../images/bg3.png) center top no-repeat, #061123;
}

/* Przyciemnianie tla */
body.dark-mode::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #000000; /* Kolor przyciemniajacy (czarny) */
    opacity: 0.8; /* Stopien przyciemnienia */
    pointer-events: none; /* Zapobiega interakcji z przyciemnionym obszarem */
}

#darkModeToggle {
    padding: 10px;
    background-color: #333;
    color: #fff;
    border: none;
    cursor: pointer;
}
@media (max-width: 767px) {
	body {
		background: url(../images/bg_repeat-opt.png);
		background-position: center;
		background-repeat: repeat;
		background-size: 100%;
		width: 100%;
	}
}

button {
	background: none;
	border: none;
}

.padding-lr {
	padding-left: 10%;
	padding-right: 10%;
}

header {
	position: sticky;
	top: 10px;
	z-index: 999;
}

.navbar {
	position: relative;
	margin-top: 10px;
	background-image: url(../images/menu-middle.png);
	background-size: contain;
	width: 100%;
	padding: 48px 0;
	z-index: 2;
        transition: margin-top 0.3s ease; /* Dodaj plynne przejscie */

}

.navbar::after {
	content: '';
	position: absolute;
	background-image: url(../images/menu-left-border.png);
	width: 10%;
	height: 100%;
	background-repeat: no-repeat;
	left: -98px;
	bottom: 0px;
	z-index: 2 !important;
}

@media (max-width: 1010px) {
	/* .navbar::after {
		display: none;
	}

	.navbar::before {
		display: none;
	} */

	.navbar {
		padding: 0px 0px 0px 0px;
		margin-bottom: 70px;
		margin-top: 0;
	}
}

@media (max-width: 1230px) {
	.navbar::after {
		left: -94px;
	}
}
@media (max-width: 1150px) {
	.navbar::after {
		left: -70px;
	}
}

@media (max-width: 1140px) {
	.navbar .status {
		display: none;
	}
}

.navbar::before {
	content: '';
	position: absolute;
	background-image: url(../images/menu-right-border.png);
	width: 108px;
	height: 100%;
	background-repeat: no-repeat;
	right: -100px;
	top: 0;
	z-index: 2 !important;
}

.navbar .nav-link,
.navbar .dropdown-item {
	color: #fff;
	font-family: itc_machine_stdmedium;
	font-size: 25px;
}

.navbar .dropdown-item:hover {
	background: none;
	text-shadow: 2px 2px 20px #baffff, 3px 3px 20px #baffff;
	color: #fff;
}

.navbar .dropdown-menu {
	position: relative;
	z-index: 1;
	margin-bottom: 8px;
}
.navbar .dropdown-menu.show {
	background: none;
	width: 300px;
	border: 0;
	right: 0;
	z-index: 1;
}

.navbar-nav {
	z-index: 5;
}
.navbar .dropdown-menu.show {
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-position: center;
	padding: 20px 60px 0px 60px;
	left: -50px;
	width: 330px;
}

.navbar .account-menu.show {
	background-image: url(../images/account_menu.png);
	top: 80%;
	clip-path: inset(27px 0 -80px 0);
	padding-top: 30px;
}

.navbar .community-menu.show {
	background-image: url(../images/community_menu.png);
	top: 80%;
	clip-path: inset(27px 0 -80px 0);
	padding-top: 30px;
}

.navbar .library-menu.show {
	background-image: url(../images/library_menu.png);
	top: 80%;
	clip-path: inset(27px 0 -80px 0);
	padding-top: 30px;
}

.navbar .game-menu.show {
	background-image: url(../images/game_menu.png);
	top: 80%;
	clip-path: inset(27px 0 -80px 0);
	padding-top: 30px;
}

.navbar .shop-menu.show {
	background-image: url(../images/account_menu.png);
	top: 80%;
	clip-path: inset(27px 0 -80px 0);
	padding-top: 30px;
}

.navbar .dropdown-menu.show::before {
	content: '';
	position: absolute;
	background-image: url(../images/dropdown_bottom.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: top;
	top: 97%;
	left: 1px;
	right: 0;
	width: 330px;
	height: 100%;
	padding: 0;
	z-index: -3 !important;
}

.navbar .account-menu.show::before {
	width: 330px;
	top: 93%;
	left: 2px;
}

.navbar .community-menu.show::before {
	top: 99%;
	left: 0px;
}

.navbar .library-menu.show::before {
	width: 333px;
	top: 97%;
	left: -2px;
}

.navbar .game-menu.show::before {
	width: 335px;
	top: 98%;
	left: -2px;
}
.navbar .shop-menu.show::before {
	width: 330px;
	top: 88%;
	left: 2px;
}

.navbar .nav-link.active,
.navbar .nav-link.show {
	text-shadow: 1px 1px 25px #baffff, 1px 1px 25px #baffff;
	color: #fff;
	z-index: 27 !important;
}

.navbar .nav-item {
	z-index: 6;
}
.navbar .nav-item::selection {
	border: none;
}

@media (max-width: 1431px) {
	.navbar form {
		display: none !important;
	}
}

@media (max-width: 970px) {
	.navbar form {
		display: block !important;

		width: 50%;
	}

	.navbar .dropdown-item {
		font-size: 18px;
    text-shadow: 
        1px 1px 25px #baffff, 
        1px 1px 25px #baffff, 
        1px 1px 25px #baffff,
        -1px -1px 0 #baffff, 
        -1px -1px 0 #baffff, 
        -1px -1px 0 #baffff;
	}
	.navbar .dropdown-menu.show {
		padding-top: 20px;
		top: 50%;
		clip-path: inset(1px 0 -80px 0);
	}

	.dropdown {
		padding-bottom: 10px;
	}
}
@media (min-width: 320px) and (max-width: 1040px) {
	.navbar .game-menu.show {
		background-image: none;
	}

	.navbar .community-menu.show {
		background-image: none;
	}
	.navbar .library-menu.show {
		background-image: none;
	}
	.navbar .account-menu.show {
		background-image: none;
	}
	.navbar .shop-menu.show {
		background-image: none;
	}

	.navbar .dropdown-menu.show::before {
		background-image: none;
	}


}

.navbar > .container-fluid {
	justify-content: space-between;
	z-index: 3;
}

.navbar .navbar-toggler:focus {
	border: none;
	box-shadow: none;
}
.navbar-toggler-icon {
	background-image: url(../images/menu.png);
	height: 80px;
	width: 80px;
}

.navbar .navbar-toggler {
	border: none;
	z-index: 999;
}

.navbar input[type='submit'] {
	color: #fff;
	font-size: 20px;
	font-family: itc_machine_stdmedium;
	margin-top: 5px;
	text-align: center;
}

.navbar .social {
	display: flex;
	align-items: center;
	justify-content: center;
}

.navbar .social img {
	height: 70px;
	width: 70px;
}

.navbar-collapse {
	background: transparent;
	padding: 0 20px;
	z-index: 4;
}

@media (min-width: 1040px) {
	.navbar .social {
		display: none;
	}
}

@media (max-width: 1040px) {
	.navbar {
		z-index: 999 !important;
		background: none;
		padding: 0px 0;
	}
	.navbar::after {
		top: 0px;
		left: -45px;
		height: 166px;
		background-size: cover;
		z-index: -1;
		display: none;
	}

	.navbar::before {
		top: 0px;
		right: -50px;
		height: 166px;
		background-size: cover;
		z-index: -1;
		display: none;
	}

	.navbar-collapse {
		background: none;
		padding: 0;
	}
	.navbar-collapse .nav-link,
	.navbar-collapse .dropdown-item {
		color: rgb(40, 40, 40);
		text-shadow: 1px 1px 25px #baffff, 1px 1px 25px #baffff;
	}

	.navbar-collapse input[type='submit'] {
		color: rgb(40, 40, 40);
	}
}

#banner {
	position: relative;
	background-image: url(../images/header.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	align-content: center;
	width: 100%;
	height: 800px;
	margin-top: -50px;
}

@media (max-width: 1000px) {
	#banner {
		background-size: cover;
		background-position: right center;
	}
}

@media (min-width: 1820px) {
	#banner {
		background-size: 100% 100%;
	}

	#banner .breath-img img {
		max-height: 450px;
		max-width: 80%;
		bottom: 0;
		left: 0;
	}

	#banner .breath-img .glow {
		font-size: 75px !important;
	}
}

#banner .breath-img {
	font-family: fot-reggae_std_bregular;
	color: #fff;
}

#banner .breath-img p {
	font-family: aassassinninjaregular;
	font-size: 45px;
	z-index: 33;
}

#banner .breath-img h2 {
	font-family: itc_machine_stdmedium;
	font-size: 65px;
	text-transform: uppercase;
	z-index: 99;
	margin-top: 80px;
	z-index: 33;
}

#banner .breath-img .img {
	position: relative;
	height: 280px;
	width: 100%;
	z-index: 1;
}

#banner .breath-img img {
	position: absolute;
	bottom: -90px;
	right: 0;
	height: 450px;
	width: 100%;
	animation: pulse 4s infinite;
}

#banner .breath-img .glow {
	font-family: itc_machine_stdmedium;
	-webkit-text-stroke: 2px #fff;
	font-size: 55px;
	background: linear-gradient(180deg, rgba(255, 180, 0, 1) 19%, rgba(227, 62, 0, 1) 70%);
	-webkit-background-clip: text;
	color: transparent;
	text-shadow: 25px 0px 80px rgba(255, 255, 255, 0.4), 0px 25px 80px rgba(255, 255, 255, 0.8);
}

@media (max-width: 1332px) {
	#banner .breath-img p {
		font-size: 35px;
	}

	#banner .breath-img h2 {
		font-size: 50px;
	}

	#banner .breath-img .img {
		position: relative;
		height: 280px;
		width: 100%;
		z-index: 1;
	}

	#banner .breath-img img {
		bottom: -90px;
		height: 450px;
	}

	#banner .breath-img .glow {
		font-size: 42px;
	}
}

@media (max-width: 1000px) {
	#banner .breath-img p {
		font-size: 46px;
		text-align: center;
	}

	#banner .breath-img h2 {
		font-size: 70px;
		text-align: center;
	}

	#banner .breath-img .img {
		position: relative;
		height: 280px;
		width: 100%;
		z-index: 1;
	}

	#banner .breath-img img {
		bottom: -90px;
		height: 450px;
	}

	#banner .breath-img .glow {
		font-size: 60px;
		text-align: center;
	}
}

#banner .social {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: top;
	flex-direction: column;
	background-image: url(../images/social-banner.png);
	background-size: 100%;
	background-repeat: no-repeat;
	margin-top: 80px;
	width: 192px;
	height: 320px;
	padding: 40px;
}

@media (max-width: 1000px) {
	#banner .social-banner {
		display: none;
	}
}

@media (max-width: 767px) {
	#banner .breath-img p {
		font-size: 40px;
		text-align: center;
	}

	#banner .breath-img h2 {
		font-size: 60px;
		text-align: center;
	}

	#banner .breath-img .img {
		position: relative;
		height: 280px;
		width: 100%;
		z-index: 1;
	}

	#banner .breath-img img {
		bottom: -90px;
		height: 350px;
	}

	#banner .breath-img .glow {
                -webkit-text-stroke: 1px #fff;
		font-size: 55px;
		margin-top: 30px;
		text-align: center;
	}
}

@media (max-width: 686px) {
	#banner .breath-img .glow {
		font-size: 45px;
	}
	#banner .breath-img p {
		font-size: 28px;
		text-align: center;
	}
	#banner .breath-img h2 {
		font-size: 40px;
		text-align: center;
	}

}

@media (max-width: 570px) {
	#banner .breath-img p {
		font-size: 25px;
		text-align: center;
	}

	#banner .breath-img h2 {
		font-size: 35px;
		text-align: center;
	}

	#banner .breath-img .img {
		position: relative;
		margin-top:50px;
		height: 210px;
		width: 100%;
		z-index: 1;
	}

	#banner .breath-img img {
		bottom: -60px;
		height: 280px;
	}

	#banner .breath-img .glow {
		font-size: 31px;
		text-align: center;
		margin-top:40px;

	}
}
@media (max-width: 400px) {
	#banner {
		height: 650px;
	}

	#banner .breath-img .glow {
		font-size: 28px;
	}
}

@media (max-width: 382px) {
	#banner {
		height: 680px;
	}
	#banner .breath-img h2 {
		font-size: 26px;
	}
	#banner .breath-img p {
		font-size: 22px;
		text-align: center;
	}

	#banner .breath-img .glow {
		font-size: 22px;
	}
}

#banner .social .icon img {
	width: 80px;
	height: 80px;
}

#news {
	width: 100%;
}

#news .banner-news {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
}


#news .banner-news .box2 {
	position: relative;
}


#news .banner-news .box {
padding-inline: 3.2rem;
  padding-block: 6rem;
	position: relative;
        overflow: hidden;
	background-color: #eaeded;
	font-size: 24px;
	text-decoration: none;
	font-family: fot-reggae_std_bregular;


}

.custom_hello {
   margin-bottom: -1.5rem;
}

@media (max-width: 992px) {
	#banner {
		margin-top: -90px;
	}

	#news .banner-news .box {
		width: 100%;
		font-size: 20px;
	}
}

@media (max-width: 767px) {
	#news .banner-news .box {
		font-size: 12px;
	}
}
@media (max-width: 450px) {
	#news .banner-news .box {
		width: 100%;
		font-size: 10px;
	}
}

#news .banner-news .dwn-btn {
	position: relative;
	max-width: 600px;
	background: none;
	border: none;
	height: 80px;
	margin-inline: auto;
}

#news .banner-news button {
	position: relative;
	background-image: url(../images/download-sectionbar2.png);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	text-transform: uppercase;
	padding: 20px 0;
	width: 100%;
	text-align: center;
}

#news .banner-news .dwn-btn a {
	font-size: 28px;
	text-decoration: none;
	color: #000;
	font-family: fot-reggae_std_bregular;
}

@media (max-width: 464px) {
	#news .banner-news .dwn-btn a {
		font-size: 20px;
	}
}

.heading-title {
	height: 150px;
	width: 100%;
	text-align: center;
	background-image: url(../images/button_clear.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
}

.heading-title h2 {
	padding: 63px 0;
	color: #fff;
	font-size: 50px;
	line-height: 0.6;
	font-family: fot-reggae_std_bregular;
	letter-spacing: 15px;
}


#account .account-area {
	position: relative;
	background-image: url(../images/login_area.png);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	height: 700px;
	width: 100%;
}

@media (max-width: 1260px) {
	.heading-title h2 {
		font-size: 33px;
	}
}

@media (max-width: 767px) {
	#account .account-area {
		background-position: center;
		background-repeat: no-repeat;
		background-size: 100% 90%;
	}

	.first {
		font-size: 20px !important;
	}
	.second {
		font-size: 20px !important;
	}

}

#account .account-area .panel {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding-left: 15%;
	padding-right: 15%;
}

@media (max-width: 450px) {
	#account .account-area {
		height: 450px;
	}
}

#account .account-area .tab-panel {
	text-align: center;
}

.form-group {
	margin-top: 10px;
}

.form-btn {
	background-image: url(../images/button_mini_clear.png);
	background-repeat: no-repeat;
	background-position: 100%;
	transition: transform 0.2s linear;
}

.form-btn:hover {
	transform: scale(1.1);
}

.form-btn button {
	margin-top: 5px;
	color: #fff;
	font-family: fot-reggae_std_bregular;
	padding: 10px 10px;
	cursor: pointer;
}

.first {
	font-size: 30px;
	/* padding: 40px; */
}

.second a {
	text-decoration: none;
	color: #fff;
	font-size: 25px;
}

/* .form-btn .btn-primary {
	background: none !important;
	border: none;
	text-decoration: none;
	color: #fff;
	cursor: pointer;
} */

#top .banner-top .box {
	background-image: url(../images/top_5_frame.png);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	width: 600px;
	height: 677px;
	margin-left: auto;
	margin-right: auto;

}
.topfive {
margin-top: 50px;
  height: 500px;
  width: 500px;
margin-left: 50px;
}

        .topfive {
            width: 100%;
            margin-bottom: 20px;
        }

        /* Stackowanie ponizej 1040px */
        @media (max-width: 1040px) {
            .banner-top {
                flex-direction: column;
            }
        }

        /* Dodatkowe style dla kontenera tabel */
        .banner-top {
            display: flex;
            justify-content: space-between;
        }

        /* Styl dla poszczególnych tabel */
        .topfive {
            width: 48%; /* Dwie sekcje obok siebie */
        }
@media (max-width: 767px) {
	#top .banner-top .box {
		height: 400px;
	}
}

@media (max-width: 450px) {
	#top .banner-top .box {
		height: 400px;
	}
}
#footer {
    text-align: center;
    position: relative;
    background-image: url(../images/footer-opt.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 600px;
    width: 100%;
}

#footer-links {
    display: flex;
    justify-content: space-around;
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 20px; /* Adjust as needed */
}

#footer-column {
    flex: 1;
    text-align: center;
}

#footer-link {
    text-decoration: none;
    color: #fff; /* Adjust the color as needed */
}

#footer .footer-text {
    position: absolute;
    color: #fff;
    bottom: 0;
    left: 50%;
    font-size: 40px;
    transform: translate(-50%, -50%);
    font-family: fot-reggae_std_bregular;
    text-align: center;
}
.custom_wrapper {
    margin-block: 2.5rem;
    width: 100%;
}

.custom_wrapper__image {
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 100%;
    background-image: url('../images/top-content-divider.png');
}

.custom_wrapper__image__top {
    height: 200px;
    margin-top:-70px;
    background-image: url('../images/top-content-divider.png');
}

.custom_wrapper__image__bottom {
    width: 100%;
    height: 200px;
    background-image: url('../images/bottom-content-divider.png');
}

.custom_container {
    background-color: #303a3d;
	color: #000010;
	font-family: fot-reggae_std_bregular;
}

@media only screen and (max-width: 600px) {
    .custom_container {
    }
}
.custom_container__frame {
  background:  url(../images/frame-top.png), url(../images/frame-left.png), url(../images/frame-right.png), url(../images/frame-bottom.png);  
  background-repeat: repeat-x, repeat-y, repeat-y, repeat-x;
    background-position: top, left, right, bottom;
    position: absolute;
    top: -26px;
    left: -26px;
    right: -11px;
    bottom: -19px;
    pointer-events: none;}

.custom_container__frame2 {
   z-index: 1;
   background: url(../images/frame-top-left.png), url(../images/frame-top-right.png), url(../images/frame-bottom-left.png), url(../images/frame-bottom-right.png);
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
    background-position: top left, top right, bottom left, bottom right;
    position: absolute; 
    top: -26px;
    left: -26px;
    right: -11px;
    bottom: -19px;   
    pointer-events: none; 
}



@media (max-width: 1160px) {
	#footer .footer-text {
		font-size: 30px;
	}
}

@media (max-width: 1100px) {
	#footer .footer-text {
		font-size: 25px;
	}
}

@media (max-width: 767px) {
	#footer .footer-text {
		font-size: 18px;
	}


.custom_wrapper__image__top {
    height: 100px;
    background-image: url('../images/top-content-divider.png');
}

.custom_wrapper__image__bottom {
    width: 100%;
    height: 100px;
    background-image: url('../images/bottom-content-divider.png');
}


}

@media (max-width: 1000px) {
	#footer {
		background-size: cover;
		background-position: center;
	}
}

@keyframes pulse {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1);
	}
}

.box .box-content {
	padding: 20px;
	box-sizing: border-box;
	margin: 0 1px;
}
.box .box-content .item-wrapper .title {
	color: #fff;
	font-family: Bebas Neue, sans-serif;
	font-size: 16px;
}
.box .box-content .item-wrapper .value {
	color: #fff;
	font-family: Bebas Neue Bold, sans-serif;
	font-size: 16px;
}

.box .box-content {
	padding: 0px;
	box-sizing: border-box;
	margin: 0 1px;
}
.box .box-content .item {
	padding-bottom: 10px;
	margin-bottom: 20px;
	width: 100%;
}
.box .box-content .item .item-head {
	color: #fff;
	font-family: Bebas Neue, sans-serif;
	font-size: 18px;
	padding-bottom: 0;
	margin-bottom: 10px;
	box-sizing: border-box;
	border-bottom: 1px solid #c3cfd5;
	display: table;
}
.box .box-content .item .wrap {
	overflow: hidden;
	width: 100%;
}
.box .box-content .item .wrap .left {
	float: left;
}
.box .box-content .item .wrap .left images {
	max-width: 60px;
	max-height: 60px;
}
.box .box-content .item .wrap .right {
	margin-left: 70px;
}
.box .box-content .item .wrap .right .title {
	color: #fff;
	font-size: 24px;
	font-family: Bebas Neue Bold, sans-serif;
}
.box .box-content .item .wrap .right .info {
	color: #fff;
	font-size: 18px;
	font-family: Bebas Neue, sans-serif;
}
.box .box-content .item:last-child {
	border-bottom: none;
	box-shadow: none;
	padding-bottom: 0;
	margin-bottom: 0;
}
.box .box-content .featured-item {
	padding: 0 20px;
	height: 80px;
}
.box .box-content .featured-item .slick-list {
	width: 240px;
}
.box .box-content .featured-item .wrap .left {
	height: 60px;
}
.box .box-content .featured-item .wrap .left images {
	margin-top: 14px;
}
.box .box-content .featured-item .wrap .left,
.box .box-content .featured-item .wrap .right {
	margin-top: 10px;
}
.box .box-content .featured-item .wrap .item-tooltip {
	display: none;
	float: left;
	margin-left: 20px;
	font-family: Georgia, serif;
	font-size: 14px;
	max-width: 180px;
}
.box .box-content .featured-item .wrap:hover .item-tooltip {
	display: block;
}
.box .box-content .featured-item .wrap:hover .right {
	display: none;
}
.box .box-content .featured-item .wrap:focus {
	outline: none;
}
.TableContentContainer{
  display: flex;
  justify-content: center;
}
.tutorial img {
    height: auto; 
    width: auto; 
    max-width: 500px; 
    max-height: 500px;
}
.tooltip {
  text-decoration:none;
  position:relative;
}
 
.tooltip span {
  display:none;
  -moz-border-radius:6px;
  -webkit-border-radius:6px;
  border-radius:6px;
  color:black;
  background:grey; 
}
 
.tooltip span img {
  float:left;
  margin:0px 8px 8px 0;
}
 
.tooltip:hover span {
  display:block;
  position:absolute;
  top:0;
  left:0;
  z-index:1000;
  width:auto;
  max-width:480px;
  min-width:200px;
  min-height:128px;
  border:1px solid black;
  margin-top:12px;
  margin-left:32px;
  overflow:hidden;
  padding:8px;
}
.custom-input {
    width: 70%; /* Szerokosc dostosowana do kontenera */
    max-width: 100px; /* Maksymalna szerokosc, jesli chcesz ograniczyc */
    padding: 3px; /* Opcjonalne: dodaj padding dla estetyki */
    box-sizing: border-box; /* Zapewnia, ze padding nie zwiekszy szerokosci */
}
.character-level-cell {
	width: 90px;
	padding:25px;
}
.characterimg {
    width: 130%; 
    min-width: 130%; 
    height: auto; 

}
.charskills td {
    font-size: 12px;
    color: black;

}
.charskills th {
    width:300px;!important
}

.charname {
    font-size: 16px;
    color: black;

}
.skill-image {
  max-width: 100%; /* Obrazki nie beda wieksze niz ich oryginalny rozmiar */
  height: auto; /* Zachowaj proporcje obrazu */
}

.owntablestyle {

    padding: 1%;
}

.owntablestyle td {
    border: 0px;
    background-color: #EAEDED;
}

.owntablestyle th {
    background-color: #154B5B;
    color: #EAEDED;
}

.mytablestyle {
    padding: 1%;
}

.mytablestyle td {
    font-size: 24px;
}

.mytablestyle th {
    font-size: 26px;
}
.jutsutablestyle th {
	font-size: 17px;
}
.small-desc-font {
	font-size: 12px;
}
.small-req-font {
	font-size: 16px;
}
.small-upgrade-font {
	font-size: 14px;
}

.visual-center {
	margin-left: 10%;
}
.avatar-table {
	width: 100%;
	border-collapse: collapse;
}

.avatar-table td {
            text-align: center;
}

@media only screen and (max-width: 767px) {
    .NewsHeadlineAuthor {
        display: none; 
    }
    .hidemobile {
        display: none; 
    }

}
@media only screen and (max-width: 1410px) {
    .characterimg img {
   	 width: 80%; 
   	 max-width: 80%; 

    	 height: auto; 
    }

}
@media only screen and (max-width: 1200px) {
    .characterimg img {
   	 width: 70%; 
	max-width:70%;
    	 height: auto; 
    }
    .character-level-cell {
	padding:15px;
    }

}

@media only screen and (max-width: 1047px) {
    .characterimg img {
   	 width: 50%; 
    	 height: auto; 
    }
    .visual-center {
	margin-left: 0px;
    }
    .character-level-cell {
	padding:5px;
    }

}

/* Media queries dla tabletu */
@media only screen and (max-width: 768px) {
    .charname {
        font-size: 15px;!important
    }
    .characterimg {
   	 width: 80%; 
   	 min-width: 80%; 
    	 height: auto; 
    }
  .skill-image {
    width: 40%; /* Dostosuj szerokosc obrazków dla ekranów mobilnych */
  }
    .mytablestyle td {
        font-size: 14px;
    }
    .mytablestyle th {
        font-size: 16px;
    }
    .owntablestyle td {
        font-size: 14px;
    }
    .owntablestyle th {
        font-size: 16px;
    }
    .jutsutablestyle th {
	font-size: 11px;!important
    }
    .section-3-stack {
	width: 40%;
	text-align: center;
    }
    .small-req-font {
	font-size: 12px;
    }

}

/* Media queries dla telefonu komórkowego */
@media only screen and (max-width: 480px) {
    .mytablestyle {
    }
    .charname {
        font-size: 11px;!important
    }
    .characterimg {
   	 width: 70%; 
   	 min-width: 70%; 
    }

  .skill-image {
    width: 50%; /* Dostosuj szerokosc obrazków dla ekranów mobilnych */
  }

    .mytablestyle td {
        font-size: 9px;
     }
    .mytablestyle th {
        font-size: 11px;
    }
    .owntablestyle td {
        font-size: 9px;
    }
    .owntablestyle th {
        font-size: 11px;
    }
    .jutsutablestyle th {
	font-size: 8px;!important
    }
    .small-req-font {
	font-size: 9px;
    }
    .small-upgrade-font {
	font-size: 10px;
    }

    .image-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .image-container img {
        width: 33%; /* Dostosuj szerokosc obrazków do swoich potrzeb */
        margin-bottom: 5px; /* Dodaj margines na dole obrazków */
    }
}
@media only screen and (max-width: 390px) {
    .jutsutablestyle th {
        font-size: 6px;!important
    }
    .small-desc-font {
	font-size: 5px;
    }
    .small-req-font {
	font-size: 7px;
    }
    .small-upgrade-font {
	font-size: 6px;
    }
    .col-own-req {
	max-width: 8%;
    }
}
  .section-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    align-items: center;
  }

  .section-3-stack {
    width: 30%;
    text-align: center;
  }
.section-3-width {


}
  @media (max-width: 991px) {
      .section-3-stack {
      width: 35%;
      margin-bottom: 20px; /* Dodatkowy margines miedzy sekcjami */
    }
	.heading-title {
		height: 80px;
	}
	.heading-title h2 {
		font-size: 18px;
		letter-spacing: 1px;
		padding: 35px;
	}

  }

  @media (max-width: 791px) {
    .section-container {
      flex-direction: column;
    }

    .section-3-stack {
      width: 30%;
      margin-bottom: 20px; /* Dodatkowy margines miedzy sekcjami */
    }
  }

  /* Styl dla ekranów o szerokosci mniejszej niz 768px (tablet) */
  @media (max-width: 768px) {
    .section-container {
      flex-direction: column;
    }

    .section-3-stack {
      width: 100%;
      margin-bottom: 20px; /* Dodatkowy margines miedzy sekcjami */
    }
  }

.white {
  color: #EAEDED;
}
.nav-tabs li a {
  padding: 10px 15px;
  margin-bottom: 0px;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  color: #333;
}

.nav-tabs li.active a {
  background-color: #3c6876;
  color: #fff;
  border-radius: 5px 5px 0 0;
}

.tab-content {
  height: 600px;
  padding: 20px;
}
.tab-content .tab-pane {
  display: none;
}

.tab-content .tab-pane.active {
  display: block;
}

.classTitle {
    font-size: 40px;
    color: #3c6876;

}
.logo-serverinfo {
  width: 300px;
    height: auto;

}

.table-char {
    text-align: center;
    margin-bottom: 20px;
}

.table-char img.characterimg {
    height: auto;
    display: block;
    margin: 0 auto;
}

.table-char .character-level-cell {
    text-align: center;
}

@media screen and (max-width: 767px) {
    .table-char tr {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 10px;
    }

    .table-char td {
        flex: 0 0 48%;
        box-sizing: border-box;
        margin: 1%;
	padding: 5%
        text-align: center;
    }
}
@media (max-width: 768px) {
    .classTitle {
        font-size: 15px;
    }
    .logo-serverinfo {
	width: 200px;
	height: auto;

    }

}

@media (max-width: 480px) {
    .classTitle {
        font-size: 10px;
    }
    .table-char-order {
  	display: flex;
  	flex-direction: column;
  	max-width: 500px;
    }

    .table-char-order td {
  	display: block;
  	margin-bottom: 10px;
    }

}
  .character-eq {
    width: 220px;
    height: 405px;
  }

  .character-eq td {
    vertical-align: bottom;
    text-align: center;
  }

  @media screen and (max-width: 765px) {
    .character-level-cell {
      display: none;
    }

  }

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  animation: fadeInDown 0.5s ease;
}
@keyframes fadeInDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.nav-tabs li.active a {
    background-color: #ddd;
}

/* Ukryj nieaktywne zakladki */
.tab-content .tab-pane {
    display: none;
}

.tab-content .active {
    display: block;
}


  @media only screen and (max-width: 600px) {
    iframe {
      width: 90%;
    }
  }
#sidebar {
    position: fixed;
    left: 0;
    top: 45vh; /* This should be the same as the height of your navbar */
    bottom: 35vh; 
    width: 40px;
    height: calc(100% - 15vh); 
    background-color: rgba(40, 44, 52, 0.5);
    transition: width 0.3s;
    overflow: hidden;
    z-index: 1000;
}

#sidebar:hover {
    width: 350px;
}
#sidebar:hover #panel-label {
	display: none;
}
#panel-label {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    text-align: center;
    padding: 10px;
    background-color: rgba(40, 44, 52, 0.5);
    font-weight: bold;
    color: white;
    cursor: pointer;
    height: 100%;
}

#panel-content {
    display: none;
    padding: 5% 10px 10px 10px;
    text-align: center;
}

#sidebar:hover #panel-content {
    display: block;
}
@media (max-width: 767px) {
	#sidebar {
		position: relative;
		width: 100%;
		top: 3vh; 
		height: auto;
		padding: 10px;
		background-color: rgba(40, 44, 52, 0.8);
	}
	#sidebar:hover {
		width: 100%;
	}
	#panel-content {
		display: block;
		padding-bottom: 30vh;

	}
	#panel-label {
		display: none; /* Ukrywanie panel-label na urzadzeniach mobilnych */
	}
}

#countdown {
	font-family: 'Arial', sans-serif;
	color: #FF0000;
	font-size: 24px;
	text-align: center;
	font-weight: bold;
	margin-top: 0px;
	text-shadow: 1px 1px 2px #000000;
}
@media (max-width: 768px) {
	#countdown {
		font-size: 20px;
	}
}
@media (max-width: 480px) {
	#countdown {
		font-size: 16px;
	}
}

#cookieConsent {
	position: fixed;
	bottom: 0;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	color: white;
	text-align: center;
	padding: 10px;
	display: none;
	z-index: 1000;
}

#cookieConsentContainer {
	max-width: 960px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

#cookieConsentContainer p {
	margin: 0;
	flex: 1 1 auto;
	padding: 5px;
}

#cookieConsentContainer a {
	color: #4CAF50;
	text-decoration: underline;
}

#cookieConsentContainer button {
	background-color: #4CAF50;
	color: white;
	border: none;
	padding: 10px 20px;
	cursor: pointer;
	flex: 0 1 auto;
	margin: 5px;
}

#cookieConsentContainer button:hover {
	background-color: #45a049;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	#cookieConsentContainer {
		flex-direction: column;
		align-items: flex-start;
	}
	
	#cookieConsentContainer button {
		width: 100%;
		text-align: center;
	}
	
	#cookieConsentContainer p {
		text-align: left;
		width: 100%;
	}
}

@media (max-width: 480px) {
	#cookieConsentContainer {
		align-items: center;
	}
	
	#cookieConsentContainer button {
		width: 100%;
	}
	
	#cookieConsentContainer p {
		text-align: center;
	}
}
.twitch-player {
	position: fixed;
	bottom: 50px;     
	right: 0px;      
	width: 400px;    
	height: 300px;   
	z-index: 999;   
}

.twitch-player iframe {
	width: 100%;
	height: 100%;
}
@media only screen and (max-width: 768px) {
	.twitch-player {
		display: none; 
	}
}