/** COLORS */
/** BREAKPOINTS */
.action-list {
  margin: 0 auto 4rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.admin .action-list {
  margin: 1rem 0;
  justify-content: flex-start;
}
@media (max-width: 580px) {
  .action-list {
    flex-direction: column;
    align-items: center;
  }
}

.upper {
  text-transform: uppercase;
}

.ranking-list,
.hof-list {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0;
  width: 1200px;
  max-width: calc(100% - 2rem);
  margin: 4rem auto 0;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}
@media (max-width: 580px) {
  .ranking-list,
  .hof-list {
    width: 400px;
  }
}
.ranking-list h2,
.hof-list h2 {
  margin: 0 auto 1rem;
}
.ranking-list table,
.hof-list table {
  /* table-layout: fixed; */
  width: 100%;
  text-align: left;
}
.ranking-list table th.order,
.hof-list table th.order {
  width: 75px;
}
@media (max-width: 580px) {
  .ranking-list table th.order,
  .hof-list table th.order {
    width: 55px;
  }
}
.ranking-list table th,
.ranking-list table td,
.hof-list table th,
.hof-list table td {
  padding: 1rem 1.5rem;
  font-size: 20px;
}
@media (max-width: 580px) {
  .ranking-list table th,
  .ranking-list table td,
  .hof-list table th,
  .hof-list table td {
    padding: 0.75rem 0.75rem;
    font-size: 16px;
  }
}
.ranking-list table thead tr th:last-of-type,
.ranking-list table thead tr td:last-of-type,
.ranking-list table tbody tr th:last-of-type,
.ranking-list table tbody tr td:last-of-type,
.hof-list table thead tr th:last-of-type,
.hof-list table thead tr td:last-of-type,
.hof-list table tbody tr th:last-of-type,
.hof-list table tbody tr td:last-of-type {
  text-align: right;
}
.ranking-list table tbody tr:nth-child(odd),
.hof-list table tbody tr:nth-child(odd) {
  background: #1c1c1c;
}

.ranking-list h2 span {
  display: block;
  font-size: 1rem;
}
.ranking-list table tbody tr:first-of-type {
  color: #fec529;
  font-weight: 700;
}
.ranking-list table tbody tr:nth-child(2) {
  font-weight: 600;
}

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
}

.loading-container {
  text-align: center;
  padding: 0;
}

.loader {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  background: transparent;
  top: 40%;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.no-data {
  text-align: center;
  font-size: 16px;
  padding: 1rem;
}
.no-data p {
  margin: 1rem 0;
}

.seasonal {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
  margin-bottom: 10rem;
  max-width: calc(100% - 2rem);
}
@media (max-width: 992px) {
  .seasonal {
    flex-direction: column;
    margin: 0 auto 2rem;
  }
}
.seasonal .product {
  position: relative;
}
.seasonal img {
  padding: 1rem 0;
}
@media (max-width: 992px) {
  .seasonal img {
    padding: 0;
  }
}
.seasonal a:not(.button) {
  text-decoration: none;
}
.seasonal a:not(.button):hover {
  text-decoration: underline;
  text-decoration-color: #f9b233;
}
.seasonal > * {
  flex-basis: 50%;
  max-width: 50%;
}
@media (max-width: 992px) {
  .seasonal > * {
    flex-basis: 100%;
    max-width: 100%;
  }
}
@media (max-width: 992px) {
  .seasonal .seasonal-body {
    order: -1;
  }
}
.seasonal .action-list {
  margin-bottom: 0;
}
@media (max-width: 580px) {
  .seasonal p {
    font-size: 1rem;
  }
}

.bg-fire {
  position: relative;
}
.bg-fire:after {
  position: absolute;
  inset: 0;
  content: "";
  background-image: url("/img/dsg/fire-orange.svg");
  background-repeat: no-repeat;
  background-position: right;
  right: -16%;
  top: -35%;
  bottom: 2%;
  z-index: -1;
}
@media (max-width: 992px) {
  .bg-fire:after {
    content: none;
  }
}

.table-wrapper {
  max-height: 500px;
  overflow: auto;
  background: #151515;
  color: #fff;
  /* padding: 2rem; */
}
@media (max-width: 768px) {
  .table-wrapper {
    max-height: 300px;
  }
}
.table-wrapper.closed {
  position: relative;
}
.table-wrapper.closed:before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background-image: url("../img/dsg/end-stamp.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80%;
  width: 500px;
  max-width: 80%;
  height: 250px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-20deg);
}
.table-wrapper:has(.no-data) {
  margin-right: 15px;
}
.table-wrapper:has(.no-data) + .table-wrapper-timer {
  display: none;
}

.table-wrapper-info {
  display: flex;
  gap: 1rem;
}
.table-wrapper-info .description {
  display: block !important;
  font-size: 14px;
  margin-left: auto !important;
  margin-right: 16px !important;
}
@media (max-width: 768px) {
  .table-wrapper-info {
    flex-direction: column;
    gap: 0;
  }
  .table-wrapper-info .description {
    order: -1;
    margin: 0.25rem auto 0 !important;
  }
  .table-wrapper-info #seasonSelect {
    width: auto;
  }
}

.table-wrapper-timer {
  background: #151515;
  margin-right: 15px;
  padding: 2rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.table-wrapper-timer br {
  display: none;
}
@media (max-width: 992px) {
  .table-wrapper-timer {
    margin-right: 0;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
  }
}
@media (max-width: 768px) {
  .table-wrapper-timer {
    gap: 0.25rem;
  }
  .table-wrapper-timer img {
    width: 100px;
  }
}
.table-wrapper-timer p {
  margin: 0 !important;
  font-size: 28px;
  text-align: left;
  color: #fff;
}
@media (max-width: 768px) {
  .table-wrapper-timer p {
    text-align: center;
    font-size: 20px;
  }
}

.process {
  margin-top: 8rem;
}

.toggle-ladder {
  border: none;
  background-color: transparent;
}
.toggle-ladder i {
  position: relative;
  top: 2px;
  transition: 0.5s;
}
.toggle-ladder i:before {
  transition: 0.5s;
}
.toggle-ladder.expanded i {
  top: 0;
}
.toggle-ladder.expanded i:before {
  transform: rotate(-180deg);
}

.img-inside {
  position: relative;
  padding-right: 23rem;
}
.img-inside.collapsible {
  background: #9850cf;
  background: linear-gradient(#5b188e, #9850cf);
  margin: 0;
  padding: 8px 1rem 14px;
  color: #fff;
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  gap: 1rem;
  cursor: pointer;
  transition: 0.3s;
  font-size: 40px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .img-inside.collapsible {
    font-size: 25px;
  }
}
.img-inside.collapsible img {
  top: 5px;
  position: relative;
  z-index: 0;
  margin-left: 7px;
  transition: 0.3s;
}
.img-inside.collapsible:hover img {
  transform: scale(1.25);
}
.img-inside.collapsible button {
  margin-left: auto;
  color: #fff;
}
.img-inside img {
  position: absolute;
  top: -55px;
  right: 0;
  z-index: -1;
}
@media (max-width: 768px) {
  .img-inside img {
    width: 40px;
  }
}

.last-valid-row {
  border-bottom: 3px solid #f9b233;
}

.season-list {
  flex-shrink: 0;
  width: 250px;
  background: #e2e2e2;
  padding: 1rem;
  min-height: 1000px;
}
.season-list h3, .season-list ul {
  margin-bottom: 1rem;
}
.season-list ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.season-link {
  display: flex;
  justify-content: space-between;
}
.season-link.active {
  color: #9850cf;
  font-weight: 900;
}
.season-link:hover {
  cursor: pointer;
  text-decoration: underline;
}

.season-ranking {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  border-top: 1px solid lightgray;
  margin-top: 1rem;
  padding-top: 1rem;
}
.season-ranking > * {
  flex-basis: 100%;
  max-width: 100%;
}
.season-ranking .new-data {
  grid-column: 2;
}
.season-ranking table {
  width: 100%;
}

.season-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.season-form .file-manager {
  margin-right: auto;
}
.season-form .form-group {
  display: flex;
  gap: 1rem;
  width: 100%;
}
.season-form .form-item {
  flex: 1;
}
.season-form .form-item label {
  display: block;
}
.season-form .form-item input,
.season-form .form-item select {
  width: 100%;
}
.season-form .form-actions {
  width: 100%;
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.page-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

table.tiny {
  table-layout: fixed;
  width: 100%;
  font-size: 12px;
}
table.tiny input,
table.tiny select {
  width: 100%;
  padding: 0.5rem;
}

span.title {
  background-color: transparent !important;
}

.club {
  color: #009d26;
}

.not-enough {
  color: #fe2929;
}

.collapsible-content {
  overflow: hidden;
  transition: 0.5s;
  max-height: 900px;
  position: relative;
}
.collapsible-content.collapsed {
  max-height: 0;
}

.category-top:has(#ladder) .category-title {
  text-align: center;
  margin-bottom: 1rem;
}

.grid {
  display: grid;
  margin: 0;
}
.grid--3 {
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1.5rem;
  width: 1200px;
  max-width: calc(100% - 2rem);
  margin: 0 auto 1.5rem;
}
@media (max-width: 1200px) {
  .grid--3 {
    zoom: 0.75;
  }
}
@media (max-width: 992px) {
  .grid--3 {
    zoom: 0.6;
  }
}
@media (max-width: 580px) {
  .grid--3 {
    zoom: 1;
    grid-template-columns: 1fr;
    width: 400px;
  }
}
.grid--4 {
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1.5rem;
  width: 1400px;
  max-width: calc(100% - 2rem);
  margin: 0 auto 1.5rem;
}
@media (max-width: 1200px) {
  .grid--4 {
    zoom: 0.75;
  }
}
@media (max-width: 992px) {
  .grid--4 {
    zoom: 0.6;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .grid--4 {
    zoom: 1;
    grid-template-columns: 1fr;
    width: 400px;
  }
}
.grid--5 {
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 1.5rem;
  width: 1400px;
  max-width: calc(100% - 2rem);
  margin: 0 auto 1.5rem;
}
@media (max-width: 1200px) {
  .grid--5 {
    zoom: 0.75;
  }
}
@media (max-width: 992px) {
  .grid--5 {
    zoom: 0.6;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .grid--5 {
    zoom: 1;
    grid-template-columns: 1fr;
    width: 400px;
  }
}
.grid--7 .view-group {
  grid-template-columns: repeat(7, 1fr);
}
@media (max-width: 1200px) {
  .grid--7 .view-group {
    grid-template-columns: repeat(5, 1fr);
  }
}
.grid--8 .view-group {
  grid-template-columns: repeat(8, 1fr);
}
@media (max-width: 1200px) {
  .grid--8 .view-group {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 1060px) {
  .grid--5 .view-group, .grid--7 .view-group, .grid--8 .view-group {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 992px) {
  .grid--5 .view-group, .grid--7 .view-group, .grid--8 .view-group {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tile {
  position: relative;
  display: flex;
  flex-direction: column;
  aspect-ratio: 1/1;
  justify-content: center;
  align-items: center;
  background: #f3f3f3;
  padding: 2rem;
  overflow: hidden;
  border-radius: 1rem;
  text-align: center;
}
.products .tile {
  padding: 2rem 1.5rem;
  gap: 0.5rem;
}
.bg-wave .tile {
  background-color: #fff;
}
@media (max-width: 768px) {
  .tile {
    margin-top: 0 !important;
  }
}
.tile img + * {
  margin-top: 1rem;
}
.products .tile img + * {
  margin-top: 0;
}
.tile i {
  font-size: 60px;
  color: #fff;
}
@media (max-width: 1440px) {
  .tile i {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .tile i {
    font-size: 30px;
  }
}
.tile h3 {
  font-size: 20px;
}
.products .tile h3 {
  margin: 0;
}
.products .tile h3.wide {
  margin: 0 -4px;
}
.tile p {
  display: none;
}
.tile span:not(.title) {
  display: block;
  aspect-ratio: 1/1;
  border-radius: 100vmax;
  padding: 1rem;
  background-color: #bfbebe;
  border: 1rem solid #fff;
  margin-bottom: 1rem;
}
@media (max-width: 1440px) {
  .tile span:not(.title) {
    margin-bottom: 0.25rem;
    border-width: 0.5rem;
  }
}
@media (max-width: 768px) {
  .tile span:not(.title) {
    border-width: 0.5rem;
  }
}
.tile a {
  color: #000;
  font-weight: 900;
}
.tile a:hover {
  text-decoration: none;
}
.tile:nth-of-type(1), .tile:nth-of-type(4) {
  position: relative;
  isolation: isolate;
  background-color: #f9b233;
  color: #fff;
  /* margin-top: 1.5rem; */
}
.bg-wave .tile:nth-of-type(1), .bg-wave .tile:nth-of-type(4) {
  background: linear-gradient(#9850cf, #38075e);
  color: #fff;
  margin-top: 3rem;
}
.tile:nth-of-type(1) a, .tile:nth-of-type(1) h3, .tile:nth-of-type(4) a, .tile:nth-of-type(4) h3 {
  color: #fff;
}
.tile:nth-of-type(1):before, .tile:nth-of-type(4):before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/user/documents/img/bg-main.svg");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  transform: rotate(-180deg);
}
.bg-wave .tile:nth-of-type(1):before, .bg-wave .tile:nth-of-type(4):before {
  content: none;
}
.tile:nth-of-type(1) span, .tile:nth-of-type(4) span {
  background-color: transparent;
}
.tile:nth-of-type(1) .price, .tile:nth-of-type(4) .price {
  top: 40%;
  right: 10%;
}
.tile:nth-of-type(2) {
  position: relative;
  isolation: isolate;
}
.tile:nth-of-type(2):before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/user/documents/img/fire-black.svg");
  background-size: 130%;
  background-position: right;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0.25;
}
.bg-wave .tile:nth-of-type(2):before {
  background-image: url("/user/documents/img/fire-orange-reverse.png");
  background-position: top;
}
.tile:nth-of-type(2) .price {
  top: 40%;
  right: 10%;
}
.tile:nth-of-type(3) {
  background: linear-gradient(#9850cf, #5b188e);
  color: #fff;
  /* margin-top: 3rem; */
}
.bg-wave .tile:nth-of-type(3) {
  position: relative;
  isolation: isolate;
  background: #f9b233;
  color: #fff;
  /* margin-top: 1.5rem; */
}
.bg-wave .tile:nth-of-type(3):before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/user/documents/img/bg-main.svg");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  transform: rotate(-180deg);
}
.tile:nth-of-type(3) span {
  background-color: #7f33b9;
}
.tile:nth-of-type(3) a, .tile:nth-of-type(3) h3 {
  color: #fff;
}
.tile:nth-of-type(5) {
  position: relative;
  isolation: isolate;
}
@media (max-width: 768px) {
  .tile:nth-of-type(5) {
    background-color: #f3f3f3;
  }
}
.tile:nth-of-type(5):before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/user/documents/img/fire-black.svg");
  background-size: 130%;
  background-position: right;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0.25;
}
.tile:nth-of-type(5) .price {
  right: 50%;
  top: 45%;
}

.warning {
  width: 700px;
  max-width: calc(100% - 2rem);
  margin: 4rem auto 0;
  text-align: center;
  padding: 0;
}
@media (max-width: 768px) {
  .warning {
    margin-top: 2rem;
  }
}
.warning p {
  font-size: 15px;
  margin-bottom: 1rem !important;
}
.warning a {
  color: #9850cf;
  text-decoration: none;
}
.warning a:hover {
  text-decoration: underline;
}
.warning h4 {
  margin-bottom: 1rem;
}
.warning li:before {
  content: none !important;
}

.large {
  font-size: 24px !important;
  font-weight: 800;
}

.code-only {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}/*# sourceMappingURL=club.css.map */