@import url("https://fonts.googleapis.com/css2?family=Martel+Sans:wght@200;300;400;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Neuton:wght@200;300;400;700;800&display=swap");

body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  background: #181c27;
  overflow-x: hidden;
  color: #f7f7f7;
  font-family: "Martel Sans", sans-serif;
  /* font-family: 'Neuton', serif; */
  overscroll-behavior: none; /* Add this line to prevent shaky scrolling */
}
 
/* sidebar section styles */
 
.sidebar {
  display: block;
  height: 100%;
  width: 250px;
  background-color: #141821; 
  position: fixed !important;
  z-index: 1;
  color: #718096;
  overflow-x: hidden;
  transition: 0.6s;
  border-right: 1px solid #7777772d;
}

.sidebar::-webkit-scrollbar {
  display: none;
  /* for Chrome, Safari, and Opera */
}

.sidebar hr {
  border-color: #7777777e;
}

.sidebar a {
  text-decoration: none;
  color: #718096;
}

.sidebar .sidebar-logo {
  margin-bottom: 20px;
  position: fixed;
  background: #141821;
  top: 0;
  width: inherit;
  z-index: 1;
  padding: 15px 10px 10px;
  text-align: center;
}

.sidebar .sidebar-logo .sidebar-logo-container {
  text-align: center;
}

.sidebar .sidebar-logo img.main-logo {
  width: 200px;
}

.sidebar .sidebar-logo img.mini-logo {
  width: 35px;
  margin: auto;
}

.sidebar .sidebar-logo #miniLogo {
  display: none;
}

.sidebar .sidebar-box {
  position: relative;
  padding: 10px;
  top: 80px;
}

.sidebar .sidebar-menu-box {
  padding: 15px 5px;
}

.sidebar .sidebar-menu-box .sidebar-title {
  margin-bottom: 0;
  padding-bottom: 0;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.sidebar .sidebar-menu-box .sidebar-menu-items {
  display: flex;
  flex-direction: column;
}

.sidebar .sidebar-menu-box .sidebar-menu-items .list-item {
  display: flex;
  flex-direction: row;
  background: transparent;
  padding: 7px 14px; 
  border-radius: 10px;
  margin: 4px 0;
  cursor: pointer;
}

.sidebar .sidebar-menu-box .sidebar-menu-items .list-item ion-icon {
  font-size: 24px;
}

.sidebar .sidebar-menu-box .sidebar-menu-items .list-item .item-text {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding-left: 15px;
  position: relative;
  top: 5px;
}

.sidebar .sidebar-menu-box .sidebar-menu-items .list-item:hover {
  background: #191d28;
  color: #f7f7f7;
}

.sidebar .sidebar-menu-box .sidebar-menu-items .list-item.active {
  background: #2d3748;
}

.sidebar .sidebar-menu-box .sidebar-menu-items .list-item.active .item-text {
  color: #f7f7f7;
}

.sidebar .sidebar-menu-box .sidebar-menu-items .list-item.active ion-icon {
  color: #7f99fb;
}

/* dashboard main section styles */
.dashboard-main {
  margin-left: 250px;
}

.dashboard-header-box {
  position: sticky;
  top: 0;
  background: #171a25;
  z-index: 2;
  transition: 0.5s;
}

.dashboard-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 10px 50px;
  width: 100%;
  border-bottom: 1px solid #7777772d;
}

.dashboard-header .hamburger-section .btn {
  border: 1px solid #2d3748f0;
  border-radius: 7px;
  background: #191d28;
}

#closeNav {
  background: #141821;
}

#openNav {
  display: none;
}

.dashboard-header .hamburger-section .btn:hover {
  background: #2d3748;
  color: #f7f7f7;
}

.dashboard-header .hamburger-section .btn .fas {
  font-size: 18px;
}

.dashboard-header .connected-section .btn {
  border: 1px solid #2d3748f0;
  font-size: 13px;
  font-weight: 600;
  color: #f7f7f7;
  border-radius: 8px;
  text-transform: capitalize;
  padding: 8px 20px;
}

/* Define the animation */
@keyframes zoomInOut {
  0% {
    transform: scale(1);
    /* Initial scale of 1 (normal size) */
  }

  50% {
    transform: scale(1.25);
    /* Zoom in to 1.2 times the normal size */
  }

  100% {
    transform: scale(1);
    /* Return to the normal size */
  }
}

.dashboard-header .connected-section .btn .fas {
  font-size: 11px;
  padding-left: 8px;
  color: #f7f7f7;
  animation: zoomInOut 2s infinite;
  /* The animation will take 2 seconds and repeat infinitely */
}

.dashboard-header .connected-section .btn:hover {
  background: #191d28;
}

.dashboard-header .connected-section.unverified .btn .fas {
  color: #0096ff;
}
.dashboard-header .connected-section.verified .btn .fas {
  color: #34d399;
}
.dashboard-header .connected-section.pending .btn .fas {
  color: #ffac1c;
}
.dashboard-header .connected-section.locked .btn .fas {
  color: #ee4b2b;
}

/* main body styles section */
.mywallet-wrapper {
  background: #171a25;
}

/* my wallet page styles */
.header-section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 30px 20px;
}

.header-section .net-worth {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.header-section .net-worth .net-worth-img {
  height: 80px;
  width: 80px;
  border: 1px solid #2d3748f0;
  border-radius: 10px;
  margin-right: 10px;
  overflow: hidden;
}

.header-section .net-worth .net-worth-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-section .net-worth .net-worth-body {
  margin: auto;
}

.header-section .net-worth .net-worth-body p {
  margin-bottom: 0;
  padding-bottom: 0;
}

.header-section .net-worth .net-worth-body p.title {
  font-size: 13px;
  font-weight: 700;
  color: #718096;
}

.header-section .net-worth .net-worth-body p.net-balance {
  font-size: 25px;
  font-weight: 800;
  color: #e5e5e5;
}

.header-section .net-worth .net-worth-body p.eth-balance {
  font-size: 15px;
  font-weight: 700;
  color: #a0aec0;
}

.buttons-section {
  margin: auto 0;
}

.buttons-section .header-buttons {
  display: flex;
  flex-direction: row;
}

.buttons-section .header-buttons .btn {
  margin: 0 5px;
  font-size: 13px;
  font-weight: 700;
  text-transform: capitalize;
  padding: 7px 20px;
  border-radius: 10px;
  background: #2d3748;
  border: 1px solid #2d3748; 
}

.buttons-section .header-buttons .btn ion-icon {
  position: relative;
  top: 2px;
  padding-right: 3px;
  font-size: 15px;
}

.buttons-section .header-buttons .btn:hover {
  background: #3a4558;
}

.navbar-tab {
  padding: 0 20px;
}

.navbar-tab ul {
  display: flex;
  flex-direction: row;
  padding-left: 0;
  margin-bottom: 0;
  padding-bottom: 0;
  list-style: none;
}

.navbar-tab .navbar-item a {
  text-decoration: none;
  color: #718096;
}

.navbar-tab ul .navbar-item {
  margin-right: 40px;
  font-size: 14px;
  font-weight: 700;
  color: #718096;
  letter-spacing: 0.5px;
  cursor: pointer;
  padding-bottom: 12px;
}

.navbar-tab ul .navbar-item.active {
  color: #f7f7f7;
  border-bottom: 2px solid #3962f6;
}

.navbar-tab .navbar-item .price-status {
  background: #1c3330;
  color: #5cdfbd;
  font-size: 13px;
  padding: 4px 10px;
  font-weight: 600;
  border-radius: 6px;
  margin-left: 10px;
}

.home-box {
  padding: 30px 20px;
}

.home-chart {
  border: 1px solid #2d37488e;
  border-radius: 15px;
  padding: 10px 0 0;
  background: #1a202c;
  width: 100%;
}

.home-chart .net-worth-body {
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
}

.home-chart .net-worth-body p {
  margin-bottom: 0;
  padding-bottom: 0;
}

.home-chart .net-worth-body p.title {
  font-size: 13px;
  font-weight: 700;
  color: #718096;
}

.home-chart .net-worth-body p.net-balance {
  font-size: 25px;
  font-weight: 800;
  color: #f7f7f7;
}

.profile-box {
  border: 1px solid #2d37488e;
  border-radius: 15px;
  padding: 10px;
  background: #1a202c;
  margin-top: 0;
  margin-bottom: 30px;
}

.profile-box .profile-img {
  width: 100px;
  height: 100px;
  border-radius: 50px;
  margin: auto;
  overflow: hidden;
  border: 5px solid #2d37488e;
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.32);
  -webkit-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.32);
  -moz-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.32);
}

.profile-box .profile-img img {
  width: 100%;
  height: 100%;
}

.profile-box .profile-body {
  padding: 10px 5px 10px;
  border-bottom: 1px solid #2d3748f0;
}

.profile-box .profile-body p {
  margin-bottom: 0;
  padding-bottom: 0;
}

.profile-box .profile-body .profile-name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #f7f7f7;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.profile-box .profile-body .client-position {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #a0aec0;
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.profile-box .profile-body .profile-bio {
  font-size: 12px;
  color: #718096;
  height: 100px;
  max-height: 150px;
  overflow: hidden;
}

.profile-box .profile-body .profile-social-links ul{
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  list-style: none;
  padding-left: 0;
  justify-content: space-evenly;
}


.profile-box .profile-body .profile-social-links ul li a{
  text-decoration: none;
  color: #a0aec0;
  font-size: 20px;
}


.profile-box .profile-body .profile-social-links ul li .fa-linkedin {
  color: #0077b5;
}

.profile-box .profile-body .profile-social-links ul li .fa-instagram {
  color: #c13584;
}

.profile-box .profile-body .profile-social-links ul li .fa-facebook {
  color: #1877f2;
}

.profile-box .profile-body .profile-social-links ul li .fa-twitter {
  color: #1da1f2;
}

.profile-box .profile-btn {
  padding: 20px 20px 10px;
  text-align: center;
}

.profile-box .profile-btn .btn {
  width: 80%;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 8px 40px;
  border-radius: 10px;
  color: #cbd3de;
  background: #2d3748;
  border: 1px solid #2d3748;

  box-shadow: 1px 1px 5px 2px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 1px 1px 5px 2px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 1px 1px 5px 2px rgba(0, 0, 0, 0.25);
}

.profile-box .profile-btn .btn:hover {
  color: #f7f7f7;
  background: #3a4558;
}

#ethereumChart {
  background-color: transparent;
}

.chart-container {
  max-width: 800px;
  margin: 10px auto 0;
  background-color: transparent;

  border-radius: 5px;
  overflow: hidden;
  color: #718096;
}

canvas {
  display: block;
  width: 100%;
  height: 300px;
  color: #718096;
}

/* buy crypto section styles */
.buy-crypto-wrapper {
  padding: 30px;
  background: url("../files/images/static/aurorabg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.buy-crypto-section {
  margin-top: 30px;
  margin-bottom: 30px;
}

.buy-crypto-hero {
  margin: auto;
  max-width: 350px;
}

.buy-crypto-hero .buy-crypto-content {
  margin-top: 40%;
}

.buy-crypto-content .title {
  font-size: 50px;
  font-weight: 800;
  color: #f7f7f7;

  text-rendering: optimizeLegibility;
}

.buy-crypto-content .title .in-seconds {
  background: linear-gradient(
      97.53deg,
      rgb(246, 135, 179) 5.6%,
      rgb(123, 97, 255) 59.16%,
      rgb(22, 209, 161) 119.34%
    )
    padding-box text;
  color: transparent;
}

.buy-crypto-content .sub-title {
  font-size: 15px;
  font-weight: 500;
  color: #f7f7f7;
}

.buy-crypto-box {
  border: 1px solid #2d3748f0;
  padding: 20px 30px;
  border-radius: 20px;
  max-width: 400px;
  background: #1a202c;
}

.buy-crypto-form p {
  margin-bottom: 0;
  padding-bottom: 0;
}

.buy-crypto-form .form-group {
  margin: 20px 0;
}

.buy-crypto-form label {
  font-size: 14px;
  font-weight: 700;
  color: #f7f7f7;
  margin-bottom: 8px;
}

.buy-crypto-form .form-group .p-input {
  border: 1px solid #2d3748;
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.buy-crypto-form .form-group .p-input img {
  width: 25px;
}

.buy-crypto-form .form-group .p-input .text {
  font-weight: 600;
  font-size: 13px;
  padding-left: 10px;
}

.buy-crypto-form .p-label {
  font-size: 13px;
  color: #718096;
  font-weight: 500;
  margin-bottom: 8px;
}

.buy-crypto-form .form-group .form-connect {
  text-align: center;
}

.buy-crypto-form .form-group .form-connect .form-control {
  font-size: 13px;
  font-weight: 600;
  color: #f7f7f7;
  background: transparent;
  border: 1px solid #2d3748;
  border-radius: 8px;
  height: 40px;
}

.buy-crypto-form .form-group .form-connect .form-control:focus {
  box-shadow: none;
  outline: none;
}

.buy-crypto-form .form-group .form-connect #eth_address {
  display: none;
}

.buy-crypto-form .form-connect .btn {
  width: 80%;
  padding: 8px 20px;
  font-size: 13px;
  color: #f7f7f7;
  border-radius: 10px;
  font-weight: 700;
  text-align: center;
  text-transform: capitalize;
  background: #2d3748;
  border: 1px solid #2d3748;
}

.buy-crypto-form .form-connect .btn:hover {
  background: #3a4558;
}

.buy-crypto-form .providers-box {
  margin-top: 30px;
}
 
.buy-crypto-form .providers-box .providers-link {
  display: flex;
  flex-direction: column;
}

.providers-link .btn {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-radius: 10px;
  background: #1a202c;
  padding: 8px 10px;
  border: 1px solid #2d3748;
  margin: 5px 0 0;
}

.providers-link .btn img {
  width: 28px;
  background: #2d3748;
  border-radius: 14px;
  object-fit: cover;
  object-position: center;
}

.providers-link .btn .btn-title {
  font-size: 13px;
  font-weight: 600;
  padding-left: 5px;
}

.providers-link .btn .btn-right {
  margin-top: auto;
  margin-bottom: auto;
}

.providers-link .btn .pills {
  padding: 3px 7px 1px;
  background: #3b414c;
  border-radius: 5px;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
  color: #a0aec0;
  text-align: center;
  margin-right: 5px;
}

.providers-link .btn .btn-right .fas {
  font-size: 12px;
  color: #a0aec0;
}

/* styles for feedback and support */
.portal-window {
  position: fixed;
  z-index: 1030;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh; 
  overflow: hidden;
  background-color: #01070f;
  background: rgba(0, 0, 0, 0.65); 
  display: flex;
  justify-content: center;
  -moz-box-align: center;
  align-items: center;
}

#supportTicketPortal {
  display: none;
}

/* Portal Content/Box */
.portal-window-content {
  color: #f7f7f7;
  background: #1a202c;
  border: 1px solid #2d37488e; 
  margin: auto;
  padding: 0; 
  border-radius: 20px;
  width: 27%;

  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 0px 1px,
    rgba(0, 0, 0, 0.2) 0px 5px 10px, rgba(0, 0, 0, 0.4) 0px 15px 40px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 0px 1px,
    rgba(0, 0, 0, 0.2) 0px 5px 10px, rgba(0, 0, 0, 0.4) 0px 15px 40px;
  -moz-box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 0px 1px,
    rgba(0, 0, 0, 0.2) 0px 5px 10px, rgba(0, 0, 0, 0.4) 0px 15px 40px;
}

.portal-window-content::-webkit-scrollbar {
  display: none;
  /* for Chrome, Safari, and Opera */
}

.support_ticket_box {
  padding: 20px 20px;
}
 
.support-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.support-header .header-title {
  font-size: 17px;
  font-weight: 700;
  color: #f7f7f7;
}

.support-header .fas {
  font-size: 18px;
  color: #f7f7f7;
  cursor: pointer;
}

.support_ticket_box .form-group {
  margin: 10px 0 15px;
}

.support_ticket_box .form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #718096;
  margin-bottom: 5px;
}

.support_ticket_box .form-group .form-control {
  background: transparent;
  border-radius: 8px;
  border: 1px solid #2d3748f0;
  font-size: 13px;
  color: #f7f7f7;
  font-weight: 500;
}

.support_ticket_box .form-group .form-control:focus {
  box-shadow: none;
  outline: none;
}

.support_ticket_box .form-group .btn {
  width: 100%;
  font-size: 14px;
  font-weight: 600; 
  letter-spacing: 0.5px;
  padding: 8px 20px;
  border-radius: 10px;
  background: #3761f9;
  border: 1px solid #3761f9;
}

.support_ticket_box .form-group .btn:hover {
  background: #5176fb;
  border: 1px solid #5176fb;
}

/* art valuation portal section */
#valuationPortal .portal-window-content {
  width: 30%;
}

.art-valuation-wrapper {
  max-height: 80vh;
  overflow-y: auto; 
  padding: 10px 5px 20px;
}

.art-valuation-wrapper::-webkit-scrollbar {
  display: none;
}

.art-valuation-wrapper .h4-title {
  margin: 10px 10px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #a0aec0;
  text-align: center;
}

.art-valuation-wrapper .content {
  padding: 10px 0 20px;
}

.art-valuation-wrapper .content .est-price {
  text-align: center;
  font-size: 27px;
  font-weight: 800;
  line-height: 30px;
  margin-top: 0;
  padding-top: 10px;
}

.art-valuation-wrapper .content .art-image {
  text-align: center;
  margin: 10px 15px;
}

.art-valuation-wrapper .content .art-image img {
  max-width: 200px;
  max-height: 200px;
  object-fit: cover;
  border-radius: 15px;
}

.art-valuation-wrapper .content .art-info {
  text-align: center;
}

.art-valuation-wrapper .content .art-info p {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
}

.art-valuation-wrapper .content .art-info p.artist {
  font-size: 13px;
  font-weight: 500;
  color: #a0aec0;
  margin-bottom: 20px;
}

.art-valuation-wrapper .footer {
  background-color: #141821;
  color: #a0aec0;
  padding: 8px 10px;
  line-height: 1.5;
  text-align: left;
  font-weight: 500;
  font-size: 11px;
  margin-top: 15px;
  border-radius: 10px;
}

.art-valuation-wrapper .footer p {
  margin-bottom: 0;
  padding-bottom: 0;
}

/* evaluate art and get investment returns styles */
.evaluate_art_invest_box {
  border-top: 1px solid #a0aec08b;
  padding-top: 15px;
}

.evaluate_art_invest_box .input_container {
  margin-bottom: 15px;
}

.evaluate_art_invest_box .input_container label {
  font-size: 14px;
  font-weight: 600;
  color: #a0aec0;
  margin-bottom: 8px;
}

.evaluate_art_invest_box .input_container .form-inline {
  display: flex;
  flex-direction: row;
  border: 1px solid #2d3748f0;
  background: #141821;
  border-radius: 8px;
  overflow: hidden;
}

.evaluate_art_invest_box .input_container .form-inline .btn {
  background: #171a25;
  padding: 10px;
  text-align: center;
  color: #f7f7f7;
  border: 0 solid transparent;
  width: 50px;
  font-weight: 600;
  font-size: 14px;
}

.evaluate_art_invest_box .input_container .form-inline input {
  background: transparent;
  color: #f7f7f7;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  border: 0 solid transparent;
  height: 50px;
}

.evaluate_art_invest_box .input_container .form-inline input:focus {
  box-shadow: none;
  outline: none;
}

.evaluate_art_invest_box .returns_container .returns_days_box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  overflow-x: auto;
  overflow-y: hidden;
  background: #141821;
  border-radius: 10px;
  border: 1px solid #2d37488e;
  padding: 6px;
}

.evaluate_art_invest_box
  .returns_container
  .returns_days_box
  .btn.btn-outline-secondary {
  padding: 7px 10px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #f7f7f7;
}

.evaluate_art_invest_box
  .returns_container
  .returns_days_box
  .btn.btn-outline-secondary.active {
  background: #1877f2;
  border: 1px solid #1877f2;
}

.potential_container {
  margin: 10px 0 15px;
  background: #141821;
  padding: 15px;
  border-radius: 10px;
}

.potential_container .title {
  font-size: 13px;
  letter-spacing: 0.5px;
  font-weight: 500;
  color: #a0aec0;
}

.potential_container .dollar_h3 {
  font-size: 20px;
  font-weight: 700;
  color: #f7f7f7;
  letter-spacing: 0.5px;
}

.potential_container .eth_span {
  font-size: 14px;
  font-weight: 600;
  color: #a0aec0;
  padding-left: 8px;
}

.evaluate_art_invest_box .art_invest_btn {
  text-align: center;
}
.evaluate_art_invest_box .art_invest_btn .btn {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 30px;
  padding: 7px 30px;
}
/* receive funds section */

#receiveFundsPortal {
  display: none;
}

.portal-note {
  font-size: 13px;
  font-weight: 500;
  color: #718096;
  text-align: center;
}

.receive_funds_box .receive_qr_box {
  text-align: center;
  margin: 30px 0;
}

.receive_funds_box .receive_qr_box img {
  padding: 5px;
  background: #f7f7f7;
  border-radius: 15px;
  width: 180px;
  height: 180px;
  object-fit: contain;
}

.receive_funds_box .receive_profile {
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  margin-bottom: 20px;
}

.receive_funds_box .receive_profile .img-box {
  width: 90px;
  height: 100px;
  border-radius: 10px;
  margin-top: auto;
  margin-bottom: auto;
  overflow: hidden;
  border: 2px solid #2d3748f0;
}

.receive_funds_box .receive_profile .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.receive_funds_box .receive_profile .profile-details {
  padding-left: 15px;
}

.receive_funds_box .receive_profile .profile-details p {
  margin-bottom: 0;
  padding-bottom: 0;
}

.receive_funds_box .receive_profile .profile-details .title {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  color: #718096;
  margin-bottom: 2px;
}

.receive_funds_box .receive_profile .account-no-div {
  margin-bottom: 10px;
}

.receive_funds_box .receive_profile .acct-text {
  display: flex;
  flex-direction: row;
}

.receive_funds_box .receive_profile .acct-text .acct-number {
  font-size: 18px;
  font-weight: 700;
  color: #f7f7f7;
}

.receive_funds_box .receive_profile .acct-text .copy-btn {
  color: #a0aec0;
  margin-left: 10px;
  cursor: pointer;
  font-size: 14px;
  margin-top: auto;
  margin-bottom: auto;
}

.receive_funds_box .receive_profile .acct-name {
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* send funds section */

#sendFundsPortal {
  display: none;
}

#go-back-send-portal {
  display: none;
}
.send_funds_box .form-group label {
  font-size: 13px;
}

.send_funds_box .form-group .account-status {
  font-size: 13px;
  font-weight: 600;
  margin: 5px 0 0;
  padding: 7px 15px;
  border-radius: 8px;
  /* visibility: hidden; */
}
.send_funds_box .form-group .account-status.spinner-p {
  color: #0077b5;
  background: #d5f0ff;
}

.send_funds_box .form-group .account-status.success {
  color: #007e50;
  background: #c2d3cd; 
}

.send_funds_box .form-group .account-status.failed {
  color: #d50843;
  background: #e1c4cd;
}

.send_funds_box .form-group .account-status .fas {
  font-size: 15px;
  margin-right: 10px;
}

.send_funds_box .form-group input {
  height: 47px;
  font-weight: 600;
}

.send_funds_box .form-group input:focus {
  border: 1px solid #7f99fb;
}

.send_funds_box .form-group .btn {
  margin-top: 20px;
  height: 45px;
  font-weight: 700;
  border-radius: 25px;
}

#transfer-input {
  display: none;
}

#transfer-portal {
  display: block;
}

#auth-transfer {
  display: none;
}

#go-back-receive-portal {
  display: none;
}

.back-icon .fas {
  color: #a0aec0;
  font-size: 14px;
}

.send_funds_box .auth-transfer .transfer-amount {
  text-align: center;
  color: #a0aec0;
  font-size: 24px;
  font-weight: 700;
}

.send_funds_box .auth-transfer .transfer-details {
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.send_funds_box .auth-transfer .transfer-details p {
  margin-bottom: 12px;
  padding-bottom: 0;
  font-size: 13px;
  color: #f7f7f7;
  font-weight: 500;
}

.send_funds_box .auth-transfer .transfer-details .details-p p {
  font-weight: 600;
  color: #a0aec0;
  text-align: right;
}

.send_funds_box .auth-transfer .form-group input {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 5px;
  text-align: center;
  height: 55px;
  color: #ffffff;
  background: #191d28;
  border: 1px solid #2d3748f0;
  padding-left: 0;
  border-radius: 8px;
  
}

/* deposit funds section */
#depositPortal {
  display: none;
}

#withdrawPortal {
  display: none;
}

#depositPortal .portal-window-content {
  width: 31%;
}

.deposit_funds_box .deposit-limit-box {
  display: flex;
  justify-content: center;
  margin: 10px 0 20px;
}

.deposit_funds_box .deposit-limit-box .deposit-limit {
  padding: 15px 15px 5px;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  background: transparent;
  max-width: 80%;

  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.25);
}

.deposit_funds_box .deposit-limit-box .deposit-limit p {
  margin-bottom: 10px;
  padding-bottom: 0;
  font-size: 13px;
  font-weight: 500;
  color: #a0aec0;
}

.deposit_funds_box .deposit-limit-box .deposit-limit .deposit-limit-sub-title {
  margin-left: 20px;
}

.deposit_funds_box
  .deposit-limit-box
  .deposit-limit
  .deposit-limit-sub-title
  p {
  font-weight: 600;
}

.deposit_funds_box .deposit-input .form-group .form-inline {
  display: flex;
  flex-direction: row;
  border: 1px solid #2d3748f0;
  border-radius: 8px;
  padding: 0;
  background: #191d28;
}

.deposit_funds_box .deposit-input .form-control:focus {
  box-shadow: none;
  outline: none;
}

.deposit_funds_box .deposit-input .form-group .form-inline input {
  font-size: 14px;
  height: 47px;
  background: #191d28;
  color: #f7f7f7;
  border: 0 solid transparent;
  border-radius: 1px;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.deposit_funds_box .deposit-input .form-group .form-inline .btn {
  width: 32%;
  padding: 0 5px 0;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  height: 47px;
  background: #141821;
  border: 0 solid transparent;
  border-radius: 1px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.deposit_funds_box .deposit-input .form-group input {
  border: 1px solid #2d3748f0;
  font-size: 13px;
  font-weight: 600;
  color: #f7f7f7;
  height: 47px;
  background: #191d28;
  border-radius: 8px;
}

.deposit_funds_box .form-group.form-btn .btn {
  margin-top: 20px;
  height: 45px;
  font-weight: 700;
  border-radius: 25px;
}

.deposit_funds_box .deposit-input .form-group select {
  height: 45px;
  border-radius: 8px;
  background: #191d28;
  border: 1px solid #2d37488e;
  color: #a0aec0;
  font-size: 13px;
  font-weight: 600;
}

.deposit_funds_box .deposit-input .form-group select option {
  letter-spacing: 1px;
  font-weight: 500;
  background: transparent;
}

.deposit_funds_box .deposit-input .form-group select:focus {
  box-shadow: none;
  outline: none;
}

.deposit_funds_box .deposit-input .form-group .p-status {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-align: center;
  margin: 0 0;
  padding: 7px 15px;
  border-radius: 10px;
  cursor: pointer;
  /* visibility: hidden; */
}

.deposit_funds_box .deposit-input .form-group .p-status a {
  text-decoration: none;
  color: inherit;
}

.deposit_funds_box .deposit-input .form-group .p-status.success {
  color: #0077b5;
  background: #d5f0ff;
}

.deposit_funds_box .deposit-input .form-group .p-status.failed {
  color: #d50843;
  background: #e1c4cd;
}

#go-back-deposit-portal {
  display: none;
}

#deposit-form {
  display: block;
}

#deposit-payment {
  display: none;
}

.deposit-payment {
  max-height: 85vh;
  overflow-y: auto;
}

.deposit-payment::-webkit-scrollbar {
  display: none;
}

.deposit-payment .portal-note {
  font-size: 12px;
  font-weight: 600;
  color: #718096;
}

.deposit-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.deposit-header p {
  margin-bottom: 0;
  padding-bottom: 0;
}

.deposit-header .network {
  font-size: 12px;
  font-weight: 600;
  color: #7f99fb;
}

.deposit-header .network .fas {
  font-size: 12px;
}

.deposit-header .time {
  font-size: 13px;
  font-weight: 600;
  color: #7f99fb;
}

.deposit-payment .deposit-qr-code {
  text-align: center;
  margin: 10px 0;
}

.deposit-payment .deposit-qr-code img {
  padding: 5px;
  background: #f7f7f7;
  border-radius: 8px;
  width: 110px;
  height: 110px;
  object-fit: contain;
}

.deposit-payment-details {
  margin: 10px 0;
}

.deposit-payment-details .amount-to-pay {
  margin-bottom: 10px;
}

.deposit-payment-details p {
  margin-bottom: 0;
  padding-bottom: 0;
}

.deposit-payment-details p.title {
  font-size: 13px;
  color: #718096;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-align: center;
}

.deposit-payment-details p.deposit-amount {
  font-size: 14px;
  color: #a0aec0;
  font-weight: 700;
  text-align: center;
}

.deposit-payment-details .deposit-address {
  display: flex;
  flex-direction: row;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  flex-wrap: wrap;
  color: #a0aec0;
}

.deposit-payment-details .deposit-address .copy-btn {
  padding-left: 8px;
  color: #7f99fb;
  cursor: pointer;
  font-size: 12px !important;
}

.deposit-payment-details .deposit-address .copy-btn .fas,
.far {
  font-size: 12px;
}

.deposit-payment .form-group .btn {
  border-radius: 25px;
  margin-bottom: 0;
}

/* profile setting section */
.settings-wrapper {
  margin: 30px 20px;
}
 
.settings-section {
  padding: 30px 20px;
  border: 1px solid #2d37488e;
  border-radius: 20px;
  background: #1a202c;
}

.settings-section h3 {
  font-size: 24px;
  font-weight: 800;
  color: #f7f7f7;
  margin-bottom: 20px;
}

.settings-section .sub-section {
  margin: 30px 0 5px;
}

.settings-section .sub-section .title {
  font-size: 20px;
  font-weight: 700;
  color: #f7f7f7;
  margin-bottom: 5px;
  padding-bottom: 0;
}

.settings-section .sub-section .sub-title {
  font-size: 14px;
  font-weight: 600;
  color: #718096;
  margin-bottom: 0;
  padding-bottom: 0;
}

.settings-section .form-group {
  margin: 20px 0;
}

.settings-section .form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #f7f7f7;
  margin-bottom: 5px;
}

.settings-section.invest-art-section .form-group label {
  font-size: 13px;
}

.settings-section .form-group .form-note {
  font-size: 12px;
  font-weight: 500;
  color: #718096;
  margin-bottom: 0;
  padding-bottom: 0;
  margin-top: 5px;
}

.settings-section.invest-art-section .form-group label .label-note {
  font-size: 12px;
  font-weight: 500;
  color: #718096;
}

.settings-section .form-group .form-control {
  background: #191d28;
  border: 1px solid #2d3748f0;
  border-radius: 8px;
  font-size: 13px;
  color: #f7f7f7;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.settings-section .form-group input {
  height: 45px;
}

.settings-section .form-group select {
  height: 45px;
  letter-spacing: 1px;
}

.settings-section .form-group .form-control:focus {
  box-shadow: none;
  outline: none;
  border: 1px solid #7f9afb77;
}

.settings-section .form-group .btn {
  width: 100%;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 12px 20px;
  border-radius: 10px;
  background: #3761f9;
  border: 1px solid #3761f9;
}

.settings-section .form-group .btn:hover {
  background: #5176fb;
  border: 1px solid #5176fb;
}

.settings-section .form-group .form-inline {
  display: flex;
  flex-direction: row;
  height: 45px;
  background: #191d28;
  border-radius: 8px;
  border: 1px solid #2d3748f0;
}

.settings-section .form-group .form-inline p {
  margin: auto;
  padding: 0;
  text-align: center;
  width: 50px;
  font-size: 20px;
}

.settings-section .form-group .form-inline .form-control {
  background: transparent;
  border: 0 solid transparent;
  padding-left: 0;
}

.settings-section .form-group .form-inline:hover {
  background: #191d28;
  border: 1px solid #7f9afb77;
}

.settings-section .form-group .fa-linkedin {
  color: #0077b5;
}

.settings-section .form-group .fa-instagram {
  color: #c13584;
}

.settings-section .form-group .fa-facebook {
  color: #1877f2;
}

.settings-section .form-group .fa-twitter {
  color: #1da1f2;
}

#profileImagePortal {
  display: none;
}

.settings-section .edit-profile-img {
  position: relative;
  overflow: hidden;
  height: 150px;
  width: 150px;
  background: #191d28;
  border-radius: 15px;
  cursor: pointer;
  margin: 40px auto 0;
}

.settings-section .edit-profile-img:hover .overlay {
  visibility: visible;
  opacity: 1;
}

.settings-section .edit-profile-img .img-fluid {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.settings-section .edit-profile-img .overlay {
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #191d2895;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.settings-section .edit-profile-img .overlay .img-overlay {
  margin: 35% auto;
  width: 40px;
  border-radius: 8px;
  padding: 10px;
  background: #0c111ee8;
}

.upload-portal {
  padding: 20px 15px;
}

.upload-portal .title {
  font-size: 20px;
  font-weight: 700;
  color: #f7f7f7;
  margin-bottom: 15px;
}

.upload-portal .sub-title {
  font-size: 13px;
  font-weight: 600;
  color: #a0aec0;
  margin-bottom: 30px;
}

.upload-portal .btn {
  width: 100%;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 10px 25px;
  text-align: center;
  border-radius: 15px;
}

.upload-portal .btn.btn-secondary {
  background: #2d3748;
  color: #f7f7f7;
  border: 1px solid #2d3748;
}

.upload-portal .btn.btn-secondary:hover {
  background: #394458;
  border: 1px solid #394458;
}

.upload-portal .btn.btn-outline {
  margin-top: 20px;
  background: transparent;
  color: #f7f7f7;
  border: 1px solid #718096;
}

.upload-portal .btn.btn-outline:hover {
  background: transparent;
  border: 1px solid #718096;
}

.upload-portal input[type="file"] {
  display: none;
  font-size: 13px;
  margin-top: 30px;
  border-radius: 3px;
  border: 1px solid transparent;
}

/* Account Settings */

/* verification center sections */
.ver-center {
  margin-top: 20px;
}

.ver-center .ver-rows {
  display: flex;
  padding: 25px 20px;
  justify-content: space-between;
  border-top: 1px solid #2d3748f0;
  border-bottom: 1px solid #2d3748f0;
}

.ver-center .ver-bottom-row {
  padding-bottom: 0;
  border-bottom: 0 solid #2d3748f0;
}

.ver-center .ver-rows p {
  margin: 0;
  padding: 0;
}

.ver-center .ver-rows .ver-icon .far,
.fas {
  font-size: 27px;
}

.ver-center .ver-rows .ver-type {
  width: 320px;
}

.ver-center .ver-rows .ver-type .title {
  font-size: 15px;
  font-weight: 800;
}

.ver-center .ver-rows .ver-type .desc {
  font-size: 12px;
  font-weight: 500;
  color: #718096;
}

.ver-center .ver-rows .ver-status {
  margin: auto 0;
}
.ver-center .ver-rows .ver-status .p-status {
  font-size: 13px;
  font-weight: 700;
  text-transform: capitalize;
}

.ver-center .ver-rows .ver-status .p-status.pending {
  color: #0096ff;
}

.ver-center .ver-rows .ver-status .p-status.failed {
  color: #fb5a5a;
}

.ver-center .ver-rows .ver-status .p-status.processing {
  color: #ff8a4f;
}

.ver-center .ver-rows .ver-status .p-status.success {
  color: #00cf83;
}

.ver-center .ver-rows .ver-button {
  margin: auto 0;
}

.ver-center .ver-rows .ver-button .btn {
  border-radius: 25px;
  border: 1px solid #a0aec0;
  padding: 6px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #f7f7f7;
}

/* verification center id upload */

/* submit art section */
.upload-id {
  margin-top: 0;
  margin-bottom: 25px;
}

.upload-id .upload-label {
  font-size: 14px;
  font-weight: 700;
  color: #a0aec0;
  margin-bottom: 8px;
}

.upload-id .upload-id-box {
  border: 2px dashed #7180967e;
  border-radius: 12px;
  text-align: center;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.upload-id .upload-id-box .upload-button-box .btn {
  margin-top: 0;
  font-size: 14px;
  font-weight: 600;
  color: #f7f7f7;
  padding: 8px 20px;
  height: inherit;
  background: #2d3748;
  border: 0 solid transparent;
  border-radius: 10px;
}

.upload-id .upload-id-box .upload-button-box {
  display: block;
}

.upload-id .upload-id-box .id-image-container {
  width: 200px;
  height: 120px;
  padding: 5px;
  position: relative;
  display: none;
}

.upload-id .upload-id-box .id-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  object-position: center;
}

.upload-id .upload-id-box .id-image-container .btn {
  width: unset;
  height: unset;
  background: #2d3748;
  border: 1px solid #a0aec0;
  border-radius: 5px;
  padding: 6px 8px 2px;
  font-size: 13px;
  z-index: 2;
  position: absolute;
  right: 10px;
  top: 10px;
  margin-top: 0;
}

.upload-id .upload-id-box .id-image-container .btn .fas {
  font-size: 17px;
  padding: 0;
  margin: 0;
}

/* payment method sections */

.settings-section.payment-method {
  padding: 20px 0 30px;
  border: 1px solid #2d37488e;
  border-radius: 20px;
  background: #1a202c;
}

.payment-method .method-tab {
  border-top: 1px solid #2d3748f0;
  border-bottom: 1px solid #2d3748f0;
  display: flex;
  flex-direction: row;
  background: #141821;
  justify-content: space-evenly;
}

.payment-method .method-tab .btn {
  width: 100%;
  padding: 13px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #f7f7f7;
  border-radius: 0;
  background: #191d28;
  border: 1px solid transparent;
}

.payment-method .method-tab #credit_account_tab.btn{
  border-right: 1px solid #2d3748f0;
  border-left: 1px solid #2d3748f0;
}

.payment-method .method-tab .btn.active {
  background: #1a202c;
}

.settings-section.payment-method .sub-section {
  margin: 0 0 15px;
  padding: 0 20px;
}

.settings-section.payment-method .payment-method-body {
  padding: 0 20px;
}

.settings-section.payment-method .payment-method-body #viewCard {
  display: none;
}

.settings-section.payment-method .payment-method-body #viewConnect {
  display: none;
}

/* connect wallet button styles */


.payment-method-body .connect-box-container .connect-dapp-header {
  margin-top: 25px;
  margin-bottom: 30px;
}

.payment-method-body .connect-box-container .connect-dapp-header .c-1 {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 5px;
  padding-bottom: 0;
}

.payment-method-body .connect-box-container .connect-dapp-header .c-2 {
  font-size: 13px;
  font-weight: 400;
  color: #a3a3a5;
}


.payment-method-body .connect-box-container .dapp-wallets .row {
  display: flex;
  flex-wrap: wrap;
}

.payment-method-body .connect-box-container .dapp-wallets .col-md-4 {
  display: flex;
  padding: 7px;
}

.payment-method-body .connect-box-container .dapp-wallets .img-box{
  width: 100%;
  position: relative;
  cursor: pointer;
  width: 100%;
  display: flex;
  flex-direction: column;
  background: #141821;
  border-radius: 10px;
  margin: 10px 0;
}

.payment-method-body .connect-box-container .dapp-wallets .img-box:hover{
  background: #1418218d;
}

.payment-method-body .connect-box-container .dapp-wallets .img-box .btn {
  text-align: center;
  width: 100%;
  border: 0px solid transparent;
  background: transparent;
  padding: 10px 0;
}

.payment-method-body .connect-box-container .dapp-wallets .img-box .btn img {
  object-fit: contain;
  width: 60px;
}

.payment-method-body .connect-box-container .dapp-wallets .img-box .btn img#opensea {
  margin: 10px 0;
  width: 50px;
}

.payment-method-body .connect-box-container .dapp-wallets .img-box .btn p {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  margin-top: 0;
  color: #a3a3a5;
}


.payment-method-body .connect-box-container .dapp-wallets .img-box .btn:focus {
  box-shadow: none;
  outline: none;
  border: none;
}



.settings-section.account-settings .sub-section {
  margin: 0 0 15px;
}

.settings-section.account-settings .sub-section .title {
  font-size: 21px;
}

.settings-section.account-settings .sub-section .sub-title {
  font-size: 14px;
}

.settings-section.account-settings .label-note {
  font-size: 13px;
  color: #a0aec0;
}

.settings-section.account-settings .form-group .form-inline input {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 5px;
  text-align: center;
  height: 50px;
  color: #ffffff;
  background: transparent;
  border: 0 solid transparent;
  padding-left: 0;
}

.settings-section.account-settings .form-group .form-inline {
  display: flex;
  flex-direction: row;
  height: 50px;
  background: #191d28;
  border-radius: 8px;
  border: 1px solid #2d3748f0;
}

.settings-section.account-settings .form-inline p {
  margin: auto;
  padding: 0;
  text-align: center;
  width: 50px;
  font-size: 16px;
  color: #a0aec0;
}

.settings-section.account-settings .form-group .btn.btn-outline {
  margin-top: 20px;
  background: transparent;
  color: #f7f7f7;
  border: 1px solid #718096;
}

.settings-section.account-settings .form-group .btn.btn-outline:hover {
  background: transparent;
  border: 1px solid #718096;
}

.verify-portal .form-group input {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 5px;
  text-align: center;
  height: 55px;
  color: #ffffff;
  background: #191d28;
  border: 1px solid #2d3748f0;
  padding-left: 0;
  border-radius: 8px;
}

.verify-portal .form-group input:focus {
  box-shadow: none;
  outline: none;
}

#verifyAcctPortal {
  display: none;
}

#verifyPasswordPortal {
  display: none;
}

.settings-section.password-settings .form-inline p {
  margin: auto;
  padding: 0;
  text-align: center;
  width: 50px;
  font-size: 16px;
  color: #a0aec0;
}

/* submit art section */
.upload-art {
  margin-top: 10px;
  margin-bottom: 15px;
}

.upload-label {
  font-size: 14px;
  font-weight: 700;
  color: #f7f7f7;
  margin-bottom: 8px;
}

.upload-art .upload-art-box {
  border: 3px dashed #7180967e;
  border-radius: 12px;
  text-align: center;
  min-height: 180px;
  max-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.upload-art .upload-art-box .text {
  font-size: 14px;
  color: #a0aec0;
  font-weight: 600;
}

.upload-art .upload-art-box .btn {
  font-size: 14px;
  font-weight: 500;
  color: #f7f7f7;
  padding: 10px 15px;
  background: #2d3748;
  border: 0 solid transparent;
  border-radius: 8px;
}

.upload-art .upload-art-box .upload-button-box {
  display: block;
}

.upload-art .upload-art-box .art-image-container {
  width: 100%;
  height: 300px;
  padding: 20px;
  position: relative;
  display: none;
}

.upload-art .upload-art-box .art-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  object-position: center;
}

.upload-art .upload-art-box .art-image-container .btn {
  background: #2d3748;
  border-radius: 5px;
  padding: 3px 10px;
  font-size: 15px;
  z-index: 1030;
  position: absolute;
  right: 30px;
  top: 30px;
}

/* affiliate section styles */
.aff-wrapper {
  padding: 20px;
  margin: 50px 0;
}

.aff-wrapper .aff-box {
  border: 1px solid #2d3748;
  border-radius: 10px;
  padding: 20px 15px;
  height: 180px;
  background: #1a202c;
  margin-bottom: 25px;
}

.aff-box .aff-flex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.aff-flex .btn.btn-primary {
  font-size: 18px;
  font-weight: 600;
  color: #a0aec0;
  height: 40px;
  width: 40px;
  text-align: center;
  background: transparent;
  border: 0;
}

.aff-flex .btn.btn-primary:focus {
  border: 1px solid #a0aec0;
  outline: none;
  box-shadow: none;
  background: transparent;
}

.aff-box .aff-code {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 800;
  color: #a0aec0;
  margin-bottom: 15px;
}

.aff-code .btn {
  font-size: 13px;
}

.aff-box .aff-link {
  margin-top: 5px;
  border: 1px solid #2d37488e;
  color: #7f99fb;
  font-size: 12px;
  font-weight: 600;
  text-transform: lowercase;
  border-radius: 6px;
  padding: 7px 10px;
}

.aff-card {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.aff-box p {
  margin-bottom: 0;
  padding-bottom: 0;
}

.aff-box .aff-h5 {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  color: #718096;
}

.aff-box .aff-h2 {
  font-size: 47px;
  text-transform: uppercase;
  font-weight: 800;
  color: #a0aec0;
  line-height: 100px;
}

.aff-box .aff-h2.aff-amt {
  font-size: 30px;
}

.aff-box .aff-p {
  font-size: 13px;
  text-transform: normal;
  font-weight: 600;
  color: #a0aec0;
}

.aff-icon {
  margin: auto 0;
}

.aff-icon .aff-fas {
  background: #718096;
  height: 70px;
  width: 70px;
  text-align: center;
  border-radius: 35px;
}

.aff-icon .aff-fas .fas {
  font-size: 35px;
  padding-top: 15px;
}

/* exhibition style section */

.ex-wrapper {
  padding: 20px;
  margin: 20px 0 50px;
}

.ex-wrapper .title {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #f7f7f7;
  /* font-family: "Neuton", serif; */
  margin-bottom: 25px;
}

.ex-wrapper .col-md-3 {
  padding: 6px;
}

.ex-wrapper .ex-show-box {
  margin-bottom: 30px;
  padding: 10px;
  border-radius: 10px;

  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.22);
  -webkit-box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.22);
  -moz-box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.22);
}

.ex-wrapper .ex-show-box .ex-img-box {
  text-align: center;
  cursor: pointer;
}

.ex-wrapper .ex-show-box .ex-img-box a {
  text-decoration: none;
}

.ex-wrapper .ex-show-box .ex-img-box img {
  width: 220px;
  height: 220px;
  border-radius: 10px;
  object-fit: cover;
} 

.ex-wrapper .ex-show-box .ex-details {
  height: 80px;
  text-align: center;
}

.ex-wrapper .ex-show-box .ex-name {
  margin-top: 15px;
  text-align: center;
}

.ex-wrapper .ex-show-box .ex-name a {
  text-decoration: none;
  color: #f7f7f7;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2; 
  -webkit-box-orient: vertical;
}

.ex-wrapper .ex-show-box .ex-title {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #a0aec0;
  margin-bottom: 0;
  padding-bottom: 0;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* trading section styles */
.trade-wrapper {
  padding: 20px 30px;
  margin: 50px 0;
}

.trade-hero-section .title {
  text-transform: capitalize;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 20px;
}

.trade-hero-section .sub-title {
  font-size: 15px;
  font-weight: 600;
}

.trade-hero-section .trade-content {
  list-style: none;
}

.trade-hero-section .trade-content li {
  font-size: 14px;
  margin-bottom: 15px;
}

.trade-hero-section .trade-button-section {
  margin-top: 30px;
}

.trade-hero-section .trade-button-section .btn {
  padding: 10px 50px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 15px;
  color: #f7f7f7;
  border-radius: 20px;
  background: #3962f6;
}

.trade-hero-section .trade-button-section .btn:hover {
  background: #597cfe;
}

.trade-image-section {
  text-align: center;
  margin-top: 60px;
}

.trade-image-section img {
  width: 90%;
}

/* porfolio section wrapper */
.portfolio-wrapper {
  margin-bottom: 50px;
}

.portfolio-networth {
  padding: 20px;
  background: #171a25;
  border-bottom: 1px solid #2d3748;
}

.portfolio-networth .net-worth {
  display: flex;
  flex-direction: row;
}

.portfolio-networth .net-worth .net-worth-img {
  height: 95px;
  width: 85px;
  border: 1px solid #2d3748f0;
  border-radius: 10px;
  overflow: hidden;
}

.portfolio-networth .net-worth .net-worth-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-networth .net-worth .net-worth-body {
  margin: auto 12px;
}

.portfolio-networth .net-worth .net-worth-body p {
  margin-bottom: 0;
  padding-bottom: 0;
}

.portfolio-networth .net-worth .net-worth-body p.title {
  font-size: 12px;
  font-weight: 700;
  color: #718096;
}

.portfolio-networth .net-worth .net-worth-body p.net-balance {
  font-size: 21px;
  font-weight: 900;
  color: #e5e5e5;
}

.portfolio-networth .net-worth .net-worth-body p.eth-balance {
  font-size: 15px;
  font-weight: 700;
  color: #a0aec0;
}

.portfolio-networth .net-worth .net-worth-body .status {
  font-size: 11px;
  font-weight: 700;
  color: #f7f7f7;
  padding: 0 7px;
  border-radius: 5px;
}

.portfolio-networth .net-worth .net-worth-body .status.profit {
  background: #007248;
}

.portfolio-networth .net-worth .net-worth-body .status.loss {
  background: #b00000;
}

.portfolio-wrapper .portfolio-header {
  border-bottom: 1px solid #2d3748;
  padding: 15px 20px 0;
}

.portfolio-wrapper .portfolio-header.marketplace-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 15px 30px 0 20px;
}

.portfolio-wrapper .portfolio-header.marketplace-header .btn {
  border-radius: 30px;
  color: #f7f7f7;
  background: #1877f2;
  border: 1px solid #1877f2;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;

  box-shadow: 1px 1px 3px 3px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 1px 1px 3px 3px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 1px 1px 3px 3px rgba(0, 0, 0, 0.5);
}

.portfolio-wrapper .head-title {
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 15px;
  margin-bottom: 0;
  border-bottom: 2px solid #7f99fb;
  width: fit-content;
}

.portfolio-section {
  margin: 30px 15px;
}

/* empty portfolio section */

.portfolio-section .empty-portfolio {
  text-align: center;
  padding: 50px;
}

.empty-portfolio h4 {
  font-size: 28px;
  font-weight: 700;
  color: #a0aec0;
  margin-bottom: 25px;
}

.empty-portfolio p {
  font-size: 18px;
  font-weight: 600;
  color: #a0aec0;
  margin-bottom: 25px;
}

.empty-portfolio .empty-img img {
  width: 160px;
}

.asset-box {
  border-radius: 10px;
  padding: 10px;
  background: #1a202c;
  cursor: pointer;
  margin-bottom: 30px;

  box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.2);
}

.asset-box:hover {
  border: 1px solid #2d3748;
}

.asset-box .asset-header {
  padding-bottom: 20px;
}

.asset-box .asset-header p {
  margin-bottom: 0;
  padding-bottom: 0;
}

.asset-box .asset-header .art-name {
  font-size: 18px;
  font-weight: 700;
  color: #f7f7f7;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.asset-box .asset-header .artist-name {
  font-size: 14px;
  font-weight: 600;
  color: #a0aec0;
}

.asset-box .asset-image {
  height: 200px;
  width: 240px;
  margin: auto;
}

.asset-box .asset-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.asset-box .asset-body {
  padding: 30px 0 10px;
}

.asset-box .asset-body hr {
  border: 1px solid #7180967e;
  margin: 10px 0;
}

.asset-box .asset-body .asset-info {
  display: flex;
  flex-direction: row;
  margin-bottom: 15px;
}

.asset-box .asset-body .asset-info .asset-das {
  margin-left: 50px;
}

.asset-box .asset-body .asset-info .asset-das .percent {
  color: #718096;
  font-size: 13px;
}

.asset-box .asset-body .asset-info .asset-das .status {
  font-size: 12px;
  font-weight: 700;
  color: #f7f7f7;
  padding: 0 8px;
  margin-left: 10px;
  border-radius: 5px;
}

.asset-box .asset-body .asset-info .asset-das .status.profit {
  background: #007248;
}

.asset-box .asset-body .asset-info .asset-das .status.loss {
  background: #b00000;
}

.asset-box .asset-body .asset-info p {
  margin-bottom: 0;
  padding-bottom: 0;
}

.asset-box .asset-body .asset-info .asset-title {
  font-size: 12px;
  font-weight: 700;
  color: #a0aec0;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.asset-box .asset-body .asset-info .asset-sub-title {
  font-size: 14px;
  font-weight: 600;
}

.asset-box .asset-body .asset-info .asset-sub-eth {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #a0aec0;
}

.asset-box .asset-body .asset-button {
  text-align: center;
}

.asset-box .asset-body .asset-button .btn {
  width: 80%;
  border-radius: 25px;
  font-weight: 700;
  font-size: 14px;
  color: #f7f7f7;
  padding: 9px 20px;
  background: #3761f9;

  box-shadow: 2px 2px 6px 1px rgba(0, 0, 0, 0.35);
  -webkit-box-shadow: 2px 2px 6px 1px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: 2px 2px 6px 1px rgba(0, 0, 0, 0.35);
}

/* listing details section */
.listing-details-wrapper {
  padding: 20px;
}

.artwork-img-section .artwork-info .artwork-name {
  font-size: 23px;
  color: #f7f7f7;
  font-weight: 700;
  padding-bottom: 0;
  margin-bottom: 0;
}

.artwork-img-section .artwork-info .artwork-artist {
  font-size: 15px;
  font-weight: 600;
  color: #a0aec0;
  text-transform: capitalize !important;
}

.artwork-img-section .art-work-img {
  width: 300px;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  margin: 40px 0;
}

.artwork-img-section .art-work-img img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.artwork-trade-buttons {
  padding: 20px 0;
  display: flex;
}

.artwork-trade-buttons .btn {
  font-size: 13px;
  font-weight: 700;
  padding: 12px 5px;
  text-transform: capitalize;
  letter-spacing: normal;
  border-radius: 5px;
  width: 45%;
  border: 0 solid transparent;
}

.artwork-trade-buttons .btn.btn-success {
  margin-right: 20px;
  background: #3962f6;
}

.artwork-trade-buttons .btn.btn-danger {
  background: #4b576a;
}

.artwork-trade-info {
  display: flex;
  flex-direction: row;
  border: 1px solid #2d37488e;
  justify-content: space-between;
  border-radius: 8px;
  padding: 15px 10px;
  background: #1a202c;
}

.artwork-trade-info p {
  margin-bottom: 0;
  padding-bottom: 0;
}

.artwork-trade-info .title {
  font-size: 13px;
  font-weight: 700;
  color: #a0aec0;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.artwork-trade-info .sub-title {
  font-size: 15px;
  font-weight: 600;
}

.artwork-trade-info .sub-eth {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #a0aec0;
}

.artwork-trade-info .percent {
  color: #718096;
  font-size: 13px;
}

.artwork-trade-info .status {
  font-size: 12px;
  font-weight: 700;
  color: #f7f7f7;
  padding: 0 8px;
  margin-left: 10px;
  border-radius: 5px;
}

.artwork-trade-info .status.profit {
  background: #007248;
}

.artwork-trade-info .status.loss {
  background: #b00000;
}

.artwork-details-section {
  margin-top: 40px;
}

.artwork-details-section .head-title {
  padding: 0 10px 8px;
  font-size: 14px;
  letter-spacing: 0.5px;
  margin-left: 5px;
}

.artwork-details-box {
  border: 1px solid #2d37488e;
  padding: 20px 15px;
  border-radius: 10px;
  /* background: #1a202c; */
}

.artwork-details-box .artwork-code {
  font-size: 16px;
  font-weight: 700;
  color: #f7f7f7;
  margin-bottom: 20px;
}

.artwork-details-box .artwork-content {
  margin: 20px 0;
}

.artwork-details-box .artwork-content p {
  margin-bottom: 0;
  padding-bottom: 0;
}

.artwork-details-box .artwork-content .head {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  color: #f7f7f7;
}

.artwork-details-box .artwork-content .sub-head {
  font-size: 12px;
  font-weight: 500;
  color: #a0aec0;
}

.artwork-details-box .artwork-content .sub-head.listing_status{
  font-weight: 600;
  color: #ffac1c;
  text-transform: uppercase;
}

.artwork-details-box .artwork-content .sub-head.listing_status.completed{
 color: #00cf83;
}

.artwork-details-box .artwork-content .sub-head .investor_status {
  text-transform: capitalize;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.artwork-details-box .artwork-content .sub-head .investor_status.pending {
  color: #fb5a5a;
}
.artwork-details-box .artwork-content .sub-head .investor_status.confirmed {
  color: #00cf83;
}

.artwork-details-box .artwork-content a {
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  color: #a0aec0;
}

.artwork-details-box .artwork-content a .fas {
  font-size: 14px;
  padding-right: 8px;
}

/* art modal section */
#buyArtPortal {
  display: none;
}

#sellArtPortal {
  display: none;
}

.buy_art_box .support-header p {
  padding-bottom: 0;
  margin-bottom: 0;
}

.buy_art_box hr {
  margin-top: 10px;
  border: 1px solid #7180967e;
  margin-bottom: 15px;
}

.art-info .art-info-header .art-name {
  font-size: 16px;
  color: #f7f7f7;
  font-weight: 700;
  padding-bottom: 0;
  margin-bottom: 0;
}

.art-info .art-info-header .art-artist {
  font-size: 12px;
  font-weight: 600;
  color: #a0aec0;
}

.art-info .art-details {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 15px 0;
}

.art-info .art-details p {
  margin-bottom: 5px;
  padding-bottom: 0;
}

.art-info .art-details .title-p {
  font-size: 13px;
  font-weight: 700;
  color: #a0aec0;
  text-transform: capitalize;
}

.art-info .art-details .details-p {
  font-size: 13px;
  font-weight: 600;
}

.art-info .art-details .percent {
  color: #718096;
  font-size: 12px;
}

.art-info .art-details .status {
  font-size: 11px;
  font-weight: 700;
  color: #f7f7f7;
  padding: 0 8px;
  margin-left: 10px;
  border-radius: 5px;
}

.art-info .art-details .status.profit {
  background: #007248;
}

.art-info .art-details .status.loss {
  background: #b00000;
}

.art-info .art-buy-input .form-group label {
  font-size: 13px;
}

.art-info .art-buy-input .form-group input {
  font-weight: 600;
  height: 40px;
}

.art-info .art-buy-input .form-group input#potential_returns {
  color: #718096;
}

.art-info .art-buy-input .form-group.form-btn {
  margin-top: 20px;
  margin-bottom: 0;
}

.art-info .art-buy-input .form-group.form-btn .btn {
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;

  box-shadow: 2px 2px 6px 1px rgba(0, 0, 0, 0.35);
  -webkit-box-shadow: 2px 2px 6px 1px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: 2px 2px 6px 1px rgba(0, 0, 0, 0.35);
}

.art-info .art-buy-input .form-group.form-btn .btn.btn-primary {
  background: #3962f6;
}

.art-info .art-buy-input .form-group.form-btn .btn.btn-success {
  background: #4b576a;
  border: 1px solid #4b576a;
}

/* exhibition details wrapper */
.exhb-details-wrapper .listing-details-wrapper {
  margin-top: 20px;
}
.exhb-details-wrapper .artwork-details-section {
  margin-top: 80px;
}

.exhb-details-wrapper .artwork-details-box .artwork-content {
  margin: 5px 0 25px;
}

.exhb-details-wrapper .artwork-img-section .artwork-trade-buttons .btn {
  font-size: 14px;
  width: 80%;
}

/* invest art modal section */
#investArtPortal {
  display: none;
}
#investArtPortal .portal-window-content {
  width: 33%;
}

.support_ticket_box.invest_art_box {
  padding: 0;
}

.support_ticket_box.invest_art_box .support-header {
  padding: 20px 20px 0;
}

.invest_art_box .support-header p {
  padding-bottom: 0;
  margin-bottom: 0;
}

.invest_art_box hr {
  margin-top: 10px;
  border: 1px solid #7180967e;
  margin-bottom: 0;
}

.invest_art_box .art-info {
  max-height: 85vh;
  overflow-y: auto;
  padding: 20px 20px;
}

.invest_art_box .art-info::-webkit-scrollbar {
  display: none;
}

.invest_art_box .art-info .art-info-header {
  display: flex;
  flex-direction: row;
}

.invest_art_box .art-info .art-info-header .art-info-img {
  width: 70px;
  height: 70px;
  overflow: hidden;
  border-radius: 8px;
}

.invest_art_box .art-info .art-info-header .art-info-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.invest_art_box .art-info .art-info-header .art-info-details {
  margin: auto 10px;
}

.invest_art_box .art-info .art-info-header .art-info-details p {
  padding-bottom: 0;
  margin-bottom: 0;
}

.invest_art_box .art-info .art-info-header .art-name {
  font-size: 15px;
  color: #f7f7f7;
  font-weight: 700;
}

.invest_art_box .art-info .art-info-header .art-artist {
  font-size: 13px;
  font-weight: 600;
  color: #a0aec0;
}

.invest_art_box .art-info .art-info-header .art-status {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.invest_art_box .art-info .art-info-header .art-status.pending {
  color: #fb5a5a;
}

.invest_art_box .art-info .dual-invest p {
  margin: 0;
  padding: 0;
}

.invest_art_box .art-info .dual-invest .label {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  color: #f7f7f7;
}

.invest_art_box .art-info .dual-invest .sub-label {
  text-transform: capitalize;
  font-size: 13px;
  font-weight: 600;
  color: #e0e0e0;
}

.invest_art_box .art-info .dual-invest .art-details {
  margin: 15px 0 15px;
}

.invest_art_box .art-info .dual-invest .art-details .pending {
  color: #fb5a5a;
}

.invest_art_box .art-info .dual-invest .art-details .confirmed {
  color: #00cf83;
}

.invest_art_box .art-info .art-details {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 20px 0 15px;
}

.invest_art_box .art-info .art-details p {
  margin-bottom: 6px;
  padding-bottom: 0;
}

.invest_art_box .art-info .art-details .title-p {
  font-size: 13px;
  font-weight: 700;
  color: #a0aec0;
  text-transform: capitalize;
}

.invest_art_box .art-info .art-details .details-p {
  font-size: 13px;
  font-weight: 600;
}

.invest_art_box .art-info .art-details .percent {
  color: #718096;
  font-size: 12px;
}

.invest_art_box .art-info .art-details .status {
  font-size: 11px;
  font-weight: 700;
  color: #f7f7f7;
  padding: 0 8px;
  margin-left: 10px;
  border-radius: 5px;
}

.invest_art_box .art-info .art-details .status.profit {
  background: #007248;
}

.invest_art_box .art-info .art-details .status.loss {
  background: #b00000;
}

.invest_art_box .art-info .art-buy-input .form-group label {
  font-size: 14px;
}

.invest_art_box .art-info .art-buy-input .form-group input {
  font-weight: 600;
  height: 40px;
}

.invest_art_box .art-info .art-buy-input .form-group.form-btn {
  margin-top: 20px;
  margin-bottom: 0;
}

.invest_art_box .art-info .art-buy-input .form-group.form-btn .btn {
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;

  box-shadow: 2px 2px 6px 1px rgba(0, 0, 0, 0.35);
  -webkit-box-shadow: 2px 2px 6px 1px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: 2px 2px 6px 1px rgba(0, 0, 0, 0.35);
}

.invest_art_box .art-info .art-buy-input .form-group.form-btn .btn.btn-primary {
  background: #3962f6;
}

.invest_art_box .art-info .art-buy-input .form-group.form-btn .btn.btn-success {
  background: #4b576a;
  border: 1px solid #4b576a;
}

.invest_art_box .art-info .art-returns {
  text-align: center;
}

.invest_art_box .art-info .art-returns p {
  margin: 0;
  padding: 0;
}

.invest_art_box .art-info .art-returns .label {
  text-transform: capitalize;
  font-size: 13px;
  font-weight: 600;
  color: #718096;
}

.invest_art_box .art-info .art-returns .return-value {
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 700;
  color: #a0aec0;
}

.invest_art_box .no-cert-section {
  padding: 20px;
}

.invest_art_box .no-cert-section h2 {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  margin: 0 20px 15px;
  line-height: 30px;
}

.invest_art_box .no-cert-section p {
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  color: #a0aec0;
}

.invest_art_box .no-cert-section .button-section {
  text-align: center;
  margin: 20px 0 10px;
}

.invest_art_box .no-cert-section .button-section .btn {
  font-size: 14px;
  letter-spacing: 0.5px;
  font-weight: 600;
  padding: 9px 25px;
  border-radius: 30px;
  background: #0077b5;
  border: 1px solid #0077b5;

  box-shadow: 1px 1px 3px 2px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 1px 1px 3px 2px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 1px 1px 3px 2px rgba(0, 0, 0, 0.5);
}

/* affiliate section styles */
.activity-wrapper {
  padding: 20px;
  margin-bottom: 50px;
}

.activity-section {
  padding: 20px;
  border-radius: 15px;
  border: 1px solid #2d37488e;
  background: #1a202c;
}

.activity-filter {
  display: flex;
  flex-direction: row;
}

.activity-filter .form-group {
  margin-right: 30px;
}

.activity-filter .form-group label {
  font-size: 13px;
  color: #718096;
  font-weight: 600;
  margin-bottom: 5px;
}

.activity-filter .form-group select {
  height: 40px;
  border-radius: 8px;
  background: #191d28;
  border: 1px solid #2d37488e;
  color: #a0aec0;
  font-size: 13px;
  font-weight: 600;
}

.activity-filter .form-group select option {
  letter-spacing: 1px;
  font-weight: 500;
}

.activity-filter .form-group select:focus {
  box-shadow: none;
  outline: none;
}

.activity-row {
  margin-top: 20px;
}

.activity-box-wrapper {
  margin: 20px 20px 10px 0;
  padding: 10px 20px;
  border: 1px solid #2d37488e;
  border-radius: 15px;
}
.activity-box-wrapper:hover {
  cursor: pointer;
  border: 2px solid #2d3748f0;
}

.activity-box-wrapper .activity-date {
  font-size: 14px;
  font-weight: 700;
  color: #2d3748;
}

.activity-box {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.activity-box p {
  margin: 0;
  padding: 0;
}

.activity-box .box-section {
  display: flex;
  flex-direction: row;
  width: 30%;
}

.activity-box .box-section .details-section {
  margin: auto 0;
}

.activity-box .box-section .details-section .title {
  font-size: 14px;
  font-weight: 700;
  color: #f7f7f7;
  text-transform: capitalize;
}

.activity-box .box-section .details-section .note-p {
  font-size: 12px;
  font-weight: 500;
  color: #a0aec0;
  text-transform: lowercase;
}

.activity-box .box-section .details-section .p-status {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #a0aec0;
}

.activity-box .box-section .details-section .p-status.successful {
  color: #00cf83;
}

.activity-box .box-section .details-section .p-status.pending {
  color: #fb5a5a;
}

.activity-box .box-section .details-section .p-status.failed {
  color: #fb5a5a;
}

.activity-box .box-section .details-section .p-status.processing {
  color: #ff8a4f;
}

.activity-box .box-section .details-section .btn {
  font-size: 12px;
  font-weight: 600;
  color: #f7f7f7;
  padding: 5px 15px;
  border-radius: 25px;
  background: #3962f6;
  border: 0 solid transparent;

  box-shadow: 2px 2px 6px 1px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 2px 2px 6px 1px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 2px 2px 6px 1px rgba(0, 0, 0, 0.4);
}

.activity-box .box-section .img-section {
  height: 40px;
  width: 40px;
  border-radius: 20px;
  overflow: hidden;
  margin-right: 7px;
  border: 1px solid #2d3748;
}

.activity-box .box-section .img-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #f7f7f7;
}






/* home box row one section */
.row-box-wrapper {
  border: 1px solid #2d3748;
  padding: 15px 10px;
  border-radius: 15px;
  margin-bottom: 30px;
  background: #1a202c;
  max-height: 300px;
}

.locked-balance-section {
  display: flex;
  flex-direction: row;
}

.locked-balance-section .locked-balance-section-img {
  height: 80px;
  width: 75px;
  border: 1px solid #2d3748f0;
  border-radius: 10px;
  margin-right: 5px;
  overflow: hidden;
}

.locked-balance-section .locked-balance-section-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.locked-balance-section .locked-balance-section-body {
  margin: auto 5px;
}

.locked-balance-section .locked-balance-section-body p {
  margin-bottom: 0;
  padding-bottom: 0;
}

.locked-balance-section .locked-balance-section-body p.title {
  font-size: 13px;
  font-weight: 700;
  color: #718096;
}

.locked-balance-section .locked-balance-section-body p.net-balance {
  font-size: 21px;
  font-weight: 800;
  color: #e5e5e5;
}

.locked-balance-section .locked-balance-section-body p.eth-balance {
  font-size: 14px;
  font-weight: 700;
  color: #a0aec0;
}

.transfer-locked {
  margin-top: 20px;
}

.transfer-locked .form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #a0aec0;
  margin-bottom: 8px;
}

.transfer-locked .form-group .form-inline {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.transfer-locked .form-group .input-group {
  margin-right: 5px;
  border: 2px solid #2d3748f0;
  border-radius: 8px;
  height: 40px;
  background: #141821;
  overflow: hidden;
}

.transfer-locked .form-group .input-group input {
  background: transparent;
  border: 0 solid transparent; 
  color: #f7f7f7;
  height: inherit;
}

.transfer-locked .form-group .input-group .btn.btn-primary {
  font-weight: 700;
  font-size: 14px;
  color: #a0aec0;
  background: #181c27;
  height: inherit;
  border: 0 solid transparent;
}

.transfer-locked .form-group .input-group input:focus {
  outline: none;
  box-shadow: none;
}

.transfer-locked .form-group .btn.btn-success {
  font-size: 14px;
  font-weight: 600;
  background: #0077b5;
  border-radius: 6px;
  border: 0 solid #0077b5;
  height: 40px;
}

.locked-balance-footer {
  margin-top: 25px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.locked-balance-footer p {
  margin-bottom: 0;
  padding-bottom: 0;
  max-width: 60%;
}

.locked-balance-footer p.foot-note {
  font-size: 12px;
  color: #718096;
  font-weight: 600;
}

.locked-balance-footer .btn {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 25px;
  background: #2d3748;
  border: 0 solid transparent;
}

.recent-trans-box .title {
  font-size: 14px;
  font-weight: 600;
  color: #e5e5e5;
  margin-bottom: 0;
  padding-bottom: 10px;
}

.recent-trans-box .recent-trans-wrapper {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.recent-trans-wrapper::-webkit-scrollbar {
  display: none;
  /* for Chrome, Safari, and Opera */
}

.recent-trans-wrapper .recent-trans-content{
  animation: scroll 420s linear infinite; /* Adjust the duration as needed */
  display: inline-block;
}

.recent-trans-wrapper .recent-art-content{
  animation: scroll 600s linear infinite; /* Adjust the duration as needed */
  display: inline-block;
}

@keyframes scroll {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}

.recent-activity {
  display: flex;
  flex-direction: row;
  margin-bottom: 15px;
}

.recent-activity .recent-activity-img {
  height: 50px;
  width: 50px;
  border: 1px solid #2d3748f0;
  border-radius: 6px;
  background: #191d28;
  margin-right: 5px;
  overflow: hidden;
  padding: 3px;
}

.recent-activity .recent-activity-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.recent-activity .recent-activity-details {
  margin: auto 5px;
  width: 75%;
}

.recent-activity-details p {
  margin: 0;
  padding: 0;
}

.recent-activity-details p.name {
  font-size: 13px;
  font-weight: 600;
  color: #a0aec0;

  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.recent-activity-details p.name .status {
  color: #00cf83;
}

.recent-activity-details p.name .amount {
  font-size: 13px;
  font-weight: 700;
  color: #e0e0e0;
  letter-spacing: 0.5px;
}

/* modal styles */
.recent_transfer_history{
  max-height: 80vh;
  min-height: 40vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.recent_transfer_history::-webkit-scrollbar {
  display: none;
  /* for Chrome, Safari, and Opera */
}

.recent_transfer_box{
  display: flex;
  flex-direction: row;
  padding: 10px 5px 10px 0;
  border-top: 1px solid #2d37488e;
  border-bottom: 1px solid #2d37488e;
  /* margin-bottom: 10px; */
}

.box_image_section{
  margin-right: 5px;
}

.box_image_section img{
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.recent_transfer_details{
  margin: auto 0 auto 5px;
}
.recent_transfer_details p{
  margin: 0;
  padding: 0;
  font-size: 13px;
  font-weight: 600;
}

.recent_transfer_details p .status{
  text-transform: uppercase;
  color: #a0aec0;
  font-size: 12px;
}
.recent_transfer_details p .status.processing{
  color: #ff8a4f;
}

.recent_transfer_details p .status.successful{
  color: #00cf83;
}

.recent_transfer_details p .status.failed{
  color: #fb5a5a;
}

.recent_transfer_details p.date {
  color: #a0aec0;
  float: right;
  font-weight: 500;
  font-size: 12px;
}

.empty_history_box{
  text-align: center;
  padding: 40px 30px;
  /* display: none; */
}

.empty_history_box .fas{
  font-size: 80px;
  color: #718096;
  margin-bottom: 20px;
}

.empty_history_box p{
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #a0aec0;
}