
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
html,
body {
  height: 100%;
}
body {
  font-family: "Inter var", sans-serif;
  font-weight: 400;
  background-color: #1a191f;
  -webkit-font-smoothing: antialiased;
}
button {
  padding: 0;
  border: none;
  background-color: transparent;
  transition: 0.4s;
  cursor: pointer;
  transition-property: color, background-color, border-color, opacity, box-shadow;
}
button:focus {
  outline: none;
}
a {
  text-decoration: none;
  transition: 0.4s;
  transition-property: color, background-color, border-color, opacity, box-shadow;
}
a:hover,
a:active,
a:focus {
  outline: none;
  text-decoration: none;
}
input,
textarea,
select {
  padding: 0;
  margin: 0;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  box-shadow: none;
  transition: 0.4s ease;
  transition-property: color, border-color, box-shadow;
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
}
select::-ms-expand {
  display: none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
::-moz-selection {
  background: #ed1c24;
  color: #fff;
  text-shadow: none;
}
::selection {
  background: #ed1c24;
  color: #fff;
  text-shadow: none;
}
::-webkit-input-placeholder {
  color: #c0c0c0;
  opacity: 1;
}
::-moz-placeholder {
  color: #c0c0c0;
  opacity: 1;
}
:-moz-placeholder {
  color: #c0c0c0;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #c0c0c0;
  opacity: 1;
}
body::-webkit-scrollbar {
  width: 16px;
}
body::-webkit-scrollbar-track {
  background: #1a191f;
}
body::-webkit-scrollbar-thumb {
  background-color: #222028;
  outline: 0 solid #fff;
}
@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1300px;
  }
}
/*==============================
	Header
==============================*/
.header {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #171717b3;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 105;
}
.header__logo {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  height: 70px;
  width: auto;
	position: relative;
  transform: none;
  margin-left: 0;
  margin-right: auto;  /* Alignement à gauche */
  z-index: 1;
}
.header__logo img {
  /* width: auto;
  height: 20px; */
  height: fit-content;
  display: block;
}
.logo-badge {
    position: absolute;
    bottom: 8px;
    right: 47px;
    background-color: #3d94ff;
    color: white;
    font-size: 10px;
    font-weight: bold;
    padding: 1px 3px;
    border-radius: 4px;
    text-transform: uppercase;
    pointer-events: none;
}
.header__nav {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 70px;
  right: 0;
  background-color: #1a191f;
  z-index: 99;
  width: auto;
  padding: 30px;
  transform: translate3d(300px, 0, 0);
  transition: 0.4s ease;
}
.header__nav--active {
  transform: translate3d(0, 0, 0);
}
.header__nav-item {
  width: 100%;
  display: block;
  height: 30px;
  margin-bottom: 20px;
  position: relative;
}
.header__nav-item:last-child {
  margin-bottom: 0;
}
.header__omcoin {
	display: inline-flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	height: 30px;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	white-space: nowrap;
	padding: 0.5em;
	align-self: center;
}
.header__omcoin img {
		width: 14px;
		margin-right: 5px;
}
.header__nav-link {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  height: 30px;
  font-size: 14px;
  font-weight: 600;
  /* text-transform: uppercase; */
  color: #fff;
  white-space: nowrap;
		padding: 0.5em;
}
.header__nav-link i {
  font-size: 20px;
  /* margin-right: 8%; */
		color: #8f9daa;
}
.header__nav-item:hover i {
	font-size: 20px;
	color: #ffffff;
}
.header__nav-link--more i {
  font-size: 20px;
  margin-left: 0;
}
.header__nav-link[aria-expanded="true"] {
		background-color: #ffffff0d;
		width: 100%;
}
.header__nav-link:hover {
	/* padding: 0.25em; */
	border-radius: 8px;	
	background-color: #ffffff0d;
	transition: all 0.08s cubic-bezier(0.37, 0.24, 0.53, 0.99);
}
.header__nav-link:not(:hover) {
	transition: transform 0.08s ease-out, background-color 0.08s ease-out;
}
.header__nav-link:hover span {
	color: #fff;
}
.header__dropdown-menu {
  position: absolute;
  background-color: #222028;
  padding: 15px 20px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  min-width: 160px;
  border-radius: 8px;
  border: none;
}
.header__dropdown-menu li {
  margin-bottom: 15px;
  width: 100%;
}
.header__dropdown-menu li:last-child {
  margin-bottom: 0;
}
.header__dropdown-menu a {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  font-weight: 400;
}
.header__dropdown-menu a i {
  font-size: 20px;
  line-height: 24px;
  margin-right: 8px;
}
.header__dropdown-menu a:hover {
  color: #ed1c24;
}
.header__dropdown-menu--user a {
  font-size: 14px;
  text-transform: uppercase;
}
.header__dropdown-menu.show {
  display: flex;
}
.header__content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  position: relative;
}
.header__auth {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  margin-right: 42px;
}
.header__sign-in {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  border-radius: 8px;
  margin-left: 5%;
  border: 2px solid #ed1c24;
}
.header__sign-in span {
  display: none;
}
.header__sign-in i {
  color: #fff;
  font-size: 20px;
}
.header__sign-in:hover {
  background-color: rgba(249,171,0,0.05);
}
.header__sign-in:hover span {
  color: #fff;
}
.header__notif {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  border-radius: 8px;
  margin-left: 10px;
  /* border: 2px solid #ed1c24; */
}
.header__notif i {
  color: #fff;
  font-size: 20px;
}
.notif_head:hover {
  background-color: #ffffff0d;
  transform: scale(1.08);
  transition: all 0.08s cubic-bezier(0.37, 0.24, 0.53, 0.99);
}
.header__notif:hover img{
  -webkit-box-shadow: 0px 0px 0px 4px #ffffff63;
  -moz-box-shadow: 0px 0px 0px 4px #ffffff63;
  box-shadow: 0px 0px 0px 4px r#ffffff63;
  outline: none;
  border-radius: 30px;
}
.notif_head:not(:hover) {
  transition: transform 0.08s ease-out, background-color 0.08s ease-out;
}
.header__notif:hover span {
  color: #fff;
}
.header__btn {
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -22px;
  width: 22px;
  height: 40px;
}
.header__btn span {
  display: block;
  position: absolute;
  height: 2px;
  width: 22px;
  background: #000;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.4s ease;
  top: 13px;
  background-color: #fff;
  border-radius: 2px;
}
.header__btn span:nth-child(2) {
  top: 21px;
}
.header__btn span:nth-child(3) {
  top: 29px;
}
.header__btn--active span {
  background-color: #ed1c24;
}
.header__btn--active span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}
.header__btn--active span:nth-child(2) {
  opacity: 0;
}
.header__btn--active span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}
.header__lang {
  position: relative;
  margin-left: 20px;
}
.header__lang .header__dropdown-menu {
  width: 120px;
  min-width: 120px;
}
.header__lang .header__nav-link {
  height: 40px;
}
.header__profile {
  position: relative;
}
.header__profile .header__dropdown-menu {
  width: 170px;
  min-width: 170px;
}
.header__dropdown-notif {
	width: 400px !important;
	min-width: 400px !important;
}
.header__search-btn {
	width: 40px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 40px;
  color: #fff;
  font-size: 20px;
  margin-right: 10px;
}
.header__search-btn:hover {
  color: #ed1c24;
}
.header__search {
  position: absolute;
  background-color: #1a191f;
  top: -80px;
  right: -15px;
  left: -15px;
  z-index: 1;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  height: 70px;
  padding: 0 15px;
  pointer-events: none;
  transition: top 0.4s ease;
}
.header__search--active {
  top: 0;
  pointer-events: auto;
}
.header__search-input {
  width: calc(100% - 35px);
  height: 40px;
  border-radius: 8px;
  background-color: #222028;
  border: 2px solid transparent;
  font-size: 16px;
  color: #fff;
  padding: 0 50px 0 20px;
}
.header__search-input:focus {
  border-color: #ed1c24;
}
.header__search-button {
  position: absolute;
  height: 40px;
  color: #fff;
  font-size: 20px;
  top: 50%;
  margin-top: -20px;
  right: 75px;
}
.header__search-button:hover {
  color: #ed1c24;
}
.header__search-close {
  position: absolute;
  height: 40px;
  color: #fff;
  font-size: 20px;
  top: 50%;
  margin-top: -20px;
  right: 15px;
}
.header__search-close:hover {
  color: #eb5757;
}
@media (min-width: 1200px) {
	.header__logo {
			position: absolute;
			left: 50%;
			transform: translateX(-50%);
			z-index: 1; 
	}
}
@media (max-width: 1023px) {
	.header__content {
			display: flex;
			justify-content: flex-start;
	}

	.header__logo {
			position: relative;
			transform: none;
			margin-left: 0;
			margin-right: auto;
	}
	.header__nav {
			justify-content: flex-start;
	}
}
@media (min-width: 576px) {
  .header__sign-in,
  .header__notif,
  .header__lang {
    margin-left: 5%;
  }
  .header__auth {
    margin-right: 52px;
  }
}
@media (min-width: 768px) {
  .header__content {
    height: 70px;
  }
  .header__logo {
    height: 80px;
  }
  .header__logo img {
    /* height: 24px; */
    height: fit-content;
  }
  .header__auth {
    margin-right: 52px;
  }
  .header__sign-in {
    height: 40px;
    width: 120px;
    margin-left: 5%;
  }
  .header__sign-in i {
    display: none;
  }
  .header__sign-in span {
    display: block;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    transition: color 0.4s;
  }
  .header__sign-in--user {
    width: auto;
    padding: 0 24px;
  }
  .header__notif {
    height: 40px;
    width: 120px;
    margin-left: 30px;
  }
  .header__notif span {
    display: block;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    transition: color 0.4s;
  }
  .header__notif--user {
    width: auto;
    padding: 0 10px;
  }
  .header__nav {
    top: 80px;
    width: 260px;
    transform: translate3d(260px, 0, 0);
  }
  .header__nav--active {
    transform: translate3d(0, 0, 0);
  }
  .header__search {
    height: 80px;
  }
}
@media (min-width: 1200px) {
  .header__sign-in {
    margin-left: 5%;
  }
  .header__notif {
    margin-left: 18px;
  }
  .header__auth {
    margin-right: 0;
  }
  .header__btn {
    display: none;
  }
  .header__nav {
    transform: translate3d(0, 0, 0);
    padding: 0;
    background-color: transparent;
    width: auto;
    flex-direction: row;
    align-items: center;
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    box-shadow: none;
    border: none;
    transition: 0s;
  }
  .header__nav-item {
    height: 40px;
    width: auto;
    margin-bottom: 0;
  }
  .header__nav-item:last-child {
    margin-right: 0;
  }
  .header__nav-link {
    height: 40px;
  }
  .header__content {
    justify-content: flex-start;
  }
  .header__auth {
    margin-left: auto;
    justify-content: space-between;
    width: 432px;
  }
  .header__lang {
    margin-left: 24px;
    margin-right: auto;
  }
  .header__search-btn {
    display: none;
  }
  .header__search-close {
    display: none;
  }
  .header__search {
    position: relative;
    opacity: 1;
    pointer-events: auto;
    padding: 0;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    background-color: transparent;
  }
  .header__search-input {
    width: 204px;
  }
  .header__search-button {
    right: 20px;
  }
}
@media (min-width: 1400px) {
  .header__auth {
    width: 492px;
  }
  .header__lang {
    margin-left: 30px;
  }
  .header__nav-item {
    /* margin-right: 45px; */
  }
  .header__nav-item:last-child {
    margin-right: 0;
  }
  .header__search-input {
    width: 231px;
  }
}
/*==============================
	Home
==============================*/
.w-100 {
  width: 100%;
}
.w-inherit {
  width: inherit;
}
.mt-80 {
  margin-top: 80px;
}
.mt-150 {
  margin-top: 150px;
}
.home {
  /* margin-top: 70px; */
  position: relative;
  display: block;
  background-color: #1a191f;
  padding: 50px 0;
  overflow: hidden;
}
.home .container {
  position: relative;
  z-index: 3;
}
.home__title {
  color: #fff;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 32px;
  line-height: 42px;
  margin: 0;
  padding-right: 100px;
}
.home__title b {
  font-weight: 600;
}
.home__carousel {
  margin-top: 24px;
}
.home--bg {
  border-bottom: transparent;
}
.img-slide-home {
  max-height: 130px;
}
.home--bg:before {
  content: '';
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  opacity: 0.2;
}
.home--bg:after {
  content: '';
  z-index: 2;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: linear-gradient(0deg, #1a191f 0%, #1a191f 25%, rgba(26,25,31,0) 100%);
}
.home--hero {
  padding: 35px 0;
  border-bottom: 1px solid #222028;
}
@media (min-width: 768px) {
  .home {
    /* margin-top: 80px; */
    padding: 70px 0;
  }
  .home__title {
    font-size: 36px;
    padding-right: 120px;
  }
  .home__carousel {
    margin-top: 34px;
  }
  .home--hero {
    padding: 35px 0;
  }
}
@media (min-width: 1200px) {
  .home__title {
    font-size: 42px;
  }
}
/*==============================
	Hero
==============================*/
.hero {
  position: relative;
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
}
.hero__slide {
  padding: 0 20px;
  width: 100%;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
}
.hero__slide:before,
.hero__slide:after {
  content: '';
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
}
.hero__slide:before {
  /* background-color: rgba(0,0,0,0.25); */
  background: linear-gradient(0.25turn, rgb(0 0 0 / 80%), rgb(0 0 0 / 50%), rgb(0 0 0 / 10%));
  z-index: 1;
}
.hero__slide:after {
  background: linear-gradient(270deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 100%);
  z-index: 2;
}
.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 560px;
  width: 100%;
  position: relative;
  z-index: 3;
  padding-bottom: 40px;
  padding-right: 20px;
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
}
.hero__title {
  font-size: 32px;
  line-height: 42px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 15px;
  position: relative;
}
.hero__title sub {
  vertical-align: middle;
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  line-height: 20px;
  bottom: 10%;
  /* transform: translateY(50%); */
  position: relative;
  margin-left: 10px;
  background-color: rgba(26,25,31,0.2);
  border: 2px solid transparent;
  border-radius: 50%;
}
.hero__title sub.green {
  border-color: #29b474;
}
.hero__title sub.yellow {
  border-color: #ffc312;
}
.hero__title sub.red {
  border-color: #eb5757;
}
.hero__text {
  font-size: 16px;
  line-height: 26px;
  color: #c0c0c0;
  margin-bottom: 20px;
}
.hero__category {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero__category a {
  font-size: 16px;
  line-height: 20px;
  position: relative;
  color: #ed1c24;
  margin-right: 10px;
}
.hero__category a:after {
  content: ',';
  position: absolute;
  display: block;
  left: 100%;
  top: 0;
  color: #ed1c24;
}
.hero__category a:last-child {
  margin-right: 0;
}
.hero__category a:last-child:after {
  display: none;
}
.hero__category a:hover {
  text-decoration: underline;
}
.hero__actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}
.hero__btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 46px;
  width: 160px;
  border-radius: 8px;
  background-color: transparent;
  font-weight: bold;
  font-size: 20px;
  color: #fff;
  border: 2px solid #505050d6;
  margin-top: 20px;
}
.hero__btn:hover {
  color: #fff;
  background-color: rgb(0 0 0 / 40%);
}
.hero__btn__cracked {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 46px;
  width: 160px;
  border-radius: 8px;
  background-color: rgb(26 173 80/1);
  font-weight: bold;
  font-size: 25px;
  color: #fff;
  margin-top: 20px;
  -webkit-box-shadow: 2px 2px 20px 0px rgba(25, 145, 69, .8);
  -moz-box-shadow: 2px 2px 20px 0px rgba(25, 145, 69, .8);
  box-shadow: 2px 2px 20px 0px rgba(25, 145, 69, .8);
}
.hero__btn__uncracked {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 46px;
  width: 160px;
  border-radius: 8px;
  background-color: rgb(255 52 63/1);
  font-weight: bold;
  font-size: 25px;
  color: #fff;
  margin-top: 20px;
  -webkit-box-shadow: 2px 2px 20px 0px rgba(255, 52, 63, .8);
  -moz-box-shadow: 2px 2px 20px 0px rgba(255, 52, 63, .8);
  box-shadow: 2px 2px 20px 0px rgba(255, 52, 63, .8);
}
.hero__btn__unreleased {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 46px;
  width: 160px;
  border-radius: 8px;
  background-color: rgb(173 81 208/1);
  font-weight: bold;
  font-size: 25px;
  color: #fff;
  margin-top: 20px;
  -webkit-box-shadow: 2px 2px 20px 0px rgba(173, 81, 208, .8);
  -moz-box-shadow: 2px 2px 20px 0px rgba(173, 81, 208, .8);
  box-shadow: 2px 2px 20px 0px rgba(173, 81, 208, .8);
}
.game__page__btn__cracked {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3px 15px;
  width: auto;
  border-radius: 8px;
  background-color: rgb(26 173 80/1);
  font-weight: bold;
  font-size: 25px;
  color: #fff;
  margin-bottom: 20px;
  -webkit-box-shadow: 2px 2px 20px 0px rgba(25, 145, 69, .8);
  -moz-box-shadow: 2px 2px 20px 0px rgba(25, 145, 69, .8);
  box-shadow: 2px 2px 20px 0px rgba(25, 145, 69, .8);
}
.game__page__btn__info {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: auto;
  width: auto;
  border-radius: 8px;
  background-color: #ffffff0d;
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  min-height: 40px;
  padding: 5px 10px;
}
.game__page__btn__info span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  padding: 0.15em;
}
.game__page__btn__info i {
  font-size: 18px;
  line-height: 1;
}
.explore__page__btn__filter {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	height: 40px;
	width: auto;
	border-radius: 8px;
	background: #222028;
	font-weight: 400;
	font-size: 16px;
	color: #fff;
	margin-right: 30px;
	padding: 0.35em;
}
.explore__page__btn__filter span {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 16px;
	padding: 0.15em;
}
.explore__page__btn__filter i {
	font-size: 18px;
	line-height: 1;
}
#btn__gg {
	background: linear-gradient(135deg, #1e3c72, #2a5298);
	padding-left: 1em;
	padding-right: 1em;
}
#gnrt__img {
  background-color: #ffffff0d;
  border: 1px solid #89898921;
}
#gnrt__img:hover {
    color: #f90000;
}
#btn__exclusion {
  background: linear-gradient(135deg, #721e1e, #982a2a);
}
#btn__delete {
  background: linear-gradient(135deg, #721e1e, #982a2a);
}
#btn__update {
  background: linear-gradient(135deg, #1e6572, #2a8b98);
}
#btn__reward_link {
	background: linear-gradient(135deg, #ff7220, #ff8c20);
	align-self: center;
}
#btn__sup_dev {
	background: linear-gradient(135deg, #ffffff21, #ffffff0d);
	align-self: center;
  height: 64px;
  display: flex;
  flex-direction: column;
}
.btn__gg {
	padding: 10px 20px;
	font-size: 16px;
	cursor: pointer;
	background-color: #4CAF50;
	color: white;
	border: none;
	border-radius: 5px;
	transition: background-color 0.3s;
}

.btn__gg:disabled {
	background-color: #ccc;
	cursor: not-allowed;
}

.message__gg {
	position: absolute;
	z-index: 10000;
	bottom: 10px; /* Position initiale du message */
	transform: translateX(-7%);
	font-size: 18px;
	color: #ffffff;
	opacity: 0;
	visibility: hidden;
	transition: bottom 1s ease-out, opacity 1s ease-out;
}
@media (min-width: 768px) {
  .hero__slide {
    padding: 0 60px;
  }
  .hero__content {
    padding-bottom: 50px;
    padding-right: 25%;
  }
  .hero__title {
    font-size: 36px;
    line-height: 46px;
  }
}
@media (min-width: 992px) {
  .hero__content {
    padding-right: 0;
  }
  .hero__text {
    padding-right: 40%;
  }
}
@media (min-width: 1200px) {
  .hero__slide {
    padding: 0 120px;
  }
  .hero__title {
    font-size: 42px;
  }
  .hero__text {
    padding-right: 50%;
  }
}
@media (min-width: 1400px) {
  .hero__text {
    padding-right: 55%;
  }
}
#down_green i {
  color: green;
  font-size: 25px;
  margin-left: 10%;
}
#down_orange i {
  color: orange;
  font-size: 25px;
  margin-left: 10%;
}
#down_red i {
  color: red;
  font-size: 25px;
  margin-left: 10%;
}
/*==============================
	Section
==============================*/
.section {
  padding: 50px 0;
  position: relative;
}
.reward-bg {
	background: -webkit-radial-gradient(50% center, transparent 0, rgba(22, 22, 24, .25) 70%), url(../img/bg/bg-reward.svg) 0 0;
}
.section__title-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
.section__title__rank2 {
  color: #fff;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.2;
  margin: 20px 0;
  text-align: center;
}
.section__title {
  color: #fff;
  font-weight: 700;
  font-size: 30px;
  line-height: 42px;
  margin-bottom: 0;
}
.section__title_game {
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
  margin-bottom: 10px;
}
.section__cat_game {
  color: #fff;
  line-height: 15px;
  margin-bottom: 10px;
  border-radius: 8px;
  background-color: #ffffff0d;
  font-weight: 400;
  font-size: 15px;
  padding: 0.5em;
}
.section__title span {
	color: #2abd69;
	display: block;
	font-size: 50px;
	font-weight: 800;
	line-height: 68px;
	text-transform: none;
}
#title_rank span {
	color: #ffffff;
	display: block;
	font-size: 50px;
	font-weight: 800;
	line-height: 68px;
	text-transform: none;
}
#title_xp {
	text-align: center;
}
.section__title b {
  font-weight: 600;
}
.section__title--head {
  font-size: 32px;
}
.section__title--mt {
  margin-top: 50px;
}
.section__text {
  color: #c0c0c0;
  font-size: 16px;
  line-height: 26px;
  margin-top: 15px;
  margin-bottom: 0;
}
.section__text b {
  font-weight: 600;
  color: #fff;
}
.section__text a {
  color: #ed1c24;
}
.section__text a:hover {
  color: #ed1c24;
  text-decoration: underline;
}
.section__text:first-child {
  margin-top: 0;
}
.section__list ol {
  padding-left: 0;
  list-style: none;
  counter-reset: li;
  margin-bottom: 0;
}
.section__list ol ol {
  padding-left: 15px;
  margin-top: 10px;
}
.section__list ol ol ol {
  margin-top: 10px;
  margin-bottom: 10px;
}
.section__list ol ol ol li {
  margin-top: 5px;
}
.section__list ol h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  display: inline-block;
  margin-bottom: 0;
  margin-top: 20px;
}
.section__list ol li {
  font-size: 16px;
  line-height: 26px;
  color: #c0c0c0;
  position: relative;
}
.section__list ol li b {
  font-weight: 600;
  color: #fff;
}
.section__list ol li a {
  color: #ed1c24;
}
.section__list ol li a:hover {
  color: #ed1c24;
  text-decoration: underline;
}
.section__list ol li:last-child {
  margin-bottom: 0;
}
/* .section__list ol li:before {
  counter-increment: li;
  content: counters(li, ".") ". ";
} */
.section__view {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  min-width: 70px;
  padding: 0 15px;
  height: 36px;
  color: #fff;
  border-radius: 8px;
  background-color: #222028;
  font-size: 14px;
  margin-top: 20px;
  text-transform: uppercase;
}
.section__view:hover {
  color: #ed1c24;
}
.section__carousel {
  margin-top: 24px;
}
.section__wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
.section__more {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 46px;
  width: 160px;
  border-radius: 8px;
  background-color: transparent;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  border: 2px solid #ed1c24;
  margin: 50px auto 0;
}
.section__more:hover {
  color: #fff;
  background-color: rgba(249,171,0,0.05);
}
.section__more_comment_home {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 100px;
  border-radius: 8px;
  background-color: transparent;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  border: 2px solid #494a4e;
  margin: 0 auto 0;
}
.section__more_comment_home:hover {
  color: #fff;
  background-color: #494a4e2f;
}
.section__item-filter {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
}
.section__gg {
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-wrap: wrap;
	width: 100%;
}
.section__item-select {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  margin-top: 15px;
  margin-right: 15px;
  padding: 0 20px;
  border-radius: 8px;
  border: none;
  background: #222028;
}
.section__item-select:focus {
  box-shadow: none;
}
.section__item-select:last-child {
  margin-right: 0;
}
.section__item-select .ss-single {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  height: 40px;
  padding: 0;
  margin: 0 !important;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
}
.section__item-select .ss-arrow {
  width: 8px;
  height: 8px;
  margin: 1px 0 0 6px;
}
.section__item-select .ss-arrow path {
  stroke: #fff;
}
.section__item-select .ss-search {
  padding: 0;
  margin-bottom: 15px;
  font-size: 16px;
  color: #c0c0c0;
  width: 100%;
}
.section__item-select .ss-search:last-child {
  margin-bottom: 0;
}
.section__item-select .ss-search input {
  padding: 0;
  background-color: transparent;
  color: #fff;
  font-size: 16px;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  height: 40px;
}
.section__item-select .ss-search input:focus {
  box-shadow: none;
}
.section__item-select .ss-search input::placeholder {
  color: #c0c0c0;
}
.section__item-select .ss-list {
  width: 100%;
}
.section__item-select .ss-list .ss-option {
  font-size: 16px;
  color: #fff;
  line-height: 38px;
  padding: 0;
  transition: 0.4s ease;
}
.section__item-select .ss-list .ss-option:hover {
  background-color: transparent;
  color: #ed1c24;
}
.section__item-select .ss-list .ss-option.ss-selected {
  background-color: transparent !important;
  color: #ed1c24 !important;
}
.section__item-select.ss-content {
  flex-direction: column;
  align-items: flex-start;
  border: none;
  border-radius: 8px;
  min-width: 130px;
  padding: 15px 20px;
  background: #222028;
  box-shadow: none;
}
.section__item-select.ss-open-below,
.section__item-select.ss-open-above {
  border-radius: 8px;
}
.section__details-bg {
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: #1a191f;
  z-index: 1;
  opacity: 1;
  pointer-events: none;
}
.section__details-bg:after {
  content: '';
  z-index: 2;
  backdrop-filter: blur(20px);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: linear-gradient(0deg, #1a191f 0%, #1a191f 10%, rgba(26, 25, 31, 0.5) 100%);
}
.section__roadmap {
  display: block;
  position: relative;
  margin-top: 24px;
  width: 100%;
  background-color: #222028;
  border-radius: 8px;
  padding: 30px 20px;
}
.section__roadmap:before {
  content: '';
  position: absolute;
  display: block;
  height: 4px;
  top: 82px;
  right: 20px;
  left: 20px;
  border-radius: 4px;
  background: #ed1c24;
}
.section--catalog {
  padding: 0 0 50px;
}
.section--first {
  border-bottom: 1px solid #222028;
}
.section--details {
  /* margin-top: 70px; */
  border-bottom: 1px solid #222028;
}
.section--details .container {
  position: relative;
  z-index: 4;
}
.section--details .container-fluid {
  position: relative;
  z-index: 4;
}
.mt-game-page {
  margin-top: 20vh;
}
.section--border {
  border-top: 1px solid #222028;
}
.section--blue {
  background-color: #222028;
}
.section--notitle {
  padding-top: 26px;
}
.section--pt {
  padding-top: 0;
}
@media (min-width: 768px) {
  .section {
    padding: 70px 0;
  }
  .section__title-wrap {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .section__title {
    font-size: 36px;
    line-height: 46px;
  }
  .section__title--mt {
    margin-top: 70px;
  }
  .section__wrap {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .section__view {
    margin-top: 0;
  }
  .section__view--carousel {
    margin-right: 117px;
  }
  .section__roadmap {
    padding: 30px 30px 40px;
  }
  .section__roadmap:before {
    left: 30px;
    right: 30px;
    top: 87px;
  }
  .section--catalog {
    padding: 0 0 70px;
  }
  .section--first {
    padding: 50px 0;
  }
  .section--first,
  .section--details {
    /* margin-top: 80px; */
    padding: 70px 0;
  }
  .section--notitle {
    padding-top: 46px;
  }
  .section--pt {
    padding-top: 0;
  }
}
@media (min-width: 992px) {
  .section__title--sidebar {
    margin-top: 24px;
  }
}
@media (min-width: 1200px) {
  .section__title--head {
    font-size: 40px;
  }
  .section__title--mt {
    margin-top: 0;
  }
  .section__roadmap {
    padding: 30px;
  }
}
/*==============================
	Content
==============================*/
.content {
  padding-bottom: 50px;
}
.content__head {
  background-color: #1a191f;
  margin-bottom: 10px;
  position: relative;
  border-bottom: 1px solid #222028;
  padding-top: 25px;
}
.content__title {
  color: #fff;
  font-weight: 400;
  font-size: 30px;
  line-height: 100%;
  margin-bottom: 15px;
}
.content__tabs {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  border: none;
}
.content__tabs li {
  margin-right: 30px;
}
.content__tabs li:last-child {
  margin-right: 0;
}
.content__tabs button {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  height: 50px;
  color: #fff;
  position: relative;
  text-transform: uppercase;
  font-size: 14px;
}
.content__tabs button:hover {
  color: #ed1c24;
}
.content__tabs button:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  display: block;
  background: #ed1c24;
  box-shadow: none;
  transition: 0.4s ease;
  border-radius: 2px 2px 0 0;
}
.content__tabs button.active {
  color: #ed1c24;
}
.content__tabs button.active:before {
  height: 2px;
}
@media (min-width: 768px) {
  .content {
    padding-bottom: 70px;
  }
  .content__title {
    font-size: 36px;
  }
  .content__tabs--profile button {
    height: 80px;
  }
}
@media (min-width: 1200px) {
  .content__tabs li {
    margin-right: 35px;
  }
  .content__tabs li:last-child {
    margin-right: 0;
  }
}
@media (min-width: 1400px) {
  .content__tabs li {
    margin-right: 40px;
  }
  .content__tabs li:last-child {
    margin-right: 0;
  }
}
/*==============================
	Breadcrumbs
==============================*/
.breadcrumbs {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-top: 15px;
}
.breadcrumbs__item {
  font-size: 16px;
  color: #fff;
  transition: 0.4s ease;
  position: relative;
  margin-right: 36px;
}
.breadcrumbs__item:before {
  content: '\ea1c';
  position: absolute;
  font-family: 'tabler-icons';
  color: #c0c0c0;
  left: 100%;
  top: 0;
  font-size: 18px;
  line-height: 26px;
  margin-left: 9px;
}
.breadcrumbs__item:hover {
  color: #fff;
}
.breadcrumbs__item--active {
  cursor: default;
  margin-right: 0;
}
.breadcrumbs__item--active:before {
  display: none;
}
.breadcrumbs__item--active:hover {
  color: #fff;
}
.breadcrumbs a {
  color: #c0c0c0;
}
.breadcrumbs a:hover {
  color: #ed1c24;
}
@media (min-width: 768px) {
  .breadcrumbs {
    margin-top: 0;
  }
}
/*==============================
	Item
==============================*/
.item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  position: relative;
}
.item--hero,
.item--carousel {
  margin-top: 0;
}
.game__cover {
  display: flex;
  flex-grow: 1;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background-color: #000;
  width: 100%;
  height: 100%;
  max-width: 350px; 
  max-height: 500px;
}
.game__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s;
}
.game__cover a {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media (min-width: 768px) {
  .game__img__flex {
      justify-content: end !important;
  }
}

.item__cover_border_g {
  border-bottom: solid 3px #1aad50;
}
.item__cover_border_r {
  border-bottom: solid 3px #ff343f;
}
.item__cover_border_p {
  border-bottom: solid 3px #ad51d0;
}

.item__cover {
  display: flex;
  flex-grow: 1;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background-color: #000;
  width: 100%;
  height: 100%;
}
.item__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s;
}
.item__cover a {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.item__cover:hover img {
  transform: scale(1.03);
  transition: .3s;
}
.item_game:hover img {
  all: unset;
}
.item__cover:hover .item__play {
  opacity: 1;
  transform: scale(1);
}
.item__play {
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: rgba(255,255,255,0.2);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  margin: -30px 0 0 -30px;
  z-index: 3;
  font-size: 24px;
  color: #ed1c24;
  transition: 0.4s ease;
  transform: scale(0.9);
  transition-property: opacity, background-color, color, border-color, transform;
  opacity: 0;
  border: 6px solid rgba(255,255,255,0.15);
}
.item__play i {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
}
.item__play:hover {
  border-color: rgba(249,171,0,0.5);
  color: #ed1c24;
}
.item__content {
  position: relative;
  display: flex;
  flex-direction: column;
  /* display: block; */
  margin-top: 10px;
  width: 100%;
}
.item__title {
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  color: #fff;
  margin: 0;
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  word-wrap: break-word;
  transition: 0.4s ease;
}
.item__title a {
  color: #fff;
}
.item__title a:hover {
  color: #ed1c24;
}
.item__title:hover {
  color: #ed1c24;
}
.item__category {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: start;
  flex-wrap: wrap;
}
.item__category a {
  font-size: 14px;
  position: relative;
  color: #ed1c24;
  margin-right: 10px;
}
.item__category a:after {
  content: ',';
  position: absolute;
  display: block;
  left: 100%;
  top: 0;
  color: #ed1c24;
}
.item__category a:last-child {
  margin-right: 0;
}
.item__category a:last-child:after {
  display: none;
}
.item__category a:hover {
  text-decoration: underline;
}
.item__rate {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  top: 15px;
  left: 15px;
  background-color: rgba(26, 25, 31, 0.6);
  border: 2px solid transparent;
  border-radius: 50%;
}
.item__rate--green {
	border-color: #29b474;
}
.item__rate--purple {
	background-color: #ad51d0;
	box-shadow: 2px 2px 20px 0px #ad51d0c4;
}
.item__rate--grey {
	background-color: #525252;
	box-shadow: 2px 2px 20px 0px #525252c4;
}
.item__rate--red {
	background-color: #ff343f;
	box-shadow: 2px 2px 20px 0px #ff343fc4;
}
.item__status {
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	position: absolute;
	z-index: 3;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: auto;
	height: auto;
	top: 15px;
	left: 15px;
	padding: 0.25em;
	border: 2px solid transparent;
	border-radius: 8px;
}
.item__status_18 {
	font-size: 16px;
	font-weight: 600;
	color: #000000;
	position: absolute;
	z-index: 3;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: auto;
	height: auto;
	top: 15px;
	left: 15px;
	padding: 0.25em;
	border: 2px solid transparent;
	border-radius: 8px;
}
.item__status_unreleased {
	font-size: 16px;
	font-weight: 600;
	color: #ffffff;
	position: absolute;
	z-index: 3;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: auto;
	height: auto;
	top: 15px;
	left: 15px;
	padding: 0.25em;
	border: 2px solid transparent;
	border-radius: 8px;
}
.item__status--nsfw {
	background-color: #ffc107;
	box-shadow: 2px 2px 20px 0px #ffc107c4;
}
.item__status--green {
	background-color: #1aad50;
		box-shadow: 2px 2px 20px 0px #1aad50c4;
}
.item__status--purple {
	background-color: #ad51d0;
	box-shadow: 2px 2px 20px 0px #ad51d0c4;
}
.item__status--grey {
	background-color: #525252;
	box-shadow: 2px 2px 20px 0px #525252c4;
}
.item__status--red {
	background-color: #ff343f;
	box-shadow: 2px 2px 20px 0px #ff343fc4;
}
.item__status--orange {
	background-color: #ff5e00;
	box-shadow: 2px 2px 20px 0px #ff5e00;
}
.item__favorite {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  top: 15px;
  right: 15px;
  background-color: #1a191f;
  border-radius: 8px;
  font-size: 18px;
  color: #fff;
}
.item__favorite:hover {
  color: #ed1c24;
}
.item__favorite--active {
  color: #ed1c24;
}
.item__favorite--active:hover {
  color: #eb5757;
}
.item__meta {
  display: block;
  font-size: 16px;
  line-height: 26px;
  color: #fff;
}
.item__meta span {
  color: #bfbfbf;
  margin-right: 10px;
}
.item__meta li {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: start;
  flex-wrap: wrap;
  width: 100%;
}
.item__meta li:last-child {
  margin-bottom: 0;
}
.item__meta a {
  font-size: 16px;
  position: relative;
  color: #ed1c24;
  margin-right: 8px;
}
.item__meta a:after {
  content: ',';
  position: absolute;
  display: block;
  left: 100%;
  top: 0;
  color: #ed1c24;
}
.item__meta a:last-child {
  margin-right: 0;
}
.item__meta a:last-child:after {
  display: none;
}
.item__meta a:hover {
  text-decoration: underline;
}
.game__description {
  display: block;
  position: relative;
  border-radius: 8px;
}
.game__description p {
  padding: 10px 0 10px;
  font-size: 16px;
  line-height: 26px;
  color: #bfbfbf;
  margin-bottom: 0;
}
.item__description {
  display: block;
  position: relative;
  margin-top: 24px;
  max-height: 200px;
  overflow: hidden;
  border-radius: 8px;
  background-color: #222028;
}
.item__description p {
  padding: 15px 20px 0;
  font-size: 16px;
  line-height: 26px;
  color: #fff;
  margin-bottom: 0;
}
.item__description p:last-child {
  padding-bottom: 15px;
}
.item--details {
  display: block;
}
.item--details .item__cover {
  max-width: 250px;
}
.item--details .item__cover:hover img {
  opacity: 1;
}
.item--details .item__cover:hover:before {
  opacity: 0;
}
.item--details .item__content {
  margin-top: 20px;
}
@media (min-width: 768px) {
	.filter--fixed {
  top: 80px !important;
}
  .item--hero .item__title {
    font-size: 20px;
  }
  .item--hero .item__rate .item__status .item__status_18 .item__status_unreleased {
    top: 20px;
    left: 20px;
  }
  .item--hero .item__favorite {
    top: 20px;
    right: 20px;
  }
  .item--details .item__cover {
    max-width: 100%;
  }
  .item--details .item__content {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: 100%;
  }
  .item--details .item__description {
    max-height: 175px;
  }
}
@media (min-width: 992px) {
  .item--details .item__description {
    max-height: 200px;
  }
}
@media (min-width: 1200px) {
  .item--hero .item__title {
    font-size: 22px;
  }
  .item--hero .item__play {
    width: 70px;
    height: 70px;
    font-size: 28px;
    margin: -35px 0 0 -35px;
  }
  .item--hero .item__category a {
    font-size: 16px;
  }
  .item--details {
    margin-bottom: 0;
  }
  .item--details .item__description {
    max-height: 140px;
  }
  .item__cover:hover .item__favorite {
    opacity: 1;
    transform: scale(1);
  }
  .item__favorite {
    transition: 0.4s ease;
    transform: scale(0.9);
    transition-property: opacity, background-color, color, border-color, transform;
    opacity: 0;
  }
  .item__favorite--static {
    opacity: 1;
    transform: scale(1);
  }
  .item__favorite--active {
    opacity: 1;
    transform: scale(1);
  }
}
@media (min-width: 1400px) {
  .item--details .item__description {
    max-height: 160px;
  }
}
/*==============================
	Filter
==============================*/
.filter {
  position: relative;
  width: 100%;
  background-color: #1a191f;
  margin-bottom: 10px;
  border-bottom: 1px solid #222028;
}
.filter--fixed {
  position: sticky;
  top: 70px;
  z-index: 102;
}
.filter--hidden {
  z-index: 90;
}
.filter__content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 0;
}
.filter__menu {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  height: 30px;
  font-size: 16px;
  color: #fff;
}
.filter__menu i {
  font-size: 20px;
  margin-right: 4px;
}
.filter__amount {
  font-size: 14px;
  font-weight: 400;
  color: #c0c0c0;
  line-height: 30px;
}
.filter__items {
  display: none;
}
.filter__select {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  min-width: 120px;
  margin-right: 20px;
  padding: 0 20px;
  border-radius: 8px;
  border: none;
  background: #222028;
}
.filter__select:focus {
  box-shadow: none;
}
.filter__select:last-child {
  margin-right: 0;
}
.filter__select .ss-single {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  height: 40px;
  padding: 0;
  margin: 0 !important;
  color: #fff;
  font-size: 16px;
}
.filter__select .ss-arrow {
  width: 8px;
  height: 8px;
  margin: 3px 0 0 6px;
}
.filter__select .ss-arrow path {
  stroke: #fff;
}
.filter__select .ss-search {
  padding: 0;
  margin-bottom: 15px;
  font-size: 16px;
  color: #c0c0c0;
  width: 100%;
}
.filter__select .ss-search:last-child {
  margin-bottom: 0;
}
.filter__select .ss-search input {
  padding: 0;
  background-color: transparent;
  color: #fff;
  font-size: 16px;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  height: 40px;
}
.filter__select .ss-search input:focus {
  box-shadow: none;
}
.filter__select .ss-search input::placeholder {
  color: #c0c0c0;
}
.filter__select .ss-list {
  width: 100%;
}
.filter__select .ss-list .ss-option {
  font-size: 16px;
  color: #fff;
  line-height: 38px;
  padding: 0;
  transition: 0.4s ease;
}
.filter__select .ss-list .ss-option:hover {
  background-color: transparent;
  color: #ed1c24;
}
.filter__select .ss-list .ss-option.ss-selected {
  background-color: transparent !important;
  color: #ed1c24 !important;
}
.filter__select.ss-content {
  flex-direction: column;
  align-items: flex-start;
  border: none;
  border-radius: 8px;
  min-width: 160px;
  padding: 15px 20px;
  background: #222028;
  box-shadow: none;
}
.filter__select.ss-open-below,
.filter__select.ss-open-above {
  border-radius: 8px;
}
.filter__btn {
  display: none;
}
@media (min-width: 768px) {
  .filter__content {
    padding: 0;
    height: 80px;
  }
  .filter__menu {
    display: none;
  }
  .filter__amount {
    display: none;
  }
  .filter__items {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
  .filter__btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 100px;
    border-radius: 8px;
    background-color: transparent;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    border: 2px solid #ed1c24;
  }
  .filter__btn:hover {
    color: #fff;
    background-color: rgba(249,171,0,0.05);
  }
}
@media (min-width: 992px) {
  .filter__btn {
    width: 120px;
  }
}
@media (min-width: 1200px) {
  .filter__select {
    margin-right: 30px;
    min-width: 124px;
  }
  .filter__select:last-child {
    margin-right: 0;
  }
}
.mfilter {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 30px;
  z-index: 105;
  top: 70px;
  bottom: 0;
  left: 0;
  width: 300px;
  background-color: #1a191f;
  box-shadow: none;
  transition: transform 0.4s ease;
  transform: translate3d(-300px, 0, 0);
  border-top: 2px solid #ed1c24;
}
.mfilter--active {
  transform: translate3d(0, 0, 0);
}
.mfilter__head {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 30px;
}
.mfilter__title {
  color: #fff;
  font-size: 20px;
  line-height: 100%;
  font-weight: 400;
  margin-bottom: 0;
}
.mfilter__close {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #c0c0c0;
  font-size: 20px;
  width: 20px;
  height: 20px;
}
.mfilter__select-wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
.mfilter__apply {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 100%;
  border-radius: 8px;
  background-color: transparent;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  border: 2px solid #ed1c24;
  margin-top: auto;
}
.mfilter__apply:hover {
  color: #fff;
  background-color: rgba(249,171,0,0.05);
}
@media (min-width: 768px) {
  .mfilter {
    display: none;
  }
}
/*==============================
	Paginator
==============================*/
.paginator-mob {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 50px;
}
.paginator-mob--comments {
  margin-top: 24px;
  margin-bottom: 24px;
}
.paginator-mob__pages {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 36px;
  width: auto;
  padding: 0 15px;
  color: #c0c0c0;
  border-radius: 8px;
  background-color: #222028;
  font-size: 14px;
}
.paginator-mob__nav {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.paginator-mob__nav li {
  margin-right: 15px;
}
.paginator-mob__nav li:first-child a {
  padding-left: 10px;
}
.paginator-mob__nav li:first-child a span {
  margin-left: 4px;
}
.paginator-mob__nav li:last-child {
  margin-right: 0;
}
.paginator-mob__nav li:last-child a {
  padding-right: 10px;
}
.paginator-mob__nav li:last-child a span {
  margin-right: 4px;
}
.paginator-mob__nav a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 36px;
  width: auto;
  padding: 0 15px;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  background-color: #222028;
}
.paginator-mob__nav a span {
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
}
.paginator-mob__nav a i {
  font-size: 20px;
}
.paginator-mob__nav a:hover {
  color: #ed1c24;
}
@media (min-width: 768px) {
  .paginator-mob {
    display: none;
  }
}
.paginator {
  display: none;
}
@media (min-width: 768px) {
  .paginator {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 50px;
  }
  .paginator--comments {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .paginator__item {
    margin-right: 15px;
  }
  .paginator__item a,
  .paginator__item span {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    height: 40px;
    width: 40px;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    background-color: #222028;
    border: 1px solid transparent;
  }
  .paginator__item span {
    cursor: default;
  }
  .paginator__item:last-child {
    margin-right: 0;
  }
  .paginator__item:hover a {
    color: #ed1c24;
  }
  .paginator__item--prev a,
  .paginator__item--next a {
    font-size: 20px;
  }
  .paginator__item--active a {
    color: #fff;
    cursor: default;
    border-color: #ed1c24;
  }
  .paginator__item--active a:hover {
    color: #fff;
  }
}
/*==============================
	Profile
==============================*/
.profile {
  background-color: #1a191f;
  border-bottom: 1px solid #222028;
  margin-bottom: 10px;
}
.profile__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 100%;
  padding-top: 20px;
}
.profile__user {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 15px;
}
.profile__avatar {
  display: block;
  position: relative;
  width: 40px;
  overflow: hidden;
  border-radius: 8px;
  margin-right: 15px;
}
.profile__avatar img {
  width: 100%;
}
.profile__meta {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.profile__meta h3 {
  color: #fff;
  display: block;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  margin-bottom: 0;
}
.profile__meta span {
  color: #c0c0c0;
  font-size: 14px;
  line-height: 20px;
}
.profile__logout {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  position: absolute;
  right: 0;
  top: 20px;
  border-radius: 8px;
  background-color: transparent;
  border: 2px solid #ed1c24;
}
.profile__logout:hover {
  background-color: rgba(249,171,0,0.05);
}
.profile__logout span {
  display: none;
}
.profile__logout i {
  color: #fff;
  font-size: 20px;
}
@media (min-width: 768px) {
  .profile__content {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding-top: 0;
    height: 80px;
  }
  .profile__user {
    margin-bottom: 0;
    margin-right: 0;
  }
  .profile__logout {
    /* margin-left: auto; */
    margin-top: 0;
    width: 120px;
    position: relative;
    top: auto;
    right: auto;
  }
  .profile__logout i {
    display: none;
  }
  .profile__logout span {
    display: block;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
  }
}
@media (min-width: 1200px) {
  .profile__user {
    margin-right: 0;
  }
}
@media (min-width: 1400px) {
  .profile__user {
    margin-right: 0;
  }
}
/*==============================
	Status
==============================*/
.status {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    width: auto;
    border-radius: 8px;
    position: relative;
    box-sizing: border-box;
    margin: 0 auto;
    text-align: center;
}
.status-header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
}
.status-label {
    color: #fff;
}
.status-date {
    color: red;
}
.status-result {
    font-size: 50px;
    font-weight: bold;
    text-align: center;
    margin: 0;
    width: auto;
    text-align: center;
}
.status-game-color-uncracked {
    color: #ff343f;
}
.status-game-color-unreleased {
    color: #ad51d0;
}
.status-game-color-cracked {
    color: #1aad50;
}
/* Responsive design adjustments */
@media (max-width: 768px) {
    .status {
        padding: 15px;
        width: fit-content;
    }

    .status-header {
        justify-content: space-between;
        flex-direction: row; /* Garde les éléments en ligne même sur mobile */
        align-items: center;
        margin-bottom: 10px;
    }

    .status-label, .status-date {
        font-size: 12px; /* Réduit la taille des textes */
    }

    .status-result {
        font-size: 40px; /* Réduit la taille du texte "Uncracked" */
    }
}

@media (max-width: 480px) {
    .status {
        padding: 10px;
    }

    .status-result {
        font-size: 30px; /* Réduit encore plus la taille du texte "Uncracked" */
    }
}
@media (max-width: 1399px) {
    .status {
        padding: 10px;
    }

    .status-result {
        font-size: 40px; /* Réduit encore plus la taille du texte "Uncracked" */
    }
}

/*==============================
	Stats
==============================*/
.stats {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  margin-top: 24px;
  padding: 20px;
  border-radius: 8px;
  background-color: #222028;
  width: 100%;
}
.stats span {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 10px;
}
.stats p {
  font-size: 18px;
  line-height: 26px;
  color: #c0c0c0;
  margin-bottom: 0;
}
.stats p a {
  color: #fff;
}
.stats p a:hover {
  color: #ed1c24;
}
.stats i {
  font-size: 42px;
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: #ed1c24;
  line-height: 100%;
}
@media (min-width: 768px) {
  .stats {
    padding: 20px 30px;
  }
  .stats i {
    right: 30px;
  }
}
/*==============================
	Dashbox
==============================*/
.dashbox {
  background-color: #222028;
  margin-top: 24px;
  border-radius: 8px;
  overflow: hidden;
}
.dashbox__title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #1a191f;
}
.dashbox__title h3 {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  color: #fff;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 0;
}
.dashbox__title h3 i {
  font-size: 20px;
  margin-right: 10px;
  color: #ffc312;
  line-height: 30px;
}
.dashbox__wrap {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.dashbox__more {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 30px;
  background-color: #1a191f;
  padding: 0 10px;
  font-size: 14px;
  margin-left: 15px;
  color: #fff;
  border-radius: 8px;
}
.dashbox__more:hover {
  color: #ed1c24;
}
.report_dlink {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 20px;
  background-color: #710000;
  padding: 0 10px;
  font-size: 12px;
  margin-right: 15px;
  color: #fff;
  border-radius: 3px;
  transition: background-color 0s ease-in-out;
}
.report_dlink:hover {
  background-color: #b60000;
}
#details_report {
  width: 100%;
  padding: 12px;
  font-size: 14px;
  border-radius: 8px;
  background-color: #222028;
  color: white;
  resize: none;
  border: 0;
}
#details_report:focus {
  border-color: #3b3b3b;
  box-shadow: none;
  outline: none;
}
#details_report::placeholder {
  color: #888;
  font-style: italic;
}
.dashbox__refresh {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  color: #fff;
  font-size: 20px;
}
.dashbox__refresh:hover {
  color: #ed1c24;
}
.discord__id__button {
  color: #2dc5f5;
  text-decoration: underline;
}
.discord__id__button:hover {
  text-decoration: underline;
}
.scroll-content {
	max-height: 400px; /* ajuste selon la hauteur que tu veux */
	overflow-y: auto;
}

/* Ajoute une scrollbar stylée si tu veux */
.scroll-content::-webkit-scrollbar {
	width: 8px;
}
.scroll-content::-webkit-scrollbar-thumb {
	background-color: rgba(255, 255, 255, 0.2);
	border-radius: 4px;
}
.scroll-content::-webkit-scrollbar-track {
	background: transparent;
}
.dashbox__table-wrap {
  position: relative;
  display: block;
  width: 100%;
  padding: 20px 0;
}
.dashbox__table {
  width: 100%;
  min-width: 500px;
  border-spacing: 0;
}
.dashbox__table thead {
  border-bottom: 1px solid #1a191f;
}
.dashbox__table thead th {
  font-size: 12px;
  color: #c0c0c0;
  font-weight: 400;
  padding: 0 10px 15px 0;
  line-height: 100%;
  margin-bottom: 0;
  border: none;
}
.dashbox__table thead th:first-child {
  padding-left: 20px;
}
.dashbox__table tbody tr {
  border-bottom: none;
  background-color: transparent;
}
.dashbox__table tbody td {
  padding: 0;
  background-color: transparent;
  border: 0px solid transparent;
}
.dashbox__table tbody td:first-child {
  padding-left: 20px;
}
.dashbox__table tbody td:last-child .dashbox__table-text {
  padding-right: 0;
}
.dashbox__table-text {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  line-height: 30px;
  padding: 10px 15px 0 0;
  background-color: transparent;
  white-space: nowrap;
}
.game-img-activity {
		max-width: 100px;
		height: auto;
		border: 3px solid red;
}
.dashbox__table-text a {
  color: #fff;
}
.dashbox__table-text a:hover {
  color: #ed1c24;
}
.dashbox__table-text i {
  font-size: 14px;
  margin-right: 6px;
  color: #ffc312;
  line-height: 24px;
  margin-top: 1px;
}
.dashbox__table-text--rate {
  font-weight: 600;
  font-size: 16px;
}
.dashbox__table-text--rate i {
  font-size: 16px;
  font-weight: normal;
}
.dashbox__table-text--red {
  color: #eb5757;
}
.dashbox__table-text--green {
  color: #29b474;
}
.dashbox__table-text--grey {
  color: #c0c0c0;
}
@media (min-width: 768px) {
  .dashbox {
    margin-top: 30px;
  }
  .dashbox__title {
    padding: 20px 30px;
  }
  .dashbox__table thead th:first-child {
    padding-left: 30px;
  }
  .dashbox__table tbody td:first-child {
    padding-left: 30px;
  }
}
/* no link available */
.nolink-overlay-container {
	position: relative;
  justify-self: center;
}

.nolink-button {
	background-color: #ff0707;
	color: #ffffff;
	padding: 14px 30px;
	font-size: 18px;
	font-weight: bold;
	border: none;
	border-radius: 10px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	text-transform: uppercase;
  width: fit-content;
}
.nolink-button i {
	font-size: 18px;
}

/* Premium */
.Premium-overlay-container {
	position: relative;
}

.Premium-blur-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	backdrop-filter: blur(20px);
	background-color: #38383859;
	z-index: 10;
	display: flex;
	justify-content: center;
	align-items: center;
	pointer-events: all;
}

.Premium-button {
	background-color: #ffc107;
	color: #000;
	padding: 14px 30px;
	font-size: 18px;
	font-weight: bold;
	border: none;
	border-radius: 10px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	/* cursor: not-allowed; */
	text-transform: uppercase;
}
.Premium-button i {
	font-size: 18px;
}

.Premium-button:hover {
	background-color: #ffb300;
}
.Premium-button-search {
  display: block;
  margin: 20px auto 0 auto;
  padding: 10px 20px;
  text-align: center;
}
input:required + label::before {
	content: "*";
	color: red;
	font-weight: bold;
	margin-right: 5px;
}
/*==============================
	Plan
==============================*/
.plan {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 20px;
  background-color: #222028;
  border-radius: 8px;
  margin-top: 24px;
  position: relative;
  overflow: hidden;
}
.plan:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  display: block;
  background-color: #ed1c24;
}
.plan--free:before {
  background-color: #858585;
}
.plan--free .plan__price {
  color: #858585;
}
.plan--free .plan__btn {
  border-color: #858585;
}
.plan--free .plan__btn:hover {
  background-color: #85858500;
}
.plan--red:before {
  background-color: #eb5757;
}
.plan--red .plan__price {
  color: #eb5757;
}
.plan--red .plan__btn {
  border-color: #eb5757;
}
.plan--red .plan__btn:hover {
  background-color: rgba(235,87,87,0.05);
}
.plan--active .plan__btn {
  pointer-events: none;
  opacity: 0.7;
}
.plan__title {
  font-size: 24px;
  line-height: 30px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0;
}
.plan__title_buyomc {
  text-align: center;
  width: 100%;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
  margin-top: 20px;
}
.plan__price {
  font-size: 30px;
  font-weight: 600;
  line-height: 100%;
  color: #ed1c24;
  position: absolute;
  top: 20px;
  right: 20px;
}
.plan__price sub {
  font-size: 14px;
  bottom: 1px;
  font-weight: 600;
}
.plan__price img {
	width: 20px;
	margin-top: -7px;
	margin-right: 5px;
}
.plan__list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 20px;
}
.plan__item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  font-size: 16px;
  color: #fff;
  margin-bottom: 10px;
}
.plan__item i {
  font-size: 20px;
  margin-right: 10px;
  line-height: 100%;
  color: #29b474;
}
.plan__item--none {
  color: #c0c0c0;
}
.plan__item--none i {
  color: #c0c0c0;
}
.plan__item:last-child {
  margin-bottom: 0;
}
.plan__btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 46px;
  width: 100%;
  border-radius: 8px;
  background-color: transparent;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  border: 2px solid #ed1c24;
  margin-top: 20px;
}
#plan__btn_buyomc {
  margin-top: 10px;
}
.plan__btn:hover {
  color: #fff;
  background-color: rgba(249,171,0,0.05);
}
@media (min-width: 768px) {
  .plan {
    padding: 30px;
  }
  .plan__price {
    top: 30px;
    right: 30px;
  }
  .plan__list {
    margin-top: 30px;
  }
  .plan__btn {
    margin-top: 30px;
  }
}
/*==============================
	Accordion
==============================*/
.accordion__card {
  background-color: #222028;
  border-radius: 8px;
  margin-top: 24px;
  border: none;
}
.accordion__card button {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  width: 100%;
  min-height: 80px;
  padding: 20px 80px 20px 20px;
  color: #fff;
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  text-align: left;
}
.accordion__card button span {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #1a191f;
  position: absolute;
  right: 20px;
  top: 20px;
  overflow: hidden;
}
.accordion__card button span svg {
  width: 20px;
  height: auto;
  fill: #fff;
  position: absolute;
  z-index: 2;
  transition: 0.4s ease;
  transition-property: transform, fill;
}
.accordion__card button span svg:last-child {
  transform: rotate(-90deg);
}
.accordion__card button:hover span svg {
  fill: #ed1c24;
}
.accordion__card button[aria-expanded="true"] span svg {
  fill: #ed1c24;
}
.accordion__card button[aria-expanded="true"] span svg:last-child {
  transform: rotate(0deg);
}
.accordion__card p {
  padding: 0 20px 20px;
  color: #c0c0c0;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 0;
}
.accordion__card p b,
.accordion__card p strong {
  font-weight: 600;
}
.accordion__card p:first-child {
  border-top: 1px solid #1a191f;
  padding: 20px;
}
@media (min-width: 768px) {
  .accordion__card button {
    padding: 20px 90px 20px 30px;
  }
  .accordion__card button span {
    right: 30px;
  }
  .accordion__card p {
    padding: 0 30px 20px;
  }
  .accordion__card p:first-child {
    padding: 20px 30px;
  }
}
/*==============================
	Feature
==============================*/
.feature {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  margin-top: 24px;
  padding-left: 60px;
  padding-right: 15px;
}
.feature i {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 42px;
  color: #ed1c24;
}
.feature__title {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 15px;
}
.feature__text {
  display: block;
  color: #c0c0c0;
  font-size: 16px;
  line-height: 26px;
  width: 100%;
  margin-bottom: 0;
}
.feature__text a {
  color: #ed1c24;
}
.feature__text a:hover {
  color: #ed1c24;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .feature {
    margin-top: 34px;
  }
}
@media (min-width: 1200px) {
  .feature {
    padding-right: 40px;
  }
}
/*==============================
	How
==============================*/
.how {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 20px;
  background-color: #222028;
  border-radius: 8px;
  margin-top: 24px;
  position: relative;
}
.how img {
  display: block;
  margin: 0 auto; 
  max-width: 80px;
  height: auto;
}
.how__number {
  font-size: 46px;
  line-height: 100%;
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
  color: #ed1c24;
  width: 100%;
}
.how__title {
	align-self: center;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 15px;
}
.how__title_reward {
  align-self: center;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}
.how__text {
  color: #c0c0c0;
  font-size: 16px;
  line-height: 26px;
  width: 100%;
  margin-bottom: 0;
}
.how__text b {
  font-weight: 600;
}
.how__text a {
  color: #ed1c24;
}
.how__text a:hover {
  color: #ed1c24;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .how {
    padding: 30px;
  }
}
/*==============================
	How
==============================*/
.how_xp {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 20px;
  background-color: #222028;
  border-radius: 8px;
  margin-top: 24px;
  position: relative;
  transition: transform .2s ease, -webkit-transform .2s ease;
}
#how_xp:hover {
  transform: translateZ(0) scale(1.03654);
}
.how__number_xp {
  text-align: center;
  font-size: 46px;
  line-height: 60px;
  font-weight: 600;
  margin-bottom: 0;
  display: block;
  color: #ed1c24;
  width: 100%;
}
.badge-xp {
  width: 100px;
  align-self: center;
}
.badge-xp-modal {
  width: 130px;
  align-self: center;
}
.how__number_xp_badge {
  text-align: center;
  font-size: 20px;
  line-height: 60px;
  font-weight: 600;
  margin-bottom: 0;
  display: block;
  color: #da1106;
  width: 100%;
}
.how__title_xp {
	align-self: center;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin: 20px 0;
}
.how__text_xp {
  color: #eee;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  width: 100%;
  margin-bottom: 0;
}
.xp-small {
  font-size: 25px;
}
.how__text_xp b {
  font-weight: 600;
}
.how__text_xp a {
  color: #ed1c24;
}
.how__text_xp a:hover {
  color: #ed1c24;
  text-decoration: underline;
}
.how_xp.completed {
  pointer-events: none;
  opacity: 0.5;
  position: relative; /* Rendre le parent relatif pour que le check se positionne relativement à lui */
}

.badge-check {
  position: absolute;
  top: 40px;
  right: 30px;
  opacity: 1; /* On garde l'opacité à 1 pour le check */
  background-color: #2e2c37;
  border-radius: 50%;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10; /* Le check sera au-dessus du contenu */
}

@media (min-width: 768px) {
  .how_xp {
    padding: 15px;
  }
}
/*==============================
	Roadmap
==============================*/
.roadmap {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  position: relative;
}
.roadmap:before,
.roadmap:after {
  content: '';
  position: absolute;
  display: block;
  border-radius: 50%;
}
.roadmap:before {
  width: 24px;
  height: 24px;
  left: 0;
  top: 42px;
  background-color: #fff;
  opacity: 0.12;
  z-index: 1;
}
.roadmap:after {
  width: 10px;
  height: 10px;
  left: 7px;
  top: 49px;
  background-color: #fff;
  z-index: 2;
}
.roadmap--active:before,
.roadmap--active:after {
  background: #ed1c24;
}
.roadmap--active:after {
  width: 16px;
  height: 16px;
  left: 4px;
  top: 46px;
}
.roadmap--active .roadmap__list li:before {
  background: #ed1c24;
}
.roadmap__title {
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  font-weight: 400;
  display: block;
  margin-bottom: 50px;
  margin-left: 10px;
}
.roadmap__list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: calc(100% - 10px);
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
  margin-left: 10px;
}
.roadmap__list li {
  color: #c0c0c0;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 12px;
  padding-left: 16px;
  position: relative;
}
.roadmap__list li:last-child {
  margin-bottom: 0;
}
.roadmap__list li:before {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: #fff;
  opacity: 1;
  top: 11px;
  left: 0;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .roadmap:before {
    top: 47px;
  }
  .roadmap:after {
    top: 54px;
  }
  .roadmap--active:before {
    top: 47px;
  }
  .roadmap--active:after {
    top: 51px;
  }
  .roadmap__title {
    margin-bottom: 60px;
  }
  .roadmap__list li {
    margin-bottom: 15px;
  }
  .roadmap__list li:last-child {
    margin-bottom: 0;
  }
}
/*==============================
	Partners
==============================*/
.partner {
  display: block;
  width: 100%;
  margin-top: 30px;
}
.partner__img {
  max-width: 100%;
  margin: 0 auto;
  display: block;
  transition: opacity 0.4s ease;
  opacity: 0.7;
}
.partner__img:hover {
  opacity: 1;
}
@media (min-width: 768px) {
  .partner {
    margin-top: 36px;
  }
}
/*==============================
	Contacts
==============================*/
.contacts__list {
  margin-top: 20px;
}
.contacts__list li {
  margin-bottom: 10px;
}
.contacts__list li:last-child {
  margin-bottom: 0;
}
.contacts__list a {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: #fff;
}
.contacts__list a:hover {
  color: #ed1c24;
}
.contacts__social {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 20px;
}
.contacts__social a {
  margin-right: 20px;
  font-size: 24px;
  color: #fff;
}
.contacts__social a:last-child {
  margin-left: 0;
}
.contacts__social a:hover {
  color: #ed1c24;
}
/*==============================
	Comments
==============================*/
.comments {
  margin-top: 24px;
  margin-bottom: 50px;
}
.comments__autor {
  display: block;
  position: relative;
  padding-left: 55px;
  margin-bottom: 15px;
}
.comments__avatar {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  border-radius: 8px;
}
.comments__name {
  display: block;
  font-size: 16px;
  color: #fff;
  line-height: 20px;
  font-weight: 400;
}
.comments__time {
  display: block;
  font-size: 12px;
  color: #c0c0c0;
  line-height: 20px;
  font-weight: 400;
}
.comments__text {
  display: block;
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 26px;
  background-color: #1a191f;
  padding: 20px;
  position: relative;
  border-top: 1px solid #222028;
  border-left: 1px solid #222028;
  border-right: 1px solid #222028;
  border-radius: 8px 8px 0 0;
}
.comments__text span {
  display: block;
  background-color: #222028;
  margin-bottom: 20px;
  padding: 20px;
  position: relative;
  min-height: 80px;
  border-radius: 8px;
  color: #fff;
}
.comments__text span:before {
  content: '\efbe';
  position: absolute;
  display: block;
  font-family: "tabler-icons";
  color: rgba(249,171,0,0.15);
  font-size: 60px;
  top: 10px;
  left: 15px;
  line-height: 100%;
  z-index: 1;
  pointer-events: none;
}
.comments__item {
  margin-bottom: 24px;
  display: block;
}
.comments__item--answer,
.comments__item--quote {
  margin-left: 25px;
}
.comments__actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  background-color: #1a191f;
  padding: 15px 20px;
  border: 1px solid #222028;
  position: relative;
  border-radius: 0 0 8px 8px;
}
.comments__actions button {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 12px;
  color: #c0c0c0;
  margin-right: 20px;
  height: 22px;
  text-transform: uppercase;
  font-weight: 400;
}
.comments__actions button i {
  margin-right: 5px;
  font-size: 14px;
}
.comments__actions button:hover {
  color: #ed1c24;
}
.comments__actions button:last-child {
  margin-right: 0;
}
.comments__rate {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  position: absolute;
  left: 20px;
  top: 50%;
  margin-top: -15px;
}
.comments__rate button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #c0c0c0;
  font-size: 14px;
  margin-right: 25px;
  position: relative;
  height: 30px;
}
.comments__rate button i {
  font-size: 18px;
  opacity: 0.6;
  transition: 0.4s ease;
}
.comments__rate button:last-child {
  margin-right: 0;
}
.comments__rate button:last-child i {
  margin-left: 6px;
  color: #eb5757;
  margin-top: 2px;
}
.comments__rate button:first-child i {
  margin-right: 6px;
  color: #29b474;
}
.comments__rate button:first-child:before {
  content: '';
  position: absolute;
  display: block;
  left: 100%;
  margin-left: 12px;
  width: 1px;
  height: 15px;
  background-color: #222028;
  top: 50%;
  transform: translateY(-50%);
}
.comments__rate button:hover {
  color: #fff;
}
.comments__rate button:hover i {
  opacity: 1;
}
@media (min-width: 768px) {
  .comments {
    margin-bottom: 70px;
  }
  .comments__text {
    padding: 20px 30px;
  }
  .comments__actions {
    padding: 15px 30px;
  }
  .comments__rate {
    left: 30px;
  }
  .comments__item {
    margin-bottom: 30px;
  }
  .comments__item--answer,
  .comments__item--quote {
    margin-left: 40px;
  }
}
@media (min-width: 992px) {
  .comments {
    margin-bottom: 0;
    padding-right: 30px;
  }
}
@media (min-width: 1200px) {
  .comments {
    padding-right: 50px;
  }
}
@media (min-width: 1400px) {
  .comments {
    padding-right: 60px;
  }
}
/*==============================
	Reviews
==============================*/
.reviews {
  margin-top: 24px;
  margin-bottom: 50px;
}
.reviews__autor {
  display: block;
  position: relative;
  padding-left: 55px;
  margin-bottom: 15px;
  padding-right: 60px;
}
.reviews__avatar {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  border-radius: 8px;
}
.reviews__name {
  display: block;
  font-size: 16px;
  color: #fff;
  line-height: 20px;
  font-weight: 400;
  margin-bottom: 5px;
}
.reviews__time {
  display: block;
  font-size: 12px;
  color: #c0c0c0;
  font-weight: 400;
  line-height: 20px;
}
.reviews__text {
  display: block;
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 26px;
  background-color: #1a191f;
  padding: 20px;
  border: 1px solid #222028;
  border-radius: 8px;
}
.reviews__item {
  margin-bottom: 24px;
  display: block;
}
.reviews__rating {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  right: 0;
  top: 0;
  width: 36px;
  height: 36px;
  background-color: rgba(26,25,31,0.5);
  border: 2px solid transparent;
  border-radius: 50%;
  margin-top: 2px;
}
.reviews__rating--green {
  border-color: #29b474;
}
.reviews__rating--red {
  border-color: #eb5757;
}
.reviews__rating--yellow {
  border-color: #ffc312;
}
@media (min-width: 400px) {
  .reviews__name {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .reviews {
    margin-bottom: 70px;
  }
  .reviews__text {
    padding: 20px 30px;
  }
  .reviews__item {
    margin-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .reviews {
    margin-bottom: 0;
    padding-right: 30px;
  }
}
@media (min-width: 1200px) {
  .reviews {
    padding-right: 50px;
  }
}
@media (min-width: 1400px) {
  .reviews {
    padding-right: 60px;
  }
}
/*==============================
	Gallery
==============================*/
.gallery {
  margin-top: 24px;
  margin-bottom: 26px;
}
.gallery figure {
  margin: 0 0 24px;
}
.gallery figure a {
  display: block;
  position: relative;
  overflow: hidden;
  transition: 0.4s ease;
}
.gallery figure img {
  width: 100%;
  border-radius: 8px;
}
.gallery figcaption {
  display: none;
}
.gallery--full {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .gallery {
    margin-bottom: 46px;
  }
  .gallery--full {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .gallery {
    padding-right: 30px;
  }
  .gallery--full {
    padding-right: 0;
  }
}
@media (min-width: 1200px) {
  .gallery {
    padding-right: 50px;
  }
  .gallery--full {
    padding-right: 0;
  }
}
@media (min-width: 1400px) {
  .gallery {
    padding-right: 60px;
  }
  .gallery--full {
    padding-right: 0;
  }
}
/*==============================
	Footer
==============================*/
.footer {
  background-color: #1a191f;
  border-top: 1px solid #222028;
}
.footer__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 50px 0 30px;
  position: relative;
}
.footer__logo {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  order: 1;
}
.footer__logo img {
  /* width: auto;
  height: 20px; */
  height: fit-content;
  display: block;
}
.footer__nav {
  order: 2;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-top: 30px;
}
.footer__nav a {
  font-size: 14px;
  color: #fff;
  margin-right: 20px;
}
.footer__nav a:last-child {
  margin-right: 0;
}
.footer__nav a:hover {
  color: #ed1c24;
}
.footer__copyright {
  display: inline-block;
  order: 3;
  margin-top: 50px;
  font-size: 12px;
  line-height: 16px;
  color: #c0c0c0;
}
.footer__copyright a {
  color: #ed1c24;
}
.footer__copyright a:hover {
  color: #ed1c24;
  text-decoration: underline;
}
.footer__back {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 2px solid #ed1c24;
  color: #fff;
  position: absolute;
  right: 0;
  bottom: 30px;
  border-radius: 8px;
  font-size: 20px;
}
.footer__back:hover {
  color: #ed1c24;
}
@media (min-width: 768px) {
  .footer__logo img {
    /* height: 22px; */
    height: fit-content;
  }
  .footer__content {
    flex-direction: row;
    align-items: center;
    padding: 0;
    height: 80px;
  }
  .footer__nav {
    order: 3;
    margin-top: 0;
    margin-left: auto;
    margin-right: 80px;
  }
  .footer__nav a {
    margin-right: 30px;
  }
  .footer__nav a:last-child {
    margin-right: 0;
  }
  .footer__copyright {
    order: 2;
    margin-top: 0;
    margin-left: 30px;
  }
  .footer__back {
    bottom: 50%;
    margin-bottom: -20px;
  }
}
@media (min-width: 1200px) {
  .footer__copyright {
    margin-left: 40px;
  }
  .footer__nav a {
    margin-right: 40px;
  }
  .footer__nav a:last-child {
    margin-right: 0;
  }
}
@media (min-width: 1400px) {
  .footer__copyright {
    margin-left: 50px;
  }
  .footer__nav {
    margin-right: 95px;
  }
  .footer__nav a {
    margin-right: 50px;
  }
  .footer__nav a:last-child {
    margin-right: 0;
  }
}
/*==============================
	Sign
==============================*/
.sign {
  display: block;
  position: relative;
}
.sign__content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  padding: 40px 0;
}
.sign__form {
  background-color: #1a191f;
  border: 1px solid #222028;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 20px;
  position: relative;
  width: 100%;
  max-width: 400px;
}
.sign__form--full {
  max-width: 100%;
  margin-top: 24px;
}
.sign__form--comments {
  max-width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
}
.sign__logo {
  display: block;
  margin-bottom: 30px;
}
.sign__logo a {
  max-width: 100%;
  width: auto;
}
.sign__logo img {
  width: auto;
  height: auto;
}
.sign__title {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 20px;
}
.sign__label {
  font-size: 14px;
  line-height: 100%;
  color: #c0c0c0;
  width: 100%;
  margin-bottom: 15px;
}
.sign__input {
  width: 100%;
  background-color: #222028;
  border: 2px solid transparent;
  height: 46px;
  position: relative;
  color: #fff;
  font-size: 16px;
  width: 100%;
  border-radius: 8px;
  padding: 0 20px;
}
.sign__input:focus {
  border-color: #ed1c24;
}
.sign__textarea {
  border: 2px solid transparent;
  height: 150px;
  position: relative;
  color: #fff;
  font-size: 16px;
  width: 100%;
  padding: 15px 20px;
  resize: none;
  background-color: #222028;
  border-radius: 8px;
}
.sign__textarea:focus {
  border-color: #ed1c24;
}
.sign__select {
  background: url("../img/angle-down.svg") no-repeat center right 20px #222028;
  background-size: 20px auto;
  border: 2px solid transparent;
  border-radius: 8px;
  height: 46px;
  position: relative;
  color: #fff;
  font-size: 16px;
  width: 100%;
  padding: 0 20px;
  cursor: pointer;
}
.sign__select:focus {
  border-color: #ed1c24;
}
.sign__group {
  position: relative;
  margin-bottom: 20px;
  width: 100%;
}
#sign__group__img {
  text-align: center;
}
.profile_price img {
  height: 1em;
}
.profile_price {
  float: right;
  vertical-align: middle;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 8px;
  background-color: #ffffff0d;
  padding: 0.25em 0.5em;
}
.pt-70 {
  padding: 70px 0;
}
.profile_price_free {
  float: right;
  color: #35903a;
  vertical-align: middle;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 8px;
  background-color: #ffffff0d;
  padding: 0.25em 0.5em;
}
.sign__group--checkbox {
  width: 100%;
  text-align: left;
}
.sign__group--checkbox input:not(:checked),
.sign__group--checkbox input:checked {
  position: absolute;
  left: -9999px;
}
.sign__group--checkbox input:not(:checked) + label,
.sign__group--checkbox input:checked + label {
  font-size: 14px;
  color: #fff;
  font-weight: normal;
  position: relative;
  cursor: pointer;
  padding-left: 34px;
  line-height: 24px;
  margin: 0;
}
.sign__group--checkbox input:not(:checked) + label a,
.sign__group--checkbox input:checked + label a {
  color: #ed1c24;
}
.sign__group--checkbox input:not(:checked) + label a:hover,
.sign__group--checkbox input:checked + label a:hover {
  color: #ed1c24;
  text-decoration: underline;
}
.sign__group--checkbox input:not(:checked) + label:before,
.sign__group--checkbox input:checked + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background-color: #222028;
  border-radius: 8px;
}
.sign__group--checkbox input:not(:checked) + label:after,
.sign__group--checkbox input:checked + label:after {
  font-family: 'tabler-icons';
  content: '\ea5e';
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  transition: 0.4s ease;
  color: #ed1c24;
}
.sign__group--checkbox input:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
.sign__group--checkbox input:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
.sign__group--checkbox label::-moz-selection {
  background: transparent;
  color: #fff;
}
.sign__group--checkbox label::selection {
  background: transparent;
  color: #fff;
}
.sign__radio {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
.sign__radio li {
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
}
.sign__radio li:last-child {
  margin-bottom: 0;
}
.sign__radio input:not(:checked),
.sign__radio input:checked {
  position: absolute;
  left: -9999px;
}
.sign__radio label {
  display: block;
  margin: 0;
  position: relative;
  font-weight: 400;
  cursor: pointer;
  font-size: 16px;
  color: #c0c0c0;
  line-height: 20px;
  padding-left: 30px;
  transition: color 0.4s ease;
}
.sign__radio label:before {
  content: '';
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  border: 4px solid #222028;
  background-color: transparent;
  border-radius: 50%;
  left: 0;
  top: 0;
  transition: border-color 0.4s ease;
}
.sign__radio label:hover {
  color: #fff;
}
.sign__radio input:checked + label {
  color: #fff;
}
.sign__radio input:checked + label:before {
  border-color: #ed1c24;
}
.sign__gallery {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 46px;
  overflow: hidden;
  border-radius: 8px;
}
.sign__gallery input {
  position: absolute;
  left: -9999px;
  opacity: 0;
  z-index: 1;
}
.sign__gallery label {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  z-index: 2;
  height: 46px;
  color: #fff;
  padding: 0 60px 0 20px;
  background-color: #222028;
  border: 2px solid transparent;
  font-weight: 400;
  margin: 0;
  width: 100%;
  font-size: 16px;
  cursor: pointer;
  transition: 0.4s ease;
  border-radius: 8px;
}
.sign__gallery label:before {
  content: '\eb0a';
  font-family: "tabler-icons";
  pointer-events: none;
  position: absolute;
  right: 20px;
  top: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 46px;
  width: 20px;
  font-size: 20px;
}
.sign__gallery label:hover {
  border-color: #ed1c24;
}
.sign__btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 46px;
  width: 100%;
  border-radius: 8px;
  background-color: transparent;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  border: 2px solid #ed1c24;
  margin-top: 10px;
}
.sign__btn:hover {
  background-color: rgba(249,171,0,0.05);
}
.sign__text_dinfo {
  display: block;
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 24px;
  color: #fff;
}
.sign__text_dinfo a{
  color: #da1106;
  font-weight: 600;
  font-size: large;
}
.sign__text {
  display: block;
  margin-top: 15px;
  font-size: 14px;
  line-height: 24px;
  color: #fff;
}
.sign__text a {
  position: relative;
  color: #ed1c24;
}
.sign__text a:hover {
  color: #ed1c24;
  text-decoration: underline;
}
.sign__delimiter {
  font-size: 14px;
  color: #fff;
  line-height: 100%;
  margin-top: 15px;
}
.sign__social {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 15px;
}
.sign__social a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
  height: 40px;
  width: 100%;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
}
.sign__social a i {
  font-size: 20px;
  margin-left: 8px;
}
.sign__social a.fb {
  background-color: #738adb;
}
.sign__social a.gl {
  background-color: #df4a32;
}
.sign__social a.tw {
  background-color: #1da1f2;
}
.sign__social a:hover {
  background-color: #fff;
}
.sign__social a:hover.fb {
  color: #3b5999;
}
.sign__social a:hover.gl {
  color: #df4a32;
}
.sign__social a:hover.tw {
  color: #1da1f2;
}
@media (min-width: 768px) {
  .sign__form {
    padding: 40px 60px;
  }
  .sign__form--full {
    padding: 30px;
  }
  .sign__form--comments {
    padding: 30px;
  }
  .sign__logo {
    margin-bottom: 40px;
  }
  .sign__btn--small {
    width: 140px;
  }
}
/*==============================
	Page 404
==============================*/
.page-404 {
  display: block;
  position: relative;
}
.page-404__wrap {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  padding: 40px 0;
}
.page-404__content {
  background-color: #1a191f;
  border: 1px solid #222028;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 20px;
  position: relative;
  width: 100%;
  max-width: 400px;
}
.page-404__title {
  position: relative;
  color: #ed1c24;
  line-height: 100%;
  font-size: 120px;
  margin-bottom: 15px;
  font-weight: 600;
}
.page-404__text {
  text-align: center;
  display: block;
  width: 100%;
  color: #fff;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 20px;
}
.page-404__btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 46px;
  width: 100%;
  border-radius: 8px;
  background-color: transparent;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  border: 2px solid #ed1c24;
  margin-top: 10px;
}
.page-404__btn:hover {
  color: #fff;
  background-color: rgba(249,171,0,0.05);
}
@media (min-width: 768px) {
  .page-404__content {
    padding: 40px 60px;
  }
}
/*==============================
	Modal
==============================*/
.modal .modal-content {
  margin: 0 auto;
  max-width: 420px;
  background-color: transparent;
  border: none;
  border-radius: 8px;
}
.modal__content {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 420px;
  padding: 30px 20px;
  border-radius: 8px;
  background: #1a191f;
  border: 1px solid #222028;
}
.modal__form {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
.modal__title__xp {
  font-weight: 400;
  color: #da1106;
  font-size: 24px;
  line-height: 100%;
  text-align: center;
  margin: 0 auto 20px auto;
}
.modal__title {
  font-weight: 400;
  color: #fff;
  font-size: 24px;
  line-height: 100%;
  margin-bottom: 30px;
}
.modal__close {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 30px;
  right: 20px;
  z-index: 1;
  color: #c0c0c0;
  font-size: 20px;
  height: 24px;
}
.modal__close:hover {
  color: #eb5757;
}
@media (min-width: 768px) {
  .modal__content {
    padding: 30px;
  }
  .modal__close {
    top: 30px;
    right: 30px;
  }
}
.modal-backdrop {
  background: rgba(34,32,40,0.9);
}
/*==============================
	Splide
==============================*/
.splide--home .splide__arrows,
.splide--content .splide__arrows {
  display: block !important;
  position: relative;
}
.splide--home .splide__arrow,
.splide--content .splide__arrow {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 8px;
  background-color: #222028;
  position: absolute;
  top: -64px;
  opacity: 1;
  font-size: 20px;
  color: #fff;
  transform: translateY(0);
}
.splide--home .splide__arrow:hover,
.splide--content .splide__arrow:hover {
  color: #ed1c24;
}
.splide--home .splide__arrow--prev,
.splide--content .splide__arrow--prev {
  right: 46px;
  left: auto;
}
.splide--home .splide__arrow--next,
.splide--content .splide__arrow--next {
  right: 0;
}
.splide--home .splide__track,
.splide--content .splide__track {
  border-radius: 8px 8px 0 0;
}
.splide--content .splide__arrow {
  top: -60px;
}
.splide--hero .splide__arrows {
  display: none;
}
.splide--hero .splide__pagination {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: absolute;
  padding: 0 15px;
  bottom: 40px;
}
.splide--hero .splide__pagination li {
  margin-right: 12px;
}
.splide--hero .splide__pagination li:last-child {
  margin-right: 0;
}
.splide--hero .splide__pagination__page {
  display: block;
  height: 4px;
  width: 4px;
  border-radius: 4px;
  background: #fff;
  transition: 0.4s ease;
  opacity: 0.25;
  margin: 0;
}
.splide--hero .splide__pagination__page.is-active {
  transform: scale(1);
  opacity: 1;
}
.splide--hero .splide__track {
  border-radius: 8px;
}
.splide--roadmap .splide__arrows {
  display: block !important;
  position: relative;
}
.splide--roadmap .splide__arrow {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 8px;
  background-color: #222028;
  position: absolute;
  top: -94px;
  opacity: 1;
  font-size: 20px;
  color: #fff;
  transform: translateY(0);
}
.splide--roadmap .splide__arrow:hover {
  color: #ed1c24;
}
.splide--roadmap .splide__arrow--prev {
  right: 26px;
  left: auto;
}
.splide--roadmap .splide__arrow--next {
  right: -20px;
}
.splide--roadmap .splide__track {
  border-radius: 8px 8px 0 0;
}
@media (min-width: 768px) {
  .splide--home .splide__arrow {
    top: -72px;
  }
  .splide--home .splide__arrow--prev {
    right: 51px;
  }
  .splide--content .splide__arrow {
    top: -65px;
  }
  .splide--content .splide__arrow--prev {
    right: 51px;
  }
  .splide--hero .splide__pagination {
    bottom: 50px;
  }
  .splide--roadmap .splide__arrow {
    top: -94px;
  }
  .splide--roadmap .splide__arrow--prev {
    right: 21px;
  }
  .splide--roadmap .splide__arrow--next {
    right: -30px;
  }
}
@media (min-width: 1200px) {
  .splide--hero .splide__arrows {
    display: inline-flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    position: absolute;
    bottom: 34px;
    left: 120px;
  }
  .splide--hero .splide__arrow {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 8px;
    background-color: rgba(255,255,255,0.1);
    position: relative;
    top: auto;
    font-size: 20px;
    color: #fff;
    opacity: 1;
    transition: 0.4s ease;
    transform: translateY(0);
  }
  .splide--hero .splide__arrow:hover {
    color: #ed1c24;
  }
  .splide--hero .splide__arrow--prev {
    margin-right: 15px;
    left: auto;
  }
  .splide--hero .splide__arrow--next {
    right: auto;
  }
  .splide--hero .splide__pagination {
    justify-content: flex-start;
    padding-left: 258px;
  }
}
/*==============================
	Plyr customization
==============================*/
.plyr {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 400;
  border-radius: 6px;
  margin-top: 24px;
}
.plyr__video-wrapper {
  background: #222028;
}
.plyr__poster {
  background-color: #222028;
}
.plyr--video {
  background: #222028;
}
@media (min-width: 1200px) {
  .plyr video {
    height: 386px;
  }
  .plyr__poster {
    background-size: cover;
  }
}
@media (min-width: 1400px) {
  .plyr video {
    height: 366px;
  }
}
.plyr__menu__container .plyr__control {
  transition: 0s ease;
}
.plyr__control.plyr__control--overlaid {
  border-radius: 50%;
}
.plyr--video .plyr__control.plyr__tab-focus,
.plyr--video .plyr__control:hover,
.plyr--video .plyr__control[aria-expanded="true"] {
  background: none;
  background-color: #ed1c24;
}
.plyr--video .plyr__control--overlaid {
  box-shadow: none;
  display: flex !important;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: rgba(255,255,255,0.2);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transition: 0.5s;
  transition-property: opacity, background-color, color, border-color, transform;
  color: #ed1c24;
  border: 6px solid rgba(255,255,255,0.15);
  padding: 0;
}
.plyr--video .plyr__control--overlaid:before {
  content: '\f691';
  font-family: "tabler-icons";
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  font-size: 24px;
  background-color: #fff;
  border: 6px solid rgba(255,255,255,0.15);
}
.plyr--video .plyr__control--overlaid svg {
  display: none;
}
.plyr--video .plyr__control--overlaid:hover,
.plyr--video .plyr__control--overlaid.plyr__tab-focus {
  background-color: rgba(255,255,255,0.2);
  border-color: rgba(249,171,0,0.5);
  color: #ed1c24;
}
.plyr--video .plyr__progress__buffer {
  box-shadow: none;
}
.plyr__progress__buffer {
  border-radius: 0;
}
.plyr--full-ui input[type="range"] {
  color: #ed1c24;
  border-radius: 0;
}
.plyr__tab-focus {
  box-shadow: none;
  outline: none;
}
.plyr__tooltip {
  font-weight: 400;
}
.plyr__control.plyr__tab-focus {
  box-shadow: none;
}
.plyr__menu__container .plyr__control[role="menuitemradio"][aria-checked="true"]::before {
  background: none;
  background-color: #ed1c24;
}
.plyr__control {
  border-radius: 6px;
}
.plyr--video .plyr__control svg {
  filter: none;
}
/*==============================
	PhotoSwipe customization
==============================*/
.pswp__bg {
  background-color: rgba(34,32,40,0.9);
}
.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
  background-color: transparent;
}
.pswp__caption__center {
  font-size: 16px;
  color: #fff;
  padding: 15px;
  font-weight: 400;
}
.pswp__counter {
  font-size: 16px;
  color: #fff;
  padding: 0 15px;
  font-weight: 400;
}
.pswp__button {
  opacity: 0.7;
}
.pswp__button:before {
  transition: 0.4s;
}
.pswp__button:hover {
  opacity: 1;
}
.pswp__button:hover:before {
  color: #ed1c24;
}
.pswp__button--close {
  background: none;
}
.pswp__button--close:before {
  content: '\eb55';
  font-family: "tabler-icons";
  position: absolute;
  display: block;
  font-size: 28px;
  color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pswp__button--fs {
  background: none;
}
.pswp__button--fs:before {
  content: '\eaea';
  font-family: "tabler-icons";
  position: absolute;
  display: block;
  font-size: 24px;
  color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pswp--fs .pswp__button--fs:before {
  content: '\eaf1';
}
.pswp__button--arrow--right:before,
.pswp__button--arrow--left:before {
  font-family: "tabler-icons";
  position: absolute;
  display: block;
  font-size: 24px;
  color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: none;
  background-color: #1a191f;
}
.pswp__button--arrow--left:before {
  content: '\ea60';
}
.pswp__button--arrow--right:before {
  content: '\ea61';
}
/*==============================
	Reward
==============================*/
.card-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	backdrop-filter: blur(20px);
	background-color: #222028d4;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.5rem;
	font-weight: bold;
	text-align: center;
	border-radius: 1rem;
	z-index: 2;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.3s ease;
}
.card-overlay.show {
	opacity: 1;
	pointer-events: auto;
}
.card-container {
	position: relative;
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
	margin-bottom: 30px;
}
.card {
	width: 220px;
	height: 280px;
	background-color: #1abc9c00;
	color: rgba(255, 255, 255, 0);
	font-size: 24px;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: transform 0.5s ease;
	perspective: 1000px;
	border: 0;
}

.card-inner {
	width: 100%;
	height: 100%;
	position: relative;
	transform-style: preserve-3d;
	transition: transform 0.5s;
}

.card-front, .card-back {
	position: absolute;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.card-front {
	background-color: #22202800;
	background-image: url("/../images/cardomc2.png");
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat; 
}

.card-back {
	transform: rotateY(180deg);
	background-color: #22202800;
	background-image: url("/../images/cardomc2.png");
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat; 
	color: white;
	font-size: 24px;
	font-weight: bold;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
	position: relative;
}
.card-text {
	position: relative;
	top: -2px;
}

#reward {
	font-size: 24px;
	margin-top: 20px;
	color: #f1c40f;
}
.text-reward-modal {
	color: white;
	text-align: center;
	font-size: larger;
}
/*==============================
	Scrollbar-track
==============================*/
.scrollbar-track-y {
  background-color: #222028 !important;
  top: 0 !important;
  bottom: 0 !important;
  height: auto !important;
  width: 4px !important;
  border-radius: 4px !important;
  right: 0 !important;
  overflow: hidden;
  cursor: pointer;
}
.scrollbar-thumb-y {
  background: #ed1c24 !important;
  width: 4px !important;
  border-radius: 4px !important;
  cursor: pointer;
}
.scrollbar-track-x {
  background-color: #222028 !important;
  left: 0 !important;
  right: 0 !important;
  height: 4px !important;
  width: auto !important;
  border-radius: 4px !important;
  bottom: 0 !important;
  overflow: hidden;
}
.scrollbar-thumb-x {
  background: #ed1c24 !important;
  height: 4px !important;
  border-radius: 4px !important;
  cursor: pointer;
}
.mr-1 {
  margin-right: 1em;
}
.mrp-5 {
	margin-right: 5%;
}
.ml-1 {
  margin-left: 1em;
}
.mr-auto, .mx-auto {
	margin-right: auto !important;
}
.w-auto {
  width: auto;
}
.toast-header {
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	padding: .25rem .75rem;
	color: #ffffff;
	background-color: rgba(255, 255, 255, 0);
	background-clip: padding-box;
	border-bottom: 0;
}
.toast-body{
	color: #ffffff;
}
.toast-header img {
	width: 20px;
	height: 20px;
	margin-right: 2%;
}
.toast {
	overflow: hidden;
	width: 100%;
	font-size: .875rem;
	background-color: #ffffff0d;
	background-clip: padding-box;
	border: 0;
	border-radius: 8px;
	border: 1px solid rgba(97, 97, 97, 0.247) !important;
	box-shadow: none;
	margin-bottom: 2%;
}
button.close {
	padding: 0;
	background-color: transparent;
	border: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.ml-2, .mx-2 {
	margin-left: .5rem !important;
}
.close {
	float: right;
	font-size: 1.5rem;
	font-weight: 100;
	line-height: 1;
	color: #ffffff;
	text-shadow: none;
	opacity: .5;
}
.close:hover {
	color: #ffffff;
	opacity: .75;
	text-decoration: none;
}
.loader_status {
  width: 17px;
  aspect-ratio: 1;
  margin-right: 1%;
  border-radius: 50%;
  background: radial-gradient(farthest-side,#ffffff 94%,#0000) top/4px 4px no-repeat, conic-gradient(#0000 30%,#ffffff);
  -webkit-mask: radial-gradient(farthest-side,#0000 calc(100% - 4px),#000 0);
  animation: l13 1s infinite linear;
}
.loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 150px; /* ou la hauteur que tu souhaites pour centrer verticalement */
  margin: 20px 0;
}

.loader-text {
  margin-top: 10px;
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: Arial, sans-serif;
  user-select: none;
}

/* Ton loader_search reste identique */
.loader_search {
  width: 50px;
  aspect-ratio: 1;
  margin-right: 1%;
  border-radius: 50%;
  background: radial-gradient(farthest-side,#ffffff 94%,#0000) top/4px 4px no-repeat, conic-gradient(#0000 30%,#ffffff);
  -webkit-mask: radial-gradient(farthest-side,#0000 calc(100% - 4px),#000 0);
  animation: l13 1s infinite linear;
}

/* Animation cléframes (si tu ne l'as pas déjà) */
@keyframes l13 {
  100% {
    transform: rotate(1turn);
  }
}
.error_status {
  width: 17px;
  aspect-ratio: 1;
  margin-right: 1%;
}
@keyframes l13{ 
  100%{transform: rotate(1turn)}
}
.custom-container {
  width: 100%;
  max-width: 80%;
}
@media (max-width: 768px) {
  .custom-container {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.sub-text {
  font-size: 15px;
  font-weight: 400;
}
.game_span {
  color: #bfbfbf;
  font-size: 16px;
}
.game_span_2 {
  color: white;
  font-size: 16px;
}
.game-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.game-item {
  display: flex;
  justify-content: space-between; /* Aligne le label à gauche et la valeur à droite */
  align-items: center;
  width: 100%;
}
.game__cat {
  display: flex;
}
.p-game {
  padding: 10px 0 10px;
}
.header__notif--user img {
  width: 38px;
  height: 38px;
  border-radius: 30px;
  object-fit: cover;
}
.live-indicator {
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #00e205;
  animation: blink 3s infinite;
  vertical-align: middle;
  margin-right: 5px;
  border-radius: 12px;
  margin-bottom: 1px;
}
.live_update {
  float: right;
  margin-left: auto;
  line-height: 15px;
  margin-bottom: 10px;
  border-radius: 8px;
  background-color: #ffffff0d;
  font-weight: 400;
  font-size: 15px;
  padding: 0.5em;
}
.live_update span {
  color: white;
}
@keyframes blink {
  0%, 100% {
      opacity: 1;
  }
  50% {
      opacity: 0.1;
  }
}
/*==============================
	Catalog
==============================*/
#scroll-content-rank {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  max-height: none;
}
.catalog {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.catalog__table {
  width: 100%;
  min-width: 990px;
  margin-top: 20px;
}
.catalog__table thead {
  border-bottom: 20px solid #1a191f;
}
.catalog__table thead th {
  font-size: 14px;
  line-height: 24px;
  color: #c0c0c0;
  font-weight: 400;
  padding: 0 20px 0 20px;
  line-height: 100%;
  margin-bottom: 0;
  border: none;
}
.catalog__table tbody tr {
  background-color: #222028;
  border-bottom: 10px solid #1a191f;
}
.catalog__table tbody td {
  padding: 15px 20px;
}
.catalog__text {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  font-size: 16px;
  color: #c0c0c0;
  font-weight: 400;
  line-height: 24px;
}
.catalog__text a {
  color: #fff;
}
.catalog__text a:hover {
  color: #ed1c24;
}
.catalog__text--rate {
  font-weight: 600;
  font-size: 16px;
  color: #fff;
}
.catalog__text--rate:before {
  content: '\eb2e';
  font-family: 'tabler-icons';
  position: relative;
  font-size: 18px;
  line-height: 24px;
  font-weight: normal;
  color: #ffc312;
  margin-right: 5px;
  margin-top: 1px;
}
.catalog__text--red {
  color: #eb5757;
}
.catalog__text--green {
  color: #29b474;
}
.catalog__text--grey {
  color: #c0c0c0;
}
.catalog__user {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.catalog__meta {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.catalog__meta h3 {
  color: #fff;
  display: block;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 0;
}
.catalog__meta span {
  color: #c0c0c0;
  font-size: 14px;
  line-height: 22px;
}
.catalog__avatar {
  display: flex;
  position: relative;
  overflow: hidden;
  margin-right: 10px;
}
.catalog__avatar img {
  height: 20px;
  width: 20px;
}
.catalog__btns {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.catalog__btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  font-size: 16px;
  color: #fff;
  border-radius: 4px;
  background-color: rgba(255,255,255,0.05);
  margin-right: 10px;
}
.catalog__btn i {
  font-size: 20px;
}
.catalog__btn:last-child {
  margin-right: 0;
}
.catalog__btn--delete {
  background-color: rgba(235,87,87,0.1);
}
.catalog__btn--delete i {
  color: #eb5757;
}
.catalog__btn--delete:hover {
  background-color: rgba(235,87,87,0.2);
}
.catalog__btn--delete:hover i {
  color: #eb5757;
}
.catalog__btn--edit {
  background-color: rgba(55,150,246,0.1);
}
.catalog__btn--edit i {
  color: #3796f6;
}
.catalog__btn--edit:hover {
  background-color: rgba(55,150,246,0.2);
}
.catalog__btn--edit:hover i {
  color: #3796f6;
}
.catalog__btn--banned {
  background-color: rgba(41,180,116,0.1);
}
.catalog__btn--banned i {
  color: #29b474;
}
.catalog__btn--banned:hover {
  background-color: rgba(41,180,116,0.2);
}
.catalog__btn--banned:hover i {
  color: #29b474;
}
.catalog__btn--view {
  background-color: rgba(255,195,18,0.1);
}
.catalog__btn--view i {
  color: rgba(255,195,18,0.8);
}
.catalog__btn--view:hover {
  background-color: rgba(255,195,18,0.2);
}
.catalog__btn--view:hover i {
  color: #ffc312;
}
@media (min-width: 768px) {
  .catalog__table {
    margin-top: 24px;
  }
}
.bg-grey {
  background-color: #222028;
}
.bg-sendomc {
  background-color: #1a191f;
}
.bg-sendomc-check input:not(:checked) + label:before {
  background-color: #1a191f;
}

.xp-bar {
  background: linear-gradient(90deg, #fcea72, #f5a623); /* jaune -> orange */
}
.custom-progress {
  background-color: #2c2c2c; /* fond sombre ou autre */
  border-radius: 50px; /* coins arrondis */
}
.xp-profil {
  font-weight: 600;
}
.xp-text-need {
  color: #bbbbbb;
}
.grade-icon {
  position: absolute;
  background-color: #222028;
  border-radius: 100px;
  bottom: 0;
  left: 0;
  width: 25px;
  height: 25px;
  padding: 3px;
}
.admin-icon {
  position: absolute;
  background-color: #222028;
  border-radius: 100px;
  bottom: 0;
  right: 0;
  width: 25px;
  height: 25px;
  padding: 3px;
}
.premium-icon {
  position: absolute;
  background-color: #222028;
  border-radius: 100px;
  top: 0;
  left: 0;
  width: 25px;
  height: 25px;
  padding: 3px;
}
.grade-icon-comment {
  position: absolute;
  background-color: #222028;
  border-radius: 100px;
  bottom: 0;
  left: -4px;
  width: 18px;
  height: 18px;
  padding: 2px;
}
.admin-icon-comment {
  position: absolute;
  background-color: #222028;
  border-radius: 100px;
  bottom: 0;
  right: -4px;
  width: 18px;
  height: 18px;
  padding: 2px;
}
.premium-icon-comment {
  position: absolute;
  background-color: #222028;
  border-radius: 100px;
  top: 0;
  left: -4px;
  width: 18px;
  height: 18px;
  padding: 2px;
}
.grade-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #222028;
  border-radius: 50%;
  padding: 3px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.grade-icon-inner {
  width: 12px;
  height: 12px;
}
.text-muted {
  color: #6c757d !important;
  display: inline-block;
}
@media (min-width: 768px) {
  .comment-text {
    max-width: 75%;
  }
}
.chevron__comment {
  font-size: 25px;
}
.comments__item--answer {
  position: relative;
  margin-left: 30px; /* espace d'indentation */
  padding-left: 15px;
}

.comments__item--answer::before {
  content: '';
  position: absolute;
  top: -15px; /* on remonte la ligne un peu au-dessus */
  bottom: -15px; /* on la descend un peu en dessous */
  left: 0;
  width: 2px;
  background-color: #444;
}
.comment__textarea {
  border: 2px solid #444;
  height: auto;
  position: relative;
  color: #fff;
  font-size: 16px;
  width: 100%;
  padding: 15px 20px;
  resize: none;
  background-color: #222028;
  border-radius: 8px;
}
.image-preview-container {
	position: relative;
	display: inline-block;
}

.image-preview {
	max-width: 200px;
	margin-top: 10px;
}

.image-remove-btn {
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.6);
	color: white;
	border-radius: 50%;
	width: 20px;
	height: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	font-weight: bold;
	font-size: 14px;
	transform: translate(-50%, -50%);
}
.badge-profile {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.section__more__comment {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 46px;
  width: 160px;
  border-radius: 8px;
  background-color: transparent;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  border: 2px solid #ed1c24;
  margin: 30px auto 0;
}
.content__tabs__c {
  margin-right: auto;
  margin-left: auto;
}
#profil__e {
  margin-top: 24px;
}
.note__textarea {
  border: 2px solid transparent;
  height: auto;
  position: relative;
  color: #fff;
  font-size: 16px;
  width: 100%;
  padding: 15px 20px;
  resize: none;
  background-color: #222028;
  border-radius: 8px;
}
.note__textarea:focus {
  border-color: #ed1c24;
}
.footer_bottom {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.main_footer_bottom {
  flex: 1;
}
.flash-message { 
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc; 
}
.flash-success {
  background-color: green;
  color: #ffffff;
  border: 0;
  border-radius: 4px;
}
.flash-info {
  background-color: #ffc107;
  color: black;
  border: 0;
  border-radius: 4px;
}
.alert_home_page {
  color: #fff;
  background-color: #0a0a0a; /* base noire */
  background-image:
    linear-gradient(rgba(255, 0, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 0, 0, 0.05) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(255, 0, 0, 0.1), rgba(0, 0, 0, 0.95));
  background-size: 40px 40px, 40px 40px, 100% 100%;
  border: 1px solid rgba(255, 0, 0, 0.3);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.1);
  padding: 1.5rem;
  border-radius: 0.5rem;
  overflow: hidden;
}
.flash-error {
  background-color: red;
  color: #ffffff;
  border: 0;
  border-radius: 4px;
}
.coomment__home__title {
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  margin-bottom: 15px;
}
.profile_img_comment_home img {
  height: 20px;
  margin-right: 3px;
  width: 20px;
  display: inline-block;
}
.border_rounded__comment__home {
  border-left: 2px solid #da1106;
  /* border-radius: 0px 8px 8px 0px; */
}
.button-emverif {
  background-color: #1a191f;
  color: white;
  padding: 0.5em;
  border-radius: 8px;
}
.profile_page_img {
  object-fit: cover;
}
.w__modal__buyomc {
  max-width: 1000px;
}
.what__is {
  color: white;
}
.loader {
  border: 6px solid #f3f3f3; 
  border-top: 6px solid #3498db; 
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.search_suggestion {
  color: white;
  font-size: x-large;
}

.search_suggestion a {
  color: #7fceea;
}
.nsfw_search {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.nsfw_search img {
  filter: blur(20px);
}

.nsfw_search::after {
  content: 'NSFW Content';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  z-index: 2;
  pointer-events: none;
}

.nsfw_search a {
  position: relative;
  z-index: 1;
}

.item_game {
  max-width: 460px !important;
  max-height: 215px !important;
  margin-left: auto;
  margin-right: auto;
  padding:0 ;
}

/*==============================
	RoadMap
==============================*/

.roadmapCol .roadmapHeader {
  background-color: #222028;
  border-radius: 5px;
  margin-bottom: 15px;
  padding: 10px 15px;
}
.roadmapCol .roadmapHeader .roadnapTitle {
  font-size: 18px;
  font-weight: 700;
}
.roadmapCol .roadmapItem {
  margin-bottom: 15px;
}
.roadmapCol .roadmapItem .roadmapItemWrap {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  gap: 10px;
  padding: 20px;
  border-radius: 10px;
  background-color: #222028;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.05);
}
.roadmapCol .roadmapItem .roadmapItemLabel {
  display: inline-flex;
  padding: 2px 7px;
  font-size: 12px;
  border-radius: 5px;
  border-left-width: 5px;
  border-left-style: solid;
}
.roadmapColor {
  color: white;
}
.view-more-btn {
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
  cursor: pointer;
  transition: 0.25s;
}
.view-more-btn:hover .view-more-title {
  color: #000;
}
.view-more-btn .view-more-title {
  color: #333;
  transition: 0.25s;
}
.view-more-btn .view-more-icon {
  position: relative;
  width: 15px;
  transition: 0.25s;
}
.view-more-btn .view-more-icon:before, .view-more-btn .view-more-icon:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  top: 50%;
  left: 0;
  background: #000;
}
.view-more-btn .view-more-icon:before {
  transform: rotate(90deg);
}

.infrastructure {
  background-color: #9BF2B1;
  border-color: #004F32;
}

.development {
  background-color: #C2BAF9;
  border-color: #483082;
}


.security {
  background-color: #FFDCC5;
  border-color: #C13206;
}

.uxui {
  background-color: #DCE6FF;
  border-color: #05047E;
}

.bonus {
  background-color: #FFF1B3;
  border-color: #c5a200;
}

.hidden-item {
  margin-bottom: 0 !important;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(10px);
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease-out, transform 0.5s ease-out;
}

.visible-item {
  max-height: 1000px;
  /* Giá trị lớn để đảm bảo mở rộng đầy đủ */
  opacity: 1;
  transform: translateY(0);
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease-out, transform 0.5s ease-out;
}
.bg_under_dev {
  background-color: #222028;
}
.hero__slide-link {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  z-index: 1;
}

.hero__slide-link .hero__slide {
  pointer-events: none; /* évite les conflits de clics sur les éléments internes */
}

.hero__slide-link * {
  pointer-events: none; /* rend tout le contenu insensible pour que le <a> capte le clic */
}
.footer-background-hidden {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100px; /* ou ce que tu veux */
	background: red; /* pour tester, à retirer ensuite */
	z-index: 1;
	opacity: 0; /* rend invisible mais présent */
	pointer-events: none; /* empêche d'interagir avec */
}