@charset "UTF-8";
* {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  scrollbar-color: #000 #720225;
  scrollbar-width: thin;
}
*::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: #000; /* or add it to the track */
}
*::-webkit-scrollbar-thumb {
  background: #720225;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  min-height: 100%;
  height: max-content;
  position: relative;
  background-color: rgb(34, 32, 36);
  background-position: center;
}
body.default, body.home {
  background-image: url("/assets/img/Background_text.png");
  background-attachment: fixed;
  background-size: cover;
}
body.tournament {
  background-image: url("/assets/img/Background_tournoi-RL.jpeg");
  background-attachment: fixed;
  background-size: cover;
}
body.tournament-rl {
  background-image: url("/assets/img/Background_tournoi-RL.jpeg");
  background-attachment: fixed;
  background-size: cover;
}
body.tournament-r6 {
  background-image: url("/assets/img/r6bg3.jpg");
  background-attachment: fixed;
  background-size: cover;
}
body.tournament-acc {
  background-image: url("/assets/img/accbg.jpg");
  background-attachment: fixed;
  background-size: cover;
}
body.tournament-pz {
  background-image: url("/assets/img/PZ-BG.jpeg");
  background-attachment: fixed;
  background-size: cover;
}
body.vote {
  background: radial-gradient(50% 50% at 50% 50%, #222024 0%, #000000 100%);
}
#background-video {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
}
#background-video video {
  height: 100%;
}
#background-video img {
  height: 100%;
}
@media screen and (max-width: 1279px) {
  #background-video {
    display: none;
  }
}

.fake-navbar {
  height: 70px;
  width: 100%;
}
@media screen and (max-width: 1279px) {
  .fake-navbar {
    height: 75px;
  }
}

.navbar {
  width: 100%;
  height: 70px;
  background: linear-gradient(270deg, #2B010E 34.88%, #720225 115%);
  box-shadow: 0px 4px 20px #720225;
  padding: 0;
  display: flex;
  position: fixed;
  top: 0;
  z-index: 99;
  padding-right: 30px;
  transition: height 0.4s, transform 0.4s;
}
.navbar .sect-1 {
  display: flex;
  align-items: center;
  width: 390px;
  height: 100%;
  background-color: black;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
  position: relative;
  padding-right: 50px;
  padding-left: 30px;
}
.navbar .sect-1:before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 96%;
  height: 100%;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
  background: #222024;
  left: 0;
  top: 0;
  transition: all 0.4s;
}
.navbar .sect-2 {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  justify-content: space-evenly;
  padding-left: 0px;
  padding-right: 30px;
  flex-grow: 1;
  transition: padding-left 0.4s;
  height: 100%;
}
.navbar .sect-2 a, .navbar .sect-2 > div {
  height: 100%;
  font-family: Jura;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  display: flex;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: #00FFFF;
  transition: color 0.3s;
  cursor: pointer;
}
.navbar .sect-2 a:hover, .navbar .sect-2 > div:hover {
  color: #46ACC2;
}
.navbar .sect-2 a.disabled, .navbar .sect-2 > div.disabled {
  cursor: not-allowed;
}
.navbar .sect-2 a.disabled:hover, .navbar .sect-2 > div.disabled:hover {
  opacity: 0.2;
}
.navbar .sect-2 > div {
  position: relative;
}
.navbar .sect-2 > div:after {
  content: "▼";
  margin-left: 10px;
  margin-top: 5px;
  font-size: 10px;
  color: #00FFFF;
}
.navbar .sect-2 > div > div {
  width: max-content;
  position: absolute;
  flex-direction: column;
  top: 70px;
  display: flex;
  right: 0;
  z-index: 2;
}
.navbar .sect-2 > div > div a {
  color: rgb(37, 40, 48);
  background: rgba(255, 255, 255, 0.8);
  font-size: medium;
  margin: 1px 0;
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 140px;
  padding: 0 10px;
  height: 0;
  overflow: hidden;
  transition: height 0.3s, opacity 0.3s;
  border-radius: 0;
  opacity: 0;
}
.navbar .sect-2 > div:hover::after {
  color: #46ACC2;
}
.navbar .sect-2 > div:hover > div {
  height: auto;
}
.navbar .sect-2 > div:hover > div a {
  height: 40px;
  opacity: 1;
}
.navbar .sect-2 > div:hover > div a:hover {
  transition: all 0.3s;
  background: rgb(37, 40, 48);
  color: #00FFFF;
}
.navbar .sect-3 {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  position: relative;
}
.navbar .sect-3 a + div {
  position: absolute;
  width: max-content;
  flex-direction: column;
  top: 70px;
  right: 0;
  display: flex;
  height: 100%;
}
.navbar .sect-3 a + div a {
  color: rgb(37, 40, 48);
  background: rgba(255, 255, 255, 0.8);
  font-size: medium;
  margin: 1px 0;
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 140px;
  padding: 0 10px;
  height: 0;
  overflow: hidden;
  transition: height 0.3s, opacity 0.3s;
  border-radius: 0;
  opacity: 0;
}
.navbar .sect-3:hover a + div {
  height: auto;
}
.navbar .sect-3:hover a + div a {
  height: 40px;
  opacity: 1;
}
.navbar .sect-3:hover a + div a:hover {
  transition: all 0.3s;
  background: rgb(37, 40, 48);
  color: #00FFFF;
}
.navbar.reduced {
  height: 55px;
}
.navbar.reduced .sect-1 #altf4-btn-alt, .navbar.reduced .sect-1 #altf4-btn-f4 {
  display: none;
}
.navbar.reduced .sect-1:after {
  width: 10px;
  height: 150%;
  transform: rotate(42deg);
  right: 24px;
  top: -10px;
}
.navbar.reduced .sect-2 {
  padding-left: 0;
}
.navbar.masked {
  transform: translateY(-100%);
}
@media screen and (max-width: 1279px) {
  .navbar {
    display: none;
  }
}

.navbar-mobil {
  width: 100%;
  height: 75px;
  padding: 0;
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: 0;
  z-index: 10;
  background: #000000;
}
.navbar-mobil .sect-1,
.navbar-mobil .sect-2,
.navbar-mobil .sect-3 {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.navbar-mobil .sect-1 {
  width: 75px;
  min-width: 75px;
  cursor: pointer;
}
.navbar-mobil .sect-3 {
  width: 75px;
  min-width: 75px;
  cursor: pointer;
}
.navbar-mobil .sect-3 .menu-mobil-icon {
  width: 100%;
  height: 100%;
  background-image: url("/assets/img/Icon.svg");
  background-position: center;
  background-size: 50%;
  background-repeat: no-repeat;
}
.navbar-mobil .sect-3 .menu-mobil-icon.active {
  background-image: url("/assets/img/Icon_black.svg");
  background-color: #720225;
}
@media screen and (min-width: 1280px) {
  .navbar-mobil {
    display: none;
  }
}

.menu-mobil-content {
  display: flex;
  position: fixed;
  top: 75px;
  bottom: 100%;
  left: 0;
  right: 0;
  background: #720225;
  flex-direction: column;
  justify-content: space-between;
  transition: bottom 0.3s;
  z-index: 9;
  overflow: auto;
}
.menu-mobil-content div {
  font-family: Jura;
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 35px;
}
.menu-mobil-content div a, .menu-mobil-content div > div {
  height: 55px;
  border: 1px solid black;
  margin-bottom: 4px;
  text-decoration: none;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.menu-mobil-content div > div div {
  display: none;
}
.menu-mobil-content div:last-child a {
  background-color: black;
  color: #720225;
  display: flex;
  justify-content: center;
  align-items: center;
}
.menu-mobil-content div:last-child a:before {
  content: "";
  background-repeat: no-repeat;
  width: 35px;
  height: 100%;
  background-position: center;
  position: absolute;
  left: 10%;
}
.menu-mobil-content div:last-child a.twitch:before {
  background-image: url("/assets/sn-logos/bxl-twitch 2.svg");
}
.menu-mobil-content div:last-child a.youtube:before {
  background-image: url("/assets/sn-logos/bxl-youtube 1.svg");
}
.menu-mobil-content div:last-child a.discord:before {
  background-image: url("/assets/sn-logos/bxl-discord 1.svg");
}
.menu-mobil-content div:last-child a.instagram:before {
  background-image: url("/assets/sn-logos/bxl-instagram 1.svg");
}
.menu-mobil-content div:last-child a.twitter:before {
  background-image: url("/assets/sn-logos/bxl-twitter 2.svg");
}
.menu-mobil-content.active {
  bottom: 0;
}

main {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
main .section-content {
  width: 100%;
  height: 100%;
  position: relative;
  min-height: calc(100vh - 125px);
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: Jura;
  font-style: normal;
  color: #00FFFF;
  flex-wrap: wrap;
  padding-bottom: 50px;
}
main .section-content.bg-flou {
  background: rgba(34, 32, 36, 0.072);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
}
@supports (not (-webkit-backdrop-filter: blur(50px))) and (not (backdrop-filter: blur(50px))) {
  main .section-content.bg-flou {
    background: rgba(34, 32, 36, 0.9);
  }
}
@media screen and (max-width: 1279px) {
  main .section-content.bg-flou {
    background: rgba(34, 32, 36, 0.9);
  }
}
@media screen and (max-width: 1279px) {
  main .section-content {
    margin: 0;
    min-height: calc(100vh - 130px);
  }
}
main .home-content {
  width: 70%;
  position: fixed;
  top: 0;
  bottom: 0;
  margin-left: 35%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}
main .home-content .home-content-head {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
main .home-content .home-content-head .home-content-head-logo {
  height: 180px;
  background: rgba(0, 255, 255, 0.149);
  backdrop-filter: blur(20.748px);
  display: flex;
  align-items: center;
  position: relative;
}
main .home-content .home-content-head .home-content-head-logo img {
  height: 70%;
  margin-left: 280px;
}
main .home-content .home-content-head #background-video {
  transform: rotateY(180deg);
  position: absolute;
  right: 0;
  top: 0;
  height: 190%;
  z-index: 0;
}
main .home-content .navbar_home {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
main .home-content .navbar_home a {
  font-family: Jura;
  width: 100%;
  height: 60px;
  justify-content: center;
  font-weight: 600;
  font-size: x-large;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #00FFFF;
  background: linear-gradient(270deg, #2B010E -12.76%, #720225 76.8%);
  box-shadow: inset 5px 5px 15px rgba(0, 0, 0, 0.25), inset -5px -5px 15px rgba(0, 0, 0, 0.25);
}
main .home-content .navbar_home .connect-via-twitch-btn {
  background: linear-gradient(270deg, #2B010E -12.76%, #6441A5 76.8%) !important;
  color: #FFFFFF !important;
}
main .home-content .navbar_home #home-announce-displayer {
  height: 110px;
  width: 100%;
  background: rgba(0, 255, 255, 0.149);
  backdrop-filter: blur(20.748px);
}
main .home-attach {
  position: fixed;
  top: 0;
  left: 0;
  height: 120%;
  width: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}
main .home-attach .home-attach-background {
  width: 100%;
  height: 120%;
  position: absolute;
  transform: rotate(10deg);
  transform-origin: right top;
  overflow: hidden;
  background-position: -8000px -8000px;
  background-repeat: no-repeat;
}
main .home-attach .home-attach-background:after {
  content: "";
  position: absolute;
  width: 35px;
  height: 100%;
  right: 0;
  background: linear-gradient(180deg, #2B010E 37.04%, #720225 120.79%);
  box-shadow: 0px 20px 4px rgba(0, 0, 0, 0.25), inset 0px 25px 15px rgba(230, 0, 18, 0.25);
}
main .home-attach .home-attach-background:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: inherit;
  transform-origin: right top;
  transform: rotate(-10deg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}
main .home-attach .home-attach-logo {
  height: 103px;
  position: absolute;
  background: rgba(0, 0, 0, 0.149);
  backdrop-filter: blur(20.748px);
  display: flex;
  justify-content: center;
}
main .home-attach .home-attach-logo img {
  width: 100%;
}

footer {
  height: 55px;
  background: black;
  filter: drop-shadow(0px -4px 20px #720225);
  position: relative;
  top: 100%;
  right: 0;
  left: 0;
}
footer div {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Jura;
}
footer div a {
  color: #46ACC2;
  text-decoration: none;
}
footer div a:hover {
  color: #00FFFF;
}

main footer {
  filter: none;
}

#notification-container {
  position: fixed;
  top: 150px;
  left: 0;
  z-index: 99;
}
#notification-container div {
  padding: 15px;
  cursor: pointer;
  margin-top: 10px;
  border-radius: 5px;
}
#notification-container div.error {
  background-color: rgb(230, 0, 18);
  color: white;
  filter: drop-shadow(13px 13px 20px rgba(230, 0, 18, 0.35));
}
#notification-container div.default {
  background-color: #00FFFF;
}
#notification-container div.warning {
  background-color: #ffa200;
  color: black;
}
#notification-container div.success {
  background-color: #46ACC2;
}

.admin-nav-bar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px 0;
}
.admin-nav-bar a {
  font-size: large;
  color: #00FFFF;
  text-decoration: none;
}
.admin-nav-bar a:after {
  content: " > ";
}
.admin-nav-bar a:hover {
  color: #46ACC2;
}
.admin-nav-bar span {
  font-size: x-large;
}

.color-prim {
  color: #00FFFF;
}

.color-prim-low {
  color: #46ACC2;
}

.color-sec {
  color: rgb(230, 0, 18);
}

.color-sec-low {
  color: #720225;
}

.bg-prim {
  background-color: #00FFFF;
}

.bg-prim-low {
  background-color: #46ACC2;
}

.bg-sec {
  background-color: rgb(230, 0, 18);
}

.bg-sec-low {
  background-color: #720225;
}

.bg-dark {
  background-color: rgba(0, 0, 0, 0.27);
}

.bg-darker {
  background-color: #161A20;
}

.color-white {
  color: white;
}

.bg-blur:before {
  content: "";
  position: absolute;
  bottom: -25px;
  top: -25px;
  right: -25px;
  left: -25px;
  background: inherit;
  box-shadow: inset 0 0 0 200px rgba(255, 255, 255, 0.2);
  filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.5);
}

.connect-via-twitch-btn {
  background: #6441A5;
  border-radius: 5px;
  height: 35px;
  display: flex;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: #FFFFFF;
  white-space: nowrap;
  padding: 10px;
  transition: color 0.3s, box-shadow 0.5s;
}
.connect-via-twitch-btn span {
  width: 100%;
  font-family: Jura, serif;
  font-style: normal;
  font-weight: 600;
  font-size: large;
}
.connect-via-twitch-btn .twitch-logo {
  width: 20px;
  margin-left: 10px;
}
.connect-via-twitch-btn:hover {
  color: #46ACC2;
  box-shadow: 0 0 5px #6441A5;
}

#share-vote-button {
  background-color: rgb(230, 0, 18);
  padding: 8px 16px;
  border-radius: 5px;
  font-size: small;
  margin: 20px 0;
  border: none;
  color: white;
  outline: none;
  cursor: pointer;
}
#share-vote-button:disabled {
  background-color: #720225;
}
#share-vote-button:hover {
  background-color: #720225;
}

.search-bar-style {
  background: rgba(70, 172, 194, 0.15);
  border: 1px solid #46ACC2;
  box-sizing: border-box;
  border-radius: 5px;
  color: #00FFFF;
  padding: 7px 15px;
  width: 100%;
  outline: none;
  font-family: Jura, serif;
  position: relative;
}
.search-bar-style::placeholder {
  color: #00FFFF;
  font-family: inherit;
}
.search-bar-style::after {
  content: "🔍";
  position: absolute;
  right: 0;
  top: 0;
  height: 50px;
  width: 50px;
  z-index: 1;
}

.selector-style-1 {
  outline: none;
  background: rgba(70, 172, 194, 0.15);
  border: 1px solid #46ACC2;
  box-sizing: border-box;
  border-radius: 5px;
  color: #00FFFF;
  cursor: pointer;
  font-family: Jura, serif;
}
.selector-style-1 option {
  background: rgb(37, 40, 48);
  color: #00FFFF;
}

.selector-style-2 {
  outline: none;
  background-color: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  font-family: Jura, serif;
}
.selector-style-2 option {
  background: rgb(37, 40, 48);
  color: #00FFFF;
}

.admin-button.button-delete {
  color: rgb(230, 0, 18);
}
.admin-button.button-edit, .admin-button.button-default {
  color: white;
}
.admin-button:hover.button-delete {
  color: #720225;
}
.admin-button:hover.button-edit, .admin-button:hover.button-default {
  color: #46ACC2;
}

a {
  text-decoration: none;
}
a.color-prim:hover {
  color: #46ACC2;
}
a.color-sec:hover {
  color: #720225;
}
a.color-prim-low:hover {
  color: #00FFFF;
}
a.color-sec-low:hover {
  color: rgb(230, 0, 18);
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
#tab-container {
  width: 100%;
  font-family: Jura;
  font-style: normal;
  color: #00FFFF;
}
#tab-container #tab-head {
  background: #161A20;
  width: 100%;
  height: 60px;
  display: flex;
  text-align: center;
  justify-content: space-evenly;
}
#tab-container #tab-head .tab-content-label {
  color: #46ACC2;
  font-weight: 400;
  font-size: large;
  cursor: pointer;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}
#tab-container #tab-head .tab-content-label.active, #tab-container #tab-head .tab-content-label:hover {
  transition: color 0.3s;
  color: #00FFFF;
}
#tab-container #tab-content {
  background: #252830;
  width: 100%;
}
#tab-container #tab-content .tab-content-content {
  display: none;
  padding: 20px;
  position: relative;
}
#tab-container #tab-content .tab-content-content.active {
  display: flex;
}
#tab-container #tab-content .tab-content-content #bio-container {
  width: 100%;
}
#tab-container #tab-content .tab-content-content #bio-container .bio-title {
  text-align: center;
}
#tab-container #tab-content .tab-content-content #bio-container .bio-content {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#tab-container #tab-content .tab-content-content #bio-container .bio-content .bio-content-image {
  margin-top: 20px;
  height: 300px;
  position: absolute;
}
#tab-container #tab-content .tab-content-content #bio-container .bio-content .bio-content-sentences-container-1,
#tab-container #tab-content .tab-content-content #bio-container .bio-content .bio-content-sentences-container-2 {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  width: 50%;
  height: 300px;
  text-align: center;
}
#tab-container #tab-content .tab-content-content #bio-container .bio-content .bio-content-sentences-container-1 > div,
#tab-container #tab-content .tab-content-content #bio-container .bio-content .bio-content-sentences-container-2 > div {
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  width: max-content;
  height: max-content;
}
#tab-container #tab-content .tab-content-content #bio-container .bio-content .bio-content-sentences-container-1 {
  align-items: flex-end;
  margin-right: 140px;
}
#tab-container #tab-content .tab-content-content #bio-container .bio-content .bio-content-sentences-container-1 > div {
  background-color: #720225;
}
#tab-container #tab-content .tab-content-content #bio-container .bio-content .bio-content-sentences-container-1 > div:nth-child(1) {
  margin-right: -60px;
}
#tab-container #tab-content .tab-content-content #bio-container .bio-content .bio-content-sentences-container-1 > div:nth-child(2) {
  margin-right: -50px;
}
#tab-container #tab-content .tab-content-content #bio-container .bio-content .bio-content-sentences-container-2 {
  margin-left: 140px;
}
#tab-container #tab-content .tab-content-content #bio-container .bio-content .bio-content-sentences-container-2 > div {
  background-color: #46ACC2;
}
#tab-container #tab-content .tab-content-content #bio-container .bio-content .bio-content-sentences-container-2 > div:nth-child(1) {
  margin-left: -100px;
}
#tab-container #tab-content .tab-content-content #bio-container .bio-content .bio-content-sentences-container-2 > div:nth-child(2) {
  margin-left: -60px;
}
#tab-container #tab-content .tab-content-content #bio-container .bio-content .bio-content-sentences-container-2 > div:nth-child(3) {
  margin-left: -20px;
}
@media screen and (max-width: 900px) {
  #tab-container #tab-content .tab-content-content #bio-container .bio-content {
    flex-direction: column;
  }
  #tab-container #tab-content .tab-content-content #bio-container .bio-content .bio-content-image {
    position: relative;
  }
  #tab-container #tab-content .tab-content-content #bio-container .bio-content .bio-content-sentences-container-1,
  #tab-container #tab-content .tab-content-content #bio-container .bio-content .bio-content-sentences-container-2 {
    margin: 0;
    height: auto;
    width: 100%;
  }
  #tab-container #tab-content .tab-content-content #bio-container .bio-content .bio-content-sentences-container-1 > div,
  #tab-container #tab-content .tab-content-content #bio-container .bio-content .bio-content-sentences-container-2 > div {
    margin: 5px 0 !important;
    width: 100%;
  }
}
#tab-container #tab-content .tab-content-content #config-container {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  min-height: 650px;
}
#tab-container #tab-content .tab-content-content #config-container .pc-config {
  padding: 20px;
}
#tab-container #tab-content .tab-content-content #config-container .pc-config h4 {
  text-align: center;
}
#tab-container #tab-content .tab-content-content #config-container .pc-config:first-child {
  align-self: flex-start;
}
#tab-container #tab-content .tab-content-content #config-container .pc-config:first-child > div {
  background-color: #46ACC2;
}
#tab-container #tab-content .tab-content-content #config-container .pc-config:last-child > div {
  background-color: #720225;
}
#tab-container #tab-content .tab-content-content #config-container .pc-config > div {
  border-radius: 15px;
  padding: 20px;
}
#tab-container #tab-content .tab-content-content #config-container .pc-config > div div {
  background-position: 10px;
  background-size: 40px 40px;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  color: white;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  margin: 5px;
  padding: 5px 5px 5px 60px;
}
#tab-container #tab-content .tab-content-content #config-container .pc-config > div .cg {
  background-image: url("/assets/pc-config/cg.svg");
}
#tab-container #tab-content .tab-content-content #config-container .pc-config > div .screen {
  background-image: url("/assets/pc-config/screen.svg");
}
#tab-container #tab-content .tab-content-content #config-container .pc-config > div .ssd {
  background-image: url("/assets/pc-config/ssd.svg");
}
#tab-container #tab-content .tab-content-content #config-container .pc-config > div .proc {
  background-image: url("/assets/pc-config/cpu.svg");
}
#tab-container #tab-content .tab-content-content #config-container .pc-config > div .cm {
  background-image: url("/assets/pc-config/cm.svg");
}
#tab-container #tab-content .tab-content-content #config-container .pc-config > div .ram {
  background-image: url("/assets/pc-config/ram.svg");
}
#tab-container #tab-content .tab-content-content #commands-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#tab-container #tab-content .tab-content-content #commands-container table {
  border-collapse: separate;
  border-spacing: 6px;
}
#tab-container #tab-content .tab-content-content #commands-container table tbody tr {
  background-color: rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s;
}
#tab-container #tab-content .tab-content-content #commands-container table tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.3);
}
#tab-container #tab-content .tab-content-content #commands-container table tbody tr td {
  border-radius: 10px;
  padding: 8px 25px;
}

.vote-section-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 70px);
}

#vote-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
#vote-container .vote-item {
  width: 330px;
  height: 440px;
  border: 10px solid #720225;
  border-radius: 5px;
  filter: drop-shadow(13px 13px 20px rgba(230, 0, 18, 0.35));
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  color: white;
}
#vote-container .vote-item .vote-item-background {
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #720225;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}
#vote-container .vote-item .vote-item-background:before {
  display: none !important;
}
#vote-container .vote-item .vote-item-title {
  font-size: large;
  width: 0;
  overflow: hidden;
  height: 440px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  background-color: #720225;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
#vote-container .vote-item .vote-item-title a {
  position: absolute;
  bottom: 0;
  right: -35px;
  transition: right 0.3s;
}
#vote-container .vote-item .vote-item-button {
  position: absolute;
  background-color: #720225;
  padding: 10px 20px;
  font-size: large;
  font-weight: bolder;
  display: none;
  border-radius: 5px;
  color: white;
  transition: background-color 0.3s;
  opacity: 0.9;
}
#vote-container .vote-item .vote-item-button:hover {
  background-color: rgb(230, 0, 18);
}
#vote-container .vote-item .vote-item-voted {
  position: absolute;
  bottom: 0;
  top: 0;
  right: 0;
  left: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  padding: 30px;
  text-align: center;
}
#vote-container .vote-item .vote-item-voted .vote-item-voted-reward {
  display: flex;
  justify-content: center;
  align-items: center;
}
#vote-container .vote-item .vote-item-voted .vote-item-voted-reward span {
  font-size: 50px;
  color: gold;
  font-weight: bolder;
}
#vote-container .vote-item .connect-via-twitch-btn {
  position: absolute;
  display: none;
}
@media screen and (min-width: 1280px) {
  #vote-container .vote-item.active, #vote-container .vote-item:hover {
    transform: scale(1.1);
    z-index: 1;
  }
}
#vote-container .vote-item.active .connect-via-twitch-btn, #vote-container .vote-item:hover .connect-via-twitch-btn {
  display: flex;
}
#vote-container .vote-item.active .vote-item-background:before, #vote-container .vote-item:hover .vote-item-background:before {
  display: block !important;
}
#vote-container .vote-item.active .vote-item-voted, #vote-container .vote-item:hover .vote-item-voted {
  display: flex;
}
#vote-container .vote-item.active .vote-item-title, #vote-container .vote-item:hover .vote-item-title {
  width: 50px;
}
#vote-container .vote-item.active .vote-item-title a, #vote-container .vote-item:hover .vote-item-title a {
  right: 0;
  z-index: 1;
}
#vote-container .vote-item.active .vote-item-button, #vote-container .vote-item:hover .vote-item-button {
  display: block;
}
@media screen and (min-width: 1280px) {
  #vote-container .vote-item:hover {
    transform: scale(1.1);
    z-index: 2;
  }
}

#tournois-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
}
#tournois-nav a {
  height: 100%;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  max-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 10px solid #161A20;
  border-radius: 5px;
  transition: transform 0.2s;
  position: relative;
}
#tournois-nav a img {
  width: 100%;
}
#tournois-nav a:hover {
  transform: scale(1.01);
  border-color: #720225;
}

#twitch-embed {
  width: 100%;
  height: 610px;
  border: 5px solid #720225;
}

#social-network {
  position: fixed;
  right: -191px;
  top: 200px;
  width: 250px;
  height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  cursor: pointer;
  z-index: 9;
  font-family: Jura;
}
#social-network .twitch,
#social-network .youtube,
#social-network .discord,
#social-network .twitter,
#social-network .instagram {
  height: 50px;
  background-repeat: no-repeat;
  background-color: rgba(37, 40, 48, 0.9);
  box-shadow: -4px 4px 11px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  display: flex;
  align-items: center;
  background-position: 10px center;
  padding: 0 60px;
  text-decoration: none;
  font-size: large;
  font-weight: bold;
  color: #00FFFF;
  transition: all 0.3s;
}
#social-network .twitch:hover,
#social-network .youtube:hover,
#social-network .discord:hover,
#social-network .twitter:hover,
#social-network .instagram:hover {
  transform: translate(-190px, 0);
}
#social-network .twitch {
  background-image: url("/assets/sn-logos/bxl-twitch.svg");
}
#social-network .youtube {
  background-image: url("/assets/sn-logos/bxl-youtube.svg");
}
#social-network .discord {
  background-image: url("/assets/sn-logos/bxl-discord.svg");
}
#social-network .twitter {
  background-image: url("/assets/sn-logos/bxl-twitter.svg");
}
#social-network .instagram {
  background-image: url("/assets/sn-logos/bxl-instagram.svg");
}
@media screen and (max-width: 1279px) {
  #social-network {
    display: none;
  }
}

#list-container {
  width: 100%;
}
#list-container .list-categ .list-categ-head {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  color: #00FFFF;
  font-size: larger;
  font-weight: bold;
  background: #222024;
  box-shadow: inset 0px -6px 23px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}
#list-container .list-categ .list-categ-head .admin-button-container {
  position: absolute;
  right: 100px;
}
#list-container .list-categ .list-categ-head:after {
  content: ">";
  font-size: xx-large;
  font-weight: bolder;
  color: #00FFFF;
  position: absolute;
  right: 50px;
  transform: rotate(90deg);
  transition: transform 0.3s;
}
#list-container .list-categ .list-categ-head.active:after {
  transform: rotate(-90deg);
}
#list-container .list-categ .list-categ-content .list-categ-content-head {
  display: flex;
  background: #161A20;
  padding: 0 20px;
  color: #00FFFF;
  width: 100%;
}
#list-container .list-categ .list-categ-content .list-categ-content-head .list-categ-content-head-show,
#list-container .list-categ .list-categ-content .list-categ-content-head .list-categ-content-head-search,
#list-container .list-categ .list-categ-content .list-categ-content-head .list-categ-content-head-sort {
  width: 33.3333333333%;
  display: flex;
  font-size: small;
}
#list-container .list-categ .list-categ-content .list-categ-content-head .list-categ-content-head-show {
  justify-content: flex-start;
}
#list-container .list-categ .list-categ-content .list-categ-content-head .list-categ-content-head-search {
  justify-content: center;
}
#list-container .list-categ .list-categ-content .list-categ-content-head .list-categ-content-head-sort {
  justify-content: flex-end;
}
#list-container .list-categ .list-categ-content .list-categ-content-games {
  overflow: auto;
  height: 600px;
}
#list-container .list-categ .list-categ-content .list-categ-content-games table {
  border-spacing: 3px;
  border-collapse: separate;
  width: 100%;
}
#list-container .list-categ .list-categ-content .list-categ-content-games table thead {
  height: 30px;
  background: rgba(22, 26, 32, 0.3);
  width: 100%;
}
#list-container .list-categ .list-categ-content .list-categ-content-games table thead th:nth-child(1) {
  padding-left: 50px;
}
@media screen and (max-width: 699px) {
  #list-container .list-categ .list-categ-content .list-categ-content-games table thead th:nth-child(5), #list-container .list-categ .list-categ-content .list-categ-content-games table thead th:nth-child(4) {
    display: none;
  }
}
#list-container .list-categ .list-categ-content .list-categ-content-games table tbody tr {
  height: 50px;
  min-height: 50px;
  max-height: 50px;
  padding: 0;
}
#list-container .list-categ .list-categ-content .list-categ-content-games table tbody tr:nth-child(2n+0) {
  background: rgba(22, 26, 32, 0.5);
}
#list-container .list-categ .list-categ-content .list-categ-content-games table tbody tr td {
  height: 50px;
  min-height: 50px;
  max-height: 50px;
  background: rgba(22, 26, 32, 0.3);
}
#list-container .list-categ .list-categ-content .list-categ-content-games table tbody tr td.game-img, #list-container .list-categ .list-categ-content .list-categ-content-games table tbody tr td.user-img {
  padding: 0;
}
#list-container .list-categ .list-categ-content .list-categ-content-games table tbody tr td.game-img img, #list-container .list-categ .list-categ-content .list-categ-content-games table tbody tr td.user-img img {
  height: 50px;
}
#list-container .list-categ .list-categ-content .list-categ-content-games table tbody tr td.user-img {
  width: 50px;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
#list-container .list-categ .list-categ-content .list-categ-content-games table tbody tr td.user-img img {
  border-radius: 50%;
}
#list-container .list-categ .list-categ-content .list-categ-content-games table tbody tr td.user-img:hover:after {
  content: "Voir";
  color: white;
  position: absolute;
}
#list-container .list-categ .list-categ-content .list-categ-content-games table tbody tr td.game-title, #list-container .list-categ .list-categ-content .list-categ-content-games table tbody tr td.user-display_name {
  width: 50%;
  padding-left: 30px;
  position: relative;
  transition: padding-bottom 0.3s;
}
#list-container .list-categ .list-categ-content .list-categ-content-games table tbody tr td.game-title .admin-button-container, #list-container .list-categ .list-categ-content .list-categ-content-games table tbody tr td.user-display_name .admin-button-container {
  transform: rotateX(90deg);
  position: absolute;
  left: 30px;
  bottom: 0;
  background-color: rgb(22, 26, 32);
  z-index: 1;
  overflow: hidden;
  transform-origin: top;
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
  display: flex;
}
#list-container .list-categ .list-categ-content .list-categ-content-games table tbody tr td.game-title.active, #list-container .list-categ .list-categ-content .list-categ-content-games table tbody tr td.user-display_name.active {
  padding-bottom: 50px;
}
#list-container .list-categ .list-categ-content .list-categ-content-games table tbody tr td.game-title.active .admin-button-container, #list-container .list-categ .list-categ-content .list-categ-content-games table tbody tr td.user-display_name.active .admin-button-container {
  transform: rotateX(0);
  opacity: 1;
}
#list-container .list-categ .list-categ-content .list-categ-content-games table tbody tr td.user-display_name {
  width: 100%;
}
#list-container .list-categ .list-categ-content .list-categ-content-games table tbody tr td.game-status {
  text-align: center;
}
#list-container .list-categ .list-categ-content .list-categ-content-games table tbody tr td.game-links {
  text-align: center;
}
#list-container .list-categ .list-categ-content .list-categ-content-games table tbody tr td.game-note {
  width: 50%;
  padding-left: 15px;
  position: relative;
  transition: padding-left 0.3s;
}
#list-container .list-categ .list-categ-content .list-categ-content-games table tbody tr td.game-notation {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 699px) {
  #list-container .list-categ .list-categ-content .list-categ-content-games table tbody tr td.game-note, #list-container .list-categ .list-categ-content .list-categ-content-games table tbody tr td.game-notation {
    display: none;
  }
  #list-container .list-categ .list-categ-content .list-categ-content-games table tbody tr td.game-title {
    padding-left: 5px;
  }
}
#list-container .list-categ .list-categ-content .list-categ-content-games table tbody tr:hover {
  transition: background-color 0.3s;
  background-color: rgba(22, 26, 32, 0.9);
}

#media-header-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: rgba(22, 26, 32, 0.7);
}
#media-header-container .media-header-container-item {
  margin: 25px 25px;
  width: 45%;
  min-width: 300px;
  height: 380px;
  background: #161A20;
  border: 5px solid #252830;
  box-shadow: 9px 9px 20px rgba(0, 0, 0, 0.67);
  font-family: Audiowide, serif;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 38px 20px;
  color: white;
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  cursor: pointer;
  transition: 0.3s;
}
#media-header-container .media-header-container-item:hover {
  transform: scale(1.02);
  background-color: #111418;
}
#media-header-container .media-header-container-item:nth-child(1) {
  background-image: url("/assets/img/mise_en_valeur_bg1.png");
}
#media-header-container .media-header-container-item:nth-child(2) {
  background-image: url("/assets/img/mise_en_valeur_bg2.png");
}
#media-header-container .media-header-container-item h2 {
  font-size: 40px;
  max-width: 70%;
  text-align: right;
}
#media-header-container .media-header-container-item div {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
#media-header-container .media-header-container-item div span {
  margin: 4px 0;
  font-size: large;
}
#media-header-container .media-header-container-item:after {
  content: "";
  width: 50px;
  height: 50px;
  background-color: #252830;
  position: absolute;
  bottom: -90px;
  left: 250px;
  z-index: 1;
  opacity: 0;
  transform: rotate(45deg);
  pointer-events: none;
  transition: bottom 0.3s, opacity 0.3s;
}
#media-header-container .media-header-container-item.active:after {
  opacity: 1;
  bottom: -70px;
}

#media-box-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  padding-bottom: 50px;
  gap: 20px;
  padding: 20px;
}
#media-box-container .media-box {
  border: 5px solid #252830;
  filter: drop-shadow(3px 3px 8px rgba(0, 0, 0, 0.5));
  height: 323px;
  width: 245px;
  cursor: pointer;
  position: relative;
  border-radius: 5px;
  transition: 0.2s;
}
#media-box-container .media-box .media-box-img {
  width: 100%;
}
#media-box-container .media-box .media-box-link {
  opacity: 0;
  position: absolute;
  right: 5px;
  bottom: 5px;
}
#media-box-container .media-box:hover {
  border-color: #111418;
  transform: scale(1.02);
}
#media-box-container .media-box:hover .media-box-link {
  transition: opacity 0.2s;
  opacity: 1;
}
#media-box-container .media-box:after {
  content: "";
  width: 50px;
  height: 50px;
  background-color: #252830;
  position: absolute;
  bottom: -90px;
  left: 80px;
  z-index: 1;
  opacity: 0;
  transform: rotate(45deg);
  pointer-events: none;
  transition: bottom 0.3s, opacity 0.3s;
}
#media-box-container .media-box.active:after {
  opacity: 1;
  bottom: -70px;
}

.media-box-chapter-container {
  position: absolute;
  height: 340px;
  display: flex;
  flex-direction: column;
  left: 0;
  right: 0;
  background: #252830;
  box-shadow: 0px 9px 20px rgba(0, 0, 0, 0.67);
  padding: 10px 54px;
  overflow: auto;
  z-index: 1;
  align-items: center;
}
.media-box-chapter-container table {
  width: 100%;
  height: max-content;
  border-collapse: separate;
  border-spacing: 4px;
}
.media-box-chapter-container table tr {
  background: rgba(22, 26, 32, 0.3);
}
.media-box-chapter-container table tr:nth-child(2n+1) {
  background: rgba(22, 26, 32, 0.5);
}
.media-box-chapter-container table tr:hover {
  background: rgba(22, 26, 32, 0.9);
}
.media-box-chapter-container table tr td:nth-child(1) {
  width: 62px;
}
.media-box-chapter-container table tr td:nth-child(1) img {
  width: 112px;
}
.media-box-chapter-container table tr td:nth-child(2) {
  padding-left: 30px;
  color: white;
  cursor: pointer;
}
.media-box-chapter-container table tr td:nth-child(3) {
  width: 81px;
  position: relative;
}
.media-box-chapter-container table tr td:nth-child(3) a {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.media-box-chapter-container table tr td:nth-child(3) a img {
  width: 40px;
}

#ytplayer {
  position: fixed;
  right: -500px;
  z-index: 11;
  width: 500px;
  height: 281px;
  opacity: 0;
  bottom: 0;
  transition: right 0.3s, opacity 0.3s;
}
#ytplayer ~ .ytplayer-buttons {
  position: fixed;
  bottom: 281px;
  z-index: 13;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  left: 100%;
}
#ytplayer ~ .ytplayer-buttons .ytplayer-closebutton, #ytplayer ~ .ytplayer-buttons .ytplayer-resizebutton {
  border-radius: 5px;
  overflow: hidden;
  border: none;
  outline: none;
  background-color: transparent;
}
#ytplayer ~ .ytplayer-buttons .ytplayer-closebutton img, #ytplayer ~ .ytplayer-buttons .ytplayer-resizebutton img {
  height: 40px;
}
#ytplayer.active {
  right: 0;
  opacity: 1;
}
#ytplayer.active ~ .ytplayer-buttons {
  left: auto;
  right: 0;
}
@media screen and (max-width: 1279px) {
  #ytplayer {
    width: 250px;
    height: 141px;
  }
  #ytplayer ~ .ytplayer-buttons {
    bottom: 141px;
  }
}

.screen-popup {
  width: 60%;
  height: 60%;
  position: fixed;
  top: 20%;
  left: 20%;
  z-index: 11;
  background: #161A20;
  box-shadow: inset 0px -6px 23px rgba(0, 0, 0, 0.25);
  border: 10px solid #720225;
  filter: drop-shadow(13px 13px 20px rgba(0, 0, 0, 0.39));
  border-radius: 10px;
  font-family: Jura;
}
.screen-popup .screen-popup-content {
  overflow: auto;
  height: 100%;
  width: 100%;
}
.screen-popup button {
  background-color: transparent;
  border: none;
  outline: none;
  position: absolute;
  right: 0;
  top: -60px;
}
.screen-popup button img {
  height: 35px;
}
.screen-popup button:hover img {
  filter: saturate(1000%);
}
@media screen and (max-width: 1279px) {
  .screen-popup {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  .screen-popup button {
    top: 0;
  }
}

.wheel-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}
.wheel-container .wheel-container-wheel {
  width: 40%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wheel-container .wheel-container-wheel div {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.wheel-container .wheel-container-wheel .wheel {
  transition: all 2s;
  border-radius: 50%;
}
.wheel-container .wheel-container-wheel .wheel:hover {
  animation-name: rotate;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.wheel-container .wheel-container-wheel .wheel.wheel-big {
  width: 100%;
  height: 100%;
}
.wheel-container .wheel-container-wheel .wheel.wheel-small {
  width: 48%;
  height: 100%;
}
.wheel-container .wheel-container-content {
  width: 50%;
}
.wheel-container .wheel-container-content h1 {
  color: #FEE70B;
  cursor: pointer;
  transition: color 0.3s;
}
.wheel-container .wheel-container-content h1:hover {
  color: rgb(230, 0, 18);
}
@media screen and (max-width: 1279px) {
  .wheel-container.wheel-container .wheel-container-wheel {
    width: 50%;
    margin-bottom: 40px;
  }
  .wheel-container.wheel-container .wheel-container-content {
    width: 100%;
  }
  .wheel-container.wheel-container h1 {
    display: none;
  }
}

.golden-book-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}
.golden-book-container .golden-book-container-golden-book {
  width: 40%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: sticky;
  top: 10vh;
  align-self: flex-start;
}
.golden-book-container .golden-book-container-golden-book div {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.golden-book-container .golden-book-container-golden-book .golden-book.golden-book-big {
  width: 100%;
  height: 100%;
}
.golden-book-container .golden-book-container-golden-book .golden-book.golden-book-small {
  width: 48%;
  height: 100%;
}
.golden-book-container .golden-book-container-content {
  width: 50%;
}
.golden-book-container .golden-book-container-content h1 {
  color: #FEE70B;
  cursor: pointer;
  transition: color 0.3s;
}
.golden-book-container .golden-book-container-content h1:hover {
  color: rgb(230, 0, 18);
}
.golden-book-container .golden-book-container-content .myMessage {
  text-decoration: underline;
  cursor: pointer;
  color: #00FFFF;
}
.golden-book-container .golden-book-container-content .golden-book.golden-book-small {
  height: 150px;
}
.golden-book-container .golden-book-container-content .golden-book-container-content-wrap-message-button {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1279px) {
  .golden-book-container.golden-book-container .golden-book-container-golden-book {
    width: 50%;
    margin-bottom: 40px;
    position: unset;
    top: unset;
  }
  .golden-book-container.golden-book-container .golden-book-container-content {
    width: 100%;
  }
  .golden-book-container.golden-book-container h1 {
    display: none;
  }
}

.error-404 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.error-404 .error-404-head {
  width: 100%;
}
.error-404 h1 {
  font-size: xxx-large;
  color: #00FFFF;
  margin: 80px;
  font-family: Jura;
  font-style: normal;
  font-weight: bold;
  font-size: 70px;
  line-height: 83px;
}
.error-404 .error-404-content {
  display: flex;
}
.error-404 .error-404-content .error-404-content-bottom {
  margin-right: 50px;
}
.error-404 .error-404-content .error-404-content-nav {
  display: flex;
  flex-direction: column;
  margin-left: 50px;
}
.error-404 .error-404-content .error-404-content-nav a, .error-404 .error-404-content .error-404-content-nav > div {
  font-family: Jura;
  font-style: normal;
  font-weight: normal;
  font-size: 30px;
  line-height: 35px;
  display: flex;
  align-items: center;
  letter-spacing: 0.025em;
  color: #00FFFF;
  text-decoration: none;
  margin: 4px 0;
  cursor: pointer;
}
.error-404 .error-404-content .error-404-content-nav a:before, .error-404 .error-404-content .error-404-content-nav > div:before {
  content: "➡";
  margin-right: 15px;
}
.error-404 .error-404-content .error-404-content-nav > div div {
  display: none;
}

#strawpollContainer {
  width: 100%;
  border: 1px solid #222222;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  transition: height 1s;
}
#strawpollContainer .container {
  min-height: 100%;
  width: 80px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
#strawpollContainer .container .slider {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: calc(100% + 100px);
  width: 100%;
  bottom: -100%;
  left: 0;
  background-color: #46ACC2;
  transition: background-color 0.3s;
}
#strawpollContainer .container .slider.winner {
  background-color: #00FFFF;
}
#strawpollContainer .container .slider .img {
  width: 80px;
}
#strawpollContainer .container .slider .counter {
  position: absolute;
  display: none;
  top: 0;
  height: 80px;
  justify-content: center;
  align-items: center;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
  font-size: x-large;
  color: white;
}
#strawpollContainer .container .slider .counter::after {
  content: "%";
}
#strawpollContainer .container .slider .text {
  display: flex;
  justify-content: center;
  align-items: center;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
  padding: 20px 0;
  font-size: larger;
  writing-mode: vertical-lr;
  text-orientation: mixed;
  color: white;
}
#strawpollContainer .total {
  position: absolute;
  bottom: -50px;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
}

.head-logo {
  display: flex;
  align-items: center;
  gap: 5px;
}
.head-logo .logo-duc {
  width: 125px;
  height: auto;
}
.head-logo .altf4-btn {
  position: relative;
  outline: none;
  border: 4px solid black;
  border-radius: 6px;
  background-color: rgba(0, 255, 255, 0.1019607843);
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 20px;
  cursor: default;
  font-family: Audiowide, serif;
  font-size: 18px;
}
.head-logo .altf4-btn:before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  right: 0;
  left: 0;
  z-index: -1;
  background: inherit;
  box-shadow: inset -15px -15px 4px rgba(0, 0, 0, 0.6);
  filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.5);
}
.head-logo .altf4-btn.active {
  background-color: #720225;
}

#blue-screen {
  background: #1F67B1;
  padding: 0 10%;
  color: white;
  font-family: Jura;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  position: relative;
}
#blue-screen .blue-screen-head {
  font-family: Segoe Print;
  font-style: normal;
  font-weight: normal;
  font-size: 150px;
  display: flex;
  align-items: center;
  letter-spacing: -0.065em;
  color: #FFFFFF;
}
#blue-screen h1 {
  font-weight: bold;
  font-size: xxx-large;
}
#blue-screen p {
  font-size: larger;
}
#blue-screen .blue-screen-bottom {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
#blue-screen .blue-screen-bottom img {
  border: 9px solid #FFFFFF;
  width: 172px;
  height: 172px;
  margin-right: 20px;
}
#blue-screen .blue-screen-bottom div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#live-notification {
  position: fixed;
  left: -5px;
  top: 150px;
  z-index: 1;
  font-family: Jura;
  display: flex;
  padding: 8px 16px;
  align-items: center;
  text-align: center;
  background: rgba(37, 40, 48, 0.9);
  box-shadow: -4px 4px 11px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  color: #00FFFF;
  font-size: x-large;
}
@media screen and (max-width: 1279px) {
  #live-notification {
    display: none;
  }
}

.tier-list-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  height: 70px;
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
  border: 1px solid black;
  margin-bottom: 3px;
}
.tier-list-item img {
  pointer-events: none;
  width: 53px;
  height: 70px;
}
.tier-list-item div {
  pointer-events: none;
  padding: 0 15px;
  background-color: white;
  height: 100%;
  display: flex;
  align-items: center;
  color: black;
  width: calc(100% - 53px);
}
.tier-list-item.dragged {
  opacity: 0.3;
}
.tier-list-item::before {
  content: "";
  width: 0px;
  height: 100%;
}

#tier-list {
  width: 100%;
}
#tier-list tr {
  min-height: 70px;
  display: flex;
  margin: 0 0 5px 0;
}
#tier-list tr td {
  display: flex;
  min-height: 100%;
}
#tier-list tr td:first-child {
  width: 120px;
  color: white;
  justify-content: center;
  align-items: center;
  border-right: 1px solid black;
  margin-right: 5px;
}
#tier-list tr td:last-child {
  background-color: #fff;
  width: calc(100% - 125px);
  font-weight: bolder;
  flex-wrap: wrap;
}
#tier-list tr td:last-child::after {
  content: "";
  width: 0;
  height: 100%;
}
#tier-list tr td:last-child.dragover::after {
  min-width: 53px;
  background-color: grey;
  transition: background-color 0.3s;
}
#tier-list .tier-list-item {
  width: 53px;
  margin: 0;
  border-radius: 0;
  border: none;
}
#tier-list .tier-list-item div {
  display: none;
}
#tier-list .tier-list-item.dragover, #tier-list .tier-list-item.dragover:hover {
  width: 106px;
}
#tier-list .tier-list-item.dragover::before, #tier-list .tier-list-item.dragover:hover::before {
  min-width: 53px;
  background-color: grey;
  transition: width 0.3s, background-color 0.6s;
}

.btn-hype, .btn-unhype {
  background-size: contain;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
}

.btn-hype {
  background-image: url("/assets/icons/unlike.png");
}

.btn-unhype {
  background-image: url("/assets/icons/like.gif");
}

ul.daf4-list li {
  color: white;
  background: rgba(22, 26, 32, 0.3);
}
ul.daf4-list li:nth-child(2n+1) {
  background: rgba(22, 26, 32, 0.5);
}
ul.daf4-list li:hover {
  background: rgba(22, 26, 32, 0.8);
}

.bg-image {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  opacity: 0.05;
  background-position: center center;
  background-size: cover;
  pointer-events: none;
}

@media screen and (max-width: 699px) {
  .hide-while-little-width {
    display: none;
  }
}
.game-tab-content {
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.game-cards-container {
  margin: 0;
  padding: 30px 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card-game-settings {
  position: absolute;
  width: 75px;
  height: 75px;
  top: -100%;
  right: 0;
  transition: top 0.2s ease-in-out;
}
.card-game-settings:hover .settings-container {
  display: block;
  transform: translateY(0);
}
.card-game-settings:hover .game-card-edit-btn {
  background-color: #A50336 !important;
}
.card-game-settings:hover .game-card-edit-btn svg {
  pointer-events: none;
  transition: 0.2s;
  transform: scale(1.1);
  rotate: 60deg;
}
.card-game-settings:hover .game-card-edit-btn .settings-container {
  display: block;
  transform: translateY(0) !important;
}

.game-playlist-playbtn {
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.game-playlist-playbtn:hover {
  opacity: 0.8;
}

.game-playlist-btn {
  display: flex;
  justify-content: center;
  padding: 10px;
  margin-top: auto;
  width: 100%;
  cursor: pointer;
  background-color: rgb(230, 0, 18);
  border: solid 2px rgb(230, 0, 18);
  color: #ffffff;
}
.game-playlist-btn:hover {
  background-color: rgba(230, 0, 18, 0.8);
}

.game-playlist-btn-none {
  display: flex;
  justify-content: center;
  padding: 10px;
  margin-top: auto;
  width: 100%;
  cursor: default;
  border: solid 2px #494949;
  color: #494949;
  background-color: transparent;
  font-weight: bolder;
}

.game-card {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 10px;
  height: auto;
  min-height: 300px;
  width: 245px;
  background-color: #161A20;
  filter: drop-shadow(3px 3px 8px rgba(0, 0, 0, 0.5));
  overflow: hidden;
  border-radius: 5px;
  transition: transform 0.2s;
}
.game-card:hover {
  transform: scale(1.02);
  background-color: #111418;
}
.game-card:hover .card-game-settings {
  top: 0;
}
.game-card .game-infos {
  position: relative;
}
.game-card .game-details {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 10px;
  background-color: rgba(22, 26, 32, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s;
}
.game-card .game-details:hover {
  opacity: 1;
}
.game-card .game-details .top-infos {
  height: 100%;
}
.game-card .game-details .top-infos i {
  font-weight: bolder;
  color: #FEE70B;
}
.game-card .game-details .top-infos p {
  width: 100%;
  height: 200px;
  color: #ffffff;
  overflow-y: auto;
  overflow-wrap: break-word;
  hyphens: auto;
  margin: 0;
}
.game-card .game-details .bottom-infos {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 100%;
}
.game-card .game-details .bottom-infos p {
  margin: 0;
}
.game-card .game-details .bottom-infos img {
  width: 35px;
  height: 35px;
}
.game-card .game-details .bottom-infos div {
  width: 100%;
}
.game-card .game-details .bottom-infos div p:first-child {
  font-size: 14px;
  font-style: italic;
  font-weight: bolder;
  color: #46ACC2;
}
.game-card .game-details .bottom-infos div p:last-child {
  width: 165px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.game-card .game-details .bottom-infos a {
  margin-left: auto;
}
.game-card .game-card-img {
  width: 100%;
  height: 300px;
}
.game-card .game-status-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 10px 0;
}
.game-card .game-status-container img {
  width: 35px;
  height: 35px;
}
.game-card .game-title {
  color: #ffffff;
  margin-bottom: 10px;
}
.game-card .game-title:hover {
  color: #FEE70B;
}

.settings-container {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-100%);
  transition: transform 0.2s;
}

.card-game-settings-menu {
  display: flex;
  flex-direction: column;
  width: 245px;
  transition: 0.2s;
}
.card-game-settings-menu a {
  color: #161A20;
  padding: 8px 16px;
  margin-bottom: 1px;
  background-color: rgba(255, 255, 255, 0.95);
  transition: 0.2s;
}
.card-game-settings-menu a:hover {
  color: #00FFFF;
  background-color: rgb(37, 40, 48);
}

.game-card-edit-btn {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  height: 75px;
  width: 75px;
  padding: 10px;
  display: flex;
  justify-content: right;
  align-items: start;
  border: 0;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  background-color: #720225;
  color: white;
  transition: 0.2s;
}
.game-card-edit-btn svg {
  fill: white;
  height: 24px;
  width: 24px;
}

.edit-btn {
  background-color: #46ACC2 !important;
  color: white !important;
}
.edit-btn:hover {
  background-color: #286C7B !important;
}

.del-btn {
  background-color: #E60012 !important;
  color: white !important;
}
.del-btn:hover {
  background-color: #720225 !important;
}

.propose-game-btn {
  background-color: #FEE70B;
  color: #161A20;
  width: 265px;
}
.propose-game-btn:hover {
  background-color: rgba(254, 231, 11, 0.8);
}

.list-settings {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.list-settings-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.list-admin-settings {
  display: flex;
  justify-content: center;
  gap: 10px;
  background-color: rgba(0, 0, 0, 0.25);
}

.list-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 8px 16px;
  background-color: #720225;
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  margin: 0 2px;
  color: white;
  transition: 0.2s;
}
.list-tab:hover {
  background-color: #A50336;
}
.list-tab.active {
  background-color: #00FFFF;
  color: #161A20;
}

.nb-hype {
  font-size: 1.3rem;
  text-align: center;
}

.nav-tabs {
  border-bottom: 1px solid #00FFFF !important;
  padding: 0 130px;
}
@media screen and (max-width: 1275px) {
  .nav-tabs {
    padding: 0 110px !important;
  }
}
@media screen and (max-width: 1100px) {
  .nav-tabs {
    padding: 0 70px !important;
  }
}
@media screen and (max-width: 800px) {
  .nav-tabs {
    padding: 0 50px !important;
  }
}
@media screen and (max-width: 400px) {
  .nav-tabs {
    padding: 0 40px !important;
  }
}

.nav {
  justify-content: center;
}

.game-interactions {
  display: flex;
  gap: 10px;
  justify-content: center;
  width: 100%;
}

.event-badge::after {
  content: "";
  position: absolute;
  border: 6px solid;
  font-size: xx-large;
  border-radius: 6px;
  font-weight: bolder;
  top: 15px;
  left: 15px;
  padding: 8px 15px;
  backdrop-filter: blur(8px);
}
.event-badge.event-badge-finish::after {
  content: "Terminé";
  border-color: rgb(230, 0, 18);
  color: rgb(230, 0, 18);
}
.event-badge.event-badge-progress::after {
  content: "En cours";
  border-color: #00FFFF;
  color: #00FFFF;
}
.event-badge.event-badge-soon::after {
  content: "Bientôt";
  border-color: #00FFFF;
  color: #00FFFF;
}

.slick-next {
  right: -50px !important;
}
@media screen and (max-width: 1100px) {
  .slick-next {
    right: -40px !important;
  }
}
@media screen and (max-width: 800px) {
  .slick-next {
    right: -30px !important;
  }
}

.slick-prev {
  left: -50px !important;
}
@media screen and (max-width: 1100px) {
  .slick-prev {
    left: -40px !important;
  }
}
@media screen and (max-width: 800px) {
  .slick-prev {
    left: -30px !important;
  }
}

.slick-slide {
  display: flex !important;
  justify-content: center !important;
}

@-moz-document url-prefix() {
  .bg-flou {
    background: rgba(34, 32, 36, 0.9) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
  }
  .game-details {
    backdrop-filter: none !important;
    background: rgba(0, 0, 0, 0.5) !important;
  }
}

/*# sourceMappingURL=style.css.map */
