/* _variables.scss */
/* Color Variables */
/* Font Variables */
@font-face {
  font-family: GeneralSans;
  src: url("../fonts/GeneralSans/GeneralSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: GeneralSans;
  src: url("../fonts/GeneralSans/GeneralSans-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: GeneralSans;
  src: url("../fonts/GeneralSans/GeneralSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: GeneralSans;
  src: url("../fonts/GeneralSans/GeneralSans-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: GeneralSans;
  src: url("../fonts/GeneralSans/GeneralSans-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: GeneralSans;
  src: url("../fonts/GeneralSans/GeneralSans-SemiboldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: GeneralSans;
  src: url("../fonts/GeneralSans/GeneralSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: GeneralSans;
  src: url("../fonts/GeneralSans/GeneralSans-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: GeneralSans;
  src: url("../fonts/GeneralSans/GeneralSans-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: GeneralSans;
  src: url("../fonts/GeneralSans/GeneralSans-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: GeneralSans;
  src: url("../fonts/GeneralSans/GeneralSans-Extralight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: GeneralSans;
  src: url("../fonts/GeneralSans/GeneralSans-ExtralightItalic.ttf") format("truetype");
  font-weight: 200;
  font-style: italic;
}
@font-face {
  font-family: GeneralSans;
  src: url("../fonts/GeneralSans/GeneralSans-Variable.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: GeneralSans;
  src: url("../fonts/GeneralSans/GeneralSans-VariableItalic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
}
@font-face {
  font-family: ObjectSans;
  src: url("../fonts/ObjectSans/ObjectSansRegular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: ObjectSans;
  src: url("../fonts/ObjectSans/ObjectSansSlanted.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: ObjectSans;
  src: url("../fonts/ObjectSans/ObjectSansHeavy.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: ObjectSans;
  src: url("../fonts/ObjectSans/ObjectSansHeavySlanted.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
}
/*================  Border Radius Css Start here    ========================*/
*,
*::before,
*::after {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
}

body {
  padding: 0 !important;
  margin: 0;
  font-family: GeneralSans;
  line-height: 1.5;
  background-color: #fff;
  font-weight: 400;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #9454ff #f1eefd;
}
*::-webkit-scrollbar {
  width: 8px;
  background: #f1eefd;
  border-radius: 8px;
}
*::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #9454ff 0%, #731eff 100%);
  border-radius: 8px;
  min-height: 40px;
}
*::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #731eff 0%, #9454ff 100%);
}
*::-webkit-scrollbar-track {
  background: #f1eefd;
  border-radius: 8px;
}

img,
a,
input,
nav,
textarea,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

a {
  display: inline-block;
  color: #21094a;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: #731eff;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input::-ms-reveal,
input::-ms-clear {
  display: none;
}

[type=number] {
  -moz-appearance: none;
  -webkit-appearance: none;
          appearance: none;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.container {
  max-width: 1264px;
}

.py-100 {
  padding: 100px 0;
}
@media only screen and (max-width: 1279px) {
  .py-100 {
    padding: 80px 0;
  }
}
@media only screen and (max-width: 1199px) {
  .py-100 {
    padding: 70px 0;
  }
}
@media only screen and (max-width: 1024px) {
  .py-100 {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 991px) {
  .py-100 {
    padding: 50px 0;
  }
}

.pt-100 {
  padding-top: 100px;
}
@media only screen and (max-width: 1279px) {
  .pt-100 {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 1199px) {
  .pt-100 {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 1024px) {
  .pt-100 {
    padding-top: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .pt-100 {
    padding-top: 50px;
  }
}

.pb-100 {
  padding-bottom: 100px;
}
@media only screen and (max-width: 1279px) {
  .pb-100 {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 1199px) {
  .pb-100 {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 1024px) {
  .pb-100 {
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .pb-100 {
    padding-bottom: 50px;
  }
}

.my-100 {
  margin: 100px 0;
}
@media only screen and (max-width: 1279px) {
  .my-100 {
    margin: 80px 0;
  }
}
@media only screen and (max-width: 1199px) {
  .my-100 {
    margin: 70px 0;
  }
}
@media only screen and (max-width: 1024px) {
  .my-100 {
    margin: 60px 0;
  }
}
@media only screen and (max-width: 991px) {
  .my-100 {
    margin: 50px 0;
  }
}

.mb-100 {
  margin-bottom: 100px;
}
@media only screen and (max-width: 1279px) {
  .mb-100 {
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 1199px) {
  .mb-100 {
    margin-bottom: 70px;
  }
}
@media only screen and (max-width: 1024px) {
  .mb-100 {
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .mb-100 {
    margin-bottom: 50px;
  }
}

textarea {
  resize: none;
}

.margin-top-120 {
  margin-top: 120px;
}
@media only screen and (max-width: 767px) {
  .margin-top-120 {
    margin-top: 80px;
  }
}

.section-head {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(18px + 2 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  color: #534c60;
}
.section-head strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .section-head {
    font-size: 18px;
  }
}
@media screen and (min-width: 1440.5px) {
  .section-head {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .section-head {
    font-size: 18px;
  }
}
.section-head .section-title {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(32px + 10 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  margin-bottom: 16px;
  color: #21094a;
}
.section-head .section-title strong {
  font-weight: 600;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .section-head .section-title {
    font-size: 32px;
  }
}
@media screen and (min-width: 1440.5px) {
  .section-head .section-title {
    font-size: 42px;
  }
}
@media only screen and (max-width: 991px) {
  .section-head .section-title {
    line-height: 1.2;
  }
}
@media only screen and (max-width: 1024px) {
  .section-head .section-title {
    margin-bottom: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .section-head .section-title {
    margin-bottom: 8px;
  }
}
.section-head .section-title strong {
  color: #731eff;
}
.section-head .section-title:last-child {
  margin-bottom: 0;
}
.section-head p strong {
  color: #21094a;
}
.section-head.head-col-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.section-head.mb-50 {
  margin-bottom: 50px;
}
@media only screen and (max-width: 1199px) {
  .section-head.mb-50 {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 1024px) {
  .section-head.mb-50 {
    margin-bottom: 35px;
  }
}
@media only screen and (max-width: 767px) {
  .section-head.mb-50 {
    margin-bottom: 30px;
  }
}

.btn-group {
  display: -ms-flex;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  min-height: 50px;
  min-width: 190px;
  border-radius: 70px;
  flex: none;
  border: 1px solid #21094a;
  background-color: #21094a;
  color: #fff;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .btn-primary {
    min-height: 46px;
  }
}
.btn-primary:hover {
  background-color: #4B05BE;
  border-color: #4B05BE;
  color: #fff;
}
.btn-primary.disabled, .btn-primary[disabled] {
  background-color: #D1D5DB;
  border-color: #D1D5DB;
  color: #D1D5DB;
  pointer-events: none;
  cursor: none;
}
@media only screen and (max-width: 1024px) {
  .btn-primary {
    min-width: 100px;
  }
}

.btn-secondary {
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  min-height: 50px;
  min-width: 190px;
  border-radius: 70px;
  flex: none;
  border: 1px solid #21094a;
  background-color: #fff;
  color: #21094a;
  border-radius: 70px;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .btn-secondary {
    min-height: 46px;
  }
}
.btn-secondary:hover {
  background-color: #21094a;
  color: #fff;
}
.btn-secondary.disabled, .btn-secondary[disabled] {
  background-color: #D1D5DB;
  border-color: #D1D5DB;
  color: #D1D5DB;
  pointer-events: none;
  cursor: none;
}
@media only screen and (max-width: 1024px) {
  .btn-secondary {
    min-width: 100px;
  }
}

.margin-top-10 {
  margin-top: 10px;
}

.margin-top-20 {
  margin-top: 20px;
}

.margin-top-30 {
  margin-top: 30px;
}

.fix-square {
  position: absolute;
  top: 0;
  left: 0;
  height: 340px;
  width: 100%;
  background-color: #f1eefd;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  z-index: -1;
}

h1.titleh1 {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(32px + 10 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  color: #21094a;
  margin-bottom: 38px;
  font-weight: 600;
}
h1.titleh1 strong {
  font-weight: 600;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  h1.titleh1 {
    font-size: 32px;
  }
}
@media screen and (min-width: 1440.5px) {
  h1.titleh1 {
    font-size: 42px;
  }
}
@media only screen and (max-width: 991px) {
  h1.titleh1 {
    line-height: 1.2;
  }
}
@media screen and (max-width: 767px) {
  h1.titleh1 {
    margin-bottom: 24px;
  }
}

.connect-box-wrap .money-connection-box {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px;
  z-index: 1;
}
@media screen and (max-width: 991px) {
  .connect-box-wrap .money-connection-box {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}
.connect-box-wrap .money-connection-box .money-connection {
  background-color: #f1eefd;
  padding: 30px 40px;
  flex: 1;
  border-radius: 30px;
}
@media screen and (max-width: 1279px) {
  .connect-box-wrap .money-connection-box .money-connection {
    border-radius: 24px;
  }
}
@media screen and (max-width: 767px) {
  .connect-box-wrap .money-connection-box .money-connection {
    border-radius: 18px;
  }
}
@media screen and (max-width: 1280px) {
  .connect-box-wrap .money-connection-box .money-connection {
    padding: 20px 30px;
  }
}
@media screen and (max-width: 1199px) {
  .connect-box-wrap .money-connection-box .money-connection {
    padding: 20px;
  }
}
@media screen and (max-width: 991px) {
  .connect-box-wrap .money-connection-box .money-connection {
    width: 100%;
    flex: 100%;
  }
}
@media screen and (max-width: 767px) {
  .connect-box-wrap .money-connection-box .money-connection {
    padding: 15px;
  }
}
.connect-box-wrap .money-connection-box .money-connection.gradient1 {
  background: linear-gradient(90deg, rgb(229, 213, 255) 0%, rgb(232, 221, 255) 100%);
}
.connect-box-wrap .money-connection-box .money-connection.gradient1 .bootstrap-select.disabled {
  cursor: auto !important;
  width: auto !important;
}
.connect-box-wrap .money-connection-box .money-connection.gradient2 {
  background: linear-gradient(90deg, rgb(233, 223, 255) 0%, rgb(237, 232, 255) 100%);
}
.connect-box-wrap .money-connection-box .money-connection .send-receive-wrap {
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.connect-box-wrap .money-connection-box .money-connection .send-receive-wrap p {
  font-size: 16px;
  line-height: 100%;
  font-weight: 500;
  margin-bottom: 0;
  color: #534c60;
  font-family: GeneralSans;
}
@media screen and (max-width: 1199px) {
  .connect-box-wrap .money-connection-box .money-connection .send-receive-wrap p {
    font-size: 14px;
  }
}
.connect-box-wrap .money-connection-box .money-connection .send-receive-wrap .bootstrap-select {
  width: 118px;
}
.connect-box-wrap .money-connection-box .money-connection .send-receive-wrap .bootstrap-select .dropdown-toggle {
  background-color: rgba(250, 247, 255, 0.6);
  border-color: rgba(250, 247, 255, 0.6);
  border-radius: 30px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 0;
  color: #21094a;
  font-family: GeneralSans;
}
@media screen and (max-width: 1199px) {
  .connect-box-wrap .money-connection-box .money-connection .send-receive-wrap .bootstrap-select .dropdown-toggle {
    font-size: 14px;
  }
}
.connect-box-wrap .money-connection-box .money-connection .send-receive-wrap .bootstrap-select .dropdown-toggle::after {
  background: url(../images/down-arrow.svg) no-repeat center center;
  background-size: 100% 100%;
  border: 0;
  height: 9px;
  width: 18px;
}
.connect-box-wrap .money-connection-box .money-connection .send-receive-wrap .bootstrap-select .dropdown-toggle:focus {
  outline: 0 !important;
}
.connect-box-wrap .money-connection-box .money-connection .send-receive-wrap .bootstrap-select .dropdown-toggle .filter-option .filter-option-inner {
  font-size: 16px;
}
@media screen and (max-width: 1199px) {
  .connect-box-wrap .money-connection-box .money-connection .send-receive-wrap .bootstrap-select .dropdown-toggle .filter-option .filter-option-inner {
    font-size: 14px;
  }
}
.connect-box-wrap .money-connection-box .money-connection .send-receive-wrap .currency-flag {
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f1eefd;
  padding: 10px 12px;
  border-radius: 30px;
  color: #21094a;
  gap: 6px;
}
@media screen and (max-width: 1199px) {
  .connect-box-wrap .money-connection-box .money-connection .send-receive-wrap .currency-flag {
    font-size: 14px;
    padding: 8px 10px;
  }
}
.connect-box-wrap .money-connection-box .money-connection .send-receive-wrap .currency-flag img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}
@media screen and (max-width: 1199px) {
  .connect-box-wrap .money-connection-box .money-connection .send-receive-wrap .currency-flag img {
    width: 20px;
    height: 20px;
  }
}
.connect-box-wrap .money-connection-box .money-connection .input-value {
  width: 100%;
}
.connect-box-wrap .money-connection-box .money-connection .input-value input {
  outline: none;
  border: 1px solid #fff;
  background-color: #fff;
  border-radius: 75px;
  font-size: 32px;
  line-height: 100%;
  font-weight: 600;
  margin-bottom: 0;
  color: #731eff;
  padding: 8.5px 16px;
  font-family: GeneralSans;
  width: 100%;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1280px) {
  .connect-box-wrap .money-connection-box .money-connection .input-value input {
    font-size: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .connect-box-wrap .money-connection-box .money-connection .input-value input {
    font-size: 28px;
  }
}
@media screen and (max-width: 991px) {
  .connect-box-wrap .money-connection-box .money-connection .input-value input {
    font-size: 26px;
  }
}
@media screen and (max-width: 767px) {
  .connect-box-wrap .money-connection-box .money-connection .input-value input {
    font-size: 24px;
  }
}
@media screen and (max-width: 575px) {
  .connect-box-wrap .money-connection-box .money-connection .input-value input {
    font-size: 20px;
  }
}
.connect-box-wrap .money-connection-box .money-connection .input-value input:focus {
  border-color: #21094a;
}
.connect-box-wrap .money-connection-box .money-connection-wrap:last-child .money-connection-text {
  text-align: right;
}
.connect-box-wrap .money-connection-box .money-connect {
  background: linear-gradient(90deg, rgb(232, 222, 255) 0%, rgb(233, 223, 255) 100%);
  padding: 10px;
  height: 80px;
  width: 80px;
  min-width: 80px;
  border-radius: 50%;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 1280px) {
  .connect-box-wrap .money-connection-box .money-connect {
    top: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .connect-box-wrap .money-connection-box .money-connect {
    top: 35px;
  }
}
@media screen and (max-width: 991px) {
  .connect-box-wrap .money-connection-box .money-connect {
    position: relative;
    transform: rotate(90deg);
    top: 0;
    height: 60px;
    width: 60px;
    min-width: 60px;
  }
}
.connect-box-wrap .money-connection-box .money-connect::before {
  content: "";
  position: absolute;
  background: url(../images/1.svg) no-repeat center center;
  top: 0;
  bottom: 0;
  left: -40px;
  height: 80px;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 991px) {
  .connect-box-wrap .money-connection-box .money-connect::before {
    display: none;
  }
}
.connect-box-wrap .money-connection-box .money-connect::after {
  content: "";
  position: absolute;
  background: url(../images/2.svg) no-repeat center center;
  top: 0;
  bottom: 0;
  right: -40px;
  height: 80px;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 991px) {
  .connect-box-wrap .money-connection-box .money-connect::after {
    display: none;
  }
}
.connect-box-wrap .money-connection-box .money-connect .money-arrow {
  height: 60px;
  width: 60px;
  min-width: 60px;
  border-radius: 50%;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(250, 247, 255, 0.6);
  border: 1px solid #fff;
}
@media screen and (max-width: 991px) {
  .connect-box-wrap .money-connection-box .money-connect .money-arrow {
    height: 40px;
    width: 40px;
    min-width: 40px;
  }
}
.connect-box-wrap .money-connection-text {
  margin-top: 15px;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-weight: 500;
  color: #21094a;
  margin-bottom: 15px;
}
.connect-box-wrap .money-connection-text strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .connect-box-wrap .money-connection-text {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .connect-box-wrap .money-connection-text {
    font-size: 16px;
  }
}
.connect-box-wrap .money-connection-text small {
  color: #FF3B30;
}
.connect-box-wrap .money-connection-text span {
  color: #731eff;
}

.zimoney-common-modal .modal-dialog {
  padding-left: 8px;
  padding-right: 8px;
  margin-left: auto;
  margin-right: auto;
}
.zimoney-common-modal .modal-content {
  padding: 32px;
  box-shadow: 0px 4px 34px 0px rgba(33, 9, 74, 0.2);
  border-radius: 30px;
}
@media screen and (max-width: 1199px) {
  .zimoney-common-modal .modal-content {
    padding: 24px;
    border-radius: 24px;
  }
}
@media screen and (max-width: 991px) {
  .zimoney-common-modal .modal-content {
    padding: 20px;
    border-radius: 20px;
  }
}
.zimoney-common-modal .modal-content .modal-header {
  padding: 0 0 20px;
  border-bottom: 1px solid rgba(142, 130, 164, 0.3);
}
@media screen and (max-width: 575px) {
  .zimoney-common-modal .modal-content .modal-header {
    padding: 0 0 16px;
  }
}
.zimoney-common-modal .modal-content .modal-header .modal-title {
  font-size: 24px;
  line-height: 100%;
  font-weight: 500;
  color: #21094a;
  margin-bottom: 0;
}
@media screen and (max-width: 991px) {
  .zimoney-common-modal .modal-content .modal-header .modal-title {
    font-size: 22px;
  }
}
@media screen and (max-width: 575px) {
  .zimoney-common-modal .modal-content .modal-header .modal-title {
    font-size: 20px;
  }
}
.zimoney-common-modal .modal-content .btn-close {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background-color: #f1eefd;
  padding: 0;
  font-size: 12px;
  color: #21094a;
  --bs-btn-close-color: $primary-color;
  opacity: 1;
}
.zimoney-common-modal .modal-content .btn-close:focus {
  box-shadow: none;
}
.zimoney-common-modal .modal-content .modal-body {
  padding: 20px 0 0;
}
@media screen and (max-width: 575px) {
  .zimoney-common-modal .modal-content .modal-body {
    padding: 16px 0 0;
  }
}
.zimoney-common-modal .modal-content .modal-body p span {
  color: #21094a;
  font-weight: 500;
}

.radio-modal-btn {
  background-color: transparent;
  border: 1px solid rgba(33, 9, 74, 0.1);
  padding: 15px 16px;
  padding-right: 50px;
  border-radius: 25px;
  font-size: 14px;
  line-height: 100%;
  font-weight: 500;
  color: #21094a;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
.radio-modal-btn::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 18px;
  background: url(../images/down-arrow.svg) no-repeat center center;
  width: 18px;
  height: 18px;
  margin: auto 0;
}
.radio-modal-btn:focus {
  outline: none;
  box-shadow: none;
}

.radio-modal .modal-content .modal-body .radio-wrap {
  margin-bottom: 12px;
}
.radio-modal .modal-content .modal-body .radio-wrap:last-child {
  margin-bottom: 0;
}
.radio-modal .modal-content .modal-body .radio-wrap label {
  font-size: 18px;
  line-height: 100%;
  font-weight: 500;
  padding: 8px 52px 8px 8px;
  width: 100%;
  background-color: #f1eefd;
  border-radius: 84px;
  display: -ms-flex;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .radio-modal .modal-content .modal-body .radio-wrap label {
    font-size: 16px;
    gap: 8px;
  }
}
.radio-modal .modal-content .modal-body .radio-wrap label picture {
  height: 56px;
  width: 56px;
  min-width: 56px;
  border-radius: 50%;
  background-color: #fff;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .radio-modal .modal-content .modal-body .radio-wrap label picture {
    height: 50px;
    width: 50px;
    min-width: 50px;
  }
}
@media screen and (max-width: 375px) {
  .radio-modal .modal-content .modal-body .radio-wrap label picture {
    height: 40px;
    width: 40px;
    min-width: 40px;
  }
}
.radio-modal .modal-content .modal-body .radio-wrap label picture img {
  height: 24px;
  width: 24px;
}
@media screen and (max-width: 767px) {
  .radio-modal .modal-content .modal-body .radio-wrap label picture img {
    height: 22px;
    width: 22px;
  }
}
.radio-modal .modal-content .modal-body .radio-wrap [type=radio]:not(:checked) + label,
.radio-modal .modal-content .modal-body .radio-wrap [type=radio]:checked + label {
  position: relative;
}
.radio-modal .modal-content .modal-body .radio-wrap [type=radio]:not(:checked) + label::before,
.radio-modal .modal-content .modal-body .radio-wrap [type=radio]:checked + label::before {
  width: 24px;
  height: 24px;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  margin-right: 24px;
}
.radio-modal .modal-content .modal-body .radio-wrap [type=radio]:not(:checked) + label::after,
.radio-modal .modal-content .modal-body .radio-wrap [type=radio]:checked + label::after {
  top: 0px;
  bottom: 0;
  right: 6px;
  margin: auto;
  margin-right: 24px;
}

.radio-wrap [type=radio]:checked,
.radio-wrap [type=radio]:not(:checked) {
  position: absolute;
  left: -9999px;
}

.radio-wrap [type=radio]:checked + label,
.radio-wrap [type=radio]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #21094a;
}

.radio-wrap [type=radio]:checked + label:before,
.radio-wrap [type=radio]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #731eff;
  border-radius: 100%;
  background: transparent;
}

.radio-wrap [type=radio]:checked + label:after,
.radio-wrap [type=radio]:not(:checked) + label:after {
  content: "";
  width: 12px;
  height: 12px;
  background: #731eff;
  position: absolute;
  top: 4px;
  left: 4px;
  border-radius: 100%;
  transition: all 0.2s ease;
}

.radio-wrap [type=radio]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}

.radio-wrap [type=radio]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}

.common-listing {
  font-size: 16px;
  line-height: 25px;
  color: #8e82a4;
}
.common-listing li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 14px;
  margin-left: 10px;
}
.common-listing li:last-child {
  margin-bottom: 0;
}
.common-listing li span {
  color: #21094a;
}
.common-listing li:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  background: #21094a;
  border-radius: 50%;
}

.daterangepicker .drp-buttons .btn-primary,
.daterangepicker .drp-buttons .btn-secondary {
  min-width: unset;
  min-height: 30px;
  border-radius: 20px;
}
.daterangepicker td.active {
  background-color: #21094a;
}
.daterangepicker td.active:hover {
  background-color: #21094a;
}

/* ===============  custom-radio CSS Star here =========================*/
.custom-radio .radio-btn {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  font-size: 16px;
  line-height: 20px;
  font-family: GeneralSans;
  font-weight: 500;
  color: #534c60;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  text-transform: none;
}
.custom-radio .radio-btn input {
  opacity: 0;
  cursor: pointer;
  width: 20px;
  height: 15px;
}
.custom-radio .radio-btn .checkmark {
  position: relative;
  height: 16px;
  width: 16px;
  background-color: #fff;
  border-radius: 50%;
  transition: all 0.4s ease;
  border: 1px solid #731eff;
}
.custom-radio .radio-btn .checkmark::after {
  content: "";
  position: absolute;
  display: none;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background: #731eff;
  margin: auto;
}
.custom-radio .radio-btn .checkmark:has(input:checked)::after {
  display: block;
}

.gradient-wrapper-home {
  background-image: radial-gradient(109.28% 131.58% at 3.43% -16.25%, #9454ff 0%, #731eff 56.67%, #21094a 100%);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: rotate3d(1, 0, 0, 180deg);
  border-radius: 30px;
}
@media screen and (max-width: 1279px) {
  .gradient-wrapper-home {
    border-radius: 24px;
  }
}
@media screen and (max-width: 767px) {
  .gradient-wrapper-home {
    border-radius: 18px;
  }
}

.gradient-wrapper-works {
  background-image: radial-gradient(109.28% 131.58% at 3.43% -16.25%, #9454ff 0%, #731eff 56.67%, #21094a 100%);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: rotate(0deg);
  border-radius: 30px;
}
@media screen and (max-width: 1279px) {
  .gradient-wrapper-works {
    border-radius: 24px;
  }
}
@media screen and (max-width: 767px) {
  .gradient-wrapper-works {
    border-radius: 18px;
  }
}

.page-content-wrapper {
  position: relative;
  padding-top: 124px;
}
@media only screen and (max-width: 767px) {
  .page-content-wrapper {
    padding-top: 98px;
  }
}
.page-content-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 340px;
  width: 100%;
  background-color: #f1eefd;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  z-index: -1;
}

/*-------------------------------------------------------------------Breadcrumb CSS------------------------------------------------------------------------------*/
.breadcrumb {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 22px;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    display: none;
  }
}
.breadcrumb .breadcrumb-item {
  position: relative;
}
.breadcrumb .breadcrumb-item a {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  color: rgba(33, 9, 74, 0.5);
  padding: 0;
}
.breadcrumb .breadcrumb-item::before {
  content: ">";
  position: absolute;
  right: -18px;
  top: 2px;
  bottom: 0;
  padding: 0;
  margin: auto 0;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(33, 9, 74, 0.5);
}
.breadcrumb .breadcrumb-item a {
  color: rgba(33, 9, 74, 0.5);
}
.breadcrumb .breadcrumb-item.active {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  position: relative;
  padding-left: 8px;
  color: #21094a;
}
.breadcrumb .breadcrumb-item:last-child::before {
  display: none;
}

.page-wrapper-title {
  font-size: 42px;
  line-height: 57px;
  font-family: GeneralSans;
  font-weight: 600;
  color: #21094a;
  margin-bottom: 38px;
  position: relative;
  z-index: 9;
}
@media only screen and (max-width: 1279px) {
  .page-wrapper-title {
    font-size: 38px;
    line-height: 54px;
    margin-bottom: 35px;
  }
}
@media only screen and (max-width: 991px) {
  .page-wrapper-title {
    font-size: 35px;
    line-height: 47px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .page-wrapper-title {
    font-size: 30px;
    line-height: 42px;
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrapper-title {
    font-size: 28px;
    line-height: 34px;
  }
}

/* ===============  White Bg Card Box CSS Star here =========================*/
.card-box-wraper {
  margin-bottom: 50px;
}
.card-box-wraper .card-box {
  width: 100%;
  padding: 60px;
  background-color: #fff;
  box-shadow: 0px 9px 34px 0px rgba(33, 9, 74, 0.0509803922);
  border-radius: 30px;
}
@media only screen and (max-width: 991px) {
  .card-box-wraper .card-box {
    padding: 30px;
    border-radius: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .card-box-wraper .card-box {
    padding: 24px;
    border-radius: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .card-box-wraper .card-box {
    padding: 20px;
  }
}
@media only screen and (max-width: 480px) {
  .card-box-wraper .card-box {
    padding: 15px;
    border-radius: 16px;
  }
}

/* ===============  Testmonial Slider CSS Star here =========================*/
.customers-say-section {
  padding-top: 100px;
  padding-bottom: 60px;
  overflow: hidden;
}
@media only screen and (max-width: 1279px) {
  .customers-say-section {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 1199px) {
  .customers-say-section {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 1024px) {
  .customers-say-section {
    padding-top: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .customers-say-section {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 767px) {
  .customers-say-section {
    padding-bottom: 70px;
    margin-bottom: 60px;
    position: relative;
  }
}
.customers-say-section .section-head {
  text-align: center;
}
.customers-say-section .section-head .head-left {
  flex: 1;
}
.customers-say-section .section-head .swiper-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 6px;
  border-radius: 50px;
  background-color: #faf7ff;
  border: 1px solid rgba(148, 84, 255, 0.1019607843);
}
@media only screen and (max-width: 767px) {
  .customers-say-section .section-head .swiper-buttons {
    position: absolute;
    bottom: 0;
    left: 50px;
    right: 50px;
    justify-content: space-between;
  }
}
.customers-say-section .section-head .swiper-buttons .slide-btn {
  width: 55px;
  min-width: 55px;
  height: 55px;
  border-radius: 100%;
  background-color: #9454ff;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .customers-say-section .section-head .swiper-buttons .slide-btn {
    width: 42px;
    min-width: 42px;
    height: 42px;
  }
}
.customers-say-section .section-head .swiper-buttons .slide-btn.swiper-button-disabled {
  opacity: 0.2;
}
.customers-say-section .customers-say-swiper {
  position: relative;
}
.customers-say-section .customers-say-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}
.customers-say-section .customers-say-swiper .say-card {
  height: unset;
  border: 1px solid #eae5ff;
  border-radius: 20px;
  padding: 30px 30px 50px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  color: #8e82a4;
  font-size: 18px;
  line-height: 30px;
}
@media only screen and (max-width: 1024px) {
  .customers-say-section .customers-say-swiper .say-card {
    padding: 24px 24px 40px;
  }
}
@media only screen and (max-width: 991px) {
  .customers-say-section .customers-say-swiper .say-card {
    font-size: 16px;
    line-height: 24px;
    row-gap: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .customers-say-section .customers-say-swiper .say-card {
    padding: 20px 20px 30px;
  }
}
@media only screen and (max-width: 480px) {
  .customers-say-section .customers-say-swiper .say-card {
    padding: 15px 15px 24px;
  }
}
.customers-say-section .customers-say-swiper .say-card .say-cars-title {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(18px + 2 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  color: #21094a;
}
.customers-say-section .customers-say-swiper .say-card .say-cars-title strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .customers-say-section .customers-say-swiper .say-card .say-cars-title {
    font-size: 18px;
  }
}
@media screen and (min-width: 1440.5px) {
  .customers-say-section .customers-say-swiper .say-card .say-cars-title {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .customers-say-section .customers-say-swiper .say-card .say-cars-title {
    font-size: 18px;
  }
}
.customers-say-section .customers-say-swiper .say-card .say-user-name {
  margin-top: auto;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 0 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2%;
  color: #534c60;
}
.customers-say-section .customers-say-swiper .say-card .say-user-name strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .customers-say-section .customers-say-swiper .say-card .say-user-name {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .customers-say-section .customers-say-swiper .say-card .say-user-name {
    font-size: 14px;
  }
}
.customers-say-section .customers-say-swiper .say-card .say-user-name strong {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #21094a;
  font-weight: 600;
  font-size: 18px;
}
.customers-say-section .customers-say-swiper .say-card .say-user-name strong .text-first {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 48px;
  background-image: linear-gradient(to right bottom, rgb(107, 47, 255), rgb(147, 51, 234));
  border-radius: 50%;
}
.customers-say-section .customers-say-swiper .say-card .say-user-name span small {
  display: inline-block;
  margin: 0 10px;
  color: #8e82a4;
}

/*===============  Select picker ==========================================*/
.common-select-picker .bootstrap-select {
  width: 100% !important;
}
.common-select-picker .bootstrap-select .dropdown-toggle {
  background: transparent;
  border: 1px solid rgba(33, 9, 74, 0.1019607843);
  border-radius: 25px;
  padding: 15px 16px;
  color: #21094a;
  line-height: 18px;
}
.common-select-picker .bootstrap-select .dropdown-toggle:focus {
  box-shadow: none;
  outline: none !important;
}

.common-select-picker .dropdown-menu .bs-searchbox .form-control {
  padding: 10px 16px;
}
.common-select-picker .dropdown-toggle {
  position: relative;
}
.common-select-picker .dropdown-toggle::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 0.35em;
  vertical-align: middle;
  background-image: url("../images/down-arrow.svg");
  background-repeat: no-repeat;
  background-size: 16px 16px;
  background-position: center;
  border: none !important;
}
.common-select-picker .dropdown-item.active {
  background-color: #21094a !important;
  color: #fff !important;
}
.common-select-picker .dropdown-item:active {
  background-color: #21094a !important;
  color: #fff !important;
}

.common-select-pd-add .dropdown-toggle {
  padding-left: 46px !important;
}

.uni-input-group.country-code-box .country-code {
  background-color: #f1eefd;
  position: absolute;
  top: 4px;
  left: 4px;
  bottom: 4px;
  font-size: 14px;
  line-height: 15px;
  border-radius: 25px;
  padding: 11px 10px;
  padding-right: 35px;
}
.uni-input-group.country-code-box .country-code::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  width: 18px;
  height: 18px;
  background: url(../images/down-arrow.svg) no-repeat center center;
  margin: auto 0;
  filter: brightness(0) saturate(100%) invert(5%) sepia(57%) saturate(7147%) hue-rotate(239deg) brightness(88%) contrast(100%);
  background-size: 13px 10px;
}
.uni-input-group.country-code-box .country-code img {
  width: 20px;
  height: 20px;
  border-radius: 80px;
  margin-right: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
.uni-input-group.country-code-box input {
  padding-left: 130px !important;
}

/*===============  Tabs Css Star Here ==========================================*/
.zimoney-tabing .nav {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #731eff;
  border-radius: 30px;
  padding: 5px;
  margin-bottom: 30px;
  flex-wrap: nowrap;
  max-width: 100%;
  overflow: auto;
}
.zimoney-tabing .nav .nav-link {
  border: none;
  outline: none;
  box-shadow: inherit;
  width: 184px;
  max-width: 100%;
  text-align: center;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-weight: 500;
  color: #21094a;
  border-radius: 30px;
  background-color: transparent;
  transition: all 0.3s ease;
  padding: 8px 20px;
  white-space: nowrap;
}
.zimoney-tabing .nav .nav-link strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .zimoney-tabing .nav .nav-link {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .zimoney-tabing .nav .nav-link {
    font-size: 16px;
  }
}
.zimoney-tabing .nav .nav-link.active {
  background-color: #731eff;
  color: #fff;
}

.iti {
  display: block;
  width: 100%;
}
.iti .iti__country-container {
  left: 0 !important;
  right: auto !important;
}
.iti .iti__country-container .iti__selected-country {
  border-radius: 25px;
  background: #f1eefd;
  padding: 11px;
  height: 42px;
  margin: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.iti .iti__country-container .iti__selected-country .iti__selected-country-primary {
  padding: 0;
  gap: 10px;
}
.iti .iti__country-container .iti__selected-country .iti__selected-country-primary .iti__arrow {
  order: 2;
}
.iti .iti__country-container .iti__selected-country .iti__selected-dial-code {
  font-weight: 500 !important;
  font-size: 14px !important;
  letter-spacing: 0%;
  color: #21094a !important;
  margin-left: 0px !important;
}
.iti .iti__country-container .iti__selected-country .iti__arrow {
  border-left: 0px solid transparent !important;
  border-right: 0px solid transparent !important;
  border-top: 0px solid #555 !important;
  background-image: url("../images/contact-arrow.svg") !important;
  background-repeat: no-repeat !important;
  background-size: 13px 10px !important;
  background-position: center !important;
  width: 13px;
  height: 13px;
  border-bottom: 0 !important;
  margin: 0;
}
.iti .iti__country-container .iti__dropdown-content .iti__search-icon,
.iti .iti__country-container .iti__dropdown-content .iti__search-clear {
  display: none;
}
.iti .iti__country-container .iti__dropdown-content .iti__no-results {
  font-size: 14px;
  padding: 10px;
}
.iti .iti__country-container .iti__dropdown-content .iti__search-input {
  margin: 5px 10px;
  width: calc(100% - 20px);
  padding: 10px 12px;
}
.iti .iti__country-container .iti__dropdown-content .iti__country {
  display: flex;
  align-items: center;
  padding: 5px 10px;
}
.iti .iti__country-container .iti__dropdown-content .iti__country .iti__flag {
  flex: none;
}
.iti .iti__country-container .iti__dropdown-content .iti__country .iti__country-name {
  font-size: 14px !important;
  max-width: 250px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.iti .iti__country-container .iti__dropdown-content .iti__country .iti__dial-code {
  font-size: 14px !important;
}
.iti input.iti__tel-input {
  width: 100% !important;
  height: auto !important;
}
.iti.iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])) .iti__selected-country-primary:hover {
  background-color: transparent !important;
}
.iti.iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])) .iti__selected-country:has(+ .iti__dropdown-content:hover) .iti__selected-country-primary {
  background-color: transparent !important;
}

.new-mobile-input-cls .iti--separate-dial-code {
  width: 100%;
}

.new-mobile-input-cls .form-control {
  padding-left: 130px !important;
}

.delete-account-modal-type-cls p {
  max-width: 350px !important;
}

#toast-container > div {
  opacity: 1;
}

.toast-warning {
  background-color: #BD362F;
}

.loader-wrapper {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: none; /* toggle this with JS */
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 9999;
}

.loader-text {
  margin-top: 8px;
  color: #fff;
}

.loader-logo {
  width: 80px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  animation: spinY 2s linear infinite;
  transform-style: preserve-3d;
}

/* Horizontal 3D spin */
@keyframes spinY {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
.bootstrap-select {
  width: auto;
}
.bootstrap-select .dropdown-toggle {
  background-color: #fff;
  padding: 11px 12px;
  border: 1px solid rgb(229, 231, 235);
  color: rgb(9, 9, 11);
  border-radius: 8px;
}
.bootstrap-select .dropdown-toggle::after {
  background: url(../images/down-arrow.svg) no-repeat center center;
  background-size: 100% 100%;
  border: 0;
  height: 9px;
  width: 18px;
}
.bootstrap-select .dropdown-toggle:focus {
  outline: none !important;
  box-shadow: none !important;
}
.bootstrap-select .dropdown-menu {
  padding: 5px;
  border-color: transparent;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
}
.bootstrap-select .dropdown-menu li .dropdown-item {
  position: relative;
  padding: 8px 10px 8px 27px;
  font-size: 14px;
  line-height: 20px;
  color: #4b5563;
  transition: all 0.3s ease;
}
.bootstrap-select .dropdown-menu li .dropdown-item:hover, .bootstrap-select .dropdown-menu li .dropdown-item.active {
  background-color: rgba(229, 231, 235, 0.529);
}
.bootstrap-select .dropdown-menu li .dropdown-item.selected::before {
  content: "";
  background: url("../images/black-checkmark.svg") no-repeat;
  background-size: 15px;
  position: absolute;
  left: 5px;
  top: 0;
  bottom: 0;
  height: 15px;
  width: 18px;
  margin: auto;
}

.inner-new-hero {
  padding: 4rem 0;
  background: linear-gradient(to bottom right, #6B2FFF, #5a24e6);
}
.inner-new-hero__container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .inner-new-hero__container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .inner-new-hero__container {
    padding: 0 2rem;
  }
}
.inner-new-hero__content {
  text-align: center;
  color: #fff;
}
.inner-new-hero__content .shield-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  border-radius: 50%;
  margin-bottom: 1.5rem;
}
.inner-new-hero__content .shield-icon-wrapper .shield-icon {
  width: 3rem;
  height: 3rem;
  stroke: currentColor;
}
.inner-new-hero__title {
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.inner-new-hero__headtitle {
  font-size: 30px;
  line-height: 32px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  max-width: 42rem;
  margin: 0 auto 1rem;
}
.inner-new-hero__subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 42rem;
  margin: 0 auto;
}
.inner-new-hero__tag {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.inner-new-hero .final-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 18px;
  font-weight: 500;
  color: #6B2FFF;
  background: #fff;
  border: none;
  border-radius: 9999px;
  padding: 1.5rem 2rem;
  height: 2.75rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
  margin-top: 32px;
}
.inner-new-hero .final-cta__btn:hover {
  background: #f3f4f6;
}
@media screen and (max-width: 991px) {
  .inner-new-hero .final-cta__btn {
    font-size: 1rem;
  }
}
.inner-new-hero .inner-sub-title {
  font-size: 30px;
  line-height: 36px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}
.inner-new-hero.pramotion-banner {
  background-image: linear-gradient(to right bottom, rgb(107, 47, 255), rgb(124, 58, 237), rgb(147, 51, 234)) !important;
  padding: 120px 0;
}
@media (max-width: 1280px) {
  .inner-new-hero.pramotion-banner {
    padding: 100px 0;
  }
}
@media (max-width: 1199px) {
  .inner-new-hero.pramotion-banner {
    padding: 80px 0;
  }
}
@media (max-width: 991px) {
  .inner-new-hero.pramotion-banner {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .inner-new-hero.pramotion-banner {
    padding: 40px 0;
  }
}
.inner-new-hero .faq-search {
  position: relative;
  width: 100%;
  max-width: 42rem;
  margin-top: 16px;
  margin-left: auto;
  margin-right: auto;
}
.inner-new-hero .faq-search__icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  color: #9ca3af;
  pointer-events: none;
  opacity: 0.9;
  z-index: 1;
}
.inner-new-hero .faq-search__input {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  box-sizing: border-box;
  display: block;
  width: 100%;
  padding-left: 3rem;
  padding-right: 1rem;
  height: 3.5rem;
  line-height: 1;
  border-radius: 0.5rem;
  border: none;
  background-color: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  font-size: 1.125rem;
  color: #0f172a;
  outline: none;
  transition: box-shadow 160ms ease, transform 160ms ease;
}
.inner-new-hero .faq-search__input::-moz-placeholder {
  color: #9ca3af;
  opacity: 1;
  font-size: 0.95rem;
}
.inner-new-hero .faq-search__input::placeholder {
  color: #9ca3af;
  opacity: 1;
  font-size: 0.95rem;
}
.inner-new-hero .faq-search__input:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.inner-new-hero .faq-search__input:focus {
  outline: none;
  position: relative;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0), 0 0 0 6px rgba(99, 102, 241, 0.45), 0 8px 24px rgba(15, 23, 42, 0.12);
}
@media (min-width: 768px) {
  .inner-new-hero .faq-search__input {
    font-size: 1rem;
    height: 3.5rem;
  }
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background-image: radial-gradient(109.28% 131.58% at 3.43% -16.25%, #9454ff 0%, #731eff 56.67%, #21094a 100%);
  margin: 0 30px 50px;
  border-radius: 30px;
}
@media only screen and (max-width: 1279px) {
  .final-cta {
    padding: 80px 0;
  }
}
@media only screen and (max-width: 1199px) {
  .final-cta {
    padding: 70px 0;
  }
}
@media only screen and (max-width: 1024px) {
  .final-cta {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 991px) {
  .final-cta {
    padding: 50px 0;
  }
}
.final-cta .warning-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #facc15;
  color: #78350f;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.final-cta .warning-badge .icon {
  width: 1rem;
  height: 1rem;
}
.final-cta__content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.final-cta__title {
  color: #fff !important;
}
.final-cta__subtitle {
  color: rgba(255, 255, 255, 0.9);
  max-width: 48rem;
  margin-inline: auto;
}
.final-cta__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-direction: column;
}
@media (min-width: 640px) {
  .final-cta__buttons {
    flex-direction: row;
  }
}
.final-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: #6B2FFF;
  background: #fff;
  border: none;
  border-radius: 9999px;
  padding: 2rem 3rem;
  height: 2.75rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}
.final-cta__btn:hover {
  background: #f3f4f6;
}
@media screen and (max-width: 991px) {
  .final-cta__btn {
    padding: 1.5rem 2rem;
    font-size: 1rem;
  }
}

.connect-box-wrap {
  position: relative;
  z-index: 1;
}

.countrypicker .dropdown-menu {
  min-width: -moz-max-content !important;
  min-width: max-content !important;
}

.flexing-error-cls {
  flex-direction: column;
  display: flex;
  width: 100%;
}

.input-width-cls {
  width: 100%;
}

.new-phone-input-cls {
  align-items: flex-start;
}

.apple-pay-section {
  border-radius: 20px;
}
.apple-pay-section .apple-pay-option {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2px;
  color: #8e82a4;
}
.apple-pay-section .apple-pay-option strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .apple-pay-section .apple-pay-option {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .apple-pay-section .apple-pay-option {
    font-size: 16px;
  }
}
.apple-pay-section .apple-pay-option .method-header {
  display: flex;
  gap: 15px;
}
.apple-pay-section .apple-pay-option .method-header .apple-icon {
  width: 30px;
  height: auto;
}
.apple-pay-section .apple-pay-option .apple-pay-method .method-box-title {
  flex: 1;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(18px + 2 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  color: #21094a;
  font-weight: 500;
  line-height: normal;
}
.apple-pay-section .apple-pay-option .apple-pay-method .method-box-title strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .apple-pay-section .apple-pay-option .apple-pay-method .method-box-title {
    font-size: 18px;
  }
}
@media screen and (min-width: 1440.5px) {
  .apple-pay-section .apple-pay-option .apple-pay-method .method-box-title {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .apple-pay-section .apple-pay-option .apple-pay-method .method-box-title {
    font-size: 18px;
  }
}
.apple-pay-section .apple-pay-option .apple-pay-method .fees {
  border-radius: 30px;
  padding: 5px 10px 6px;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  background-color: #198754;
  margin-top: 5px;
  display: inline-block;
}

.pay-id-list .pay-id-item {
  display: block !important;
}
.pay-id-list .pay-id-item span {
  display: block;
}
.pay-id-list .pay-id-item p {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pay-id-list .pay-id-item p strong {
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-brand-logo {
  width: 50px;
  height: auto;
}
.card-brand-logo svg {
  width: 100%;
  height: 100%;
}

.form-control.mobile-number-field {
  padding-left: 135px !important;
}

header .navbar.zimoney-navbar {
  background: transparent;
  border-radius: 50px;
  padding: 10.5px 10px 10.5px 20px;
  max-width: 1340px;
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  border: 1px solid transparent;
  transition: background 0.3s ease;
  z-index: 999;
}
@media only screen and (max-width: 1366px) {
  header .navbar.zimoney-navbar {
    width: 98%;
  }
}
@media only screen and (max-width: 991px) {
  header .navbar.zimoney-navbar {
    max-width: 1264px;
  }
}
@media screen and (max-width: 767px) {
  header .navbar.zimoney-navbar {
    top: 4px;
    padding: 9px 10px 9px 10px;
  }
}
header .navbar.zimoney-navbar .container {
  display: flex;
  justify-content: space-between;
  max-width: 1340px;
  padding: 0;
}
@media only screen and (max-width: 991px) {
  header .navbar.zimoney-navbar .container {
    max-width: 1264px;
  }
}
header .navbar.zimoney-navbar.login-navbar.navbar-fixed {
  padding: 9px 16px 9px;
}
header .navbar.zimoney-navbar .navbar-brand {
  padding: 0;
  display: flex;
  opacity: 1;
  margin-right: 0 !important;
}
@media (max-width: 991px) {
  header .navbar.zimoney-navbar .navbar-brand {
    order: 1;
  }
}
header .navbar.zimoney-navbar .navbar-brand img {
  width: 154px;
  margin-right: 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  header .navbar.zimoney-navbar .navbar-brand img {
    width: 130px;
  }
}
@media screen and (max-width: 375px) {
  header .navbar.zimoney-navbar .navbar-brand img {
    width: 110px;
  }
}
header .navbar.zimoney-navbar .navbar-brand .zimoney-logo-admin {
  width: 184px;
}
header .navbar.zimoney-navbar .navbar-collapse {
  z-index: 2;
}
@media (max-width: 991px) {
  header .navbar.zimoney-navbar .navbar-collapse {
    order: 3;
    position: absolute;
    width: 100%;
    top: 84px;
    left: 0px;
  }
}
@media (max-width: 767px) {
  header .navbar.zimoney-navbar .navbar-collapse {
    top: 64px;
  }
}
header .navbar.zimoney-navbar .navbar-nav {
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, 0.0784313725);
  border-radius: 64px;
  position: relative;
}
@media (max-width: 991px) {
  header .navbar.zimoney-navbar .navbar-nav::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-backdrop-filter: blur(40px);
            backdrop-filter: blur(40px);
    background: rgab(#fff, 0.8);
    border-radius: 20px;
    z-index: 0;
  }
}
@media (max-width: 991px) {
  header .navbar.zimoney-navbar .navbar-nav {
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.8);
  }
}
header .navbar.zimoney-navbar .navbar-nav .nav-link {
  position: relative;
  color: #fff;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(16px + 2 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  padding: 15px 22px;
  transition: 0.3s ease-in-out;
  opacity: 0.5;
}
header .navbar.zimoney-navbar .navbar-nav .nav-link strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  header .navbar.zimoney-navbar .navbar-nav .nav-link {
    font-size: 16px;
  }
}
@media screen and (min-width: 1440.5px) {
  header .navbar.zimoney-navbar .navbar-nav .nav-link {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  header .navbar.zimoney-navbar .navbar-nav .nav-link {
    font-size: 16px;
  }
}
header .navbar.zimoney-navbar .navbar-nav .nav-link:hover, header .navbar.zimoney-navbar .navbar-nav .nav-link.active {
  color: #fff;
  opacity: 1;
  transition: all 0.3s ease;
}
header .navbar.zimoney-navbar .navbar-nav .nav-link:hover::after, header .navbar.zimoney-navbar .navbar-nav .nav-link.active::after {
  opacity: 1;
}
@media (max-width: 991px) {
  header .navbar.zimoney-navbar .navbar-nav .nav-link {
    color: #8e82a4;
    opacity: 1;
  }
  header .navbar.zimoney-navbar .navbar-nav .nav-link:hover, header .navbar.zimoney-navbar .navbar-nav .nav-link.active {
    color: #21094a;
    opacity: 1;
  }
}
header .navbar.zimoney-navbar .navbar-nav .nav-link::after {
  position: absolute;
  content: "";
  background: #fff;
  width: 3px;
  height: 3px;
  opacity: 1;
  border-radius: 10px;
  opacity: 0.5;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto auto;
}
@media (max-width: 991px) {
  header .navbar.zimoney-navbar .navbar-nav .nav-link::after {
    display: none;
  }
}
header .navbar.zimoney-navbar .navbar-nav .nav-item:nth-last-child(1) .nav-link::after {
  display: none;
}
header .navbar.zimoney-navbar.navbar-fixed {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #f1eefd;
  position: fixed !important;
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
  box-shadow: 0 6px 24px 0 rgba(44, 28, 84, 0.13);
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  header .navbar.zimoney-navbar.navbar-fixed {
    padding: 9px 10px 9px 10px;
  }
}
@media screen and (max-width: 480px) {
  header .navbar.zimoney-navbar.navbar-fixed {
    padding: 5px;
  }
}
header .navbar.zimoney-navbar.navbar-fixed .toggler-bar {
  background-color: #21094a;
}
header .navbar.zimoney-navbar.navbar-fixed .navbar-nav {
  position: relative;
  -webkit-backdrop-filter: inherit;
          backdrop-filter: inherit;
  background: none;
}
header .navbar.zimoney-navbar.navbar-fixed .navbar-nav .nav-item {
  position: relative;
  z-index: 2;
}
header .navbar.zimoney-navbar.navbar-fixed .navbar-nav .nav-link {
  color: #8e82a4;
  opacity: 1;
}
header .navbar.zimoney-navbar.navbar-fixed .navbar-nav .nav-link:hover, header .navbar.zimoney-navbar.navbar-fixed .navbar-nav .nav-link.active {
  color: #21094a;
  opacity: 1;
}
header .navbar.zimoney-navbar.navbar-fixed .navbar-nav .nav-link::after {
  display: none;
}
@media (max-width: 767px) {
  header .navbar.zimoney-navbar.navbar-fixed .navbar-nav .navbar-collapse {
    top: 64px;
  }
}
header .navbar.zimoney-navbar.admin-navbar {
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #f1eefd;
  transition: 0.3s ease-in-out;
}
header .navbar.zimoney-navbar.admin-navbar .toggler-bar {
  background-color: #21094a;
}
header .navbar.zimoney-navbar.admin-navbar .navbar-nav {
  background: transparent;
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
  gap: 40px;
}
@media screen and (max-width: 991px) {
  header .navbar.zimoney-navbar.admin-navbar .navbar-nav {
    background: rgba(255, 255, 255, 0.7);
    margin: 0;
    gap: 20px;
    padding: 10px 15px;
  }
}
header .navbar.zimoney-navbar.admin-navbar .navbar-nav .nav-link {
  color: #8e82a4;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(16px + 2 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  font-weight: 500;
  padding: 0px;
  border-radius: 30px;
  opacity: 1;
}
header .navbar.zimoney-navbar.admin-navbar .navbar-nav .nav-link strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  header .navbar.zimoney-navbar.admin-navbar .navbar-nav .nav-link {
    font-size: 16px;
  }
}
@media screen and (min-width: 1440.5px) {
  header .navbar.zimoney-navbar.admin-navbar .navbar-nav .nav-link {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  header .navbar.zimoney-navbar.admin-navbar .navbar-nav .nav-link {
    font-size: 16px;
  }
}
@media screen and (max-width: 1279px) {
  header .navbar.zimoney-navbar.admin-navbar .navbar-nav .nav-link {
    border-radius: 24px;
  }
}
@media screen and (max-width: 767px) {
  header .navbar.zimoney-navbar.admin-navbar .navbar-nav .nav-link {
    border-radius: 18px;
  }
}
header .navbar.zimoney-navbar.admin-navbar .navbar-nav .nav-link:hover, header .navbar.zimoney-navbar.admin-navbar .navbar-nav .nav-link.active {
  color: #731eff;
  opacity: 1;
}
header .navbar.zimoney-navbar.admin-navbar .navbar-nav .nav-link:hover::after, header .navbar.zimoney-navbar.admin-navbar .navbar-nav .nav-link.active::after {
  opacity: 1;
}
header .navbar.zimoney-navbar.admin-navbar .navbar-nav .nav-link::after {
  display: none;
}
header .navbar.zimoney-navbar .zimoney-logo {
  transition: transform 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55), opacity 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  opacity: 1;
  margin-right: 0 !important;
  padding: 0;
}
header .navbar.zimoney-navbar .zimoney-logo img {
  width: 154px;
  margin-right: 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  header .navbar.zimoney-navbar .zimoney-logo img {
    width: 130px;
    padding: 0;
  }
}
@media screen and (max-width: 375px) {
  header .navbar.zimoney-navbar .zimoney-logo img {
    width: 110px;
    padding: 0;
  }
}
header .navbar.zimoney-navbar .SignInUpButton {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(16px + 2 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  text-decoration: none;
  color: #fff;
  background-color: #731eff;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.2s ease-in-out;
  font-weight: 500;
}
header .navbar.zimoney-navbar .SignInUpButton strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  header .navbar.zimoney-navbar .SignInUpButton {
    font-size: 16px;
  }
}
@media screen and (min-width: 1440.5px) {
  header .navbar.zimoney-navbar .SignInUpButton {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  header .navbar.zimoney-navbar .SignInUpButton {
    font-size: 16px;
  }
}
header .navbar.zimoney-navbar .SignInUpButton:hover {
  background-color: #9454FF;
}
@media (max-width: 767px) {
  header .navbar.zimoney-navbar .SignInUpButton {
    padding: 5px;
  }
}
header .navbar.header-relative {
  position: relative !important;
}

/* Custom Animated Hamburger */
.navbar-toggler.custom-toggler {
  border: none;
  background: transparent;
  outline: none;
  padding: 0;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3px;
  z-index: 1100;
  width: 38px;
  height: 38px;
  position: relative;
  transition: background 0.2s;
  box-shadow: none;
}
.navbar-toggler.custom-toggler:focus {
  outline: 0px solid #a58cfb !important;
  box-shadow: 0 !important;
  border: 0 !important;
}
@media (min-width: 992px) {
  .navbar-toggler.custom-toggler {
    display: none !important;
  }
}
.navbar-toggler.custom-toggler .toggler-bar {
  display: block;
  width: 28px;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  box-shadow: 0 1px 4px 0 rgba(108, 44, 248, 0.1);
}
.navbar-toggler.custom-toggler .toggler-bar:nth-child(2) {
  margin: 3px 0;
}
.navbar-toggler.custom-toggler[aria-expanded=true] {
  background: #ede3ff;
  box-shadow: 0 2px 8px 0 rgba(108, 44, 248, 0.1);
  border-radius: 50%;
}
.navbar-toggler.custom-toggler[aria-expanded=true] .toggler-bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  background: #731eff;
}
.navbar-toggler.custom-toggler[aria-expanded=true] .toggler-bar:nth-child(2) {
  opacity: 0;
}
.navbar-toggler.custom-toggler[aria-expanded=true] .toggler-bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  background: #731eff;
}

.desktop-profile-nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 991px) {
  .desktop-profile-nav {
    order: 2;
    gap: 5px;
  }
}

.notif-bell {
  position: relative;
  cursor: pointer;
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1eefd;
  border-radius: 50px;
}
@media screen and (max-width: 767px) {
  .notif-bell {
    height: 44px;
    width: 44px;
  }
}
@media screen and (max-width: 480px) {
  .notif-bell {
    height: 40px;
    width: 40px;
  }
}
.notif-bell img {
  width: 28px;
}
@media screen and (max-width: 767px) {
  .notif-bell img {
    width: 24px !important;
  }
}
@media screen and (max-width: 480px) {
  .notif-bell img {
    width: 20px !important;
  }
}
.notif-bell .notif-badge {
  position: absolute;
  top: -2px;
  right: 0px;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  min-width: 18px;
  height: 18px;
  line-height: 18px;
  padding: 0 5px;
  background: #731eff;
  color: #fff;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  text-align: center;
}

.profile-dropdown .dropdown-toggle {
  display: flex;
  align-items: center;
  position: relative;
  background: #21094a;
  border-radius: 999px;
  padding: 6px 16px 6px 6px;
  min-width: 140px;
  gap: 10px;
  cursor: pointer;
  border: 0;
}
.profile-dropdown .dropdown-toggle:focus {
  background-color: #4b05be;
  box-shadow: none;
}
@media screen and (max-width: 767px) {
  .profile-dropdown .dropdown-toggle {
    min-width: auto;
    padding: 4px;
    min-height: 38px;
  }
}
.profile-dropdown .dropdown-toggle::after {
  display: none;
}
.profile-dropdown .dropdown-toggle .profile-name {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(16px + 2 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  font-weight: 500;
  color: #faf7ff;
  white-space: nowrap;
}
.profile-dropdown .dropdown-toggle .profile-name strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .profile-dropdown .dropdown-toggle .profile-name {
    font-size: 16px;
  }
}
@media screen and (min-width: 1440.5px) {
  .profile-dropdown .dropdown-toggle .profile-name {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .profile-dropdown .dropdown-toggle .profile-name {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .profile-dropdown .dropdown-toggle .profile-name {
    display: none;
  }
}
.profile-dropdown .dropdown-toggle .profile-avatar {
  width: 48px;
  height: 48px;
  background-color: #ffc651;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50px;
}
@media screen and (max-width: 767px) {
  .profile-dropdown .dropdown-toggle .profile-avatar {
    width: 30px;
    height: 30px;
  }
}
.profile-dropdown .dropdown-toggle .dropdown-icon {
  width: 17px;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .profile-dropdown .dropdown-toggle .dropdown-icon {
    width: 12px;
  }
}
.profile-dropdown .dropdown-toggle.show .dropdown-icon {
  transform: rotateX(180deg);
}
.profile-dropdown .profile-dropdown-menu {
  top: 75px;
  right: 0;
  width: 194px;
  padding: 16px;
  background-color: #fff;
  border-radius: 20px;
  border: 0;
  transition: 0.5s ease-in-out;
  animation: fadeIn ease-in-out 0.5s;
  -webkit-animation: fadeIn ease-in-out 0.5s;
  -moz-animation: fadeIn ease-in-out 0.5s;
  -o-animation: fadeIn ease-in-out 0.5s;
  -ms-animation: fadeIn ease-in-out 0.5s;
}
@media (max-width: 767px) {
  .profile-dropdown .profile-dropdown-menu {
    top: 52px;
  }
}
.profile-dropdown .profile-dropdown-menu .dropdown-item {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-weight: 500;
  color: #534c60;
  padding: 0;
  display: flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  background: transparent;
}
.profile-dropdown .profile-dropdown-menu .dropdown-item strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .profile-dropdown .profile-dropdown-menu .dropdown-item {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .profile-dropdown .profile-dropdown-menu .dropdown-item {
    font-size: 16px;
  }
}
.profile-dropdown .profile-dropdown-menu .dropdown-divider {
  margin: 12px 0;
  border-bottom: 0.5px solid rgba(143, 131, 165, 0.25);
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.profile-sm {
  display: none;
}

@media (max-width: 480px) {
  .Mobile-SignInUpButton {
    font-size: 12px;
  }
}

@media (max-width: 991px) {
  .mobile-right {
    display: flex;
    align-items: center;
    gap: 10px;
    order: 2;
  }
  .desktop-SignInUpButton {
    display: none;
  }
  .md-display {
    display: flex;
  }
  .profile-sm {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .md-display {
    display: none;
  }
  .profile-sm {
    display: flex;
  }
}
@media only screen and (max-width: 480px) {
  .mobile-right {
    gap: 3px;
  }
}
@media only screen and (max-width: 375px) {
  .mobile-right {
    gap: 6px;
  }
}
.zimoney-footer {
  background: #21094a;
  color: #f1eefd;
  border-radius: 30px;
  margin: 0 30px 30px;
  padding: 50px 20px 35px;
  max-width: 100%;
  box-shadow: 0 4px 32px 0 rgba(44, 28, 84, 0.1);
}
@media screen and (max-width: 1279px) {
  .zimoney-footer {
    border-radius: 24px;
  }
}
@media screen and (max-width: 767px) {
  .zimoney-footer {
    border-radius: 18px;
  }
}
@media (max-width: 1199px) {
  .zimoney-footer {
    margin: 0 15px 15px;
    padding: 30px 20px 30px;
  }
}
@media (max-width: 767px) {
  .zimoney-footer {
    margin: 0 10px 10px;
    padding: 20px;
  }
}
@media (max-width: 525px) {
  .zimoney-footer {
    padding: 20px 15px 20px;
  }
}
.zimoney-footer .footer-main {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 1199px) {
  .zimoney-footer .footer-main {
    gap: 40px 0;
  }
}
@media (max-width: 525px) {
  .zimoney-footer .footer-main {
    gap: 20px 0;
  }
}
.zimoney-footer .footer-main .footer-logo-wrap {
  position: relative;
  max-width: 268px;
  padding-right: 20px;
}
@media (max-width: 1199px) {
  .zimoney-footer .footer-main .footer-logo-wrap {
    max-width: 300px;
  }
}
@media (max-width: 767px) {
  .zimoney-footer .footer-main .footer-logo-wrap {
    max-width: 100%;
  }
}
.zimoney-footer .footer-main .footer-logo-wrap .footer-logo {
  width: 230px;
  margin-bottom: 25px;
}
@media (max-width: 991px) {
  .zimoney-footer .footer-main .footer-logo-wrap .footer-logo {
    width: 200px;
    margin-bottom: 15px;
  }
}
.zimoney-footer .footer-main .footer-logo-wrap .text-footer {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(16px + 2 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  margin-bottom: 20px;
}
.zimoney-footer .footer-main .footer-logo-wrap .text-footer strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .zimoney-footer .footer-main .footer-logo-wrap .text-footer {
    font-size: 16px;
  }
}
@media screen and (min-width: 1440.5px) {
  .zimoney-footer .footer-main .footer-logo-wrap .text-footer {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .zimoney-footer .footer-main .footer-logo-wrap .text-footer {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .zimoney-footer .footer-main .footer-logo-wrap .text-footer {
    margin-bottom: 15px;
  }
}
.zimoney-footer .footer-main .footer-logo-wrap .app-store-links {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  gap: 10px;
}
@media (max-width: 991px) {
  .zimoney-footer .footer-main .footer-logo-wrap .app-store-links {
    max-width: 200px;
  }
}
.zimoney-footer .footer-main .footer-logo-wrap .app-store-links a {
  background-color: #000;
  border-radius: 12px;
  overflow: hidden;
}
.zimoney-footer .footer-main .footer-logo-wrap .app-store-links a img {
  height: 60px;
  width: auto;
}
@media (max-width: 767px) {
  .zimoney-footer .footer-main .footer-logo-wrap .app-store-links a img {
    height: 50px;
  }
}
.zimoney-footer .footer-main .footer-logo-wrap::after {
  width: 1px;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(142, 130, 164, 0.5019607843);
}
@media (max-width: 991px) {
  .zimoney-footer .footer-main .footer-logo-wrap::after {
    display: none;
  }
}
.zimoney-footer .footer-main .footer-links-wrap {
  position: relative;
  flex: 1;
  padding-left: 20px;
}
@media (max-width: 1199px) {
  .zimoney-footer .footer-main .footer-links-wrap {
    flex: auto;
  }
}
@media (max-width: 1199px) {
  .zimoney-footer .footer-main .footer-links-wrap:nth-child(1) {
    padding-left: 20px;
  }
}
@media (max-width: 991px) {
  .zimoney-footer .footer-main .footer-links-wrap:nth-child(3)::after {
    display: none;
  }
}
@media (max-width: 991px) {
  .zimoney-footer .footer-main .footer-links-wrap:nth-last-child(2), .zimoney-footer .footer-main .footer-links-wrap:last-child {
    flex: auto;
    width: calc(50% - 0px);
  }
}
@media (max-width: 479px) {
  .zimoney-footer .footer-main .footer-links-wrap:nth-last-child(2), .zimoney-footer .footer-main .footer-links-wrap:last-child {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .zimoney-footer .footer-main .footer-links-wrap {
    padding-left: 0px;
    width: 50%;
  }
}
@media (max-width: 479px) {
  .zimoney-footer .footer-main .footer-links-wrap {
    width: 100%;
  }
}
.zimoney-footer .footer-main .footer-links-wrap::after {
  width: 1px;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(142, 130, 164, 0.5019607843);
}
@media (max-width: 991px) {
  .zimoney-footer .footer-main .footer-links-wrap::after {
    display: none;
  }
}
@media (max-width: 479px) {
  .zimoney-footer .footer-main .footer-links-wrap::after {
    display: block !important;
    width: 100%;
    height: 1px;
    top: -10px;
  }
}
.zimoney-footer .footer-main .footer-links-wrap:nth-last-child(1)::after {
  display: none;
}
.zimoney-footer .footer-main .footer-links-wrap .footer-title {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(16px + 2 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  margin-bottom: 35px;
  color: #f1eefd;
}
.zimoney-footer .footer-main .footer-links-wrap .footer-title strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .zimoney-footer .footer-main .footer-links-wrap .footer-title {
    font-size: 16px;
  }
}
@media screen and (min-width: 1440.5px) {
  .zimoney-footer .footer-main .footer-links-wrap .footer-title {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .zimoney-footer .footer-main .footer-links-wrap .footer-title {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .zimoney-footer .footer-main .footer-links-wrap .footer-title {
    margin-bottom: 15px;
  }
}
.zimoney-footer .footer-main .footer-links-wrap .footer-links {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.zimoney-footer .footer-main .footer-links-wrap .footer-links li {
  list-style: none;
}
.zimoney-footer .footer-main .footer-links-wrap .footer-links li a {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2px;
  color: #f1eefd;
  text-decoration: none;
  transition: color 0.2s;
}
.zimoney-footer .footer-main .footer-links-wrap .footer-links li a strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .zimoney-footer .footer-main .footer-links-wrap .footer-links li a {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .zimoney-footer .footer-main .footer-links-wrap .footer-links li a {
    font-size: 16px;
  }
}
.zimoney-footer .footer-main .footer-links-wrap .footer-links li a:hover {
  color: #fff;
  text-decoration: underline;
}
.zimoney-footer .footer-main .footer-links-wrap .footer-links.footer-contact li {
  display: flex;
  gap: 12px;
}
.zimoney-footer .footer-main .footer-links-wrap .footer-links.footer-contact li .footer-icon img {
  width: 18px;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.zimoney-footer .spacer-xl {
  position: relative;
  display: flex;
  margin: 50px 0 25px;
  width: 100%;
  height: 1px;
  top: 0;
  right: 0;
  background: rgba(142, 130, 164, 0.5019607843);
}
@media (max-width: 767px) {
  .zimoney-footer .spacer-xl {
    margin: 25px 0 25px;
  }
}
.zimoney-footer .footer-legal {
  margin-bottom: 5px;
}
.zimoney-footer .footer-legal .legal {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2px;
  color: #f1eefd;
  margin-bottom: 20px;
}
.zimoney-footer .footer-legal .legal strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .zimoney-footer .footer-legal .legal {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .zimoney-footer .footer-legal .legal {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .zimoney-footer .footer-bottom {
    flex-direction: column-reverse !important;
  }
}
.zimoney-footer .footer-bottom .text-footer {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2px;
  color: #f1eefd;
}
.zimoney-footer .footer-bottom .text-footer strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .zimoney-footer .footer-bottom .text-footer {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .zimoney-footer .footer-bottom .text-footer {
    font-size: 16px;
  }
}
.zimoney-footer .footer-bottom .text-footer a {
  color: #f1eefd;
}
.zimoney-footer .footer-bottom .footer-social a {
  font-size: 0;
}
.zimoney-footer .footer-bottom .footer-social a img {
  width: 33.33px;
  margin: 3.5px;
  height: inherit;
}

input[type=date]::-webkit-inner-spin-button,
input[type=date]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}

.uni-md-modal .modal-dialog {
  max-width: 593px;
}
@media only screen and (max-width: 767px) {
  .uni-md-modal .modal-dialog {
    max-width: auto;
  }
}

.uni-sm-modal .modal-dialog {
  max-width: 502px;
}
@media only screen and (max-width: 767px) {
  .uni-sm-modal .modal-dialog {
    max-width: auto;
  }
}
.uni-sm-modal .modal-dialog.noheader-modal h2 {
  color: #000;
}
@media only screen and (max-width: 767px) {
  .uni-sm-modal .modal-dialog.noheader-modal h2 {
    margin-bottom: 10px;
  }
}

.recipientdetail-modal .modal-dialog {
  max-width: 470px;
}
@media only screen and (max-width: 767px) {
  .recipientdetail-modal .modal-dialog {
    max-width: auto;
  }
}
.recipientdetail-modal .btn-group {
  gap: 20px;
}
.recipientdetail-modal .btn-group .delete-btn {
  min-width: 174px;
}
.recipientdetail-modal .recipient-profile-card {
  background: #f1eefd;
  border-radius: 20px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 21px;
  margin-bottom: 20px;
}
.recipientdetail-modal .recipient-profile-card .recipient-image img {
  width: 80px;
  height: 80px;
  border-radius: 60px;
  background-color: #957ee6;
}
.recipientdetail-modal .recipient-profile-card h2 {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: GeneralSans;
  font-weight: 600;
  font-size: calc(22px + 4 * (100vw - 300px) / 1140);
  line-height: 100%;
  letter-spacing: 0px;
  color: #731eff;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .recipientdetail-modal .recipient-profile-card h2 {
    font-size: 22px;
  }
}
@media screen and (min-width: 1440.5px) {
  .recipientdetail-modal .recipient-profile-card h2 {
    font-size: 26px;
  }
}
.recipientdetail-modal .recipient-profile-card h2 a {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2px;
  color: #21094a;
  font-weight: 500;
}
.recipientdetail-modal .recipient-profile-card h2 a strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .recipientdetail-modal .recipient-profile-card h2 a {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .recipientdetail-modal .recipient-profile-card h2 a {
    font-size: 16px;
  }
}
.recipientdetail-modal .recipient-card {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 100%;
  gap: 17px;
  margin-bottom: 31px;
}
.recipientdetail-modal .recipient-card .recipient-detail {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
}
.recipientdetail-modal .recipient-card .recipient-detail p {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2px;
  color: #8e82a4;
  font-weight: 500;
}
.recipientdetail-modal .recipient-card .recipient-detail p strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .recipientdetail-modal .recipient-card .recipient-detail p {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .recipientdetail-modal .recipient-card .recipient-detail p {
    font-size: 16px;
  }
}
.recipientdetail-modal .recipient-card .recipient-detail span {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2px;
  color: #534c60;
  font-weight: 500;
}
.recipientdetail-modal .recipient-card .recipient-detail span strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .recipientdetail-modal .recipient-card .recipient-detail span {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .recipientdetail-modal .recipient-card .recipient-detail span {
    font-size: 16px;
  }
}
.recipientdetail-modal .recipient-card .recipient-detail .flag-icon-small {
  width: 24px;
  height: 24px;
  border-radius: 24px;
  -o-object-fit: cover;
     object-fit: cover;
}
.recipientdetail-modal .bank-detail-title {
  position: relative;
  padding-top: 7px;
  padding-bottom: 3px;
  z-index: 2;
}
.recipientdetail-modal .bank-detail-title span {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(18px + 2 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  color: #21094a;
  font-weight: 500;
  display: flex;
  position: relative;
  background-color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 10px;
  z-index: 2;
}
.recipientdetail-modal .bank-detail-title span strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .recipientdetail-modal .bank-detail-title span {
    font-size: 18px;
  }
}
@media screen and (min-width: 1440.5px) {
  .recipientdetail-modal .bank-detail-title span {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .recipientdetail-modal .bank-detail-title span {
    font-size: 18px;
  }
}
.recipientdetail-modal .bank-detail-title::after {
  content: "";
  position: absolute;
  width: 98%;
  height: 1px;
  background-color: rgba(142, 130, 164, 0.2);
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  left: 0;
  z-index: 1;
}

.confirm-pin-modal .modal-dialog {
  max-width: 460px;
}
@media only screen and (max-width: 767px) {
  .confirm-pin-modal .modal-dialog {
    max-width: auto;
  }
}
.confirm-pin-modal .modal-dialog .login-main {
  background: transparent;
  display: flex;
  height: auto;
  padding: 0;
}
.confirm-pin-modal .modal-dialog .login-main .login-form-panel {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 70px 40px;
  width: 100%;
  height: auto;
  position: relative;
}

.uni-xs-modal .modal-dialog {
  max-width: 433px;
}
@media only screen and (max-width: 767px) {
  .uni-xs-modal .modal-dialog {
    max-width: auto;
  }
}
.uni-xs-modal .modal-dialog.noheader-modal h2 {
  color: #000;
}
@media only screen and (max-width: 767px) {
  .uni-xs-modal .modal-dialog.noheader-modal h2 {
    margin-bottom: 10px;
  }
}

.successfullyadd-modal .modal-dialog {
  max-width: 304px;
}
@media only screen and (max-width: 767px) {
  .successfullyadd-modal .modal-dialog {
    max-width: auto;
  }
}
.successfullyadd-modal .modal-dialog .otp-gif {
  width: 100px;
  height: 100px;
}
.successfullyadd-modal .modal-dialog.noheader-modal h2 {
  color: #000;
}
.successfullyadd-modal.zimoney-common-modal .modal-content {
  padding: 24px;
}

.transferfailed-modal .modal-dialog {
  max-width: 429px;
}
@media only screen and (max-width: 767px) {
  .transferfailed-modal .modal-dialog {
    max-width: auto;
  }
}
.transferfailed-modal .modal-dialog.noheader-modal h2 {
  color: #000;
}
.transferfailed-modal .modal-dialog.noheader-modal .otp-gif {
  width: 100px;
  height: 100px;
}
.transferfailed-modal .modal-dialog.noheader-modal p {
  max-width: 100%;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2px;
  color: #8e82a4;
}
.transferfailed-modal .modal-dialog.noheader-modal p strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .transferfailed-modal .modal-dialog.noheader-modal p {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .transferfailed-modal .modal-dialog.noheader-modal p {
    font-size: 16px;
  }
}

.addrecipientbank-modal .modal-dialog {
  max-width: 1173px;
}
.addrecipientbank-modal .wallet-type-cls {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}
.addrecipientbank-modal .pd-right-input-cls .form-control {
  padding-right: 36px !important;
}

.modal-grid-all {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0px 16px;
  padding: 0;
}
@media only screen and (max-width: 991px) {
  .modal-grid-all {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .modal-grid-all {
    grid-template-columns: repeat(1, 1fr);
  }
}

.modal-dialog.noheader-modal button.btn-close {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 1;
}
.modal-dialog.noheader-modal .modal-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
}
@media only screen and (max-width: 767px) {
  .modal-dialog.noheader-modal .modal-icon {
    margin-bottom: 10px;
  }
}
.modal-dialog.noheader-modal .modal-body {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.modal-dialog.noheader-modal h2 {
  font-family: GeneralSans;
  font-weight: 500;
  font-size: calc(20px + 4 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  text-transform: capitalize;
  color: #21094a;
  margin-bottom: 20px;
  font-weight: 500;
  text-align: center;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .modal-dialog.noheader-modal h2 {
    font-size: 20px;
  }
}
@media screen and (min-width: 1440.5px) {
  .modal-dialog.noheader-modal h2 {
    font-size: 24px;
  }
}
.modal-dialog.noheader-modal p {
  text-align: center;
  max-width: 230px;
  margin: 0 auto;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2px;
  color: #8e82a4;
}
.modal-dialog.noheader-modal p strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .modal-dialog.noheader-modal p {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .modal-dialog.noheader-modal p {
    font-size: 16px;
  }
}
.modal-dialog.noheader-modal.consent-modal p {
  max-width: none;
  text-align: left;
}
.modal-dialog.noheader-modal.consent-modal p b {
  font-weight: 400;
}
.modal-dialog.noheader-modal .spacer-xl {
  margin: 30px 0 32px;
  width: 100%;
  height: 1px;
  background-color: rgba(142, 130, 164, 0.3);
}
@media only screen and (max-width: 767px) {
  .modal-dialog.noheader-modal .spacer-xl {
    margin-top: 20px;
  }
}
.modal-dialog.noheader-modal .modal-footer-modal {
  display: flex;
  justify-content: center;
  gap: 21px;
}
.modal-dialog.noheader-modal .modal-footer-modal .border-button-modal {
  width: 50%;
  padding: 14px 20px;
  background-color: #fff;
  color: #21094a;
  border-radius: 70px;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-weight: 600;
  border: 1px solid rgba(33, 9, 74, 0.1019607843);
  transition: all 0.3s ease;
}
.modal-dialog.noheader-modal .modal-footer-modal .border-button-modal strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .modal-dialog.noheader-modal .modal-footer-modal .border-button-modal {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .modal-dialog.noheader-modal .modal-footer-modal .border-button-modal {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .modal-dialog.noheader-modal .modal-footer-modal .border-button-modal {
    padding: 12px 14px;
  }
}
.modal-dialog.noheader-modal .modal-footer-modal .border-button-modal:hover {
  background-color: #21094a;
  border-color: #21094a;
  color: #fff;
}
.modal-dialog.noheader-modal .modal-footer-modal .solid-button-modal {
  width: 50%;
  padding: 14px 20px;
  background-color: #21094a;
  border: 1px solid #21094a;
  color: #fff;
  border-radius: 70px;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.modal-dialog.noheader-modal .modal-footer-modal .solid-button-modal strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .modal-dialog.noheader-modal .modal-footer-modal .solid-button-modal {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .modal-dialog.noheader-modal .modal-footer-modal .solid-button-modal {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .modal-dialog.noheader-modal .modal-footer-modal .solid-button-modal {
    padding: 12px 14px;
  }
}
.modal-dialog.noheader-modal .modal-footer-modal .solid-button-modal:hover {
  background-color: #731eff;
  border-color: #731eff;
}

.modal-add-recipient-form {
  display: flex;
  align-items: start;
  gap: 20px;
  width: 100%;
}
@media only screen and (max-width: 575px) {
  .modal-add-recipient-form {
    flex-direction: column;
  }
}
.modal-add-recipient-form .profile-edit-avatar-wrap {
  display: flex;
  width: calc(10% - 0px);
}
@media only screen and (max-width: 991px) {
  .modal-add-recipient-form .profile-edit-avatar-wrap {
    width: calc(20% - 0px);
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 575px) {
  .modal-add-recipient-form .profile-edit-avatar-wrap {
    width: calc(100% - 0px);
  }
}
.modal-add-recipient-form .form-right-side {
  width: calc(90% - 0px);
}
@media only screen and (max-width: 991px) {
  .modal-add-recipient-form .form-right-side {
    width: calc(80% - 0px);
  }
}
@media only screen and (max-width: 575px) {
  .modal-add-recipient-form .form-right-side {
    width: calc(100% - 0px);
  }
}
.modal-add-recipient-form .form-right-side .no-icon-input .radio-modal-btn {
  padding: 17px 16px;
  margin-bottom: 20px;
}
.modal-add-recipient-form .form-info {
  margin: 16px 0 30px;
}
.modal-add-recipient-form .form-info .info-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2px;
  color: #21094a;
  font-weight: 500;
  margin-bottom: 6px;
}
.modal-add-recipient-form .form-info .info-title strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .modal-add-recipient-form .form-info .info-title {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .modal-add-recipient-form .form-info .info-title {
    font-size: 16px;
  }
}
.modal-add-recipient-form .form-info p {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2px;
  color: #534c60;
  font-weight: 500;
}
.modal-add-recipient-form .form-info p strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .modal-add-recipient-form .form-info p {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .modal-add-recipient-form .form-info p {
    font-size: 16px;
  }
}

.profile-edit-avatar-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.profile-edit-avatar-wrap .profile-edit-avatar {
  position: relative;
  width: 100px;
  height: 100px;
}
.profile-edit-avatar-wrap .profile-edit-avatar .profile-avatar-circle {
  width: 100px;
  height: 100px;
  border-radius: 100px;
  background: #9454ff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.profile-edit-avatar-wrap .profile-edit-avatar .profile-avatar-circle .profile-initials {
  font-family: GeneralSans;
  font-weight: 500;
  font-size: calc(20px + 4 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  text-transform: capitalize;
  color: #fff;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .profile-edit-avatar-wrap .profile-edit-avatar .profile-avatar-circle .profile-initials {
    font-size: 20px;
  }
}
@media screen and (min-width: 1440.5px) {
  .profile-edit-avatar-wrap .profile-edit-avatar .profile-avatar-circle .profile-initials {
    font-size: 24px;
  }
}
.profile-edit-avatar-wrap .profile-edit-avatar .profile-avatar-circle .profile-avatar-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100px;
  position: absolute;
  top: 0;
  left: 0;
}
.profile-edit-avatar-wrap .profile-edit-avatar .profile-edit-avatar-upload {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(44, 28, 84, 0.1);
  cursor: pointer;
  border: 2px solid #fff;
}
.profile-edit-avatar-wrap .edit-profile-icon {
  position: absolute;
  right: 0;
  bottom: 0;
  cursor: pointer;
}

.new-checkbox-wrapped-cls label {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2px;
  color: #8e82a4;
}
.new-checkbox-wrapped-cls label strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .new-checkbox-wrapped-cls label {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .new-checkbox-wrapped-cls label {
    font-size: 16px;
  }
}

.login-main {
  background: #faf7ff;
  display: flex;
  height: calc(100vh - 0px);
  padding: 10px 0 10px 10px;
  position: relative;
}
@media only screen and (max-width: 575px) {
  .login-main {
    height: auto;
    flex-direction: column;
    padding: 10px;
    min-height: 100vh;
  }
}
.login-main .gradient-wrapper {
  background-image: radial-gradient(109.28% 131.58% at 3.43% -16.25%, #9454ff 0%, #731eff 56.67%, #21094a 100%);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-180deg);
}
.login-main .login-illustration-panel {
  position: relative;
  border-radius: 50px;
  flex-direction: column;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 40px;
  width: calc(50% - 0px);
  height: calc(100vh - 20px);
  z-index: 2;
}
@media screen and (max-width: 1279px) {
  .login-main .login-illustration-panel {
    border-radius: 35px;
  }
}
@media screen and (max-width: 767px) {
  .login-main .login-illustration-panel {
    border-radius: 25px;
  }
}
@media (max-width: 767px) {
  .login-main .login-illustration-panel {
    padding: 40px 20px;
  }
}
@media only screen and (max-width: 575px) {
  .login-main .login-illustration-panel {
    padding: 30px 15px;
    height: -moz-fit-content;
    height: fit-content;
    width: 100%;
  }
}
.login-main .login-illustration-panel::before, .login-main .login-illustration-panel::after {
  position: absolute;
  content: "";
  border-radius: 100%;
  z-index: 1;
}
.login-main .login-illustration-panel::before {
  width: 162px;
  height: 162px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) -7.31%, rgba(255, 255, 255, 0.4) 46.35%, rgba(255, 255, 255, 0) 100%);
  -webkit-backdrop-filter: blur(60px);
          backdrop-filter: blur(60px);
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.2);
  left: 20px;
  bottom: -60px;
  border: 0.5px solid rgba(250, 247, 255, 0.3019607843);
  opacity: 0.3;
}
.login-main .login-illustration-panel::after {
  width: 180px;
  height: 180px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) -7.31%, rgba(255, 255, 255, 0.4) 46.35%, rgba(255, 255, 255, 0) 100%);
  right: -60px;
  top: 149px;
  -webkit-backdrop-filter: blur(60px);
          backdrop-filter: blur(60px);
  border: 0.5px solid rgba(250, 247, 255, 0.3019607843);
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.2);
  opacity: 0.25;
}
@media only screen and (max-width: 575px) {
  .login-main .login-illustration-panel::after {
    display: none;
  }
}
.login-main .login-illustration-panel .login-illustration {
  max-width: 455px;
  width: 100%;
  margin-top: 75px;
  z-index: 2;
}
@media only screen and (max-width: 575px) {
  .login-main .login-illustration-panel .login-illustration {
    display: none;
  }
}
.login-main .login-illustration-panel .login-illustration img {
  display: flex;
  margin: 0 auto;
}
.login-main .login-illustration-panel .login-tagline {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  z-index: 2;
  max-width: 500px;
}
.login-main .login-illustration-panel .login-tagline .login-logo {
  max-width: 138px;
  width: 100%;
}
.login-main .login-illustration-panel .login-tagline p {
  text-align: center;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2px;
  color: #fff;
  margin-bottom: 0;
}
.login-main .login-illustration-panel .login-tagline p strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .login-main .login-illustration-panel .login-tagline p {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .login-main .login-illustration-panel .login-tagline p {
    font-size: 16px;
  }
}
.login-main .login-form-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 70px 40px;
  width: calc(50% - 0px);
  height: calc(100vh - 20px);
  position: relative;
}
.login-main .login-form-panel.overflow-scroll-y {
  overflow-y: auto;
}
@media (max-width: 767px) {
  .login-main .login-form-panel {
    padding: 60px 20px 40px;
  }
}
@media only screen and (max-width: 575px) {
  .login-main .login-form-panel {
    width: 100%;
    height: auto;
  }
}
.login-main .login-form-panel .backbutton {
  display: flex;
  align-items: center;
  gap: 14.16px;
  position: absolute;
  top: 30px;
  left: 30px;
  background-color: transparent;
  border: none;
  box-shadow: none;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 0 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2%;
  color: #21094a;
  font-weight: 500;
}
.login-main .login-form-panel .backbutton strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .login-main .login-form-panel .backbutton {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .login-main .login-form-panel .backbutton {
    font-size: 14px;
  }
}
@media only screen and (max-width: 575px) {
  .login-main .login-form-panel .backbutton {
    top: 20px;
    left: 0;
  }
}
.login-main .login-form-panel .login-form-wrapper {
  max-width: 323px;
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 575px) {
  .login-main .login-form-panel .login-form-wrapper {
    max-width: unset;
  }
}
.login-main .login-form-panel .login-form-wrapper .login-title {
  font-family: GeneralSans;
  font-weight: 600;
  font-size: calc(22px + 4 * (100vw - 300px) / 1140);
  line-height: 100%;
  letter-spacing: 0px;
  color: #21094a;
  text-align: center;
  margin-bottom: 15px;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .login-main .login-form-panel .login-form-wrapper .login-title {
    font-size: 22px;
  }
}
@media screen and (min-width: 1440.5px) {
  .login-main .login-form-panel .login-form-wrapper .login-title {
    font-size: 26px;
  }
}
.login-main .login-form-panel .login-form-wrapper .login-subtext {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 0 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2%;
  color: #534c60;
  text-align: center;
  margin-bottom: 30px;
}
.login-main .login-form-panel .login-form-wrapper .login-subtext strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .login-main .login-form-panel .login-form-wrapper .login-subtext {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .login-main .login-form-panel .login-form-wrapper .login-subtext {
    font-size: 14px;
  }
}
@media only screen and (max-width: 575px) {
  .login-main .login-form-panel .login-form-wrapper .login-subtext {
    margin-bottom: 20px;
  }
}
.login-main .login-form-panel .login-form-wrapper .pin-set {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2px;
  color: #534c60;
  margin-bottom: 24px;
  text-align: center;
}
.login-main .login-form-panel .login-form-wrapper .pin-set strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .login-main .login-form-panel .login-form-wrapper .pin-set {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .login-main .login-form-panel .login-form-wrapper .pin-set {
    font-size: 16px;
  }
}
.login-main .login-form-panel .login-form-wrapper .checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  justify-content: space-between;
  margin-top: -6px;
}
.login-main .login-form-panel .login-form-wrapper .checkbox-wrapper .form-check {
  display: -ms-flex;
  display: flex;
  align-items: center;
  align-items: flex-start;
  gap: 10px;
  margin-top: 0;
  cursor: pointer;
}
.login-main .login-form-panel .login-form-wrapper .checkbox-wrapper .form-check .form-check-input {
  filter: inherit;
  margin-top: 0;
  cursor: pointer;
}
.login-main .login-form-panel .login-form-wrapper .checkbox-wrapper .form-check .form-check-input.active {
  filter: inherit;
}
.login-main .login-form-panel .login-form-wrapper .checkbox-wrapper .form-check label.form-check-label {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  color: #534c60;
  cursor: pointer;
}
.login-main .login-form-panel .login-form-wrapper .checkbox-wrapper .form-check label.form-check-label a {
  font-weight: 500;
  color: #21094a;
  text-decoration: underline;
}
.login-main .login-form-panel .login-form-wrapper .checkbox-wrapper .form-check span.text-danger {
  position: relative !important;
  font-size: 12px !important;
  color: red !important;
  font-weight: 400 !important;
}
.login-main .login-form-panel .login-form-wrapper .checkbox-wrapper .login-forgot {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  color: #21094a;
  font-weight: 500;
}
.login-main .login-form-panel .login-form-wrapper .login-separator {
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  margin: 22px 1rem 24px 1rem;
}
.login-main .login-form-panel .login-form-wrapper .login-separator span {
  background-color: #faf7ff;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  color: #21094a;
  padding: 0 14px;
  display: flex;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}
.login-main .login-form-panel .login-form-wrapper .login-separator::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  height: 1px;
  background: #534c60;
  margin: 0 auto;
}
.login-main .login-form-panel .login-form-wrapper .social-login {
  display: flex;
  justify-content: center;
  gap: 0;
}
.login-main .login-form-panel .login-form-wrapper .social-login .btn-social {
  position: relative;
  border: none;
  border-radius: 40px;
  background-color: #f1eefd;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1279px) {
  .login-main .login-form-panel .login-form-wrapper .social-login .btn-social {
    border-radius: 28px;
  }
}
@media screen and (max-width: 767px) {
  .login-main .login-form-panel .login-form-wrapper .social-login .btn-social {
    border-radius: 20px;
  }
}
.login-main .login-form-panel .login-form-wrapper .social-login .btn-social::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  left: 0;
  right: 0;
  margin-right: auto;
  margin-left: auto;
  width: 85%;
  height: 85%;
  border-radius: 40px;
  background-color: #faf7ff;
  z-index: 1;
}
@media screen and (max-width: 1279px) {
  .login-main .login-form-panel .login-form-wrapper .social-login .btn-social::before {
    border-radius: 28px;
  }
}
@media screen and (max-width: 767px) {
  .login-main .login-form-panel .login-form-wrapper .social-login .btn-social::before {
    border-radius: 20px;
  }
}
.login-main .login-form-panel .login-form-wrapper .social-login .btn-social::after {
  position: absolute;
  content: "";
  background-color: transparent;
  background-image: url("../../assets/images/curv.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 29px;
  height: 29px;
  right: -15px;
}
.login-main .login-form-panel .login-form-wrapper .social-login .btn-social:nth-last-child(1)::after {
  display: none;
}
.login-main .login-form-panel .login-form-wrapper .social-login .btn-social img {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 40px;
  z-index: 1;
}
@media screen and (max-width: 1279px) {
  .login-main .login-form-panel .login-form-wrapper .social-login .btn-social img {
    border-radius: 28px;
  }
}
@media screen and (max-width: 767px) {
  .login-main .login-form-panel .login-form-wrapper .social-login .btn-social img {
    border-radius: 20px;
  }
}
.login-main .login-form-panel .login-form-wrapper .login-signup-text {
  margin-top: 23px;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}
.login-main .login-form-panel .login-form-wrapper .login-signup-text .login-signup-link {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  color: #731eff;
  font-weight: 500;
}
.login-main .login-form-panel .login-form-wrapper .gif-image {
  width: 80px;
  height: 80px;
  border-radius: 50px;
  padding: 10px;
  background-color: #faf7ff;
  border: 1px solid rgba(33, 9, 74, 0.1490196078);
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-main .login-form-panel .login-form-wrapper .gif-image .otp-gif {
  width: 60px;
  height: 60px;
}
.login-main .login-form-panel .login-form-wrapper .otp-sent {
  text-align: center;
  color: #534c60;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2px;
}
.login-main .login-form-panel .login-form-wrapper .otp-sent strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .login-main .login-form-panel .login-form-wrapper .otp-sent {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .login-main .login-form-panel .login-form-wrapper .otp-sent {
    font-size: 16px;
  }
}
.login-main .login-form-panel .login-form-wrapper .otp-sent .otp-edit {
  font-weight: 600;
  color: #21094a;
  transition: 0.2s ease-in-out;
  position: relative;
  margin-left: 10px;
  padding-left: 12px;
}
.login-main .login-form-panel .login-form-wrapper .otp-sent .otp-edit::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  bottom: 0;
  margin: auto 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: rgba(33, 9, 74, 0.5);
}
.login-main .login-form-panel .login-form-wrapper .otp-sent .otp-edit:hover {
  color: #731eff;
}
.login-main .login-form-panel .login-form-wrapper .otp-timer {
  text-align: center;
  font-family: GeneralSans;
  font-weight: 600;
  font-size: calc(28px + 8 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  text-transform: capitalize;
  margin: 24px 0;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .login-main .login-form-panel .login-form-wrapper .otp-timer {
    font-size: 28px;
  }
}
@media screen and (min-width: 1440.5px) {
  .login-main .login-form-panel .login-form-wrapper .otp-timer {
    font-size: 36px;
  }
}
.login-main .login-form-panel .login-form-wrapper .otp-timer .otp-timer-label {
  color: #8e82a4;
}
.login-main .login-form-panel .login-form-wrapper .otp-timer .otp-timer-count {
  color: #21094a;
}
.login-main .login-form-panel .login-form-wrapper .otp-form .otp-input-wrapper {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.login-main .login-form-panel .login-form-wrapper .otp-form .otp-input-wrapper input {
  width: 60px;
  height: 60px;
  border: 1px solid rgba(33, 9, 74, 0.1490196078);
  background-color: #fff;
  border-radius: 60px;
  font-family: GeneralSans;
  font-weight: 500;
  font-size: calc(19px + 3 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  text-transform: capitalize;
  color: #731eff;
  font-weight: 600;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .login-main .login-form-panel .login-form-wrapper .otp-form .otp-input-wrapper input {
    font-size: 19px;
  }
}
@media screen and (min-width: 1440.5px) {
  .login-main .login-form-panel .login-form-wrapper .otp-form .otp-input-wrapper input {
    font-size: 22px;
  }
}
.login-main .login-form-panel .login-form-wrapper .otp-form .text-danger {
  text-align: center;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 0 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2%;
  color: red !important;
  margin-top: 10px;
}
.login-main .login-form-panel .login-form-wrapper .otp-form .text-danger strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .login-main .login-form-panel .login-form-wrapper .otp-form .text-danger {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .login-main .login-form-panel .login-form-wrapper .otp-form .text-danger {
    font-size: 14px;
  }
}
.login-main .login-form-panel .login-form-wrapper .otp-resend {
  text-align: center;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 0 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2%;
  color: #534c60;
  margin-top: 24px;
  margin-bottom: 30px;
}
.login-main .login-form-panel .login-form-wrapper .otp-resend strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .login-main .login-form-panel .login-form-wrapper .otp-resend {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .login-main .login-form-panel .login-form-wrapper .otp-resend {
    font-size: 14px;
  }
}
.login-main .login-form-panel .login-form-wrapper .otp-resend .otp-resend-link {
  color: #21094a;
  font-weight: 600;
  transition: 0.2s ease-in-out;
}
.login-main .login-form-panel .login-form-wrapper .otp-resend .otp-resend-link:hover {
  color: #731eff;
}

.form-check-input {
  border-color: #731eff !important;
}

.form-check-input:checked {
  background-color: #731eff !important;
  border-color: #731eff !important;
}

textarea:focus-visible, textarea:focus,
input:focus-visible,
input:focus {
  box-shadow: none !important;
  border: 1px solid #9454ff !important;
  background-color: #faf7ff !important;
  outline: none !important;
}

.fsluni-form {
  margin-bottom: 20px;
}
.fsluni-form.password-error .uni-input-group label.error {
  position: relative;
  bottom: 0px;
  margin-bottom: 0;
  font-size: 12px;
  color: red;
  font-weight: 400;
}
.fsluni-form label {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 0 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2%;
  color: #21094a;
  font-weight: 500;
  margin-bottom: 8px;
}
.fsluni-form label strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .fsluni-form label {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .fsluni-form label {
    font-size: 14px;
  }
}
.fsluni-form label span {
  color: #ff3b30;
}
.fsluni-form .uni-input-group {
  position: relative;
}
.fsluni-form .uni-input-group input {
  border-radius: 60px;
  background-color: #fff;
  border: 1px solid rgba(33, 9, 74, 0.1019607843);
  padding: 13.5px 16px 13.5px 46px;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 0 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2%;
  color: #000;
}
.fsluni-form .uni-input-group input strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .fsluni-form .uni-input-group input {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .fsluni-form .uni-input-group input {
    font-size: 14px;
  }
}
.fsluni-form .uni-input-group .radio-modal-btn {
  margin-bottom: 20px;
}
.fsluni-form .uni-input-group span.text-danger {
  position: relative !important;
  font-size: 12px !important;
  color: red !important;
  font-weight: 400 !important;
}
.fsluni-form .uni-input-group label.error {
  position: relative;
  margin-bottom: 0;
  font-size: 12px;
  color: red;
  font-weight: 400;
}
.fsluni-form .uni-input-group img.left-image {
  position: absolute;
  left: 15px;
  top: 15px;
  margin-top: auto;
  margin-bottom: auto;
  z-index: 1;
}
.fsluni-form .uni-input-group img.right-image {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  left: 0;
  right: 0;
  margin: auto auto;
}
.fsluni-form .uni-input-group img.right-image + input {
  padding-right: 46px;
  padding-left: 16px;
}
.fsluni-form .uni-input-group.no-icon-input input {
  padding: 15.5px 16px;
}
@media only screen and (max-width: 991px) {
  .fsluni-form .uni-input-group.no-icon-input input {
    padding: 13px 16px;
  }
}
@media only screen and (max-width: 767px) {
  .fsluni-form .uni-input-group.no-icon-input input {
    padding: 11px 16px;
  }
}
.fsluni-form .uni-input-group.file-upload-wrapper {
  position: relative;
}
.fsluni-form .uni-input-group.file-upload-wrapper .file-input {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  cursor: pointer;
}
.fsluni-form .uni-input-group.file-upload-wrapper .file-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13.5px 16px;
  border-radius: 60px;
  background-color: #fff;
  border: 1px solid rgba(33, 9, 74, 0.1019607843);
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 0 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2%;
  color: #534c60;
  z-index: 1;
  position: relative;
  pointer-events: none;
}
.fsluni-form .uni-input-group.file-upload-wrapper .file-label strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .fsluni-form .uni-input-group.file-upload-wrapper .file-label {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .fsluni-form .uni-input-group.file-upload-wrapper .file-label {
    font-size: 14px;
  }
}
.fsluni-form.fsluni-form-password .uni-input-group input {
  padding: 13.5px 57px 13.5px 46px;
}
.fsluni-form.fsluni-form-password .uni-input-group .password-toggle {
  position: absolute;
  right: 4px;
  top: 3px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  width: 44px;
  height: 44px;
  background-color: #ede9fd;
  border-radius: 50px;
}
@media screen and (max-width: 1279px) {
  .fsluni-form.fsluni-form-password .uni-input-group .password-toggle {
    border-radius: 35px;
  }
}
@media screen and (max-width: 767px) {
  .fsluni-form.fsluni-form-password .uni-input-group .password-toggle {
    border-radius: 25px;
  }
}
.fsluni-form.fsluni-form-password .uni-input-group .password-toggle img.right-image {
  width: 20px;
  height: 20px;
}
.fsluni-form.fsluni-form-textarea .uni-input-textarea textarea {
  border-radius: 16px;
  background-color: #fff;
  border: 1px solid rgba(33, 9, 74, 0.1019607843);
  padding: 16px;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 0 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2%;
  color: #000;
}
.fsluni-form.fsluni-form-textarea .uni-input-textarea textarea strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .fsluni-form.fsluni-form-textarea .uni-input-textarea textarea {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .fsluni-form.fsluni-form-textarea .uni-input-textarea textarea {
    font-size: 14px;
  }
}
.fsluni-form.fsluni-form-textarea .uni-input-textarea label.error {
  position: relative;
  margin-bottom: 0;
  font-size: 12px;
  color: red;
  font-weight: 400;
}
.fsluni-form.fsluni-form-textarea .uni-input-textarea span.text-danger {
  position: relative !important;
  font-size: 12px !important;
  color: red !important;
  font-weight: 400 !important;
}

.btn-uni-lg {
  background-color: #21094a;
  padding: 14px 25px;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2px;
  color: #fff;
  width: 100%;
  border-radius: 50px;
  font-weight: 600;
}
.btn-uni-lg strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .btn-uni-lg {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .btn-uni-lg {
    font-size: 16px;
  }
}
@media screen and (max-width: 1279px) {
  .btn-uni-lg {
    border-radius: 35px;
  }
}
@media screen and (max-width: 767px) {
  .btn-uni-lg {
    border-radius: 25px;
  }
}
.btn-uni-lg:hover {
  background-color: #4B05BE;
  color: #fff;
}
.btn-uni-lg.btn-fit {
  width: -moz-fit-content;
  width: fit-content;
  min-width: 190px;
  padding: 12px 20px;
  width: fit-content;
}

.longtext-error {
  position: relative;
  margin-top: -10px;
  font-size: 12px;
  color: red !important;
  font-weight: 400;
  top: -20px;
}

.signup-broken-cls {
  flex-direction: column;
}
.signup-broken-cls .form-check {
  display: block !important;
}

.dashboard.page-content-wrapper::before {
  display: none;
}
.dashboard .dashboard-wrapper {
  padding: 26px 0 50px;
}
@media only screen and (max-width: 991px) {
  .dashboard .dashboard-wrapper {
    padding: 26px 0 40px;
  }
}
@media only screen and (max-width: 767px) {
  .dashboard .dashboard-wrapper {
    padding: 0px 0 26px;
  }
}
.dashboard .dashboard-wrapper .dashboard-inner {
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media only screen and (max-width: 991px) {
  .dashboard .dashboard-wrapper .dashboard-inner {
    flex-direction: column;
  }
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left {
  max-width: 504px;
  width: 100%;
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media only screen and (max-width: 991px) {
  .dashboard .dashboard-wrapper .dashboard-inner .dashboard-left {
    flex-direction: row;
    max-width: unset;
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 767px) {
  .dashboard .dashboard-wrapper .dashboard-inner .dashboard-left {
    flex-direction: column;
  }
}
@media only screen and (max-width: 991px) {
  .dashboard .dashboard-wrapper .dashboard-inner .dashboard-left > * {
    width: calc(50% - 10px);
  }
}
@media only screen and (max-width: 767px) {
  .dashboard .dashboard-wrapper .dashboard-inner .dashboard-left > * {
    width: 100%;
  }
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-kyc-status {
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 10px 10px 20px;
  border-radius: 50px;
}
@media screen and (max-width: 1279px) {
  .dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-kyc-status {
    border-radius: 35px;
  }
}
@media screen and (max-width: 767px) {
  .dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-kyc-status {
    border-radius: 25px;
  }
}
@media only screen and (max-width: 991px) {
  .dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-kyc-status {
    width: 100%;
  }
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-kyc-status .dashboard-kyc-content .dashboard-kyc-title {
  display: -ms-flex;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 4px;
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-kyc-status .dashboard-kyc-content .dashboard-kyc-title .dashboard-kyc-status-text {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 0 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2%;
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-kyc-status .dashboard-kyc-content .dashboard-kyc-title .dashboard-kyc-status-text strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-kyc-status .dashboard-kyc-content .dashboard-kyc-title .dashboard-kyc-status-text {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-kyc-status .dashboard-kyc-content .dashboard-kyc-title .dashboard-kyc-status-text {
    font-size: 14px;
  }
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-kyc-status .dashboard-kyc-content .dashboard-kyc-subtitle {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-kyc-status .dashboard-kyc-icon {
  width: 36px;
  height: 36px;
  border: 1px solid transparent;
  border-radius: 50%;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-kyc-status .dashboard-kyc-icon picture {
  display: -ms-flex;
  display: flex;
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-kyc-status.kyc-required {
  border: 1px solid rgba(148, 84, 255, 0.1);
  background-color: #f1eefd;
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-kyc-status.kyc-required .dashboard-kyc-content .dashboard-kyc-title .dashboard-kyc-status-text {
  color: #731eff;
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-kyc-status.kyc-required .dashboard-kyc-content .dashboard-kyc-subtitle {
  color: #534c60;
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-kyc-status.kyc-required .dashboard-kyc-content .dashboard-kyc-subtitle .fw-medium {
  color: #21094a;
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-kyc-status.kyc-required .dashboard-kyc-icon {
  border-color: rgba(196, 146, 255, 0.2509803922);
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-kyc-status.kyc-under-review {
  border: 1px solid #fde047;
  background-color: #fefce8;
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-kyc-status.kyc-under-review .dashboard-kyc-content .dashboard-kyc-title .dashboard-kyc-status-text {
  color: #854d0e;
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-kyc-status.kyc-under-review .dashboard-kyc-content .dashboard-kyc-subtitle {
  color: #a16207;
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-kyc-status.kyc-under-review .dashboard-kyc-content .dashboard-kyc-subtitle .fw-medium {
  color: #633b0e;
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-kyc-status.kyc-under-review .dashboard-kyc-icon {
  border-color: rgba(161, 98, 7, 0.2509803922);
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-kyc-status.kyc-failed {
  border: 1px solid #fca5a5;
  background-color: #fef2f2;
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-kyc-status.kyc-failed .dashboard-kyc-content .dashboard-kyc-title .dashboard-kyc-status-text {
  color: #991b1b;
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-kyc-status.kyc-failed .dashboard-kyc-content .dashboard-kyc-subtitle {
  color: #b91c1c;
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-kyc-status.kyc-failed .dashboard-kyc-content .dashboard-kyc-subtitle .fw-medium {
  color: #801616;
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-kyc-status.kyc-failed .dashboard-kyc-icon {
  border-color: rgba(185, 28, 28, 0.2509803922);
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-kyc-status.kyc-verified {
  border: 1px solid #4ade80;
  background-color: #f0fdf4;
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-kyc-status.kyc-verified .dashboard-kyc-content .dashboard-kyc-title .dashboard-kyc-status-text {
  color: #166534;
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-kyc-status.kyc-verified .dashboard-kyc-content .dashboard-kyc-subtitle {
  color: #15803d;
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-kyc-status.kyc-verified .dashboard-kyc-icon {
  border-color: rgba(21, 128, 61, 0.2509803922);
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-top {
  background: linear-gradient(156deg, #731eff 0%, #21094a 129.95%), linear-gradient(0deg, rgba(33, 9, 74, 0.5), rgba(33, 9, 74, 0.5));
  border-radius: 30px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1279px) {
  .dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-top {
    border-radius: 24px;
  }
}
@media screen and (max-width: 767px) {
  .dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-top {
    border-radius: 18px;
  }
}
@media only screen and (max-width: 1024px) {
  .dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-top {
    padding: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-top {
    padding: 16px;
  }
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-top .shadow-seprator {
  position: absolute;
  top: 90px;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  right: 0;
  width: 134px;
  height: 64px;
  background: linear-gradient(90deg, rgb(73, 21, 162) 0%, rgb(63, 16, 140) 100%);
  -webkit-backdrop-filter: blur(100px);
          backdrop-filter: blur(100px);
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-top .dashboard-top-head {
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
  z-index: 1;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-top .dashboard-top-head {
    margin-bottom: 24px;
  }
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-top .dashboard-top-head .dashboard-title-wrap {
  max-width: 320px;
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-top .dashboard-top-head .dashboard-title-wrap .dashboard-head-title {
  font-size: 45px;
  line-height: 60px;
  font-weight: 600;
  letter-spacing: normal;
  color: #fff;
}
@media only screen and (max-width: 1024px) {
  .dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-top .dashboard-top-head .dashboard-title-wrap .dashboard-head-title {
    font-size: 36px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 767px) {
  .dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-top .dashboard-top-head .dashboard-title-wrap .dashboard-head-title {
    font-size: 30px;
  }
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-top .dashboard-top-head .dashboard-title-wrap .dashboard-head-subtitle {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(18px + 2 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  color: #cdc1f7;
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-top .dashboard-top-head .dashboard-title-wrap .dashboard-head-subtitle strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-top .dashboard-top-head .dashboard-title-wrap .dashboard-head-subtitle {
    font-size: 18px;
  }
}
@media screen and (min-width: 1440.5px) {
  .dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-top .dashboard-top-head .dashboard-title-wrap .dashboard-head-subtitle {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-top .dashboard-top-head .dashboard-title-wrap .dashboard-head-subtitle {
    font-size: 18px;
  }
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-top .dashboard-top-head .dashboard-head-icon {
  position: relative;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  width: 76px;
  height: 76px;
  background-color: #9454ff;
  overflow: hidden;
  flex: none;
}
@media screen and (max-width: 1279px) {
  .dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-top .dashboard-top-head .dashboard-head-icon {
    border-radius: 28px;
  }
}
@media screen and (max-width: 767px) {
  .dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-top .dashboard-top-head .dashboard-head-icon {
    border-radius: 20px;
  }
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-top .dashboard-top-head .dashboard-head-icon img {
  filter: brightness(0) saturate(100%) invert(98%) sepia(42%) saturate(5868%) hue-rotate(181deg) brightness(111%) contrast(104%);
}
@media only screen and (max-width: 767px) {
  .dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-top .dashboard-top-head .dashboard-head-icon img {
    max-width: 28px;
  }
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-top .dashboard-top-head .dashboard-head-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  background: rgba(250, 247, 255, 0.1);
  border-radius: 40px;
}
@media screen and (max-width: 1279px) {
  .dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-top .dashboard-top-head .dashboard-head-icon::before {
    border-radius: 28px;
  }
}
@media screen and (max-width: 767px) {
  .dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-top .dashboard-top-head .dashboard-head-icon::before {
    border-radius: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-top .dashboard-top-head .dashboard-head-icon {
    width: 60px;
    height: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-top .dashboard-top-head .dashboard-head-icon {
    width: 50px;
    height: 50px;
  }
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-top .btn-group {
  gap: 20px;
}
@media only screen and (max-width: 991px) {
  .dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-top .btn-group {
    flex-direction: column;
  }
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-top .btn-group .dashboard-btn {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(16px + 2 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  font-weight: 500;
  flex: 1;
  padding: 13.4px 12px;
  background-color: #faf7ff;
  border-radius: 40px;
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-top .btn-group .dashboard-btn strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-top .btn-group .dashboard-btn {
    font-size: 16px;
  }
}
@media screen and (min-width: 1440.5px) {
  .dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-top .btn-group .dashboard-btn {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-top .btn-group .dashboard-btn {
    font-size: 16px;
  }
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-top .btn-group .dashboard-btn:hover {
  background-color: #21094a;
  color: #fff;
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-top .btn-group .dashboard-btn:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(11%) saturate(3057%) hue-rotate(297deg) brightness(110%) contrast(109%);
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-top .dashboard-circle {
  display: block;
  position: absolute;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) -7.31%, rgba(255, 255, 255, 0.4) 46.35%, rgba(255, 255, 255, 0) 100%);
  -webkit-backdrop-filter: blur(60px);
          backdrop-filter: blur(60px);
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-top .dashboard-circle.dashboard-circle1 {
  width: 203px;
  height: 203px;
  top: -85px;
  left: -85px;
  opacity: 25%;
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-bottom {
  background: #faf7ff;
  border: 1px solid rgba(148, 84, 255, 0.4);
  border-radius: 30px;
  display: -ms-flex;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1279px) {
  .dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-bottom {
    border-radius: 24px;
  }
}
@media screen and (max-width: 767px) {
  .dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-bottom {
    border-radius: 18px;
  }
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-bottom .dashboard-bottom-head {
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-bottom .dashboard-bottom-head .dashboard-bottom-title {
  font-family: GeneralSans;
  font-weight: 500;
  font-size: calc(20px + 4 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  text-transform: capitalize;
  color: #21094a;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-bottom .dashboard-bottom-head .dashboard-bottom-title {
    font-size: 20px;
  }
}
@media screen and (min-width: 1440.5px) {
  .dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-bottom .dashboard-bottom-head .dashboard-bottom-title {
    font-size: 24px;
  }
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-bottom .dashboard-bottom-head .dashboard-bottom-link {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-weight: 500;
  color: #731eff;
  display: flex;
  align-items: center;
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-bottom .dashboard-bottom-head .dashboard-bottom-link strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-bottom .dashboard-bottom-head .dashboard-bottom-link {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-bottom .dashboard-bottom-head .dashboard-bottom-link {
    font-size: 16px;
  }
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-bottom .addrecipient-button {
  padding: 20px 24px;
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-bottom .dashboard-bottom-btn {
  width: auto;
  flex: 1;
  background: #f1eefd;
  border: 1px solid #9454ff;
  color: #731eff;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(16px + 2 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  font-weight: 500;
  width: 100%;
  padding: 13.5px 12px;
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-bottom .dashboard-bottom-btn strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-bottom .dashboard-bottom-btn {
    font-size: 16px;
  }
}
@media screen and (min-width: 1440.5px) {
  .dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-bottom .dashboard-bottom-btn {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-bottom .dashboard-bottom-btn {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-bottom .dashboard-bottom-btn {
    margin-right: 16px;
  }
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-bottom .dashboard-bottom-btn:hover {
  background-color: #21094a;
  color: #fff;
  border: 1px solid #21094a;
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-bottom .dashboard-bottom-btn:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(11%) saturate(3057%) hue-rotate(297deg) brightness(110%) contrast(109%);
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-bottom .quick-send-slider-wrap .quick-send-slider {
  padding: 0 24px;
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-bottom .quick-send-slider-wrap .quick-send-slider .quick-send-item {
  text-align: center;
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-bottom .quick-send-slider-wrap .quick-send-slider .quick-send-item .quick-send-img-wrap {
  position: relative;
  display: inline-block;
  background: #F1EEFD;
  padding: 10px;
  border-radius: 50%;
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-bottom .quick-send-slider-wrap .quick-send-slider .quick-send-item .quick-send-img-wrap .quick-send-img {
  width: 60px;
  height: 60px;
  padding: 10px;
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-bottom .quick-send-slider-wrap .quick-send-slider .quick-send-item .quick-send-img-wrap .quick-send-flag {
  width: 22px;
  height: 22px;
  border-radius: 50px;
  border: 2px solid #faf7ff;
  position: absolute;
  bottom: 0;
  right: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1279px) {
  .dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-bottom .quick-send-slider-wrap .quick-send-slider .quick-send-item .quick-send-img-wrap .quick-send-flag {
    border-radius: 35px;
  }
}
@media screen and (max-width: 767px) {
  .dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-bottom .quick-send-slider-wrap .quick-send-slider .quick-send-item .quick-send-img-wrap .quick-send-flag {
    border-radius: 25px;
  }
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-bottom .quick-send-slider-wrap .quick-send-slider .quick-send-item .quick-send-name {
  color: #534c60;
  font-family: GeneralSans, sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  margin-top: 10px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media (max-width: 991px) {
  .dashboard .dashboard-wrapper .dashboard-inner .dashboard-left .dashboard-bottom .quick-send-slider-wrap .quick-send-slider .quick-send-item .quick-send-name {
    font-size: 14px;
    line-height: 20px;
  }
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-right {
  flex: 1;
  background: #faf7ff;
  border-radius: 30px;
  overflow: hidden;
}
@media screen and (max-width: 1279px) {
  .dashboard .dashboard-wrapper .dashboard-inner .dashboard-right {
    border-radius: 24px;
  }
}
@media screen and (max-width: 767px) {
  .dashboard .dashboard-wrapper .dashboard-inner .dashboard-right {
    border-radius: 18px;
  }
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-right .table-header {
  padding: 32px 32px 0;
}
@media only screen and (max-width: 1024px) {
  .dashboard .dashboard-wrapper .dashboard-inner .dashboard-right .table-header {
    padding: 24px 24px 0;
  }
}
@media only screen and (max-width: 480px) {
  .dashboard .dashboard-wrapper .dashboard-inner .dashboard-right .table-header {
    flex-direction: row;
  }
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-right .table-header .table-title {
  line-height: normal;
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-right .table-header .view-all-link {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-weight: 500;
  color: #731eff;
  display: flex;
  align-items: center;
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-right .table-header .view-all-link strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .dashboard .dashboard-wrapper .dashboard-inner .dashboard-right .table-header .view-all-link {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .dashboard .dashboard-wrapper .dashboard-inner .dashboard-right .table-header .view-all-link {
    font-size: 16px;
  }
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-right .table-container-wrap {
  border-radius: 0;
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-right .table-container-wrap .fs-12 {
  font-size: 12px;
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-right .table-container-wrap .flag-img {
  margin: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.dashboard .dashboard-wrapper .dashboard-inner .dashboard-right .table-container-wrap .table-container table tbody tr td {
  padding: 12px;
}
@media only screen and (max-width: 1024px) {
  .dashboard .dashboard-wrapper .dashboard-inner .dashboard-right .table-container-wrap .table-container table tbody tr td {
    padding: 8px;
  }
}
@media only screen and (max-width: 480px) {
  .dashboard .dashboard-wrapper .dashboard-inner .dashboard-right .table-container-wrap .table-container table tbody tr td {
    padding: 6px;
  }
}

.card-box-wraper .card-box.select-country-box .custom-radio {
  padding: 10px 20px;
}
@media only screen and (max-width: 767px) {
  .card-box-wraper .card-box.select-country-box .custom-radio {
    padding: 10px;
  }
}
.card-box-wraper .card-box.select-country-box .custom-radio .radio-btn {
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(142, 130, 164, 0.2);
}
@media only screen and (max-width: 767px) {
  .card-box-wraper .card-box.select-country-box .custom-radio .radio-btn {
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 14px;
    line-height: 16px;
  }
}
.card-box-wraper .card-box.select-country-box .custom-radio .radio-btn:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.card-box-wraper .card-box.select-country-box .custom-radio .radio-btn strong {
  color: #21094a;
  font-weight: 500;
}
.card-box-wraper .card-box.select-country-box .custom-radio .radio-btn .checkmark {
  margin-left: auto;
}
.card-box-wraper .card-box.select-country-box .search-box-input .search-icon {
  width: 42px;
  height: 42px;
}
.card-box-wraper .card-box .btn-group {
  margin-top: 40px;
  gap: 20px;
}
@media only screen and (max-width: 991px) {
  .card-box-wraper .card-box .btn-group {
    margin-top: 30px;
    gap: 10px;
  }
}
.card-box-wraper .card-box .btn-group .btn-secondary,
.card-box-wraper .card-box .btn-group .btn-primary {
  min-width: inherit;
  max-width: 190px;
  padding: 14px 12px;
  width: 100%;
}
@media (max-width: 991px) {
  .card-box-wraper .card-box .btn-group .btn-secondary,
  .card-box-wraper .card-box .btn-group .btn-primary {
    max-width: 120px;
    padding: 10px 12px;
  }
}
.card-box-wraper .card-box .summary-box-head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.card-box-wraper .card-box .summary-title {
  color: #9454ff;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(18px + 2 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  font-weight: 500;
}
.card-box-wraper .card-box .summary-title strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .card-box-wraper .card-box .summary-title {
    font-size: 18px;
  }
}
@media screen and (min-width: 1440.5px) {
  .card-box-wraper .card-box .summary-title {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .card-box-wraper .card-box .summary-title {
    font-size: 18px;
  }
}
.card-box-wraper .card-box .center-line {
  width: 100%;
  display: block;
  flex: 1;
  height: 1px;
  margin: auto 0;
  background-color: rgba(142, 130, 164, 0.2);
}
.card-box-wraper .card-box .payment-summary {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  padding: 24px 0;
}
@media only screen and (max-width: 991px) {
  .card-box-wraper .card-box .payment-summary {
    row-gap: 18px;
    padding: 20px 0;
  }
}
@media only screen and (max-width: 767px) {
  .card-box-wraper .card-box .payment-summary {
    row-gap: 12px;
    padding: 18px 0;
  }
}
@media only screen and (max-width: 480px) {
  .card-box-wraper .card-box .payment-summary {
    padding: 16px 0;
  }
}
.card-box-wraper .card-box .payment-summary.card-summary strong {
  color: #21094a;
}
.card-box-wraper .card-box .payment-summary li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-box-wraper .card-box .payment-summary li span {
  color: #8e82a4;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-weight: 500;
}
.card-box-wraper .card-box .payment-summary li span strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .card-box-wraper .card-box .payment-summary li span {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .card-box-wraper .card-box .payment-summary li span {
    font-size: 16px;
  }
}
.card-box-wraper .card-box .payment-summary li strong {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(16px + 2 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  font-weight: 500;
  color: #534c60;
  text-align: right;
}
.card-box-wraper .card-box .payment-summary li strong strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .card-box-wraper .card-box .payment-summary li strong {
    font-size: 16px;
  }
}
@media screen and (min-width: 1440.5px) {
  .card-box-wraper .card-box .payment-summary li strong {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .card-box-wraper .card-box .payment-summary li strong {
    font-size: 16px;
  }
}
.card-box-wraper .card-box .payment-summary li strong.highlight {
  color: #731eff;
  display: flex;
  align-items: center;
  gap: 4px;
}
.card-box-wraper .card-box .payment-summary li strong.highlight .info {
  display: inline-block;
  line-height: 20px;
  cursor: pointer;
}
.card-box-wraper .card-box .payment-summary li strong span {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(16px + 2 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  font-weight: 500 !important;
  color: #534c60 !important;
  text-align: right !important;
}
.card-box-wraper .card-box .payment-summary li strong span strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .card-box-wraper .card-box .payment-summary li strong span {
    font-size: 16px;
  }
}
@media screen and (min-width: 1440.5px) {
  .card-box-wraper .card-box .payment-summary li strong span {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .card-box-wraper .card-box .payment-summary li strong span {
    font-size: 16px;
  }
}
.card-box-wraper .card-box .payment-summary li.total-row span {
  color: #21094a;
}
.card-box-wraper .card-box .payment-summary li.bg-highligt {
  background: rgba(148, 84, 255, 0.1490196078);
  padding: 10px 12px;
  border-radius: 8px;
}
@media only screen and (max-width: 991px) {
  .card-box-wraper .card-box .payment-summary li.bg-highligt {
    padding: 6px 6px;
  }
}
.card-box-wraper .card-box .payment-summary:last-child {
  padding-bottom: 0;
}
.card-box-wraper .card-box .common-grid-all {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 48px;
  padding: 24px 0;
}
@media only screen and (max-width: 1280px) {
  .card-box-wraper .card-box .common-grid-all {
    gap: 24px 40px;
  }
}
@media only screen and (max-width: 1024px) {
  .card-box-wraper .card-box .common-grid-all {
    gap: 24px 30px;
  }
}
@media only screen and (max-width: 991px) {
  .card-box-wraper .card-box .common-grid-all {
    gap: 24px 24px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .card-box-wraper .card-box .common-grid-all {
    gap: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .card-box-wraper .card-box .common-grid-all {
    grid-template-columns: repeat(1, 1fr);
  }
}
.card-box-wraper .card-box .common-grid-all .fsluni-form .uni-input-group input {
  margin-bottom: 0;
}
.card-box-wraper .card-box .form-info {
  color: #8e82a4;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
}
.card-box-wraper .card-box .form-info .info-title {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}
.card-box-wraper .card-box .form-info .info-title strong {
  color: #21094a;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-weight: 500;
}
.card-box-wraper .card-box .form-info .info-title strong strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .card-box-wraper .card-box .form-info .info-title strong {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .card-box-wraper .card-box .form-info .info-title strong {
    font-size: 16px;
  }
}
.card-box-wraper .card-box .form-info .info-title img {
  filter: brightness(0) saturate(100%) invert(21%) sepia(98%) saturate(7128%) hue-rotate(264deg) brightness(100%) contrast(102%);
}
.card-box-wraper .card-box .tab-pane .center-line {
  margin: 30px 0;
}
@media only screen and (max-width: 991px) {
  .card-box-wraper .card-box .tab-pane .center-line {
    margin: 24px 0;
  }
}
@media only screen and (max-width: 767px) {
  .card-box-wraper .card-box .tab-pane .center-line {
    margin: 20px 0;
  }
}
.card-box-wraper .card-box .tab-pane-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media only screen and (max-width: 991px) {
  .card-box-wraper .card-box .tab-pane-form {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 575px) {
  .card-box-wraper .card-box .tab-pane-form {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
}
.card-box-wraper .card-box .tab-pane-form .custom-radio .radio-btn {
  font-weight: 500;
  padding: 16px 20px;
  border-radius: 30px;
}
.card-box-wraper .card-box .tab-pane-form .delete-upi {
  border: 1px solid rgba(33, 9, 74, 0.1019607843);
  padding: 10px 16px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  color: #21094a;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-weight: 500;
}
.card-box-wraper .card-box .tab-pane-form .delete-upi strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .card-box-wraper .card-box .tab-pane-form .delete-upi {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .card-box-wraper .card-box .tab-pane-form .delete-upi {
    font-size: 16px;
  }
}
.card-box-wraper .card-box .tab-pane-form .delete-upi .delete-button {
  margin-left: auto;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  background-color: #faf7ff;
  border: none;
  outline: none;
  box-shadow: inherit;
  cursor: pointer;
}
.card-box-wraper .card-box .tab-pane-form .delete-upi .delete-button img {
  filter: brightness(0) saturate(100%) invert(23%) sepia(88%) saturate(7175%) hue-rotate(262deg) brightness(100%) contrast(107%);
}
.card-box-wraper .card-box .pickup-info-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media only screen and (max-width: 1199px) {
  .card-box-wraper .card-box .pickup-info-wrap {
    gap: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .card-box-wraper .card-box .pickup-info-wrap {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
.card-box-wraper .card-box .pickup-info-wrap .recipient-box {
  border: 1px solid rgba(148, 84, 255, 0.2509803922);
  border-radius: 20px;
  padding: 24px;
  background-color: #fff;
}
@media only screen and (max-width: 991px) {
  .card-box-wraper .card-box .pickup-info-wrap .recipient-box {
    padding: 20px;
    border-radius: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .card-box-wraper .card-box .pickup-info-wrap .recipient-box {
    padding: 15px;
  }
}
.card-box-wraper .card-box .pickup-info-wrap .recipient-box .payment-summary {
  padding: 0;
}
.card-box-wraper .card-box .pickup-info-wrap .info-details {
  padding-right: 24px;
}
@media only screen and (max-width: 1199px) {
  .card-box-wraper .card-box .pickup-info-wrap .info-details {
    padding-right: 0;
  }
}
.card-box-wraper .card-box .pickup-info-wrap .info-details .info-title {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 8px;
}
.card-box-wraper .card-box .pickup-info-wrap .info-details .info-title .info img {
  filter: brightness(0) saturate(100%) invert(12%) sepia(98%) saturate(4952%) hue-rotate(262deg) brightness(112%) contrast(108%);
}
.card-box-wraper .card-box .pickup-info-wrap .info-details .info-title h3 {
  font-family: GeneralSans;
  font-weight: 500;
  font-size: calc(20px + 4 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  text-transform: capitalize;
  font-weight: 500;
  color: #21094a;
  margin: 0;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .card-box-wraper .card-box .pickup-info-wrap .info-details .info-title h3 {
    font-size: 20px;
  }
}
@media screen and (min-width: 1440.5px) {
  .card-box-wraper .card-box .pickup-info-wrap .info-details .info-title h3 {
    font-size: 24px;
  }
}
.card-box-wraper .card-box .pickup-info-wrap .info-details p {
  font-size: 14px;
  line-height: 25px;
  font-family: GeneralSans;
  font-weight: 500;
  color: #8e82a4;
}
.card-box-wraper .card-box .pickup-info-wrap .info-details p strong {
  color: #534c60;
  font-weight: 500;
}
.card-box-wraper .card-box .pickup-info-wrap .info-details ol {
  margin: 24px 0;
  padding-left: 20px;
}
@media only screen and (max-width: 991px) {
  .card-box-wraper .card-box .pickup-info-wrap .info-details ol {
    margin: 20px 0;
  }
}
@media only screen and (max-width: 767px) {
  .card-box-wraper .card-box .pickup-info-wrap .info-details ol {
    margin: 16px 0;
  }
}
.card-box-wraper .card-box .pickup-info-wrap .info-details ol li {
  margin-bottom: 6px;
  color: #8e82a4;
  font-size: 16px;
  line-height: 25px;
  font-family: GeneralSans;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .card-box-wraper .card-box .pickup-info-wrap .info-details ol:last-child {
    margin-bottom: 0;
  }
}

.search-box-input {
  position: relative;
}
.search-box-input input {
  width: 100%;
  padding: 14px 16px;
  padding-right: 50px;
  border: 1px solid rgba(33, 9, 74, 0.1019607843);
  background-color: #f1eefd;
  border-radius: 25px;
  outline: none;
  box-shadow: none;
  color: #21094a;
  font-size: 16px;
  line-height: 20px;
  font-family: GeneralSans;
  font-weight: 400;
  transition: all 0.3s ease;
}
.search-box-input input::-webkit-input-placeholder {
  color: #424451;
}
.search-box-input input::-moz-placeholder {
  color: #424451;
}
.search-box-input input:-ms-input-placeholder {
  color: #424451;
}
.search-box-input input:-moz-placeholder {
  color: #424451;
}
.search-box-input input:focus {
  border-color: #21094a;
}
.search-box-input .search-icon {
  position: absolute;
  top: 4px;
  bottom: 4px;
  right: 4px;
  width: 36px;
  height: 36px;
  background-color: #faf7ff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  outline: none;
  border: none;
  box-shadow: inherit;
  padding: 0;
  margin: auto 0;
}

.send-method-select {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 24px 0 24px;
}
@media only screen and (max-width: 767px) {
  .send-method-select {
    padding: 20px 0 20px;
  }
}
@media only screen and (max-width: 575px) {
  .send-method-select {
    grid-template-columns: repeat(1, 1fr);
  }
}
.send-method-select .selet-method-group {
  width: 100%;
}
.send-method-select .selet-method-group .radio-modal-btn {
  width: 100%;
}
.send-method-select .selet-method-group .radio-modal-btn > img {
  filter: brightness(0) saturate(100%) invert(6%) sepia(53%) saturate(4031%) hue-rotate(255deg) brightness(126%) contrast(107%);
}
.send-method-select .sm-label {
  display: block;
  margin-bottom: 8px;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 0 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2%;
  color: #21094a;
  font-weight: 500;
}
.send-method-select .sm-label strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .send-method-select .sm-label {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .send-method-select .sm-label {
    font-size: 14px;
  }
}
.send-method-select .sm-label span {
  color: #FF3B30;
}

.payment-coupon-summary {
  display: flex;
  gap: 24px;
}
@media only screen and (max-width: 767px) {
  .payment-coupon-summary {
    flex-wrap: wrap;
  }
}
.payment-coupon-summary > div {
  border: 1px solid rgba(148, 84, 255, 0.2509803922);
  padding: 24px;
  border-radius: 20px;
}
@media only screen and (max-width: 767px) {
  .payment-coupon-summary > div {
    padding: 20px;
    border-radius: 16px;
  }
}
@media only screen and (max-width: 480px) {
  .payment-coupon-summary > div {
    padding: 15px;
  }
}
.payment-coupon-summary .summary-box {
  width: calc(57% - 12px);
}
@media only screen and (max-width: 767px) {
  .payment-coupon-summary .summary-box {
    width: 100%;
  }
}
.payment-coupon-summary .coupon-box {
  width: calc(43% - 12px);
  color: #8e82a4;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 0 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2%;
  font-weight: 500;
}
.payment-coupon-summary .coupon-box strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .payment-coupon-summary .coupon-box {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .payment-coupon-summary .coupon-box {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .payment-coupon-summary .coupon-box {
    width: 100%;
  }
}
.payment-coupon-summary .coupon-box .summary-box-head {
  margin-bottom: 16px;
}
@media only screen and (max-width: 767px) {
  .payment-coupon-summary .coupon-box .summary-box-head {
    margin-bottom: 12px;
  }
}
.payment-coupon-summary .coupon-box p strong {
  color: #21094a;
}
.payment-coupon-summary .coupon-box .coupon-img-box {
  text-align: center;
  padding: 24px 0;
}
@media only screen and (max-width: 991px) {
  .payment-coupon-summary .coupon-box .coupon-img-box {
    padding: 16px 0;
  }
}
.payment-coupon-summary .coupon-box .coupon-input {
  width: 100%;
  position: relative;
}
.payment-coupon-summary .coupon-box .coupon-input input {
  width: 100%;
  padding: 15px 16px;
  padding-right: 124px;
  border: 1px solid rgba(33, 9, 74, 0.1019607843);
  color: #21094a;
  font-size: 14px;
  line-height: 18px;
  font-family: GeneralSans;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 24px;
  outline: none;
  box-shadow: inherit;
}
.payment-coupon-summary .coupon-box .coupon-input input:focus {
  border-color: #731eff;
}
.payment-coupon-summary .coupon-box .coupon-input .verify-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 108px;
  margin-top: auto;
  margin-bottom: auto;
  width: 18px;
  height: 18px;
}
.payment-coupon-summary .coupon-box .coupon-input .applied-btn {
  position: absolute;
  top: 5px;
  bottom: 5px;
  right: 5px;
  background-color: #731eff;
  border: none;
  outline: none;
  box-shadow: none;
  border-radius: 20px;
  color: #fff;
  padding: 10px 22px;
}

.table-header {
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 480px) {
  .table-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
.table-header .table-title {
  font-family: GeneralSans;
  font-weight: 500;
  font-size: calc(20px + 4 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  text-transform: capitalize;
  color: #21094a;
  text-transform: none;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .table-header .table-title {
    font-size: 20px;
  }
}
@media screen and (min-width: 1440.5px) {
  .table-header .table-title {
    font-size: 24px;
  }
}
.table-header .tb-head-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media only screen and (max-width: 375px) {
  .table-header .tb-head-right {
    gap: 6px;
  }
}
.table-header .search-box-input {
  margin-left: auto;
  max-width: 340px;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .table-header .search-box-input {
    max-width: 260px;
  }
}
@media only screen and (max-width: 767px) {
  .table-header .search-box-input {
    max-width: 100%;
    order: 3;
  }
}
.table-header .search-box-input input {
  background-color: #fff;
  padding: 11px 50px 11px 16px;
}
.table-header .search-box-input .search-icon {
  background-color: #ede9fd;
}
.table-header .add-button {
  outline: none;
  box-shadow: inherit;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 18px 6px 10px;
  border-radius: 50px;
  border: 1px solid #731eff;
  color: #21094a;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-weight: 500;
  background-color: #fff;
  transition: all 0.3s ease;
}
.table-header .add-button strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .table-header .add-button {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .table-header .add-button {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) and (min-width: 481px) {
  .table-header .add-button {
    margin-left: auto;
  }
}
@media only screen and (max-width: 480px) {
  .table-header .add-button {
    gap: 3px;
    padding: 6px 10px 6px 6px;
  }
}
@media only screen and (max-width: 359px) {
  .table-header .add-button {
    gap: 3px;
    padding: 6px 8px 4px 6px;
  }
}
.table-header .add-button img {
  transition: all 0.3s ease;
}
@media only screen and (max-width: 767px) {
  .table-header .add-button img {
    width: 24px;
  }
}
@media only screen and (max-width: 480px) {
  .table-header .add-button img {
    width: 20px;
  }
}
.table-header .add-button:hover {
  background-color: #21094a;
  border-color: #21094a;
  color: #fff;
}
.table-header .add-button:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(1%) hue-rotate(251deg) brightness(104%) contrast(100%);
}

.table-container-wrap {
  border-radius: 26px;
  border: 1px solid #f1efff;
  overflow: hidden;
}
.table-container-wrap .table-container {
  overflow-x: auto;
}
.table-container-wrap .table-container table {
  width: 100%;
  border-collapse: collapse;
}
.table-container-wrap .table-container table thead th {
  text-align: left;
  padding: 16px 20px;
  font-size: 14px;
  line-height: 18px;
  font-family: GeneralSans;
  font-weight: 500;
  color: #8e82a4;
  background: rgba(33, 9, 74, 0.0509803922);
  border: 0;
}
.table-container-wrap .table-container table tbody tr td {
  vertical-align: middle;
  padding: 6px 20px;
  font-size: 14px;
  line-height: 18px;
  font-family: GeneralSans;
  font-weight: 500;
  color: #534c60;
  border: 1px solid rgba(33, 9, 74, 0.0509803922);
  transition: all 0.3s ease;
}
.table-container-wrap .table-container table tbody tr td .user-name {
  color: #21094a;
}
.table-container-wrap .table-container table tbody tr td strong {
  color: #21094a;
  font-weight: 500;
  transition: all 0.3s ease;
}
.table-container-wrap .table-container table tbody tr td .user-img {
  width: 36px;
  height: 36px;
  border-radius: 100%;
  margin-right: 12px;
}
.table-container-wrap .table-container table tbody tr td .flag-img {
  width: 24px;
  height: 24px;
  border-radius: 100%;
  margin-right: 12px;
  border: 2px solid #ffffff;
}
.table-container-wrap .table-container table tbody tr td .send-money-btn {
  cursor: pointer;
  border: none;
  outline: none;
  box-shadow: inherit;
  background: rgba(115, 30, 255, 0.0784313725);
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: #731eff;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 0 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2%;
  font-weight: 500;
  padding: 8px 12px;
  margin: 0 3px;
}
.table-container-wrap .table-container table tbody tr td .send-money-btn strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .table-container-wrap .table-container table tbody tr td .send-money-btn {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .table-container-wrap .table-container table tbody tr td .send-money-btn {
    font-size: 14px;
  }
}
.table-container-wrap .table-container table tbody tr td .action-view-btn {
  cursor: pointer;
  border: none;
  outline: none;
  box-shadow: inherit;
  background: rgba(33, 9, 74, 0.1019607843);
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0 3px;
  width: 35px;
  height: 35px;
}
.table-container-wrap .table-container table tbody tr td .viewimage-btn {
  cursor: pointer;
  cursor: pointer;
  border: none;
  outline: none;
  box-shadow: inherit;
  background-color: transparent;
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #731eff;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 0 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2%;
  font-weight: 500;
  margin: 0 3px;
}
.table-container-wrap .table-container table tbody tr td .viewimage-btn strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .table-container-wrap .table-container table tbody tr td .viewimage-btn {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .table-container-wrap .table-container table tbody tr td .viewimage-btn {
    font-size: 14px;
  }
}
.table-container-wrap .table-container table tbody tr td .viewimage-btn img {
  filter: brightness(0) saturate(100%) invert(23%) sepia(96%) saturate(7255%) hue-rotate(264deg) brightness(99%) contrast(103%);
}
.table-container-wrap .table-container table tbody tr td .pending-btn {
  cursor: pointer;
  border: none;
  outline: none;
  box-shadow: inherit;
  border-radius: 60px;
  background: rgba(255, 120, 48, 0.1019607843);
  color: #ff7830;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 10px;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 0 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2%;
  font-weight: 500;
  padding: 8px 12px;
  margin: 0 3px;
  min-width: 100px;
}
.table-container-wrap .table-container table tbody tr td .pending-btn strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .table-container-wrap .table-container table tbody tr td .pending-btn {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .table-container-wrap .table-container table tbody tr td .pending-btn {
    font-size: 14px;
  }
}
.table-container-wrap .table-container table tbody tr td .completed-btn {
  cursor: pointer;
  border: none;
  outline: none;
  box-shadow: inherit;
  border-radius: 60px;
  background: rgba(0, 169, 11, 0.1019607843);
  color: #00a90b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 10px;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 0 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2%;
  font-weight: 500;
  padding: 8px 12px;
  margin: 0 3px;
  min-width: 100px;
}
.table-container-wrap .table-container table tbody tr td .completed-btn strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .table-container-wrap .table-container table tbody tr td .completed-btn {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .table-container-wrap .table-container table tbody tr td .completed-btn {
    font-size: 14px;
  }
}
.table-container-wrap .table-container table tbody tr:hover td {
  color: #731eff;
  background-color: #f1eefd;
}
.table-container-wrap .table-container table tbody tr:hover td strong {
  color: #731eff;
}
.table-container-wrap .table-container .dataTables_scrollBody {
  border-bottom: none;
}
.table-container-wrap .table-container .dataTables_info {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 0 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2%;
  color: rgba(33, 9, 74, 0.5019607843);
  padding: 40px 20px 24px 20px;
}
.table-container-wrap .table-container .dataTables_info strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .table-container-wrap .table-container .dataTables_info {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .table-container-wrap .table-container .dataTables_info {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .table-container-wrap .table-container .dataTables_info {
    padding: 10px 10px 0px;
  }
}
.table-container-wrap .table-container .dataTables_paginate {
  padding: 20px 20px 20px 20px;
}
@media only screen and (max-width: 767px) {
  .table-container-wrap .table-container .dataTables_paginate {
    padding: 10px 10px;
  }
}
.table-container-wrap .table-container .dataTables_paginate > .paginate_button {
  border: 1px solid #d8d6de;
  border-radius: 50px;
  padding: 6px;
  width: 40px;
  height: 40px;
  margin: 0;
}
.table-container-wrap .table-container .dataTables_paginate > .paginate_button img {
  width: 16px;
  height: 16px;
}
.table-container-wrap .table-container .dataTables_paginate > span {
  padding: 4px 5px;
  border: 1px solid #d8d6de;
  background-color: #ffffff;
  border-radius: 20px;
  display: inline-block;
  margin: 0 3px;
}
.table-container-wrap .table-container .dataTables_paginate > span .paginate_button {
  border: none !important;
  border-radius: 50px;
  width: 30px;
  height: 30px;
  padding: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 0 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2%;
  color: #8e82a4;
  margin: 0;
}
.table-container-wrap .table-container .dataTables_paginate > span .paginate_button strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .table-container-wrap .table-container .dataTables_paginate > span .paginate_button {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .table-container-wrap .table-container .dataTables_paginate > span .paginate_button {
    font-size: 14px;
  }
}
.table-container-wrap .table-container .dataTables_paginate > span .paginate_button.current {
  background: #731eff;
  color: #fff !important;
}
.table-container-wrap .table-container .dataTables_paginate .paginate_button:hover {
  background: #731eff;
}
.table-container-wrap .table-container .dataTables_paginate .paginate_button:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7495%) hue-rotate(206deg) brightness(98%) contrast(98%);
}
.table-container-wrap.receipients-table-custom .table-container table thead tr th {
  white-space: nowrap;
}
.table-container-wrap.receipients-table-custom .table-container table tbody tr td {
  white-space: nowrap;
}
.table-container-wrap.receipients-table-custom .table-container .dataTables_scrollFoot .no-footer caption {
  padding-right: 20px;
  padding-left: 20px;
}

.top-spacing {
  padding-top: 122px;
}
@media only screen and (max-width: 991px) {
  .top-spacing {
    padding-top: 112px;
  }
}
@media only screen and (max-width: 767px) {
  .top-spacing {
    padding-top: 85px;
  }
}
@media only screen and (max-width: 575px) {
  .top-spacing {
    padding-top: 75px;
  }
}
@media only screen and (max-width: 480px) {
  .top-spacing {
    padding-top: 70px;
  }
}

.payment-summary-wrap {
  position: relative;
  z-index: 1;
}
.payment-summary-wrap::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -60px;
  right: -60px;
  width: calc(100% + 120px);
  height: 312px;
  background: linear-gradient(283.86deg, #270069 0.16%, #731eff 98.67%);
  border-radius: 20px;
  z-index: -1;
}
@media only screen and (max-width: 991px) {
  .payment-summary-wrap::before {
    left: -30px;
    right: -30px;
    top: -30px;
    width: calc(100% + 60px);
  }
}
@media only screen and (max-width: 767px) {
  .payment-summary-wrap::before {
    top: -24px;
    left: -24px;
    right: -24px;
    width: calc(100% + 48px);
  }
}
@media only screen and (max-width: 575px) {
  .payment-summary-wrap::before {
    top: -20px;
    left: -20px;
    right: -20px;
    width: calc(100% + 40px);
  }
}
@media only screen and (max-width: 480px) {
  .payment-summary-wrap::before {
    top: -15px;
    left: -15px;
    right: -15px;
    width: calc(100% + 30px);
  }
}
.payment-summary-wrap .payment-summary-vector {
  position: absolute;
  top: -130px;
  right: 105px;
  z-index: -1;
}
@media only screen and (max-width: 1279px) {
  .payment-summary-wrap .payment-summary-vector {
    top: -110px;
    right: 75px;
  }
}
@media only screen and (max-width: 991px) {
  .payment-summary-wrap .payment-summary-vector {
    top: -90px;
    right: 45px;
    opacity: 0.5;
  }
}
@media only screen and (max-width: 767px) {
  .payment-summary-wrap .payment-summary-vector {
    right: 10px;
    width: 250px;
    opacity: 0.5;
  }
}
@media only screen and (max-width: 576px) {
  .payment-summary-wrap .payment-summary-vector {
    opacity: 0.3;
    top: 0px;
  }
}
@media only screen and (max-width: 480px) {
  .payment-summary-wrap .payment-summary-vector {
    width: 200px;
  }
}
.payment-summary-wrap .payment-summary-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 52px;
}
@media only screen and (max-width: 1024px) {
  .payment-summary-wrap .payment-summary-inner {
    gap: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .payment-summary-wrap .payment-summary-inner {
    gap: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .payment-summary-wrap .payment-summary-inner {
    grid-template-columns: repeat(1, 1fr);
  }
}
.payment-summary-wrap .payment-summary-inner > div {
  border: 1px solid #f1eefd;
  border-radius: 20px;
  padding: 20px;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .payment-summary-wrap .payment-summary-inner > div {
    padding: 20px;
    border-radius: 16px;
  }
}
@media only screen and (max-width: 480px) {
  .payment-summary-wrap .payment-summary-inner > div {
    padding: 15px;
  }
}
.payment-summary-wrap.top-button .btn-group {
  margin: 0 !important;
  padding: 40px 0;
  flex-wrap: wrap;
}
@media only screen and (max-width: 991px) {
  .payment-summary-wrap.top-button .btn-group {
    padding: 30px 0;
  }
}
@media only screen and (max-width: 480px) {
  .payment-summary-wrap.top-button .btn-group {
    padding: 24px 0;
  }
}
.payment-summary-wrap.top-button .btn-group .btn-secondary {
  border: 2px solid #f1eefd;
  background-color: transparent;
  color: #ffffff;
  font-weight: 600;
}
.payment-summary-wrap.top-button .btn-group .btn-primary {
  border: 1px solid rgba(33, 9, 74, 0.1019607843);
  background-color: #ffffff;
  color: #21094a;
  font-weight: 600;
}

.radio-modal .modal-body.reason-modal-body .radio-wrap {
  margin: 0;
  padding: 8px 0;
  border-bottom: 1px solid rgba(142, 130, 164, 0.2);
}
.radio-modal .modal-body.reason-modal-body .radio-wrap:last-child {
  border-bottom: none;
}
.radio-modal .modal-body.reason-modal-body .radio-wrap label {
  background-color: transparent;
  padding: 8px;
}
.radio-modal .modal-body.reason-modal-body .radio-wrap [type=radio]:not(:checked) + label::before,
.radio-modal .modal-body.reason-modal-body .radio-wrap [type=radio]:checked + label::before {
  margin-right: 8px;
}
.radio-modal .modal-body.reason-modal-body .radio-wrap [type=radio]:not(:checked) + label::after,
.radio-modal .modal-body.reason-modal-body .radio-wrap [type=radio]:checked + label::after {
  margin-right: 8px;
}

.payment-info-modal .info-summary {
  border: 1px solid rgba(148, 84, 255, 0.2509803922);
  padding: 24px;
  border-radius: 20px;
}
@media only screen and (max-width: 767px) {
  .payment-info-modal .info-summary {
    padding: 20px;
    border-radius: 16px;
  }
}
@media only screen and (max-width: 480px) {
  .payment-info-modal .info-summary {
    padding: 15px;
  }
}
.payment-info-modal .info-summary .payment-summary {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
@media only screen and (max-width: 767px) {
  .payment-info-modal .info-summary .payment-summary {
    row-gap: 10px;
  }
}
.payment-info-modal .info-summary .payment-summary li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.payment-info-modal .info-summary .payment-summary li .center-line {
  width: 100%;
  display: block;
  flex: 1;
  height: 1px;
  margin: auto 0;
  background-color: rgba(142, 130, 164, 0.2);
}
.payment-info-modal .info-summary .payment-summary li span {
  color: #8e82a4;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-weight: 500;
}
.payment-info-modal .info-summary .payment-summary li span strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .payment-info-modal .info-summary .payment-summary li span {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .payment-info-modal .info-summary .payment-summary li span {
    font-size: 16px;
  }
}
.payment-info-modal .info-summary .payment-summary li strong {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(16px + 2 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  font-weight: 500;
  color: #534c60;
}
.payment-info-modal .info-summary .payment-summary li strong strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .payment-info-modal .info-summary .payment-summary li strong {
    font-size: 16px;
  }
}
@media screen and (min-width: 1440.5px) {
  .payment-info-modal .info-summary .payment-summary li strong {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .payment-info-modal .info-summary .payment-summary li strong {
    font-size: 16px;
  }
}
.payment-info-modal .info-summary .payment-summary li strong.highlight {
  color: #731eff;
}
.payment-info-modal .info-summary .payment-summary li.total-row span {
  color: #21094a;
}

.addbankmodal .modal-body .common-select-picker {
  margin-bottom: 20px;
}
.addbankmodal .modal-body .btn-group {
  justify-content: space-between;
  padding: 12px 20px 0;
  gap: 20px;
}
.addbankmodal .modal-body .btn-group button {
  width: calc(50% - 10px);
  min-width: inherit;
}

.transaction-modal .modal-dialog {
  max-width: 878px;
}
@media only screen and (min-width: 576px) {
  .transaction-modal .modal-dialog {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.transaction-modal .modal-dialog .modal-header {
  border-bottom: none;
}
.transaction-modal .modal-dialog .modal-body {
  padding: 0;
}
.transaction-modal .modal-dialog .transaction-details-wrap {
  position: relative;
  z-index: 1;
  padding: 24px 24px 14px;
}
@media only screen and (max-width: 767px) {
  .transaction-modal .modal-dialog .transaction-details-wrap {
    padding: 16px 16px 10px;
  }
}
.transaction-modal .modal-dialog .transaction-details-wrap::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
  height: 312px;
  background: linear-gradient(283.86deg, #270069 0.16%, #731eff 98.67%);
  border-radius: 20px;
  z-index: -1;
}
.transaction-modal .modal-dialog .transaction-details-wrap::after {
  content: "";
  position: absolute;
  top: 30px;
  right: 53px;
  width: 225px;
  height: 182px;
  background: url(../images/pay-vector.svg) no-repeat;
  background-size: 100% 100%;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .transaction-modal .modal-dialog .transaction-details-wrap::after {
    top: 24px;
    right: 24px;
    width: 190px;
    height: 140px;
  }
}
@media only screen and (max-width: 480px) {
  .transaction-modal .modal-dialog .transaction-details-wrap::after {
    opacity: 0.8;
  }
}
.transaction-modal .modal-dialog .transaction-details-wrap .payment-title {
  color: #ffffff;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(18px + 2 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  font-weight: 500;
}
.transaction-modal .modal-dialog .transaction-details-wrap .payment-title strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .transaction-modal .modal-dialog .transaction-details-wrap .payment-title {
    font-size: 18px;
  }
}
@media screen and (min-width: 1440.5px) {
  .transaction-modal .modal-dialog .transaction-details-wrap .payment-title {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .transaction-modal .modal-dialog .transaction-details-wrap .payment-title {
    font-size: 18px;
  }
}
.transaction-modal .modal-dialog .transaction-details-wrap .btn-group {
  margin: 0 !important;
  padding: 20px 0 52px;
}
@media only screen and (max-width: 991px) {
  .transaction-modal .modal-dialog .transaction-details-wrap .btn-group {
    padding: 20px 0 40px;
  }
}
@media only screen and (max-width: 767px) {
  .transaction-modal .modal-dialog .transaction-details-wrap .btn-group {
    padding: 20px 0 30px;
  }
}
@media only screen and (max-width: 480px) {
  .transaction-modal .modal-dialog .transaction-details-wrap .btn-group {
    padding: 16px 0 24px;
  }
}
.transaction-modal .modal-dialog .transaction-details-wrap .btn-group .btn-secondary {
  border: 2px solid #f1eefd;
  background-color: transparent;
  color: #ffffff;
  font-weight: 600;
  min-width: inherit;
  max-width: 190px;
  padding: 14px 12px;
  width: 100%;
}
.transaction-modal .modal-dialog .transaction-details-wrap .btn-group .btn-primary {
  border: 1px solid rgba(33, 9, 74, 0.1019607843);
  background-color: #ffffff;
  color: #21094a;
  font-weight: 600;
  min-width: inherit;
  max-width: 190px;
  padding: 14px 12px;
  width: 100%;
}
.transaction-modal .modal-dialog .transaction-details-wrap .transaction-details-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media only screen and (max-width: 767px) {
  .transaction-modal .modal-dialog .transaction-details-wrap .transaction-details-inner {
    grid-template-columns: repeat(1, 1fr);
  }
}
.transaction-modal .modal-dialog .transaction-details-wrap .transaction-details-inner > div {
  border-radius: 20px;
  padding: 20px;
  background-color: #faf7ff;
}
@media only screen and (max-width: 767px) {
  .transaction-modal .modal-dialog .transaction-details-wrap .transaction-details-inner > div {
    padding: 15px;
    border-radius: 16px;
  }
}
.transaction-modal .modal-dialog .transaction-details-wrap .transaction-details-inner .summary-box-head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.transaction-modal .modal-dialog .transaction-details-wrap .transaction-details-inner .summary-title {
  color: #9454ff;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(18px + 2 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  font-weight: 500;
}
.transaction-modal .modal-dialog .transaction-details-wrap .transaction-details-inner .summary-title strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .transaction-modal .modal-dialog .transaction-details-wrap .transaction-details-inner .summary-title {
    font-size: 18px;
  }
}
@media screen and (min-width: 1440.5px) {
  .transaction-modal .modal-dialog .transaction-details-wrap .transaction-details-inner .summary-title {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .transaction-modal .modal-dialog .transaction-details-wrap .transaction-details-inner .summary-title {
    font-size: 18px;
  }
}
.transaction-modal .modal-dialog .transaction-details-wrap .transaction-details-inner .center-line {
  width: 100%;
  display: block;
  flex: 1;
  height: 1px;
  margin: auto 0;
  background-color: rgba(142, 130, 164, 0.2);
}
.transaction-modal .modal-dialog .transaction-details-wrap .transaction-details-inner .payment-summary {
  display: flex;
  flex-direction: column;
  row-gap: 14px;
  padding: 24px 0 0;
}
@media only screen and (max-width: 991px) {
  .transaction-modal .modal-dialog .transaction-details-wrap .transaction-details-inner .payment-summary {
    padding: 20px 0;
  }
}
@media only screen and (max-width: 767px) {
  .transaction-modal .modal-dialog .transaction-details-wrap .transaction-details-inner .payment-summary {
    row-gap: 12px;
    padding: 18px 0 0;
  }
}
@media only screen and (max-width: 480px) {
  .transaction-modal .modal-dialog .transaction-details-wrap .transaction-details-inner .payment-summary {
    padding: 16px 0 0;
  }
}
.transaction-modal .modal-dialog .transaction-details-wrap .transaction-details-inner .payment-summary li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 375px) {
  .transaction-modal .modal-dialog .transaction-details-wrap .transaction-details-inner .payment-summary li {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 3px;
  }
}
.transaction-modal .modal-dialog .transaction-details-wrap .transaction-details-inner .payment-summary li span {
  color: #8e82a4;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-weight: 500;
}
.transaction-modal .modal-dialog .transaction-details-wrap .transaction-details-inner .payment-summary li span strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .transaction-modal .modal-dialog .transaction-details-wrap .transaction-details-inner .payment-summary li span {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .transaction-modal .modal-dialog .transaction-details-wrap .transaction-details-inner .payment-summary li span {
    font-size: 16px;
  }
}
@media only screen and (max-width: 420px) {
  .transaction-modal .modal-dialog .transaction-details-wrap .transaction-details-inner .payment-summary li span {
    font-size: 14px;
  }
}
.transaction-modal .modal-dialog .transaction-details-wrap .transaction-details-inner .payment-summary li strong {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(16px + 2 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  font-weight: 500;
  color: #21094a;
}
.transaction-modal .modal-dialog .transaction-details-wrap .transaction-details-inner .payment-summary li strong strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .transaction-modal .modal-dialog .transaction-details-wrap .transaction-details-inner .payment-summary li strong {
    font-size: 16px;
  }
}
@media screen and (min-width: 1440.5px) {
  .transaction-modal .modal-dialog .transaction-details-wrap .transaction-details-inner .payment-summary li strong {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .transaction-modal .modal-dialog .transaction-details-wrap .transaction-details-inner .payment-summary li strong {
    font-size: 16px;
  }
}
@media only screen and (max-width: 420px) {
  .transaction-modal .modal-dialog .transaction-details-wrap .transaction-details-inner .payment-summary li strong {
    font-size: 15px;
  }
}
.transaction-modal .modal-dialog .transaction-details-wrap .transaction-details-inner .payment-summary li strong.highlight {
  color: #731eff;
  display: flex;
  align-items: center;
  gap: 4px;
}
.transaction-modal .modal-dialog .transaction-details-wrap .transaction-details-inner .payment-summary li strong.highlight .info {
  display: inline-block;
  line-height: 20px;
  cursor: pointer;
}
.transaction-modal .modal-dialog .transaction-details-wrap .transaction-details-inner .payment-summary li.total-row span {
  color: #21094a;
}
.transaction-modal .modal-dialog .transaction-details-wrap .transaction-details-inner .payment-summary li.bg-highligt {
  background: rgba(148, 84, 255, 0.1490196078);
  padding: 10px 12px;
  border-radius: 8px;
}
@media only screen and (max-width: 991px) {
  .transaction-modal .modal-dialog .transaction-details-wrap .transaction-details-inner .payment-summary li.bg-highligt {
    padding: 6px 6px;
  }
}
.transaction-modal .modal-dialog .transaction-details-wrap .transaction-details-inner .payment-summary:last-child {
  padding-bottom: 0;
}

.addcardmodal .card-details {
  border: 1px solid rgba(33, 9, 74, 0.1019607843);
  border-radius: 16px;
  padding: 16px;
  background: #fff;
  width: 100%;
  margin-bottom: 16px;
}
.addcardmodal .card-details .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.addcardmodal .card-details .form-group label {
  display: block;
  font-family: GeneralSans;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #21094a;
  margin-bottom: 8px;
}
.addcardmodal .card-details .form-group input {
  outline: none;
  background-color: #f1eefd;
  border: 1px solid rgba(148, 84, 255, 0.1019607843);
  padding: 10px 10px;
  border-radius: 8px;
  font-size: 14px;
  color: #21094a;
  transition: all 0.3s ease;
}
.addcardmodal .card-details .form-group input::-moz-placeholder {
  color: #8e82a4;
}
.addcardmodal .card-details .form-group input::placeholder {
  color: #8e82a4;
}
.addcardmodal .card-details .form-group input:focus {
  border-color: #21094a;
}
.addcardmodal .card-details .form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media only screen and (max-width: 767px) {
  .addcardmodal .card-details .form-row {
    grid-template-columns: repeat(1, 1fr);
  }
}
.addcardmodal .card-details .form-row .form-group {
  margin-bottom: 0;
}
.addcardmodal .btn-group {
  justify-content: space-between;
  padding-top: 12px;
}
.addcardmodal .btn-group button {
  width: calc(50% - 12px);
}

.payment-methods-wrap .methods-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
@media only screen and (max-width: 1199px) {
  .payment-methods-wrap .methods-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .payment-methods-wrap .methods-inner {
    grid-template-columns: repeat(1, 1fr);
  }
}
.payment-methods-wrap .methods-inner .method-box {
  background: #faf7ff;
  border-radius: 20px;
  padding: 16px;
  border: 1px solid #f1efff;
  transition: 0.3s;
  color: #8e82a4;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2px;
  text-align: left;
  height: 100%;
  display: -ms-flex;
  display: flex;
  flex-direction: column;
}
.payment-methods-wrap .methods-inner .method-box strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .payment-methods-wrap .methods-inner .method-box {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .payment-methods-wrap .methods-inner .method-box {
    font-size: 16px;
  }
}
.payment-methods-wrap .methods-inner .method-box .method-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  gap: 8px;
}
.payment-methods-wrap .methods-inner .method-box .method-header .method-box-title {
  flex: 1;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(18px + 2 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  color: #21094a;
  font-weight: 500;
  line-height: normal;
}
.payment-methods-wrap .methods-inner .method-box .method-header .method-box-title strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .payment-methods-wrap .methods-inner .method-box .method-header .method-box-title {
    font-size: 18px;
  }
}
@media screen and (min-width: 1440.5px) {
  .payment-methods-wrap .methods-inner .method-box .method-header .method-box-title {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .payment-methods-wrap .methods-inner .method-box .method-header .method-box-title {
    font-size: 18px;
  }
}
.payment-methods-wrap .methods-inner .method-box .method-header .arrow {
  transform: rotate(180deg);
}
.payment-methods-wrap .methods-inner .method-box .method-header .arrow img {
  width: 10px;
  height: 13px;
}
.payment-methods-wrap .methods-inner .method-box p {
  line-height: 22px;
  margin-bottom: auto;
}
.payment-methods-wrap .methods-inner .method-box .fees {
  display: inline-block;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 0 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2%;
  margin-top: 16px;
  color: #9454ff;
  text-decoration: none;
  font-weight: 500;
}
.payment-methods-wrap .methods-inner .method-box .fees strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .payment-methods-wrap .methods-inner .method-box .fees {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .payment-methods-wrap .methods-inner .method-box .fees {
    font-size: 14px;
  }
}
.payment-methods-wrap .total-pay {
  background: rgba(148, 84, 255, 0.2);
  margin-top: 40px;
  border-radius: 30px;
  padding: 14px 24px;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #21094a;
  font-weight: 500;
}
.payment-methods-wrap .total-pay strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .payment-methods-wrap .total-pay {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .payment-methods-wrap .total-pay {
    font-size: 16px;
  }
}
.payment-methods-wrap .total-pay strong {
  color: #731eff;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(18px + 2 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  font-weight: 500;
}
.payment-methods-wrap .total-pay strong strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .payment-methods-wrap .total-pay strong {
    font-size: 18px;
  }
}
@media screen and (min-width: 1440.5px) {
  .payment-methods-wrap .total-pay strong {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .payment-methods-wrap .total-pay strong {
    font-size: 18px;
  }
}

.bank-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media only screen and (max-width: 991px) {
  .bank-options {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .bank-options {
    grid-template-columns: repeat(1, 1fr);
  }
}
.bank-options .bank-box {
  display: block;
  border: 1px solid #f1efff;
  border-radius: 20px;
  padding: 6px;
  background: #fff;
  cursor: pointer;
  transition: border 0.3s;
}
.bank-options .bank-box .custom-radio .radio-btn {
  background-color: #f1eefd;
  border-radius: 50px;
  padding: 11px 10px;
  color: #21094a;
}
.bank-options .bank-box .custom-radio.bank-pay-cr .radio-btn {
  padding: 20px;
}
.bank-options .bank-box .payment-summary {
  padding: 20px 14px !important;
}
@media only screen and (max-width: 767px) {
  .bank-options .bank-box .payment-summary {
    padding: 15px 10px !important;
  }
}
.bank-options .bank-box .payment-summary li span {
  font-size: 14px;
}
.bank-options .bank-box .payment-summary li strong {
  font-size: 16px;
}
.bank-options .bank-box .bank-box-head {
  background-color: #f1eefd;
  border-radius: 20px;
  padding: 5px 5px 5px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bank-options .bank-box .bank-box-head .box-head-title {
  color: #21094a;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-weight: 500;
}
.bank-options .bank-box .bank-box-head .box-head-title strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .bank-options .bank-box .bank-box-head .box-head-title {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .bank-options .bank-box .bank-box-head .box-head-title {
    font-size: 16px;
  }
}
.bank-options .bank-box .bank-box-head .delete-button {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  background-color: #faf7ff;
  border: none;
  outline: none;
  box-shadow: inherit;
  cursor: pointer;
}
.bank-options .bank-box .bank-box-head .delete-button img {
  filter: brightness(0) saturate(100%) invert(23%) sepia(88%) saturate(7175%) hue-rotate(262deg) brightness(100%) contrast(107%);
}

.country-pagination button {
  border: 1px solid #d8d6de;
  border-radius: 50px;
  padding: 6px;
  width: 40px;
  height: 40px;
  margin: 0;
  min-width: unset;
  min-height: unset;
  cursor: default;
  color: #666 !important;
  background: transparent;
  box-shadow: none;
}
.country-pagination button:hover {
  background: #731eff;
}
.country-pagination button:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7495%) hue-rotate(206deg) brightness(98%) contrast(98%);
}
.country-pagination button picture {
  display: flex;
}

.cms-notification-wrap .notifications-header {
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.cms-notification-wrap .notifications-header .notifications-header-title {
  font-family: GeneralSans;
  font-weight: 500;
  font-size: calc(20px + 4 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  text-transform: capitalize;
  color: #21094a;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .cms-notification-wrap .notifications-header .notifications-header-title {
    font-size: 20px;
  }
}
@media screen and (min-width: 1440.5px) {
  .cms-notification-wrap .notifications-header .notifications-header-title {
    font-size: 24px;
  }
}
.cms-notification-wrap .notifications-header .notifications-clear-all {
  color: #731eff;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2px;
  cursor: pointer;
  font-weight: 500;
}
.cms-notification-wrap .notifications-header .notifications-clear-all strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .cms-notification-wrap .notifications-header .notifications-clear-all {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .cms-notification-wrap .notifications-header .notifications-clear-all {
    font-size: 16px;
  }
}
.cms-notification-wrap .notifications-header .notifications-clear-all:hover {
  color: #21094a;
}
.cms-notification-wrap .notifications-body .notification-body-item:not(:last-child) {
  margin-bottom: 24px;
}
.cms-notification-wrap .notifications-body .notification-body-item > *:not(:last-child) {
  margin-bottom: 20px;
}
.cms-notification-wrap .notifications-body .notification-body-item .notification-date-wrap {
  display: -ms-flex;
  display: flex;
  gap: 20px;
  position: relative;
}
.cms-notification-wrap .notifications-body .notification-body-item .notification-date-wrap .notification-date {
  max-width: 100px;
  color: #8e82a4;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-weight: 500;
  background-color: #fff;
  z-index: 1;
  width: 100%;
}
.cms-notification-wrap .notifications-body .notification-body-item .notification-date-wrap .notification-date strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .cms-notification-wrap .notifications-body .notification-body-item .notification-date-wrap .notification-date {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .cms-notification-wrap .notifications-body .notification-body-item .notification-date-wrap .notification-date {
    font-size: 16px;
  }
}
.cms-notification-wrap .notifications-body .notification-body-item .notification-date-wrap .dashed-line {
  flex: 1;
  border-bottom: 1px dashed rgba(83, 76, 96, 0.2);
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  content: "";
  height: 1px;
}
.cms-notification-wrap .notifications-body .notification-body-item .notification-content .notification-content-block {
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background-color: rgba(241, 238, 253, 0.5);
  padding: 24px;
  border: 1px solid rgba(148, 84, 255, 0.5);
  border-radius: 21px;
}
@media only screen and (max-width: 991px) {
  .cms-notification-wrap .notifications-body .notification-body-item .notification-content .notification-content-block {
    padding: 18px;
  }
}
@media only screen and (max-width: 575px) {
  .cms-notification-wrap .notifications-body .notification-body-item .notification-content .notification-content-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.cms-notification-wrap .notifications-body .notification-body-item .notification-content .notification-content-block.is-notification-read {
  border-color: transparent;
}
.cms-notification-wrap .notifications-body .notification-body-item .notification-content .notification-content-block:not(:last-child) {
  margin-bottom: 20px;
}
.cms-notification-wrap .notifications-body .notification-body-item .notification-content .notification-content-block .notification-left .notification-vector {
  background-color: #731eff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
  flex: none;
}
.cms-notification-wrap .notifications-body .notification-body-item .notification-content .notification-content-block .notification-left .notification-content-title {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(16px + 2 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  font-weight: 500;
  color: #21094a;
}
.cms-notification-wrap .notifications-body .notification-body-item .notification-content .notification-content-block .notification-left .notification-content-title strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .cms-notification-wrap .notifications-body .notification-body-item .notification-content .notification-content-block .notification-left .notification-content-title {
    font-size: 16px;
  }
}
@media screen and (min-width: 1440.5px) {
  .cms-notification-wrap .notifications-body .notification-body-item .notification-content .notification-content-block .notification-left .notification-content-title {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .cms-notification-wrap .notifications-body .notification-body-item .notification-content .notification-content-block .notification-left .notification-content-title {
    font-size: 16px;
  }
}
.cms-notification-wrap .notifications-body .notification-body-item .notification-content .notification-content-block .notification-left .notification-text {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 0 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2%;
  color: #534c60;
}
.cms-notification-wrap .notifications-body .notification-body-item .notification-content .notification-content-block .notification-left .notification-text strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .cms-notification-wrap .notifications-body .notification-body-item .notification-content .notification-content-block .notification-left .notification-text {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .cms-notification-wrap .notifications-body .notification-body-item .notification-content .notification-content-block .notification-left .notification-text {
    font-size: 14px;
  }
}
.cms-notification-wrap .notifications-body .notification-body-item .notification-content .notification-content-block .notification-left .notification-text span {
  color: #731eff;
}
.cms-notification-wrap .notifications-body .notification-body-item .notification-content .notification-content-block .notification-text-date {
  display: -ms-flex;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #8e82a4;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 0 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2%;
}
.cms-notification-wrap .notifications-body .notification-body-item .notification-content .notification-content-block .notification-text-date strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .cms-notification-wrap .notifications-body .notification-body-item .notification-content .notification-content-block .notification-text-date {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .cms-notification-wrap .notifications-body .notification-body-item .notification-content .notification-content-block .notification-text-date {
    font-size: 14px;
  }
}

.profilepage .profile-wrap {
  display: flex;
  gap: 24px;
  border-radius: 30px;
  box-shadow: 0px 9px 34px 0px rgba(33, 9, 74, 0.0509803922);
  background: #fff;
  padding: 24px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1279px) {
  .profilepage .profile-wrap {
    border-radius: 24px;
  }
}
@media screen and (max-width: 767px) {
  .profilepage .profile-wrap {
    border-radius: 18px;
  }
}
@media only screen and (max-width: 997px) {
  .profilepage .profile-wrap {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 900px) {
  .profilepage .profile-wrap {
    padding: 14px;
  }
}
@media only screen and (max-width: 768px) {
  .profilepage .profile-wrap {
    flex-direction: column;
  }
}
@media only screen and (max-width: 575px) {
  .profilepage .profile-wrap {
    margin-bottom: 35px;
  }
}
@media only screen and (max-width: 375px) {
  .profilepage .profile-wrap {
    margin-bottom: 24px;
  }
}
.profilepage .profile-wrap .profile-left-card {
  width: calc(40% - 0px);
}
@media only screen and (max-width: 1199px) {
  .profilepage .profile-wrap .profile-left-card {
    width: calc(50% - 0px);
  }
}
@media only screen and (max-width: 768px) {
  .profilepage .profile-wrap .profile-left-card {
    width: 100%;
  }
}
.profilepage .profile-wrap .profile-left-card .profile-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 130px;
  background: url(../images/profile-bg-gradient.svg) no-repeat;
  background-size: cover;
  border-radius: 24px;
  z-index: 1;
}
@media screen and (max-width: 1279px) {
  .profilepage .profile-wrap .profile-left-card .profile-card-bg {
    border-radius: 18px;
  }
}
@media screen and (max-width: 767px) {
  .profilepage .profile-wrap .profile-left-card .profile-card-bg {
    border-radius: 16px;
  }
}
@media only screen and (max-width: 991px) {
  .profilepage .profile-wrap .profile-left-card .profile-card-bg {
    height: 100px;
  }
}
.profilepage .profile-wrap .profile-left-card .profile-card-custom {
  display: flex;
  flex-direction: column;
  position: relative;
  background: #534c60;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(124, 58, 237, 0.08);
  padding: 30px 30px 26px;
  background-color: #f1eefd;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .profilepage .profile-wrap .profile-left-card .profile-card-custom {
    padding: 15px;
  }
}
.profilepage .profile-wrap .profile-left-card .profile-card-custom .profile-avatar-custom {
  width: 146px;
  height: 146px;
  border: 2px solid #fff;
  background-color: #ffc651;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 100px;
}
@media only screen and (max-width: 991px) {
  .profilepage .profile-wrap .profile-left-card .profile-card-custom .profile-avatar-custom {
    width: 120px;
    height: 120px;
  }
}
@media only screen and (max-width: 767px) {
  .profilepage .profile-wrap .profile-left-card .profile-card-custom .profile-avatar-custom {
    width: 100px;
    height: 100px;
  }
}
.profilepage .profile-wrap .profile-left-card .profile-card-custom .profile-avatar-custom img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.profilepage .profile-wrap .profile-left-card .profile-card-custom .edit-profie-lbtn-custom {
  z-index: 1;
  background-color: #731eff;
  border: 0;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 0 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2%;
  font-weight: 500;
  color: #fff;
  padding: 8px 10px;
  border-radius: 40px;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: 10px;
  right: 10px;
  transition: 0.2s ease-in-out;
}
.profilepage .profile-wrap .profile-left-card .profile-card-custom .edit-profie-lbtn-custom strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .profilepage .profile-wrap .profile-left-card .profile-card-custom .edit-profie-lbtn-custom {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .profilepage .profile-wrap .profile-left-card .profile-card-custom .edit-profie-lbtn-custom {
    font-size: 14px;
  }
}
@media screen and (max-width: 1279px) {
  .profilepage .profile-wrap .profile-left-card .profile-card-custom .edit-profie-lbtn-custom {
    border-radius: 28px;
  }
}
@media screen and (max-width: 767px) {
  .profilepage .profile-wrap .profile-left-card .profile-card-custom .edit-profie-lbtn-custom {
    border-radius: 20px;
  }
}
.profilepage .profile-wrap .profile-left-card .profile-card-custom .edit-profie-lbtn-custom:hover {
  background-color: #21094a;
}
.profilepage .profile-wrap .profile-left-card .profile-card-custom .profile-info-custom {
  position: relative;
}
.profilepage .profile-wrap .profile-left-card .profile-card-custom .profile-info-custom .profile-name-custom {
  font-family: GeneralSans;
  font-weight: 600;
  font-size: calc(24px + 6 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  text-transform: capitalize;
  color: #fff;
  margin-bottom: 6px;
  margin-top: 15px;
  color: #21094a;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .profilepage .profile-wrap .profile-left-card .profile-card-custom .profile-info-custom .profile-name-custom {
    font-size: 24px;
  }
}
@media screen and (min-width: 1440.5px) {
  .profilepage .profile-wrap .profile-left-card .profile-card-custom .profile-info-custom .profile-name-custom {
    font-size: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .profilepage .profile-wrap .profile-left-card .profile-card-custom .profile-info-custom .profile-name-custom {
    margin-top: 10px;
  }
}
.profilepage .profile-wrap .profile-left-card .profile-card-custom .profile-info-custom .profile-id-custom {
  color: rgba(33, 9, 74, 0.7);
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2px;
}
.profilepage .profile-wrap .profile-left-card .profile-card-custom .profile-info-custom .profile-id-custom strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .profilepage .profile-wrap .profile-left-card .profile-card-custom .profile-info-custom .profile-id-custom {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .profilepage .profile-wrap .profile-left-card .profile-card-custom .profile-info-custom .profile-id-custom {
    font-size: 16px;
  }
}
.profilepage .profile-wrap .profile-left-card .profile-card-custom .profile-info-custom .profile-id-custom span {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(16px + 2 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  color: #21094a;
  font-weight: 500;
}
.profilepage .profile-wrap .profile-left-card .profile-card-custom .profile-info-custom .profile-id-custom span strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .profilepage .profile-wrap .profile-left-card .profile-card-custom .profile-info-custom .profile-id-custom span {
    font-size: 16px;
  }
}
@media screen and (min-width: 1440.5px) {
  .profilepage .profile-wrap .profile-left-card .profile-card-custom .profile-info-custom .profile-id-custom span {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .profilepage .profile-wrap .profile-left-card .profile-card-custom .profile-info-custom .profile-id-custom span {
    font-size: 16px;
  }
}
.profilepage .profile-wrap .profile-left-card .profile-card-custom .profile-actions-custom {
  display: flex;
  gap: 15px;
  margin-top: 24px;
}
@media only screen and (max-width: 991px) {
  .profilepage .profile-wrap .profile-left-card .profile-card-custom .profile-actions-custom {
    margin-top: 15px;
    gap: 10px;
  }
}
@media only screen and (max-width: 480px) {
  .profilepage .profile-wrap .profile-left-card .profile-card-custom .profile-actions-custom {
    flex-direction: column;
  }
}
.profilepage .profile-wrap .profile-left-card .profile-card-custom .profile-pill-btn-custom {
  width: calc(50% - 0px);
  border: 1px solid rgba(115, 30, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 0 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2%;
  font-weight: 500;
  color: #21094a;
  padding: 14px;
  text-decoration: none;
  border-radius: 30px;
  transition: background 0.2s;
}
.profilepage .profile-wrap .profile-left-card .profile-card-custom .profile-pill-btn-custom strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .profilepage .profile-wrap .profile-left-card .profile-card-custom .profile-pill-btn-custom {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .profilepage .profile-wrap .profile-left-card .profile-card-custom .profile-pill-btn-custom {
    font-size: 14px;
  }
}
@media only screen and (max-width: 991px) {
  .profilepage .profile-wrap .profile-left-card .profile-card-custom .profile-pill-btn-custom {
    padding: 12px;
  }
}
@media only screen and (max-width: 480px) {
  .profilepage .profile-wrap .profile-left-card .profile-card-custom .profile-pill-btn-custom {
    width: 100%;
  }
}
.profilepage .profile-wrap .profile-left-card .profile-card-custom .profile-pill-btn-custom span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.profilepage .profile-wrap .profile-left-card .profile-card-custom .profile-pill-btn-custom:hover {
  background: #ede9fe;
}
.profilepage .profile-wrap .profile-left-card .profile-card-custom .pill-icon-custom {
  width: 18px;
  height: 18px;
}
.profilepage .profile-wrap .profile-left-card .profile-card-custom .pill-icon-custom.dark-icon {
  filter: brightness(0) saturate(100%) invert(54%) sepia(57%) saturate(175%) hue-rotate(219deg) brightness(89%) contrast(77%);
}
.profilepage .profile-wrap .profile-left-card .invitation-box-custom {
  border: 1px solid #f1efff;
}
.profilepage .profile-wrap .profile-left-card .invitation-box-custom {
  padding: 24px;
  background-color: #fff;
  border-radius: 24px;
  margin-top: 24px;
}
@media screen and (max-width: 1279px) {
  .profilepage .profile-wrap .profile-left-card .invitation-box-custom {
    border-radius: 18px;
  }
}
@media screen and (max-width: 767px) {
  .profilepage .profile-wrap .profile-left-card .invitation-box-custom {
    border-radius: 16px;
  }
}
.profilepage .profile-wrap .profile-left-card .invitation-title-custom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 13px;
}
.profilepage .profile-wrap .profile-left-card .invitation-title-custom span {
  display: flex;
  align-items: center;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-weight: 500;
  gap: 10px;
  color: #21094a;
}
.profilepage .profile-wrap .profile-left-card .invitation-title-custom span strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .profilepage .profile-wrap .profile-left-card .invitation-title-custom span {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .profilepage .profile-wrap .profile-left-card .invitation-title-custom span {
    font-size: 16px;
  }
}
.profilepage .profile-wrap .profile-left-card .invitation-title-custom span img {
  width: 24px;
}
.profilepage .profile-wrap .profile-left-card .invitation-title-custom .copy-btn-custom {
  background-color: transparent;
  border: none;
  box-shadow: none;
}
.profilepage .profile-wrap .profile-left-card .invitation-title-custom .copy-btn-custom img {
  width: 20px;
}
.profilepage .profile-wrap .profile-left-card .invitation-desc-custom {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 0 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2%;
  color: #534c60;
  line-height: 1.8;
}
.profilepage .profile-wrap .profile-left-card .invitation-desc-custom strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .profilepage .profile-wrap .profile-left-card .invitation-desc-custom {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .profilepage .profile-wrap .profile-left-card .invitation-desc-custom {
    font-size: 14px;
  }
}
.profilepage .profile-wrap .profile-left-card .invitation-desc-custom .invitation-code-custom {
  color: #731eff;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
}
.profilepage .profile-wrap .profile-right-card {
  width: calc(60% - 0px);
}
@media only screen and (max-width: 1199px) {
  .profilepage .profile-wrap .profile-right-card {
    width: calc(50% - 0px);
  }
}
@media only screen and (max-width: 768px) {
  .profilepage .profile-wrap .profile-right-card {
    width: 100%;
  }
}
.profilepage .profile-wrap .profile-right-card .settings-card {
  border-radius: 24px;
  padding: 0 16px;
  background: #faf7ff;
  border: 1px solid #f1efff;
  margin-bottom: 24px;
}
@media screen and (max-width: 1279px) {
  .profilepage .profile-wrap .profile-right-card .settings-card {
    border-radius: 18px;
  }
}
@media screen and (max-width: 767px) {
  .profilepage .profile-wrap .profile-right-card .settings-card {
    border-radius: 16px;
  }
}
.profilepage .profile-wrap .profile-right-card .settings-card .settings-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}
.profilepage .profile-wrap .profile-right-card .settings-card .settings-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 17px 10px;
  border-bottom: 1px solid #ede9fe;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 0 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2%;
  font-weight: 500;
}
.profilepage .profile-wrap .profile-right-card .settings-card .settings-list li strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .profilepage .profile-wrap .profile-right-card .settings-card .settings-list li {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .profilepage .profile-wrap .profile-right-card .settings-card .settings-list li {
    font-size: 14px;
  }
}
.profilepage .profile-wrap .profile-right-card .settings-card .settings-list li span {
  display: flex;
  gap: 10px;
  align-items: center;
}
.profilepage .profile-wrap .profile-right-card .settings-card .settings-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 0 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2%;
  font-weight: 500;
}
.profilepage .profile-wrap .profile-right-card .settings-card .settings-list li a strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .profilepage .profile-wrap .profile-right-card .settings-card .settings-list li a {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .profilepage .profile-wrap .profile-right-card .settings-card .settings-list li a {
    font-size: 14px;
  }
}
.profilepage .profile-wrap .profile-right-card .settings-card .settings-list li a span {
  display: flex;
  gap: 10px;
  align-items: center;
}
.profilepage .profile-wrap .profile-right-card .settings-card .settings-list li a.dark-color {
  opacity: 0.5;
}
.profilepage .profile-wrap .profile-right-card .settings-card .settings-list li .switch-box {
  position: relative;
  width: 48px;
  height: 26px;
  background: #faf7ff;
  border-radius: 24px;
  border: 1px solid #731eff;
}
@media screen and (max-width: 1279px) {
  .profilepage .profile-wrap .profile-right-card .settings-card .settings-list li .switch-box {
    border-radius: 18px;
  }
}
@media screen and (max-width: 767px) {
  .profilepage .profile-wrap .profile-right-card .settings-card .settings-list li .switch-box {
    border-radius: 16px;
  }
}
.profilepage .profile-wrap .profile-right-card .settings-card .settings-list li .switch-box input {
  opacity: 0;
  width: 40px;
  height: 24px;
  position: absolute;
  left: 0;
  top: 0;
  cursor: pointer;
  z-index: 2;
}
.profilepage .profile-wrap .profile-right-card .settings-card .settings-list li .switch-box span {
  position: absolute;
  top: 2px;
  left: 24px;
  width: 20px;
  height: 20px;
  background: #7c3aed;
  border-radius: 50%;
  transition: left 0.2s;
}
.profilepage .profile-wrap .profile-right-card .settings-card .settings-list li:nth-last-child(1) {
  border-bottom: 0px solid #ede9fe;
}
.profilepage .profile-wrap .profile-right-card .small-title {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2px;
  color: #21094a;
  font-weight: 500;
  margin-bottom: 14px;
}
.profilepage .profile-wrap .profile-right-card .small-title strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .profilepage .profile-wrap .profile-right-card .small-title {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .profilepage .profile-wrap .profile-right-card .small-title {
    font-size: 16px;
  }
}

.personal-information {
  box-shadow: 0px 9px 34px 0px rgba(33, 9, 74, 0.0509803922);
  padding: 10px 10px 40px 10px;
  border-radius: 30px;
  background: #fff;
}
.personal-information .common-grid-all {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0px 48px;
  padding: 20px 0px 14px 0px;
}
@media only screen and (max-width: 991px) {
  .personal-information .common-grid-all {
    grid-template-columns: repeat(2, 1fr);
    gap: 0px 20px;
  }
}
@media only screen and (max-width: 576px) {
  .personal-information .common-grid-all {
    grid-template-columns: repeat(1, 1fr);
  }
}
.personal-information .btn-group {
  gap: 20px;
}
.personal-information .profile-avatar-custom {
  width: 146px;
  height: 146px;
  border: 4px solid #fff;
  background-color: #ffc651;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 75px;
}
@media screen and (max-width: 1279px) {
  .personal-information .profile-avatar-custom {
    border-radius: 55px;
  }
}
@media screen and (max-width: 767px) {
  .personal-information .profile-avatar-custom {
    border-radius: 35px;
  }
}
@media screen and (max-width: 1279px) {
  .personal-information .profile-avatar-custom {
    border-radius: 50%;
  }
}
@media screen and (max-width: 991px) {
  .personal-information .profile-avatar-custom {
    width: 120px;
    height: 120px;
  }
}
.personal-information .profile-avatar-custom picture {
  width: 100%;
  height: 100%;
}
.personal-information .profile-avatar-custom picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.personal-information .merge-relative {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.personal-information .merge-relative .edit-pencil-cls {
  position: absolute;
  background: #faf7ff;
  border: 1px solid #ffffff;
  border-radius: 20px;
  padding: 2px;
  bottom: 5px;
  width: 33px;
  height: 33px;
  right: 5px;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 991px) {
  .personal-information .merge-relative .edit-pencil-cls {
    width: 28px;
    height: 28px;
  }
}
.personal-information .personainfo-details {
  padding: 24px 26px 0px 26px;
}
@media screen and (max-width: 991px) {
  .personal-information .personainfo-details {
    padding: 24px 10px 0px 10px;
  }
}
.personal-information .avatar-personal-info {
  max-height: 120px;
}
.personal-information .common-label {
  font-family: GeneralSans;
  font-weight: 500;
  font-size: calc(20px + 4 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  text-transform: capitalize;
  margin-bottom: 10px;
  line-height: 28px;
  color: #21094a;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .personal-information .common-label {
    font-size: 20px;
  }
}
@media screen and (min-width: 1440.5px) {
  .personal-information .common-label {
    font-size: 24px;
  }
}
.personal-information .common-paragraph {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2px;
  color: #8e82a4;
  font-weight: 400;
  margin-bottom: 20px;
}
.personal-information .common-paragraph strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .personal-information .common-paragraph {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .personal-information .common-paragraph {
    font-size: 16px;
  }
}
.personal-information .stepper-container {
  background: #faf7ff;
  border-radius: 19px;
  padding: 16px;
}
.personal-information .stepper-progress {
  position: relative;
}
.personal-information .stepper-track {
  height: 6px;
  background: rgba(142, 130, 164, 0.2);
  border-radius: 5px;
  position: relative;
  margin-top: 8px;
}
.personal-information .stepper-bar {
  height: 6px;
  background: #731eff;
  width: 50%;
  border-radius: 5px;
  position: absolute;
  top: 0;
  left: 0;
  transition: width 0.4s ease;
}
.personal-information .stepper-bar.no-transition {
  transition: none !important;
}
.personal-information .stepper-icon {
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  z-index: 2;
}
.personal-information .stepper-labels {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.personal-information .step-label {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 0 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2%;
  background: transparent;
  outline: none;
  border: none;
}
.personal-information .step-label strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .personal-information .step-label {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .personal-information .step-label {
    font-size: 14px;
  }
}
.personal-information .step-label.active {
  color: #9454ff;
  font-weight: 500;
}

@media (max-width: 480px) {
  .step-label {
    font-size: 12px;
  }
  .stepper-icon {
    width: 20px;
    height: 20px;
  }
}
.common-grid-all .bootstrap-select {
  display: flex !important;
  flex-wrap: wrap;
}
.common-grid-all .bootstrap-select .selectpicker {
  order: 1;
}
.common-grid-all .bootstrap-select .dropdown-toggle {
  order: 2;
}
.common-grid-all .bootstrap-select .text-danger {
  order: 3;
}

.help-wrapper .help-form-wrapper .help-title {
  font-family: GeneralSans;
  font-weight: 500;
  font-size: calc(20px + 4 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  text-transform: capitalize;
  color: #21094a;
  margin-bottom: 24px;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .help-wrapper .help-form-wrapper .help-title {
    font-size: 20px;
  }
}
@media screen and (min-width: 1440.5px) {
  .help-wrapper .help-form-wrapper .help-title {
    font-size: 24px;
  }
}
.help-wrapper .help-form-wrapper .help-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 48px;
       column-gap: 48px;
}
@media screen and (max-width: 991px) {
  .help-wrapper .help-form-wrapper .help-form {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .help-wrapper .help-form-wrapper .help-form {
    grid-template-columns: repeat(1, 1fr);
  }
}
.help-wrapper .help-form-wrapper .help-form .fsluni-form .file-label .right-image {
  right: 15px;
  left: auto;
}
.help-wrapper .help-form-wrapper .help-form .fsluni-form.fsluni-form-textarea {
  grid-row: span 2;
  display: -ms-flex;
  display: flex;
  flex-direction: column;
}
.help-wrapper .help-form-wrapper .help-form .fsluni-form.fsluni-form-textarea .uni-input-textarea {
  display: -ms-flex;
  display: flex;
  flex: 1;
}

.feature-request-wrapper {
  display: -ms-flex;
  display: flex;
  gap: 30px;
  align-items: flex-start;
  padding: 10px;
  border-radius: 30px;
  box-shadow: 0px 9px 34px 0px rgba(33, 9, 74, 0.0509803922);
  background-color: #fff;
  margin-bottom: 50px;
}
.feature-request-wrapper .feature-request-form {
  flex: 0 0 40%;
  background: radial-gradient(119.28% 191.58% at 23.43% -16.25%, #9454ff 0%, #731eff 56.67%, #21094a 100%);
  border-radius: 22px;
  padding: 50px 60px;
  color: #fff;
}
.feature-request-wrapper .feature-request-form .fsluni-form .uni-input-group img.left-image {
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(6deg) brightness(102%) contrast(102%);
}
.feature-request-wrapper .feature-request-form .fsluni-form .uni-input-group label.error {
  color: #fff;
}
.feature-request-wrapper .feature-request-form .fsluni-form.fsluni-form-textarea .uni-input-textarea label.error {
  color: #fff;
}
.feature-request-wrapper .feature-request-form .form-title {
  font-family: GeneralSans;
  font-weight: 500;
  font-size: calc(20px + 4 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  text-transform: capitalize;
  font-weight: 500;
  margin-bottom: 40px;
  padding-bottom: 20px;
  text-align: center;
  border-bottom: 1px solid rgba(241, 238, 253, 0.3);
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .feature-request-wrapper .feature-request-form .form-title {
    font-size: 20px;
  }
}
@media screen and (min-width: 1440.5px) {
  .feature-request-wrapper .feature-request-form .form-title {
    font-size: 24px;
  }
}
.feature-request-wrapper .feature-request-form .form-label {
  color: #fff;
}
.feature-request-wrapper .feature-request-form .form-control {
  background: rgba(241, 238, 253, 0.1019607843) !important;
  border: 1px solid rgba(255, 255, 255, 0.1490196078) !important;
  color: #fff !important;
}
.feature-request-wrapper .feature-request-form .form-control::-moz-placeholder {
  color: #fff !important;
}
.feature-request-wrapper .feature-request-form .form-control::placeholder {
  color: #fff !important;
}
.feature-request-wrapper .feature-request-form .form-control:focus {
  background: rgba(241, 238, 253, 0.1019607843) !important;
  border: 1px solid rgba(241, 238, 253, 0.1019607843) !important;
  box-shadow: none;
  color: #fff !important;
}
.feature-request-wrapper .feature-request-form .btn-uni-lg {
  background-color: #fff;
  color: #731eff;
}
@media (max-width: 991px) {
  .feature-request-wrapper .feature-request-form {
    width: 100%;
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .feature-request-wrapper .feature-request-form {
    width: 100%;
    padding: 20px;
  }
}
.feature-request-wrapper .feature-request-content {
  flex: 1;
  font-size: 16px;
  line-height: 22px;
  color: #8e82a4;
  padding: 20px 20px 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-request-wrapper .feature-request-content span {
  color: #21094a;
  font-weight: 500;
}
.feature-request-wrapper .feature-request-content h3 {
  color: #731eff;
  font-size: 16px;
  font-weight: 600;
}
.feature-request-wrapper .feature-request-content .highlight {
  color: #9454ff;
  font-weight: 500;
}
.feature-request-wrapper .feature-request-content ol,
.feature-request-wrapper .feature-request-content ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
}
.feature-request-wrapper .feature-request-content ol span,
.feature-request-wrapper .feature-request-content ul span {
  color: #21094a;
  font-weight: 500;
}
.feature-request-wrapper .feature-request-content ol li:not(:last-child),
.feature-request-wrapper .feature-request-content ul li:not(:last-child) {
  margin-bottom: 8px;
}
@media (max-width: 991px) {
  .feature-request-wrapper .feature-request-content {
    width: 100%;
    padding: 0;
  }
}
@media (max-width: 991px) {
  .feature-request-wrapper {
    flex-direction: column;
  }
}

.support-wrapper {
  max-width: 1030px;
  margin-left: auto;
  margin-right: auto;
}
.support-wrapper .support-box {
  padding: 40px;
  border-radius: 20px;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}
.support-wrapper .support-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(80.69% 142.35% at 73.75% 119.5%, #9454ff 0%, #731eff 50.68%, #21094a 100%);
  z-index: 0;
}
.support-wrapper .support-box > * {
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .support-wrapper .support-box {
    padding: 30px;
  }
}
@media screen and (max-width: 480px) {
  .support-wrapper .support-box {
    padding: 20px;
    gap: 10px;
    text-align: center;
    justify-content: center;
  }
}
.support-wrapper .support-box > img {
  flex: none;
}
.support-wrapper .support-box .support-title {
  font-family: GeneralSans;
  font-weight: 600;
  font-size: calc(28px + 8 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  text-transform: capitalize;
  text-transform: none;
  margin-right: auto;
  color: #fff;
  max-width: 270px;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .support-wrapper .support-box .support-title {
    font-size: 28px;
  }
}
@media screen and (min-width: 1440.5px) {
  .support-wrapper .support-box .support-title {
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  .support-wrapper .support-box .support-title {
    max-width: 240px;
  }
}
@media screen and (max-width: 480px) {
  .support-wrapper .support-box .support-title {
    margin: 0;
  }
}
.support-wrapper .support-box .support-link-btn {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 480px) {
  .support-wrapper .support-box .support-link-btn {
    flex-wrap: wrap;
  }
}
.support-wrapper .support-box .support-link-btn a {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 10px 20px;
}
@media screen and (max-width: 480px) {
  .support-wrapper .support-box .support-link-btn a {
    width: 100%;
  }
}
.support-wrapper .support-box .support-link-btn a:hover {
  background: #fff;
  color: #21094a;
}
.support-wrapper .support-box .support-link-btn a:hover img {
  filter: invert(1);
}
.support-wrapper .support-box .support-circle {
  display: block;
  position: absolute;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) -7.31%, rgba(255, 255, 255, 0.4) 46.35%, rgba(255, 255, 255, 0) 100%);
  -webkit-backdrop-filter: blur(60px);
          backdrop-filter: blur(60px);
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
}
.support-wrapper .support-box .support-circle.support-circle1 {
  width: 56px;
  height: 56px;
  top: -25px;
  left: 240px;
  opacity: 25%;
}
.support-wrapper .support-box .support-circle.support-circle2 {
  width: 22px;
  height: 22px;
  bottom: 20px;
  left: -10px;
  opacity: 25%;
}
.support-wrapper .support-box .support-circle.support-circle3 {
  width: 82px;
  height: 82px;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 25%;
}
.support-wrapper .accordion .accordion-item {
  border: 1px solid #f1efff;
  border-radius: 24px;
}
@media screen and (max-width: 1279px) {
  .support-wrapper .accordion .accordion-item {
    border-radius: 18px;
  }
}
@media screen and (max-width: 767px) {
  .support-wrapper .accordion .accordion-item {
    border-radius: 16px;
  }
}
.support-wrapper .accordion .accordion-item:not(:last-child) {
  margin-bottom: 20px;
}
.support-wrapper .accordion .accordion-item .accordion-header .accordion-button {
  padding: 16px 30px;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 0 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2%;
  font-weight: 500;
  color: #21094a;
  background: transparent;
  border: none;
  gap: 4px;
}
.support-wrapper .accordion .accordion-item .accordion-header .accordion-button strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .support-wrapper .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .support-wrapper .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .support-wrapper .accordion .accordion-item .accordion-header .accordion-button {
    padding: 16px 20px;
  }
}
.support-wrapper .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
  color: #21094a;
}
.support-wrapper .accordion .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
}
.support-wrapper .accordion .accordion-item .accordion-header .accordion-button::after {
  filter: brightness(0) saturate(100%) invert(17%) sepia(19%) saturate(3810%) hue-rotate(234deg) brightness(76%) contrast(120%);
}
@media screen and (max-width: 991px) {
  .support-wrapper .accordion .accordion-item .accordion-header .accordion-button::after {
    width: 16px;
    height: 16px;
    background-size: 16px;
  }
}
.support-wrapper .accordion .accordion-item .accordion-body {
  padding: 0 30px 16px;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 0 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2%;
  color: #534c60;
}
.support-wrapper .accordion .accordion-item .accordion-body strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .support-wrapper .accordion .accordion-item .accordion-body {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .support-wrapper .accordion .accordion-item .accordion-body {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .support-wrapper .accordion .accordion-item .accordion-body {
    padding: 0 20px 16px;
  }
}
.support-wrapper.contact-page .card-box {
  padding: 10px;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 991px) {
  .support-wrapper.contact-page .card-box {
    flex-direction: column;
    align-items: center;
  }
}
.support-wrapper.contact-page .card-box .contact-img {
  max-width: 414px;
  width: 100%;
}
.support-wrapper.contact-page .card-box .contact-form-wrapper {
  padding: 20px 40px;
}
@media only screen and (max-width: 991px) {
  .support-wrapper.contact-page .card-box .contact-form-wrapper {
    padding: 20px 0;
  }
}
.support-wrapper.contact-page .card-box .contact-form-wrapper .contact-title {
  font-family: GeneralSans;
  font-weight: 500;
  font-size: calc(20px + 4 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  text-transform: capitalize;
  font-weight: 600;
  color: #21094a;
  margin-bottom: 8px;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .support-wrapper.contact-page .card-box .contact-form-wrapper .contact-title {
    font-size: 20px;
  }
}
@media screen and (min-width: 1440.5px) {
  .support-wrapper.contact-page .card-box .contact-form-wrapper .contact-title {
    font-size: 24px;
  }
}
.support-wrapper.contact-page .card-box .contact-form-wrapper .contact-desc {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2px;
  color: #8e82a4;
  margin-bottom: 24px;
}
.support-wrapper.contact-page .card-box .contact-form-wrapper .contact-desc strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .support-wrapper.contact-page .card-box .contact-form-wrapper .contact-desc {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .support-wrapper.contact-page .card-box .contact-form-wrapper .contact-desc {
    font-size: 16px;
  }
}
.support-wrapper.contact-page .card-box .contact-form-wrapper .contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 48px;
       column-gap: 48px;
}
@media screen and (max-width: 767px) {
  .support-wrapper.contact-page .card-box .contact-form-wrapper .contact-form {
    grid-template-columns: repeat(1, 1fr);
  }
}
.support-wrapper.contact-page .card-box .contact-form-wrapper .contact-form .fsluni-form-textarea {
  grid-column: 1/-1;
}

.contact-section {
  padding: 4rem 1rem;
  background: #fff;
}
.contact-section .contact-container {
  max-width: 1280px;
  margin: 0 auto;
}
.contact-section .contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .contact-section .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px) {
  .contact-section .contact-grid {
    gap: 2rem 0;
  }
}
.contact-section .contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-section .contact-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: box-shadow 0.3s ease;
}
.contact-section .contact-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.contact-section .contact-card .icon-box {
  width: 3rem;
  height: 3rem;
  background: #f5f3ff;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-section .contact-card .icon-box svg {
  color: #6b2fff;
  width: 1.5rem;
  height: 1.5rem;
}
.contact-section .contact-card .card-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1a0b2e;
  margin-bottom: 0.25rem;
}
.contact-section .contact-card .card-content .highlight {
  color: #6b2fff;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}
.contact-section .contact-card .card-content .muted {
  color: #6b6b6b;
  font-size: 0.8rem;
}
.contact-section .contact-card.office {
  background: #f5f3ff;
  border: none;
}
.contact-section .contact-card.office .icon-box {
  background: #6b2fff;
}
.contact-section .contact-card.office .icon-box svg {
  color: #fff;
}
.contact-section .contact-card.office .card-content p {
  color: #555;
  font-size: 14px;
}
.contact-section .contact-form-wrapper {
  grid-column: span 2;
}
.contact-section .contact-form-wrapper .contact-form-box {
  background: #fff;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
@media (max-width: 767px) {
  .contact-section .contact-form-wrapper .contact-form-box {
    padding: 2rem 1rem;
  }
}
.contact-section .contact-form-wrapper .contact-form-box h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a0b2e;
  margin-bottom: 1.5rem;
}
.contact-section .contact-form-wrapper .contact-form-box form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-section .contact-form-wrapper .contact-form-box form .form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .contact-section .contact-form-wrapper .contact-form-box form .form-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
.contact-section .contact-form-wrapper .contact-form-box form .form-group {
  display: flex;
  flex-direction: column;
}
.contact-section .contact-form-wrapper .contact-form-box form .form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #4a4a4a;
  margin-bottom: 0.5rem;
}
.contact-section .contact-form-wrapper .contact-form-box form .form-group input,
.contact-section .contact-form-wrapper .contact-form-box form .form-group textarea {
  border: 1px solid #dcdcdc;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}
.contact-section .contact-form-wrapper .contact-form-box form .form-group input:focus,
.contact-section .contact-form-wrapper .contact-form-box form .form-group textarea:focus {
  border-color: #6b2fff;
}
.contact-section .contact-form-wrapper .contact-form-box form .form-group textarea {
  resize: none;
}
.contact-section .contact-form-wrapper .contact-form-box form .form-group .phone-input {
  position: relative;
  display: flex;
  gap: 0.75rem;
}
@media screen and (max-width: 640px) {
  .contact-section .contact-form-wrapper .contact-form-box form .form-group .phone-input {
    flex-direction: column;
  }
}
.contact-section .contact-form-wrapper .contact-form-box form .form-group .phone-input .iti {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.contact-section .contact-form-wrapper .contact-form-box form .form-group .phone-input .iti .text-danger {
  font-size: 14px;
  line-height: 20px;
  color: #dc3545;
  width: 100%;
}
.contact-section .contact-form-wrapper .contact-form-box form .form-group .phone-input .iti__country-container {
  position: relative;
}
.contact-section .contact-form-wrapper .contact-form-box form .form-group .phone-input .iti__country-container .iti__selected-country {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f9f9f9;
  border: 1px solid #ddd;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  min-width: 100px;
  margin: 0;
  height: 50px;
}
.contact-section .contact-form-wrapper .contact-form-box form .form-group .phone-input .country-code {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f9f9f9;
  border: 1px solid #ddd;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  min-width: 100px;
}
.contact-section .contact-form-wrapper .contact-form-box form .form-group .phone-input .country-code span:last-child {
  color: #333;
  font-weight: 500;
}
.contact-section .contact-form-wrapper .contact-form-box form .form-group .phone-input input {
  flex: 1;
  padding-left: 20px !important;
}
@media screen and (max-width: 767px) {
  .contact-section .contact-form-wrapper .contact-form-box form .form-group .phone-input input {
    padding-left: 10px !important;
  }
}
.contact-section .contact-form-wrapper .contact-form-box form .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #6b2fff;
  color: #fff;
  font-weight: 500;
  border: none;
  border-radius: 9999px;
  height: 3rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}
.contact-section .contact-form-wrapper .contact-form-box form .btn-primary:hover {
  background: #5a24e6;
}
.contact-section .contact-form-wrapper .contact-form-box form .btn-primary svg {
  width: 1.25rem;
  height: 1.25rem;
}

.section-head {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(18px + 2 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  color: #534c60;
}
.section-head strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .section-head {
    font-size: 18px;
  }
}
@media screen and (min-width: 1440.5px) {
  .section-head {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .section-head {
    font-size: 18px;
  }
}
.section-head .section-title {
  margin-bottom: 16px;
}
.section-head .section-title span {
  color: #731eff;
}
.section-head .section-title:last-child {
  margin-bottom: 0;
}
.section-head p strong {
  color: #21094a;
}
.section-head.head-col-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.section-head.mb-50 {
  margin-bottom: 50px;
}

/* verification Flow */
.kyc-verification-flow {
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .kyc-verification-flow {
    margin-bottom: 40px;
  }
}
.kyc-verification-flow .card-box {
  background: #ffffff;
  box-shadow: 0px 9px 34px 0px rgba(33, 9, 74, 0.0509803922);
  border-radius: 30px;
  padding: 40px;
}
@media only screen and (max-width: 767px) {
  .kyc-verification-flow .card-box {
    padding: 24px;
  }
}
.kyc-verification-flow .card-box p {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2px;
  color: #8e82a4;
  font-weight: 400;
  line-height: 25px;
  margin-bottom: 20px;
}
.kyc-verification-flow .card-box p strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .kyc-verification-flow .card-box p {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .kyc-verification-flow .card-box p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .kyc-verification-flow .card-box p {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 16px;
  }
}
.kyc-verification-flow .card-box .form-check {
  display: flex;
  gap: 16px;
  margin-top: 60px;
}
@media only screen and (max-width: 767px) {
  .kyc-verification-flow .card-box .form-check {
    gap: 12px;
    margin-top: 26px;
  }
}
.kyc-verification-flow .card-box .form-check label.form-check-label {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2px;
  color: #8e82a4;
}
.kyc-verification-flow .card-box .form-check label.form-check-label strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .kyc-verification-flow .card-box .form-check label.form-check-label {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .kyc-verification-flow .card-box .form-check label.form-check-label {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .kyc-verification-flow .card-box .form-check label.form-check-label {
    font-size: 14px;
  }
}
.kyc-verification-flow .card-box .form-check .form-check-input {
  border-color: #731eff !important;
  width: 20px;
  height: 20px;
  border-radius: 2px;
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  .kyc-verification-flow .card-box .form-check .form-check-input {
    margin-top: 4px;
  }
}
.kyc-verification-flow .card-box .form-check .form-check-input:checked {
  background-color: #731eff;
  border-color: #731eff;
}
.kyc-verification-flow .card-box .btn-primary {
  background-color: #731eff;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2px;
  border-radius: 10px;
  font-weight: 500;
  min-height: 46px;
  padding: 10px 22px;
  border: 0;
  margin-top: 30px;
}
.kyc-verification-flow .card-box .btn-primary strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .kyc-verification-flow .card-box .btn-primary {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .kyc-verification-flow .card-box .btn-primary {
    font-size: 16px;
  }
}
.kyc-verification-flow .card-box .btn-primary:hover {
  background-color: #4B05BE;
  color: #fff;
}
.kyc-verification-flow .card-box .choose-id-heading {
  font-size: 20px;
  font-weight: 500;
  color: #21094a;
  line-height: 24px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 991px) {
  .kyc-verification-flow .card-box .choose-id-heading {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .kyc-verification-flow .card-box .choose-id-heading {
    font-size: 16px;
  }
}
.kyc-verification-flow .card-box .document-options {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
  margin-bottom: 60px;
}
@media only screen and (max-width: 767px) {
  .kyc-verification-flow .card-box .document-options {
    margin-top: 24px;
    margin-bottom: 30px;
  }
}
.kyc-verification-flow .card-box .document-options .doc-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #e0dff5;
  background: #fff;
  border-radius: 10px;
  padding: 14px 16px;
  min-width: 311px;
  cursor: pointer;
}
@media only screen and (max-width: 991px) {
  .kyc-verification-flow .card-box .document-options .doc-button {
    padding: 10px 12px;
    min-width: 240px;
  }
}
@media only screen and (max-width: 567px) {
  .kyc-verification-flow .card-box .document-options .doc-button {
    min-width: 100%;
  }
}
.kyc-verification-flow .card-box .document-options .doc-button .doc-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
}
.kyc-verification-flow .card-box .document-options .doc-button .icon {
  display: flex;
}
.kyc-verification-flow .card-box .document-options .doc-button .label {
  font-size: 16px;
  font-weight: 500;
  color: #21094a;
}
@media only screen and (max-width: 991px) {
  .kyc-verification-flow .card-box .document-options .doc-button .label {
    font-size: 14px;
  }
}
.kyc-verification-flow .card-box .document-options .doc-button .arrow {
  display: inline-flex;
}
.kyc-verification-flow .card-box .passport-detail {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}
@media only screen and (max-width: 991px) {
  .kyc-verification-flow .card-box .passport-detail {
    gap: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .kyc-verification-flow .card-box .passport-detail {
    flex-direction: column-reverse;
    gap: 20px;
  }
}
.kyc-verification-flow .card-box .passport-detail .form-container {
  max-width: 460px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .kyc-verification-flow .card-box .passport-detail .form-container {
    max-width: 100%;
  }
}
.kyc-verification-flow .card-box .passport-detail .passport-image {
  border-radius: 8px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  max-width: 343px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .kyc-verification-flow .card-box .passport-detail .passport-image {
    max-width: 300px;
    margin: 0 auto;
  }
}
.kyc-verification-flow .card-box .passport-detail .passport-image img {
  width: 100%;
}
.kyc-verification-flow .card-box .kyc-upload-row {
  display: flex;
  gap: 60px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
}
@media only screen and (max-width: 991px) {
  .kyc-verification-flow .card-box .kyc-upload-row {
    gap: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .kyc-verification-flow .card-box .kyc-upload-row {
    gap: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .kyc-verification-flow .card-box .kyc-upload-row {
    flex-direction: column;
    margin-bottom: 0px;
  }
}
.kyc-verification-flow .card-box .kyc-upload-row .kyc-upload-card {
  background: #fff;
  border: 1px solid rgba(142, 130, 164, 0.3019607843);
  border-radius: 10px;
  max-width: 343px;
  width: 100%;
  height: 204px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  cursor: pointer;
  position: relative;
  padding: 16px;
}
@media only screen and (max-width: 575px) {
  .kyc-verification-flow .card-box .kyc-upload-row .kyc-upload-card {
    height: 180px;
    max-width: 100%;
  }
}
.kyc-verification-flow .card-box .kyc-upload-row .kyc-upload-icon {
  cursor: pointer;
  padding: 56px 0;
  position: absolute;
  inset: 0;
  text-align: center;
}
@media only screen and (max-width: 575px) {
  .kyc-verification-flow .card-box .kyc-upload-row .kyc-upload-icon {
    padding: 32px 0;
  }
}
.kyc-verification-flow .card-box .kyc-upload-row .kyc-upload-label {
  color: #21094a;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(16px + 2 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  font-weight: 500;
  text-align: center;
  margin-top: auto;
}
.kyc-verification-flow .card-box .kyc-upload-row .kyc-upload-label strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .kyc-verification-flow .card-box .kyc-upload-row .kyc-upload-label {
    font-size: 16px;
  }
}
@media screen and (min-width: 1440.5px) {
  .kyc-verification-flow .card-box .kyc-upload-row .kyc-upload-label {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .kyc-verification-flow .card-box .kyc-upload-row .kyc-upload-label {
    font-size: 16px;
  }
}
.kyc-verification-flow .card-box .kyc-upload-row .kyc-security-card {
  background: #fff;
  border: 1px solid #f1eefd;
  border-radius: 16px;
  max-width: 443px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  padding: 16px;
}
@media only screen and (max-width: 575px) {
  .kyc-verification-flow .card-box .kyc-upload-row .kyc-security-card {
    max-width: 100%;
  }
}
.kyc-verification-flow .card-box .kyc-upload-row .kyc-security-content {
  display: flex;
  flex-direction: column;
}
.kyc-verification-flow .card-box .kyc-upload-row .kyc-security-title {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #21094a;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(18px + 2 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  font-weight: 500;
  margin-bottom: 8px;
}
.kyc-verification-flow .card-box .kyc-upload-row .kyc-security-title strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .kyc-verification-flow .card-box .kyc-upload-row .kyc-security-title {
    font-size: 18px;
  }
}
@media screen and (min-width: 1440.5px) {
  .kyc-verification-flow .card-box .kyc-upload-row .kyc-security-title {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .kyc-verification-flow .card-box .kyc-upload-row .kyc-security-title {
    font-size: 18px;
  }
}
.kyc-verification-flow .card-box .kyc-upload-row .kyc-security-desc {
  color: #8e82a4;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-weight: 400;
}
.kyc-verification-flow .card-box .kyc-upload-row .kyc-security-desc strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .kyc-verification-flow .card-box .kyc-upload-row .kyc-security-desc {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .kyc-verification-flow .card-box .kyc-upload-row .kyc-security-desc {
    font-size: 16px;
  }
}
.kyc-verification-flow .card-box .kyc-upload-row .kyc-upload-preview {
  height: 100%;
  width: 100%;
  position: absolute;
  inset: 0;
  margin: 0;
}
.kyc-verification-flow .card-box .kyc-upload-row .kyc-upload-preview img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.kyc-verification-flow .card-box .btn.btn-primary.next-btn {
  min-width: 270px;
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .kyc-verification-flow .card-box .btn.btn-primary.next-btn {
    min-width: 100%;
    margin-top: 20px;
  }
}
.kyc-verification-flow .card-box .btn.btn-primary.upload-btn {
  min-width: 260px;
}
@media only screen and (max-width: 767px) {
  .kyc-verification-flow .card-box .btn.btn-primary.upload-btn {
    min-width: 232px;
  }
}
@media only screen and (max-width: 575px) {
  .kyc-verification-flow .card-box .btn.btn-primary.upload-btn {
    min-width: 100%;
  }
}
.kyc-verification-flow .card-box .term-condition-text {
  text-align: left;
}
.kyc-verification-flow .card-box .term-condition-text h5 {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(18px + 2 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  color: #21094a;
  font-weight: 500;
  line-height: 25px;
  margin-bottom: 14px;
}
.kyc-verification-flow .card-box .term-condition-text h5 strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .kyc-verification-flow .card-box .term-condition-text h5 {
    font-size: 18px;
  }
}
@media screen and (min-width: 1440.5px) {
  .kyc-verification-flow .card-box .term-condition-text h5 {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .kyc-verification-flow .card-box .term-condition-text h5 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .kyc-verification-flow .card-box .term-condition-text h5 {
    font-size: 16px;
    margin-bottom: 8px;
  }
}
.kyc-verification-flow .card-box .term-condition-text p {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2px;
  color: #534c60;
  font-weight: 400;
  line-height: 25px;
  margin-bottom: 30px;
}
.kyc-verification-flow .card-box .term-condition-text p strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .kyc-verification-flow .card-box .term-condition-text p {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .kyc-verification-flow .card-box .term-condition-text p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .kyc-verification-flow .card-box .term-condition-text p {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 24px;
  }
}
.kyc-verification-flow .card-box .current-address-text {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(18px + 2 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  color: #21094a;
  font-weight: 500;
  line-height: 25px;
  margin-bottom: 30px;
}
.kyc-verification-flow .card-box .current-address-text strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .kyc-verification-flow .card-box .current-address-text {
    font-size: 18px;
  }
}
@media screen and (min-width: 1440.5px) {
  .kyc-verification-flow .card-box .current-address-text {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .kyc-verification-flow .card-box .current-address-text {
    font-size: 18px;
  }
}
@media only screen and (max-width: 991px) {
  .kyc-verification-flow .card-box .current-address-text {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .kyc-verification-flow .card-box .current-address-text {
    font-size: 16px;
    margin-bottom: 16px;
  }
}
.kyc-verification-flow .card-box .address-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 60px;
       column-gap: 60px;
  row-gap: 24px;
  margin-bottom: 12px;
  max-width: 991px;
}
@media only screen and (max-width: 1199px) {
  .kyc-verification-flow .card-box .address-grid {
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .kyc-verification-flow .card-box .address-grid {
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}
.kyc-verification-flow .card-box .address-grid .normal-form {
  margin-bottom: 0px;
}
.kyc-verification-flow .card-box .residential-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 28px 24px;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .kyc-verification-flow .card-box .residential-summary-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .kyc-verification-flow .card-box .residential-summary-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 16px;
  }
}
.kyc-verification-flow .card-box .residential-summary-grid .residential-summary-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  padding: 21px 24px;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .kyc-verification-flow .card-box .residential-summary-grid .residential-summary-card {
    padding: 16px;
  }
}
.kyc-verification-flow .card-box .residential-summary-grid .residential-summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #21094a;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(16px + 2 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  font-weight: 500;
  margin-bottom: 20px;
}
.kyc-verification-flow .card-box .residential-summary-grid .residential-summary-header strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .kyc-verification-flow .card-box .residential-summary-grid .residential-summary-header {
    font-size: 16px;
  }
}
@media screen and (min-width: 1440.5px) {
  .kyc-verification-flow .card-box .residential-summary-grid .residential-summary-header {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .kyc-verification-flow .card-box .residential-summary-grid .residential-summary-header {
    font-size: 16px;
  }
}
.kyc-verification-flow .card-box .residential-summary-grid .residential-edit-link {
  color: #731eff;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
  border-bottom: 2px solid #6c2bd9;
}
.kyc-verification-flow .card-box .residential-summary-grid .residential-edit-link strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .kyc-verification-flow .card-box .residential-summary-grid .residential-edit-link {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .kyc-verification-flow .card-box .residential-summary-grid .residential-edit-link {
    font-size: 16px;
  }
}
.kyc-verification-flow .card-box .residential-summary-grid .residential-summary-content {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2px;
  color: #8e82a4;
  font-weight: 400;
}
.kyc-verification-flow .card-box .residential-summary-grid .residential-summary-content strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .kyc-verification-flow .card-box .residential-summary-grid .residential-summary-content {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .kyc-verification-flow .card-box .residential-summary-grid .residential-summary-content {
    font-size: 16px;
  }
}
.kyc-verification-flow .card-box .residential-summary-grid .residential-summary-content .residential-summary-wrap {
  display: flex;
  gap: 50px;
}
@media (max-width: 767px) {
  .kyc-verification-flow .card-box .residential-summary-grid .residential-summary-content .residential-summary-wrap {
    gap: 30px;
  }
}
@media (max-width: 467px) {
  .kyc-verification-flow .card-box .residential-summary-grid .residential-summary-content .residential-summary-wrap {
    gap: 20px;
  }
}
.kyc-verification-flow .card-box .residential-summary-grid .residential-summary-label {
  font-size: 13px;
  color: #8e82a4;
  font-weight: 500;
}
.kyc-verification-flow .card-box .residential-summary-grid .residential-summary-value {
  font-size: 15px;
  color: #534c60;
  font-weight: 500;
}
@media (max-width: 767px) {
  .kyc-verification-flow .card-box .address-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.normal-form {
  margin-bottom: 20px;
}
.normal-form label {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2px;
  color: #21094a;
  font-weight: 500;
  margin-bottom: 8px;
}
.normal-form label strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .normal-form label {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .normal-form label {
    font-size: 16px;
  }
}
.normal-form label span {
  color: #ff3b30;
}
.normal-form .form-control {
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid rgba(142, 130, 164, 0.3019607843);
  padding: 16px;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 0 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2%;
  color: #21094a;
  height: 54px;
}
.normal-form .form-control strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .normal-form .form-control {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .normal-form .form-control {
    font-size: 14px;
  }
}
@media only screen and (max-width: 991px) {
  .normal-form .form-control {
    padding: 12px 16px;
    height: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .normal-form .form-control {
    padding: 10px 16px;
    height: 44px;
  }
}
.normal-form .form-control:focus {
  border-color: #731eff;
  box-shadow: inherit;
}
.normal-form .search-input-group {
  position: relative;
  display: flex;
  align-items: center;
}
.normal-form .search-input-group .search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
}
.normal-form .search-input-group .form-control.search-input {
  padding-left: 40px;
}

.scam-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom, #fff, #f9fafb);
}
.scam-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.scam-section .section-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1a0b2e;
  margin-bottom: 1rem;
}
.scam-section .section-header p {
  font-size: 1.25rem;
  color: #4b5563;
  max-width: 48rem;
  margin: 0 auto;
}
.scam-section .scam-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) {
  .scam-section .scam-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .scam-section .scam-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.scam-section .scam-card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  height: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
}
.scam-section .scam-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #fecaca;
  transform: scale(1.02) translateY(-8px);
}
@media (max-width: 991px) {
  .scam-section .scam-card:hover {
    transform: none;
  }
}
.scam-section .scam-card .icon-wrapper {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.scam-section .scam-card .icon-wrapper .icon {
  width: 2rem;
  height: 2rem;
  color: #fff;
}
.scam-section .scam-card:hover .icon-wrapper {
  transform: scale(1.1);
}
@media (max-width: 991px) {
  .scam-section .scam-card:hover .icon-wrapper {
    transform: none;
  }
}
.scam-section .scam-card .purple {
  background: linear-gradient(to bottom right, #a855f7, #6366f1);
}
.scam-section .scam-card .indigo {
  background: linear-gradient(to bottom right, #6366f1, #3b82f6);
}
.scam-section .scam-card .blue {
  background: linear-gradient(to bottom right, #3b82f6, #06b6d4);
}
.scam-section .scam-card .teal {
  background: linear-gradient(to bottom right, #06b6d4, #14b8a6);
}
.scam-section .scam-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a0b2e;
  margin-bottom: 0.5rem;
}
.scam-section .scam-card p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #4b5563;
}

.report-scam {
  padding: 5rem 1.25rem;
  /* ~py-20 px-4 */
  background: #ffffff;
  color: #1a0b2e;
}
.report-scam__intro {
  text-align: center;
  margin-bottom: 4rem;
}
.report-scam__intro .report-scam__title, .report-scam__intro .report-scam__subtitle {
  margin: 0;
}
.report-scam__title {
  font-size: 2.25rem;
  /* text-4xl */
  line-height: 1.1;
  font-weight: 700;
  color: #1a0b2e;
  margin-bottom: 0.5rem;
}
.report-scam__subtitle {
  font-size: 1.125rem;
  /* text-xl */
  color: #6b7280;
  /* gray-600 */
}
.report-scam__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1024px;
  /* ~max-w-5xl */
  margin: 0 auto;
}
@media (min-width: 768px) {
  .report-scam__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.report-scam__card {
  /* placeholder - main styles below via .card */
}

/* Generic card component for items */
.card {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
  background: #ffffff;
  border: 1px solid #eef2f7;
  border-radius: 0.75rem;
  padding: 1.25rem;
  box-shadow: 0 6px 20px rgba(17, 24, 39, 0.04);
  transition: box-shadow 180ms ease, transform 180ms ease;
  overflow: hidden;
}
.card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.card__meta {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.card__number {
  min-width: 40px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  /* gray-100 */
  color: #1a0b2e;
  font-weight: 700;
  border-radius: 10px;
  font-size: 1rem;
}
.card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.card__icon .icon-svg {
  width: 20px;
  height: 20px;
  stroke: #ffffff;
}
.card__body {
  flex: 1;
}
.card__title {
  margin: 0 0 0.375rem 0;
  font-size: 1.0625rem;
  /* ~text-lg */
  font-weight: 700;
  color: #1a0b2e;
}
.card__desc {
  margin: 0;
  color: #6b7280;
  /* gray-600 */
  line-height: 1.5;
  font-size: 0.95rem;
}
.card__contacts {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.card .contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
}
.card .contact__icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  color: #6b2fff;
  /* matches original purple for icons */
}
.card .contact__link {
  color: #6b2fff;
  text-decoration: none;
}
.card .contact__link:hover {
  text-decoration: underline;
}

/* Color variants for card icons (modifiers) */
.card--purple .card__icon {
  background: #a855f7;
}

.card--indigo .card__icon {
  background: rgb(99, 102, 241);
}

.card--blue .card__icon {
  background: rgb(59, 130, 246);
}

.card--violet {
  /* same as purple if preferred */
}
.card--violet .card__icon {
  background: rgb(107, 47, 255);
}

.card--cyan .card__icon {
  background: rgb(6, 182, 212);
}

.card--orange .card__icon {
  background: rgb(249, 115, 22);
}

/* small tweak for very small screens so card text wraps nicely */
@media (max-width: 420px) {
  .card {
    padding: 1rem;
    gap: 0.75rem;
  }
  .card__number {
    min-width: 36px;
    min-height: 36px;
    font-size: 0.95rem;
  }
  .card__icon {
    width: 36px;
    height: 36px;
  }
  .card__icon .icon-svg {
    width: 18px;
    height: 18px;
  }
}
.report-scam-section {
  padding-block: 5rem;
  background-color: #f5f3ff;
}
@media (max-width: 1023px) {
  .report-scam-section .container {
    padding-inline: 1.5rem;
  }
}
@media (max-width: 639px) {
  .report-scam-section .container {
    padding-inline: 1rem;
  }
}
.report-scam-section .container .report-card {
  border-radius: 0.5rem;
  color: var(--card-foreground);
  background-color: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border: 2px solid rgba(107, 47, 255, 0.2);
  padding: 3rem;
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .report-scam-section .container .report-card {
    padding: 2rem;
  }
}
.report-scam-section .container .report-card .heading-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.report-scam-section .container .report-card .heading-wrapper .icon-box {
  width: 4rem;
  height: 4rem;
  background-color: #6b2fff;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.report-scam-section .container .report-card .heading-wrapper .icon-box .icon {
  width: 2rem;
  height: 2rem;
  color: #fff;
}
.report-scam-section .container .report-card .heading-wrapper .title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1a0b2e;
}
.report-scam-section .container .report-card .description {
  font-size: 1.125rem;
  color: #4b5563;
  margin-bottom: 1.5rem;
}
.report-scam-section .container .report-card .steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.report-scam-section .container .report-card .steps .step {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.report-scam-section .container .report-card .steps .step .check-icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: #6b2fff;
}
.report-scam-section .container .report-card .steps .step p {
  font-size: 1.125rem;
  color: #374151;
}

.tips-section {
  padding-block: 5rem;
  background-color: #fff;
}
.tips-section .container {
  max-width: 64rem;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .tips-section .container {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .tips-section .container {
    padding-inline: 2rem;
  }
}
.tips-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.tips-section .section-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1a0b2e;
  margin-bottom: 1rem;
}
.tips-section .section-header p {
  font-size: 1.25rem;
  color: #4b5563;
}
.tips-section .tips-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .tips-section .tips-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.tips-section .tip-card {
  background-color: #fff;
  border: 1px solid #e5e7eb;
  color: #1f2937;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: box-shadow 0.3s ease;
}
.tips-section .tip-card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.tips-section .tip-card .tip-content {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.tips-section .tip-card .icon-box {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background-color: #dcfce7;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tips-section .tip-card .icon-box .icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #16a34a;
}
.tips-section .tip-card p {
  color: #374151;
  line-height: 1.625;
}

.report-scam-modal {
  position: fixed;
  inset: 0;
  z-index: 1055;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  display: none;
  overflow-y: auto;
}
.report-scam-modal.active {
  display: flex;
}
.report-scam-modal.active .report-scam-modal__overlay {
  opacity: 1;
  visibility: visible;
}
.report-scam-modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.report-scam-modal.scam-main .report-scam-modal__overlay {
  position: fixed !important;
}
.report-scam-modal__content {
  position: relative;
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  max-width: 700px;
  width: 100%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  z-index: 2;
  animation: fadeIn 0.3s ease-out;
  margin: auto;
}
@media (max-width: 991px) {
  .report-scam-modal__content {
    overflow: auto;
    max-height: 600px;
  }
}
.report-scam-modal__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.report-scam-modal__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: #f3e8ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b2fff;
}
.report-scam-modal__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}
.report-scam-modal__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a0b2e;
}
.report-scam-modal__subtitle {
  color: #666;
  margin-bottom: 1.5rem;
}

.report-scam-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.report-scam-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .report-scam-form .form-row {
    grid-template-columns: 1fr;
  }
}
.report-scam-form .form-group {
  display: flex;
  flex-direction: column;
}
.report-scam-form .form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 0.5rem;
}
.report-scam-form .form-group .input-wrapper {
  position: relative;
}
.report-scam-form .form-group .input-wrapper .icon {
  position: absolute;
  top: 50%;
  left: 0.75rem;
  transform: translateY(-50%);
  color: #888;
  font-size: 1rem;
  display: flex;
}
.report-scam-form .form-group .input-wrapper input {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  padding: 0.75rem 0.75rem 0.75rem 2.25rem;
  font-size: 1rem;
  outline: none;
  transition: 0.2s ease;
}
.report-scam-form .form-group .input-wrapper input:focus {
  border-color: #6b2fff;
  box-shadow: 0 0 0 3px rgba(107, 47, 255, 0.15);
}
.report-scam-form .form-group textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  padding: 0.75rem 0.75rem 0.75rem 2.25rem;
  font-size: 1rem;
  outline: none;
  transition: 0.2s ease;
}
.report-scam-form .form-group textarea:focus {
  border-color: #6b2fff;
  box-shadow: 0 0 0 3px rgba(107, 47, 255, 0.15);
}
.report-scam-form .form-group textarea {
  padding-left: 0.75rem;
  resize: none;
}
.report-scam-form .form-group .helper-text {
  font-size: 0.8rem;
  color: #888;
  margin-top: 0.25rem;
}
.report-scam-form.scam-inner .form-group .input-wrapper input {
  padding-left: 40px !important;
}
.report-scam-form.scam-inner .form-group .input-wrapper input[type=date]::-webkit-inner-spin-button,
.report-scam-form.scam-inner .form-group .input-wrapper input[type=date]::-webkit-calendar-picker-indicator {
  display: block !important;
  -webkit-appearance: auto !important;
}
.report-scam-form .alert-box {
  display: flex;
  gap: 1rem;
  background: #fff8e5;
  border-left: 4px solid rgb(250, 204, 21);
  padding: 1rem;
}
.report-scam-form .alert-box .alert-text {
  font-size: 0.9rem;
  color: rgb(133, 77, 14);
}
.report-scam-form .alert-box .alert-text .alert-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.report-scam-form .form-actions {
  display: flex;
  gap: 1rem;
}
.report-scam-form .form-actions .btn {
  flex: 1;
  height: 3rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s ease;
}
.report-scam-form .form-actions .btn.btn-outline {
  border: 1px solid #ccc;
  background: #fff;
  color: #333;
}
.report-scam-form .form-actions .btn.btn-outline:hover {
  background: #f5f5f5;
}
.report-scam-form .form-actions .btn.btn-primary {
  background: #6b2fff;
  color: #fff;
  border: none;
}
.report-scam-form .form-actions .btn.btn-primary:hover {
  background: #5a24e6;
}
.report-scam-form .form-actions .btn.btn-primary svg {
  margin-left: 8px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.report-success-modal {
  position: fixed;
  inset: 0;
  z-index: 1060;
  display: none;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding: 1rem;
}
.report-success-modal::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.report-success-modal.active {
  display: flex;
}
.report-success-modal.active::before {
  opacity: 1;
  visibility: visible;
}
.report-success-modal .report-success {
  z-index: 2;
  margin: auto;
  animation: fadeIn 0.3s ease-out;
}

.report-success {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  max-width: 640px;
  width: 100%;
  margin: 32px auto;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  text-align: center;
}
.report-success .success-content {
  padding: 32px 0;
}
.report-success .success-icon {
  width: 80px;
  height: 80px;
  background: #dcfce7;
  border-radius: 50%;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.report-success .success-icon .check-icon {
  width: 40px;
  height: 40px;
  color: #16a34a;
}
.report-success h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1a0b2e;
  margin-bottom: 16px;
}
.report-success .message {
  font-size: 16px;
  color: #4b5563;
  margin-bottom: 16px;
  line-height: 1.6;
}
.report-success .reference {
  font-size: 14px;
  color: #6b7280;
}

body.modal-open-c {
  overflow: hidden;
}

.faq-container {
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
  padding: 4rem 1rem;
}
@media only screen and (max-width: 1024px) {
  .faq-container {
    padding: 0;
    max-width: 100%;
    width: 100%;
  }
}
.faq-container.py-100 {
  padding-left: 12px;
  padding-right: 12px;
}

.faq-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1024px) {
  .faq-buttons {
    margin-bottom: 20px;
  }
}

.faq-button {
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  transition: all 0.3s ease;
  background-color: white;
  color: #374151;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: none;
  cursor: pointer;
  font-size: 16px;
  line-height: 24px;
}
@media only screen and (max-width: 767px) {
  .faq-button {
    font-size: 14px;
    line-height: 18px;
  }
}

.active-button {
  background-color: #6b2fff;
  color: white;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}

.faq-list {
  margin-top: 30px;
}

.faq-item {
  margin-bottom: 15px;
  cursor: pointer;
}
.faq-item:hover {
  background-color: #f9fafb;
  transition: background-color 0.2s ease-in-out;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
}
.faq-item[data-category=getting-started] {
  display: block;
}

.faq-inner-all {
  border-radius: 0.5rem;
  background-color: #ffffff;
  color: #111827;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
  cursor: pointer;
  border: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  overflow: hidden;
  font-size: 1.125rem;
  font-weight: 600;
  padding-right: 1rem;
  border-radius: 0.5rem;
  border: none;
  background-color: #ffffff;
  color: #111827;
  box-shadow: none;
  transition: box-shadow 0.3s ease;
}
.faq-question.active + .faq-answer {
  display: block;
  padding: 0 1.5rem 1.5rem;
  color: #374151;
  line-height: 1.625;
}
.faq-question.active .faq-icon {
  transform: rotate(180deg);
}
.faq-question:hover {
  background-color: rgb(249, 250, 251);
}
@media only screen and (max-width: 1024px) {
  .faq-question {
    padding: 10px;
    font-size: 14px;
    line-height: 18px;
  }
  .faq-question.active + .faq-answer {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.faq-answer {
  display: none;
}
.faq-answer p,
.faq-answer a {
  color: #374151;
  line-height: 1.625;
  white-space: normal;
  margin: 0;
}
.faq-answer p {
  padding: 0;
}
@media only screen and (max-width: 1024px) {
  .faq-answer p {
    font-size: 16px;
    line-height: 22px;
  }
}

.faq-icon {
  width: 24px;
  height: 24px;
  color: #6b2fff;
}

.user-listing-al-cls {
  margin-bottom: 0;
  list-style: none;
  padding-left: 15px;
}
.user-listing-al-cls li {
  margin-bottom: 13px;
  color: #374151;
  line-height: 1.625;
}

.all-for-span-cls-adding {
  color: rgb(107, 47, 255);
  padding-right: 5px;
}

.flexing-cls-adding {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.ask-question {
  background: linear-gradient(135deg, #6b2fff, #5a24e6);
  border-radius: 0.5rem;
  color: white;
  border: none;
  padding: 2rem;
  text-align: center;
  margin-top: 48px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
}
.ask-question .ask-question-container {
  display: flex;
  align-items: center;
  text-align: left;
  justify-content: space-between;
  padding: 18px 0;
}
@media only screen and (max-width: 1024px) {
  .ask-question .ask-question-container {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}
.ask-question .ask-question-text h3 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .ask-question .ask-question-text h3 {
    font-size: 18px;
    line-height: 22px;
  }
}
.ask-question .ask-question-text p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}
.ask-question .ask-question-button {
  display: inline-flex;
  border: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  outline: none;
  padding: 1.5rem 2rem;
  font-size: 1.125rem;
  height: 2.5rem;
  background-color: white;
  color: #6b2fff;
  border-radius: 9999px;
  font-weight: 600;
  white-space: nowrap;
}
.ask-question .ask-question-button:hover {
  background-color: #f0f0f0;
}
@media only screen and (max-width: 767px) {
  .ask-question .ask-question-button {
    font-size: 16px;
    line-height: 20px;
  }
}
.ask-question .svg-cls-adding {
  width: 3rem;
  height: 3rem;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media only screen and (max-width: 1024px) {
  .ask-question {
    padding: 1rem;
    margin-top: 30px;
  }
}

.report-scam-modal {
  position: fixed;
  inset: 0;
  z-index: 1055;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  display: none;
}
.report-scam-modal.active {
  display: flex;
}
.report-scam-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}
.report-scam-modal__content {
  position: relative;
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  max-width: 700px;
  width: 100%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  z-index: 10;
  animation: fadeIn 0.3s ease-out;
}
@media only screen and (max-width: 1024px) {
  .report-scam-modal__content {
    padding: 1rem;
  }
}
.report-scam-modal__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.report-scam-modal__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: #f3e8ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b2fff;
}
.report-scam-modal__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}
.report-scam-modal__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a0b2e;
}
.report-scam-modal__subtitle {
  color: #666;
  margin-bottom: 1.5rem;
}
.report-scam-modal .report-scam-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.report-scam-modal .report-scam-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.report-scam-modal .report-scam-form .form-group {
  display: flex;
  flex-direction: column;
}
.report-scam-modal .report-scam-form .form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 0.5rem;
}
.report-scam-modal .report-scam-form .form-group .input-wrapper {
  position: relative;
  width: 100%;
  display: flex;
}
.report-scam-modal .report-scam-form .form-group .input-wrapper .icon {
  position: absolute;
  top: 50%;
  left: 0.75rem;
  transform: translateY(-50%);
  color: #888;
  font-size: 1rem;
  display: flex;
}
.report-scam-modal .report-scam-form .form-group .input-wrapper input {
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  padding: 12px;
  font-size: 1rem;
  outline: none;
  transition: 0.2s ease;
  flex: 1;
}
.report-scam-modal .report-scam-form .form-group .input-wrapper input:focus {
  border-color: #6b2fff;
  box-shadow: 0 0 0 3px rgba(107, 47, 255, 0.15);
}
.report-scam-modal .report-scam-form .form-group textarea {
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  padding: 0.75rem;
  font-size: 1rem;
  outline: none;
  transition: 0.2s ease;
  resize: none;
}
.report-scam-modal .report-scam-form .form-group textarea:focus {
  border-color: #6b2fff;
  box-shadow: 0 0 0 3px rgba(107, 47, 255, 0.15);
}
.report-scam-modal .report-scam-form .form-group .helper-text {
  font-size: 0.8rem;
  color: #888;
  margin-top: 0.25rem;
}
.report-scam-modal .report-scam-form .alert-box {
  display: flex;
  gap: 1rem;
  background: #fff8e5;
  border-left: 4px solid rgb(250, 204, 21);
  padding: 1rem;
}
.report-scam-modal .report-scam-form .alert-box .alert-text {
  font-size: 0.9rem;
  color: rgb(133, 77, 14);
}
.report-scam-modal .report-scam-form .alert-box .alert-text .alert-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.report-scam-modal .report-scam-form .form-actions {
  display: flex;
  gap: 1rem;
}
.report-scam-modal .report-scam-form .form-actions .btn {
  flex: 1;
  height: 3rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s ease;
}
.report-scam-modal .report-scam-form .form-actions .btn.btn-outline {
  border: 1px solid #ccc;
  background: #fff;
  color: #333;
}
.report-scam-modal .report-scam-form .form-actions .btn.btn-outline:hover {
  background: #f5f5f5;
}
.report-scam-modal .report-scam-form .form-actions .btn.btn-primary {
  background: #6b2fff;
  color: #fff;
  border: none;
}
.report-scam-modal .report-scam-form .form-actions .btn.btn-primary:hover {
  background: #5a24e6;
}
.report-scam-modal .report-scam-form .form-actions .btn.btn-primary svg {
  margin-left: 8px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* Reward Section */
.reward-section {
  background: linear-gradient(to bottom, #ffffff, #f5f3ff, #ffffff);
  position: relative;
  overflow: hidden;
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.reward-section .reward-background {
  position: absolute;
  inset: 0;
  opacity: 0.3;
}
.reward-section .reward-background-circle-1 {
  position: absolute;
  top: 25%;
  left: 2.5rem;
  width: 16rem;
  height: 16rem;
  background: rgba(107, 47, 255, 0.1);
  border-radius: 50%;
  filter: blur(48px);
}
.reward-section .reward-background-circle-2 {
  position: absolute;
  bottom: 25%;
  right: 2.5rem;
  width: 20rem;
  height: 20rem;
  background: rgba(147, 51, 234, 0.1);
  border-radius: 50%;
  filter: blur(48px);
}
.reward-section .container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 10;
  /* Desktop Steps */
  /* Mobile Steps */
}
@media (min-width: 640px) {
  .reward-section .container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .reward-section .container {
    padding: 0 2rem;
  }
}
.reward-section .container .reward-header {
  text-align: center;
  margin-bottom: 80px;
  opacity: 1;
  transform: none;
}
@media (max-width: 1280px) {
  .reward-section .container .reward-header {
    margin-bottom: 70px;
  }
}
@media (max-width: 1199px) {
  .reward-section .container .reward-header {
    margin-bottom: 60px;
  }
}
@media (max-width: 991px) {
  .reward-section .container .reward-header {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .reward-section .container .reward-header {
    margin-bottom: 40px;
  }
}
@media (max-width: 575px) {
  .reward-section .container .reward-header {
    margin-bottom: 30px;
  }
}
.reward-section .container .reward-header .reward-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(107, 47, 255, 0.1);
  color: #6B2FFF;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.reward-section .container .reward-header .reward-badge .reward-badge-icon {
  width: 1rem;
  height: 1rem;
}
.reward-section .container .reward-header .reward-title {
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 2.25rem;
  font-weight: 700;
  color: #1a0b2e;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .reward-section .container .reward-header .reward-title {
    font-size: 3rem;
  }
}
.reward-section .container .reward-header .reward-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 42rem;
  margin: 0 auto;
}
.reward-section .container .reward-steps-desktop {
  display: none;
  position: relative;
}
@media (min-width: 1024px) {
  .reward-section .container .reward-steps-desktop {
    display: block;
  }
}
.reward-section .container .reward-steps-desktop .reward-steps-path {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.reward-section .container .reward-steps-desktop .reward-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.reward-section .container .reward-steps-desktop .reward-steps-grid .reward-step {
  position: relative;
  display: flex;
  /* Step-specific color variations */
}
.reward-section .container .reward-steps-desktop .reward-steps-grid .reward-step .reward-step-arrow {
  position: absolute;
  top: 6rem;
  right: -2rem;
  z-index: 20;
  display: none;
}
@media (min-width: 1024px) {
  .reward-section .container .reward-steps-desktop .reward-steps-grid .reward-step .reward-step-arrow {
    display: block;
  }
}
.reward-section .container .reward-steps-desktop .reward-steps-grid .reward-step .reward-step-arrow .reward-step-arrow-icon {
  width: 3rem;
  height: 3rem;
  color: #6B2FFF;
}
.reward-section .container .reward-steps-desktop .reward-steps-grid .reward-step .reward-step-content {
  width: 100%;
  transform: none;
}
.reward-section .container .reward-steps-desktop .reward-steps-grid .reward-step .reward-step-content .reward-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transition: all 0.3s;
  height: 100%;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.reward-section .container .reward-steps-desktop .reward-steps-grid .reward-step .reward-step-content .reward-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border-color: rgba(107, 47, 255, 0.3);
  transform: scale(1.05) translateY(-10px);
}
.reward-section .container .reward-steps-desktop .reward-steps-grid .reward-step .reward-step-content .reward-card:hover .reward-card-overlay {
  opacity: 0.05;
}
.reward-section .container .reward-steps-desktop .reward-steps-grid .reward-step .reward-step-content .reward-card:hover .reward-icon-glow {
  opacity: 0.7;
}
.reward-section .container .reward-steps-desktop .reward-steps-grid .reward-step .reward-step-content .reward-card .reward-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, #6B2FFF, #8b5cf6);
  opacity: 0;
  transition: opacity 0.3s;
}
.reward-section .container .reward-steps-desktop .reward-steps-grid .reward-step .reward-step-content .reward-card .reward-card-number {
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(to bottom right, #6B2FFF, #9333EA);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  z-index: 10;
}
.reward-section .container .reward-steps-desktop .reward-steps-grid .reward-step .reward-step-content .reward-card .reward-icon-container {
  width: 6rem;
  height: 6rem;
  background-color: rgb(107, 47, 255);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  position: relative;
}
.reward-section .container .reward-steps-desktop .reward-steps-grid .reward-step .reward-step-content .reward-card .reward-icon-container:hover {
  display: inline-flex;
  animation: vibrate 0.5s ease-in-out 1; /* Runs once */
  animation-iteration-count: 1; /* Ensures only 1 play */
}
.reward-section .container .reward-steps-desktop .reward-steps-grid .reward-step .reward-step-content .reward-card .reward-icon-container .reward-icon {
  width: 3rem;
  height: 3rem;
  color: white;
}
.reward-section .container .reward-steps-desktop .reward-steps-grid .reward-step .reward-step-content .reward-card .reward-icon-container .reward-icon-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, #6B2FFF, #8b5cf6);
  border-radius: 1rem;
  filter: blur(24px);
  opacity: 0.5;
  transition: opacity 0.3s;
}
.reward-section .container .reward-steps-desktop .reward-steps-grid .reward-step .reward-step-content .reward-card .reward-step-title {
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a0b2e;
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
  z-index: 10;
}
.reward-section .container .reward-steps-desktop .reward-steps-grid .reward-step .reward-step-content .reward-card .reward-step-description {
  color: #6b7280;
  line-height: 1.625;
  text-align: center;
  position: relative;
  z-index: 10;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reward-section .container .reward-steps-desktop .reward-steps-grid .reward-step .reward-step-content .reward-card:nth-child(2) .reward-icon-container {
  background-color: rgba(107, 47, 255, 0.8);
}
.reward-section .container .reward-steps-desktop .reward-steps-grid .reward-step .reward-step-content .reward-card:nth-child(3) .reward-icon-container {
  background-color: rgba(107, 47, 255, 0.5);
}
.reward-section .container .reward-steps-desktop .reward-steps-grid .reward-step .reward-step-content .reward-card:nth-child(4) .reward-icon-container {
  background-color: rgba(107, 47, 255, 0.3);
}
.reward-section .container .reward-steps-desktop .reward-steps-grid .reward-step.reward-step-2 .reward-icon-container {
  background-color: rgba(107, 47, 255, 0.8) !important;
}
.reward-section .container .reward-steps-desktop .reward-steps-grid .reward-step.reward-step-2 .reward-icon-glow,
.reward-section .container .reward-steps-desktop .reward-steps-grid .reward-step.reward-step-2 .reward-card-overlay {
  background: linear-gradient(to bottom right, #8b5cf6, #a78bfa);
}
.reward-section .container .reward-steps-desktop .reward-steps-grid .reward-step.reward-step-3 .reward-icon-container {
  background-color: rgba(107, 47, 255, 0.5) !important;
}
.reward-section .container .reward-steps-desktop .reward-steps-grid .reward-step.reward-step-3 .reward-icon-glow,
.reward-section .container .reward-steps-desktop .reward-steps-grid .reward-step.reward-step-3 .reward-card-overlay {
  background: linear-gradient(to bottom right, #a78bfa, #c4b5fd);
}
.reward-section .container .reward-steps-desktop .reward-steps-grid .reward-step.reward-step-4 .reward-icon-container {
  background-color: rgba(107, 47, 255, 0.3) !important;
}
.reward-section .container .reward-steps-desktop .reward-steps-grid .reward-step.reward-step-4 .reward-icon-glow,
.reward-section .container .reward-steps-desktop .reward-steps-grid .reward-step.reward-step-4 .reward-card-overlay {
  background: linear-gradient(to bottom right, #c4b5fd, #e9d5ff);
}
@keyframes vibrate {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(5deg);
  }
  75% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.reward-section .container .reward-steps-mobile {
  display: block;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .reward-section .container .reward-steps-mobile {
    display: none;
  }
}
.reward-section .container .reward-steps-mobile .reward-step-mobile {
  position: relative;
  /* Mobile step-specific colors */
}
.reward-section .container .reward-steps-mobile .reward-step-mobile .reward-card-mobile {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.reward-section .container .reward-steps-mobile .reward-step-mobile .reward-card-mobile:hover {
  border-color: rgba(107, 47, 255, 0.3);
}
.reward-section .container .reward-steps-mobile .reward-step-mobile .reward-card-mobile .reward-card-mobile-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.05;
}
.reward-section .container .reward-steps-mobile .reward-step-mobile .reward-card-mobile .reward-card-mobile-number {
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(to bottom right, #6B2FFF, #9333EA);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  z-index: 10;
}
.reward-section .container .reward-steps-mobile .reward-step-mobile .reward-card-mobile .reward-icon-container-mobile {
  width: 6rem;
  height: 6rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.reward-section .container .reward-steps-mobile .reward-step-mobile .reward-card-mobile .reward-icon-container-mobile .reward-icon {
  width: 3rem;
  height: 3rem;
  color: white;
}
.reward-section .container .reward-steps-mobile .reward-step-mobile .reward-card-mobile .reward-step-mobile-title {
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a0b2e;
  margin-bottom: 1rem;
  text-align: center;
}
.reward-section .container .reward-steps-mobile .reward-step-mobile .reward-card-mobile .reward-step-mobile-description {
  color: #6b7280;
  line-height: 1.625;
  text-align: center;
}
.reward-section .container .reward-steps-mobile .reward-step-mobile .reward-step-arrow-mobile {
  display: flex;
  justify-content: center;
  margin: 1.5rem 0;
  transform: translateY(8.74615px);
}
.reward-section .container .reward-steps-mobile .reward-step-mobile .reward-step-arrow-mobile .reward-step-arrow-circle {
  width: 3rem;
  height: 3rem;
  background: rgba(107, 47, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reward-section .container .reward-steps-mobile .reward-step-mobile .reward-step-arrow-mobile .reward-step-arrow-circle .reward-step-arrow-icon-mobile {
  width: 2rem;
  height: 2rem;
  color: #6B2FFF;
  transform: rotate(90deg);
}
.reward-section .container .reward-steps-mobile .reward-step-mobile.reward-step-mobile-1 .reward-icon-container-mobile {
  background: #6B2FFF;
}
.reward-section .container .reward-steps-mobile .reward-step-mobile.reward-step-mobile-1 .reward-card-mobile-overlay {
  background: linear-gradient(to bottom right, #6B2FFF, #8b5cf6);
}
.reward-section .container .reward-steps-mobile .reward-step-mobile.reward-step-mobile-2 .reward-icon-container-mobile {
  background: #8b5cf6;
}
.reward-section .container .reward-steps-mobile .reward-step-mobile.reward-step-mobile-2 .reward-card-mobile-overlay {
  background: linear-gradient(to bottom right, #8b5cf6, #a78bfa);
}
.reward-section .container .reward-steps-mobile .reward-step-mobile.reward-step-mobile-3 .reward-icon-container-mobile {
  background: #a78bfa;
}
.reward-section .container .reward-steps-mobile .reward-step-mobile.reward-step-mobile-3 .reward-card-mobile-overlay {
  background: linear-gradient(to bottom right, #a78bfa, #c4b5fd);
}
.reward-section .container .reward-steps-mobile .reward-step-mobile.reward-step-mobile-4 .reward-icon-container-mobile {
  background: #c4b5fd;
}
.reward-section .container .reward-steps-mobile .reward-step-mobile.reward-step-mobile-4 .reward-card-mobile-overlay {
  background: linear-gradient(to bottom right, #c4b5fd, #e9d5ff);
}

/* CSS */
.icon-move-fade {
  display: inline-block;
  /* tune duration, easing and delay as needed */
  animation: move-then-fade 3.2s cubic-bezier(0.2, 0.9, 0.2, 1) infinite;
  transform-origin: center;
  will-change: transform, opacity;
}

/* Keyframes: start hidden, fade in quickly, move while visible, then fade out */
@keyframes move-then-fade {
  0% {
    transform: translate3d(-30px, 0, 0) scale(0.95);
    opacity: 0;
  }
  /* quick fade-in so it doesn't pop */
  5% {
    transform: translate3d(-18px, 0, 0) scale(1);
    opacity: 1;
  }
  /* travel and stay visible */
  70% {
    transform: translate3d(0px, 0, 0) scale(1);
    opacity: 1;
  }
  /* subtle overshoot / return feel (optional) */
  85% {
    transform: translate3d(20px, 0, 0) scale(1);
    opacity: 0.2;
  }
  /* fade out before the loop resets */
  95% {
    transform: translate3d(30px, 0, 0) scale(0.98);
    opacity: 0;
  }
  100% {
    /* land off-screen and fully transparent so the restart is invisible */
    transform: translate3d(-30px, 0, 0) scale(0.95);
    opacity: 0;
  }
}
/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .icon-move-fade {
    animation: none;
    opacity: 1; /* keep visible if you prefer */
    transform: none;
  }
}
.promotions-section {
  background-color: #ffffff;
}
.promotions-section .promotions-container .promotions-header {
  text-align: center;
  margin-bottom: 64px;
  opacity: 1;
  transform: none;
}
@media (max-width: 1280px) {
  .promotions-section .promotions-container .promotions-header {
    margin-bottom: 54px;
  }
}
@media (max-width: 1199px) {
  .promotions-section .promotions-container .promotions-header {
    margin-bottom: 44px;
  }
}
@media (max-width: 991px) {
  .promotions-section .promotions-container .promotions-header {
    margin-bottom: 34px;
  }
}
@media (max-width: 767px) {
  .promotions-section .promotions-container .promotions-header {
    margin-bottom: 24px;
  }
}
.promotions-section .promotions-container .promotions-header .promotions-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1a0b2e;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .promotions-section .promotions-container .promotions-header .promotions-title {
    font-size: 3rem;
  }
}
.promotions-section .promotions-container .promotions-header .promotions-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
.promotions-section .promotions-container .promotions-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .promotions-section .promotions-container .promotions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .promotions-section .promotions-container .promotions-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.promotions-section .promotions-container .promotions-grid .promotion-card {
  background-color: #ffffff;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 2px solid #f3f4f6;
  position: relative;
  overflow: hidden;
}
.promotions-section .promotions-container .promotions-grid .promotion-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border-color: transparent;
}
.promotions-section .promotions-container .promotions-grid .promotion-card .card-hover-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.promotions-section .promotions-container .promotions-grid .promotion-card .card-hover-bg.card-hover-yellow {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
}
.promotions-section .promotions-container .promotions-grid .promotion-card .card-hover-bg.card-hover-green {
  background: linear-gradient(135deg, #34d399, #10b981);
}
.promotions-section .promotions-container .promotions-grid .promotion-card .card-hover-bg.card-hover-pink {
  background: linear-gradient(135deg, #f472b6, #f43f5e);
}
.promotions-section .promotions-container .promotions-grid .promotion-card .card-hover-bg.card-hover-blue {
  background: linear-gradient(135deg, #60a5fa, #6366f1);
}
.promotions-section .promotions-container .promotions-grid .promotion-card:hover .card-hover-bg {
  opacity: 0.1;
}
.promotions-section .promotions-container .promotions-grid .promotion-card .card-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.promotions-section .promotions-container .promotions-grid .promotion-card .card-icon.card-icon-yellow {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
}
.promotions-section .promotions-container .promotions-grid .promotion-card .card-icon.card-icon-green {
  background: linear-gradient(135deg, #34d399, #10b981);
}
.promotions-section .promotions-container .promotions-grid .promotion-card .card-icon.card-icon-pink {
  background: linear-gradient(135deg, #f472b6, #f43f5e);
}
.promotions-section .promotions-container .promotions-grid .promotion-card .card-icon.card-icon-blue {
  background: linear-gradient(135deg, #60a5fa, #6366f1);
}
.promotions-section .promotions-container .promotions-grid .promotion-card .card-icon .card-svg {
  width: 2rem;
  height: 2rem;
  color: #ffffff;
}
.promotions-section .promotions-container .promotions-grid .promotion-card:hover .card-icon {
  transform: scale(1.1);
}
.promotions-section .promotions-container .promotions-grid .promotion-card .card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a0b2e;
  margin-bottom: 0.75rem;
  text-align: center;
}
.promotions-section .promotions-container .promotions-grid .promotion-card .card-description {
  color: #6b7280;
  text-align: center;
  line-height: 1.625;
}

/* Ensure the container covers the section and sits behind content */
.inner-new-hero {
  position: relative;
  overflow: hidden;
}

.floating-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.7;
}

.floating-icons li {
  position: absolute;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0;
  animation: floatIcon 4s ease-in-out infinite;
}

/* Alternate SVGs */
.floating-icons li:nth-child(odd) {
  background-image: url("../images/gift.svg"); /* or use base64 SVG directly */
}

.floating-icons li:nth-child(even) {
  background-image: url("../images/heart.svg");
}

/* Sample positions and staggered timing */
.floating-icons li:nth-child(1) {
  left: 10%;
  top: 60%;
  animation-delay: 0s;
}

.floating-icons li:nth-child(2) {
  left: 50%;
  top: 70%;
  animation-delay: 1s;
}

.floating-icons li:nth-child(3) {
  left: 80%;
  top: 65%;
  animation-delay: 2s;
}

.floating-icons li:nth-child(4) {
  left: 30%;
  top: 75%;
  animation-delay: 3s;
}

/* Add more if needed */
@keyframes floatIcon {
  0% {
    transform: translateY(0) scale(0.6) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    transform: translateY(-40px) scale(1) rotate(360deg);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(0.6) rotate(0deg); /* reversed */
    opacity: 0;
  }
}/*# sourceMappingURL=admin.css.map */