@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap'); 

:root {
	--white: #fff;
  --black: #000;
	--light-gray: #AFB3B6;
	--gray: #7E7E7E;
	--gray-dark: #4F4C58;
	--primary: #7166D6;
	--secondary: #858796;
	--success: #00A827;
	--info: #36b9cc;
	--warning: #FFBA33;
	--danger: #EA0000;
	--light: #f8f9fc;
	--dark: #1E1C24;
	--form-border-color: #FFE3C9; 
	--bg-light: #FFF9F5;
	--bg-color: #24252D;
	--table-border: #F5F5F5;
	--light-primary: #6F65D3;
	--border-color: #3B3A42;
	--purple: #9B2B8B;
	--darkblue: #2B449B;
}
* {
  padding: 0;
  margin: 0;
  box-shadow: none;
}
*,
::after,
::before {
	box-sizing: border-box
}
html {
	font-family: 'Comfortaa', sans-serif;
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: transparent
}
body {
  position: relative;
  min-height: 100%;
  font-family: "Manrope", sans-serif !important;
  color: var(--white) !important;
  background-color: #191820 !important; 

}
h1, h2, h3, h4, h5, h6, p {
  color: var(--white);
}
a {
  text-decoration: none !important;
  color: var(--primary) !important;
  font-size: 0.875rem;
}
.gray {
  color: var(--gray);
}
.dark {
  color: var(--dark);
}
.primary {color: var(--primary);}
.white {
  color: var(--white) !important;
}
.form-control {
  color: var(--white) !important;
}
input.form-control {
  border: 1px solid var(--border-color);
  background: var(--dark) !important;
  height: 50px;
  border-radius: 15px;
}
.form-control:focus {
  background: none;
  color: var(--white);
  box-shadow: none !important;
}
textarea.form-control {
  border: 1px solid var(--border-color);
  background: var(--dark) !important;
  height: 50px;
  border-radius: 15px;
}
.btn {border-radius: 0.625rem !important;}
.btn-primary {
  color: var(--dark) !important;
  background-color: var(--white) !important;
  border-color: var(--white) !important;
  padding: .75rem .75rem !important;
  /* min-width: 250px; */
}
.btn-primary:hover {
  border: 1px solid var(--light-gray) !important;
  background: var(--dark) !important;
  color: var(--white) !important;
}
a.btn.btn-primary:hover {
  color: var(--white) !important;
}
.btn-check:focus+.btn-primary, .btn-primary:focus {
  box-shadow: none !important;
}
.form-control:focus {
  border-color: var(--primary) !important;
}
ul.dropdown-menu {
  background: var(--bg-color);
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
  color: var(--white);
  min-width: 220px;
  width: auto;
}
.dropdown-item {
  color: var(--white) !important;
}
.dropdown-item:focus, .dropdown-item:hover {
  color: var(--white) !important;
  background-color: #3a3a3a !important;
}
.small, small {
  font-size: 0.8125em !important;
}
.btn-check:focus+.btn, .btn:focus {
  box-shadow: none !important;
}
.table>:not(caption)>*>* {
  background: var(--bg-color) !important;
}
tbody, td, tfoot, th, thead, tr {
  vertical-align: middle;
}
td {
  font-size: 14px;
}
.table>:not(:last-child)>:last-child>* {
  border-bottom-color: var(--primary) !important;
}
.border-top, .border-bottom, .border-left, .border-right {
  border-color: var(--border-color) !important;
}
.wrapper .border-bottom { border-bottom: 1px solid var(--border-color) !important;}
.wrapper .border-top { border-top: 1px solid var(--border-color) !important;}
.wrapper .border-right { border-right: 1px solid var(--border-color) !important;}
.wrapper .border-left { border-left: 1px solid var(--border-color) !important;}
.wrapper .border-primary {border-color: var(--light-primary) !important;}


.modal-content {
  background-color: var(--bg-color) !important;
  border-radius: 1rem !important;
  border: 1px solid var(--primary) !important;
}
.modal-dialog button.btn-close {
  border: 0;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  position: absolute;
  right: -13px;
  top: -13px;
  display: flex;
  background: var(--white);
  opacity: 1;
  color: var(--dark);
  font-size: 1.25rem;
  align-items: center;
  justify-content: center;
  z-index: 9;
}
.modal-header {
  border-bottom: 0 !important;
}
label.form-label {
  font-size: .875rem;
  color: var(--light-gray);
}
.modal-footer {
  border-top: 1px solid var(--border-color) !important;
}
select.form-select {
  border: 1px solid var(--border-color);
  background: var(--dark) !important;
  height: 50px;
  border-radius: 15px;
  color: var(--light-gray);
}
span.select-icon {
  position: absolute;
  right: 15px;
  top: 13px;
}
.modal-footer {
  border-top: 0 !important;
}
.modal-title {
  margin-top: 20px;
}
.wrapper .border-primary {border-color: var(--light-primary) !important;}

.form-checked .form-check-input {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50% !important;
  background-color: var(--bg-color) !important;
  border: 1px solid #fff !important;
}
label.form-check-label {
  margin-top: 3px;
  font-size: 0.875rem;
}
.cancel {
  color: var(--danger);
}
.warning {
  color: var(--warning);
}
.wrapper .bg-primary {
  background: var(--primary) !important;
}
.form-check.form-radio .form-check-input {
  background-color: var(--bg-color);
  border: 1px solid #fff;
}
.mw-250 {min-width: 250px !important;}
.pagination {
  justify-content: end;
}
.page-link {
  padding: .375rem .75rem;
  margin: 0 6px;
  background-color: var(--gray-dark) !important;
  color: var(--white) !important;
  border: 1px solid var(--gray-dark) !important;
  border-radius: 5px;
}
.page-item.active .page-link {
  z-index: 3;
  color: var(--white);
  background-color: var(--primary) !important;
  border-color: var(--light-primary) !important;
}
.page-item:first-child .page-link, .page-item:last-child .page-link {
  border-radius: 5px !important;
}
/* basic-end */

/* signin-page-style */
.signin-page {
  background: url(../images/signin-bg.png);
  width: 100%;
  height: 100vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
.sign-in-left-sec {
  background: url(../images/signin-left.png);
  width: 100%;
  height: 100vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sign-in-right-sec {
  color: var(--white);
  min-height: 580px;
  height: 100%;
}
.phone-form {
  display: flex;
  align-items: center;
  background: var(--dark);
  border: 1px solid var(--border-color);
  padding: 0 10px;
  border-radius: 15px;
  height: 50px;
  color: var(--white);
  width: 100%;
}
.signin-page .form-select, .phone-form .form-control {
  border: 0;
  background: none;
  color: var(--white);
  height: 48px;
}
.signin-page .dropdown-toggle {
  color: var(--white) !important;
  border-right: 1px solid var(--white);
  border-radius: 0 !important;
}
.signin-page .form-control:focus {
  background: none;
  color: var(--white);
  box-shadow: none;
}
.phone-form span {
  color: #4F4C58;
}
.sign-in-right-sec label {
  color: var(--white);
}

.otp-sec {
  display: flex;
  align-items: center;
}
.otp-sec input {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 10px 0 0;
}
.sign-in-right-sec a {
  color: var(--white);
}
.sign-in-right-sec a:hover {
  color: var(--primary) !important ;
}

img.logo {
  width: 150px;
}

.input-group-text {
  border: 1px solid var(--border-color) !important;
  background-color: var(--dark) !important;
  border-right: 0 !important;
  border-radius: 50px 0 0 50px !important;
  color: var(--white) !important;
}

.web-card {
  background: var(--bg-color);
  padding: 30px;
  border-radius: 30px;
  position: relative;
}
.dash-service .card {
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
  margin: 0;
  border: 0;
}
.dash-service .card p {
  font-size: 0.875rem;
}
.dash-service {
  overflow: hidden;
}
.web-card.dash-service::before {
  content: "";
  width: 130px;
  height: 130px;
  background: url("../images/banner-services/banner-service-icon-left.png") no-repeat ;
  top: 0;
  left: 0;
  position: absolute;
  display: inline-block;
  background-position: center;
  background-size: contain;
  }
  .web-card.dash-service::after {
  content: "";
  width: 130px;
  height: 130px;
  background: url("../images/banner-services/banner-service-icon-right.png") no-repeat ;
  top: 0;
  right: 0;
  position: absolute;
  display: inline-block;
  background-position: center;
  background-size: contain;
  }

.lst-prfl {
  margin-bottom: 10px;
  padding: 10px;
  border-bottom: 1px solid var(--border-color);
}
ul.profile-drpdown .dropdown-item  {
  font-size: .875rem;
  padding: .5rem 1rem;
}
ul.profile-drpdown .dropdown-item span {
  padding-left: 5px;
}
.danger-btn, .danger-btn p, .danger-btn:hover {
  color: var(--danger) !important;
}
ul.ntfcn-dropdwn h4 {
  font-size: 17px;
  margin-bottom: 0;
}
.unread-notfctn {
  width: 10px;
  height: 10px;
  display: block;
  background: var(--primary);
  border-radius: 50%;
}
ul.ntfcn-dropdwn button.dropdown-item h5 {
  font-size: 1rem;
  margin-bottom: 5px;
}
ul.ntfcn-dropdwn button.dropdown-item p {
  font-size: 13px;
  margin-bottom: 5px;
}
ul.ntfcn-dropdwn button.dropdown-item small {
  font-size: 11px;
}
span.btn-ntfcn {
  width: 10px;
  height: 10px;
  display: block;
  background: var(--primary);
  border-radius: 50%;
  border: 1px solid #fff;
  position: absolute;
  top: 3px;
  right: 0;
}
ul.ntfcn-dropdwn li {
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 10px;
  padding-bottom: 10px;
}
img.card-realtive {
  width: 100%;
  position: absolute;
  bottom: 0px;
  max-width: 430px;
  left: 50%;
  transform: translateX(-50%);
}
.web-card {
  min-height: 340px;
}
.navbar-brand.navbar-brand-mob {
  display: none;
}
.ntfctn-dtls {
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 15px;
  padding-bottom: 10px;
}
a.btn.opt-btn {
  background: var(--light-primary);
  margin-left: 5px;
  color: var(--white) !important;
}
.ntfctn-dtls h5 {
  font-size: 1rem;
}
.ntfctn-dtls p {
  font-size: 0.875rem;
  color: #ebe1e1;
}
small.ntfcn-date {
  color: var(--gray);
}
.ntfctn-dtls-text {
  display: flex;
  flex-wrap: wrap;
  width: fit-content;
}
.web-card.wallet-card {
  background: var(--light-primary);
  min-height: 130px;
  border-radius: 20px !important;
  padding: 40px 30px;
  overflow: hidden;
}
.form-check-input:checked {
  background-color: var(--dark) !important;
  border-color: var(--white) !important;
}
span.debit {
  color: var(--danger);
}
span.credit {
  color: var(--success);
}
.contributors-sec {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.web-card.threshhold-card {
  min-height: auto;
}
.rchrg-sec h1 {
  color: var(--gray);
}
.rchrg-sec h1 span {
  color: var(--white);
}
.pay-card {
  position: relative;
  background-image: url(../images/card-bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  max-width: 357px;
  height: 184px;
  display: block;
  border-radius: 20px;
  padding: 15px;
  width: 100%;
}
span.card-logo {
  position: absolute;
  right: 15px;
  top: 15px;
}
.btn-group.card-option .dropdown-toggle {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: var(--white);
  display: flex;
}
.btn-group.card-option .dropdown-toggle::after {
  display: none;
}
.btn-group.card-option ul.dropdown-menu {
  min-width: 170px;
  font-size: 0.875rem;
}

.dark-card {
  background: #1B1921;
  border-radius: 20px;
  padding: 20px !important;
}
img.card-banner-img {
  width: 100%;
  max-width: 350px;
}
ul.dropdown-menu {overflow: hidden;}
button.dropdown-item span {
  width: 30px;
}
.categories-sec img {
  max-height: 120px;
  width: 100%;
  object-fit: contain;
}
.categories-sec p {
  width: 160px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 auto;
}
.rchrg-sec {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
}
.web-card.wallet-card::before {
  content: "";
  width: 130px;
  height: 130px;
  background: url("../images/wallet-before.png") no-repeat;
  top: 0;
  right: 0;
  position: absolute;
  display: inline-block;
  background-position: center;
  background-size: contain;
}
.web-card.wallet-card.modal-wallet-card::before {
  width: 80px;
  height: 80px;
}
.web-card.wallet-card.modal-wallet-card {
  padding: 15px;
  min-height: auto;
}
a.btn-outline {
  border: 1px solid var(--gray-dark);
  color: var(--white) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .75rem .75rem !important;
}
a.btn-outline:hover, a.btn-outline.active {
  border: 1px solid var(--primary);
  color: var(--white) !important;
}
a.btn-outline-sm {
  border: 1px solid var(--gray-dark);
  color: var(--white) !important;
  padding: 2px 10px;
  min-width: 60px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 30px;
  font-size: .875rem;
}
a.btn-outline-sm:hover, a.btn-outline-sm.active {
  border: 1px solid var(--primary);
  color: var(--white) !important;
  background: var(--primary);
}
.btn.back-btn {
  color: var(--white) !important;
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
}
a.btn.back-btn {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
}
a.btn.back-btn i {
  background: var(--white);
  width: 20px;
  height: 20px;
  border-radius: 7px;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-right: 5px;
}
.wallet-rchrg-pg p {
  font-size: .875rem;
}
.profile-img img {
  width: 130px;
  height: 130px;
  border-radius: 100%;
  object-fit: cover;
  margin: 10px;
}
.round {
  position: relative;
}
.round label {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  cursor: pointer;
  height: 28px;
  left: 0;
  position: absolute;
  top: 0;
  width: 28px;
}
.round label:after {
  border: 2px solid #fff;
  border-top: none;
  border-right: none;
  content: "";
  height: 6px;
  left: 7px;
  opacity: 0;
  position: absolute;
  top: 8px;
  transform: rotate(-45deg);
  width: 12px;
}
.round input[type="checkbox"] {
  visibility: hidden;
}
.round input[type="checkbox"]:checked + label {
  background-color: #66bb6a;
  border-color: #66bb6a;
}
.round input[type="checkbox"]:checked + label:after {
  opacity: 1;
}
button.btn.dropdown-toggle.primary-dropdown {
  background: var(--primary);
  min-height: 40px;
}
button.btn.dropdown-toggle.primary-dropdown::after {
  display: none;
}
button.btn.dropdown-toggle.primary-dropdown span {
  background: #fff;
  height: 20px;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}
span.track-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #BEBEBE;
  border-radius: 50%;
  border: 1px solid var(--white);
}
span.trackline {
  border-left: 2px dashed var(--white);
  height: 70px;
  display: block;
  margin-left: 13px;
  margin-top: 10px;
  margin-bottom: 10px;
}
span.track-icon.active {
  background: var(--light-primary);
}


/* chat-sec */

.message-area {
  max-height: 100vh;
  overflow: hidden;
}
section.message-area .modal-content {
  border: 0 !important;
}
.msg-body {
  margin-top: 30px;
}
.chat-area {
  position: relative;
  width: 100%;
  background-color: var(--bg-color);
  border-radius: 0.3rem;
  height: 90vh;
  overflow: hidden;
  min-height: calc(100% - 1rem);
}
.chatlist {
  outline: 0;
  height: 100%;
  overflow: hidden;
  width: 300px;
  float: left;
  padding: 15px;
}
.chat-area .modal-content {
  border: none;
  border-radius: 0;
  outline: 0;
  height: 100%;
}
.chat-area .modal-dialog-scrollable {
  height: 100% !important;
}
.chatbox {
  width: auto;
  overflow: hidden;
  height: 100%;
}
.chatbox .modal-dialog,
.chatlist .modal-dialog {
  max-width: 100%;
  margin: 0;
}
.msg-search {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chat-area .form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #222;
  background-color: #151516 !important;
  background-clip: padding-box;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.chat-area .form-control:focus {
  outline: 0;
  box-shadow: inherit;
}
a.add img {
  height: 36px;
}
.chat-list h3 {
  color: #222;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-transform: capitalize;
  margin-bottom: 0;
}
.chat-list p {
  color: #343434;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  text-transform: capitalize;
  margin-bottom: 0;
}
.chat-list a.d-flex {
  margin-bottom: 15px;
  position: relative;
  text-decoration: none;
}
.chat-list .active {
  display: block;
  content: '';
  clear: both;
  position: absolute;
  bottom: 3px;
  left: 34px;
  height: 12px;
  width: 12px;
  background: #00DB75;
  border-radius: 50%;
  border: 2px solid #fff;
}
.moreoption {
  display: flex;
  align-items: center;
  justify-content: end;
}
.moreoption .navbar {
  padding: 0;
}
.moreoption li .nav-link {
  color: #222;
  font-size: 16px;
}
.moreoption .dropdown-toggle::after {
  display: none;
}
.moreoption .dropdown-menu[data-bs-popper] {
  top: 100%;
  left: auto;
  right: 0;
  margin-top: 0.125rem;
}
.msg-body ul {
  overflow: hidden;
  padding-left: 0;
}
.msg-body ul li {
  list-style: none;
  margin: 15px 0;
}
.msg-body ul li.sender {
  display: block;
  width: 100%;
  position: relative;
}
.msg-body ul li.sender p {
  color: #ffffff;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 400;
  padding: 8px 11px;
  background: var(--bg-color);
  display: inline-block;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  margin-bottom: 0;
}
.msg-body ul li.sender p b {
  display: block;
  color: #180660;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
}
.msg-body ul li.reply {
  display: block;
  width: 100%;
  text-align: right;
  position: relative;
}
.msg-body ul li.reply p {
  color: #fff;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 400;
  padding: 8px 11px;
  background: #7166d6;
  display: inline-block;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  margin-bottom: 0;
}
.msg-body ul li.reply p b {
  display: block;
  color: #061061;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
}
.divider {
  position: relative;
  z-index: 1;
  text-align: center;
}
.msg-body h6 {
  text-align: center;
  font-weight: normal;
  font-size: 14px;
  line-height: 1.5;
  color: var(--dark);
  background: var(--white);
  display: inline-block;
  padding: 0 5px;
  margin-bottom: 0;
}
.send-box {
  padding: 15px;
  background: var(--black);
}
.send-box form {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chatbox .modal-body {
  background: var(--black);
}
button.btn.sent-btn {
  background: var(--primary);
  color: var(--white) !important;
  height: 50px;
  display: flex;
  width: 50px;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.send-box-inn {
  background: #0C0C0D;
  padding: 10px;
  border: 1px solid #252323;
  border-radius: 10px;
}
/* chat-sec */


/* responsive-sec */

/* X-Large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) { 
  
 }

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) { 
  .phone-form{max-width: 100%;}
  img.card-wallet {
    max-width: 150px;
    margin-bottom: 20px;
}
img.card-realtive {
  max-width: 330px;
}
 }

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) { 
  .sign-in-left-sec img {width: 200px;}
  .btn-primary {font-size: 0.875rem;}
}
 

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) { 
  .signin-page{height: 100%;}
  .sign-in-left-sec img {width: 150px;}
  .sign-in-left-sec {height: 100%; min-height: 200px;}
  .right-sec {gap: 15px !important;}
  .pftl-txt-hd {display: none;}
  .dash-service::before, .dash-service::after {
    width: 90px;
    height: 90px;
  }
  .wallet-rchrg-pg .border-right {
    border-right: 0 !important;
  }
  .web-card.dash-service::before, .web-card.dash-service::after {display: none;}
  img.card-realtive {max-width: 300px;}
  img.card-wallet {max-width: 100px;}
}
/* X-Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) { 
  #content-wrapper {padding: 10px 0 !important;}
  .web-card {padding: 15px;}
  .modal-content {margin: 0 15px;}
  .pay-card {
    width: 268px;
    height: 138px;
}
.dash-service::before, .dash-service::after {display: none;}
.modal-dialog button.btn-close{right: 5px; top: 5px;}

 }









