/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
/* :root {
  scroll-behavior: smooth;
} */

:root {
  scroll-behavior: smooth;
  --main-bg: #001420;
  --whit-color: #ffffff;
  --header-btn: rgba(11, 31, 44, 0.4);
  --header-switch: #12b6b3;
  --nav-bg: rgba(0, 20, 32, 0.4);
  --border-color: #12b6b3;
  --purchase-token: #ff007a;
  --newsbtn-bg: #00a6f9;
  --join-now: #12b6b3;
  --black: #000000;
  --das-header: #00142080;
  --card-bg: rgb(0 20 32 / 70%);
}

body {
  font-family: poppins;
  background: url(../img/Bg.png);
  background-size: cover;
  color: #000000;
  position: relative;
}

body:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, .7); */
}

#root {
  position: relative;
}

a {
  color: #12b6b3;
  text-decoration: none;
}

a:hover {
  color: #2ce9e5;
  text-decoration: none;
}

/* h1, h2, h3, h4, h5, h6 {
  font-family: "Nunito", sans-serif;
} */
p {
  font-size: 14px;
  color: #3d4348;
}

p.model-title {
  font-size: 14px;
  color: #fff;
}

/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
#main {
  margin-top: 70px;
  padding: 20px 20px;
  transition: all 0.3s;
}

main#main {
  min-height: calc(100vh - 132px);
}

@media (max-width:1199px) {
  #main {
    padding: 20px;
  }

}

/*--------------------------------------------------------------
# Page Title
--------------------------------------------------------------*/
.pagetitle {
  margin-bottom: 10px;
}

.pagetitle h1 {
  font-size: 24px;
  margin-bottom: 0;
  font-weight: 600;
  color: #fff;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #2b3e7e;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #6776f4;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Override some default Bootstrap stylings
--------------------------------------------------------------*/

/* Dropdown menus */
.dropdown-menu {
  border-radius: 4px;
  padding: 10px 0;
  -webkit-animation-name: dropdown-animate;
  animation-name: dropdown-animate;
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  border: 0;
  box-shadow: 0 5px 30px 0 rgba(82, 63, 105, 0.2);
}

.dropdown-menu .dropdown-header,
.dropdown-menu .dropdown-footer {
  text-align: center;
  font-size: 15px;
  padding: 10px 25px;
}

.dropdown-menu .dropdown-footer a {
  color: #444444;
  text-decoration: underline;
}

.dropdown-menu .dropdown-footer a:hover {
  text-decoration: none;
}

.dropdown-menu .dropdown-divider {
  color: #a5c5fe;
  margin: 0;
}

.dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 10px 15px;
  transition: 0.3s;
}

.dropdown-menu .dropdown-item i {
  margin-right: 10px;
  font-size: 18px;
  line-height: 0;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #f6f9ff;
}

@media (min-width:768px) {

  /* .dropdown-menu-arrow::before {
    content: "";
    width: 13px;
    height: 13px;
    background: #fff;
    position: absolute;
    top: -7px;
    right: 20px;
    transform: rotate(45deg);
    border-top: 1px solid #eaedf1;
    border-left: 1px solid #eaedf1;
  } */
}

@-webkit-keyframes dropdown-animate {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }

  0% {
    opacity: 0;
  }

}

@keyframes dropdown-animate {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }

  0% {
    opacity: 0;
  }

}

/* Light Backgrounds */
.bg-primary-light {
  background-color: #cfe2ff;
  border-color: #cfe2ff;
}

.bg-secondary-light {
  background-color: #e2e3e5;
  border-color: #e2e3e5;
}

.bg-success-light {
  background-color: #d1e7dd;
  border-color: #d1e7dd;
}

.bg-danger-light {
  background-color: #f8d7da;
  border-color: #f8d7da;
}

.bg-warning-light {
  background-color: #fff3cd;
  border-color: #fff3cd;
}

.bg-info-light {
  background-color: #cff4fc;
  border-color: #cff4fc;
}

.bg-dark-light {
  background-color: #d3d3d4;
  border-color: #d3d3d4;
}

/* Card */
.card {
  margin-bottom: 18px;
  border: none;
  border-radius: 5px;
  box-shadow: 0px 0 30px rgb(0 0 0 / 10%);
  background-color: rgb(255 255 255 / 70%);
  ;
}

.card-header,
.card-footer {
  border-color: #416fcb3b;
  background-color: #fff;
  /* color: #ffffff; */
  padding: 10px;
  font-size: 23px;
  font-weight: 600;
  color: #000;
}

.card-body img {
  width: 100%;
  border-radius: 5px;
}

.card-body p {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.card-body {
  /* border-bottom: solid 2px #004be2; */
  border-radius: 0px 5px 5px 5px;
}

.card-title {
  padding: 20px 0 15px 0;
  font-size: 18px;
  font-weight: 500;
  color: #000;
  font-family: "Poppins", sans-serif;
}

.card-title span {
  color: #061c4b;
  font-size: 14px;
  font-weight: 400;
}

.dashboard .card-body {
  padding: 0 20px 0px 20px;
}

.card-img-overlay {
  background-color: rgba(255, 255, 255, 0.6);
}

/* Alerts */
.alert-heading {
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
}

/* Close Button */
.btn-close {
  background-size: 25%;
}

.btn-close:focus {
  outline: 0;
  box-shadow: none;
}

/* Accordion */
.accordion-item {
  border: 1px solid #ebeef4;
}

.accordion-button:focus {
  outline: 0;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: #012970;
  background-color: #f6f9ff;
}

.accordion-flush .accordion-button {
  padding: 15px 0;
  background: none;
  border: 0;
}

.accordion-flush .accordion-button:not(.collapsed) {
  box-shadow: none;
  color: #4154f1;
}

.accordion-flush .accordion-body {
  padding: 0 0 15px 0;
  color: #3e4f6f;
  font-size: 15px;
}

/* Breadcrumbs */
.breadcrumb {
  font-size: 14px;
  font-family: "Nunito", sans-serif;
  color: #899bbd;
  font-weight: 600;
}

.breadcrumb a {
  color: #000 !important;
  transition: 0.3s;
}

.breadcrumb a:hover {
  color: #51678f;
}

.breadcrumb .breadcrumb-item::before {
  color: #899bbd;
}

.breadcrumb .active {
  color: #061c4b;
  font-weight: 600;
}

/* Bordered Tabs */
.nav-tabs-bordered {
  border-bottom: 2px solid #ebeef4;
}

.nav-tabs-bordered .nav-link {
  margin-bottom: -2px;
  border: none;
  color: #2c384e;
}

.nav-tabs-bordered .nav-link:hover,
.nav-tabs-bordered .nav-link:focus {
  color: #4154f1;
}

.nav-tabs-bordered .nav-link.active {
  background-color: #fff;
  color: #4154f1;
  border-bottom: 2px solid #4154f1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.logo {
  line-height: 1;
}

@media (min-width:1200px) {
  .logo {
    width: 245px;
  }

}

.logo img {
  max-height: 145px;
  margin-right: 0px;
  width: 225px;
  z-index: 2;
}

.logo span {
  font-size: 26px;
  font-weight: 700;
  color: #012970;
  font-family: "Nunito", sans-serif;
}

.header {

  /* transition: all 0.5s; */
  z-index: 997;
  height: 75px;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
  background-color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .4);
  padding: 0 20px;
  /* Toggle Sidebar Button */

  /* Search Bar */
}

.header .toggle-sidebar-btn {
  font-size: 25px;
  padding-left: 10px;
  cursor: pointer;
  color: #19306a;
}

.header .search-bar {
  min-width: 360px;
  padding: 0 20px;
}

@media (max-width:1199px) {
  .header .search-bar {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    padding: 20px;
    box-shadow: 0px 0px 15px 0px rgba(1, 41, 112, 0.1);
    background: white;
    z-index: 9999;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
  }

  .header .search-bar-show {
    top: 60px;
    visibility: visible;
    opacity: 1;
  }

}

.header .search-form {
  width: 100%;
}

.header .search-form input {
  border: 0;
  font-size: 14px;
  color: #012970;
  border: 1px solid rgba(1, 41, 112, 0.2);
  padding: 7px 38px 7px 8px;
  border-radius: 3px;
  transition: 0.3s;
  width: 100%;
}

.header .search-form input:focus,
.header .search-form input:hover {
  outline: none;
  box-shadow: 0 0 10px 0 rgba(1, 41, 112, 0.15);
  border: 1px solid rgba(1, 41, 112, 0.3);
}

.header .search-form button {
  border: 0;
  padding: 0;
  margin-left: -30px;
  background: none;
}

.header .search-form button i {
  color: #012970;
}

/*--------------------------------------------------------------
# Header Nav
--------------------------------------------------------------*/
.header-nav ul {
  list-style: none;
}

.header-nav>ul {
  margin: 0;
  padding: 0;
}

.header-nav .nav-icon {
  font-size: 20px;
  color: #012970;
}

.header-nav .nav-profile {
  color: #2ef1ed;
  font-size: 20px;
  cursor: pointer;
}

.header-nav .nav-profile img {
  max-height: 36px;
}

.header-nav .nav-profile span {
  font-size: 14px;
  font-weight: 600;
}

.header-nav .badge-number {
  position: absolute;
  inset: 4px 6px auto auto;
  font-weight: normal;
  font-size: 11px;
  padding: 3px 6px;
  background: #2b3e7e;
}

.header-nav .notifications .notification-item {
  display: flex;
  align-items: center;
  padding: 15px 10px;
  transition: 0.3s;
}

.header-nav .notifications .notification-item i {
  margin: 0 20px 0 10px;
  font-size: 24px;
}

.header-nav .notifications .notification-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.header-nav .notifications .notification-item p {
  font-size: 13px;
  margin-bottom: 3px;
  color: #919191;
}

.header-nav .notifications .notification-item:hover {
  background-color: #f6f9ff;
}

.header-nav .messages .message-item {
  padding: 15px 10px;
  transition: 0.3s;
}

.header-nav .messages .message-item a {
  display: flex;
}

.header-nav .messages .message-item img {
  margin: 0 20px 0 10px;
  max-height: 40px;
}

.header-nav .messages .message-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #444444;
}

.header-nav .messages .message-item p {
  font-size: 13px;
  margin-bottom: 3px;
  color: #919191;
}

.header-nav .messages .message-item:hover {
  background-color: #f6f9ff;
}

.header-nav .profile {
  min-width: 240px;
  padding-bottom: 0;
}

.header-nav .profile .dropdown-header h6 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 600;
  color: #000;
}

.header-nav .profile .dropdown-header span {
  font-size: 14px;
  color: #000;
  padding-left: 10px;
}

.header-nav .profile .dropdown-item {
  font-size: 14px;
  padding: 10px 15px;
  transition: 0.3s;
}

.header-nav .profile .dropdown-item i {
  margin-right: 10px;
  font-size: 18px;
  line-height: 0;
}

.header-nav .profile .dropdown-item:hover {
  background-color: #f6f9ff;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar {
  position: fixed;
  top: 74px;
  left: 0;
  bottom: 0;
  width: 300px;
  z-index: 996;
  transition: all 0.3s;
  padding: 20px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #aab7cf transparent;
  box-shadow: 0px 0px 20px rgba(1, 41, 112, 0.1);
  background-color: #061c4b;
  border-right: 1px solid rgba(255, 255, 255, .4);
  /* background: #19306a; */
}

@media (max-width:1199px) {
  .sidebar {
    left: -300px;
  }

}

.sidebar::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: #fff;
}

.sidebar::-webkit-scrollbar-thumb {
  background-color: #aab7cf;
}

@media (min-width:1200px) {

  #main,
  #footer {
    margin-left: 300px;
  }

}

@media (max-width:1199px) {
  .toggle-sidebar .sidebar {
    left: 0;
  }

}

@media (min-width:1200px) {

  .toggle-sidebar #main,
  .toggle-sidebar #footer {
    margin-left: 0;
  }

  .toggle-sidebar .sidebar {
    left: -300px;
  }

}

.sidebar-nav {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav li {
  padding: 0;
  margin: 0px;
  list-style: none;
}

.sidebar-nav .nav-item {
  margin-bottom: 5px;
}

.sidebar-nav .nav-heading {
  font-size: 11px;
  text-transform: uppercase;
  color: #899bbd;
  font-weight: 600;
  margin: 10px 0 5px 15px;
}

.sidebar-nav .nav-link {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: #08276b !important;
  transition: 0.3;
  background: #fff;
  padding: 10px 15px;
  border-radius: 4px;
}

.sidebar-nav .nav-link i {
  font-size: 17px;
  margin-right: 10px;
  color: #08276b;
}

.sidebar-nav .nav-link.collapsed {
  color: #012970;
  background: #ffffff;
}

.sidebar-nav .nav-link {
  color: #ecedee;
}

.sidebar-nav .nav-link.collapsed i {
  color: #012970;
}

.sidebar-nav .nav-link:hover {
  color: #2e2f2f !important;
  background: #f6f9ff;
}

.sidebar-nav .nav-link:hover i {
  color: #2e2f2f;
}

.sidebar-nav .nav-link .bi-chevron-down {
  margin-right: 0;
  transition: transform 0.2s ease-in-out;
}

.sidebar-nav .nav-link:not(.collapsed) .bi-chevron-down {
  transform: rotate(180deg);
}

.sidebar-nav .nav-content {
  padding: 5px 0 0 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav .nav-content a {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #012970;
  transition: 0.3;
  padding: 10px 0 10px 40px;
  transition: 0.3s;
}

.sidebar-nav .nav-content a i {
  font-size: 6px;
  margin-right: 8px;
  line-height: 0;
  border-radius: 50%;
}

.sidebar-nav .nav-content a:hover,
.sidebar-nav .nav-content a.active {
  color: #4154f1;
}

.sidebar-nav .nav-content a.active i {
  background-color: #4154f1;
}

/*--------------------------------------------------------------
# Dashboard
--------------------------------------------------------------*/

/* Filter dropdown */
.dashboard .filter {
  position: absolute;
  right: 0px;
  top: 15px;
}

.dashboard .filter .icon {
  color: #aab7cf;
  padding-right: 20px;
  padding-bottom: 5px;
  transition: 0.3s;
  font-size: 16px;
}

.dashboard .filter .icon:hover,
.dashboard .filter .icon:focus {
  color: #4154f1;
}

.dashboard .filter .dropdown-header {
  padding: 8px 15px;
}

.dashboard .filter .dropdown-header h6 {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #aab7cf;
  margin-bottom: 0;
  padding: 0;
}

.dashboard .filter .dropdown-item {
  padding: 8px 15px;
}

/* Info Cards */
.dashboard .info-card {
  padding-bottom: 0px;
  height: 100%;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
  background: #fff;
}

.dashboard .info-card h6 {
  font-size: 28px;
  color: #012970;
  font-weight: 700;
  margin: 0;
  padding: 0;
}

.dashboard .card-icon {
  font-size: 25px;
  line-height: 0;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  flex-grow: 0;
}

.dashboard .sales-card .card-icon {
  color: #4154f1;
  background: #f6f6fe;
}

.dashboard .revenue-card .card-icon {
  color: #2eca6a;
  background: #e0f8e9;
}

.dashboard .customers-card .card-icon {
  color: #ffb01d;
  background: #ffecdf;
}

.dashboard .wallet-card .card-icon {
  color: #e74949be;
  background: #eee1df;
}

.card-pointer {
  cursor: pointer;
}

/* Activity */
.dashboard .activity {
  font-size: 14px;
}

.dashboard .activity .activity-item .activite-label {
  color: #888;
  position: relative;
  flex-shrink: 0;
  flex-grow: 0;
  min-width: 64px;
}

.dashboard .activity .activity-item .activite-label::before {
  content: "";
  position: absolute;
  right: -11px;
  width: 4px;
  top: 0;
  bottom: 0;
  background-color: #eceefe;
}

.dashboard .activity .activity-item .activity-badge {
  margin-top: 3px;
  z-index: 1;
  font-size: 11px;
  line-height: 0;
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid #fff;
  flex-grow: 0;
}

.dashboard .activity .activity-item .activity-content {
  padding-left: 10px;
  padding-bottom: 20px;
}

.dashboard .activity .activity-item:first-child .activite-label::before {
  top: 5px;
}

.dashboard .activity .activity-item:last-child .activity-content {
  padding-bottom: 0;
}

/* News & Updates */
.dashboard .news .post-item+.post-item {
  margin-top: 15px;
}

.dashboard .news img {
  width: 80px;
  float: left;
  border-radius: 5px;
}

.dashboard .news h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
  margin-bottom: 5px;
}

.dashboard .news h4 a {
  color: #012970;
  transition: 0.3s;
}

.dashboard .news h4 a:hover {
  color: #4154f1;
}

.dashboard .news p {
  font-size: 14px;
  color: #777777;
  margin-left: 95px;
}

/* Recent Sales */
.dashboard .recent-sales {
  font-size: 14px;
}

.dashboard .recent-sales .table thead {
  background: #f6f6fe;
}

.dashboard .recent-sales .table thead th {
  border: 0;
}

.dashboard .recent-sales .dataTable-top {
  padding: 0 0 10px 0;
}

.dashboard .recent-sales .dataTable-bottom {
  padding: 10px 0 0 0;
}

/* Top Selling */
.dashboard .top-selling {
  font-size: 14px;
}

.dashboard .top-selling .table thead {
  background: #f6f6fe;
}

.dashboard .top-selling .table thead th {
  border: 0;
}

.dashboard .top-selling .table tbody td {
  vertical-align: middle;
}

.dashboard .top-selling img {
  border-radius: 5px;
  max-width: 60px;
}

/*--------------------------------------------------------------
# Icons list page
--------------------------------------------------------------*/
.iconslist {
  display: grid;
  max-width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  padding-top: 15px;
}

.iconslist .icon {
  background-color: #fff;
  border-radius: 0.25rem;
  text-align: center;
  color: #012970;
  padding: 15px 0;
}

.iconslist i {
  margin: 0.25rem;
  font-size: 2.5rem;
}

.iconslist .label {
  font-family: var(--bs-font-monospace);
  display: inline-block;
  width: 100%;
  overflow: hidden;
  padding: 0.25rem;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #666;
}

/*--------------------------------------------------------------
# Profie Page
--------------------------------------------------------------*/
.profile .profile-card img {
  max-width: 120px;
}

.profile .profile-card h2 {
  font-size: 24px;
  font-weight: 700;
  color: #2c384e;
  margin: 10px 0 0 0;
}

.profile .profile-card h3 {
  font-size: 18px;
}

.profile .profile-card .social-links a {
  font-size: 20px;
  display: inline-block;
  color: rgba(1, 41, 112, 0.5);
  line-height: 0;
  margin-right: 10px;
  transition: 0.3s;
}

.profile .profile-card .social-links a:hover {
  color: #012970;
}

.profile .profile-overview .row {
  margin-bottom: 20px;
  font-size: 15px;
}

.profile .profile-overview .card-title {
  color: #012970;
}

.profile .profile-overview .label {
  font-weight: 600;
  color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit label {
  font-weight: 600;
  color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit img {
  max-width: 120px;
}

/*--------------------------------------------------------------
# F.A.Q Page
--------------------------------------------------------------*/
.faq .basic h6 {
  font-size: 18px;
  font-weight: 600;
  color: #4154f1;
}

.faq .basic p {
  color: #6980aa;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  padding: 28px 30px;
}

.contact .info-box i {
  font-size: 38px;
  line-height: 0;
  color: #4154f1;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #012970;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 0;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #4154f1;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #4154f1;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #5969f3;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }

}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }

}

/*--------------------------------------------------------------
# Error 404
--------------------------------------------------------------*/
.error-404 {
  padding: 30px;
}

.error-404 h1 {
  font-size: 180px;
  font-weight: 700;
  color: #4154f1;
  margin-bottom: 0;
  line-height: 150px;
}

.error-404 h2 {
  font-size: 24px;
  font-weight: 700;
  color: #012970;
  margin-bottom: 30px;
}

.error-404 .btn {
  background: #51678f;
  color: #fff;
  padding: 8px 30px;
}

.error-404 .btn:hover {
  background: #3e4f6f;
}

@media (min-width:992px) {
  .error-404 img {
    max-width: 50%;
  }

}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  padding: 20px 0;
  font-size: 14px;
  transition: all 0.3s;
  border-top: 1px solid rgba(255, 255, 255, .4);
  background: rgb(6 28 75);
}

.footer .copyright {
  text-align: center;
  color: #fff;
}

.footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;
  color: #012970;
}

/* login css */
/* .login-page {
background-color: transparent;
background-image: url("../img/triangles.webp");
background-size: cover;
} */
.form img {
  width: 30%;
}

.avatar {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

.avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.login-page .form {
  position: relative;
  z-index: 1;
  max-width: 360px;
  margin: 0 auto 100px;
  padding: 45px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
}

.login-page .form input[type="text"],
.form input[type="password"] {
  font-family: 'Roboto', sans-serif;
  outline: none;
  width: 100%;
  border: 0;
  margin: 0 0 15px;
  padding: 15px;
  box-sizing: border-box;
  font-size: 14px;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.7);
}

button.hanglogin1 {
  font-family: 'Roboto', sans-serif;
  text-transform: capitalize;
  outline: none;
  background-color: #3a719a;
  width: 100%;
  border: 0;
  padding: 15px;
  color: #FFFFFF;
  font-size: 14px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: 20px;
}

button.hanglogin1:hover,
.form button:active,
.form button:focus {
  background-color: #193c5f;
}

.login-page .form h2 {
  color: #333333;
  font-size: 28px;
  margin: 0 0 30px;
}

.login-page .form p.message {
  color: #666666;
  font-size: 14px;
  margin-top: 15px;
}

.login-page .form p.message a {
  color: #2196F3;
  text-decoration: none;
  cursor: pointer;
}

.login-page .form p.message a:hover {
  text-decoration: underline;
}

.img-radius {
  width: 250px;
  height: 250px;
  align-items: center;
  object-fit: cover;
  border-radius: 100%;
  cursor: pointer;
  border: solid 2px #061c4b;
}

.card-block h6 {
  color: #2b3e7e;
}

.f-w-600 {
  font-weight: 600;
}

.card-block p {
  color: #000;
  font-weight: 600;
}

.test-icon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 22px;
  color: #000;
  cursor: pointer;
}

.card-block {
  padding: 1.25rem;
}

.fa.fa-pencil-square-o {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.test-icon a {
  color: #000;
}

.p-b-5 {
  padding-bottom: 5px !important;
}

.m-b-20 {
  margin-bottom: 20px;
}

.f-w-600 {
  font-weight: 600;
}

.b-b-default {
  border-bottom: 1px solid #e0e0e0;
}

.row.email-content-heading p {
  font-size: 14px;
}

.card .card-block p {
  line-height: 25px;
}

.card .card-block p {
  line-height: 2px;
}

.card-block p {
  color: #061c4b !important;
  font-weight: 600;
  font-size: 15px;
}

.m-b-10 {
  margin-bottom: 10px;
}

.row.email-content-heading h6 {
  font-size: 15px;
}

.card-block h6 {
  color: #fff;
}

.m-t-40 {
  margin-top: 20px;
}

.p-b-5 {
  padding-bottom: 5px !important;
}

.user-card-full .user-profile {
  border-radius: 5px 0 0 5px;
  background-color: rgb(82 82 82 / 44%);
}

.card.user-card-full {

  /* box-shadow: 0 1px 3px rgb(0 0 0 / 12%), 0 1px 2px rgb(0 0 0 / 24%); */

  /* transition: all 0.3s cubic-bezier(.25,.8,.25,1); */
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
  margin: 0px 0 0;
  background: #fff;

}

/* .card {
position: relative;
display: flex;
flex-direction: column;
min-width: 0;
word-wrap: break-word;
background-color: #fff;
background-clip: border-box;
border: 1px solid rgba(0,0,0,.125);
border-radius: .25rem;
} */
.bnb-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bnb-btn button {
  background: #183662;
  color: #fff;
  padding: 7px 15px;
  border-radius: 5px;
  border: none;
}

.verifier-buttton {
  display: flex;
  justify-content: end;
  align-items: center;
  margin-bottom: 19px;
}

.verifier-buttton button {
  background: #19306a;
  padding: 6px 15px;
  color: #fff;
  border-radius: 5px;
  border: none;
  font-size: 14px;
}

.verifier-buttton button:focus {
  box-shadow: none;
}

.verifier-buttton button:hover {
  background: #0ea4a1;
}

.nav-left-sidebar .navbar-nav .nav-link {
  color: #82849f;
}

.nav-left-sidebar .navbar-nav .nav-link {
  font-size: 14px;
  padding: 12px;
  color: #71748d;
  transition: .3s;
}

.nav-left-sidebar .nav-link[data-toggle=collapse] {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-left-sidebar .submenu {
  padding-left: 12px;
  padding-right: 12px;
  background: 0 0;
}

.collapse:not(.show) {
  display: none;
}

.page-header {
  margin-bottom: 30px;
}

.pageheader-title {
  font-size: 24px;
  margin-bottom: 8px;
}

.flex-column {
  flex-direction: column !important;
  margin-top: 5px;
}

.dropdown-toggle::after {
  display: inline-block;
  /* margin-left: 3.255em; */
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
  margin-left: 10px;
}

td.btn-view {
  display: flex;
  justify-content: space-around;
}

.asset-uploader {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.m-b-25 {
  margin-bottom: 25px;
}

.box_content.asset-uploader button {
  background: #0ea4a1;
  color: #fff;
  padding: 6px 13px;
  margin-top: 17px;
  border-radius: 5px;
  border: none;
}

.img,
svg {
  vertical-align: middle;
}

.img {
  vertical-align: middle;
  border-style: none;
}

.userImage {
  vertical-align: middle;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

td.btn-view a i {
  color: #000;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.table-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #000;
}

ul.pagination {
  margin-bottom: 0;
}

button.btn.btn-outline-primary.reset-password-button {
  height: 51px;
  border: 0px solid #fff;
  background-color: #ffffffa3;
  border-radius: 0px 20px 20px 0px;
  left: 15px;
}

.login-page .input-group {
  position: relative;
  display: flex;
  flex-wrap: inherit;
  /* align-items: stretch; */
  width: 100%;
}

.login-page .form-control:focus {
  box-shadow: none;
}

/* .table-buttons {
display: flex;
justify-content: space-evenly;
} */
.delete-create {
  display: flex;
  justify-content: space-around;
}

.search-container {
  position: relative;
}

.search-icon,
.clear-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  cursor: pointer;
}

.search-icon {
  right: 30px;
}

.clear-icon {
  right: 10px;
  display: none;
}

.pagination .page-item.active .page-link {
  background-color: #007bff !important;
  border-color: #007bff !important;
  color: #fff;
}


.tbing-transaction {
  width: 100%;
}

.tbing-transaction h6 {
  color: white;
}

.tbing-transaction table {
  width: 100%;
}

.tbing-transaction table tr th {
  border: solid 1px #074f52;
  width: 33%;
  padding: 8px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}

.tbing-transaction table tr td {
  border: solid 1px #074f52;
  width: 33%;
  padding: 8px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
}

.tbing-transaction table tr td:nth-child(1) {
  color: #12b6b3;
  font-weight: 600;
}

.tbing-transaction table tr td:nth-child(2) {
  text-align: center;
}

.tbing-transaction table tr td:nth-child(3) {
  text-align: end;
}

.tbing-transaction table tr th:nth-child(2) {
  text-align: center;
  color: #09aeab;
}

.tbing-transaction table tr th:nth-child(3) {
  text-align: end;
  color: #09aeab;
}

.tbing-transaction h6 {
  text-align: center;
}

li.active {
  font-size: 16px;
  font-weight: 800;
  padding: 0 5px;
  color: #fd792d;
}

ul.pagination li {
  padding: 0 3px;
}

.password-icon {
  position: relative;
}

.input-group-btn {
  right: 4px;
  position: absolute;
  top: 3px;
}

.input-group-btn button:focus {
  box-shadow: none !important;
  outline: none !important;
}

.login-input-group-btn button {
  border: none;
}

.login-input-group-btn {
  right: 15px;
  position: absolute;
  top: 6px;
}

.error-body {
  font-family: Arial, sans-serif;
  background-color: #f1f1f1;
  text-align: center;
}

.error-body h1 {
  color: #333;
}

.error-body p {
  color: #666;
  margin-bottom: 20px;
}

.error-body a {
  color: #333;
  text-decoration: none;
}

.custom-button-colour {

  /* background-color: #012970 !important; */
  color: #12B6B3 !important;
  border: none;
}

.custom-button-colour:focus {
  background: none;
  border: none;
  box-shadow: none;
}

.fee-button {
  color: #fff !important;
  background-color: #19306a;
  border: none;
}

.fee-button:hover {
  color: #fff !important;
  background-color: #304a8c;
  border: none;
}

.verifier-buttton button:hover {
  background: #304a8c;
}

.verifier-buttton button:active {
  background: #304a8c;
}

.verifier-buttton button:focus {
  background: #304a8c;
}

a {
  color: #2a2a2a !important;
  text-decoration: none;
}

.remember-me {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.remember-me input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid #3a719a;
  border-radius: 3px;
  margin-right: 8px;
  position: relative;
  top: 2px;
  outline: none;
  cursor: pointer;
}

.remember-me input[type="checkbox"]:checked {
  position: relative;
  /* background-color: #2196f3; */
  background-color: rgba(255, 255, 255, 0.7);
  border-color: #3a719a;
}

.remember-me input[type="checkbox"]:checked:after {
  content: "";
  position: absolute;
  /* top: 50%;
    left: 50%; */
  transform: translate(-50%, -50%);
  width: 6px;
  height: 10px;
  border: solid #3a719a;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-left: 3px;
}

.remember-me label {
  font-size: 14px;
  color: #555;
  cursor: pointer;
}

.sidebar-nav .nav-link.active {
  background-color: #19306a;
  color: #fff !important;
}

.sidebar-nav .nav-link.collapsed i.active {
  color: #fff;
}

.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),
.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {

  /* border-top-right-radius: 20px;
      border-bottom-right-radius: 20px; */

  border-radius: 20px;
}

.change-pass input {
  border-radius: 5px !important;
  height: 39px;
}

button.btn.btn-primary.custom-button-colour {
  background-color: #19306a;
  color: #fff !important;
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: transparent;
  border-color: #0d6efd;
}

button.hanglogin1:hover,
.form button:active,
.form button:focus {
  background-color: #193c5f;
  color: #fff !important;
}

/* .input-group .btn i:focus {
color: #012970;
} */
.input-group>.form-control:focus,
.input-group>.form-select:focus {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
  z-index: auto;
}

button.btn.btn-outline-primary.reset-password-button.custom-button-colour.pass-icon:focus {
  color: #012970 !important;
  box-shadow: none;
}

.table-bordered tr td {

  text-align: center;
  vertical-align: baseline;
  font-size: 14px;
}

.table-bordered th {

  text-align: center;
  vertical-align: baseline;
  font-size: 14px;
  font-weight: 500;
}

.table-bordered td {
  /* border: solid 1px #687476 !important; */
}

.table-striped>tbody>tr:nth-of-type(odd)>* {

  text-align: center;
  vertical-align: baseline;
}

.toggle-custom {
  background-color: rgb(70 72 73) !important;
}

thead,
tr th {
  /* border: solid 1px rgba(255, 255, 255, .4) !important; */
}

.table>:not(:first-child) {
  border-top: inherit;
}

.table {
  /* border-color: rgba(255, 255, 255, .4); */
  /* background: rgba(0, 0, 0, .6); */
}

.user-information {
  display: flex;
  justify-content: space-between;
  border-bottom: solid 1px rgb(6 28 75 / 56%);
  padding: 15px;
  align-items: center;
  font-size: 21px;
  color: #020e26;
}

/* Login */
.login-page {
  background: url(../img/Bg.png) no-repeat;
  position: relative;
  background-size: cover;
  width: 100%;
  /* / height: auto; / */
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-attachment: fixed;
  padding: 0px;
  background-position: center center;
  background-blend-mode: multiply;
}

.login-page:after {

  /* background: rgb(0 0 0 / 56%); */
  height: 100%;
  width: 100%;
  position: absolute;
  content: "";
  top: 0px;
  left: 0px;
  pointer-events: none;
}

.register {
  position: relative;
  z-index: 1;
  padding: 0px;
}

.needs-validation .form-label {
  margin-bottom: 8px;
  color: #000;
  font-size: 13px;
}

.remMe {
  display: flex;
  align-items: center;
  justify-content: start;
}

.remMe .form-check {
  padding: 4px 0px 0px 11px;
  color: #fff;
  font-size: 13px;
  display: flex;
  align-items: center;
}

.form-check label {
  font-size: 14px;
  margin-left: 8px;
  padding-top: 4px;
  color: #19306a;
  font-weight: 600;
}

.remMe .form-check-input {
  width: 18px;
  height: 18px;

}

.remMe .form-check-input:checked {
  background-color: #19306a;
}

.fwp input {
  margin-right: 12px;
}

.fwp {
  font-size: 13px;
  text-decoration: underline;
  color: #fff;
  font-weight: 500;
  padding-top: 10px;
  display: flex;
  align-items: center;
}

.create-account p {
  font-size: 13px;
  color: #fff;
}

.login button {
  background: #19306a;
  border-color: #19306a;
  font-size: 15px;
  transition: 0.3s all ease-in;
  margin-bottom: 11px;
  margin-top: 4px;
  color: #fff;
}

#header .header-nav button {
  background: #19306a !important;
}

.login button:focus {
  background: #004be2;
  box-shadow: 0 0px 30px rgba(5, 214, 217, 20%);
}

.login button:hover {
  background: #004be2;
  border-color: #004be2;
  color: #fff;
}

.account-login .input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  background-color: #19306a;
  border: none;
  border-radius: 5px 0px 0px 5px;
}

.ac-new {
  color: #fff;
  font-weight: 500;
  text-decoration: underline;
}

.drty i {
  color: #19306a;
  font-size: 21px;
}

.register .card {
  position: relative;
  background: none;
}

.register .card:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000;
  left: 0;
  top: 0;
  border-radius: 10px;
  opacity: 0.5;
  border: solid 1px #757575;
  border-radius: 10px;
}

.register .card-body {
  position: relative;
  z-index: 1;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 10px;
  background: #fff;
}

.register .card-body h5 {
  color: #000;
  font-size: 21px;
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.register .input-group .btn {
  position: relative;
  z-index: 2;
  background: #19306a;
  border: none;
  color: #fff;
}

.register .card-body p {
  color: #000;
}

.alert-danger {
  color: #842029;
  background-color: #f8d7da;
  border-color: #f5c2c7;
  font-size: 12px;
  margin-top: 10px;
  /* padding: 0px 30px; */
  margin: 15px 16px;
}

::placeholder {
  font-size: 14px;
}

button:focus {
  /* background: #0ea4a1; */
}

.register .card .input-group input {
  font-size: 14px;
  height: 38px;
}

.register .remMe .form-check-input:checked {
  border-color: #19306a;
}

.header-logo img {
  width: 100%;
  max-width: 185px;
  margin-right: 66px;
}

.text-muted {
  --bs-text-opacity: 1;
  color: #000;

  font-size: 13px;
}

.user-name-heading {
  color: #fff !important;
  margin-bottom: 20px;
}

.user-name-pargraph {
  color: #ada1a1 !important;
  margin-bottom: 20px;
  text-align: center;
}

.modal-main-header {
  color: #000;
}

.popup-change-password .input-group-btn {
  position: relative;
}

.popup-change-password .input-group .btn {
  position: absolute;
  z-index: 2;
  right: -18px;
  top: -1px;
  background: #0ea4a1;
  color: #fff !important;
  height: 40px;
  border-radius: 0px 5px 5px 0px;
}

.modal-content {
  /* background-color: #3a3f42 !important; */
  border: 1px solid rgba(255, 255, 255, .4);
}

.modal .modal-dialog {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  height: 100%;
}

.modal-title.h4 {
  font-size: 18px;
}

.modal-header .btn-close {
  /* background: url(../img/close-white.svg) no-repeat; */
  opacity: 1;
  width: 20px;
  height: 20px;
  background-size: 15px;
  padding: 0;
  margin-right: -1px;
}

.modal-header {
  padding: .9rem 1rem;
  /* border-bottom: 1px solid rgba(255, 255, 255, .4); */
}

.pagetitle {
  margin-left: -10px;
}

.btn-sbm {
  display: flex;
  justify-content: center;
  margin-top: 45px;
}

.icon-menu {
  padding: 0px 4px 0px;
  font-size: 15px !important;
  display: flex;
  align-items: center;
  border: solid 1px #fff;
  padding: 3px 5px;
  border-radius: 5px;
  justify-content: center;
}

.icon-menu a i {
  font-size: 18px;
}

.header-nav .dropdown-menu {
  /* background: rgb(82 82 82 / 66%); */
}

.bg-c-lite-green.user-profile {
  background-color: #fff;
  flex-direction: column;
  display: block;
  height: 100%;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.f-name {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.usr-tyu {
  text-align: center;
  padding: 20px;
}

.pd-ty {
  padding: 0px 15px;
}

.ter {
  height: 100%;
  padding: 15px;
}

.brdr-c {
  border: 1px solid rgba(0, 0, 0, .4);
}

.search-container input.form-control {
  -webkit-text-fill-color: #212529 !important;
  -moz-text-fill-color: #212529 !important;
  -ox-text-fill-color: #212529 !important;
  box-shadow: none;
  outline: none;
}

.Toastify__close-button--light:focus {
  background: none;
}

.frmctrl-c {
  background-color: #373737;
}

.white-text {
  color: white;
}

.for .btn-sbm {
  margin-top: 12px;
}

.profile-icon-ty {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.icon-menu a {
  font-size: 15px;
}

.avlblance {
  color: #c71c6e;
}

/* loader css */

/* #loader-wrapper {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 9999;
background: rgba(0, 0, 0, 0.5)
}

#loader {
display: block;
position: relative;
left: 50%;
top: 50%;
width: 150px;
height: 150px;
margin: -75px 0 0 -75px;
border-radius: 50%;
border: 3px solid transparent;
border-top-color: #000;
-webkit-animation: spin 2s linear infinite;
animation: spin 2s linear infinite
}
#loader {
z-index: 1001
}

#loader:before {
content: "";
position: absolute;
top: 5px;
left: 5px;
right: 5px;
bottom: 5px;
border-radius: 50%;
border: 3px solid transparent;
border-top-color: #b12026;
-webkit-animation: spin 3s linear infinite;
animation: spin 3s linear infinite
}
#loader:after {
content: "";
position: absolute;
top: 15px;
left: 15px;
right: 15px;
bottom: 15px;
border-radius: 50%;
border: 3px solid transparent;
border-top-color: #ffffff;
-webkit-animation: spin 1.5s linear infinite;
animation: spin 1.5s linear infinite
}
@-webkit-keyframes spin {
0% {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg)
}
100% {
  -webkit-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg)
}
}
@keyframes spin {
0% {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg)
}
100% {
  -webkit-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg)
}
}
#loader-wrapper .loader-section {
position: fixed;
top: 0;
width: 51%;
height: 100%;
background: #222222;
z-index: 1000
}
#loader-wrapper .loader-section.section-left {
left: 0
}
#loader-wrapper .loader-section.section-right {
right: 0
}
.loaded #loader-wrapper .loader-section.section-left {
-webkit-transform: translateX(-100%);
-ms-transform: translateX(-100%);
transform: translateX(-100%)
}
.loaded #loader-wrapper .loader-section.section-right {
-webkit-transform: translateX(100%);
-ms-transform: translateX(100%);
transform: translateX(100%)
}
.loaded {
visibility: hidden
} */


.error {
  color: red;
  font-size: 12px;
}

.success {
  color: rgb(41, 180, 64);
  font-size: 12px;
}

.gdftytyt button {
  width: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  cursor: not-allowed !important;
}

.gdftytyt button:hover {
  color: #fff;
  background-color: #bb2d3b;
  border-color: #bb2d3b;
  opacity: 0.4;
}

.gdfty button {
  width: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  cursor: pointer;
}

.not-found {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  background: #001420;
  border-radius: 5px;
  text-align: center;
  padding: 30px 5px;
  box-shadow: 0 0px 30px rgba(5, 214, 217, 20%);
  margin-top: 10px;
  cursor: pointer;
  transition: 0.3s all ease-in;
}

.error-page {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0 auto;
  text-align: center;
}

.not-found button {
  background: none;
  border-radius: 100px;
  padding: 10px 21px;
  color: #fff;
  font-size: 13px;
  margin-top: 20px;
  border: solid 1px #12b6b3;
}

.not-found button:hover {
  background: #12b6b3;
  transition: 0.2s all ease-in;
}

.not-found p {
  padding-top: 23px;
  line-height: 0px;
  color: #10a19e;
  font-size: 14px;
  margin-bottom: 0px;
}

.addres-w i {
  padding-left: 6px;
  cursor: pointer;
}

.usr-tyu img {
  cursor: inherit;
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 100%;
}

.withdraw {
  background: rgb(0 10 16);
  box-shadow: 0 0px 30px rgba(5, 214, 217, 20%);
  border: solid 1px rgba(18, 182, 179, 0.4);
  border-radius: 5px;
  white-space: nowrap;
}

.withdraw table tr td {
  border-collapse: collapse;
  border: solid 1px #074f52;
  padding: 8px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  width: 33%;
}

.withdraw table tr th {
  font-size: 14px;
}

/* .withdraw .table-container {
  max-height: 500px; 
  overflow-y: auto;
} */

button.wallet-balance {
  background: none;
  border: solid 1px #19306a;
  border-radius: 45px;
  font-size: 14px;
  color: #fff;
  padding: 8px 25px;
}

button.wallet-balance:hover {
  background: #19306a;
  transition: 0.2s all ease-in;
}

.withdraw .modal-title.h4 {
  font-size: 15px;
}

.withdraw .modal-header {
  padding: 10px;
  border-bottom: solid 1px #19306a;
}

.adrs {
  display: flex !important;
  align-items: center;
}

.adrs i {
  padding-left: 10px;
  cursor: pointer;
}

.withdraw table tr th {
  width: 36%;
}

.withdraw table tr th {
  border-collapse: collapse;
  border: solid 1px #074f52;
  width: 100%;
  padding: 8px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
}

.modal-content {
  border: none;
}

.hgty {
  cursor: inherit;
}

.user-full-details {
  background: #001420b3;
  box-shadow: 0 0px 30px rgba(5, 214, 217, 20%);
  margin: 42px 0px;
  padding: 25px 25px 50px;
  border: solid 1px rgba(18, 182, 179, 0.4);
  border-radius: 5px;
}

.total-earinig .usdt-income {
  display: flex;
  justify-content: center;
  align-items: center;
}

.total-earinig .trtfy h2 {
  font-size: 35px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 27px;
  text-align: center;
}

.total-earinig .usdt-income h2 span {
  color: #12B6B3;
}

.usdt-income button.wallet-balance {
  background: none;
  border: solid 1px #09aeab;
  border-radius: 45px;
  font-size: 14px;
  color: #fff;
  padding: 7px 24px;
  transition: 0.3s ease-in all;
}

.usdt-income button.wallet-balance:hover {
  background: #09aeab;
  color: #fff;
  transition: 0.3s ease-in all;
}

.trtfy h2 {
  font-size: 23px;
}

.trtfy h2 span {
  font-size: 23px;
  color: #19306a;
}

.btn-widtha {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-widtha button {
  margin: 0px 10px;
  font-size: 14px;
  background: #e7ecf5;
}

.withdraw .modal-body input:focus {
  outline: none;
}

.withdraw .modal-body input {
  width: 100%;
  padding: 7px 10px;
  border-radius: 5px;
  border: none;
  margin-bottom: 10px;
  background: #000;
  color: #fff;
  border: solid 1px #09aeab;
  font-size: 13px;
  height: 43px;
}

.searchformfld textarea {
  resize: inherit;
  height: 150px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.modal-fix {
  height: 300px;
  overflow: auto;
}

.user-card-full {
  border-radius: 0px !important;
  height: 100%;
}

.not-found h1 {
  font-size: 29px;
}

@media(max-width:767px) {
  .not-found p {
    font-size: 13px;
    padding-top: 7px;
    line-height: 20px;
  }

  .not-found h1 {
    font-size: 21px;
  }

}

.dropdown-header .nav-link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

/* .tbing-transaction {
  background: #001420b3;
  box-shadow: 0 0px 30px rgba(5, 214, 217, 20%);
  margin: 42px 0px;
  padding: 25px 25px 50px;
  border: solid 1px rgba(18, 182, 179, 0.4);
  border-radius: 5px;
} */

.tbing-transaction button#home-tab {
  background: none;
  border: solid 1px #19306a;
  border-radius: 45px;
  font-size: 14px;
  color: #fff;
  padding: 8px 25px;
  transition: 0.2s all ease-in;
  column-gap: 10px;
}

.tbing-transaction button#home-tab:hover {
  background: #19306a;
  transition: 0.2s all ease-in;
}

.tbing-transaction button#profile-tab {
  background: none;
  border: solid 1px #19306a;
  border-radius: 45px;
  font-size: 14px;
  color: #fff;
  padding: 8px 25px;
  transition: 0.2s all ease-in;
}

.tbing-transaction button#profile-tab:hover {
  background: #19306a;
  transition: 0.2s all ease-in;
}

.tbing-transaction .nav-tabs {
  border-bottom: none;
  margin-bottom: 20px;
}

.tbing-transaction .first-trs {
  background: rgb(0 10 16);
  box-shadow: 0 0px 30px rgba(5, 214, 217, 20%);
  border: solid 1px rgba(18, 182, 179, 0.4);
  border-radius: 5px;
  padding: 15px;
}

.tbing-transaction .first-trs table {
  width: 100%;
}

.tbing-transaction .first-trs table tr th {
  border-collapse: collapse;
  border: solid 1px #074f52;
  width: 33%;
  padding: 8px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
}

.tbing-transaction .first-trs table tr td {
  border-collapse: collapse;
  border: solid 1px #074f52;
  width: 33%;
  padding: 8px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
}

.tbing-transaction ul li button {
  margin: 0px 10px 0px 0px;
}

.tran-history span {
  color: #fff;
  margin-bottom: 10px;
  display: block;
}

.tbing-transaction button#home-tab.active {
  background: #19306a;
  transition: 0.2s all ease-in;
}

.tbing-transaction-ad {
  width: 100%;
  margin-bottom: 25px;
}

.tbing-transaction-ad table {
  width: 100%;
  margin-top: 15px;
}

.tbing-transaction-ad table tr th {
  border: solid 1px #074f52 !important;
  width: 33%;
  padding: 8px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}

.tbing-transaction-ad table tr td {
  border: solid 1px #074f52;
  width: 33%;
  padding: 8px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
}

.tbing-transaction-ad table tr td:nth-child(1) {
  color: #12B6B3;
  font-weight: 600;
}

.tbing-transaction-ad table tr td:nth-child(2) {
  text-align: center;
}

.tbing-transaction-ad table tr td:nth-child(3) {
  text-align: end;
}

.tbing-transaction-ad table tr th:nth-child(2) {
  text-align: center;
  color: #09aeab;
}

.tbing-transaction-ad table tr th:nth-child(3) {
  text-align: end;
  color: #09aeab;
}

.tbing-transaction-ad h6 {
  text-align: start;
  border-bottom: solid 1px rgba(255, 255, 255, .4);
  padding: 15px;
  align-items: start;
  font-size: 21px;
  padding: 15px 0px 15px 15px;
  margin-left: -18px;
  margin-right: -41px;
}

.addres-w h6 {
  word-wrap: break-word;
}

.reportlink {
  text-decoration: underline;
  color: #0e7573;
  justify-content: end;
  display: flex;
}

.network .user-network {
  background: var(--card-bg);
  box-shadow: 0 0px 30px rgba(5, 214, 217, 20%);
  padding: 10px 10px 10px;
  border: solid 1px rgba(18, 182, 179, 0.4);
  border-radius: 5px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: 0.3s ease-in all;
  cursor: pointer;
  position: relative;
}

.network .user-network:hover {
  transition: 0.3s ease-in all;
  transform: scale(1.1);
}

.network .user-network img {
  filter: invert(0);
  margin-bottom: 5px;
  border-radius: 100%;
  width: 25px;
  height: 25px;
  object-fit: cover;
  background-position: center;
}

.user-network h6 {
  word-break: break-all;
  text-align: center;
  margin-bottom: 4px;
  font-size: 12px;
  padding-top: 2px;
}

.network .user-network h6 a {
  color: #ffffff;
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 0px;
  text-decoration: none;
}

.network .user-network h6 i a {
  color: #12b6b3;
  font-size: 18px;
  padding: 0px 0px 0px 8px;
}


.network .container-fluid {
  padding: 0px;
}

.network .accordion-body {
  background: transparent;
  border-radius: 5px;
  box-shadow: none;
  padding: 10px 25px 0px;
}

.network .accordion-item {
  background: transparent;
  border: none;
  box-shadow: none;
}

.network .accordion-item .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  background: var(--border-color);
  border-radius: 3px;
  font-size: 14px;
  color: var(--whit-color);
  font-weight: 300;
  padding: 7px 12px;
  border: none;
}

.network .nav-tabs {
  border-width: 0;
}

.network .nav-tabs .nav-link:focus,
.nav-tabs .nav-link {
  color: #12b6b3;
}

.network .nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  border: none;
  isolation: inherit;
  color: var(--whit-color);
}

.network .nav-tabs .nav-link {
  padding: 10px 20px;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  transition: 0.3s ease-in all;
  margin-bottom: 20px;
  border: 0;
  border-radius: 5px;
}

.network .accordion-collapse {
  background: transparent;
  box-shadow: none;
  border: none;
}

.user-network i {
  padding-left: 4px;
  font-size: 11px;
}

.network .collapse:not(.show) {
  display: block;
}

.network-btn h5 {
  font-size: 19px;
  color: var(--whit-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0px;
  padding: 16px 0px 0px;
}

.network-btn h5 sub {
  bottom: 0px;
}

.network .container-fluid {
  padding: 0px;
}

.sync-btn {
  background: #000;
  padding: 13px 21px 13px;
  border-radius: 10px;
  border: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gfjejerg .progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #19306a;
  transition: width .6s ease;
}

.gfjejerg {
  background: #021f30;
  border-radius: 5px;
  text-align: center;
  padding: 31.5px 0px;
  box-shadow: 0 0px 30px rgba(5, 214, 217, 20%);
  margin-top: 10px;
  transition: 0.3s all ease-in;
  padding: 20px;
  margin-bottom: 23px;
}

.new-action-progress {
  overflow-y: scroll;
  height: 300px;
  padding: 25px;
  margin: 10px;
  border-radius: 10px;
}



.new-action-progress::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.new-action-progress::-webkit-scrollbar-track {
  background-clip: content-box;
  border: 2px solid transparent;

}

.new-action-progress::-webkit-scrollbar-thumb {
  background-color: #0c9794;
  border-radius: 5px;
}

.sync-btn p {
  margin-bottom: 0px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.sync-btn p span {
  color: #09aeab;
}

/* ===============  report section css =============*/

.report-new table,
tr td {
  font-family: Poppins !important;
}

.report-new table,
tr th {
  font-family: Poppins !important;
}

.report-new .accordion-body .MuiTabs-scroller button {
  font-family: Poppins !important;
}

.report-new .accordion-body .MuiTablePagination-spacer p {
  font-family: Poppins !important;
}

.network .css-k7y545-MuiButtonBase-root-MuiTab-root.Mui-selected {
  color: #fff;
  font-family: Poppins !important;
}

.network .css-pqjvzy-MuiSvgIcon-root-MuiSelect-icon {
  color: #09aeab;
  margin-top: -5px;
  margin-right: 2px;
}

.network .css-194a1fa-MuiSelect-select-MuiInputBase-input.css-194a1fa-MuiSelect-select-MuiInputBase-input.css-194a1fa-MuiSelect-select-MuiInputBase-input {

  margin-bottom: 10px;
}

.network .css-i4bv87-MuiSvgIcon-root {
  margin-bottom: 10px;
  color: rgb(18, 182, 179);
}

.network .css-14s5rfu-MuiFormLabel-root-MuiInputLabel-root {
  color: #fff;
}

.network .css-16c50h-MuiInputBase-root-MuiTablePagination-select {
  margin-right: 12px;
}

.network .css-levciy-MuiTablePagination-displayedRows {
  margin-bottom: 10px;
}

.network .css-e784if-MuiTypography-root {
  color: #fff;
  font-family: poppins;
}

.network .css-nxo287-MuiInputBase-input-MuiOutlinedInput-input {
  height: 10px;
  color: #fff;
}

.nonworking {
  margin-top: auto;
  margin-bottom: 15px;
  font-family: poppins !important;
  justify-content: end;
  display: flex;
}

.nonworking input::placeholder {
  color: #fff !important;
  opacity: 1;
}

.nonworking p {
  color: #fff !important;
}

.nonworking select {
  height: 10px !important;
}

.nonworking input {
  height: 10px !important;
}

.networklink {
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 0px 18px;
}

.pack-list button {
  color: #fff !important;
}

.table-pagination .MuiTablePagination-actions button svg {
  color: #09aeab !important;
}

.networklink a {
  text-decoration: underline;
}

.network .nonworking button svg {
  margin-bottom: 10px;
  color: rgb(18, 182, 179);
}

.report-new .accordion-body {
  padding: 10px 0px 0px;
}

.pervious-dataon {
  padding: 0px 20px 15px;
}

.pervious-dataon h6 {
  font-size: 15px !important;
  font-weight: 400 !important;
  color: #fff;
  margin-bottom: 6px !important;
}

.pervious-dataon span i {
  padding-right: 10px;
  font-size: 14px;
}

.pervious-dataon span {
  padding-right: 10px;
  font-size: 12px;
  color: #c71c6e;
  display: flex;
  margin-top: 11px;
}

span.dollar-sign {
  color: #10a19e;
}

/* ===============  report section end =============*/

.user-business-details {
  position: static;
  top: 100%;
  right: 100%;
  background: #001420;
  padding: 15px 20px;
  transition: 0.3s ease-in all;
  /* border: solid 1px rgba(18, 182, 179, 0.4); */
  /* box-shadow: 0 0px 30px rgba(5, 214, 217, 20%); */
  border-radius: 0px;
  z-index: 99999;
  width: 100%;
}



.busines-user-img {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: column;
}

.busines-user-img .busines-user-img-content img {
  border-radius: 100%;
  background: #001420;
  border: solid 2px rgba(18, 182, 179, 0.4);
  height: 80px;
  width: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  padding: 10px;
  margin-bottom: 10px;
}

.bns-details ul {
  padding: 0px;
  margin: 0px;
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-direction: column;
  margin-top: 10px;
}

.bns-details ul li {
  list-style: none;
  font-size: 12px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.busines-user-img-text h6 {
  margin-bottom: 10px;
  color: #fff;
  text-align: center;
  font-size: 12px;
}

.bns-details ul li p {
  margin-bottom: 13px;
  font-size: 10px;
}

.expand-icon {
  position: absolute;
  right: 7px;
  color: #fff;
  font-size: 14px;
  top: 0px;
}

.kuchbhi .modal-content {
  background-color: none !important;
  margin: 0 auto;
}

.networkexpand {
  background: #001420;
  padding: 0px;
  position: static;
  top: 100%;
  right: 100%;
  /* background: #001420; */
  padding: 0px;
  transition: 0.3s ease-in all;
  border: solid 1px rgba(18, 182, 179, 0.4);
  box-shadow: 0 0px 30px rgba(5, 214, 217, 20%);
  border-radius: 0px;
}

.cros-icon {
  position: absolute;
  left: 7px;
  top: -2px;
  color: #fff;
  font-size: 21px;
}

.acti-deca {
  position: absolute;
  left: 20px;
  top: 20px;
  color: #fff;
  font-size: 21px;
  display: flex;
  align-items: center;
}

.acti-deca button {
  background: #0b7d7f;
  color: #fff;
  padding: 7px 14px;
  border-radius: 5px;
  font-size: 12px;
  border: none;
  margin: 0px 7px;
}

button.green {
  background: #009933;
}

button.red {
  background: red;
}

.ribbon-2 {
  --f: 10px;
  /* control the folded part*/
  --r: 15px;
  /* control the ribbon shape */
  --t: 10px;
  /* the top offset */

  position: absolute;
  inset: var(--t) calc(-1*var(--f)) auto auto;
  padding: 0 10px var(--f) calc(10px + var(--r));
  clip-path:
    polygon(0 0, 100% 0, 100% calc(100% - var(--f)), calc(100% - var(--f)) 100%,
      calc(100% - var(--f)) calc(100% - var(--f)), 0 calc(100% - var(--f)),
      var(--r) calc(50% - var(--f)/2));
  background: #ff007a;
  box-shadow: 0 calc(-1*var(--f)) 0 inset #0005;
}

.dnbtn {
  background-color: #12b6b3;
  border: none;
  color: white;
  /* padding: 12px 5px; */
  cursor: pointer;
  font-size: 18px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  position: absolute;
}

.dnbtn {
  position: absolute;
  top: 13px;
  right: 7px;
  z-index: 99;
  opacity: 0.9;

}

.report-new table,
tr td {
  font-family: Poppins !important;
}

.report-new table,
tr th {
  font-family: Poppins !important;
}

.report-new .accordion-body .MuiTabs-scroller button {
  font-family: Poppins !important;
}

.report-new .accordion-body .MuiTablePagination-spacer p {
  font-family: Poppins !important;
}

.network .css-k7y545-MuiButtonBase-root-MuiTab-root.Mui-selected {
  color: #fff;
  font-family: Poppins !important;
}

.network .css-pqjvzy-MuiSvgIcon-root-MuiSelect-icon {
  color: #09aeab;
  margin-top: -5px;
  margin-right: 2px;
}

.network .css-194a1fa-MuiSelect-select-MuiInputBase-input.css-194a1fa-MuiSelect-select-MuiInputBase-input.css-194a1fa-MuiSelect-select-MuiInputBase-input {

  margin-bottom: 0px;
}

.network .css-i4bv87-MuiSvgIcon-root {
  margin-bottom: 0px;
  color: rgb(18, 182, 179);
}

.network .css-14s5rfu-MuiFormLabel-root-MuiInputLabel-root {
  color: #fff;
}

.network .css-16c50h-MuiInputBase-root-MuiTablePagination-select {
  margin-right: 12px;
}

.network .css-levciy-MuiTablePagination-displayedRows {
  margin-bottom: 0px;
}

.network .css-e784if-MuiTypography-root {
  color: #fff;
  font-family: poppins;
}

.network .css-nxo287-MuiInputBase-input-MuiOutlinedInput-input {
  height: 10px;
}

.nonworking {
  margin-top: auto;
  margin-bottom: 15px;
  font-family: poppins !important;
  justify-content: end;
  display: flex;
}

.report-new .accordion-body {
  padding: 10px 0px 0px;
}

.user-count {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

.date-picker .css-nxo287-MuiInputBase-input-MuiOutlinedInput-input:placeholder {
  color: #fff;
}

.date-picker div#demo-customized-select {
  height: 10px;
}

input[placeholder],
[placeholder],
*[placeholder] {
  color: #808080 !important;
  font-size: 14px;
}

.network .nonworking button svg {
  margin-bottom: -4px;
  color: rgb(18, 182, 179);
}


.network .css-pqjvzy-MuiSvgIcon-root-MuiSelect-icon {
  color: #12b6b3 !important;
  margin-top: 0px;
  margin-right: 2px;
  font-family: 'Poppins' !important;
}

.table-pagination p {
  margin-bottom: 0px;
}

.table-pagination .css-1utq5rl {
  color: #10a19e;
}

.nonworking .css-1utq5rl {
  color: #10a19e;
}

.pack-list {
  overflow-y: auto;
  height: 51vh;
  margin-top: 27px;
}

.pack-list::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: #fff;
  border-radius: 5px;
}

.pack-list::-webkit-scrollbar-thumb {
  background-color: #12b6b3;
  border-radius: 5px;
}

.pack-list .css-1kfcfxt-MuiTabs-root {
  padding-top: 0px;
}

.info-alert .alert {
  padding: 10px;
  margin: 0 0 10px 0;
  font-size: 15px;
  font-weight: 500;
}

.balance-details p {
  color: #fff;
  margin-bottom: 0px;
  padding-top: 10px;
  font-size: 14px;
}

.balance-details h6 {
  color: #12b6b3;
  margin-bottom: 0px;
  padding-top: 10px;
  font-size: 14px;
}

.balance-details p span {
  font-size: 12px;
}

.withamount {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.royality-message {
  display: flex;
  justify-content: end;
  color: #c71c6e;
}

/* Propert detail css */

.property-detail-container {
  padding: 20px;
}

.banner-section {
  margin-bottom: 20px;
}

.banner-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  margin-bottom: 10px;
}

.property-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.property-card {
  padding: 20px;
  background-color: #f5f5f5;
}

.nft-images-section {
  margin-top: 20px;
}

.nft-image {
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin: 5px;
}

.edit-section {
  text-align: right;
}

/* Propert detail css */

.mint-botton {
  display: flex;
  justify-content: center;
  padding-top: 20px;
}

.user-dropdown {
  margin: 0px 0px 0px 20px;
  / width: 200px; /
}
.user-dropdown .dropdown button {
  background: none;
  padding: 0px;
}
.user-dropdown .dropdown button img {
  filter: inherit;
  max-width: 68px;
  border-radius: 100%;
  border: solid 2px #ffffff;
  margin-left: -2px;
}
.header .dropdown button span {
  color: #fff;
  font-size: 15px;
  / display: block; /
  padding-left: 11px;
}
.user-dropdown .dropdown .dropdown-menu {
  background: #fff;
  border: 1px solid #D7E1FF;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 40px;
  right: 22px;
}
.user-dropdown .dropdown .dropdown-menu:before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 25px;
  height: 16px;
  background: #fff;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #D7E1FF;
  border-bottom: none;
  z-index: -4;
}
.user-dropdown .dropdown a.dropdown-item {
  font-size: 13px;
  font-weight: 500;
  color: #0e2a4f;
  line-height: 22px;
  text-align: start;
  padding: 5px 12px;
}