.orange-text {
  color: #e6af67;
}

.fade-in {
  -webkit-animation: fade-in 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in 2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.status-verified {
  font-family: "Roboto", system-ui;
  font-weight: 500;
  font-size: 0.9rem;
  background-color: rgba(66, 149, 68, 0.82);
  padding: 0.4rem 0.5rem 0.4rem 0.5rem;
  border-radius: 4px;
  color: #EEE !important;
  position: relative;
  top: -3px;
  letter-spacing: 0.02rem;
}

.status-banned {
  font-family: "Roboto", system-ui;
  font-weight: 500;
  font-size: 0.9rem;
  background-color: rgba(193, 64, 76, 0.65);
  padding: 0.4rem 0.5rem 0.4rem 0.5rem;
  border-radius: 4px;
  color: #EEE !important;
  position: relative;
  top: -3px;
  letter-spacing: 0.02rem;
}

.seasonal-tag {
  color: #429544;
  font-size: 1.5rem;
  position: relative;
  top: 0.3rem;
  right: 0.5rem;
}

.sub-active {
  background: #5C985C;
  color: #EEE;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 0.9rem;
  letter-spacing: 0.05rem;
  border-radius: 4px;
  padding: 0.3rem;
}

.sub-canceled {
  background: #A54647;
  color: #EEE;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 0.9rem;
  letter-spacing: 0.05rem;
  border-radius: 4px;
  padding: 0.3rem;
}

.sub-pastdue {
  background: #7676C8;
  color: #EEE;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 0.9rem;
  letter-spacing: 0.05rem;
  border-radius: 4px;
  padding: 0.3rem;
}

.infinity-badge {
  background: #5C985C;
  color: #EEE;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 0.9rem;
  letter-spacing: 0.05rem;
  border-radius: 4px;
  padding: 0.3rem;
}

.expired-badge {
  background: #A54647;
  color: #EEE;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 0.9rem;
  letter-spacing: 0.05rem;
  border-radius: 4px;
  padding: 0.3rem;
}

#toast-container {
  position: fixed;
  inset: 50px 20px auto auto;
  z-index: 2147483647;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

@media (max-width: 600px) {
  #toast-container {
    margin: 0 auto;
    inset: 70px 10px 20px 10px;
  }
}
#toast-container .toast-box {
  pointer-events: auto;
}

.toast-box {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: auto;
  height: 80px;
  border-radius: 5px;
  border: 1px #333 solid;
  background-color: rgba(28, 28, 28, 0.81);
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  padding: 0.5rem 0.5rem 0.5rem 0.5rem;
}
.toast-box.success .toast-border {
  border: 5px #5C985C solid;
  border-radius: 5px;
}
.toast-box.success .toast-icon {
  padding-top: 0.8rem;
}
.toast-box.success .toast-icon .mdi {
  font-size: 2rem;
  color: #5C985C;
}
.toast-box.error .toast-border {
  border: 5px #A54647 solid;
  border-radius: 5px;
}
.toast-box.error .toast-icon {
  padding-top: 0.8rem;
}
.toast-box.error .toast-icon .mdi {
  font-size: 2rem;
  color: #A54647;
}
.toast-box .toast-title {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 0.9rem;
  letter-spacing: 0.05rem;
  color: #EEE;
  padding: 0.5rem 0.5rem 0 0.5rem;
}
.toast-box .toast-text {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 0.9rem;
  letter-spacing: 0.05rem;
  color: #CCC;
  padding: 0.4rem 0.5rem 0 0.5rem;
}

.toast-box.show {
  opacity: 1;
  transform: translateY(0);
}

.confirm-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.confirm-box {
  padding: 20px;
  background-color: #111;
  border: 2px solid transparent;
  border-image-repeat: stretch;
  border-image-source: none;
  border-image: url("/public/img/pristontale/borders/login_border.png") 34 stretch;
  max-width: 400px;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 0.9rem;
  color: #EEE;
}

.confirm-buttons {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.confirm-buttons button {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 0.9rem;
  background-color: rgba(230, 175, 103, 0.66);
  color: #EEE;
  border: 0;
  padding: 0.3rem 1rem 0.3rem 1rem;
}
.confirm-buttons button:hover {
  opacity: 0.8;
  cursor: pointer;
}

.hidden {
  display: none;
}

.pagination {
  display: flex;
  flex-direction: row;
  margin-top: 1rem;
}
.pagination a {
  text-decoration: none;
}
.pagination .pagination-link {
  padding: 0.4rem 0.6rem 0.4rem 0.6rem;
  background-color: #111;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 0.9rem;
  color: #EEE;
}
.pagination .pagination-link:hover {
  background-color: #222;
}
.pagination .active {
  background-color: #e6af67;
}
.pagination .active:hover {
  background-color: #e6af67;
}

.tabs-nav {
  display: flex;
  gap: 0.4rem;
  margin-left: 1rem;
}

.tabs-nav .tab {
  border: 0;
  padding: 0.5rem 1rem;
  cursor: pointer;
  background-color: #222;
  border-bottom: 4px #555 solid;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 0.9rem;
  letter-spacing: 0.05rem;
  color: #EEE;
}
.tabs-nav .tab:hover {
  background-color: #333;
}

.tabs-nav .tab.is-active {
  border-color: #e6af67;
  color: #EEE;
}

.tab-panel {
  display: none;
  padding: 0.75rem 0;
}

.tab-panel.is-active {
  display: block;
}

.exp-wrapper {
  flex: 1 1;
  display: flex;
  align-items: center;
}
.exp-wrapper .percent-bar {
  position: relative;
  flex: 1 1;
  min-width: 200px;
  max-width: 800px;
  height: 35px;
  border: 1px #333 solid;
  border-radius: 4px;
  background-color: rgba(230, 175, 103, 0.1);
  overflow: hidden;
}
.exp-wrapper .percent {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: rgba(230, 175, 103, 0.64);
  border-radius: 4px 0 0 4px;
  transition: width 0.3s ease;
}
.exp-wrapper .percent-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 3px 3px 2px rgba(0, 0, 0, 0.5);
  color: #DDD;
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.05rem;
  pointer-events: none;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 99999;
}

.modal[data-open="1"] {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.modal-dialog {
  position: relative;
  width: min(980px, 100% - 24px);
  margin: 60px auto;
  border-radius: 14px;
  background: #0f1014;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  color: #ddd;
  background: rgba(255, 255, 255, 0.08);
}

.modal-body {
  padding: 14px;
}

.modal-media {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
}

.modal-media iframe,
.modal-media video {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  background: #000;
}

@media (max-width: 520px) {
  .modal-dialog {
    margin: 16px auto;
    width: calc(100% - 16px);
  }
}

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