/**
* Debug skeleton.
*/

/*
* {
  background: #000 !important;
  color: #0f0 !important;
  outline: solid #f00 1px !important;
}
*/

/**
* Styling of base HTML elements.
*/

/* ----- FONTS ----- */

@font-face {
  font-family: ChaneyRegular;
  src: url('../fonts/CHANEY-Regular.otf') format('opentype');
  font-display: swap;
}

@font-face {
  font-family: ChaneyExtended;
  src: url('../fonts/CHANEY-Extended.otf') format('opentype');
  font-display: swap;
}

@font-face {
  font-family: ChaneyUltraExtended;
  src: url('../fonts/CHANEY-UltraExtended.otf') format('opentype');
  font-display: swap;
}

@font-face {
  font-family: ChaneyWide;
  src: url('../fonts/CHANEY-Wide.otf') format('opentype');
  font-display: swap;
}

body {
  background: linear-gradient(90deg, #1c1c1c, #232323 28.44%, #1b1b1b 51.75%, #1d1d1d 76.5%, #1c1c1c);
  font-family: -apple-system, 'Inter', system-ui, BlinkMacSystemFont, Ubuntu, sans-serif;
}

p {
  color: rgba(255, 255, 255, 0.8);
}

ul {
  list-style-type: none;
  padding-inline-start: 0;
  margin-block-start: 0;
}

button:not(:disabled) {
  cursor: pointer;
}

header {
  display: flex;
  height: 80px;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
}

footer {
  background: #e5e5e5;
  width: 100%;
  height: 300px;
  position: static;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 0px 100px 0px;
}

/* ----- Fonts ----- */

@font-face {
  font-family: 'SF-Pro';
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: url('../fonts/SF-Pro.ttf') format('truetype');
}

@font-face {
  font-family: 'SF-Pro';
  font-style: normal;
  font-weight: bold;
  font-display: swap;
  src: url('../fonts/SF-Pro-Display-Bold.otf') format('opentype');
}

@font-face {
  font-family: 'SF-Pro';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/SF-Pro-Display-Heavy.otf') format('opentype');
}

/* Utils */

.hidden {
  display: none;
}

/**
* Styling of buttons.
*/

.primary {
  background: #e5e5e5;
  color: #141519;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight {
  margin: 0 25px;
  border-radius: 12px;
  background: #e5e5e5;
  padding: 0 20px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-button-img {
  width: 30px;
  padding-right: 20px;
}

.highlight-dark {
  margin: 0 25px;
  border-radius: 12px;
  background: #1d1d1d;
  padding: 0 20px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.1s;
}

.highlight-dark:hover {
  background: #7688c9;
}

/**
* Styling of navigation.
*/

.header-wrapper {
  width: 1280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navigation-large {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 600px;
}

.extra-large {
  width: 500px;
}

.navigation-collapsed {
  display: none;
}

.nav-hidden {
  display: none;
}

.collapse {
  transition: 0.1s ease-in;
  display: none;
  background: #e5e5e5;
  border: 0;
  border-radius: 2px;
  padding: 8px;
  cursor: pointer;
}

.collapse.active {
  transition: 0.1s ease-in;
  background: #fff;
}

.nav-logo {
  width: 50px;
  cursor: pointer;
}

.nav-text {
  font-family: 'ChaneyRegular', sans-serif;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  text-transform: capitalize;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  text-decoration: none;
}

.dropdown {
  position: relative;
}

.dropdown-button {
  display: flex;
  background: rgb(0 0 0 / 5%);
  color: rgba(255, 255, 255, 0.42);
  text-decoration: none;
  padding: 15px;
  border-radius: 3px;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0 3px;
}

.dropdown-button.active {
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgb(76, 76, 76, 0.7);
  background: rgba(255, 255, 255, 0.05);
}

.dropdown-triangle {
  width: 0;
  height: 0;
  margin-left: 10px;
  border-width: 0.4em;
  border-style: solid;
  border-color: transparent;
  border-top-width: 0.6em;
  border-top-color: currentcolor;
  border-bottom-width: 0;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #232323;
  min-width: 160px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-item {
  display: block;
  background: rgb(0 0 0 / 5%);
  color: rgba(255, 255, 255, 0.42);
  text-decoration: none;
  padding: 15px;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0);
  margin: 0;
  cursor: pointer;
}

.dropdown-item.active,
.dropdown-item:hover {
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgb(76, 76, 76, 0.7);
  background: rgba(255, 255, 255, 0.05);
}

.dropdown-visible .dropdown-content {
  display: block;
}

.dropdown-hover:hover {
  height: 50px;
  display: flex;
}

.dropdown-hover-content {
  display: none;
  position: absolute;
}

.dropdown-hover:hover .dropdown-hover-content a {
  color: black;
  padding: 5px;
  text-decoration: none;
  display: block;
  background-color: #e6e7e9;
  border-radius: 3px;
  margin: 2px 0;
}

.dropdown-hover:hover .dropdown-hover-content {
  display: grid;
  top: 55px;
}

.dropdown-hover:hover .dropbtn {
  background-color: #3e8e41;
}

.no-link {
  color: inherit;
  text-decoration: inherit;
}

.no-link:-webkit-any-link {
  color: inherit;
  text-decoration: inherit;
  cursor: pointer;
}

/**
* Styling of landing page.
*/

.banner {
  display: flex;
  justify-content: space-between;
  width: 1280px;
}

.main-container {
  display: flex;
  justify-content: center;
  margin: 80px 40px
}

.center-container {
  display: flex;
  justify-content: center;
  padding: 0 40px;
}

.light {
  background: #e5e5e5;
}

.lighter {
  background: #1c1c1c;
}

.dark {
  background: #1c1c1c;
}

.dark-light {
  background: #1b1c21;
}

.banner-text {
  max-width: 600px;
  display: flex;
  align-items: center;
}

.action-buttons {
  display: flex;
  justify-content: center;
  padding-bottom: 80px;
  max-width: 1280px;
}

.information-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 500px;
  width: 1280px;
}

.information-block-boxes {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 500px;
  width: 1280px;
}

.box-light {
  padding: 10px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 400px;
  height: 200px;
  border-radius: 8px;
  box-shadow: 0 0 0 1px rgba(53, 72, 91, 0.1), 0 3px 2px rgba(0, 0, 0, 0.04),
    0 7px 5px rgba(0, 0, 0, 0.02), 0 13px 10px rgba(0, 0, 0, 0.02),
    0 22px 17px rgba(0, 0, 0, 0.02);
}

.box-img {
  width: 150px;
}

.block-img {
  width: 300px;
  height: 300px;
  background: #1b1c21;
  border-radius: 8px;
  box-shadow: 0px 3px 5px 1px rgba(0, 0, 0, 0.25);
}

.block-content {
  max-width: 195px;
  height: 355px;
  background: #1b1c21;
  border-radius: 20px;
  padding: 30px;
}

.block-content-icon {
  margin-bottom: 30px;
}

.block-content-title {
  color: #ced3e0;
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 10px;
}

.block-content-subtitle {
  font-weight: bold;
  font-size: 15px;
  color: #ced3e0;
  margin-bottom: 30px;
}

.log-title {
  font-size: 24px;
  font-weight: 500;
  color: #1c1c1c;
}

.block-content-text {
  font-weight: 400;
  font-size: 18px;
  color: #1c1c1c;
  line-height: 1.6;
}

.block-content-text-small {
  font-size: 16px;
}

.block-text {
  width: 800px;
}

.box-paragraph {
  display: grid;
  color: #0000009e;
  width: 300px;
  grid-gap: 10px;
}

.info-paragraph {
  display: grid;
  color: #0000009e;
  max-width: 600px;
  grid-gap: 10px;
}

.info-block-img {
  width: clamp(200px, 400px, 50vw);
}

.box-title-dark {
  font-size: 26px;
  font-family: 'ChaneyRegular';
  color: #e5e5e5;
}

.box-title-light {
  font-size: 26px;
  font-family: 'ChaneyRegular';
  color: #202020;
}

.box-text-dark {
  font-weight: 400;
  font-size: 21px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

.box-text-light {
  font-weight: 400;
  font-size: 21px;
  color: rgb(31 31 31);
  line-height: 1.8;
}

.p-title {
  font-size: 28px;
  font-weight: 500;
}

/**
* Styling of typography.
*/

strong {
  font-weight: 900;
}

.text {
  font-weight: 600;
  font-style: normal;
  font-size: 18px;
}

.information-text {
  line-height: 1.6;
  font-size: 21px;
  font-weight: 300;
}

.button-text {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #181819;
  margin: 15px 0;
}

.highlight-text {
  font-style: normal;
  font-weight: 500;
  font-size: 21px;
  display: flex;
  align-items: center;
  text-align: center;
  color: rgb(0 18 25);
  margin: 15px 0;
}

.highlight-text-dark {
  font-style: normal;
  font-weight: 500;
  font-size: 21px;
  display: flex;
  align-items: center;
  text-align: center;
  color: rgb(229 229 229);
  margin: 15px 0;
}

.headline-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 500px;
}

.headline {
  font-family: 'ChaneyRegular', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 64px, 8vw);
  color: #e5e5e5;
  /* background: linear-gradient(136.04deg, #e3ecff 0%, #ad84ff 101.86%);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
}

.banner.centered {
  justify-content: center;
}

.title {
  font-size: 26px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.subtitle {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.42);
}

/**
* Styling of footer.
*/

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 1280px;
  margin: 0 40px;
}

.footer-nav {
  display: flex;
  width: 500px;
  justify-content: space-between;
}

.footer-nav-links {
  display: grid;
  grid-gap: 20px;
  font-style: normal;
  font-size: 16px;
  color: #1c1c1c;
  font-family: 'ChaneyRegular';
}

.link {
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  color: #1c1c1c;
  font-family: 'Inter';
}

.link:hover {
  text-decoration: underline;
  cursor: pointer;
  color: #7688c9;
}

.link-inline {
  text-decoration: underline;
}

.account-list {
  list-style-type: disc;
  padding-inline-start: 22px;
}

.company-brand {
  display: flex;
  justify-content: center;
  max-width: 500px;
  flex-direction: column;
  text-align: center; 
}

.company-socials {
  display: flex;
  justify-content: center;
}

.brand-name {
  font-style: normal;
  font-weight: 800;
  font-size: clamp(40px, 60px, 8vw);
  color: #1c1c1c;
  font-family: 'ChaneyRegular';
}

.social {
  width: 40px;
  height: 40px;
  margin: 20px;
  cursor: pointer;
}

/**
* Styling of forms, input and checkbox.
*/

.login {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-direction: column;
  gap: 54px;
}

.login-container {
  height: fit-content;
  width: clamp(200px, 50%, 500px);
  background: #252525;
  border-radius: 8px;
  box-shadow: 0px 3px 5px 1px rgba(0, 0, 0, 0.25);
  padding: 40px;
  display: flex;
  align-items: center;
}

.form-container {
  width: 100%;
}

.login-title {
  display: flex;
  margin-bottom: 10px;
}

.login-form {
  margin-top: 30px;
}

.input-container {
  display: grid;
  margin-bottom: 20px;
}

.input-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 10px;
}

.input-field {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 50px;
  border-radius: 3px;
  color: rgba(255, 255, 255, 0.7);
  padding: 0;
  padding-left: 10px;
}

.input-field:focus {
  border: 1px solid #7688c9;
}

.input-field:focus-visible {
  outline: none;
}

.input-field:disabled {
  cursor: not-allowed;
  background: rgba(68, 68, 68, 0.1);
  color: rgba(255, 255, 255, 0.1);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: 1px solid #7688c9;
  font-size: 16px;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0 0 0px 1000px #191a1f inset;
}

input:-webkit-autofill::first-line {
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
}

.select-field {
  background: #3b3b3b;
  border: 1px solid #4f4f4f;
  height: 54px;
  border-radius: 3px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  padding-left: 10px;
}

.form {
  margin: 0;
}

.form-button-container {
  display: flex;
  flex-direction: column;
  gap: 13.5px;
}

.register-padding {
  padding-top: 23px;
}

.form-button {
  background: #4f4f4f;
  padding: 10px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  height: 50px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  transition: 0.1s;
}

.form-button:hover {
  background: #7688c9;
}

.form-button-image {
  padding: 10px;
  width: 24px;
}

.form-button-discord {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}

.form-link {
  color: #b4b2ff;
  text-decoration: none;
}

.checkbox {
  appearance: none;
  height: 16px;
  width: 16px;
  background: #191a1f;
  border: 1px solid #313133;
  border-radius: 3px;
  cursor: pointer;
}

.checkbox:active,
.checkbox:checked:active {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05),
    inset 0px 1px 3px rgba(0, 0, 0, 0.1);
}

.checkbox:checked {
  border: 1px solid #7587c97a;
  display: flex;
  justify-content: center;
  align-items: center;
}

.checkbox:checked:after {
  content: "\2714";
  font-size: 10px;
  position: relative;
  top: 0px;
  left: 1px;
  color: #7688c9;
}

/**
* Styling of leaderboard.
*/

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.border-right {
  border-right: 2px solid #888888;
}

.leaderboard {
  padding: 80px 40px;
  display: flex;
  align-items: center;
}

.leaderboard-table {
  background: #252525;
  height: fit-content;
  width: 1280px;
  border-radius: 8px;
  box-shadow: 0px 3px 5px 1px rgb(0 0 0 / 25%);
}

.page-table {
  background: #252525;
  height: fit-content;
  border-radius: 8px;
  box-shadow: 0px 3px 5px 1px rgb(0 0 0 / 25%);
}

.table-padding {
  padding: 40px;
}

.table-nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}

.table-nav-center {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.text-overflow {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}

.nav-start {
  display: flex;
}

.nav-end {
  display: flex;
}

.table-nav-item {
  display: flex;
  align-items: center;
  text-align: center;
  background: rgb(0 0 0 / 5%);
  color: rgba(255, 255, 255, 0.42);
  text-decoration: none;
  padding: 15px;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0 3px;
}

.table-nav-item.active {
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgb(76, 76, 76, 0.7);
  background: rgba(255, 255, 255, 0.05);
}

.table-header {
  color: rgba(255, 255, 255, 0.42);
}

.table-row {
  color: rgba(255, 255, 255, 0.7);
}

.table-row:nth-child(odd) {
  background: #2f2e2e;
}

.table-row-even {
  color: rgba(255, 255, 255, 0.7);
}

.table-row-even:nth-child(even) {
  background: #15161A;
}

.table-cell {
  height: 54px;
  margin: 0 10px;
}

.table-cell.stats {
  border-bottom: 2px solid #2f2e2e;
}

.table-cell.place {
  height: unset;
}

.table-link {
  color: #b4b2ff;
  text-decoration: none;
}

.table-link:hover {
  text-decoration: underline;
}

.site-link {
  color: #e5e5e5;
  text-decoration: none;
}

.site-link:hover {
  text-decoration: underline;
}

.table-skeleton {
  width: 100%;
}

.large-cell {
  min-width: 100px;
  max-width: 200px;
  word-break: break-word;
  white-space: normal;
  font-size: 12px;
}

.header-title {
  font-weight: 200;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.42);
  text-align: left;
  height: 50px;
  border-bottom: 2px solid #2f2e2e;
}

.flag {
  height: 14px;
  border-radius: 2px;
}

.tier {
  height: 32px;
  width: 32px;
}

.text-center {
  text-align: center;
}

.leaderboard-title {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.no-width {
  max-width: none;
  font-size: clamp(32px, 52px, 8vw);
}

.pagination {
  display: flex;
  justify-content: center;
  list-style-type: none;
  margin-block: 0;
  padding-inline: 0;
  margin-inline: 0;
  margin-top: 40px;
}

.page-item {
  margin: 0 3px;
  background: rgb(0 0 0 / 5%);
  color: rgba(255, 255, 255, 0.42);
  border: 1px solid rgb(76, 76, 76, 0.42);
  border-radius: 3px;
}

.page-item.active {
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgb(76, 76, 76, 0.7);
  background: rgb(173 173 173 / 5%);
}

.page-link {
  display: block;
  padding: 10px;
  text-decoration: none;
}

.page-link:-webkit-any-link {
  color: rgba(255, 255, 255, 0.42);
}

.disabled {
  pointer-events: none;
}

/**
* Styling of user profile.
*/

.page-wrapper {
  width: 1280px;
}

.page-headline {
  color: #e5e5e5;
  font-size: clamp(26px, 48px, 8vw);
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-titles {
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: center;
  margin: 40px 0;
  margin-top: 20px;
}

.sub-info {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.nationality {
  display: flex;
  align-items: center;
}

.nation {
  margin-right: 10px;
}

.chip {
  font-size: 14px;
  padding: 10px;
  border-radius: 25px;
  margin: 0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.chip-wrapper {
  display: flex;
  justify-content: center;
}

.developer {
  color: #ff6d6d;
  background: rgba(255, 109, 109, 0.33);
}

.chip-button {
  margin: 0;
  border: 0;
  cursor: pointer;
  display: initial;
}

.moderator {
  color: #32beff;
  background: rgba(50, 190, 255, 0.33);
}

.champion {
  color: #efc663;
  background: rgba(239, 198, 99, 0.33);
}

.donator {
  color: #ff6dde;
  background: rgba(255, 109, 222, 0.33);
}

.edit {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.33);
  text-decoration: none;
}

.ranked-user {
  color: #b9ff32;
  background: rgba(187, 255, 51, 0.5);
}

.no-underline {
  text-decoration: none;
}

.separator {
  margin-top: min(80px, 8%);
}

.small-img {
  width: 30px;
  cursor: pointer;
}

.small-headline {
  display: flex;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(24px, 36px, 8vw);
  font-family: 'ChaneyRegular';
}

.table-highscores {
  table-layout: fixed;
}

.grid-cell {
  display: grid;
  align-items: center;
  justify-content: center;
}

.cell-subinfo {
  font-size: 12px;
}

.canvas-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

/**
* Styling of game page.
*/

.game-timestamp {
  font-size: clamp(16px, 21px, 8vw);
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}

.game-replay {
  text-decoration: none;
  color: inherit;
}

.player-color {
  width: 18px;
  height: 18px;
  border-radius: 30px;
}

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

/**
* Styling of status colors and errors.
*/

.info {
  color: #00BDCB;
}

.success {
  color: #b9ff32;
}

.warning {
  color: #FFA000;
}

.danger {
  color: #ff6d6d;
}

.error-headline {
  font-size: 48px;
}

.error-403 {
  width: clamp(500px, 500px, 100%);
}

/**
* Styling of account settings.
*/

.error {
  margin: 5px 0;
  font-size: 13px;
}

.is-invalid {
  border: 1px solid #DD425A;
}

.required:after {
  content:"*";
  color: #DD425A;
  margin-left: 5px;
}

/**
* Styling of changelog.
*/

.block {
  display: grid;
  line-height: 1.5;
}

.no-margin-top {
  margin-top: 0;
}

.no-margin-bottom {
  margin-bottom: 0;
}

.black {
  color: #0000009e;
}

.align-start {
  align-items: start;
}

.full-width {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 54px;
}

.fit-content {
  height: fit-content;
  height: -moz-fit-content;
}

.content-padding {
  padding: 80px 0;
}

.horizontal-padding {
  padding: 0 40px;
}

.log-separator {
  width: 100%;
  height: 2px;
  background: #1c1c1c;
  margin: 40px 0;
}

.change {
  display: flex;
  width: 100%;
}

.change-info {
  width: 20%;
}

.change-content {
  width: 100%;
}

.log-date {
  padding: 10px 0;
}

.log-chips {
  display: flex;
  margin: 20px 0;
}

.log-chip-margin {
  margin-left: 0px !important;
  margin-right: 10px !important;
}

/**
* Styling of about.
*/

.margin-vertical {
  margin: 40px 0;
}

.middle {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  margin-bottom: -1px;
}

.powerup-img-wrapper {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-green {
  background-color: #64a423;
}

.p-red {
  background-color: #d12025;
}

.p-blue {
  background-color: #1f67b0;
}

.powerups-img {
  height: 26px;
  width: 26px;
}

.effect-gap {
  margin-bottom: 5px;
}

.description-padding {
  padding: 10px 0;
}

.mode-powerup-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
}

.info-boxes-imgs {
  height: 20px;
}

/**
* Styling of utils.
*/

.info-hover-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 1px;
  gap: 10px;
}

.info-hover-button {
  background: #232428;
  border: 1px solid #404041;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  font-weight: 200;
  padding: 6px;
  display: flex;
  width: 7px;
  justify-content: center;
  align-items: center;
  height: 7px;
  border-radius: 50%;
  cursor: pointer;
}

dfn {
  position: relative;
  display: inline-block;
  font-style: normal;
  cursor: help;
}

dfn:before {
  content: attr(title);
}

dfn > .dfn-tooltip {
  display: none;
}

dfn:hover > .dfn-tooltip {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: calc(1em + 5px);
  font-size: 12px;
  width: 200px;
  margin-bottom: 10px;
  max-height: 5em;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(76, 76, 76, 0.7);
  background: rgba(173, 173, 173, 0.05);
  padding: 10px;
  border-radius: 4px;
  cursor: help;
}

/**
* Styling of responsive layout.
*/

@media screen and (max-width: 1180px) {
  .banner {
    display: grid;
    justify-content: center;
  }

  .information-block {
    display: grid;
    height: fit-content;
    height: -moz-fit-content;
    padding: 80px 40px;
    justify-content: center;
  }

  .light-img {
    display: flex;
    justify-content: center;
    margin-bottom: 80px;
  }

  .lighter-img {
    display: flex;
    justify-content: center;
    margin-top: 80px;
  }

  footer {
    height: -moz-fit-content;
    height: fit-content;
    padding: min(80px, 10%) 0px 100px 0px;
  }

  .footer {
    display: grid;
    grid-gap: 50px;
    justify-content: center;
  }

  .content-padding {
    padding: 0;
  }

  .change {
    display: grid;
  }
}

@media screen and (max-width: 950px) {
  .list-item {
    margin: 10px 0;
  }

  .banner {
    margin-top: 0px;
  }

  .controls {
    display: none;
  }

  header {
    flex-wrap: wrap;
    display: flex;
    height: initial;
    align-items: center;
    justify-content: space-between;
    padding: 22px 40px;
  }

  .header-wrapper {
    flex-wrap: wrap;
    display: flex;
    height: initial;
    align-items: center;
    justify-content: space-between;
  }

  .collapse {
    display: block;
  }

  .nav-hidden.show {
    display: block;
    flex-basis: 100%;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-align: center;
    align-items: center;
    text-align: right;
  }

  .nav-text {
    display: block;
  }

  .navigation-large {
    display: none;
  }

  .navigation-collapsed {
    display: flex;
    float: right;
  }

  .nav-list {
    color: #fff;
    padding-inline: 0;
    list-style: none;
  }
}

@media screen and (max-width: 880px) {
  .information-block-boxes {
    display: grid;
    height: fit-content;
    height: -moz-fit-content;
    grid-gap: 40px;
    justify-content: center;
    margin: 40px 0;
  }

  .table-responsive-first {
    display: none;
  }

  .page-item {
    margin: 0 2px;
    padding: 8px;
  }

  .change-info {
    width: 100%;
  }

  .log-date {
    padding: 0;
  }

  .headline-container {
    max-width: 100%;
    justify-content: start;
  }
}

@media screen and (max-width: 718px) {
  .action-buttons {
    display: grid;
    grid-gap: 40px;
  }

  .table-responsive-second {
    display: none;
  }

  .table-nav-item {
    padding: 8px;
    font-size: 14px;
  }

  .dropdown-button {
    padding: 8px;
    font-size: 14px;
  }

  .leaderboard {
    padding-top: 20px;
  }

  .leaderboard-title {
    margin-bottom: 5px;
  }

  .profile {
    padding-top: 20px;
  }

  .page-item {
    margin: 0 2px;
    padding: 5px;
  }

  .main-container {
    margin: 40px 5px;
  }

  .table-padding {
    padding: 20px 5px 20px 5px;
  }
}

@media screen and (max-width: 650px) {
  .table-nav {
    display: grid;
    grid-gap: 20px;
  }

  .table-row {
    font-size: 14px;
  }

  .table-row-even {
    font-size: 14px;
  }

  .page-item {
    margin: 0;
    padding: 1px;
  }

  .chip {
    margin: 0 5px;
  }
}

@media screen and (max-width: 530px) {
  .footer-nav {
    display: grid;
    width: 100%;
    justify-content: center;
    grid-gap: 40px;
  }

  .social {
    width: 20px;
    height: 20px;
    margin: 10px;
    cursor: pointer;
  }

  .table-responsive-third {
    display: none;
  }

  .chip-wrapper {
    display: grid;
    justify-content: center;
    grid-gap: 15px;
  }
}
