/* Default Css */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap");
html::-webkit-scrollbar, body::-webkit-scrollbar {
  width: 10px;
}
html::-webkit-scrollbar-track, body::-webkit-scrollbar-track {
  background: #c1c1c1;
}
html::-webkit-scrollbar-thumb, body::-webkit-scrollbar-thumb {
  background-color: #222;
  outline: none;
}
html::-webkit-scrollbar-thumb:active, body::-webkit-scrollbar-thumb:active {
  background: #7b5bc4;
}

body {
  color: #464549;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  background: #fafafa;
}

img {
  max-width: 100%;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
a:active, a:hover {
  text-decoration: none;
}

button,
.btn {
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
button:active, button:hover, button:focus,
.btn:active,
.btn:hover,
.btn:focus {
  outline: 0;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus,
.btn:focus {
  outline: 0;
  box-shadow: none;
}

.form-control:focus {
  color: #464549;
  background-color: transparent;
  outline: 0;
  box-shadow: none;
}

.btn:hover,
.btn:focus {
  outline: 0;
  box-shadow: none;
  color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
  color: #464549;
  font-weight: 700;
  margin-bottom: 20px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 48px;
  line-height: 1.3;
}

h2 {
  font-size: 36px;
  line-height: 1.3;
}

h3 {
  font-size: 28px;
  line-height: 1.3;
}

h4 {
  font-size: 24px;
  line-height: 1.2;
}

h5 {
  font-size: 20px;
  line-height: 1.2;
}

h6 {
  font-size: 16px;
  line-height: 1.2;
}

hr {
  margin: 20px 0;
  border-color: #352323;
}

ol {
  list-style: decimal;
}

p:last-child {
  margin-bottom: 0;
}

/* Form */
label {
  color: #ddd;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
}

*::-moz-selection {
  background: #7b5bc4;
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: #7b5bc4;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #7b5bc4;
  color: #fff;
  text-shadow: none;
}

/* Placeholder */
*::-moz-placeholder {
  color: #464549;
  font-size: 16px;
  opacity: 1;
}

*::placeholder {
  color: #464549;
  font-size: 16px;
  opacity: 1;
}

/* Button */
.btn-theme {
  color: #fff;
  border-color: #7b5bc4;
  background: #7b5bc4;
}
.btn-theme:hover {
  background: #7b5bc4;
  color: #fff;
  border-color: #7b5bc4;
}

.form-check-input:checked {
    background-color: #7b5bc4;
    border-color: #7b5bc4;
}

.form-switch .form-check-input {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23D6CCEE'/%3e%3c/svg%3e");
}

.form-check-input:focus {
    border-color: #7b5bc4;
    box-shadow: none;
}
.transaction-layout .right .options-info .option-wrap label.is-invalid {
    font-weight: normal;
    font-size: 12px;
    color: #dc3545;
}
.btn-rounded {
  border-radius: 100% !important;
}

.btn-square {
  border-radius: 0 !important;
}

/* Bg Color */
.bg-gray {
  background: #ddd;
}

.bg-white {
  background: #fff;
}

.bg-black {
  background: #000;
}

.bg-theme {
  background: #7b5bc4;
}

.bg-dark {
  background-color: #101a23 !important;
}

.bg-off-white {
  background-color: #f7f7f7;
}

.bg-off-white-2 {
  background-color: #f1f8ff;
}

.bg-blue {
  background-color: #4c87ff !important;
}

.bg-yellow {
  background-color: #fea116 !important;
}

.bg-pink {
  background-color: #fc4557 !important;
}

.bg-egg-blue {
  background-color: #1cb5a3 !important;
}

.bg-purple {
  background-color: #5851a7 !important;
}

/* Text Color */
.gray-color {
  background: #ddd;
}

.white-color {
  color: #fff;
}

.black-color {
  color: #000;
}

.theme-color {
  color: #7b5bc4;
}

/* Others Common Css Here :) */
.table-row {
  display: table;
  width: 100%;
  height: 100%;
}

.table-cell {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.fix {
  overflow: hidden;
}

.separator {
  border-top: 1px solid #f2f2f2;
}

[data-overlay] {
  position: relative;
  z-index: 1;
}
[data-overlay]::before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
  z-index: -1;
}

[data-overlay=light]::before {
  background-color: #fff;
}

[data-overlay=dark]::before {
  background-color: #000a2d;
}

[data-overlay=theme]::before {
  background-color: #7b5bc4;
}

[data-opacity="1"]::before {
  opacity: 0.1;
}

[data-opacity="2"]::before {
  opacity: 0.2;
}

[data-opacity="3"]::before {
  opacity: 0.3;
}

[data-opacity="4"]::before {
  opacity: 0.4;
}

[data-opacity="5"]::before {
  opacity: 0.5;
}

[data-opacity="6"]::before {
  opacity: 0.6;
}

[data-opacity="7"]::before {
  opacity: 0.7;
}

[data-opacity="8"]::before {
  opacity: 0.8;
}

[data-opacity="9"]::before {
  opacity: 0.9;
}

@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px;
  }
}
.container, .container-fluid, .container-xxl, .container-xl, .container-lg, .container-md, .container-sm {
  --bs-gutter-x: 30px;
}

.row {
  --bs-gutter-x: 30px;
}

.login-page-layout {
  background: #f4eeff;
  min-height: 100vh;
  height: auto;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.login-box {
  max-width: 960px;
  width: 100%;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 767px) {
  .login-box {
    grid-template-columns: 1fr;
  }
}
.login-box .left {
  padding: 75px 60px;
  color: #666;
}
@media (min-width: 768px) and (max-width: 991px) {
  .login-box .left {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .login-box .left {
    padding: 30px;
  }
}
.login-box .right {
  background: #e7d9fb;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.login-logo {
  margin-bottom: 30px;
}
.login-logo img {
  width: 60px;
}

.login-content .title {
  font-size: 36px;
  line-height: 1;
  color: #131313;
  margin-bottom: 20px;
  font-weight: 400;
}
.login-content .title span {
  color: #6d56a4;
}
.login-content .input-wrap {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}
.login-content .input-wrap input {
  width: 100%;
  border: 1px solid #d3d8e5;
  border-radius: 4px;
  height: 48px;
  color: #6d56a4;
  font-size: 14px;
  font-weight: 400;
  padding-left: 43px;
  padding-top: 5px;
}
.login-content .input-wrap input::-webkit-input-placeholder {
  color: #7f8ba1;
  font-size: 14px;
}
.login-content .input-wrap input:-moz-placeholder {
  color: #7f8ba1;
  font-size: 14px;
}
.login-content .input-wrap input::-moz-placeholder {
  color: #7f8ba1;
  font-size: 14px;
}
.login-content .input-wrap input:-ms-input-placeholder {
  color: #7f8ba1;
  font-size: 14px;
}
.login-content .input-wrap input:focus ~ .icon-1 {
  background-position: -345px 375px;
}
.login-content .input-wrap input:focus::-webkit-input-placeholder {
  color: #6d56a4;
}
.login-content .input-wrap input:focus:-moz-placeholder {
  color: #6d56a4;
}
.login-content .input-wrap input:focus::-moz-placeholder {
  color: #6d56a4;
}
.login-content .input-wrap input:focus:-ms-input-placeholder {
  color: #6d56a4;
}
.login-content .input-wrap .icon {
  width: 34px;
  height: 34px;
  position: absolute;
  z-index: 11;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../img/icons/multi-icons-thumbs.png);
  pointer-events: none;
}
.login-content .input-wrap .icon.icon-1 {
  background-position: -344px 341px;
}
.login-content .input-wrap .icon.icon-2 {
  background-position: -306px 338px;
}
.login-content .input-wrap .icon.icon-3 {
  right: 6px;
  left: auto;
  background-position: -147px 438px;
  pointer-events: auto;
  cursor: pointer;
}
.login-content .input-wrap .icon.icon-3.active {
  background-position: -229px 439px;
}
.login-content .forgot-wrap {
  text-align: right;
  margin-bottom: 10px;
}
.login-content .forgot-wrap a {
  display: inline-block;
  color: #7b5bc4;
  font-size: 14px;
  font-weight: 400;
}
.login-content .input-btn button {
  width: 100%;
  height: 48px;
  background: #7b5bc4;
  border: 0;
  border-radius: 4px;
  font-size: 16px;
  line-height: 1;
  color: #fff;
}
.login-content .google-login {
  margin-top: 24px;
}
.login-content .google-login a {
  display: block;
  text-align: center;
  padding: 5px 10px;
  border: 1px solid #d2e3fc;
  border-radius: 100px;
  color: #3c4043;
  position: relative;
  z-index: 1;
}
.login-content .google-login a svg {
  width: 14px;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.login-content .info {
  margin-top: 36px;
  text-align: center;
}
.login-content .info p {
  font-size: 16px;
  color: #7f8ba1;
  margin-bottom: 0;
}
.login-content .info p a {
  color: #6d56a4;
}

.sidebar-wrap {
  position: fixed;
  left: 0;
  top: 0;
  width: 250px;
  height: 100%;
  overflow-y: scroll;
  background: #3f3165;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  z-index: 9999;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .sidebar-wrap {
    left: -300px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sidebar-wrap {
    left: -300px;
  }
}
@media (max-width: 767px) {
  .sidebar-wrap {
    left: -300px;
  }
}
.sidebar-wrap.collapsed {
  width: 74px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .sidebar-wrap.collapsed {
    width: 250px;
    left: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sidebar-wrap.collapsed {
    width: 250px;
    left: 0;
  }
}
@media (max-width: 767px) {
  .sidebar-wrap.collapsed {
    width: 250px;
    left: 0;
  }
}
@media (min-width: 1200px) {
  .sidebar-wrap.collapsed .logo a {
    padding: 20px 35px 20px 10px;
  }
  .sidebar-wrap.collapsed .logo a .logo-lg {
    display: none;
  }
  .sidebar-wrap.collapsed .logo a .logo-icon {
    display: block;
  }
  .sidebar-wrap.collapsed .logo a span {
    display: none;
  }
  .sidebar-wrap.collapsed .toggle-btn {
    width: 30px;
    font-size: 16px;
  }
  .sidebar-wrap.collapsed .menu-wrap ul li a span {
    display: none;
  }
  .sidebar-wrap.collapsed .sidebar-footer .author .content {
    display: none;
  }
  .sidebar-wrap.collapsed .sidebar-footer .copyright {
    margin-bottom: 10px;
    font-size: 10px;
    line-height: 1.2;
    text-align: center;
  }
  .sidebar-wrap.collapsed .sidebar-footer .version {
    font-size: 10px;
    line-height: 1.2;
    text-align: center;
  }
}

.add-new-popup-wrap {
  padding: 0 20px 20px;
}
.add-new-popup-wrap .add-new-popup {
  padding: 8px 20px;
  background: #7b5bc4;
  color: #fff;
  border-radius: 8px;
  display: block;
  border: 0;
  width: 100%;
  text-align: center;
}
.add-new-popup-wrap .add-new-popup:hover {
  background: #8568ca;
}
.add-new-popup-wrap .add-new-popup i {
  float: left;
  margin-top: 4px;
}

.sidebar-head {
  position: relative;
  margin-bottom: 10px;
}
.sidebar-head .logo a {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #4a3d6e;
}
@media (max-width: 767px) {
  .sidebar-head .logo a {
    background: transparent;
  }
}
.sidebar-head .logo a .logo-lg {
  max-height: 33px;
  margin-right: 4px;
}
.sidebar-head .logo a .logo-icon {
  display: none;
  width: 30px;
}
.sidebar-head .logo a span {
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
  color: #fff;
}
.sidebar-head .toggle-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0.85;
  font-size: 18px;
  cursor: pointer;
}

.menu-wrap ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-wrap ul li {
  display: block;
}
@media (max-width: 767px) {
  .menu-wrap ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .menu-wrap ul li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}
.menu-wrap ul li a {
  display: block;
  padding: 13px 25px;
  color: #fff;
  opacity: 0.7;
}
.menu-wrap ul li a span {
  margin-left: 10px;
}
.menu-wrap ul li a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.top{
  transform: translate(-2px, 15px) !important;
}
.sidebar-footer {
  padding: 0 16px 16px;
  position: absolute;
  left: 0;
 
  width: 100%;
  z-index: 2;
}
.sidebar-footer .author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sidebar-footer .author .thumb {
  width: 40px;
  height: 40px;
  border: 2px solid #b0acbc;
  background: #625681;
  padding: 5px;
  border-radius: 50%;
}
.sidebar-footer .author .content h4 {
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
  opacity: 0.85;
}
.sidebar-footer .author .content p {
  color: #fff;
  font-size: 13px;
  line-height: 19px;
  margin-bottom: 0;
  opacity: 0.85;
}
.sidebar-footer .copyright {
  color: #fff;
  opacity: 0.5;
  font-weight: 300;
  margin-bottom: 20px;
  font-size: 13px;
  line-height: 19px;
}
.sidebar-footer .copyright a {
  color: #fff;
}
.sidebar-footer .version {
  color: #fff;
  opacity: 0.5;
  font-weight: 300;
  font-size: 13px;
  line-height: 19px;
}

.header-area {
  background: #f1f1f1;
  padding: 10px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding-left: 260px;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header-area {
    padding-left: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .header-area {
    padding-left: 10px;
  }
}
@media (max-width: 767px) {
  .header-area {
    padding-left: 10px;
  }
}
.header-area.collapsed {
  padding-left: 84px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header-area.collapsed {
    padding-left: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .header-area.collapsed {
    padding-left: 10px;
  }
}
@media (max-width: 767px) {
  .header-area.collapsed {
    padding-left: 10px;
  }
}
.header-area .left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}
.header-area .right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
}
.header-area .toggle-btn {
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  display: none;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header-area .toggle-btn {
    display: inline-flex;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .header-area .toggle-btn {
    display: inline-flex;
  }
}
@media (max-width: 767px) {
  .header-area .toggle-btn {
    display: inline-flex;
  }
}
.header-area .logout-separator {
  height: 20px;
  width: 1px;
  background: #e3e3e3;
}
.header-area .logout a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #e3e3e3;
  border-radius: 4px;
  color: #434246;
}
.header-area .help-desk a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e4def0;
  width: 44px;
  height: 44px;
  border-radius: 4px;
}
.header-area .help-desk a img {
  width: 20px;
}
.header-area .donate a {
  display: inline-block;
  width: 150px;
  height: 42px;
  position: relative;
  padding: 10px 5px;
  padding-left: 92px;
  font-size: 20px;
  font-weight: 900;
  color: #5652ab;
  line-height: 1;
}
.header-area .donate a img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  object-fit: contain;
}
.header-area .language a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background: #e2d8f9;
}
.header-area .language a img {
  width: 24px;
}

.btn-dropdown-wrap .dropdown-toggle {
  background: #7b5bc4;
  border-color: #7b5bc4;
  padding: 12px 18px;
  font-size: 16px;
  color: #fff;
  border-radius: 4px;
}
.btn-dropdown-wrap .dropdown-toggle:after {
  display: none;
}
.btn-dropdown-wrap .dropdown-toggle i {
  margin-right: 5px;
}
.btn-dropdown-wrap .dropdown-menu li a {
  display: block;
  padding: 10px 12px;
  color: #212529;
  font-weight: 700;
  padding-left: 60px;
  position: relative;
}
.btn-dropdown-wrap .dropdown-menu li a .icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 30px;
  height: 30px;
  background-size: 80px;
  background-position: -44px -70px;
  background-image: url(../img/icons/multi-icon.png);
}
.btn-dropdown-wrap .dropdown-menu li a .icon.icon-2 {
  width: 19px;
  background-image: url(../img/icons/icon-aliyas.png);
  background-position: center center;
  -webkit-background-size: contain;
  background-size: contain;
}
.btn-dropdown-wrap .dropdown-menu li a .icon.icon-3 {
  background-position: -39px -28px;
  background-size: 68px;
}
.btn-dropdown-wrap .dropdown-menu li a .icon.icon-4 {
  background-position: -43px 0;
  background-size: 80px;
}
.btn-dropdown-wrap .dropdown-menu li a .icon.icon-5 {
  background-size: 90px;
  background-position: 1px 0;
}
.btn-dropdown-wrap .dropdown-menu li a .icon.icon-6 {
  background-position: 1px -31px;
  background-size: 80px;
}
.btn-dropdown-wrap .dropdown-menu li a .icon.icon-7 {
  background-position: -1px -74px;
  background-size: 80px;
}
.btn-dropdown-wrap .dropdown-menu li a:hover {
  background: #eee8fc;
  color: #7b5bc4;
}

.main-content-wrapper {
  padding: 84px 20px 20px 270px;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .main-content-wrapper {
    padding: 84px 20px 20px 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .main-content-wrapper {
    padding: 84px 20px 20px 20px;
  }
}
@media (max-width: 767px) {
  .main-content-wrapper {
    padding: 84px 20px 20px 20px;
  }
}
.main-content-wrapper.collapsed {
  padding: 84px 20px 20px 94px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .main-content-wrapper.collapsed {
    padding: 84px 20px 20px 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .main-content-wrapper.collapsed {
    padding: 84px 20px 20px 20px;
  }
}
@media (max-width: 767px) {
  .main-content-wrapper.collapsed {
    padding: 84px 20px 20px 20px;
  }
}
.add-popup-wrap {
  position: fixed;
  left: 0;
  bottom: 0;
  text-align: center;
  width: 100%;
  z-index: 9;
}
.add-popup-wrap.opened .add-new-popup-content {
  transform: translateY(0);
}
.add-popup-wrap .add-new-popup {
  background: #7b5bc4;
  padding: 12px 18px;
  font-size: 16px;
  color: #fff;
  border-radius: 100px;
  border: 0;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}
.add-popup-wrap .add-new-popup:after {
  display: none;
}
.add-popup-wrap .add-new-popup i {
  margin-right: 5px;
}
.add-popup-wrap .add-new-popup-content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 20px 15px;
  background: #fcfcfc;
  box-shadow: 0 -3px 8px rgba(0, 0, 0, 0.1019607843);
  border-radius: 10px 10px 0 0;
  z-index: 9;
  transform: translateY(110%);
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.add-popup-wrap .add-new-popup-content .title {
  text-align: center;
  color: #434246;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 20px;
}
.add-popup-wrap .add-new-popup-content .title .add-new-popup-close {
  float: right;
  cursor: pointer;
}
.add-popup-wrap .add-new-popup-content ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.add-popup-wrap .add-new-popup-content ul li a {
  display: block;
  height: 94px;
  gap: 10px;
  padding: 10px 12px;
  color: #7b5bc4;
  font-weight: 700;
  padding-top: 50px;
  position: relative;
  background: #EAE6EE;
  text-align: center;
  border-radius: 8px;
}
.add-popup-wrap .add-new-popup-content ul li a .icon {
  position: absolute;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
  display: inline-block;
  width: 30px;
  height: 30px;
  background-size: 80px;
  background-position: -44px -70px;
  background-image: url(../img/icons/multi-icon.png);
}
.add-popup-wrap .add-new-popup-content ul li a .icon.icon-2 {
  width: 19px;
  background-image: url(../img/icons/icon-aliyas.png);
  background-position: center center;
  -webkit-background-size: contain;
  background-size: contain;
}
.add-popup-wrap .add-new-popup-content ul li a .icon.icon-3 {
  background-position: -39px -28px;
  background-size: 68px;
}
.add-popup-wrap .add-new-popup-content ul li a .icon.icon-4 {
  background-position: -43px 0;
  background-size: 80px;
}
.add-popup-wrap .add-new-popup-content ul li a .icon.icon-5 {
  background-size: 90px;
  background-position: 1px 0;
}
.add-popup-wrap .add-new-popup-content ul li a .icon.icon-6 {
  background-position: 1px -31px;
  background-size: 80px;
}
.add-popup-wrap .add-new-popup-content ul li a .icon.icon-7 {
  background-position: -1px -74px;
  background-size: 80px;
}
.add-popup-wrap .add-new-popup-content ul li a:hover {
  background: #eee8fc;
  color: #7b5bc4;
}

.daterangepicker {
  z-index: 99999;
}

.dashboard-section {
  min-height: calc(100vh - 84px);
  display: grid;
  grid-template-columns: 1fr 24%;
  gap: 40px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .dashboard-section {
    gap: 30px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .dashboard-section {
    gap: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .dashboard-section {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .dashboard-section {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .dashboard-section {
    grid-template-columns: 1fr;
  }
}

.dashboard-right {
  border-left: 1px solid #c1c1c1;
  background: #fdfdfd;
  margin-top: -20px;
  margin-bottom: -20px;
  padding: 24px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .dashboard-right {
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .dashboard-right {
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .dashboard-right {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.dashboard-right .title {
  font-size: 14px;
  line-height: 19px;
  color: #625f69;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.dashboard-right .total-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.dashboard-right .total-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #625f69;
  font-size: 16px;
  line-height: 24px;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .dashboard-right .total-list li {
    font-size: 14px;
  }
}
.dashboard-right .total-list li b {
  font-weight: 700;
  color: #464549;
  cursor: pointer;
}
.dashboard-right .reminders {
  margin-top: 40px;
}
.dashboard-right .reminders .reminders-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #e3e3e3;
  gap: 20px;
}
.dashboard-right .reminders .reminders-item h4 {
  font-size: 14px;
  color: #7b5bc4;
  font-weight: 600;
  margin-bottom: 0;
}
.dashboard-right .reminders .reminders-item-2 {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #e3e3e3;
  gap: 20px;
}
.dashboard-right .reminders .reminders-item-2 .left {
  max-width: 53%;
}
.dashboard-right .reminders .reminders-item-2 .left span {
  color: #464549;
  font-size: 14px;
}
.dashboard-right .reminders .reminders-item-2 .left p {
  color: #464549;
  font-size: 14px;
}
.dashboard-right .reminders .reminders-item-2 .right {
  font-size: 12px;
  color: #85838b;
}

.total-recent {
  background: #fff;
  padding: 24px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2509803922);
  min-height: 346px;
}
.total-recent .total-recent-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.total-recent .total-recent-top .left span {
  color: #464549;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 19px;
  font-weight: 700;
}
.total-recent .total-recent-top .left h3 {
  color: #464549;
  font-weight: 700;
  font-size: 31px;
  margin-bottom: 0;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .total-recent .total-recent-top .left h3 {
    font-size: 24px;
  }
}
.total-recent .total-recent-top .right .monthly-picker {
  width: 196px;
  font-size: 15px;
  color: #625f69;
  text-align: center;
  background: #edeaf4;
  height: 42px;
  border-radius: 5px;
  font-weight: 700;
  border: 0;
}
.total-recent .total-recent-top .right .monthly-picker::-webkit-input-placeholder {
  color: #625f69;
}
.total-recent .total-recent-top .right .monthly-picker:-moz-placeholder {
  color: #625f69;
}
.total-recent .total-recent-top .right .monthly-picker::-moz-placeholder {
  color: #625f69;
}
.total-recent .total-recent-top .right .monthly-picker:-ms-input-placeholder {
  color: #625f69;
}
.total-recent .total-recent-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 30px;
}
@media (max-width: 767px) {
  .total-recent .total-recent-layout {
    grid-template-columns: 1fr;
  }
}
.total-recent .total-recent-layout .total-recent-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  border-top: 1px solid #ddd;
}
.total-recent .total-recent-layout .total-recent-item .left {
  flex: 1;
}
.total-recent .total-recent-layout .total-recent-item .left p {
  margin-bottom: 10px;
  color: #625f69;
  font-size: 16px;
  line-height: 22px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .total-recent .total-recent-layout .total-recent-item .left p {
    font-size: 12px;
  }
}
.total-recent .total-recent-layout .total-recent-item .left h4 {
  font-size: 22px;
  font-weight: 900;
  color: #464549;
  margin-bottom: 0;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .total-recent .total-recent-layout .total-recent-item .left h4 {
    font-size: 18px;
  }
}
.total-recent .total-recent-layout .total-recent-item .right {
  width: 91px;
  text-align: right;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .total-recent .total-recent-layout .total-recent-item .right {
    width: 60px;
  }
}
.total-recent .total-recent-layout .total-recent-item .right .view-btn {
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 10px;
  color: #625f69;
}
.total-recent .total-recent-layout .total-recent-item .right .view-btn a {
  color: #625f69;
}
.total-recent .total-recent-layout .total-recent-item .right .penchant-text {
  color: #625f69;
  font-size: 14px;
  position: relative;
  margin-bottom: 10px;
}
.total-recent .total-recent-layout .total-recent-item .right .penchant-text.down {
  color: #f4a227;
}
.total-recent .total-recent-layout .total-recent-item .right .penchant-text.up {
  color: #20b737;
}

.total-recent-2 {
  background: #fff;
  padding: 24px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2509803922);
  min-height: 346px;
}
.total-recent-2 .total-recent-top-2 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 20px;
}
.total-recent-2 .total-recent-top-2 .left {
  margin-bottom: 10px;
}
.total-recent-2 .total-recent-top-2 .left span {
  color: #464549;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 19px;
  font-weight: 700;
}
.total-recent-2 .total-recent-top-2 .left h3 {
  color: #464549;
  font-weight: 700;
  font-size: 31px;
  margin-bottom: 0;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .total-recent-2 .total-recent-top-2 .left h3 {
    font-size: 24px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .total-recent-2 .total-recent-top-2 .left h3 {
    font-size: 24px;
  }
}
.total-recent-2 .total-recent-top-2 .right .monthly-picker {
  width: 100%;
  font-size: 15px;
  color: #625f69;
  text-align: center;
  background: #edeaf4;
  height: 42px;
  border-radius: 5px;
  font-weight: 700;
  border: 0;
}
.total-recent-2 .total-recent-top-2 .right .monthly-picker::-webkit-input-placeholder {
  color: #625f69;
}
.total-recent-2 .total-recent-top-2 .right .monthly-picker:-moz-placeholder {
  color: #625f69;
}
.total-recent-2 .total-recent-top-2 .right .monthly-picker::-moz-placeholder {
  color: #625f69;
}
.total-recent-2 .total-recent-top-2 .right .monthly-picker:-ms-input-placeholder {
  color: #625f69;
}
.total-recent-2 .total-recent-layout-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 30px;
}
.total-recent-2 .total-recent-layout-2 .total-recent-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  border-top: 1px solid #ddd;
}
.total-recent-2 .total-recent-layout-2 .total-recent-item .left {
  flex: 1;
}
.total-recent-2 .total-recent-layout-2 .total-recent-item .left p {
  margin-bottom: 10px;
  color: #625f69;
  font-size: 16px;
  line-height: 22px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .total-recent-2 .total-recent-layout-2 .total-recent-item .left p {
    font-size: 12px;
  }
}
.total-recent-2 .total-recent-layout-2 .total-recent-item .left h4 {
  font-size: 22px;
  font-weight: 900;
  color: #464549;
  margin-bottom: 0;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .total-recent-2 .total-recent-layout-2 .total-recent-item .left h4 {
    font-size: 18px;
  }
}
.total-recent-2 .total-recent-layout-2 .total-recent-item .right {
  width: 91px;
  text-align: right;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .total-recent-2 .total-recent-layout-2 .total-recent-item .right {
    width: 60px;
  }
}
.total-recent-2 .total-recent-layout-2 .total-recent-item .right .view-btn {
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 10px;
  color: #625f69;
}
.total-recent-2 .total-recent-layout-2 .total-recent-item .right .view-btn a {
  color: #625f69;
}
.total-recent-2 .total-recent-layout-2 .total-recent-item .right .penchant-text {
  color: #625f69;
  font-size: 14px;
  position: relative;
  margin-bottom: 10px;
}
.total-recent-2 .total-recent-layout-2 .total-recent-item .right .penchant-text.down {
  color: #f4a227;
}
.total-recent-2 .total-recent-layout-2 .total-recent-item .right .penchant-text.up {
  color: #20b737;
}

.recent-payment {
  background: #fff;
  padding: 24px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2509803922);
  min-height: 346px;
}
.recent-payment .recent-payment-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.recent-payment .recent-payment-top .left span {
  color: #464549;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 19px;
  font-weight: 700;
}
.recent-payment .recent-payment-top .left .date {
  font-size: 14px;
  color: #464549;
  margin-bottom: 0;
}
.recent-payment .recent-payment-top .right .form-select {
  font-size: 15px;
  color: #625f69;
  text-align: center;
  background-color: #edeaf4;
  height: 42px;
  border-radius: 5px;
  font-weight: 700;
  border: 0;
  box-shadow: none;
}
.recent-payment .recent-payment-top .right .form-select::-webkit-input-placeholder {
  color: #625f69;
}
.recent-payment .recent-payment-top .right .form-select:-moz-placeholder {
  color: #625f69;
}
.recent-payment .recent-payment-top .right .form-select::-moz-placeholder {
  color: #625f69;
}
.recent-payment .recent-payment-top .right .form-select:-ms-input-placeholder {
  color: #625f69;
}
.recent-payment .recent-payment-bottom {
  display: grid;
  grid-template-columns: 1fr 33%;
  gap: 30px;
}
.recent-payment .recent-payment-bottom .left canvas {
  max-width: 100%;
  width: 100%;
}
.recent-payment .recent-payment-bottom .right .form-select {
  width: auto;
  display: inline-block;
  font-size: 15px;
  color: #625f69;
  text-align: center;
  background-color: transparent;
  height: 42px;
  border-radius: 5px;
  font-weight: 700;
  border: 0;
  box-shadow: none;
}
.recent-payment .recent-payment-bottom .right .form-select::-webkit-input-placeholder {
  color: #625f69;
}
.recent-payment .recent-payment-bottom .right .form-select:-moz-placeholder {
  color: #625f69;
}
.recent-payment .recent-payment-bottom .right .form-select::-moz-placeholder {
  color: #625f69;
}
.recent-payment .recent-payment-bottom .right .form-select:-ms-input-placeholder {
  color: #625f69;
}
.recent-payment .recent-payment-bottom .right canvas {
  max-width: 100%;
  width: 100%;
}

.list-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .list-top {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .list-top {
    flex-direction: column;
    align-items: flex-start;
  }
}
.list-top .left {
  display: flex;
  align-items: center;
  gap: 15px;
}
.list-top .left .input-wrap {
  max-width: 222px;
}
.list-top .left .input-wrap input {
  width: 100%;
  background: #e5e5e6;
  height: 42px;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
  padding: 6px 12px;
}
.list-top .left .filter-open {
  padding: 6px 12px;
  height: 42px;
  background: #edeaf4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #625f69;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #ddd;
  gap: 5px;
  cursor: pointer;
}
.list-top .left .filter-open .num {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: #7b5bc4;
  font-size: 12px;
  border-radius: 50%;
  color: #fff;
  text-align: center;
}
.list-top .left .soruce-field .dropdown-toggle {
  display: flex;
  padding: 6px 12px;
  color: #444;
  background: #edeaf4;
  border-color: #ddd;
  border-radius: 5px;
  height: 42px;
  line-height: normal;
  font-size: 16px;
  align-items: center;
  gap: 5px;
}
.list-top .left .soruce-field .dropdown-toggle:after {
  display: none;
}
.list-top .left .soruce-field .dropdown-menu {
  max-height: 300px;
  overflow-y: auto;
}
.list-top .left .soruce-field .dropdown-menu::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.list-top .left .soruce-field .dropdown-menu::-webkit-scrollbar-track {
  background: #c1c1c1;
}
.list-top .left .soruce-field .dropdown-menu::-webkit-scrollbar-thumb {
  background-color: #222;
  outline: none;
}
.list-top .left .soruce-field .dropdown-menu::-webkit-scrollbar-thumb:active {
  background: #7b5bc4;
}
.list-top .left .soruce-field .dropdown-menu li {
  padding: 5px 15px;
}
.list-top .left .soruce-field .dropdown-menu li input {
  display: none;
}
.list-top .left .soruce-field .dropdown-menu li input:checked ~ label .radio-mark:before {
  opacity: 1;
  visibility: visible;
}
.list-top .left .soruce-field .dropdown-menu li .input-wrap label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
  font-size: 13px;
  color: #625f69;
  position: relative;
}
.list-top .left .soruce-field .dropdown-menu li .input-wrap label .radio-mark {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: #ecebf3;
  border-radius: 100%;
  border: 1px solid #7b5bc4;
  position: relative;
}
.list-top .left .soruce-field .dropdown-menu li .input-wrap label .radio-mark:before {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: #7b5bc4;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.list-top .left .sort-field .dropdown-toggle {
  display: flex;
  padding: 6px 12px;
  color: #444;
  background: #edeaf4;
  border-color: #ddd;
  border-radius: 5px;
  height: 42px;
  line-height: normal;
  font-size: 16px;
  align-items: center;
  gap: 5px;
}
.list-top .left .sort-field .dropdown-toggle:after {
  display: none;
}
.list-top .left .sort-field .dropdown-menu {
  max-height: 300px;
  overflow-y: auto;
}
.list-top .left .sort-field .dropdown-menu::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.list-top .left .sort-field .dropdown-menu::-webkit-scrollbar-track {
  background: #c1c1c1;
}
.list-top .left .sort-field .dropdown-menu::-webkit-scrollbar-thumb {
  background-color: #222;
  outline: none;
}
.list-top .left .sort-field .dropdown-menu::-webkit-scrollbar-thumb:active {
  background: #7b5bc4;
}
.list-top .left .sort-field .dropdown-menu li {
  padding: 5px 15px;
}
.list-top .left .sort-field .dropdown-menu li input {
  display: none;
}
.list-top .left .sort-field .dropdown-menu li input:checked ~ label .radio-mark:before {
  opacity: 1;
  visibility: visible;
}
.list-top .left .sort-field .dropdown-menu li .input-wrap label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
  font-size: 13px;
  color: #625f69;
  position: relative;
}
.list-top .left .sort-field .dropdown-menu li .input-wrap label .radio-mark {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: #ecebf3;
  border-radius: 100%;
  border: 1px solid #7b5bc4;
  position: relative;
}
.list-top .left .sort-field .dropdown-menu li .input-wrap label .radio-mark:before {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: #7b5bc4;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.list-top .left .input-date input {
  width: 100%;
  background: #edeaf4;
  height: 42px;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
  padding: 6px 12px;
}
.list-top .right {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: flex-end;
}
.list-top .right .extra-opt .dropdown-toggle {
  display: flex;
  align-items: center;
  padding: 6px 12px;
  color: #444;
  background: #edeaf4;
  border-color: #ddd;
  border-radius: 5px;
  height: 42px;
  line-height: normal;
  font-size: 20px;
}
.list-top .right .extra-opt .dropdown-toggle:after {
  display: none;
}
.list-top .right .extra-opt .dropdown-menu li a {
  display: block;
  padding: 5px 14px;
  color: #625f69;
  font-size: 16px;
  position: relative;
}
.list-top .right .extra-opt .dropdown-menu li a i {
  color: #7b5bc4;
  margin-right: 10px;
}
.list-top .right .tbl-field .dropdown-toggle {
  display: flex;
  padding: 6px 12px;
  color: #444;
  background: #edeaf4;
  border-color: #ddd;
  border-radius: 5px;
  height: 42px;
  line-height: normal;
  font-size: 16px;
  align-items: center;
  gap: 5px;
}
.list-top .right .tbl-field .dropdown-toggle:after {
  display: none;
}
.list-top .right .tbl-field .dropdown-menu {
  max-height: 300px;
  overflow-y: auto;
}
.list-top .right .tbl-field .dropdown-menu::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.list-top .right .tbl-field .dropdown-menu::-webkit-scrollbar-track {
  background: #c1c1c1;
}
.list-top .right .tbl-field .dropdown-menu::-webkit-scrollbar-thumb {
  background-color: #222;
  outline: none;
}
.list-top .right .tbl-field .dropdown-menu::-webkit-scrollbar-thumb:active {
  background: #7b5bc4;
}
.list-top .right .tbl-field .dropdown-menu li {
  padding: 5px 15px;
}
.list-top .right .tbl-field .dropdown-menu li input {
  display: none;
}
.list-top .right .tbl-field .dropdown-menu li input:checked ~ label .check-mark:before {
  opacity: 1;
  visibility: visible;
}
.list-top .right .tbl-field .dropdown-menu li .input-wrap label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
  font-size: 13px;
  color: #625f69;
  position: relative;
}
.list-top .right .tbl-field .dropdown-menu li .input-wrap label .check-mark {
  display: inline-block;
  width: 15px;
  height: 15px;
  background: #ecebf3;
  border-radius: 3px;
  border: 1px solid #7b5bc4;
  position: relative;
}
.list-top .right .tbl-field .dropdown-menu li .input-wrap label .check-mark:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Pro";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
  color: #7b5bc4;
  font-weight: 700;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.list-top .right .total-btn {
  display: flex;
  align-items: center;
  padding: 6px 12px;
  color: #fff;
  background: #7b5bc4;
  border-radius: 5px;
  height: 42px;
  line-height: normal;
  font-size: 16px;
  border: 0;
}
.list-top .right .refresh-btn {
  display: flex;
  align-items: center;
  padding: 6px 12px;
  color: #444;
  background: #edeaf4;
  border-radius: 5px;
  height: 42px;
  line-height: normal;
  font-size: 16px;
  border: 0;
}

.list-top-2 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}
.list-top-2 .list-wrap {
  padding: 10px 15px;
  border: 3px solid transparent;
  cursor: pointer;
  min-height: 68px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2509803922);
  background: #fff;
  color: #718096;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  min-width: 200px;
}
.list-top-2 .list-wrap .text {
  color: #718096;
  font-size: 14px;
  margin-bottom: 5px;
}
.list-top-2 .list-wrap .title {
  font-size: 18px;
  color: #625f69;
  margin-bottom: 0;
}

.list-middle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}
.list-middle .left .action {
  display: inline-flex;
  align-items: center;
  color: #212529;
  gap: 10px;
  font-size: 16px;
  cursor: pointer;
}
.list-middle .left .action i {
  color: #7b5bc4;
}
.list-middle .left-2 .action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #212529;
  gap: 10px;
  font-size: 16px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  background: #e2d9f6;
  border-radius: 4px;
}
.list-middle .left-2 .action i {
  color: #7b5bc4;
}
.list-middle .right .date {
  font-size: 16px;
  color: #212529;
}

.list-table .table-responsive {
  max-height: 830px;
  overflow-y: auto;
}
.list-table .table-responsive::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.list-table .table-responsive::-webkit-scrollbar-track {
  background: #c1c1c1;
}
.list-table .table-responsive::-webkit-scrollbar-thumb {
  background-color: #222;
  outline: none;
}
.list-table .table-responsive::-webkit-scrollbar-thumb:active {
  background: #7b5bc4;
}
.list-table .table {
  min-width: 1400px;
}
.list-table .table thead th {
  font-size: 14px;
  font-weight: 600;
  color: #444;
  border: 1px solid #ddd;
  background: #efefef;
  padding: 12px;
  vertical-align: middle;
}
.list-table .table tbody th {
  vertical-align: middle;
}
.list-table .table tbody td {
  font-size: 14px;
  color: #444;
  padding: 12px;
  vertical-align: middle;
}
.list-table .table tbody td p {
  margin-bottom: 5px;
}
.list-table .table .acct {
  width: 150px;
}
.list-table .table .name {
  width: 285px;
}
.list-table .table .family {
  width: 300px;
}
.list-table .table .phone {
  width: 190px;
}
.list-table .table .address {
  width: 265px;
}
.list-table .table .email {
  width: 300px;
  border-right: 0;
}
.list-table .table .action {
  width: 120px;
  border-left: 0;
}
.list-table .table .action:hover .add,
.list-table .table .action:hover .edit {
  visibility: visible;
  opacity: 1;
}
.list-table .table .action .add {
  display: inline-block;
  background: 0 0/18px #e2d9f6;
  width: 30px;
  height: 30px;
  padding: 5px 8px;
  border-radius: 4px;
  color: #7b5bc4;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.list-table .table .action .edit {
  background: 0 0/18px #e2d9f6;
  display: inline-block;
  width: 30px;
  height: 30px;
  padding: 5px 8px;
  border-radius: 4px;
  color: #7b5bc4;
  margin-left: 5px;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.list-table .table .action-2 {
  position: relative;
  width: 0;
  padding: 0;
}
.list-table .table .action-2 .button-wrap {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.list-table .table .action-2 .button-wrap .action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  background: #e2d9f6;
  border-radius: 4px;
  color: #7b5bc4;
}
.list-table .table tr:hover .action-2 .button-wrap {
  visibility: visible;
  opacity: 1;
}
.list-table .table-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  gap: 20px;
  width: 100%;
}
@media (min-width: 768px) and (max-width: 991px) {
  .list-table .table-bottom {
    flex-direction: column;
    gap: 5px;
  }
}
@media (max-width: 767px) {
  .list-table .table-bottom {
    flex-direction: column;
    gap: 5px;
  }
}
.list-table .table-bottom .right {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .list-table .table-bottom .right {
    flex-direction: column;
    gap: 5px;
  }
}
.list-table .table-bottom .right ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.list-table .table-bottom .right ul li {
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
}
.list-table .table-bottom .right ul li a {
  display: inline-block;
  padding: 5px 8px;
  color: #464549;
  border-radius: 4px;
  text-decoration: underline;
}
.list-table .table-bottom .right ul li a:hover {
  color: #7b5bc4;
  background: #e9ecef;
}

.modal-backdrop {
  z-index: 9999;
}

.modal {
  z-index: 99999;
}
.modal .modal-filter-size {
  --bs-modal-width: 540px;
}
.modal .close-modal {
  border: 0;
  padding: 5px;
  display: inline-block;
  background: none;
}
.modal .modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
.modal .modal-footer .submit-btn {
  padding: 6px 26px;
  background: #8568ca;
  border: 1px solid #8568ca;
  color: #fff;
  font-size: 16px;
  border-radius: 4px;
}
.modal .modal-footer .reset-btn {
  padding: 6px 26px;
  background: transparent;
  border: 1px solid #ddd;
  color: #564a78;
  font-size: 16px;
  border-radius: 4px;
}
.modal .modal-footer .delete-btn {
  padding: 6px 26px;
  background: #eb2a2a;
  border: 1px solid #eb2a2a;
  color: #fff;
  font-size: 16px;
  border-radius: 4px;
}
.modal .filter-form .filter-wrap {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .modal .filter-form .filter-wrap {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.modal .filter-form .filter-wrap label {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #212529;
}
.modal .filter-form .filter-wrap .form-select,

.modal .filter-form .filter-wrap input {
  width: 100%;
  background-color: #fafafa;
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  padding: 6px 12px;
  height: 38px;
  color: #212529;
  margin-bottom: 5px;
}
.modal .filter-form .filter-wrap textarea {
  width: 100%;
  background-color: #fafafa;
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  padding: 6px 12px;
  height: 120px;
  color: #212529;
  margin-bottom: 5px;
}
.modal .custom-report-head {
  margin-left: -16px;
  margin-right: -16px;
  margin-top: -16px;
  background: #605481;
  border-radius: 0;
  text-align: center;
  padding: 10px 16px;
  position: relative;
}
.modal .custom-report-head h3 {
  font-size: 25px;
  color: #fff;
  margin-bottom: 0;
}
.modal .custom-report-head button {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  color: #fff;
  opacity: 0.5;
}
.modal .custom-report-content {
  padding: 50px 50px;
  text-align: center;
}
.modal .custom-report-content label {
  font-size: 18px;
  display: inline-block;
  width: 100%;
  text-align: center;
  color: #7b5bc4;
  margin-bottom: 15px;
}
.modal .custom-report-content .form-select {
  width: 100%;
  background-color: #fafafa;
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  padding: 6px 12px;
  height: 38px;
  color: #212529;
  margin-bottom: 5px;
}

.transaction-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .transaction-layout {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .transaction-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .transaction-layout {
    grid-template-columns: 1fr;
  }
}
.transaction-layout .left {
  border-right: 1px solid #ddd;
  padding: 16px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .transaction-layout .left {
    border-right: 0;
    border-bottom: 1px solid #ddd;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .transaction-layout .left {
    border-right: 0;
    border-bottom: 1px solid #ddd;
  }
}
@media (max-width: 767px) {
  .transaction-layout .left {
    border-right: 0;
    border-bottom: 1px solid #ddd;
  }
}
.transaction-layout .left .nav-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  overflow: hidden;
}
@media (min-width: 768px) and (max-width: 991px) {
  .transaction-layout .left .nav-tabs {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .transaction-layout .left .nav-tabs {
    flex-direction: column;
  }
}
.transaction-layout .left .nav-tabs .nav-item {
  flex: 1;
  width: 100%;
}
.transaction-layout .left .nav-tabs .nav-item .nav-link {
  width: 100%;
  border-radius: 0;
  background: #eae7ee;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #625f69;
  font-size: 14px;
  border: 0;
  padding: 10px 15px;
}
.transaction-layout .left .nav-tabs .nav-item .nav-link.active {
  background: #ded7ee;
  color: #8568ca;
}
.transaction-layout .left .nav-tabs .nav-item .nav-link i {
  font-size: 20px;
  color: #8568ca;
}
.transaction-layout .left .donor-info {
  text-align: center;
}
.transaction-layout .left .donor-info p {
  text-align: center;
  font-size: 14px;
  letter-spacing: 0;
  color: #625f69;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.transaction-layout .left .donor-info .input-wrap {
  position: relative;
}
.transaction-layout .left .donor-info .input-wrap input {
  width: 100%;
  background-color: #e8e8e8;
  border: 0;
  border-bottom: 3px solid #8568ca;
  border-radius: 0;
  padding: 6px 40px;
  height: 38px;
  color: #212529;
}
.transaction-layout .left .donor-info .input-wrap .icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #8568ca;
}
.transaction-layout .left .donor-info .search-output {
  display: none;
  position: relative;
  z-index: 1;
}
.transaction-layout .left .donor-info .search-output.active {
  display: block;
}
.transaction-layout .left .donor-info .donor-search-result {
  background: #fff;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3019607843);
  border: 1px solid #f4f4f4;
  border-radius: 3px;
  width: 985px;
  max-height: 400px;
  overflow-y: auto;
  padding: 20px;
  position: absolute;
  left: 0;
  top: 0;
}
.transaction-layout .left .donor-info .donor-search-result .table-responsive {
  max-height: 190px;
}
.transaction-layout .left .donor-info .donor-search-result .table td p {
  font-size: 14px;
  color: #212529;
  margin-bottom: 5px;
}
.transaction-layout .left .donor-info .donor-search-result .button-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #ddd;
}
.transaction-layout .left .donor-info .donor-search-result .button-wrap a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px;
  font-size: 14px;
  color: #7b5bc4;
  background: #edeaf4;
  border-radius: 4px;
}
.transaction-layout .left .donor-info .donor-search-result .button-wrap a:hover {
  color: #fff;
  background: #7b5bc4;
}
.transaction-layout .left .amount-info {
  text-align: center;
}
.transaction-layout .left .amount-info p {
  text-align: center;
  font-size: 14px;
  letter-spacing: 0;
  color: #625f69;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.transaction-layout .left .amount-info .input-wrap {
  position: relative;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.transaction-layout .left .amount-info .input-wrap input {
  width: 100%;
  background-color: #e8e8e8;
  border: 0;
  border-bottom: 3px solid #8568ca;
  border-radius: 0;
  padding: 6px 40px;
  height: 38px;
  color: #212529;
  text-align: center;
}
.transaction-layout .left .amount-info .input-wrap select {
    width: 100%;
    background-color: #e8e8e8;
    border: 0;
    border-bottom: 3px solid #8568ca;
    border-radius: 0;
    padding: 6px 40px;
    height: 38px;
    color: #212529;
    text-align: center;
  }
.transaction-layout .left .amount-info .input-wrap .icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #444;
  line-height: 1;
}
.transaction-layout .left .amount-info .amount-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.transaction-layout .left .amount-info .amount-layout .amount-item {
  background: #efedf2;
  border: 1px solid #c7bbe3;
  border-radius: 3px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.transaction-layout .left .amount-info .amount-layout .amount-item span {
  color: #434246;
  font-size: 14px;
}
.transaction-layout .left .amount-info .amount-layout .amount-item p {
  color: #434246;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 700;
}
.transaction-layout .left .type-info {
  text-align: center;
}
.transaction-layout .left .type-info p {
  text-align: center;
  font-size: 14px;
  letter-spacing: 0;
  color: #625f69;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.transaction-layout .left .type-info .input-wrap {
  position: relative;
}
.transaction-layout .left .type-info .input-wrap textarea {
  width: 100%;
  background-color: #fafafa;
  border: 1px solid #d0d0d0;
  border-radius: 0;
  padding: 6px 40px;
  height: 60px;
  color: #212529;
  text-align: center;
}
.transaction-layout .left .type-info .input-wrap .icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #444;
  line-height: 1;
}
.transaction-layout .left .type-info .payment-type-layout {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .transaction-layout .left .type-info .payment-type-layout {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .transaction-layout .left .type-info .payment-type-layout {
    flex-wrap: wrap;
  }
}
.transaction-layout .left .type-info .payment-type-layout a {
  background-color: #efedf2;
  min-height: 50px;
  padding: 4px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-basis: 25%;
  margin-left: 2%;
  border-radius: 5px;
  border: 1px solid #c7bbe3;
  margin-bottom: 2%;
  position: relative;
  color: #444;
}
.transaction-layout .left .type-info .payment-type-layout a img {
  max-width: 32px;
  width: auto;
  margin: 0 auto;
}
.transaction-layout .right {
  padding: 16px;
}
.transaction-layout .right .nav-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  overflow: hidden;
}
@media (min-width: 768px) and (max-width: 991px) {
  .transaction-layout .right .nav-tabs {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .transaction-layout .right .nav-tabs {
    flex-direction: column;
  }
}
.transaction-layout .right .nav-tabs .nav-item {
  flex: 1;
  width: 100%;
}
.transaction-layout .right .nav-tabs .nav-item .nav-link {
  width: 100%;
  border-radius: 0;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #625f69;
  padding: 10px 15px;
  border: 0;
  border-bottom: 2px solid #ddd;
  text-transform: uppercase;
  font-size: 14px;
  text-align: center;
}
.transaction-layout .right .nav-tabs .nav-item .nav-link.active {
  border-color: #8568ca;
}
.transaction-layout .right .nav-tabs .nav-item .nav-link i {
  font-size: 20px;
  color: #8568ca;
}
.transaction-layout .right .options-info p {
  font-size: 14px;
  letter-spacing: 0;
  color: #625f69;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.transaction-layout .right .options-info .option-wrap {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .transaction-layout .right .options-info .option-wrap {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.transaction-layout .right .options-info .option-wrap label {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #212529;
}
.transaction-layout .right .options-info .option-wrap .form-select,
.transaction-layout .right .options-info .option-wrap input[type="text"],
.transaction-layout .right .options-info .option-wrap input[type="password"],
.transaction-layout .right .options-info .option-wrap input[type="number"],
.transaction-layout .right .options-info .option-wrap input[type="email"],
.transaction-layout .right .options-info .option-wrap input[type="tel"],
.transaction-layout .right .options-info .option-wrap input[type="date"],
.transaction-layout .right .options-info .option-wrap textarea {
  width: 100%;
  background-color: #fafafa;
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  padding: 6px 12px;
  height: 38px;
  color: #212529;
  margin-bottom: 5px;
}
.transaction-layout .right .options-info .switch-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  background: none;
  border: 0;
  gap: 10px;
  margin-bottom: 20px;
}
.transaction-layout .right .options-info .switch-btn .switch-wrap {
  width: 55px;
  height: 30px;
  background: #ccc;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.transaction-layout .right .options-info .switch-btn .switch-wrap .switch-circle {
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  height: 26px;
  width: 26px;
  background: #fff;
  border-radius: 100%;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.transaction-layout .right .options-info .switch-btn[aria-expanded=true] .switch-wrap {
  background: #8568ca;
}
.transaction-layout .right .options-info .switch-btn[aria-expanded=true] .switch-wrap .switch-circle {
  left: 26px;
}
.transaction-layout .right .pay-layout {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
}
.transaction-layout .right .pay-layout .item p {
  font-size: 12px;
  color: #8f8e95;
  text-transform: uppercase;
  margin-bottom: 0;
}
.transaction-layout .right .pay-layout .item h4 {
  color: #434246;
  font-size: 20px;
  margin-bottom: 0;
}
.transaction-layout .right .pay-bottom {
  border-top: 1px solid #e0e0e0;
  padding-top: 14px;
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}
.transaction-layout .right .pay-bottom .input-wrap {
  max-width: 165px;
}
.transaction-layout .right .pay-bottom .input-wrap input {
  width: 100%;
  background: #edeaf4;
  height: 42px;
  border: 0;
  border-radius: 5px;
  padding: 5px 12px;
}
.transaction-layout .right .pay-bottom .filter {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #edeaf4;
  height: 42px;
  padding: 10px;
  color: #434246;
  border: 0;
  border-radius: 5px;
  font-size: 14px;
}
.transaction-layout .right .pay-bottom .play {
  display: inline-block;
  background: #edeaf4;
  height: 42px;
  padding: 10px;
  color: #7a5ac2;
  border: 0;
  border-radius: 5px;
  font-size: 14px;
}

.select2-container {
  width: 100% !important;
  display: block;
}
.select2-container .selection .select2-selection {
  width: 100%;
  background-color: #fafafa;
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  padding: 6px 12px;
  height: auto;
  color: #212529;
  margin-bottom: 5px;
}
.select2-container .selection .select2-selection .select2-selection__arrow {
  height: 100%;
  display: flex;
  align-items: center;
}
.select2-container .selection .select2-selection .select2-selection__arrow b {
  display: none;
}
.select2-container .selection .select2-selection .select2-selection__arrow:before {
  content: "\f107";
  font-family: "Font Awesome 6 Pro";
}
.select2-container .selection .select2-selection--multiple .select2-selection__rendered {
  display: inline-flex;
  align-items: center;
  max-width: 222px;
  overflow: hidden;
  margin: 0;
  overflow-x: auto;
}
.select2-container .selection .select2-selection--multiple .select2-selection__rendered::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}
.select2-container .selection .select2-selection--multiple .select2-selection__rendered::-webkit-scrollbar-track {
  background: #c1c1c1;
}
.select2-container .selection .select2-selection--multiple .select2-selection__rendered::-webkit-scrollbar-thumb {
  background-color: #222;
  outline: none;
}
.select2-container .selection .select2-selection--multiple .select2-selection__rendered::-webkit-scrollbar-thumb:active {
  background: #7b5bc4;
}
.select2-container .selection .select2-selection--multiple .select2-selection__rendered .select2-selection__choice {
  margin-left: 0;
  margin-top: 0;
  margin-bottom: 5px;
  margin-right: 5px;
  flex: none;
  background: #7b5bc4;
  color: #fff;
  border-color: #222;
}
.select2-container .selection .select2-selection--multiple .select2-selection__rendered .select2-selection__choice .select2-selection__choice__remove {
  color: #fff;
  border-color: #222;
}
.select2-container .selection .select2-selection--multiple .select2-selection__rendered .select2-selection__choice .select2-selection__choice__remove:hover {
  background: #222;
}

.page-tabs-nav .nav-tabs {
  border: 0;
  border-radius: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.page-tabs-nav .nav-tabs .nav-item {
  border: 0;
  margin: 0;
}
.page-tabs-nav .nav-tabs .nav-item .nav-link {
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  color: #625f69;
  padding: 8px 16px;
  box-shadow: none;
  border: 0;
}
.page-tabs-nav .nav-tabs .nav-item .nav-link.active {
  background: #e4def0;
  color: #7b5bc4;
}

/*------------------------------------------------------------------------------
	Template Name: Starter Project Template.
-------------------------------------------------------------------------------*/

/*# sourceMappingURL=main.css.map */
