/* .load-dot {
    color: var(--main) !important;
} */

.loader-icon {
  transform: rotateZ(45deg);
  perspective: 1000px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  color: #fff;
}
.loader-icon:before,
.loader-icon:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: inherit;
  height: inherit;
  border-radius: 50%;
  transform: rotateX(70deg);
  animation: 1s spin linear infinite;
}
.loader-icon:after {
  color: var(--main);
  transform: rotateY(70deg);
  animation-delay: 0.4s;
}

@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotateZ(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotateZ(360deg);
  }
}

@keyframes rotateccw {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes spin {
  0%,
  100% {
    box-shadow: 0.2em 0px 0 0px currentcolor;
  }
  12% {
    box-shadow: 0.2em 0.2em 0 0 currentcolor;
  }
  25% {
    box-shadow: 0 0.2em 0 0px currentcolor;
  }
  37% {
    box-shadow: -0.2em 0.2em 0 0 currentcolor;
  }
  50% {
    box-shadow: -0.2em 0 0 0 currentcolor;
  }
  62% {
    box-shadow: -0.2em -0.2em 0 0 currentcolor;
  }
  75% {
    box-shadow: 0px -0.2em 0 0 currentcolor;
  }
  87% {
    box-shadow: 0.2em -0.2em 0 0 currentcolor;
  }
}

.text-main-gra {
  background: -webkit-linear-gradient(-90deg, var(--main) 50%, var(--sub));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge-7 {
  width: 70px;
  height: 70px;
  background: var(--main-30);
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  border-radius: 10px;
}

.badge-7 i {
  color: var(--main) !important;
}

.btn-main {
  color: var(--main);
  background: var(--main-30);
  border: 1px solid var(--main);
  transition: all 0.5s ease;
}

.btn-disabled {
  color: #d22b2b;
  background: #d22b2b30;
  border: 1px solid #d22b2b;
  transition: all 0.5s ease;
}

.btn-disabled:hover {
  color: #fff;
  background: #d22b2b;
}

.text-main i {
  color: var(--main);
}

* {
  font-family: "LineSeed", sans-serif;
  font-weight: 400;

  box-sizing: border-box;

  /* scrollbar-width: thin;
  scrollbar-color: var(--main) transparent; */
}

.font-bold {
  font-family: "LineSeed", sans-serif;
  font-weight: 600;
}

::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-track {
  background: #000;
}

::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(180deg, var(--sub), var(--main));
}

.ann-control {
  height: 325px;
}

.text-main {
  color: var(--main) !important;
}

.text-sec {
  color: var(--sub) !important;
}

.bg-main {
  background-color: var(--main) !important;
}

.bg-main-gra {
  background: linear-gradient(
    90deg,
    var(--main) 0%,
    var(--sub) 100%
  ) !important;
  border: none !important;
}

.border-main {
  border: 2px solid var(--main);
}

.border-top-main {
  border-top: 5px solid var(--main);
}

.border-main-gra {
  position: relative;
  box-sizing: border-box;
  border: 2px solid transparent;
  border-radius: 1em;
  background: #fff;
  background-clip: padding-box;
  transition: all 0.4s ease;
}

.border-main-gra::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: -2px;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--main) 0%, var(--sub) 100%);
  transition: all 0.4s ease;
}

.btn-up:hover {
  transform: translateY(-10px);
}

h4 {
  width: 100%;
  text-overflow: ellipsis;
}

hr {
  border-top: 2px solid var(--main);
  opacity: 1;
}

.not-dec {
  text-decoration: none;
}

.bg-hallo {
  background:
    linear-gradient(
      180deg,
      rgba(51, 54, 62, 0.9) 73%,
      rgba(88, 93, 106, 0.6) 100%
    ),
    url("https://i.ibb.co/ct3xJRM/wallpapersden-com-batman-dark-theme-1920x1080.jpg");
  background-size: cover !important;
  background-position: center;
  background-attachment: fixed;
  height: auto;
}

.page-wrapper {
  background-color: transparent;
  background-image: url("");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.m-cent {
  margin: 0% auto !important;
}

.text-nav {
  color: #c2c9da !important;
}

.nav-link {
  position: relative;
  padding: 6.5px 16px !important;
  margin: 0 1.5px !important;
  border-radius: 8px;
  border: 1.55px solid transparent;
  font-weight: 500;
  transition: all 0.3s ease;
  color: inherit;
}

.nav-link:hover {
  border-color: var(--main);
  background: color-mix(in srgb, var(--main) 0%, transparent);
  color: var(--main) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px color-mix(in srgb, var(--main) 5%, transparent);
}

.nav-link.active {
  background: color-mix(in srgb, var(--main) 35%, transparent);
  color: var(--main) !important;
  border-color: var(--main);
}

.nav-link.active i {
  color: #fff !important;
}

.nav-link.show {
  color: var(--main) !important;
  background: var(--main-10);
}

.dropdown-menu {
  border: none;
  border-radius: 16px;
  padding: 8px;
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04);
}

.dropdown-item {
  border-radius: 10px;
  padding: 10px 14px;
  transition: all 0.25s ease;
}

.dropdown-item:hover {
  background: var(--main-30) !important;
  color: var(--main) !important;
  transform: translateX(4px);
}

.dropdown-item:focus,
.dropdown-item:active {
  background: var(--main-20) !important;
  color: var(--main) !important;
}

.bubble-main {
  background-color: var(--main);
  color: #fff;
  padding: 10px 20px;
  padding-bottom: 5px;
  width: fit-content;
  border-radius: 20px;
}

.border-hov {
  border: 1.55px solid #cccccc65;
  transition: 0.3s ease-in-out;
}

.border-hov:hover {
  border-color: var(--main);
}

.border-hov.active {
  border-color: var(--main);
}

.btn-main.active {
  color: white;
  background-color: var(--main);
  border: 1.25px solid var(--main);
}

.btn-main.active i {
  color: white !important;
}

.btn-main:hover {
  color: white;
  background-color: var(--main);
  border: 1.25px solid var(--main);
}

@media only screen and (max-width: 500px) {
  .pd-sm-font {
    font-size: 13px !important;
  }

  .pd-h-font {
    font-size: 16px;
  }
}

.menu_hover {
  transition: all 0.3s ease-in-out;
}

.menu_hover:hover {
  transform: scale(1.05);
}

.bg-white {
  background: var(--main-them-bg-color) !important;
}

.text-dark {
  color: var(--main-them-font-color) !important;
}

@media only screen and (max-width: 1400px) {
  .ann-control {
    height: 280px;
  }
}

@media only screen and (max-width: 1200px) {
  .ann-control {
    height: 234px;
  }
}

#nav_main {
  background: #00000085 !important;
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 12px 0;
}

/* section-title */

.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.section-title .icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border: 1.85px solid var(--main);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main) !important;
  background: rgba(0, 207, 255, 0.12);
    backdrop-filter: blur(10px);
  /* box-shadow: 0 0 10px rgba(0, 207, 255, .45); */
}
.section-title .icon i {
  color: var(--main) !important;
}

.section-title .label {
  display: flex;
  align-items: center;
  gap: 0px;
  flex: 1;
}

.section-title .title {
  height: 38px;
  padding: 0 18px;
  border: 1.85px solid var(--main);
  border-radius: 999px;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
    background: rgba(10, 49, 58, 0.35);
    backdrop-filter: blur(10px);
  /* box-shadow: 0 0 12px rgba(0, 207, 255, .35); */
}

.section-title .line {
  flex: 1;
  height: 1.85px;
  background: var(--main);
  /* box-shadow: 0 0 10px var(--main); */
}

.section-title .more {
  height: 33.5px;
  padding: 0 16px;
  border: 1.85px solid var(--main);
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 0px;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
    background: rgba(10, 49, 58, 0.35);
    backdrop-filter: blur(10px);
  transition: all 0.35s ease;
}

.section-title .more:hover {
  background: rgba(0, 207, 255, 0.18);
  /* box-shadow: 0 0 12px rgba(0, 207, 255, 0.35); */
  transform: translate(2px);
}

.badge-container {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    /* width: max-content; */
    /* max-width: calc(100% - 20px); */
}

.badge-main {
    background: rgba(10, 49, 58, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1.25px solid var(--main);
    border-radius: 5vh;
}

@media (max-width: 768px) {
    .badge-container {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 1rem;
    }

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