@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

body {
  margin: 0px;
  padding: 0px;
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: #F6F8FA;
}

a {
  text-decoration: none;
  -webkit-transition: all .3s ease 0s;
  -moz-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  color: #0137d2;
  font-family: "Plus Jakarta Sans", sans-serif;
}

a:hover {
  text-decoration: none;
  -webkit-transition: all .3s ease 0s;
  -moz-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  cursor: pointer
}

a:focus,
a:hover {
  border: none;
  text-decoration: none
}

button:focus {
  outline: 0px dotted;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
}

p {
  color: #333333;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 28px;
}

.mr__top {
  margin-top: 30px;
}

.mr__top__small {
  margin-top: 20px;
}

.mr__bottom {
  margin-bottom: 30px;
}

.mr__bottom__large {
  margin-bottom: 60px;
}

.mr__bottom__extra__large {
  margin-bottom: 160px;
}

.mr__bottom__small {
  margin-bottom: 15px;
}

.text__center {
  text-align: center;
}

.navbar__top {
  margin: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
  width: 100%;
  z-index: 10;
  background-color: #000000;
  position: fixed;
  top: 0;
  left: 0;
}

.navbar__top__inner {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9696079115239846) 0%, rgba(0, 0, 0, 0) 100%);
}

.navbar__top .navbar___brand {
  flex: 0 0 auto;
  width: 200px;
  margin: 0px auto;
  padding: 15px 0px;
}

.navbar__top .navbar___brand img {
  max-height: 72px;
  transition: all .6s ease-in-out;
}


.user__account__wrap {
  margin: 0;
  padding: 101px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.user__account__wrap h2 {
  color: #000;
  font-size: 28px;
  font-weight: 700;
  line-height: 155%;
}

.user__account__wrap .form__wrap {
  display: flex;
  padding: 48px 32px;
  flex-direction: column;
  align-items: center;
  background-color: #FFF;
  border: 1px solid #E3E3E3;
  border-radius: 16px;
  max-width: 560px;
  margin: 45px auto 0;
}

.user__account__wrap .form__wrap form {
  width: 100%;
}

.user__account__wrap .form__wrap .form__group__col {
  display: flex;
  column-gap: 24px;
}

.user__account__wrap .form__wrap .form__group {
  margin-bottom: 20px;
  width: 100%;
}

.user__account__wrap .form__wrap .form__group label {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000;
}

.user__account__wrap .form__wrap .form__group label span {
  color: #D3582B;
}

.user__account__wrap .form__wrap .form__group .form__control {
  border: 1px solid #E3E3E3;
  background-color: #fff;
  height: 60px;
  border-radius: 8px;
  box-shadow: none;
  font-size: 16px;
  padding: 20px;
}

.user__account__wrap .form__wrap .form__group .form__group__inner {
  display: flex;
  justify-content: space-between;
}

.user__account__wrap .form__wrap .form__group .form__group__check {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0px;
}

.user__account__wrap .form__wrap .form__group .form__group__check input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.user__account__wrap .form__wrap .form__group .form__group__check label {
  position: relative;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0px;
  display: flex;
  align-items: center;
  color: #676C6F;
}

.user__account__wrap .form__wrap .form__group .form__group__check label span {
  flex: 1;
}

.user__account__wrap .form__wrap .form__group .form__group__check label:before {
  content: '';
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid #D0D5DD;
  padding: 0px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 8px;
  height: 16px;
  width: 16px;
  flex: 0 0 16px;
  border-radius: 3px;
}

.user__account__wrap .form__wrap .form__group .form__group__check input:checked+label:before {
  border-color: #ea332a;
}

.user__account__wrap .form__wrap .form__group .form__group__check input:checked+label:after {
  content: '';
  display: block;
  position: absolute;
  top: 5px;
  left: 9px;
  width: 6px;
  height: 12px;
  border: solid #ea332a;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.user__account__wrap .form__wrap .form__group .form__group__inner a {
  color: #D3582B;
  font-size: 16px;
  border-bottom-color: transparent;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  margin-left: 5px;
}

.user__account__wrap .form__wrap .form__group .form__group__inner a:hover {
  color: #000;
  border-bottom-color: #000;
}

.user__account__wrap .form__wrap .btn__wrapp {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}

.user__account__wrap .form__wrap .btn__wrapp .submit__btn {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  padding: 0px;
  word-spacing: 3px;
  border: 0px;
  background-color: #C69B30;
  height: 60px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  transition: all .3s ease 0s;
  position: relative;
  width: 100%;
}

.user__account__wrap .form__wrap .btn__wrapp .submit__btn:hover {
  background-color: #000;
}

.user__account__wrapp__register .form__wrapp .form__wrapp__inner {
  width: 615px;
  max-width: 615px;
}

.user__account__wrapp__register .form__wrapp {
  padding: 50px 0px;
}

.user__account__wrap .form__wrap .form__group .select__wrapp {
  position: relative;
  display: flex;
  border: 0px;
  font-size: 20px;
  color: #161616;
  font-weight: 400;
  box-shadow: none;
  border-radius: 0px;
  flex: 1;
  background-color: #fff;
}

.user__account__wrap .form__wrap .form__group .select__wrapp .dropdown-toggle:after {
  display: none;
}

.user__account__wrap .form__wrap .form__group .select__wrapp .form__control {
  background-color: transparent;
  box-shadow: none;
  position: relative;
  z-index: 2;
}

.user__account__wrap .form__wrap .form__group .select__wrapp:after {
  margin: auto 0px auto auto;
  height: 5px;
  display: block;
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 15px;
  left: auto;
  height: 15px;
  width: 15px;
  background-image: url(../assets/images/arrow-down-black.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.user__account__wrap .form__wrap .form__group .bootstrap-select {
  padding: 0px;
}

.user__account__wrap .form__wrap .form__group .form__control .dropdown-toggle {
  height: 100%;
  background-color: transparent;
  box-shadow: none;
  border: 0px;
  padding: 0px;
  color: #727b82;
  font-size: 16px;
}

.user__account__wrap .form__wrap .form__group .form__control .dropdown-toggle:after {
  display: none;
}

.user__account__wrap .form__wrap .form__group .form__control .dropdown-toggle .filter-option {
  display: flex;
  align-items: center;
  padding: 0px 15px;
}

.user__account__wrap .form__wrap .form__group .form__control .dropdown-menu {
  padding: 0px;
  box-shadow: 0px 0px 10px 0 rgba(0, 0, 0, .09);
  border: 0px;
  border-radius: 0px;
  flex-direction: column;
  gap: 0px;
}

.user__account__wrap .form__wrap .form__group .form__control .dropdown-menu .active {
  background-color: #D3582B;
  color: #fff;
}

.user__account__wrap .form__wrap .form__group .form__control .dropdown-menu li {
  margin: 0px;
  width: 100%;
  height: auto;
  display: block;
}

.user__account__wrap .form__wrap .form__group .form__control .dropdown-menu li a {
  font-size: 14px;
  background-color: transparent;
  color: #727b82;
  padding: 10px;
  border-radius: 0px;
  text-align: left;
  text-transform: capitalize;
  border: 0px;
}

.user__account__wrap .form__wrap .form__group .form__control .dropdown-menu li a span.text {
  width: 100%;
  display: block;
}

.user__account__wrap .form__wrap .form__group .form__control .dropdown-menu li a:hover {
  background-color: #D3582B;
  color: #fff;
}

.user__account__wrap .form__wrap .form__group .input__group {
  border: 1px solid #d4d6d5;
  background-color: #fff;
  height: 60px;
  border-radius: 8px;
}

.user__account__wrap .form__wrap .form__group .input__group .form__control {
  border: 0px;
  border-radius: 0px;
  box-shadow: none;
  background-color: transparent;
}

.user__account__wrap .form__wrap .form__group .input__group .input__group__addon {
  width: 50px;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user__account__wrap p {
  color: #8A8585;
  font-size: 14px;
  font-weight: 600;
  max-width: 560px;
  margin: 20px auto 0;
}

.user__account__wrap a {
  color: #000;
  border-bottom-color: transparent;
  border-bottom-style: solid;
  border-bottom-width: 1px;
}

.user__account__wrap a:hover {
  color: #D3582B;
  border-bottom-color: #D3582B;
}


.user__account__wrap .register__form__wrap {
  max-width: 1032px;
}

.multisteps__form {
  width: 100%;
}

.multisteps__form__progress {
  display: flex;
  justify-content: space-between;
  max-width: 870px;
  margin: 0 auto 55px;
  position: relative;
}

.multisteps__form__progress__btn {
  transition-property: all;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  transition-delay: 0s;
  position: relative;
  padding-top: 20px;
  color: #8B939D;
  border: none;
  background-color: #fff;
  outline: none !important;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  /* flex-direction:column; */
  /* max-width:123px; */
  counter-increment: css-counter 1;
}

.multisteps__form__progress__btn span {
  margin-left: 0;
  max-width: 145px;
  flex: 0 0 145px;
  position: relative;
  z-index: 2;
  background-color: #fff;
}

.multisteps__form__progress__btn span:before {

  display: flex;
  width: 32px;
  height: 32px;
  content: "" counter(css-counter) "";
  border-radius: 50%;
  background-color: #8B939D;
  color: #fff;
  align-items: center;
  justify-content: center;
  margin: 0px auto 8px;
}

.multisteps__form__progress:after {
  position: absolute;
  top: 35px;
  left: 0;
  right: 0;
  margin: 0 auto;
  transition-property: all;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  transition-delay: 0s;
  display: block;
  width: 100%;
  max-width: 860px;
  height: 1px;
  content: '';
  background-color: #8B939D;
  z-index: 1;
}

.multisteps__form__progress__btn:first-child {
  justify-content: flex-start;
}

.multisteps__form__progress__btn:last-child {
  justify-content: flex-end;
}

.multisteps__form__progress__btn:last-child:after {
  display: none;
}

.multisteps__form__progress__btn.js__active span {
  color: #C69B30;
}

.multisteps__form__progress__btn.js__active span:before {
  background-color: #C69B30;
}

.multisteps-form__form {
  position: relative;
}

.multisteps__form__panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  opacity: 0;
  visibility: hidden;
}

.multisteps__form__panel.js__active {
  height: auto;
  opacity: 1;
  visibility: visible;
}



.multisteps__form .submit__btn {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  padding: 0px;
  word-spacing: 3px;
  border: 0px;
  background-color: #C69B30;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  transition: all .3s ease 0s;
  position: relative;
  width: 100%;
  max-width: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 45px auto 0;
}

.multisteps__form .submit__btn:hover {
  background-color: #000;
}


.custom-file-upload {
  cursor: pointer;
  background-color: transparent;
  transition: all 0.3s ease;
  padding: 30px;
  border: 1px dashed #DAE0EA;
  border-radius: 8px;
  text-align: center;
  font-size: 16px;
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 15px;
}

.custom-file-upload:hover {
  background-color: transparent;
}

.file-text {
  font-weight: 400;
  color: #8B939D;
  font-size: 16px;
}

i.ico__box {
  height: 20px;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

/* .custom-file-upload i {
            transition: transform 0.3s ease;
            font-size: 40px;
            color: #0d6efd;
            margin-bottom: 10px;
        }

        .custom-file-upload:hover i {
            transform: scale(1.1);
            color: #0d6efd;
        } */

.file-selected {
  border: 1px dashed #DAE0EA;
  background-color: transparent;
}

#file-upload {
  display: none;
}

button.btn {
  padding: 12px 30px;
  font-size: 1.2rem;
  border-radius: 8px;
}


/*Dashboras CSS*/

/* Page Wrapper */
.dashboard__page__container__wrapper {
  display: flex;
  flex-direction: row;
}


/* HEADER */
.dashboard__header {
  background: #000;
}

.dashboard__header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.profile__btn__list__item {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-direction: row;
  border-radius: 100px;
  background: #C69B30;
  padding: 8px 12px 8px 10px;
}

.user__profile__img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  object-position: center center;
}

.user__profile__name {
  color: #FFF;
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

/* SIDEBAR */
.dashboard__sidebar {
  width: 280px;
  background: #fff;
  min-height: 100vh;
  border-right: 1px solid #eee;
}

.dashboard__menu {
  list-style: none;
  padding: 20px;
  margin: 0;
}

.dashboard__menu li a {
  color: #8B939D;
  font-family: "Plus Jakarta Sans";
  font-size: 18px;
  line-height: 21px;
  font-style: normal;
  font-weight: 500;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 16px;
  margin-bottom: 6px;
  border-radius: 8px;
  text-decoration: none;
}

.dashboard__menu li a.active,
.dashboard__menu li a:hover {
  color: #000;
  border-radius: 8px;
  background: linear-gradient(90deg, #FFF4E4 47.41%, rgba(255, 244, 228, 0.00) 82.76%);
}

.menu__divider {
  background: #D0D0D0;
  height: 1px;
  margin: 63.5px auto;
}

/* CONTENT */
.dashboard__content {
  padding: 32px;
  width: 100%;
}

.dashboard__page__title {
  color: #000;
  font-family: "Plus Jakarta Sans";
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 43.4px;
}

.dashboard__content>.page__title__row {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard__card__box__row__components {
  padding: 32px;
  border-radius: 12px;
  background: #FFF;
}

/* TOP CARDS */
.dashboard__card__links {
  margin-bottom: 56px;
}

.dashboard__card {
  padding: 53px 73px 53px 74px;
  border-radius: 12px;
  border: 1px solid #F4E8D8;
  background: linear-gradient(180deg, #FFF4E4 0%, #FFF 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.dashboard__card a{
  text-align: center;
}
.dashboard__card .dashboard__card__item__img {
  width: 64px;
  height: 64px;
  object-fit: scale-down;
  margin-bottom: 24px;
}


.dashboard__card__box__wrapper {
  padding: 32px;
  border-radius: 12px;
  background: #FFF;
  display: flex;
  flex-wrap: wrap;
  gap: 27px;
}

.dashboard__card__box {
  width: 20%;
  flex-grow: 1;
}

.dashboard__card__item__title {
  margin: 0px;
  color: #000;
  font-family: "Plus Jakarta Sans";
  font-size: 20px;
  font-style: normal;
  line-height: 24px;
}


/* INPORTANTS LINKS */
.important__links__card {
  margin-bottom: 32px;
}

.important__link__heading {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 26.1px;
  margin-bottom: 16px;
}

.important__links__card .important__links__card__inner__row .important__links__card__inner {
  flex-grow: 1;
  position: relative;
  overflow: hidden;
}

.important__links__card .important__links__card__inner__row .important__links__card__inner:nth-child(1) {
  border-radius: 16px;
  border: 1px solid #AECFAE;
  background: #E7F3E7;
  padding: 22px 24px;

}

.important__links__card .important__links__card__inner__row .important__links__card__inner:nth-child(2) {
  border-radius: 16px;
  border: 1px solid #C5E0E5;
  background: #E7F1F3;
  padding: 22px 24px;
}

.important__links__floating__img__box {
  width: 150px;
  position: absolute;
  top: 0;
  right: 0;
}

.important__links__card .important__links__card__inner__row .important__links__card__inner .important__links__floating__img__box::before,
.important__links__card .important__links__card__inner__row .important__links__card__inner .important__links__floating__img__box::after {
  position: absolute;
  top: 0;
}

.important__links__card .important__links__card__inner__row .important__links__card__inner:nth-child(1) .important__links__floating__img__box::before {
  content: url("../assets/images/rectangle-shape-green01.svg");
  left: -88px;
}

.important__links__card .important__links__card__inner__row .important__links__card__inner:nth-child(1) .important__links__floating__img__box::after {
  content: url("../assets/images/rectangle-shape-green02.svg");
  left: -90px;
  z-index: 1;
}

.important__links__card .important__links__card__inner__row .important__links__card__inner:nth-child(2) .important__links__floating__img__box::before {
  content: url("../assets/images/rectangle-shape-blue01.svg");
  left: -88px;
}

.important__links__card .important__links__card__inner__row .important__links__card__inner:nth-child(2) .important__links__floating__img__box::after {
  content: url("../assets/images/rectangle-shape-blue02.svg");
  left: -90px;
  z-index: 1;
}

.important__links__card__inner__row {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
}

.important__links__card__holder {
  display: flex;
  flex-direction: row;
  gap: 12px;
}

.important__links__content h5 {
  color: #0E0E0E;
  font-family: "Plus Jakarta Sans";
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 24.65px;
  margin: 0;
}

.important__links__content p {
  width: 190px;
  color: #5B5B5B;
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21.7px;
  letter-spacing: 0.14px;
  margin: 0;
}

.important__links__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* TRANSACTIONS */

.recent__transaction__card {
  border-radius: 16px;
  border: 1px solid #EEF0F5;
  background: #F9F9F9;
  padding: 32px;
}

.recent__transaction__card .page__title__row {
  margin-bottom: 24px;
}

.recent__transaction__card .page__title__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.recent__transaction__heading {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 26.1px;
  margin: 0;
}

.transaction__all__btn {
  color: #746868;

  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  /* 18.9px */
}

.recent__transaction__table {
  border-radius: 16px;
  border: 1px solid #EEF0F5;
  padding: 32px !important;
}

.transaction__table {
  width: 100%;
  border-collapse: collapse;
}

.transaction__table tr {
  border-bottom: 1px dashed #e5e7eb;
}

.transaction__table td {
  padding: 12px 0px;
  vertical-align: middle;
}

.transaction__table .user__cell {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  color: #363F4B;
}

.transaction__table .user__cell img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.transaction__table .date__cell {
  font-size: 12px;
  line-height: 16.2px;
  color: #5D6979;
  font-style: normal;
  font-weight: 500;
}

.transaction__table .date__cell .date__time {
  color: #8B939D;
}

.transaction__table .user__cell span {
  color: #363F4B;
  font-size: 16px;
  line-height: 23.2px;
}

.transaction__table .amount__cell {
  text-align: right;
}

.transaction__table .amount__cell__content__wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.transaction__table .amount__cell small {
  display: block;
  font-size: 12px;
  line-height: 16.2px;
  color: #8B939D;
  margin-bottom: 0;
  letter-spacing: 0.12px;
}

.transaction__table .amount__cell strong {
  font-size: 14px;
  line-height: 18.9px;
  font-weight: 700;
  letter-spacing: -0.14px;
}

.transaction__table .amount__cell.received strong {
  color: #1CAB04;
}

.transaction__table .amount__cell.sent strong {
  color: #E50707;
}


/*Dashboard CSS End*/

.dashboard__portfolio__accordian__box__wrapper {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.portfolio__accordian__box {
  flex: 1;
  border-radius: 16px;
  border: 1px solid #E3E3E3;
  background: #F9F9F9;
  padding: 48px 32px;
}


.portfolio-accordion {
  border-radius: 12px;
  overflow: hidden;
}

.portfolio-accordion .accordion-item {
  border-bottom: 1px solid #D0D0D0;
}



.portfolio-accordion .accordion-header {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  line-height: 21px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

.portfolio-accordion .accordion-icon {
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.portfolio-accordion .accordion-icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23180F02' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.portfolio-accordion .accordion-icon:before {
  display: none;
}

.portfolio-accordion .accordion-item.active .accordion-icon {
  transform: rotate(-180deg);
}

.portfolio-accordion .accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: 0.35s ease;
}

.portfolio-accordion .accordion-item.active .accordion-body {
  max-height: 300px;
  padding-bottom: 16px;
}

.portfolio-accordion .accordion-body p,
.portfolio-accordion .accordion-body li {
  color: #180F02;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24.8px;
  margin: 0px;
}

.portfolio-accordion .accordion-body ul {
  list-style: none;
  padding: 0px;
}

/* Portfolio Content Wrapper - API Content Styling */
.portfolio__content__wrapper {
  border-radius: 16px;
  border: 1px solid #E3E3E3;
  background: #F9F9F9;
  padding: 48px 32px;
  margin-bottom: 32px;
}

.portfolio__content__wrapper * {
  color: #180F02;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.4px;
  margin-bottom: 16px;
}

.portfolio__content__wrapper strong {
  font-weight: 600;
  color: #180F02;
}

.portfolio__content__wrapper h1,
.portfolio__content__wrapper h2,
.portfolio__content__wrapper h3,
.portfolio__content__wrapper h4,
.portfolio__content__wrapper h5,
.portfolio__content__wrapper h6 {
  font-weight: 600;
  color: #180F02;
  margin-top: 24px;
  margin-bottom: 16px;
}

.portfolio__content__wrapper h1 {
  font-size: 28px;
}

.portfolio__content__wrapper h2 {
  font-size: 24px;
}

.portfolio__content__wrapper h3 {
  font-size: 20px;
}

.portfolio__content__wrapper ul,
.portfolio__content__wrapper ol {
  margin-left: 20px;
  margin-bottom: 16px;
}

.portfolio__content__wrapper li {
  margin-bottom: 8px;
}

.portfolio__content__wrapper p:last-child {
  margin-bottom: 0;
}

.portfolio__content__wrapper div {
  margin-bottom: 16px;
}

.portfolio__content__wrapper div:last-child {
  margin-bottom: 0;
}

/*------------- Account Page CSS -------------*/

.gbl__btn {
  color: #FFF;

  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 100px;
  background: #C69B30;
  padding: 12px 20px;
  border: 0;
}

.account__settings__tabs {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
}

.account__settings__tabs .account__tabs {
  list-style: none;
  margin: 0;
  width: 370px;
  border-radius: 16px;
  border: 1px solid #E3E3E3;
  background: #F9F9F9;
  padding: 48px 32px;
  position: relative;
}



.account__settings__tabs .account__tab {
  color: #8B939D;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.account__settings__tabs .account__tabs .account__tab:first-child {
  padding-bottom: 24px;
}

.account__settings__tabs .account__tabs .account__tab:last-child {
  padding-top: 24px;
}

.account__settings__tabs .account__tab+.account__tab {
  border-top: 1px solid #D0D0D0;
}

.account__settings__tabs .account__tab.active {
  color: #000;
}

.account__settings__tabs .account__tab.active:before {
  content: '';
  width: 4px;
  height: 54px;
  position: absolute;
  left: 0;
  background: #D3582B;
}

.account__settings__tabs .account__tab .arrow {
  font-size: 18px;
}

.account__settings__tabs .account__tab .arrow:before {
  content: url("/assets/images/caret-right.svg");
  width: 22px;
  height: 22px;
}

.account__settings__tabs .account__tabs .account__tab.active .arrow:before {
  content: url("/assets/images/caret-right-active.svg");
  width: 22px;
  height: 22px;
}

/* RIGHT CONTENT */
.account__settings__tabs .account__tab__content {
  flex: 1;
  padding: 48px 32px;
  border-radius: 16px;
  border: 1px solid #E3E3E3;
  background: #F9F9F9;
}

.account__settings__tabs .tab__panel {
  display: none;
}

.account__settings__tabs .tab__panel.active {
  display: block;
}

.account__settings__tabs .tab__content__title {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  padding-bottom: 17px;
  border-bottom: 1px solid #D0D0D0;
  margin-bottom: 24px;
}

/* FORM */
.account__settings__tabs .form__group {
  margin-bottom: 20px;
}

.account__settings__tabs .form__group label {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 8px;
}

.account__settings__tabs .form__group input {
  width: 100%;
  color: #8B939D;
  font-family: "Plus Jakarta Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  border-radius: 8px;
  border: 1px solid #E3E3E3;
  background: #FFF;
  padding: 16px 24px;
}

.account__settings__tabs .input__icon {
  position: relative;
}

.account__settings__tabs .input__icon .icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #999;
}

.account__settings__tabs .muted {
  color: #888;
  font-size: 14px;
}

/*------------- End Accounts Page CSS -------------*/

/*------------- Payments Page CSS -------------*/

.contact__list__card {
  border-radius: 16px;
  border: 1px solid #EEF0F5;
  background: #F9F9F9;
  padding: 32px;
}

.contact__list__card .page__title__row {
  margin-bottom: 24px;
}

.contact__list__card .page__title__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact__list__card .contact__card__heading {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 26.1px;
  margin: 0;
}

.add__new__btn {
  color: #FFF !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 100px;
  background: #000;
  padding: 12px 20px;
}

.contact__list__card .contact__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.contact__list__card .contact__table tr {
  border-bottom: 1px dashed #e5e7eb;
}

.contact__list__card .contact__table td {
  padding: 12px 0px;
  vertical-align: middle;
}

.contact__list__card .contact__table .user__cell {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  color: #363F4B;
}

.contact__list__card .contact__table .user__cell img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 16px;
}



.contact__list__card .divider {
  width: 3px;
  height: 3px;
  background: #818181;
  margin: 0 24px;
  border-radius: 30px;
}

.contact__list__card .user__contact__details__cell__wrapper {
  display: flex;
  align-items: center;
}

.contact__list__card .contact__table .contact__cell a {
  font-size: 14px;
  line-height: 18.9px;
  color: #8B939D !important;
  font-style: normal;
  font-weight: 500;
}



.contact__list__card .contact__table .user__cell span {
  color: #363F4B;
  font-size: 16px;
  line-height: 23.2px;
}


/*-------------Payment PopUp-------------*/

/*------------- Overlay------------- */
.payment__send__popup__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/*------------- Popup box -------------*/
.payment__send__popup {
  width: 495px;
  border-radius: 16px;
  border: 1px solid #E3E3E3;
  background: #F9F9F9;
  padding: 48px 32px;
}

/*------------- Header -------------*/
.payment__send__popup__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 16px 12px;
  border-radius: 8px;
  border: 1px solid #EEF0F5;
  background: #FFF;
}

.payment__send__popup__user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.payment__send__popup__avatar .user__avatar {
  width: 48px;
  height: 48px;
  object-fit: cover;
  object-position: center;
}

.payment__send__popup__info h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.payment__send__popup__info p {
  margin: 2px 0 0;
  font-size: 12px;
  color: #8B939D;
}

.payment__send__popup__change {
  border: 1px solid #E5E7EB;
  background: #fff;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  cursor: pointer;
}

/*------------- Message -------------*/
.payment__send__popup__textarea {
  color: #8B939D;
  font-size: 14px;
  line-height: 18.9px;
  letter-spacing: -0.14px;
  width: 100%;
  height: 105px;
  border: 1px solid #EEF0F5;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 20px;
  resize: none;
}

/*------------- Amount -------------*/

.payment__send__popup__amount {
  border-radius: 8px;
  border: 1px solid #EEF0F5;
  background: #FFF;
  padding: 12px;
}

.payment__send__popup__amount label {
  font-size: 12px;
  color: #8B939D;
  line-height: 16.2px;
  letter-spacing: 0.12px;
}

.amount__input__wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px;
  margin-top: 16px;
}

.payment__send__popup__amount .amount__input {
  color: #0E0E0E;
  font-size: 28px;
  font-weight: 700;
  line-height: 40.6px;
  outline: 0 !important;
  border: 0;
  padding: 0px;
  max-width: calc(100% - 40px);
}

.payment__send__popup__amount .amount__input__wrapper strong {
  font-size: 18px;
}

.payment__send__popup__amount .amount__input__wrapper .currency {
  font-size: 16px;
  color: #2563EB;
  line-height: 21.6px;
  font-weight: 600;
  letter-spacing: 0.16px;
}

/*------------- Send button -------------*/
.payment__send__popup .payment__send__popup__btn {
  width: 100%;
  background: #0A5A00;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 100px;
  margin-top: 16px;
  font-size: 15px;
  cursor: pointer;
  line-height: 20.25px;
  letter-spacing: 0.15px;
  margin-top: 35px;
}

.payment__send__popup .payment__send__popup__info__details {
  display: flex;
  align-items: center;
  margin-top: 4px;
}

.payment__send__popup .payment__send__popup__info__details a {
  color: #8B939D;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12px;
  line-height: 16.2px;
}

.payment__send__popup .payment__send__popup__info__details .divider {
  width: 3px;
  height: 3px;
  background: #818181;
  margin: 0 6px;
  border-radius: 100%;
}

/*------------- create User PopUp -------------*/

/*------------- Overlay -------------*/
.contact__popup__overlay{
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/*------------- Popup box -------------*/
.contact__create__popup {
  width: 495px;
  border-radius: 16px;
  border: 1px solid #E3E3E3;
  background: #F9F9F9;
  padding: 48px 32px;
  position: relative;
}

/*------------- Header -------------*/
.contact__create__popup__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.contact__create__popup__user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact__create__popup__avatar .user__avatar {
  width: 48px;
  height: 48px;
  object-fit: cover;
  object-position: center;
}

.contact__create__popup__info h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.contact__create__popup__info p {
  margin: 2px 0 0;
  font-size: 12px;
  color: #8B939D;
}

.contact__create__popup__change {
  border: 1px solid #E5E7EB;
  background: #fff;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  cursor: pointer;
}

.create__contact__form label {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 16.8px;
  margin-bottom: 8px;
}

.create__contact__form .form-control {
  border-radius: 8px;
  border: 1px solid #E3E3E3;
  background: #FFF;
  padding: 12px;
}

.create__contact__form .form-group {
  margin-bottom: 20px;
}

.create__contact__form .form-group:last-child {
  margin-bottom: 0 !important;
}



.contact__create__popup__amount .amount__input strong {
  font-size: 18px;
}

.contact__create__popup__amount .amount__input .currency {
  font-size: 16px;
  color: #2563EB;
  line-height: 21.6px;
  font-weight: 600;
  letter-spacing: 0.16px;
}

/*------------- Send button -------------*/
.contact__create__popup .contact__create__popup__send {
  width: 100%;
  background: #0A5A00;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 100px;
  margin-top: 16px;
  font-size: 15px;
  cursor: pointer;
  line-height: 20.25px;
  letter-spacing: 0.15px;
  margin-top: 12px;
}

.contact__create__popup .contact__create__popup__info__details {
  display: flex;
  align-items: center;
  margin-top: 4px;
}

.contact__create__popup .contact__create__popup__info__details a {
  color: #8B939D;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12px;
  line-height: 16.2px;
}

.contact__create__popup .contact__create__popup__info__details .divider {
  width: 3px;
  height: 3px;
  background: #818181;
  margin: 0 6px;
  border-radius: 100%;
}

.create__contact__popup__change {
  width: 45px;
  height: 45px;
  border: 0;
  background: #fff;
  border-radius: 30px;
  padding: 10px;
  position: absolute;
  right: -10px;
  top: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.create__contact__popup__change img {
  max-width: 100%;
}

/*------------- End Payments Page CSS -------------*/

/*------------- Requests Page CSS -------------*/

.request__list__card {
  border-radius: 16px;
  border: 1px solid #EEF0F5;
  background: #F9F9F9;
  padding: 32px;
}

.request__list__card .page__title__row {
  margin-bottom: 24px;
}

.request__list__card .page__title__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.request__list__card .request__card__heading {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 26.1px;
  margin: 0;
}

.add__request__btn {
  color: #FFF !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 100px;
  background: #000;
  padding: 12px 20px;
}

.request__list__card .request__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.request__list__card .request__table tr {
  border-bottom: 1px dashed #e5e7eb;
}

.request__list__card .request__table td {
  padding: 12px 0px;
  vertical-align: middle;
}

.request__list__card .request__table .user__cell {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  color: #363F4B;
}

.request__list__card .request__table .user__cell img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 16px;
}



.request__list__card .divider {
  width: 3px;
  height: 3px;
  background: #818181;
  margin: 0 24px;
}

.request__list__card .user__request__details__cell__wrapper {
  display: flex;
  align-items: center;
}

.request__list__card .request__date {
  color: #5D6979;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 16.2px;
  letter-spacing: 0.12px;
  width: 100%;
  text-align: center;
}

.request__list__card .request__date .request__date__time {
  color: #8B939D;
}

.request__list__card .request__table .request__cell a {
  font-size: 14px;
  line-height: 18.9px;
  color: #8B939D !important;
  font-style: normal;
  font-weight: 500;
}

.request__list__card .request__table .user__cell span {
  color: #363F4B;
  font-size: 16px;
  line-height: 23.2px;
}

.request__price {
  text-align: right;
}

.request__price .request__price__txt {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 18.9px;
  letter-spacing: -0.14px;
}



/* Search Form */
.request__search__form {
  margin-bottom: 24px;
}

.request__search__form .request__search__field {
  position: relative;
  width: 100%;
}

.request__search__form .request__search__input {
  width: 100%;
  padding: 14px 44px;
  font-size: 14px;
  line-height: 18.9px;
  color: #8B939D;
  outline: none;
  border-radius: 35px;
  border: 1px solid #EEF0F5;
  background: #FFF;
}

.request__search__form .request__search__input::placeholder {
  color: #9ca3af;
}

.request__search__form .request__search__input:focus {
  border-color: #d1d5db;
}

.request__search__form .search__icon {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  font-size: 16px;
  color: #9ca3af;
  pointer-events: none;
  display: flex;
}


.request__list__table {
  border-radius: 8px;
  border: 1px solid #EEF0F5;
  background: #F9F9F9;
  padding: 30px;
}


/* Request PopUp */

/* Overlay */
.request__popup__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Popup box */
.request__popup {
  width: 495px;
  border-radius: 16px;
  border: 1px solid #E3E3E3;
  background: #F9F9F9;
  padding: 48px 32px;
}

/* Header */
.request__popup__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 16px 12px;
  border-radius: 8px;
  border: 1px solid #EEF0F5;
  background: #FFF;
}

.request__popup__user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.request__popup__avatar .user__avatar {
  width: 48px;
  height: 48px;
  object-fit: cover;
  object-position: center;
}

.request__popup__info h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.request__popup__info p {
  margin: 2px 0 0;
  font-size: 12px;
  color: #8B939D;
}

.request__popup__change {
  border: 1px solid #E5E7EB;
  background: #fff;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  cursor: pointer;
}

/* Message */
.request__popup__textarea {
  color: #8B939D;
  font-size: 14px;
  line-height: 18.9px;
  letter-spacing: -0.14px;
  width: 100%;
  height: 105px;
  border: 1px solid #EEF0F5;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 20px;
  resize: none;
}

/* Amount */

.request__popup__amount {
  border-radius: 8px;
  border: 1px solid #EEF0F5;
  background: #FFF;
  padding: 12px;
}

.request__popup__amount label {
  font-size: 12px;
  color: #8B939D;
  line-height: 16.2px;
  letter-spacing: 0.12px;
}

.amount__input__wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px;
  margin-top: 16px;
}

.request__popup__amount .amount__input {
  color: #0E0E0E;
  font-size: 28px;
  font-weight: 700;
  line-height: 40.6px;
  outline: 0 !important;
  border: 0;
  padding: 0px;
  max-width: calc(100% - 40px);
}

.request__popup__amount .amount__input__wrapper strong {
  font-size: 18px;
}

.request__popup__amount .amount__input__wrapper .currency {
  font-size: 16px;
  color: #2563EB;
  line-height: 21.6px;
  font-weight: 600;
  letter-spacing: 0.16px;
}

/* Send button */
.request__popup__send {
  width: 100%;
  background: #0A5A00;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 100px;
  margin-top: 16px;
  font-size: 15px;
  cursor: pointer;
  line-height: 20.25px;
  letter-spacing: 0.15px;
  margin-top: 35px;
}

.request__popup__info__details {
  display: flex;
  align-items: center;
  margin-top: 4px;
}

.request__popup__info__details a {
  color: #8B939D;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12px;
  line-height: 16.2px;
}

.request__popup__info__details .divider {
  width: 3px;
  height: 3px;
  background: #818181;
  margin: 0 6px;
  border-radius: 100%;
}

/*------------- Request Btn ------------- */
.request__money__wrapper {
  text-align: right;
}
.request__money__btn {
      display: inline-block;
  color: #FFF !important;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: normal;
  padding: 12px 20px;
  border-radius: 100px;
  background: #C69B30;
}

/*------------- End Requests Page CSS -------------*/


/*------------- Transaction Requested Page -------------*/

/* Request PopUp */

/* Overlay */
.transaction__request__popup__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Popup box */
.transaction__request__popup {
  width: 495px;
  border-radius: 16px;
  border: 1px solid #E3E3E3;
  background: #F9F9F9;
  padding: 48px 32px;
  position: relative;
}

/* Header */
/*.transaction__request__popup__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 16px 12px;
  border-radius: 8px;
  border: 1px solid #EEF0F5;
  background: #FFF;
}*/

.transaction__request__icon {
 width: 64px;
margin-bottom: 8px;
}
.transaction__request__icon__title {
  color: #000;
font-size: 22px;
font-style: normal;
font-weight: 700;
line-height: 31.9px;
  margin-bottom: 0px;
}

.transaction__request__date__time {
color: #8B939D;
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: 18.9px;
letter-spacing: 0.14px;
}

.transaction__request__popup__header {
    display: flex;
    justify-content: flex-end;
}


.transaction__request__popup__change {
  cursor: pointer;
  width: 45px;
  height: 45px;
  border: 0;
  background: #fff;
  border-radius: 30px;
  padding: 10px;
  position: absolute;
  right: -10px;
  top: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.transaction__request__popup__change img {
  max-width: 100%;
}

.transaction__request__icon__text__box {
    text-align: center;
    margin: 20px 0;
}

.transaction__request__icon__wrap {
    width: 56px;
    height: 56px;
    background: #e0f2fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.transaction__request__icon__title {
    font-size: 20px;
    font-weight: 700;
}

.transaction__request__date__time {
    color: #6b7280;
    font-size: 14px;
}

.transaction__request__card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
}

.transaction__request__section__title {
    color: #000;
font-size: 14px;
font-style: normal;
font-weight: 700;
line-height: 20.3px;
margin-bottom: 10px;
}

.transaction__request__user__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.transaction__request__user__info {
    display: flex;
    gap: 12px;
}

.transaction__request__avatar {
width: 44px;
  height: 44px;
  background: #005183;
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.transaction__request__name {
      color: #363F4B;
font-size: 16px;
font-style: normal;
font-weight: 600;
line-height: 23.2px;
  margin-bottom: 4px;
}

.transaction__request__meta {
  color: #8B939D;
font-size: 12px;
font-style: normal;
font-weight: 500;
line-height: 16.2px;
letter-spacing: 0.12px;
margin-bottom: 0px;
}

.transaction__request__amount {
    font-size: 18px;
    font-weight: 700;
}

.transaction__request__divider {
    border-bottom: 1px dashed #E3E3E3;
    margin: 19px 0;
}

.transaction__request__details__table {
    width: 100%;
    font-size: 14px;
}

.transaction__request__details__table td {
    padding: 6px 0;
}

.transaction__request__details__table td:last-child {
    text-align: right;
    font-weight: 500;
}

.transaction__request__details__table .total__row td {
    font-weight: 700;
    padding-top: 12px;
}
.transaction__request__details__table__heading {
    color:  #8B939D;
font-size: 13px;
font-style: normal;
font-weight: 500;
line-height: 17.55px;
letter-spacing: 0.13px;
}


/*------------- End Transaction Requested Page -------------*/



/*------------- Exchnage Card ------------- */
.exchange__card {

  padding: 24px 16px;
  border-radius: 8px;
  border: 0.5px solid #E3E3E3;

  background: #F9F9F9;
}

.exchange__card .exchange__row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  position: relative;
}

.exchange__card .currency__select {
  flex: 1;
  display: flex;
  align-items: center;
  border: 1px solid #E3E3E3;
  border-radius: 8px;
  padding: 16px 25px;
  background: #fff;
}

.exchange__card .currency__select img {
  width: 26px;
  height: 26px;
  object-fit: cover;
  margin-right: 16px;
  border-radius: 30px;
}

.exchange__card .currency__select select {
  border: none;
  outline: none;
  width: 100%;
  background: none;
  color: #8B939D;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

.exchange__card .swap__btn {
  width: 40px;
  height: 40px;
  cursor: pointer;
  border-radius: 50px;
  border: 0.5px solid #E3E3E3;
  background: #F9F9F9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.exchange__card input {
  flex: 1;
  padding: 14px 24px;

  border-radius: 8px;
  border: 1px solid #E3E3E3;
  color: #8B939D;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  background: #fff;
}



/*------------- End Exchnage Card ------------- */

.settings__tab__header {
  height: 71px;
  display: flex;
  justify-content: space-around;
  gap: 80px;
  border-radius: 16px;
border: 1px solid #E3E3E3;
background: #F9F9F9;
  margin-bottom: 16px;
}

/* Buttons */
.settings__tab__btn {
  background: transparent;
  border: none;
  font-size: 18px;
  font-weight: 600;
  color: #8B939D;
  cursor: pointer;
  position: relative;
  padding: 0px 20px;
}

.settings__tab__btn.active {
  color: #180F02;
  font-weight: 600;
}

.settings__tab__btn.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 2px;
  background: #D3582B;
}

/* Content */
.settings__tab__content {
  display: none;
  border-radius: 16px;
border: 1px solid #E3E3E3;
background: #F9F9F9;
padding: 48px 32px;
}

.settings__tab__content.active {
  display: block;
}

.settings__tab__content p {
color: #676767;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height:  26.4px;
  }

  .transaction__initials {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    background: #000 !important;
    color: #fff;
    padding: 8px 7px;
}

.loading__state {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.error__state {
    text-align: center;
    padding: 40px 20px;
    color: #dc3545;
}

.no__transactions {
    text-align: center;
    padding: 40px 20px;
    color: #999;
}


.transaction__skeleton {
    animation: skeleton-loading 1s linear infinite alternate;
}

.important__links__card__inner__row a {
  flex: 1;
}

@keyframes skeleton-loading {
    0% {
        background-color: hsl(200, 20%, 80%);
    }
    100% {
        background-color: hsl(200, 20%, 95%);
    }
} 


/* Responsive */
@media (max-width: 991px) {
  .dashboard__portfolio__accordian__box__wrapper {
    flex-direction: column;
  }
}

/* Portfolio Iframe Styles */
.portfolio__iframe__wrapper {
    width: 100%;
    height: calc(100vh - 200px);
    min-height: 600px;
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.portfolio__iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

@media (max-width: 768px) {
    .portfolio__iframe__wrapper {
        height: calc(100vh - 150px);
        min-height: 500px;
    }
}





