/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
/* Fonts */
/* @import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap'); */
/*
@font-face {
  font-family: 'score';
  font-weight: 100;
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-1Thin.woff')
    format('woff');
}
@font-face {
  font-family: 'score';
  font-weight: 200;
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-2ExtraLight.woff')
    format('woff');
}
@font-face {
  font-family: 'score';
  font-weight: 300;
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-3Light.woff')
    format('woff');
}
@font-face {
  font-family: 'score';
  font-weight: 400;
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-4Regular.woff')
    format('woff');
}
@font-face {
  font-family: 'score';
  font-weight: 500;
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-5Medium.woff')
    format('woff');
}
@font-face {
  font-family: 'score';
  font-weight: 600;
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-6Bold.woff')
    format('woff');
}
@font-face {
  font-family: 'score';
  font-weight: 700;
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-7ExtraBold.woff')
    format('woff');
}
@font-face {
  font-family: 'score';
  font-weight: 800;
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-8Heavy.woff')
    format('woff');
}
@font-face {
  font-family: 'score';
  font-weight: 900;
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-9Black.woff')
    format('woff');
}
*/
:root {
  scroll-behavior: smooth;
  --default-font: sans-serif, "Noto Sans", "jost", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-secondary: 'jost', sans-serif;
  --nav-font: 'jost', sans-serif;
  --bs-bg: #fff;
  --tw-shadow: 0px 32px 64px -12px rgba(153, 69, 255, .2);
  --tw-shadow-colored: 0px 32px 64px -12px var(--tw-shadow-color);
  --bs-primary: #6c757d;
  --heading-font: "Jost", sans-serif;
}

body {
  word-break: keep-all;
  -webkit-text-size-adjust: none;
  counter-reset: number;
  font-family: var(--default-font);
  background-image: radial-gradient(farthest-side at bottom left, #ffffff, transparent 900px), radial-gradient(farthest-corner at bottom right, #ffffff, transparent 1000px);
  background-color: #fdfdfd;
  color: var(--bs-gray-900);
  /*
    background-image: url("https://cdn.pixabay.com/photo/2021/09/27/13/21/galaxy-6660782_1280.jpg");
    background-size: cover;

    background-image: url("../../images/line5.png"); 
    background-position: top center;
    background-size: cover; */
  position: relative;

}

.jost {
  font-family: var(--heading-font) !important;
}

/*
body::after {
  content: '';
 top: -100px !important;
  position: absolute;
   background-image: url("../../images/line4.png"); 
    background-size: cover;
  z-index: -1;
  inset: 0;
  opacity: 0.5;
}
*/

[lang="en"],
[lang="en"] .form-select,
[lang="en"] .form-control {
  /* text-transform: capitalize */
}

[lang="en"] button {
  text-transform: capitalize;
}

a {
  color: var(--color-links);
  text-decoration: none;
}

a:hover {
  color: var(--color-links-hover);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-default);
}

.container-full {
  min-height: 70vh;
}

.container>.container {
  padding: 0;
}

.table {

  color: #2b2b2b;
}

.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  font-family: var(--default-font);
  border-top: 1px solid var(--bs-gray-400)
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--color-white);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  -webkit-animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

form label {
  text-transform: capitalize !important;
}

.form-control:disabled {
  background-color: var(--bs-gray-200);
  opacity: 1;
}

.form-control[readonly] {
  background-color: var(--bs-gray-200);
  opacity: 1;
}

.form-control[readonly]:focus {
  background-color: var(--bs-gray-200);
  opacity: 1;
}

.bg-success {
  background-color: #24b507 !important;
}

.bg-warning {
  background-color: #ffad20 !important;
}

.text-cyan {
  color: rgb(6 153 154);
}

.btn-primary,
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus,
.btn-primary.focus {
  color: #e9ecef;
  background-color: rgb(0 91 165);
  border-color: rgb(0 91 165);
}

.text-warning {
  color: #ffad20 !important;
}

.panel-title {
  font-weight: 600;
  margin-bottom: 1rem;
}

.chart-fluid {
  padding: 2rem;
}

.card {
  /* background-color: var(--bs-dark);  */
}

@-webkit-keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

.bg-ingress-img {
  /* background-image: url('/html/basic/assets/img/13904.png'); background-repeat: no-repeat; background-size: cover; background-position: center center; */
  position: relative;
}

.bg-ingress-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);

}

/* .bg-ingress-img>.d-flex{
  position: relative;
  z-index: 1;
} */
.ai-img {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 200px;
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-header {
  text-align: center;
  padding-bottom: 40px;
}

.section-header h2 {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 20px;
  color: var(--color-secondary);
}

.section-header p {
  margin: 0 auto;
  color: var(--color-secondary-light);
}

@media (min-width: 1280px) {
  .section-header p {
    max-width: 80%;
  }

}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  height: 75vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}


.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0.4) 70%,
      rgba(0, 0, 0, 0) 100%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.hero p {
  color: #fff;
  margin: 5px 0 0 0;
  font-size: 22px;
  font-weight: 300;

}

.sub-hero {
  height: 50vh;
}

.sub-hero h2 {
  font-size: 2.0rem;

}

.sub-hero p {
  font-size: 1.2rem;
}

.hero .sign-up-form {
  margin-top: 20px;
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 7px;
  background: color-mix(in srgb, var(--default-color) 5%, white 90%);
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.1);
  display: flex;
}

.hero .sign-up-form input[type=email] {
  background-color: transparent;
  border: 0;
  padding: 4px 10px;
  width: 100%;
}

.hero .sign-up-form input[type=email]:focus-visible {
  outline: none;
}

.hero .sign-up-form input[type=submit] {
  border: 0;
  box-shadow: none;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  padding: 8px 20px 10px 20px;
  border-radius: 7px;
  color: var(--contrast-color);
  transition: 0.3s;
}

.hero .sign-up-form input[type=submit]:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
}

@media (max-width: 768px) {
  .hero:before {

    background: rgba(0, 0, 0, 0.6);

  }

  .sub-hero {
    height: 60vh;
  }

  .hero h2 {
    font-size: 26px;
  }

  .hero p {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: rgba(var(--color-secondary-rgb), 0.05);
  min-height: 40px;
  margin-top: 76px;
}

.breadcrumbs h2 {
  font-size: 30px;
  font-weight: 300;
  margin: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--color-secondary-light);
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs h2 {
    margin-bottom: 10px;
    font-size: 24px;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 995;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--color-white);
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(var(--color-primary-rgb), 0.85);
  color: var(--color-white);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

.header .logo {
  padding-left: 1rem !important;
}

.header .dark {
  display: block;

}

.header .light {
  display: none;
}

.header.sticked .light {
  display: block;
}

.header.sticked .dark {
  display: none;
}

.mobile-div {
  margin-right: 0rem;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0px;
}

.mobile-div .btn {
  display: flex;
  align-items: center;
  margin: 0px;
  line-height: 0.5;
  color: var(--color-white);
}

.fixed-top.sticked,
.header.substicked .navbar a,
.fixed-top.sticked .mobile-div .btn,
.fixed-top.substicked .mobile-div .btn {

  color: var(--color-dark);
}

.mobile-div .btn img {
  height: 28px;
  margin-right: 0.25rem;
  border-radius: 50%
}

.mobile-div .btn i {
  font-size: 28px;
}

.mobile-div .dropdown-menu a img {
  margin-right: 0.25rem
}

.mobile-div .user-ath-box {
  min-height: 60vh;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header.sticked {
  position: fixed;
  box-shadow: 0px 2px 20px rgba(var(--color-secondary-rgb), 0.1);
  background-color: var(--bs-white);
}

.header .logo img {
  margin-right: 6px;
  height: 46px;
}

.header .container-fluid {
  max-width: 1800px !important;
}


/*--------------------------------------------------------------
# Desktop Navigation 
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
    position: relative;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    gap: 0 1rem;
  }

  [lang="en"] .navbar ul {
    gap: 0 1.6rem;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
  }

  .navbar a {
    text-transform: capitalize;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    font-family: var(--font-secondary);
    font-size: 20px;
    font-weight: 500;
    color: rgba(var(--bs-light-rgb), 1);
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    /* background-color: #cccccc; */
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    transition: all 0.3s ease-in-out 0s;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    transform: scaleX(0.7);
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--color-primary);
  }

  .navbar .dropdown a:hover:before,
  .navbar .dropdown:hover>a:before,
  .navbar .dropdown .active:before {
    visibility: hidden;
  }

  .navbar .dropdown a:hover,
  .navbar .dropdown .active,
  .navbar .dropdown .active:focus,
  .navbar .dropdown:hover>a {
    color: #ffd600;
    /* background: var(--color-white); */
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 200px;
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(25, 118, 210, 0.10), 0 1.5px 6px rgba(0, 0, 0, 0.06);
    transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
    transform: translateY(10px) scale(0.98);
    border: none;
  }

  .navbar .dropdown:hover>ul,
  .navbar .dropdown:focus-within>ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    display: flex;
    align-items: center;
    padding: 12px 22px;
    font-size: 1rem;
    font-weight: 500;
    color: #222;
    border-radius: 8px;
    transition: background 0.18s, color 0.18s;
    background: none;
    position: relative;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    background: linear-gradient(90deg, #e3eafc 0%, #f7faff 100%);
    color: #1976d2;
  }

  .navbar .dropdown ul a i {
    margin-right: 8px;
    font-size: 1.1em;
    color: #1976d2;
    transition: color 0.18s;
  }

  .navbar .dropdown ul a:hover i {
    color: #0a1a3a;
  }

  .navbar .megamenu {
    position: static;
  }

  .navbar .megamenu ul {
    right: 0;
    padding: 10px;
    display: flex;
  }

  .navbar .megamenu ul li {
    flex: 1;
  }

  .navbar .megamenu ul li a,
  .navbar .megamenu ul li:hover>a {
    color: rgba(var(--color-white-rgb), 0.5);
    background: none;
  }

  .navbar .megamenu ul li a:hover,
  .navbar .megamenu ul li .active,
  .navbar .megamenu ul li .active:hover {
    color: var(--color-white);
    background: var(--color-primary);
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }

  .header.sticked .navbar a,
  .header.substicked .navbar a {
    color: #020235;
  }



}

.btn-getstarted,
.btn-getstarted:focus {

  color: var(--color-white);
  background: var(--color-primary);
  padding: 8px 23px;
  border-radius: 4px;
  transition: 0.3s;
  font-family: var(--font-secondary);
}

.btn-getstarted .bi {
  font-size: 16px !important;
  position: relative;
  top: -2px;
}

.btn-getstarted:hover,
.btn-getstarted:focus:hover {
  color: var(--color-white);
  background: rgba(var(--color-primary-dark-rgb), 0.85) !important;
}

@media (max-width: 1279px) {

  .header .btn-getstarted,
  .header .btn-getstarted:focus {
    margin-right: 50px;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

.mobile-nav-active .btn-getstarted {
  margin-left: 1rem;
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    left: -100%;
    width: calc(100% - 70px);
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }


  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 30px 0px 0px 0px;
    margin: 0;
    background: rgba(6, 6, 6, 0.8);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: 500;
    color: rgba(var(--color-white-rgb), 0.7);
    white-space: nowrap;
    transition: 0.3s;
    text-transform: capitalize;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--color-white);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    background-color: var(--bs-dark);
    border: 1px solid rgba(var(--color-secondary-light-rgb), 0.3);
    list-style: none !important;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;

  }

  .navbar .dropdown-item {
    font-size: 16px;
  }

  /* .mobile-div.member {
    margin-right: 2rem;
  } */

  ol, ul {
    padding-left:1rem;
  }

  .mobile-nav-toggle {
    display: block !important;
    color: var(--color-white-rgb);
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    z-index: 9999;
    right: 0px;
  }

  .mobile-nav-toggle .bi-x {
    color: var(--color-white);
  }

  .mobile-nav-toggle i {
    font-size: 30px;
  }

  .mobile-nav-active {
    overflow: hidden;
    z-index: 9995;
    position: relative;
  }

  .mobile-nav-active .navbar {
    left: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(6, 6, 6, 0.8);
    z-index: 9996;
  }
}




.btn-outline-secondary {
  /* border-color: #ced4da; */
}



.fixed-top {}

.simple-link,
a,
.btn-link {
  text-decoration: none;
  color: var(--bs-light-rgb);
}

.lead {
  font-size: 1.2rem;
  font-weight: 300;
}

footer {
  /* background-color: rgba(7, 35, 95, 0.85); */
  background-image: url('/html/basic/assets/img/45184576_9150439.jpg');
  background-size: cover;
  color: var(--color-white);
  padding: 4rem 0rem;
}

footer .link-info {
  color: #ffffff !important;
}

#customer_records {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

#customer_records li {
  margin-left: -10px;
  margin-right: -10px;
  position: relative;
}

#customer_records li .form-floating {
  margin-left: 5px;
  margin-right: 5px;
}

#customer_records li .delete {
  top: 5px;
  position: absolute;
  right: -10px;
  height: 36px;
  width: 36px;
  background-color: var(--bs-gray-700);
  opacity: 1;
  border: 2px solid var(--bs-gray-700);
  text-shadow: none;
  color: var(--bs-gray-300);
  border-radius: 50%;
  padding: 0;
  display: none;
}

#customer_records li:hover .delete {
  display: block
}



.table thead th {
  text-transform: capitalize;
}



.total_balance {
  grid-template-columns: repeat(1, 1fr);
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

@media (min-width: 460px) {
  .total_balance {
    grid-template-columns: repeat(2, 1fr);

  }
}

/*
@media (min-width: 576px) {  
  .total_balance{   
  grid-template-columns: repeat(2, 1fr);
  
  } 
}
*/

/*
@media (min-width: 768px) {  
  .total_balance{   
  grid-template-columns: repeat(2, 1fr);
  
  }
 
}
*/

@media (min-width: 992px) {
  .total_balance {
    grid-template-columns: repeat(2, 1fr);

  }
}

@media (min-width: 1200px) {
  .total_balance {
    grid-template-columns: repeat(3, 1fr);

  }
}

/*
@media (min-width: 1200px) { 
  .total_balance{   
      grid-template-columns: repeat(auto-fill, minmax(48%, auto));

  } 
}
*/

@media (min-width: 1400px) {
  .total_balance {
    grid-template-columns: repeat(3, 1fr);
  }

}

[onclick] {
  cursor: pointer
}

.card {
  position: relative;
  min-width: 0;
  word-wrap: break-word;
  word-break: keep-all;
  padding: 1rem;
}

.card .stats-content {
  text-align: end;


}

.total_balance .card {
  display: grid;
  align-items: center;
  grid-template-columns: 20% 80%;
  min-height: 180px;
  gap: 0rem
}

@media (max-width: 1199.98px) {
  .total_balance .card {
    display: flex;
    flex-direction: column;
    gap: 1rem 0rem;
    justify-content: center
  }

  .card .stats-content {
    text-align: center
  }
}

@media (max-width: 767.98px) {
  .total_balance .card {
    display: flex;
    flex-direction: column;
    gap: 1rem 0rem;
    justify-content: center
  }

  .card .stats-content {
    text-align: center
  }
}

.total_balance .card.flex-row-reverse .stats-content {
  text-align: start;
  margin-left: auto;

}

.total_balance .card h6 {
  text-transform: capitalize;

}

.total_balance .card .icon {
  display: flex;
  flex-direction: column;
  justify-content: center
}

.total_balance .card .icon,
.recommend-item .tile-item .icon {
  object-fit: cover;
  width: 120px;
  background-color: #fff;
  border-radius: 50%;
  padding: 10px;
}

.total_balance .card .icon img {
  width: 100%;
}

.stats-content {
  display: grid;
  align-items: flex-start;
}

.total_balance .card h6 {
  font-weight: 400;
  letter-spacing: -0.5px;
  color: var(--bs-dark);
}

.total_balance .card h3 {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--bs-dark);
}

.total_balance .card h3 small {
  font-size: 0.85rem;
}


.recommend-item .tile-item {
  display: flex;
  justify-content: flex-start;

}

.recommend-item .tile-item div:nth-child(2) {
  margin-left: 2rem;
}

.recommend-item .tile-item h3 {
  margin-left: auto;
}

.card ul.tabs {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.card ul.tabs li small {
  font-size: 1.0rem;
  margin-right: 1rem;
  color: var(--bs-gray-600);
}

._title,
.user-panel-title {
  font-weight: 700;
  font-size: 1.55rem;
  letter-spacing: -0.01rem;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  padding-bottom: 1rem;
  position: relative;
  margin-left: 0.5rem;
  margin-bottom: 2rem;
}

._title:after,
.user-panel-title:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 4px;
  background: var(--bs-cyan);
  left: 0;
  bottom: 0;
}

.nav-tabs .nav-link {
  font-weight: bolder;
  text-transform: capitalize;
}


.input-group-text {
  background-color: transparent !important
}

.pop-win {
  width: 768px;
}

.progress {

  background-color: var(--color-secondary-dark);

}

@media (max-width: 768px) {
  .pop-win {
    width: 100% !important;
  }
}


@media (max-width: 992px) {

  .header .logo {
    padding-left: 0.5rem !important;
  }

  .table-responsive .table {
    min-width: 991px !important;
  }

  .table thead th {
    text-transform: capitalize !important;
  }


}

@media (max-width: 768px) {

  .nav.nav-tabs {
    display: grid !important;
  }

  .nav.nav-tabs li.nav-item a.nav-link {
    text-align: center !important;
  }

  .input-group-sm {
    display: grid;
  }
}

@media (max-width: 576px) {

  .header .logo img {
    height: 27px;
    margin-right: 0px;
  }

  .counter-number {
    font-size: 36px !important;

  }

  .tile-item .icon {
    max-width: 64px;
  }

  .recommend-item .tile-item .icon {
    margin-bottom: 1rem;
  }

  .recommend-item .tile-item {

    flex-direction: column !important;
    text-align: center;
  }

  .recommend-item .tile-item h3 {
    margin-left: auto;
    margin-right: auto;
  }

  .mobile-div .btn {
    padding: 0.25rem 0.5rem;
    font-size: 1.45rem;
    border-radius: 0.25rem;
  }

}

/* ----------------------------------------------------------------

	Countdown �섏젙�� �댁슜�� 諛섏쁺�섏� �딆쓬

-----------------------------------------------------------------*/
.countdown {
  position: relative;
  display: block;
}

.countdown-wrap {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9;
  height: 70vh;
}

.countdown-container {
  max-width: 551px;
  background-color: var(--color-white);
  padding: 4rem 2rem;
  justify-content: space-between;
  align-items: center;
  position: relative;
  display: flex;
  flex-direction: row;
  min-width: 0;
  word-wrap: break-word;
  background-clip: border-box;
  border: 1px solid var(--bs-gray-300);
  border-radius: 0.35rem;
  box-shadow: 0 0.15rem 2.75rem 0 rgb(33 40 50 / 15%);

}

.countdown-container span h1 {
  word-break: break-all !important;
}

.counter-number {
  font-size: 48px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--color-secondary-dark);
}

.counter-number span {
  font-size: 16px;
  font-weight: 400;
  display: block;
  text-transform: uppercase;
  padding-top: 10px;
  color: var(--color-gray);
}

.coming-box {
  float: left;
  width: 25%;
}

tbody,
td,
tfoot,
th,
thead,
tr {
  border-color: inherit;
  border-style: none;
  border-width: 0;
}

.form-control,
.form-select {
  border-color: #6c757d;
  color: var(--color-secondary);
  background-color: transparent;
}

.form-select option {
  color: var(--color-secondary);
  background-color: var(--color-white);
}

.form-select:focus,
.form-control:focus {
  color: var(--color-secondary);
  border-color: var(--bs-primary);
  background-color: #fdfdfd;
}

.was-validated .form-control:invalid,
.form-control.is-invalid {
  border-color: var(--bs-primary);

}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner .swiper-slide {
  border: 1px solid rgba(255, 255, 255, .125);
  border-radius: 0.45rem;
  overflow: hidden;
  opacity: 1;
  transition: all 0.4s ease-out;
}

.partner .swiper-slide img {
  max-height: 80px;
  /*    filter: grayscale(100%);*/
  transition: all 0.4s ease-out;

}

.partner .swiper-slide:hover {
  opacity: 1
}

.partner .swiper-slide:hover img {
  filter: grayscale(0%);
}

.page-manager {
  background-color: #ffffff;
  background: rgba(255, 255, 255, 0.9);
  /* background: url(/html/basic/assets/img/hero-bg2.png) center center / cover; */
  margin-top: 0rem !important;
  padding-top: 60px;
}

.pagination {
  display: flex;
  justify-content: center;
}

.page-link {}

.page-item.active .page-link {
  z-index: 3;
  color: var(--bs-gray-400);
  background-color: var(--color-secondary-dark);
  border-color: var(--color-secondary-dark);
}

.page-link {
  background-color: var(--bs-dark);
  color: var(--bs-gray-400);
}

.deposit_aleo {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  align-items: stretch;
  justify-content: space-between
}

.deposit_aleo .card,
.deposit_coin .card {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 2fr;

}

.deposit_aleo .card img {
  height: 80px;
}

.usdt-check {
  margin: 0px;
  list-style: none;
  padding: 0px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  align-items: stretch;
}

.usdt-check .card.active {
  /*    background-color:#6f42c1; */
}

@media (max-width: 1199.98px) {
  .usdt-check {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .deposit_aleo {
    grid-template-columns: repeat(1, 1fr);
  }

  .usdt-check {
    grid-template-columns: repeat(2, 1fr);
  }
}

.usdt-check li {
  text-align: center;

}

.aleo-asset .tile-item {
  display: flex;
  flex-wrap: wrap;
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
  /*    position: relative;*/

}

/*.aleo-asset .tile-item img, .aleo-asset .tile-item .stats-content{
    position: relative;
    z-index: 7
}

.aleo-asset .tile-item::before{
        position: absolute;
    content: "";
        left: 0px;
        top: 0px;
        width: 100%;
    opacity: 0.4;
        height: 100%;
        background-image: linear-gradient(1turn, #000, transparent);
    }
*/

/* HTML: <div class="loader"></div> */
.loader {
  width: 40px;
  height: 40px;
  --c: no-repeat linear-gradient(orange 0 0);
  background: var(--c), var(--c), var(--c), var(--c);
  background-size: 21px 21px;
  animation: l5 1.5s infinite cubic-bezier(0.3, 1, 0, 1);
}

@keyframes l5 {
  0% {
    background-position: 0 0, 100% 0, 100% 100%, 0 100%
  }

  33% {
    background-position: 0 0, 100% 0, 100% 100%, 0 100%;
    width: 60px;
    height: 60px
  }

  66% {
    background-position: 100% 0, 100% 100%, 0 100%, 0 0;
    width: 60px;
    height: 60px
  }

  100% {
    background-position: 100% 0, 100% 100%, 0 100%, 0 0
  }
}

.header {
  /*    box-shadow: var(--tw-ring-offset-shadow, 0 0 transparent), var(--tw-ring-shadow, 0 0 transparent), var(--tw-shadow);*/
}

.container-full>.container {
  /*    box-shadow: var(--tw-ring-offset-shadow, 0 0 transparent), var(--tw-ring-shadow, 0 0 transparent), var(--tw-shadow);*/
  /*
     background-image: radial-gradient(farthest-side at bottom left, #271d3b, transparent 400px), radial-gradient(farthest-corner at bottom right, #3a233f, transparent 700px);
    padding: 2rem;
*/
}

.aleo-asset,
.card {
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease-out 0s;
}

.card {
  background-color: var(--bs-bg);
  /* background-image: radial-gradient(farthest-side at bottom left, #271d3b, transparent 400px), radial-gradient(farthest-corner at bottom right, #3a233f, transparent 700px); */
}

.usdt-check .card:hover a,
.usdt-check .card.active a {

  color: #020235;
  /* background-image: radial-gradient(farthest-side at bottom left, #4a298b, transparent 400px), radial-gradient(farthest-corner at bottom right, #8d1fa5, transparent 700px); */
}

.usdt-check .card.active {
  background-color: #9cb4ed;
  /* background-image: radial-gradient(farthest-side at bottom left, #4a298b, transparent 400px), radial-gradient(farthest-corner at bottom right, #8d1fa5, transparent 700px); */
}

.aleo-asset .tile-item {
  color: rgba(var(--color-primary-dark-rgb), 0.85);
  word-wrap: break-word;
  word-break: keep-all;
}

.aleo-asset .tile-item h6 {
  color: rgb(15, 15, 15);
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.aleo-asset .tile-item h1 {
  color: rgb(15, 15, 15);
  font-size: 2rem;
  font-weight: 700;
  line-height: 24px
}

.aleo-asset .tile-item .stats-content {
  text-align: end;
}

@media (max-width: 767px) {
  .aleo-asset .tile-item {
    flex-direction: column;
    justify-content: center
  }

  .aleo-asset .tile-item .stats-content {
    text-align: center;
    display: grid;
  }

  .aleo-asset .tile-item h6 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .aleo-asset .tile-item .stats-content a {
    display: none;
  }

  .loader {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}

.aleo-asset {
  margin-top: 1rem;
  border-radius: 0.25rem;
  overflow: hidden
}

.aleo-asset .tile-item {
  position: relative;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2rem
}

.aleo-asset .stats-content h3,
.aleo-asset .stats-content h6,
.aleo-asset .stats-content h1 {
  margin: 0px;
}

.aleo-asset .stats-content {
  display: grid;
  gap: 0rem 0rem;
}

.aleo-asset .stats-content p {
  margin-bottom: 0rem;
}

.aleo-asset .stats-content p small {
  opacity: 0.8;
}

.aleo-asset .tile-item h1,
.aleo-asset .stats-content h3 {
  font-family: var(--font-primary);
}

.aleo-asset .tile-item h1 {
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
  font-weight: 900
}

.aleo-asset .stats-content h3 {
  font-weight: 700
}

@media (max-width: 767.98px) {
  .aleo-asset .tile-item {
    height: 500px;
    justify-content: flex-start;

  }

  .aleo-asset .stats-content {
    margin-top: 1rem;
    position: absolute;
    bottom: 30px;
  }
}

#chart1,
#chart2 {
  width: 100%;

}


.login,
.signup,
.find {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  align-items: stretch;
}

@media (max-width: 991.98px) {

  .signup,
  .find {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 767.98px) {
  .login {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (min-width: 1280px) {
  .header:not(.sticked) .navbar .dropdown ul {
    background: #3d4d6a !important;
    box-shadow: 0 8px 32px rgba(61, 77, 106, 0.10), 0 1.5px 6px rgba(0, 0, 0, 0.06);
  }

  .header:not(.sticked) .navbar .dropdown ul a {
    color: #fff !important;
  }

  .header:not(.sticked) .navbar .dropdown ul a:hover,
  .header:not(.sticked) .navbar .dropdown ul .active,
  .header:not(.sticked) .navbar .dropdown ul .active:hover,
  .header:not(.sticked) .navbar .dropdown ul li:hover>a {
    background: linear-gradient(90deg, #4b5c7d 0%, #3d4d6a 100%) !important;
    color: #ffd600 !important;
  }

  .header:not(.sticked) .navbar .dropdown ul a i {
    color: #ffd600 !important;
  }

  .header:not(.sticked) .navbar .dropdown ul a:hover i {
    color: #fff !important;
  }
}



/* 모바일 드롭다운 메뉴(모바일 유저 메뉴 등) 세련된 스타일 */

  .mobile-div.member .dropdown-menu {
    background: #232b3e;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(61,77,106,0.13), 0 1.5px 6px rgba(0,0,0,0.10);
    padding: 12px 0;
    min-width: 225px;
    border: none;
    margin-top: 12px;
    
    font-family: var(--font-secondary);
    transition: box-shadow 0.2s;
    /* max-width: 90vw; */
    /* width: auto; */
    box-sizing: border-box;
    word-break: break-all;
    overflow-wrap: break-word;
    /* transform: translate(0px, 65px) !important; */
    
  }
  @media (min-width: 1280px) {
    .mobile-div.member .dropdown-menu {
      right: 0;
      left: auto !important;
    }
  }
  @media (max-width: 1280px) {
    .mobile-div.member .dropdown-menu {
      right: auto !important;
      left: 0;
    }
  }
  .mobile-div.member .dropdown-menu a,
  .mobile-div.member .dropdown-menu .dropdown-item {
    color: #fff;
    padding: 12px 22px;
    font-size: 1rem;
    border-radius: 8px;
    transition: background 0.18s, color 0.18s;
    background: none;
    display: flex;
    align-items: center;
    font-weight: 500;
  }

  .mobile-div.member .dropdown-menu a:hover,
  .mobile-div.member .dropdown-menu .dropdown-item:hover,
  .mobile-div.member .dropdown-menu .active,
  .mobile-div.member .dropdown-menu .active:hover {
    background: linear-gradient(90deg, #4b5c7d 0%, #3d4d6a 100%);
    color: #ffd600;
  }

  .mobile-div.member .dropdown-menu a i,
  .mobile-div.member .dropdown-menu .dropdown-item i {
    margin-right: 8px;
    font-size: 1.1em;
    color: #ffd600;
    transition: color 0.18s;
  }

  .mobile-div.member .dropdown-menu a:hover i,
  .mobile-div.member .dropdown-menu .dropdown-item:hover i {
    color: #fff;
  }


  .header.sticked .mobile-div.member .dropdown-menu {
    background: #fff !important;
    color: #222 !important;
    box-shadow: 0 8px 32px rgba(61,77,106,0.13), 0 1.5px 6px rgba(0,0,0,0.10);
  }
  .header.sticked .mobile-div.member .dropdown-menu a,
  .header.sticked .mobile-div.member .dropdown-menu .dropdown-item {
    color: #222 !important;
    background: none !important;
  }
  .header.sticked .mobile-div.member .dropdown-menu a:hover,
  .header.sticked .mobile-div.member .dropdown-menu .dropdown-item:hover,
  .header.sticked .mobile-div.member .dropdown-menu .active,
  .header.sticked .mobile-div.member .dropdown-menu .active:hover {
    background: linear-gradient(90deg, #e3eafc 0%, #f7faff 100%) !important;
    color: #1976d2 !important;
  }
  .header.sticked .mobile-div.member .dropdown-menu a i,
  .header.sticked .mobile-div.member .dropdown-menu .dropdown-item i {
    color: #1976d2 !important;
  }
  .header.sticked .mobile-div.member .dropdown-menu a:hover i,
  .header.sticked .mobile-div.member .dropdown-menu .dropdown-item:hover i {
    color: #0a1a3a !important;
  }


  /* 언어 선택 등 드롭다운 메뉴 위치 강제 고정 */
ul.dropdown-menu[data-bs-display="static"].show {
  position: absolute !important;
  /* inset: 0px 0px auto auto !important; */
  margin: 0px !important;
  
}
@media (min-width: 1280px) {
  ul.dropdown-menu[data-bs-display="static"].show {
    transform: translate(-15px, 67px) !important;
  }
}
@media (max-width: 1280px) {
  ul.dropdown-menu[data-bs-display="static"].show {
    transform: translate(85px,55px,0px) !important;
  }
}





