@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #dee2e6;
  text-align: left;
  background-color: #121417;
  background-image: radial-gradient(ellipse at top left, rgba(58, 134, 255, 0.15), transparent 50%), radial-gradient(ellipse at bottom right, rgba(131, 56, 236, 0.15), transparent 50%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  height: 100vh;
}

a {
  color: #3a86ff;
  text-decoration: none;
  background-color: transparent;
  transition: color 0.2s ease, transform 0.2s ease;
  position: relative;
}
a:hover {
  color: rgb(134.5, 180.9873096447, 255);
  text-decoration: none;
}
a:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(58, 134, 255, 0.5);
}
a.link-animated::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #3a86ff;
  transition: width 0.3s ease;
}
a.link-animated:hover::after {
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.2;
  color: #f8f9fa;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 2.5rem;
  background: linear-gradient(90deg, #f8f9fa, rgba(58, 134, 255, 0.8));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.5rem;
  }
}
p {
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.7;
}

code {
  font-family: "Fira Code", SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 90%;
  color: rgb(255, 76.5, 153.5);
  word-wrap: break-word;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 0.1em 0.4em;
  border-radius: 0.375rem;
  font-feature-settings: "liga" 0;
}

pre {
  display: block;
  padding: 1rem;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 90%;
  color: #f8f9fa;
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  overflow: auto;
  white-space: pre-wrap;
  word-wrap: break-word;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.15);
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
  background-color: transparent;
  padding: 0;
  border-radius: 0;
  border: 0;
}

hr {
  margin-top: 2rem;
  margin-bottom: 2rem;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.25;
}

img {
  vertical-align: middle;
  border-style: none;
  max-width: 100%;
  height: auto;
  border-radius: 0.375rem;
  transition: transform 0.3s ease;
}
img:hover {
  transform: scale(1.01);
}

ul, ol {
  padding-left: 2rem;
  margin-top: 0;
  margin-bottom: 1rem;
}
ul li, ol li {
  margin-bottom: 0.5rem;
}

::selection {
  background-color: rgba(58, 134, 255, 0.3);
  color: #fff;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb {
  background: rgba(58, 134, 255, 0.5);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(58, 134, 255, 0.7);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in {
  animation: fadeIn 0.5s ease-out forwards;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.pulse {
  animation: pulse 2s infinite;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  margin-top: 4rem;
  max-width: 70vw;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}
.container.card-container {
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.container.card-container:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.glass-container {
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.glass-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.row.row-equal-height > [class*=col] {
  display: flex;
  flex-direction: column;
}
.row.row-sm {
  margin-right: -8px;
  margin-left: -8px;
}
.row.row-sm > [class*=col] {
  padding-right: 8px;
  padding-left: 8px;
}

[class*=col-] {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .col-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background: rgba(18, 20, 23, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background-clip: border-box;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.15);
  transition: all 0.25s ease;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.25);
  background: rgba(18, 20, 23, 0.85);
  border-color: rgba(58, 134, 255, 0.2);
}
.card .card-img-top {
  width: 100%;
  border-top-left-radius: calc(0.5rem - 1px);
  border-top-right-radius: calc(0.5rem - 1px);
  transition: transform 0.5s ease;
}
.card:hover .card-img-top {
  transform: scale(1.03);
}
.card .card-body {
  flex: 1 1 auto;
  min-height: 1px;
  padding: 1.25rem;
  color: #dee2e6;
  position: relative;
  z-index: 1;
}
.card .card-title {
  margin-bottom: 0.75rem;
  color: #f8f9fa;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.card .card-text {
  margin-bottom: 1rem;
  color: #adb5bd;
  line-height: 1.6;
}
.card ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}
.card ul li {
  margin-bottom: 0.25rem;
  color: #f8f9fa;
}
.card .price-tag {
  display: inline-block;
  background: rgba(58, 134, 255, 0.15);
  color: #3a86ff;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 0.5rem;
  box-shadow: 0 2px 8px rgba(58, 134, 255, 0.2);
  transition: all 0.2s ease;
}
.card .price-tag:hover {
  background: rgba(58, 134, 255, 0.25);
  transform: scale(1.05);
}
.card .card-footer {
  padding: 1rem;
  background-color: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.glass-footer {
  position: relative;
  margin-top: 4rem;
  padding: 2.5rem 0 1.5rem;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #f8f9fa;
  box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.1);
}
.glass-footer::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, rgba(58, 134, 255, 0), rgba(58, 134, 255, 0.7) 20%, rgba(58, 134, 255, 0.7) 80%, rgba(58, 134, 255, 0));
  border-radius: 50%;
  filter: blur(2px);
}
.glass-footer .footer-content {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .glass-footer .footer-content {
    flex-direction: column;
  }
}
.glass-footer .footer-brand {
  flex: 0 0 30%;
}
.glass-footer .footer-brand h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, #f8f9fa, rgba(58, 134, 255, 0.8));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.glass-footer .footer-brand .footer-tagline {
  color: #adb5bd;
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .glass-footer .footer-brand {
    flex: 0 0 100%;
    margin-bottom: 1.5rem;
    text-align: center;
  }
}
.glass-footer .footer-links {
  flex: 0 0 70%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
@media (max-width: 768px) {
  .glass-footer .footer-links {
    flex: 0 0 100%;
  }
}
.glass-footer .footer-section {
  flex: 0 0 auto;
  margin-bottom: 1rem;
}
.glass-footer .footer-section h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: #f8f9fa;
}
.glass-footer .footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.glass-footer .footer-section ul li {
  margin-bottom: 0.5rem;
}
.glass-footer .footer-section ul a {
  color: #adb5bd;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}
.glass-footer .footer-section ul a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #3a86ff;
  transition: width 0.3s ease;
}
.glass-footer .footer-section ul a:hover {
  color: #3a86ff;
}
.glass-footer .footer-section ul a:hover::after {
  width: 100%;
}
@media (max-width: 576px) {
  .glass-footer .footer-section {
    flex: 0 0 100%;
    text-align: center;
  }
  .glass-footer .footer-section ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .glass-footer .footer-section ul li {
    margin: 0 0.5rem 0.5rem;
  }
}
.glass-footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
  color: rgba(173, 181, 189, 0.8);
}
.glass-footer .footer-bottom p {
  margin: 0;
}
.glass-footer .footer-bottom .footer-social {
  display: flex;
  gap: 0.75rem;
}
.glass-footer .footer-bottom .footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.05);
  color: #f8f9fa;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.glass-footer .footer-bottom .footer-social a:hover {
  background: rgba(58, 134, 255, 0.2);
  color: #3a86ff;
  transform: translateY(-3px);
}
.glass-footer .footer-bottom .footer-social a i {
  font-size: 1rem;
}
@media (max-width: 576px) {
  .glass-footer .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .glass-footer .footer-bottom p {
    margin-bottom: 0.5rem;
  }
}

div.filler {
  height: max-content;
}

.auth-form {
  margin: 1.5rem 0;
}
.auth-form div {
  margin-bottom: 1.2rem;
  position: relative;
}
.auth-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: #f8f9fa;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.auth-form input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.5rem;
  color: #f8f9fa;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}
.auth-form input:focus {
  outline: none;
  border-color: rgba(58, 134, 255, 0.5);
  box-shadow: 0 0 0 2px rgba(58, 134, 255, 0.25);
  background: rgba(0, 0, 0, 0.25);
}
.auth-form input:hover:not(:focus) {
  border-color: rgba(255, 255, 255, 0.15);
}
.auth-form button {
  width: 100%;
  margin-top: 1rem;
  padding: 0.8rem 0;
  font-weight: 600;
}
.auth-form .has-error input {
  border-color: rgba(239, 71, 111, 0.5);
}
.auth-form .has-error input:focus {
  box-shadow: 0 0 0 2px rgba(239, 71, 111, 0.25);
}
.auth-form .has-error .error-message {
  color: #ef476f;
  font-size: 0.85rem;
  margin-top: 0.3rem;
  display: block;
}

.card p {
  text-align: center;
  margin-top: 1.5rem;
  color: #adb5bd;
}
.card p a {
  color: #3a86ff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  position: relative;
}
.card p a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: #3a86ff;
  transition: width 0.3s ease;
}
.card p a:hover {
  color: rgb(109, 165.3248730964, 255);
}
.card p a:hover:after {
  width: 100%;
}

nav {
  background-color: rgba(29.1951219512, 32.4390243902, 37.3048780488, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 1020;
}
nav ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}
nav li {
  margin: 0 0.5rem;
}
nav .nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
nav li:first-child {
  margin-left: 0;
}
nav .nav-links li:last-child {
  margin-right: 0;
}
nav a, nav button {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  color: #f8f9fa;
  text-decoration: none;
  font-weight: 500;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 0.375rem;
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}
nav a:hover, nav a:focus, nav button:hover, nav button:focus {
  color: #3a86ff;
  background-color: rgba(58, 134, 255, 0.1);
  text-decoration: none;
  outline: none;
}
nav button:hover, nav button:focus {
  color: #3a86ff;
  background-color: rgba(58, 134, 255, 0.1);
}

.admin-nav a, .admin-nav button {
  font-weight: 500;
}

@media (max-width: 768px) {
  nav ul {
    justify-content: flex-start;
  }
  nav li {
    margin: 0.25rem 0.5rem;
  }
}
.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #f8f9fa;
  transition: color 0.2s ease;
}

input[type=text],
input[type=email],
input[type=password],
input[type=number],
input[type=datetime-local],
input[type=search],
input[type=tel],
input[type=url],
textarea,
select {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #f8f9fa;
  background-color: rgba(255, 255, 255, 0.07);
  background-clip: padding-box;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.5rem;
  transition: all 0.2s ease-in-out;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=number]:focus,
input[type=datetime-local]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=url]:focus,
textarea:focus,
select:focus {
  color: #f8f9fa;
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(58, 134, 255, 0.7);
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(58, 134, 255, 0.25);
}
input[type=text]:focus + label.floating-label,
input[type=email]:focus + label.floating-label,
input[type=password]:focus + label.floating-label,
input[type=number]:focus + label.floating-label,
input[type=datetime-local]:focus + label.floating-label,
input[type=search]:focus + label.floating-label,
input[type=tel]:focus + label.floating-label,
input[type=url]:focus + label.floating-label,
textarea:focus + label.floating-label,
select:focus + label.floating-label {
  transform: translateY(-1.5rem) scale(0.85);
  color: #3a86ff;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=password]::placeholder,
input[type=number]::placeholder,
input[type=datetime-local]::placeholder,
input[type=search]::placeholder,
input[type=tel]::placeholder,
input[type=url]::placeholder,
textarea::placeholder,
select::placeholder {
  color: #adb5bd;
  opacity: 0.7;
}
input[type=text]:disabled,
input[type=email]:disabled,
input[type=password]:disabled,
input[type=number]:disabled,
input[type=datetime-local]:disabled,
input[type=search]:disabled,
input[type=tel]:disabled,
input[type=url]:disabled,
textarea:disabled,
select:disabled {
  background-color: rgba(52, 58, 64, 0.5);
  opacity: 0.7;
  cursor: not-allowed;
}
input[type=text]:-webkit-autofill, input[type=text]:-webkit-autofill:hover, input[type=text]:-webkit-autofill:focus,
input[type=email]:-webkit-autofill,
input[type=email]:-webkit-autofill:hover,
input[type=email]:-webkit-autofill:focus,
input[type=password]:-webkit-autofill,
input[type=password]:-webkit-autofill:hover,
input[type=password]:-webkit-autofill:focus,
input[type=number]:-webkit-autofill,
input[type=number]:-webkit-autofill:hover,
input[type=number]:-webkit-autofill:focus,
input[type=datetime-local]:-webkit-autofill,
input[type=datetime-local]:-webkit-autofill:hover,
input[type=datetime-local]:-webkit-autofill:focus,
input[type=search]:-webkit-autofill,
input[type=search]:-webkit-autofill:hover,
input[type=search]:-webkit-autofill:focus,
input[type=tel]:-webkit-autofill,
input[type=tel]:-webkit-autofill:hover,
input[type=tel]:-webkit-autofill:focus,
input[type=url]:-webkit-autofill,
input[type=url]:-webkit-autofill:hover,
input[type=url]:-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 {
  -webkit-text-fill-color: #f8f9fa;
  transition: background-color 5000s ease-in-out 0s;
  box-shadow: 0 0 0px 1000px rgba(0, 0, 0, 0.05) inset;
}

textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.5;
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  padding-right: 2.5rem;
    -webkit-appearance: none;
    -moz-appearance: none;
}
select::-ms-expand {
  display: none;
}
select[multiple] {
  background-image: none;
  padding-right: 1rem;
  height: auto;
  
}
select option {
  background-color: rgba(255, 255, 255, 0.07);
  color: #f8f9fa;
  padding: 0.5rem;
}

option {
  background: rgb(37 38 40) !important;
  border: none !important;
  color: #f8f9fa !important;

  border-radius: 0.5rem !important;
}

.form-group-float {
  position: relative;
}
.form-group-float .floating-label {
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  color: #adb5bd;
  pointer-events: none;
  transition: all 0.2s ease;
  transform-origin: 0 0;
  background-color: transparent;
  padding: 0 0.25rem;
}
.form-group-float input:not(:placeholder-shown) + .floating-label,
.form-group-float textarea:not(:placeholder-shown) + .floating-label,
.form-group-float select:not([value=""]):not(:invalid) + .floating-label {
  transform: translateY(-1.5rem) scale(0.85);
  color: #adb5bd;
}
.form-group-float input:focus + .floating-label,
.form-group-float textarea:focus + .floating-label,
.form-group-float select:focus + .floating-label {
  transform: translateY(-1.5rem) scale(0.85);
  color: #3a86ff;
}

.form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.form-inline .form-group {
  margin-bottom: 1rem;
  margin-right: 1rem;
}
@media (min-width: 576px) {
  .form-inline .form-group {
    display: flex;
    flex: 0 0 auto;
    flex-flow: row wrap;
    align-items: center;
    margin-bottom: 0;
  }
}
.form-inline .form-control {
  display: inline-block;
  width: auto;
  vertical-align: middle;
}
.form-inline > .form-control,
.form-inline > .form-group,
.form-inline > .btn {
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 576px) {
  .form-inline {
    flex-direction: column;
    align-items: stretch;
  }
  .form-inline .form-control,
  .form-inline .btn {
    width: 100%;
    margin-right: 0;
  }
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}
.form-row > .col,
.form-row > [class*=col-] {
  padding-right: 5px;
  padding-left: 5px;
  flex-grow: 1;
}
@media (max-width: 576px) {
  .form-row {
    display: block;
  }
  .form-row > .col,
  .form-row > [class*=col-] {
    margin-bottom: 0.5rem;
  }
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}
.form-check .form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.5rem;
  width: 1rem;
  height: 1rem;
}
.form-check .form-check-input:checked {
  background-color: #3a86ff;
  border-color: #3a86ff;
}
.form-check .form-check-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(58, 134, 255, 0.25);
}
.form-check .form-check-input:disabled {
  background-color: rgba(52, 58, 64, 0.5);
  opacity: 0.5;
}
.form-check .form-check-label {
  margin-bottom: 0;
  cursor: pointer;
}

.custom-checkbox {
  padding-left: 2rem;
  cursor: pointer;
  user-select: none;
}
.custom-checkbox .custom-control-input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.custom-checkbox .custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
  cursor: pointer;
}
.custom-checkbox .custom-control-label::before {
  content: "";
  position: absolute;
  top: 0.25rem;
  left: -2rem;
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  pointer-events: none;
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.375rem;
  transition: all 0.2s ease-in-out;
}
.custom-checkbox .custom-control-label::after {
  content: "";
  position: absolute;
  top: 0.25rem;
  left: -2rem;
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
  transition: all 0.2s ease-in-out;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #3a86ff;
  border-color: #3a86ff;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
}
.custom-checkbox .custom-control-input:disabled ~ .custom-control-label {
  color: #adb5bd;
  cursor: not-allowed;
}
.custom-checkbox .custom-control-input:disabled ~ .custom-control-label::before {
  background-color: rgba(52, 58, 64, 0.5);
}

.was-validated .form-control:invalid,
.form-control.is-invalid {
  border-color: #ef476f;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23ef476f' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23ef476f' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:invalid:focus,
.form-control.is-invalid:focus {
  border-color: #ef476f;
  box-shadow: 0 0 0 0.2rem rgba(239, 71, 111, 0.25);
}

.was-validated .form-control:valid,
.form-control.is-valid {
  border-color: #06d6a0;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2306d6a0' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:valid:focus,
.form-control.is-valid:focus {
  border-color: #06d6a0;
  box-shadow: 0 0 0 0.2rem rgba(6, 214, 160, 0.25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #ef476f;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #06d6a0;
}

.was-validated .form-control:invalid ~ .invalid-feedback,
.form-control.is-invalid ~ .invalid-feedback {
  display: block;
}

.was-validated .form-control:valid ~ .valid-feedback,
.form-control.is-valid ~ .valid-feedback {
  display: block;
}

small, .small, .form-text {
  font-size: 80%;
  font-weight: 400;
  color: #adb5bd;
  display: block;
  margin-top: 0.25rem;
}

.form-file {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-bottom: 1rem;
}
.form-file .form-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin: 0;
  opacity: 0;
}
.form-file .form-file-input:focus ~ .form-file-label {
  border-color: rgba(58, 134, 255, 0.7);
  box-shadow: 0 0 0 0.2rem rgba(58, 134, 255, 0.25);
}
.form-file .form-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  color: #f8f9fa;
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.5rem;
  pointer-events: none;
  display: flex;
  align-items: center;
}
.form-file .form-file-label::after {
  content: "Browse";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  color: #f8f9fa;
  background-color: rgba(255, 255, 255, 0.1);
  border-left: inherit;
  border-radius: 0 0.5rem 0.5rem 0;
}

.search-glass {
  position: relative;
}
.search-glass input[type=search] {
  padding-left: 2.5rem;
  background-color: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 2rem;
  transition: all 0.3s;
}
.search-glass input[type=search]:focus {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(58, 134, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(58, 134, 255, 0.2);
}
.search-glass::before {
  content: "🔍";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #adb5bd;
  pointer-events: none;
  z-index: 2;
  font-size: 0.9rem;
}

input[type=date]::-webkit-calendar-picker-indicator,
input[type=datetime-local]::-webkit-calendar-picker-indicator {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 0.2rem;
  border-radius: 0.375rem;
  cursor: pointer;
  margin-right: -0.5rem;
  opacity: 0.7;
}
input[type=date]::-webkit-calendar-picker-indicator:hover,
input[type=datetime-local]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.25);
}

.popup-form {
  display: none;
  position: absolute;
  z-index: 1050;
  background-color: rgba(18, 20, 23, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  padding: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  min-width: 300px;
  max-width: 90vw;
  animation: fadeIn 0.3s ease;
}
.popup-form label {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}
.popup-form .form-control {
  margin-bottom: 0.5rem;
}
.popup-form .btn {
  margin-right: 0.25rem;
  margin-top: 0.5rem;
}
.popup-form .btn-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: none;
  border: none;
  color: #adb5bd;
  font-size: 1.5rem;
  line-height: 1;
  padding: 0;
  cursor: pointer;
}
.popup-form .btn-close:hover {
  color: #f8f9fa;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  line-height: 1.6;
  border-radius: 0.5rem;
  transition: all 0.25s ease-in-out;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  white-space: nowrap;
}
.btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.3) 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-position: 50%;
  transform: scale(10, 10);
  opacity: 0;
  transition: transform 0.5s, opacity 0.5s;
}
.btn:active::after {
  transform: scale(0, 0);
  opacity: 0.3;
  transition: 0s;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.15);
  text-decoration: none;
}
.btn:focus, .btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(58, 134, 255, 0.35);
}
.btn:active, .btn.active {
  transform: translateY(1px);
}
.btn:disabled, .btn.disabled {
  opacity: 0.65;
  pointer-events: none;
  filter: grayscale(30%);
}
.btn ion-icon, .btn i, .btn svg {
  margin-right: 0.5rem;
  vertical-align: -0.125em;
  font-size: 1.1em;
}
.btn.icon-right ion-icon, .btn.icon-right i, .btn.icon-right svg {
  margin-right: 0;
  margin-left: 0.5rem;
}
.btn.icon-only {
  padding: 0.5rem;
}
.btn.icon-only ion-icon, .btn.icon-only i, .btn.icon-only svg {
  margin: 0;
  font-size: 1.25em;
}

.btn-primary {
  color: #fff;
  background-color: rgba(58, 134, 255, 0.9);
  border-color: rgba(58, 134, 255, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.btn-primary:hover {
  color: #fff;
  background-color: rgba(19.75, 110.5063451777, 255, 0.95);
  border-color: rgba(7, 102.6751269036, 255, 0.8);
  box-shadow: 0 5px 15px rgba(58, 134, 255, 0.4);
}
.btn-primary:focus, .btn-primary.focus {
  color: #fff;
  background-color: rgba(19.75, 110.5063451777, 255, 0.95);
  border-color: rgba(7, 102.6751269036, 255, 0.8);
  box-shadow: 0 0 0 0.2rem rgba(58, 134, 255, 0.5);
}
.btn-primary:active, .btn-primary.active {
  color: #fff;
  background-color: rgb(7, 102.6751269036, 255);
  border-color: rgba(0, 96.1573604061, 249.25, 0.9);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.15);
}
.btn-primary:disabled, .btn-primary.disabled {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(58, 134, 255, 0.5);
  border-color: rgba(58, 134, 255, 0.3);
}

.btn-secondary {
  color: #fff;
  background-color: rgba(108, 117, 125, 0.9);
  border-color: rgba(108, 117, 125, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.btn-secondary:hover {
  color: #fff;
  background-color: rgba(90.2703862661, 97.7929184549, 104.4796137339, 0.95);
  border-color: rgba(84.3605150215, 91.3905579399, 97.6394849785, 0.8);
  box-shadow: 0 5px 15px rgba(108, 117, 125, 0.4);
}
.btn-secondary:focus, .btn-secondary.focus {
  color: #fff;
  background-color: rgba(90.2703862661, 97.7929184549, 104.4796137339, 0.95);
  border-color: rgba(84.3605150215, 91.3905579399, 97.6394849785, 0.8);
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}
.btn-secondary:active, .btn-secondary.active {
  color: #fff;
  background-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
  border-color: rgba(78.4506437768, 84.9881974249, 90.7993562232, 0.9);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.15);
}
.btn-secondary:disabled, .btn-secondary.disabled {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(108, 117, 125, 0.5);
  border-color: rgba(108, 117, 125, 0.3);
}

.btn-success {
  color: #fff;
  background-color: rgba(6, 214, 160, 0.9);
  border-color: rgba(6, 214, 160, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.btn-success:hover {
  color: #fff;
  background-color: rgba(4.9568181818, 176.7931818182, 132.1818181818, 0.95);
  border-color: rgba(4.6090909091, 164.3909090909, 122.9090909091, 0.8);
  box-shadow: 0 5px 15px rgba(6, 214, 160, 0.4);
}
.btn-success:focus, .btn-success.focus {
  color: #fff;
  background-color: rgba(4.9568181818, 176.7931818182, 132.1818181818, 0.95);
  border-color: rgba(4.6090909091, 164.3909090909, 122.9090909091, 0.8);
  box-shadow: 0 0 0 0.2rem rgba(6, 214, 160, 0.5);
}
.btn-success:active, .btn-success.active {
  color: #fff;
  background-color: rgb(4.6090909091, 164.3909090909, 122.9090909091);
  border-color: rgba(4.2613636364, 151.9886363636, 113.6363636364, 0.9);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.15);
}
.btn-success:disabled, .btn-success.disabled {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(6, 214, 160, 0.5);
  border-color: rgba(6, 214, 160, 0.3);
}

.btn-danger {
  color: #fff;
  background-color: rgba(239, 71, 111, 0.9);
  border-color: rgba(239, 71, 111, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.btn-danger:hover {
  color: #fff;
  background-color: rgba(235.94, 35.81, 83.46, 0.95);
  border-color: rgba(234.92, 24.08, 74.28, 0.8);
  box-shadow: 0 5px 15px rgba(239, 71, 111, 0.4);
}
.btn-danger:focus, .btn-danger.focus {
  color: #fff;
  background-color: rgba(235.94, 35.81, 83.46, 0.95);
  border-color: rgba(234.92, 24.08, 74.28, 0.8);
  box-shadow: 0 0 0 0.2rem rgba(239, 71, 111, 0.5);
}
.btn-danger:active, .btn-danger.active {
  color: #fff;
  background-color: rgb(234.92, 24.08, 74.28);
  border-color: rgba(226.55, 19.7, 68.95, 0.9);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.15);
}
.btn-danger:disabled, .btn-danger.disabled {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(239, 71, 111, 0.5);
  border-color: rgba(239, 71, 111, 0.3);
}

.btn-warning {
  color: #000;
  background-color: rgba(255, 209, 102, 0.9);
  border-color: rgba(255, 209, 102, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.btn-warning:hover {
  color: #000;
  background-color: rgba(255, 197.5, 63.75, 0.95);
  border-color: rgba(255, 193.6666666667, 51, 0.8);
  box-shadow: 0 5px 15px rgba(255, 209, 102, 0.4);
}
.btn-warning:focus, .btn-warning.focus {
  color: #000;
  background-color: rgba(255, 197.5, 63.75, 0.95);
  border-color: rgba(255, 193.6666666667, 51, 0.8);
  box-shadow: 0 0 0 0.2rem rgba(255, 209, 102, 0.5);
}
.btn-warning:active, .btn-warning.active {
  color: #000;
  background-color: rgb(255, 193.6666666667, 51);
  border-color: rgba(255, 189.8333333333, 38.25, 0.9);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.15);
}
.btn-warning:disabled, .btn-warning.disabled {
  color: rgba(0, 0, 0, 0.8);
  background-color: rgba(255, 209, 102, 0.5);
  border-color: rgba(255, 209, 102, 0.3);
}

.btn-info {
  color: #fff;
  background-color: rgba(17, 138, 178, 0.9);
  border-color: rgba(17, 138, 178, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.btn-info:hover {
  color: #fff;
  background-color: rgba(13.6653846154, 110.9307692308, 143.0846153846, 0.95);
  border-color: rgba(12.5538461538, 101.9076923077, 131.4461538462, 0.8);
  box-shadow: 0 5px 15px rgba(17, 138, 178, 0.4);
}
.btn-info:focus, .btn-info.focus {
  color: #fff;
  background-color: rgba(13.6653846154, 110.9307692308, 143.0846153846, 0.95);
  border-color: rgba(12.5538461538, 101.9076923077, 131.4461538462, 0.8);
  box-shadow: 0 0 0 0.2rem rgba(17, 138, 178, 0.5);
}
.btn-info:active, .btn-info.active {
  color: #fff;
  background-color: rgb(12.5538461538, 101.9076923077, 131.4461538462);
  border-color: rgba(11.4423076923, 92.8846153846, 119.8076923077, 0.9);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.15);
}
.btn-info:disabled, .btn-info.disabled {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(17, 138, 178, 0.5);
  border-color: rgba(17, 138, 178, 0.3);
}

.btn-light {
  color: #000;
  background-color: rgba(222, 226, 230, 0.9);
  border-color: rgba(222, 226, 230, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.btn-light:hover {
  color: #000;
  background-color: rgba(200.2370689655, 206.875, 213.5129310345, 0.95);
  border-color: rgba(192.9827586207, 200.5, 208.0172413793, 0.8);
  box-shadow: 0 5px 15px rgba(222, 226, 230, 0.4);
}
.btn-light:focus, .btn-light.focus {
  color: #000;
  background-color: rgba(200.2370689655, 206.875, 213.5129310345, 0.95);
  border-color: rgba(192.9827586207, 200.5, 208.0172413793, 0.8);
  box-shadow: 0 0 0 0.2rem rgba(222, 226, 230, 0.5);
}
.btn-light:active, .btn-light.active {
  color: #000;
  background-color: rgb(192.9827586207, 200.5, 208.0172413793);
  border-color: rgba(185.7284482759, 194.125, 202.5215517241, 0.9);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.15);
}
.btn-light:disabled, .btn-light.disabled {
  color: rgba(0, 0, 0, 0.8);
  background-color: rgba(222, 226, 230, 0.5);
  border-color: rgba(222, 226, 230, 0.3);
}

.btn-dark {
  color: #fff;
  background-color: rgba(52, 58, 64, 0.9);
  border-color: rgba(52, 58, 64, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.btn-dark:hover {
  color: #fff;
  background-color: rgba(34.8534482759, 38.875, 42.8965517241, 0.95);
  border-color: rgba(29.1379310345, 32.5, 35.8620689655, 0.8);
  box-shadow: 0 5px 15px rgba(52, 58, 64, 0.4);
}
.btn-dark:focus, .btn-dark.focus {
  color: #fff;
  background-color: rgba(34.8534482759, 38.875, 42.8965517241, 0.95);
  border-color: rgba(29.1379310345, 32.5, 35.8620689655, 0.8);
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}
.btn-dark:active, .btn-dark.active {
  color: #fff;
  background-color: rgb(29.1379310345, 32.5, 35.8620689655);
  border-color: rgba(23.4224137931, 26.125, 28.8275862069, 0.9);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.15);
}
.btn-dark:disabled, .btn-dark.disabled {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(52, 58, 64, 0.5);
  border-color: rgba(52, 58, 64, 0.3);
}

.btn-glass-primary {
  color: #3a86ff;
  background-color: rgba(58, 134, 255, 0.15);
  border-color: rgba(58, 134, 255, 0.25);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.btn-glass-primary:hover {
  color: #fff;
  background-color: rgba(58, 134, 255, 0.25);
  border-color: rgba(58, 134, 255, 0.35);
  box-shadow: 0 5px 15px rgba(58, 134, 255, 0.2);
}
.btn-glass-primary:focus, .btn-glass-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(58, 134, 255, 0.35);
}
.btn-glass-primary:active, .btn-glass-primary.active {
  background-color: rgba(58, 134, 255, 0.35);
  border-color: rgba(58, 134, 255, 0.4);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.1);
}

.btn-glass-secondary {
  color: #6c757d;
  background-color: rgba(108, 117, 125, 0.15);
  border-color: rgba(108, 117, 125, 0.25);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.btn-glass-secondary:hover {
  color: #fff;
  background-color: rgba(108, 117, 125, 0.25);
  border-color: rgba(108, 117, 125, 0.35);
  box-shadow: 0 5px 15px rgba(108, 117, 125, 0.2);
}
.btn-glass-secondary:focus, .btn-glass-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.35);
}
.btn-glass-secondary:active, .btn-glass-secondary.active {
  background-color: rgba(108, 117, 125, 0.35);
  border-color: rgba(108, 117, 125, 0.4);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.1);
}

.btn-glass-success {
  color: #06d6a0;
  background-color: rgba(6, 214, 160, 0.15);
  border-color: rgba(6, 214, 160, 0.25);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.btn-glass-success:hover {
  color: #fff;
  background-color: rgba(6, 214, 160, 0.25);
  border-color: rgba(6, 214, 160, 0.35);
  box-shadow: 0 5px 15px rgba(6, 214, 160, 0.2);
}
.btn-glass-success:focus, .btn-glass-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(6, 214, 160, 0.35);
}
.btn-glass-success:active, .btn-glass-success.active {
  background-color: rgba(6, 214, 160, 0.35);
  border-color: rgba(6, 214, 160, 0.4);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.1);
}

.btn-glass-danger {
  color: #ef476f;
  background-color: rgba(239, 71, 111, 0.15);
  border-color: rgba(239, 71, 111, 0.25);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.btn-glass-danger:hover {
  color: #fff;
  background-color: rgba(239, 71, 111, 0.25);
  border-color: rgba(239, 71, 111, 0.35);
  box-shadow: 0 5px 15px rgba(239, 71, 111, 0.2);
}
.btn-glass-danger:focus, .btn-glass-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(239, 71, 111, 0.35);
}
.btn-glass-danger:active, .btn-glass-danger.active {
  background-color: rgba(239, 71, 111, 0.35);
  border-color: rgba(239, 71, 111, 0.4);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.1);
}

.btn-glass-warning {
  color: #ffd166;
  background-color: rgba(255, 209, 102, 0.15);
  border-color: rgba(255, 209, 102, 0.25);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.btn-glass-warning:hover {
  color: #fff;
  background-color: rgba(255, 209, 102, 0.25);
  border-color: rgba(255, 209, 102, 0.35);
  box-shadow: 0 5px 15px rgba(255, 209, 102, 0.2);
}
.btn-glass-warning:focus, .btn-glass-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 209, 102, 0.35);
}
.btn-glass-warning:active, .btn-glass-warning.active {
  background-color: rgba(255, 209, 102, 0.35);
  border-color: rgba(255, 209, 102, 0.4);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.1);
}

.btn-glass-info {
  color: #118ab2;
  background-color: rgba(17, 138, 178, 0.15);
  border-color: rgba(17, 138, 178, 0.25);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.btn-glass-info:hover {
  color: #fff;
  background-color: rgba(17, 138, 178, 0.25);
  border-color: rgba(17, 138, 178, 0.35);
  box-shadow: 0 5px 15px rgba(17, 138, 178, 0.2);
}
.btn-glass-info:focus, .btn-glass-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(17, 138, 178, 0.35);
}
.btn-glass-info:active, .btn-glass-info.active {
  background-color: rgba(17, 138, 178, 0.35);
  border-color: rgba(17, 138, 178, 0.4);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.1);
}

.btn-glass-light {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.btn-glass-light:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}
.btn-glass-light:focus, .btn-glass-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.35);
}
.btn-glass-light:active, .btn-glass-light.active {
  background-color: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.1);
}

.btn-glass-dark {
  color: #000;
  background-color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.btn-glass-dark:hover {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.6);
  border-color: rgba(0, 0, 0, 0.7);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.btn-glass-dark:focus, .btn-glass-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.35);
}
.btn-glass-dark:active, .btn-glass-dark.active {
  background-color: rgba(0, 0, 0, 0.7);
  border-color: rgba(0, 0, 0, 0.75);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.1);
}

.btn-discord {
  color: #fff;
  background-color: rgba(88, 101, 242, 0.9);
  border-color: rgba(88, 101, 242, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background-image: linear-gradient(45deg, rgba(88, 101, 242, 0.8), rgba(88, 101, 242, 0.5));
  box-shadow: 0 5px 15px rgba(88, 101, 242, 0.2);
}
.btn-discord:hover {
  color: #fff;
  background-color: rgba(52.5125, 68.275, 239.2375, 0.95);
  border-color: rgba(40.6833333333, 57.3666666667, 238.3166666667, 0.8);
  box-shadow: 0 5px 15px rgba(88, 101, 242, 0.4);
}
.btn-discord:focus, .btn-discord.focus {
  color: #fff;
  background-color: rgba(52.5125, 68.275, 239.2375, 0.95);
  border-color: rgba(40.6833333333, 57.3666666667, 238.3166666667, 0.8);
  box-shadow: 0 0 0 0.2rem rgba(88, 101, 242, 0.5);
}
.btn-discord:active, .btn-discord.active {
  color: #fff;
  background-color: rgb(40.6833333333, 57.3666666667, 238.3166666667);
  border-color: rgba(28.8541666667, 46.4583333333, 237.3958333333, 0.9);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.15);
}
.btn-discord:disabled, .btn-discord.disabled {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(88, 101, 242, 0.5);
  border-color: rgba(88, 101, 242, 0.3);
}

.btn-link {
  font-weight: 400;
  color: #3a86ff;
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
}
.btn-link:hover {
  color: rgb(134.5, 180.9873096447, 255);
  text-decoration: underline;
  background-color: transparent;
  border-color: transparent;
  box-shadow: none;
  transform: none;
}
.btn-link:focus, .btn-link.focus {
  text-decoration: underline;
  box-shadow: none;
}
.btn-link:disabled, .btn-link.disabled {
  color: #adb5bd;
  pointer-events: none;
}

.btn-outline-primary {
  color: #3a86ff;
  background-color: rgba(0, 0, 0, 0.9);
  border-color: rgba(58, 134, 255, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.btn-outline-primary:hover {
  color: #3a86ff;
  background-color: rgba(58, 134, 255, 0.95);
  border-color: rgba(58, 134, 255, 0.8);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}
.btn-outline-primary:focus, .btn-outline-primary.focus {
  color: #3a86ff;
  background-color: rgba(58, 134, 255, 0.95);
  border-color: rgba(58, 134, 255, 0.8);
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.5);
}
.btn-outline-primary:active, .btn-outline-primary.active {
  color: #3a86ff;
  background-color: hsl(0, 0%, -10%);
  border-color: rgba(0, 96.1573604061, 249.25, 0.9);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.15);
}
.btn-outline-primary:disabled, .btn-outline-primary.disabled {
  color: rgba(58, 134, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.5);
  border-color: rgba(58, 134, 255, 0.3);
}

.btn-outline-secondary {
  color: #6c757d;
  background-color: rgba(0, 0, 0, 0.9);
  border-color: rgba(108, 117, 125, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.btn-outline-secondary:hover {
  color: #6c757d;
  background-color: rgba(108, 117, 125, 0.95);
  border-color: rgba(108, 117, 125, 0.8);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}
.btn-outline-secondary:focus, .btn-outline-secondary.focus {
  color: #6c757d;
  background-color: rgba(108, 117, 125, 0.95);
  border-color: rgba(108, 117, 125, 0.8);
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.5);
}
.btn-outline-secondary:active, .btn-outline-secondary.active {
  color: #6c757d;
  background-color: hsl(0, 0%, -10%);
  border-color: rgba(78.4506437768, 84.9881974249, 90.7993562232, 0.9);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.15);
}
.btn-outline-secondary:disabled, .btn-outline-secondary.disabled {
  color: rgba(108, 117, 125, 0.8);
  background-color: rgba(0, 0, 0, 0.5);
  border-color: rgba(108, 117, 125, 0.3);
}

.btn-outline-success {
  color: #06d6a0;
  background-color: rgba(0, 0, 0, 0.9);
  border-color: rgba(6, 214, 160, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.btn-outline-success:hover {
  color: #06d6a0;
  background-color: rgba(6, 214, 160, 0.95);
  border-color: rgba(6, 214, 160, 0.8);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}
.btn-outline-success:focus, .btn-outline-success.focus {
  color: #06d6a0;
  background-color: rgba(6, 214, 160, 0.95);
  border-color: rgba(6, 214, 160, 0.8);
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.5);
}
.btn-outline-success:active, .btn-outline-success.active {
  color: #06d6a0;
  background-color: hsl(0, 0%, -10%);
  border-color: rgba(4.2613636364, 151.9886363636, 113.6363636364, 0.9);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.15);
}
.btn-outline-success:disabled, .btn-outline-success.disabled {
  color: rgba(6, 214, 160, 0.8);
  background-color: rgba(0, 0, 0, 0.5);
  border-color: rgba(6, 214, 160, 0.3);
}

.btn-outline-danger {
  color: #ef476f;
  background-color: rgba(0, 0, 0, 0.9);
  border-color: rgba(239, 71, 111, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.btn-outline-danger:hover {
  color: #ef476f;
  background-color: rgba(239, 71, 111, 0.95);
  border-color: rgba(239, 71, 111, 0.8);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}
.btn-outline-danger:focus, .btn-outline-danger.focus {
  color: #ef476f;
  background-color: rgba(239, 71, 111, 0.95);
  border-color: rgba(239, 71, 111, 0.8);
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.5);
}
.btn-outline-danger:active, .btn-outline-danger.active {
  color: #ef476f;
  background-color: hsl(0, 0%, -10%);
  border-color: rgba(226.55, 19.7, 68.95, 0.9);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.15);
}
.btn-outline-danger:disabled, .btn-outline-danger.disabled {
  color: rgba(239, 71, 111, 0.8);
  background-color: rgba(0, 0, 0, 0.5);
  border-color: rgba(239, 71, 111, 0.3);
}

.btn-outline-warning {
  color: #ffd166;
  background-color: rgba(0, 0, 0, 0.9);
  border-color: rgba(255, 209, 102, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.btn-outline-warning:hover {
  color: #ffd166;
  background-color: rgba(255, 209, 102, 0.95);
  border-color: rgba(255, 209, 102, 0.8);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}
.btn-outline-warning:focus, .btn-outline-warning.focus {
  color: #ffd166;
  background-color: rgba(255, 209, 102, 0.95);
  border-color: rgba(255, 209, 102, 0.8);
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.5);
}
.btn-outline-warning:active, .btn-outline-warning.active {
  color: #ffd166;
  background-color: hsl(0, 0%, -10%);
  border-color: rgba(255, 189.8333333333, 38.25, 0.9);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.15);
}
.btn-outline-warning:disabled, .btn-outline-warning.disabled {
  color: rgba(255, 209, 102, 0.8);
  background-color: rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 209, 102, 0.3);
}

.btn-outline-info {
  color: #118ab2;
  background-color: rgba(0, 0, 0, 0.9);
  border-color: rgba(17, 138, 178, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.btn-outline-info:hover {
  color: #118ab2;
  background-color: rgba(17, 138, 178, 0.95);
  border-color: rgba(17, 138, 178, 0.8);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}
.btn-outline-info:focus, .btn-outline-info.focus {
  color: #118ab2;
  background-color: rgba(17, 138, 178, 0.95);
  border-color: rgba(17, 138, 178, 0.8);
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.5);
}
.btn-outline-info:active, .btn-outline-info.active {
  color: #118ab2;
  background-color: hsl(0, 0%, -10%);
  border-color: rgba(11.4423076923, 92.8846153846, 119.8076923077, 0.9);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.15);
}
.btn-outline-info:disabled, .btn-outline-info.disabled {
  color: rgba(17, 138, 178, 0.8);
  background-color: rgba(0, 0, 0, 0.5);
  border-color: rgba(17, 138, 178, 0.3);
}

.btn-lg {
  padding: 0.625rem 1.5rem;
  font-size: 1.25rem;
  border-radius: 0.75rem;
}

.btn-sm {
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  border-radius: 0.375rem;
}

.btn-block {
  display: flex;
  width: 100%;
  justify-content: center;
}
.btn-block + .btn-block {
  margin-top: 0.5rem;
}

.btn-group {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.btn-group > .btn {
  position: relative;
  flex: 0 1 auto;
}
.btn-group > .btn:hover {
  z-index: 1;
}
.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active {
  z-index: 1;
}
.btn-group > .btn:not(:first-child) {
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group > .btn:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.logout-button {
  color: #fff;
  background-color: rgba(239, 71, 111, 0.9);
  border-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  position: relative;
  overflow: hidden;
}
.logout-button:hover {
  color: #fff;
  background-color: rgba(239, 71, 111, 0.95);
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 5px 15px rgba(239, 71, 111, 0.4);
}
.logout-button:focus, .logout-button.focus {
  color: #fff;
  background-color: rgba(239, 71, 111, 0.95);
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 0 0.2rem rgba(239, 71, 111, 0.5);
}
.logout-button:active, .logout-button.active {
  color: #fff;
  background-color: rgb(236.96, 47.54, 92.64);
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.15);
}
.logout-button:disabled, .logout-button.disabled {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(239, 71, 111, 0.5);
  border-color: rgba(255, 255, 255, 0.3);
}
.logout-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}
.logout-button:hover::before {
  left: 100%;
}

.btn-switch {
  position: relative;
  display: inline-block;
  width: 3.5rem;
  height: 1.75rem;
  background-color: rgba(108, 117, 125, 0.5);
  border-radius: 1.75rem;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-switch::after {
  content: "";
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background-color: #fff;
  top: 0.25rem;
  left: 0.25rem;
  transition: all 0.3s ease;
}
.btn-switch.active {
  background-color: rgba(58, 134, 255, 0.8);
}
.btn-switch.active::after {
  left: calc(100% - 1.5rem);
}
.btn-switch:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-loading {
  position: relative;
  pointer-events: none;
}
.btn-loading .btn-text {
  opacity: 0;
}
.btn-loading::before {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #dee2e6;
  background-color: transparent;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 0.5rem;
  overflow: hidden;
}
.table th,
.table td {
  padding: 0.75rem;
  vertical-align: middle;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
  transition: background-color 0.3s ease;
}
.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(0, 0, 0, 0.2);
  color: #f8f9fa;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.85rem;
  white-space: nowrap;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.table tbody + tbody {
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .table {
    display: block;
  }
  .table thead, .table tbody, .table th, .table td, .table tr {
    display: block;
  }
  .table thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  .table tr {
    margin-bottom: 1rem;
    background-color: rgba(18, 20, 23, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.15);
  }
  .table td {
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    padding-left: 50%;
    text-align: right;
  }
  .table td:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
    height: 100%;
    padding: 0.75rem;
    text-align: left;
    font-weight: 600;
    content: attr(data-label);
    display: flex;
    align-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
  }
  .table td:last-child {
    border-bottom: 0;
  }
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.table-hover tbody tr:hover {
  color: #dee2e6;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: inset 0 0 0 1px rgba(58, 134, 255, 0.2);
}

.table-bordered {
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.table-bordered th,
.table-bordered td {
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}

.table-sm th,
.table-sm td {
  padding: 0.4rem;
}

.table-dark {
  color: #f8f9fa;
  background-color: rgba(52, 58, 64, 0.7);
}
.table-dark th, .table-dark td, .table-dark thead th, .table-dark tbody + tbody {
  border-color: rgba(69.1465517241, 77.125, 85.1034482759, 0.7);
}
.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}
.table-dark.table-hover tbody tr:hover {
  color: #f8f9fa;
  background-color: rgba(255, 255, 255, 0.075);
}

.table-secondary {
  background-color: rgba(108, 117, 125, 0.15);
  color: rgb(229.517167382, 231.3519313305, 232.982832618);
}
.table-secondary:hover {
  background-color: rgba(108, 117, 125, 0.25);
}
.table-secondary th, .table-secondary td, .table-secondary thead th {
  border-color: rgba(108, 117, 125, 0.2);
}

.table-primary {
  background-color: rgba(58, 134, 255, 0.15);
  color: hsl(216.8527918782, 100%, 106.3725490196%);
}
.table-primary:hover {
  background-color: rgba(58, 134, 255, 0.25);
}
.table-primary th, .table-primary td, .table-primary thead th {
  border-color: rgba(58, 134, 255, 0.2);
}

.table-success {
  background-color: rgba(6, 214, 160, 0.15);
  color: rgb(196.15, 253.35, 238.5);
}
.table-success:hover {
  background-color: rgba(6, 214, 160, 0.25);
}
.table-success th, .table-success td, .table-success thead th {
  border-color: rgba(6, 214, 160, 0.2);
}

.table-danger {
  background-color: rgba(239, 71, 111, 0.15);
  color: hsl(345.7142857143, 84%, 105.7843137255%);
}
.table-danger:hover {
  background-color: rgba(239, 71, 111, 0.25);
}
.table-danger th, .table-danger td, .table-danger thead th {
  border-color: rgba(239, 71, 111, 0.2);
}

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: linear-gradient(to right, #121417 0%, rgba(18, 20, 23, 0) 5%, rgba(18, 20, 23, 0) 95%, #121417 100%), linear-gradient(to right, #121417 0%, rgba(18, 20, 23, 0.8) 2%, rgba(18, 20, 23, 0.8) 98%, #121417 100%);
  background-attachment: local, scroll;
  background-size: 100% 100%, 100% 100%;
  background-repeat: no-repeat;
  padding: 0 5px;
}
.table-responsive.disablebg {
  background: none !important;
}
.table-responsive > .table-bordered {
  border: 0;
}
.table-responsive::-webkit-scrollbar {
  height: 6px;
}
.table-responsive::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 3px;
}
.table-responsive::-webkit-scrollbar-thumb {
  background: rgba(58, 134, 255, 0.4);
  border-radius: 3px;
}
.table-responsive::-webkit-scrollbar-thumb:hover {
  background: rgba(58, 134, 255, 0.6);
}

.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.5rem;
  margin: 1rem 0;
  justify-content: center;
  flex-wrap: wrap;
}
.pagination .page-item {
  margin: 0 2px;
}
.pagination .page-item .page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  line-height: 1.25;
  color: #f8f9fa;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.375rem;
  transition: all 0.3s ease;
}
.pagination .page-item .page-link:hover {
  color: #fff;
  background-color: rgba(58, 134, 255, 0.3);
  border-color: rgba(58, 134, 255, 0.3);
  z-index: 2;
  transform: translateY(-1px);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.15);
}
.pagination .page-item .page-link:focus {
  z-index: 3;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(58, 134, 255, 0.25);
}
.pagination .page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: rgba(58, 134, 255, 0.8);
  border-color: #3a86ff;
  font-weight: 600;
}
.pagination .page-item.disabled .page-link {
  color: #adb5bd;
  pointer-events: none;
  cursor: not-allowed;
  background-color: rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 255, 255, 0.05);
}

.key-table {
  font-family: "Fira Code", SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
.key-table code {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 0.2rem 0.5rem;
  border-radius: 0.375rem;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-block;
  min-width: 120px;
  text-align: center;
}
.key-table code:hover {
  background-color: rgba(58, 134, 255, 0.2);
  transform: translateY(-1px);
  cursor: pointer;
}

.alert {
  position: relative;
  padding: 1rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.5rem;
}

.alert-primary {
  color: #fff;
  background-color: rgb(10.55, 83.8109137056, 200.45);
  border-color: rgb(0, 71.5634517766, 185.5);
}
.alert-primary hr {
  border-top-color: rgb(0, 61.7258883249, 160);
}
.alert-primary .alert-link {
  font-weight: bold;
  color: #fff;
  text-decoration: underline;
}

.alert-secondary {
  color: #fff;
  background-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
  border-color: rgb(72.5407725322, 78.5858369099, 83.9592274678);
}
.alert-secondary hr {
  border-top-color: rgb(60.7210300429, 65.7811158798, 70.2789699571);
}
.alert-secondary .alert-link {
  font-weight: bold;
  color: #fff;
  text-decoration: underline;
}

.alert-success {
  color: #fff;
  background-color: rgb(9.4602272727, 83.0397727273, 63.9373907343);
  border-color: rgb(1.8272727273, 65.1727272727, 48.7272727273);
}
.alert-success hr {
  border-top-color: rgb(1.1318181818, 40.3681818182, 30.1818181818);
}
.alert-success .alert-link {
  font-weight: bold;
  color: #fff;
  text-decoration: underline;
}

.alert-danger {
  color: #fff;
  background-color: rgb(203.145, 30.355, 71.4954761905);
  border-color: rgb(191.36, 16.64, 58.24);
}
.alert-danger hr {
  border-top-color: rgb(167.9, 14.6, 51.1);
}
.alert-danger .alert-link {
  font-weight: bold;
  color: #fff;
  text-decoration: underline;
}

.alert-warning {
  color: #000;
  background-color: rgb(249.9, 191.6333333333, 56.1);
  border-color: rgb(255, 186, 25.5);
}
.alert-warning hr {
  border-top-color: rgb(255, 178.3333333333, 0);
}
.alert-warning .alert-link {
  font-weight: bold;
  color: #000;
  text-decoration: underline;
}

.alert-info {
  color: #fff;
  background-color: rgb(12.7576923077, 63.4759436216, 80.2423076923);
  border-color: rgb(5.8846153846, 47.7692307692, 61.6153846154);
}
.alert-info hr {
  border-top-color: rgb(3.6615384615, 29.7230769231, 38.3384615385);
}
.alert-info .alert-link {
  font-weight: bold;
  color: #fff;
  text-decoration: underline;
}

.alert-light {
  color: #000;
  background-color: #e9ecef;
  border-color: #dee2e6;
}
.alert-light hr {
  border-top-color: rgb(207.4913793103, 213.25, 219.0086206897);
}
.alert-light .alert-link {
  font-weight: bold;
  color: #000;
  text-decoration: underline;
}

.alert-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #495057;
}
.alert-dark hr {
  border-top-color: rgb(61.365625, 67.25, 73.134375);
}
.alert-dark .alert-link {
  font-weight: bold;
  color: #fff;
  text-decoration: underline;
}

.badge {
  display: inline-block;
  padding: 0.35em 0.65em;
  font-size: 0.75em;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.375rem;
}
.badge:empty {
  display: none;
}

.badge-primary {
  background-color: #3a86ff;
  color: #000;
}

.badge-secondary {
  background-color: #6c757d;
  color: #fff;
}

.badge-success {
  background-color: #06d6a0;
  color: #fff;
}

.badge-danger {
  background-color: #ef476f;
  color: #000;
}

.badge-warning {
  background-color: #ffd166;
  color: #000;
}

.badge-info {
  background-color: #118ab2;
  color: #fff;
}

.badge-light {
  background-color: #dee2e6;
  color: #000;
}

.badge-dark {
  background-color: #343a40;
  color: #fff;
}

.badge-debug {
  background-color: #6c757d;
  color: #fff;
}

.badge-warn {
  background-color: #ffd166;
  color: #000;
}

.badge-error {
  background-color: #ef476f;
  color: #000;
}

.badge-critical {
  background-color: rgb(234.92, 24.08, 74.28);
  color: #fff;
  font-weight: bold;
}

.badge-audit {
  background-color: #118ab2;
  color: #fff;
}

.m-0 {
  margin: 0 !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.mx-1 {
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mr-1 {
  margin-right: 0.25rem !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.mx-2 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mr-2 {
  margin-right: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.mx-3 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mr-3 {
  margin-right: 1rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.ml-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.mx-4 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mr-4 {
  margin-right: 1.5rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.mx-5 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mr-5 {
  margin-right: 3rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.ml-5 {
  margin-left: 3rem !important;
}

.m-6 {
  margin: 4.5rem !important;
}

.my-6 {
  margin-top: 4.5rem !important;
  margin-bottom: 4.5rem !important;
}

.mx-6 {
  margin-left: 4.5rem !important;
  margin-right: 4.5rem !important;
}

.mt-6 {
  margin-top: 4.5rem !important;
}

.mr-6 {
  margin-right: 4.5rem !important;
}

.mb-6 {
  margin-bottom: 4.5rem !important;
}

.ml-6 {
  margin-left: 4.5rem !important;
}

.p-0 {
  padding: 0 !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.px-1 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pr-1 {
  padding-right: 0.25rem !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pr-2 {
  padding-right: 0.5rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.px-3 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pr-3 {
  padding-right: 1rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pl-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.px-4 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pr-4 {
  padding-right: 1.5rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.px-5 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pr-5 {
  padding-right: 3rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.pl-5 {
  padding-left: 3rem !important;
}

.p-6 {
  padding: 4.5rem !important;
}

.py-6 {
  padding-top: 4.5rem !important;
  padding-bottom: 4.5rem !important;
}

.px-6 {
  padding-left: 4.5rem !important;
  padding-right: 4.5rem !important;
}

.pt-6 {
  padding-top: 4.5rem !important;
}

.pr-6 {
  padding-right: 4.5rem !important;
}

.pb-6 {
  padding-bottom: 4.5rem !important;
}

.pl-6 {
  padding-left: 4.5rem !important;
}

.text-left {
  text-align: left !important;
}

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

.text-right {
  text-align: right !important;
}

.text-primary {
  color: #3a86ff !important;
}

.text-secondary {
  color: #6c757d !important;
}

.text-success {
  color: #06d6a0 !important;
}

.text-danger {
  color: #ef476f !important;
}

.text-warning {
  color: #ffd166 !important;
}

.text-info {
  color: #118ab2 !important;
}

.text-light {
  color: #f8f9fa !important;
}

.text-dark {
  color: #1a1d20 !important;
}

.text-white {
  color: #fff !important;
}

.text-muted {
  color: #adb5bd !important;
}

.d-block {
  display: block !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-flex {
  display: flex !important;
}

.d-none {
  display: none !important;
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.embed-responsive::before {
  display: block;
  content: "";
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.status-active {
  color: #06d6a0;
  font-weight: bold;
}

.status-expired {
  color: #adb5bd;
}

.status-banned {
  color: #ef476f;
  font-weight: bold;
}

.status-unactivated {
  color: #ffd166;
}

.status-released {
  color: #06d6a0;
  font-weight: bold;
}

.status-development {
  color: #ffd166;
}

.status-discontinued {
  color: #adb5bd;
}

.price-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.price-container .badge {
  padding: 0.35em 0.65em;
  font-size: 0.75em;
  font-weight: 700;
  border-radius: 0.25rem;
  text-transform: uppercase;
}
.price-container p {
  margin: 0;
  font-weight: 500;
}

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