@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --text-color: #1e1e1e;
  --text-color-faint: #444444;
  --text-color-deep: #000000;
  --sub-heading-color: #444444;
  --input-placeholder-color: #a3a3a3;
  --input-bg-color: #ffffff;
  --input-text-color: #121212;
  --input-disabled-bg-color: #e9e9e9;
  --input-disabled-text-color: #7d7d7d;
  --input-border-color: #e9e9e9;
  --input-border-color-2: #ebebeb;
  --select-bg-color: #ffffff;
  --select-option-bg-color: #f2f2f2;
  --header-user-bg: #ffffff;
  --header-user-menu-bg: #f7f7f7;
  --header-user-menu-hover-bg: #f1f1f1;
  --toastr-bg: #ffffff;
  --toastr-text-color: #444444;
  --pagination-bg: #fff;
  --link-color: #7d7d7d;
  --placeholder-bg: #f1f2f4;
  --placeholder-dark-bg: #f2e8d9;
  --gray-0: 255 255 255;
  --gray-50: 250 250 250;
  --gray-100: 241 241 241;
  --gray-200: 227 227 227;
  --gray-300: 223 223 223;
  --gray-400: 146 146 146;
  --gray-500: 102 102 102;
  --gray-600: 72 72 72;
  --gray-700: 51 51 51;
  --gray-800: 34 34 34;
  --gray-900: 17 17 17;
  --gray-1000: 0 0 0;
  --background: 255 255 255;
  --foreground: 72 72 72;
  --muted: 227 227 227;
  --muted-foreground: 146 146 146;
  --primary-dark: 29 88 216;
  --primary-light: 96 142 251;
  --primary-lighter: 215 227 254;
  --primary-default: 56 114 250;
  --primary-foreground: 255 255 255;
  --secondary-lighter: 221 227 255;
  --secondary-default: 78 54 245;
  --secondary-dark: 67 42 216;
  --secondary-foreground: 255 255 255;
  --red-lighter: 247 212 214;
  --red-default: 238 0 0;
  --red-dark: 197 0 0;
  --orange-lighter: 255 239 207;
  --orange-default: 245 166 35;
  --orange-dark: 171 87 10;
  --blue-lighter: 211 229 255;
  --blue-default: 0 112 243;
  --blue-dark: 7 97 209;
  --green-lighter: 185 249 207;
  --green-default: 17 168 73;
  --green-dark: 17 132 60;
}

/* Mixins */
/* End Mixins */
@font-face {
  font-family: "Tango Sans";
  src: url("../fonts/tangosans/TangoSans.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: "Tango Sans";
  src: url("../fonts/tangosans/TangoSans_Italic.ttf") format("truetype");
  font-style: italic;
  font-weight: normal;
}
@font-face {
  font-family: "Tango Sans";
  src: url("../fonts/tangosans/TangoSans_Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: bold;
}
@font-face {
  font-family: "Tango Sans";
  src: url("../fonts/tangosans/TangoSans_BoldItalic.ttf") format("truetype");
  font-style: italic;
  font-weight: bold;
}
/* Lato Font Import */
/* Inter */
/* poppins */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 50%;
}

body {
  font-size: 1.6rem;
  font-weight: 400;
  font-family: "Lato", sans-serif;
  line-height: 1.5;
  color: #1e1e1e;
  background-color: #f9fafb;
}

.container {
  max-width: 150rem;
  margin: auto;
  padding: 2rem 4rem 0rem;
}
@media (max-width: 550px) {
  .container {
    padding: 2rem 3rem 0rem;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 2rem 1.6rem 0rem;
  }
}

.heading-secondary {
  font-size: 2rem;
  font-family: "Tango Sans";
  font-weight: normal;
}

.sub-heading {
  font-size: 1.8rem;
  text-align: center;
  color: #5f606a;
}

.heading-primary {
  font-size: 2.8rem;
  font-family: "Tango Sans";
  font-weight: normal;
  text-transform: capitalize;
}
@media (max-width: 490px) {
  .heading-primary {
    font-size: 2.2rem;
  }
}

.heading-primary-light {
  font-size: 2.8rem;
  font-family: "Tango Sans";
  font-weight: normal;
  text-transform: capitalize;
  color: #e9e9e9;
}
@media (max-width: 490px) {
  .heading-primary-light {
    font-size: 2.2rem;
  }
}

.header-tabs {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
  border-bottom: 1px solid #e9e9e9;
}
.header-tabs__heading-text {
  color: #7d7d7d !important;
  padding: 0.8rem 1.6rem;
  cursor: pointer;
}
.header-tabs__heading-text--active {
  border-bottom: 2px solid #2dcb30;
  color: #2dcb30 !important;
}

.red-text {
  color: #dd3c3c;
}

.green-text {
  color: #25a727;
}

/* Form Controls */
textarea,
input {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  outline: none;
}
textarea::placeholder,
input::placeholder {
  color: var(--input-placeholder-color);
}

button {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  cursor: pointer;
  background-color: transparent;
  border: none;
}

a:link, a:visited {
  text-decoration: none;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
}

/* End Form Controls */
a:link, a:visited {
  text-decoration: none;
  color: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

.text-right {
  text-align: right;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100dvw;
  height: 100dvh;
  z-index: 999;
  background-color: rgba(31, 31, 31, 0.4);
  backdrop-filter: blur(3px);
  cursor: pointer;
}

.hidden {
  display: none !important;
}

.text-danger {
  color: #eb6237 !important;
}

.text-success {
  color: #2dcb30 !important;
}

.b-0 {
  border: none !important;
}

.br-xs {
  border-radius: 2px !important;
}

.p-0 {
  padding: 0 !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.fill-muted {
  fill: rgb(var(--muted) / 1);
}

.fill-muted\/70 {
  fill: rgb(var(--muted) / .7);
}

.fill-background {
  fill: rgb(var(--background) / 1);
}

/* Animations */
@keyframes toastr {
  0% {
    transform: translateX(42rem);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes anim-placeholder {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}
@keyframes anim-loader-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes anim-loader-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 0;
  }
  4.9% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 0;
  }
  5% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 1;
  }
  100% {
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    opacity: 0;
  }
}
/* End Animations */
/* Form Controls */
.button {
  flex-shrink: 0;
  width: 100%;
  height: 5.6rem;
  background-color: #dbdbdb;
  border-radius: 0.8rem;
  font-weight: 500;
  color: #a3a3a3;
  outline: 2px solid transparent;
  outline-offset: 2px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
.button:focus {
  outline: 2px solid #2dcb30;
  outline-offset: 2px;
}
.button--sm {
  width: 16rem;
  height: auto;
  padding: 1.4rem 0.8rem;
  border-radius: 0.6rem;
}
.button--active {
  background-color: #2dcb30;
  background-image: url(../imgs/btn-bg.png);
  color: #fff !important;
  transition: background-color 0.2s;
}
.button--active:disabled {
  background-color: #209226;
}

.paste-btn {
  flex-shrink: 0;
  align-self: center;
  margin-top: 1rem;
  max-width: 100%;
  height: 4.8rem;
  padding: 0 1.6rem;
  border-radius: 4px;
  border: 1px solid var(--input-border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: #2dcb30;
}
.paste-btn svg {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
}

/* End Form Controls */
.button--sm {
  width: 12rem;
  height: 4.8rem;
}
.button--secondary {
  background-color: #ffa800;
  color: #fff;
}
.button--dark {
  background-color: #1f1f1f;
  color: #fff;
}
.button--outline {
  background-color: transparent;
  border: 1.5px solid #f2f2f2;
  color: #1f1f1f;
}
.button--outline:hover {
  background-color: #f1f1f1;
}
.button--export, .button--restrict, .button--logout {
  width: 16rem;
}
@media (max-width: 550px) {
  .button--export, .button--restrict, .button--logout {
    width: 12rem;
    padding: 1.2rem 1rem;
  }
}
.button--inactive {
  background-color: #ffffff;
  border: 1px solid #f2f2f2;
  color: #dd3c3c;
}
.button--inactive:hover {
  background-color: #f1f1f1;
}
.button--default {
  background-color: #ffffff;
  border: 1px solid #e6e6e6;
  color: #1f1f1f;
}
.button--lock-btn {
  width: 22rem;
}
@media (max-width: 400px) {
  .button--lock-btn {
    width: 14rem;
  }
}
.button--disabled {
  background-color: #e6e6e6;
  color: #a6a6a6;
}

.status {
  font-size: 1.2rem;
  font-weight: 500;
  border-radius: 1.6rem;
  padding: 4px 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: flex-start;
}
.status--active {
  background-color: #eafaea;
  color: #25a727;
}
.status--failed {
  background-color: #ffeff0;
  color: #dc2b2b;
}
.status--refunded {
  background-color: #a5d8ff;
  color: #1c7ed6;
}
.status--closed {
  background-color: #e9e9e9;
  color: #7d7d7d;
}
.status--pending {
  background-color: #fff6e4;
  color: #ffa800;
}
.status--inactive {
  background-color: #f2f2f2;
  color: #808080;
}
.status--restricted {
  background-color: #fff6e4;
  color: #ffa800;
}

.online-dot {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.online-dot span {
  height: 8px;
  width: 8px;
  border-radius: 50%;
}
.online-dot--green {
  background-color: #0ac243;
}
.online-dot--red {
  background-color: #e87d7d;
}

.set-btn {
  padding: 1.2rem 0.8rem;
  height: 4.8rem;
  background: none;
  color: #1f1f1f;
  border: 2px solid #f2f2f2;
  border-radius: 0.8rem;
  font-size: 1.4rem;
  font-weight: 600;
}
.set-btn--edit {
  width: 12rem;
}
.set-btn--change-pw {
  width: 18rem;
}
.set-btn--lock {
  width: 16rem;
  background-color: #fdf2f2;
  color: #dd3c3c;
  border: none;
}
.set-btn--change {
  width: 12rem;
  color: #25a727;
}
.set-btn--cancel {
  width: 22rem;
}
@media (max-width: 400px) {
  .set-btn--cancel {
    width: 14rem;
  }
}

.landing-btns {
  background-image: url(../img/btn-bg.png);
  background-color: #2dcb30;
  color: #ffffff !important;
  font-weight: 600;
  border-radius: 0.8rem;
  height: 5.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 490px) {
  .landing-btns {
    height: 5rem;
  }
}
.landing-btns--get-started {
  width: 21rem;
  padding: 1.2rem 0.8rem;
}
@media (max-width: 490px) {
  .landing-btns--get-started {
    width: 12rem;
    padding: 0rem;
    font-size: 1.4rem;
  }
}
.landing-btns--log-in {
  width: 21rem;
  background: none;
  border: 1px solid #a3a3a3;
}
@media (max-width: 490px) {
  .landing-btns--log-in {
    width: 12rem;
    padding: 0rem;
    font-size: 1.4rem;
  }
}
.landing-btns--upgrade {
  width: 21rem;
}
@media (max-width: 490px) {
  .landing-btns--upgrade {
    width: 18rem;
    font-size: 1.4rem;
  }
}

.table {
  width: 100%;
  border-collapse: collapse;
}
.table thead tr {
  background-color: #f2f2f2;
}
.table thead th {
  color: #808080;
  font-size: 1.4rem;
  font-weight: normal;
  text-align: left;
  padding: 1rem 1.6rem;
}
.table tbody tr:not(:last-child) {
  border-bottom: 2px solid #f7f8f8;
}
.table tbody td {
  padding: 1.4rem 1.6rem;
}
.table thead th, .table tbody td {
  white-space: nowrap;
  padding-right: 2.4rem !important;
}
.table thead th:first-child, .table tbody td:first-child {
  padding-left: 1.8rem;
}

.tdate {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #a6a6a6;
}
.tdate span {
  width: 1px;
  background-color: #a6a6a6;
  height: 1.5rem;
}

.terror {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  padding: 3.2rem 0;
  text-align: center;
}
.terror__img {
  width: 15rem;
}
.terror__heading {
  font-size: 2.8rem;
}
.terror__info button {
  color: #1971c2;
}

.tempty {
  padding: 3.2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.tempty__img {
  display: block;
  width: 18rem;
  height: auto;
}

.td-funding {
  color: #25a727;
}

.table-details {
  overflow-x: scroll;
}
@media (max-width: 1305px) {
  .table-details {
    overflow-x: scroll;
  }
}

/* Form Controls */
.freqs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.freq {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 1.2rem;
  color: var(--text-color-faint);
}
.freq svg {
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  color: #a3a3a3;
}
.freq.error {
  color: #eb6237;
}
.freq.error svg {
  color: #eb6237;
}
.freq.success {
  color: #448c04;
}
.freq.success svg {
  color: #448c04;
}

.iblock {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.iblock--right {
  align-items: flex-end;
}
.iblock__info {
  font-size: 1.25rem;
  text-align: right;
}
.iblock--info-left .iblock__info {
  text-align: left;
}
.iblock.error .iblock__info {
  color: #eb6237;
}

.input {
  display: flex;
  align-items: center;
  height: 5.6rem;
  width: 100%;
  padding: 0 1.6rem;
  border-radius: 0.8rem;
  border: 2px solid var(--input-border-color);
  background-color: var(--input-bg-color);
  color: var(--input-text-color);
}
.input--md {
  height: 4.8rem;
}
.input--sm {
  height: 4rem;
  font-size: 1.4rem;
  padding: 0 1.2rem;
  border-radius: 6px;
}
.input::placeholder {
  color: var(--input-placeholder-color);
}
.input:focus {
  border: 2px solid #2dcb30;
}
.input.invalid {
  border: 2px solid #eb6237 !important;
}
.input--disabled, .input:read-only, .input:disabled {
  background-color: var(--input-disabled-bg-color) !important;
  color: var(--input-disabled-text-color) !important;
}

textarea.input {
  height: auto;
  padding: 1.6rem;
}

.igroup {
  position: relative;
  --dimen: 5.6rem;
}
.igroup--sm {
  --dimen: 4.8rem;
}
.igroup__label, .igroup__action {
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--dimen);
  height: 100%;
}
.igroup__label {
  left: 0;
}
.igroup__label.right {
  left: initial;
  right: 0;
}
.igroup__label svg {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
}
.igroup__input {
  height: var(--dimen);
}
.igroup--sm .igroup__label svg {
  width: 2rem;
  height: 2rem;
}
.igroup--sm .igroup__input {
  font-size: 1.4rem;
  padding: 0 1.2rem;
  border-radius: 6px;
}
.igroup--left .igroup__input {
  padding-left: var(--dimen);
}
.igroup--right .igroup__input {
  padding-right: var(--dimen);
}
.igroup__action {
  right: 0;
  border-radius: 1.2rem;
}
.igroup__action:focus {
  outline: 2px solid #2dcb30;
  outline-offset: -0.8rem;
}
.igroup__action svg {
  display: block;
  width: 2rem;
  height: 2rem;
}
.igroup.disabled svg {
  color: var(--input-disabled-text-color);
}

.telephone {
  position: relative;
}

.telephone-input {
  display: flex;
  height: 5.6rem;
  border-radius: 0.8rem;
  border: 2px solid var(--input-border-color);
  overflow: hidden;
  position: relative;
}
.telephone-input.focus {
  border: 2px solid #2dcb30;
}
.telephone-input.invalid {
  border: 2px solid #eb6237 !important;
}
.telephone-input.loader {
  border: none !important;
}
.telephone-input__toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 1.6rem;
  background-color: #e57d43;
  border-top-left-radius: 0.6rem;
  border-bottom-left-radius: 0.6rem;
  color: #fff;
  font-size: 1.4rem;
}
.telephone-input__toggle:focus {
  outline: 2px solid #2dcb30;
  outline-offset: -2px;
}
.telephone-input__toggle svg {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  transition: all 0.3s;
}
.telephone-input__toggle img {
  display: block;
  height: 1.6rem;
  width: 2.4rem;
  object-fit: fill;
}
.telephone-input.open .telephone-input__toggle svg {
  transform: rotate(180deg);
}
.telephone-input__input {
  flex: 1;
  height: auto;
  border: 2px solid transparent !important;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 0.6rem;
  border-bottom-right-radius: 0.6rem;
}
.telephone-input--right .telephone-input__input {
  padding-right: 5.6rem;
}
.telephone-input__label, .telephone-input__action {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.6rem;
  height: 100%;
}
.telephone-input__label svg {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
}
.telephone-input__action {
  border-radius: 1.2rem;
}
.telephone-input__action:focus {
  outline: 2px solid #2dcb30;
  outline-offset: -0.8rem;
}
.telephone-input__action svg {
  display: block;
  width: 2rem;
  height: 2rem;
}

.switch {
  appearance: none;
  display: block;
  width: 26px;
  padding: 3px;
  border-radius: 10rem;
  background-color: #a3a3a3;
  cursor: pointer;
  position: relative;
}
.switch:focus {
  outline: 2px solid #2dcb30;
  outline-offset: 2px;
}
.switch::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.switch:checked {
  background-color: #448c04;
}
.switch:checked::after {
  transform: translate(100%);
}

.toggle {
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 1.5px solid #7d7d7d;
  border-radius: 2px;
  cursor: pointer;
  color: var(--input-bg-color);
}
.toggle--sm {
  transform: scale(0.8);
}
.toggle:focus {
  outline: 1.5px solid #2dcb30;
  outline-offset: 2px;
}
.toggle::after {
  content: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="12" height="9" viewBox="0 0 12 9" fill="none"%3E%3Cpath d="M3.9998 6.5998L9.8998 0.699804C10.0831 0.516471 10.3165 0.424805 10.5998 0.424805C10.8831 0.424805 11.1165 0.516471 11.2998 0.699804C11.4831 0.883138 11.5748 1.11647 11.5748 1.3998C11.5748 1.68314 11.4831 1.91647 11.2998 2.0998L4.6998 8.6998C4.4998 8.8998 4.26647 8.9998 3.9998 8.9998C3.73314 8.9998 3.4998 8.8998 3.2998 8.6998L0.699804 6.0998C0.516471 5.91647 0.424805 5.68314 0.424805 5.3998C0.424805 5.11647 0.516471 4.88314 0.699804 4.6998C0.883138 4.51647 1.11647 4.4248 1.3998 4.4248C1.68314 4.4248 1.91647 4.51647 2.0998 4.6998L3.9998 6.5998Z" fill="white"/%3E%3C/svg%3E');
  display: inline-block;
  margin-top: -2.5px;
  transform: scale(0.9);
  opacity: 0;
}
.toggle:checked {
  border: 1.5px solid #2dcb30;
  background-color: #2dcb30;
}
.toggle:checked::after {
  opacity: 1;
}

.radio {
  appearance: none;
  width: 2rem;
  height: 2rem;
  border: 2px solid #7d7d7d;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
}
.radio::after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #2dcb30;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.3s;
}
.radio:checked {
  border: 2px solid #2dcb30;
}
.radio:checked::after {
  opacity: 1;
}

.finput-group {
  display: flex;
  height: 5.6rem;
  border-radius: 0.8rem;
  background-color: var(--input-bg-color);
  border: 2px solid var(--input-border-color);
  overflow: hidden;
}
.finput-group--sm {
  width: 38rem;
}
.finput-group.focus {
  border: 2px solid #2dcb30;
}
.finput-group.invalid {
  border: 2px solid #eb6237 !important;
}
.finput-group.disabled {
  background-color: var(--input-disabled-bg-color);
}
.finput-group__input {
  flex: 1;
  height: auto;
  border: 2px solid transparent !important;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 0.6rem;
  border-bottom-left-radius: 0.6rem;
}
.finput-group__action-block {
  display: flex;
  flex-direction: column;
}
.finput-group--2 .finput-group__action-block {
  padding: 0.75rem;
}
.finput-group__action {
  transition: initial;
  width: auto;
  height: 100%;
  flex-shrink: 0;
  padding: 0 2.4rem;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 0.6rem;
  border-bottom-right-radius: 0.6rem;
}
.finput-group__action:focus {
  outline: 2px solid #2dcb30;
  outline-offset: -2px;
}
.finput-group--2 .finput-group__action {
  border-radius: 4px !important;
}

.pin-input-group {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.pin-input-group--md {
  gap: 1rem;
}

.pin-input {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  border-radius: 1.5rem;
  background-color: var(--input-bg-color);
  border: 2px solid var(--input-border-color);
  text-align: center;
}
.pin-input:focus {
  border: 2px solid #2dcb30;
}
.pin-input.invalid {
  border: 2px solid #eb6237 !important;
}
.pin-input:disabled {
  background-color: var(--input-disabled-bg-color);
  color: var(--input-disabled-text-color);
}
.pin-input--md {
  width: 6.4rem;
  height: 6.4rem;
  border-radius: 0.7rem;
}
.pin-input--sm {
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 1.6rem;
  border: 2px solid var(--input-border-color-2);
}

.select-box {
  width: 100%;
  min-height: 5.6rem;
  border-radius: 0.8rem;
  background-color: var(--input-bg-color);
  border: 2px solid var(--input-border-color);
  padding: 1.6rem;
  display: flex;
  align-items: center;
  gap: 2.4rem;
  outline: none;
}
.select-box--sm {
  padding: 0.8rem 1.6rem;
  gap: 1.6rem;
}
.select-box:active, .select-box:focus {
  border: 2px solid #2dcb30;
}
.select-box.invalid {
  border: 2px solid #eb6237 !important;
}
.select-box:disabled {
  background-color: var(--input-disabled-bg-color);
  color: var(--input-disabled-text-color);
}
.select-box__placeholder {
  color: var(--input-placeholder-color);
}
.select-box__main {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.select-box__text-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 2px;
  text-transform: uppercase;
  color: #fff;
}
.select-box__img {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 2px;
}
.select-box__caret {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  transition: all 0.3s;
}
.open .select-box__caret {
  transform: rotate(180deg);
}

.select {
  position: relative;
}
.select__toggle {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  height: 5.6rem;
  width: 100%;
  min-width: 17rem;
  padding: 0 1.6rem;
  border-radius: 0.8rem;
  border: 2px solid var(--input-border-color);
  background-color: var(--input-bg-color);
  text-align: initial;
  color: var(--input-text-color);
}
.select__toggle--placeholder {
  color: var(--input-placeholder-color);
}
.select__toggle:focus {
  border: 2px solid #2dcb30;
}
.select__toggle.invalid {
  border: 2px solid #eb6237 !important;
}
.select__toggle:disabled {
  background-color: var(--input-disabled-bg-color);
  color: var(--input-disabled-text-color);
}
.select__toggle.loader {
  border: none !important;
  color: transparent !important;
}
.select--sm .select__toggle {
  height: 4.8rem;
  border-radius: 4px;
}
.select__value {
  flex: 1;
}
.select__caret {
  flex-shrink: 0;
  color: var(--input-text-color);
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  transition: all 0.3s;
}
.select.open .select__caret {
  transform: rotate(180deg);
}

.select-control {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  z-index: 9;
  transform: translateY(100%);
  border-radius: 6px;
  background-color: var(--select-bg-color);
  padding: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06));
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
.select-control.open {
  opacity: 1;
  pointer-events: all;
}
.select-control__input-block {
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
}
.select-control__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 20rem;
  overflow-y: auto;
}
.select-control__list::-webkit-scrollbar {
  display: none;
}
.select-control__list-item {
  display: flex;
  flex-direction: column;
}
.select-control__list-item button:not(:disabled) {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
  outline: none !important;
}
.select-control__list-item button:not(:disabled) p {
  padding: 0 4px;
}
.select-control__list-item button:not(:disabled).active, .select-control__list-item button:not(:disabled):focus, .select-control__list-item button:not(:disabled):hover {
  background-color: var(--select-option-bg-color);
}

.quantity-control {
  position: relative;
}
.quantity-control input {
  text-align: center;
  padding-left: 5.6rem;
  padding-right: 5.6rem;
}
.quantity-control__action {
  position: absolute;
  top: 0.8rem;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
}
.quantity-control__action svg {
  display: block;
  width: 3rem;
  height: 3rem;
  color: #2dcb30;
}
.quantity-control__action:disabled {
  cursor: not-allowed;
}
.quantity-control__action:disabled svg {
  color: #e9e9e9;
}
.quantity-control__action--left {
  left: 0.8rem;
}
.quantity-control__action--right {
  right: 0.8rem;
}

.coupon-input {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.8rem;
  width: 25rem;
  max-width: 100%;
}

.password {
  -webkit-text-security: disc;
  -moz-text-security: circle;
  text-security: circle;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.otp-block {
  width: 36.6rem;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.otp-block--md {
  width: 100%;
  gap: 1.2rem;
}
.otp-block__header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.otp-block__heading {
  font-size: 1.2rem;
  font-weight: 500;
}
.otp-block--md .otp-block__heading {
  font-size: 1.6rem;
  font-weight: normal;
  font-family: "Tango Sans";
  color: var(--text-color);
}
.otp-block__sub-heading {
  color: var(--sub-heading-color);
}
.otp-block__options {
  display: flex;
  flex-direction: column;
}
.otp-block__option {
  height: 4rem;
  display: flex;
  align-items: center;
  gap: 2.2rem;
  color: var(--input-text-color);
}
.otp-block__option-img {
  display: block;
  height: 1.6rem;
}
.otp-block__option-toggle {
  margin-left: auto;
}

/* End Form Controls */
.file-upload {
  border: 2px solid var(--input-border-color);
  background-color: var(--input-bg-color);
  border-radius: 0.8rem;
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.file-upload.dragover {
  border: 2px solid #2dcb30;
}
.file-upload__loader {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 999;
}
.file-upload.invalid {
  border: 2px solid #eb6237;
}
.file-upload__icon {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 0.8rem;
}
.file-upload__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 1.2rem;
}
.file-upload__info h3 {
  font-size: 1.6rem;
  color: #20262c;
  font-weight: 600;
}
.file-upload__info p {
  font-size: 1.4rem;
}
.file-upload__file-name {
  font-weight: 500;
  color: #20262c;
  margin-bottom: 1.6rem;
}
.file-upload__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.file-upload__actions button {
  border: 1px solid #e2e5e9;
  background-color: transparent;
  border-radius: 0.8rem;
  padding: 4px 1.6rem;
  font-weight: 500;
  color: #20262c;
  transition: all 0.3s;
}
.file-upload__actions button:hover {
  background-color: #f1f1f1;
}

.file-preview {
  padding: 1.6rem;
  border: 1.5px solid #e2e5e9;
  background-color: #ffffff;
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.4rem;
}
.file-preview__main {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.file-preview__main svg {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
}
.file-preview__actions {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.file-preview__actions button {
  width: auto;
}
.file-preview__actions button:last-child {
  padding: 0 2.4rem;
}

.fgroup {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.fgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.select-type {
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #e9e9e9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
}
@media (max-width: 820px) {
  .select-type {
    flex-direction: column;
    gap: 1.6rem;
    align-items: flex-start;
  }
}
.select-type__dropdowns {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.6rem;
}
@media (max-width: 430px) {
  .select-type__dropdowns {
    flex-wrap: wrap;
  }
}
.select-type__search {
  width: 28rem;
}

.search-input {
  width: 40rem;
  height: 4.8rem;
  background-color: #ffffff;
  border: 1.5px solid #e6e6e6;
  border-radius: 0.8rem;
  padding: 1.2rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 500px) {
  .search-input {
    width: initial;
    width: 100%;
  }
}
.search-input svg {
  display: block;
  width: 2.4rem;
}
.search-input__search {
  flex: 1;
  width: 100%;
  background-color: transparent;
  border: none;
  padding: 1.2rem 1.6rem;
  font-size: 1.6rem;
}
.search-input__search:focus {
  outline: transparent;
}
.search-input__search ::placeholder {
  color: #bdbdbd;
}
@media (max-width: 500px) {
  .search-input__search {
    padding: 1rem;
    width: 100%;
  }
}

.select-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  margin-left: auto;
  border: 1px solid #e6e6e6;
  border-radius: 0.8rem;
  background-color: #ffffff;
  padding: 0.8rem 1.6rem;
  height: 5.6rem;
  white-space: nowrap;
}
@media (max-width: 430px) {
  .select-option {
    margin-left: 0;
    width: 100%;
  }
}
.select-option svg {
  display: block;
  width: 2.4rem;
}
.select-option__select-text {
  color: #808080;
}
.select-option--2 {
  width: 100%;
}

.check-box {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  height: 5.6rem;
  border-radius: 0.8rem;
  padding: 0 1.6rem;
  border: 1.5px solid var(--input-border-color);
}
.check-box.loader {
  border: none !important;
}
.check-box--md {
  height: 6.4rem;
  padding: 0 2.4rem;
}
.check-box img {
  display: block;
  height: 2.4rem;
}
.check-box svg {
  margin-left: auto;
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  color: #2dcb30;
  transition: all 0.3s;
  opacity: 0;
}
.check-box:hover, .check-box.active {
  border: 1.5px solid #2dcb30;
}
.check-box.active svg {
  opacity: 1;
}

.form-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.4rem;
  border: 1px solid var(--input-border-color);
  border-radius: 0.6rem;
  overflow: hidden;
  height: 5.6rem;
  padding: 1.6rem;
  background-color: var(--input-bg-color);
  cursor: default;
}

.form-group input {
  flex: 1;
  background-color: transparent;
  padding: 0.5rem 0;
  border: none;
}

.form-input {
  outline: none;
  color: var(--input-text-color);
}

.form-icon {
  width: 2.4rem;
  height: 2.4rem;
  color: var(--text-color);
}

.form-input-group {
  display: flex;
  gap: 1.5rem;
  height: 4.8rem;
  border-radius: 0.6rem;
  background-color: var(--input-bg-color);
  border: 1px solid var(--input-border-color);
  overflow: hidden;
}

.form-input-group input {
  flex: 1;
  background-color: transparent;
  padding: 0 1.2rem;
  border: none;
}

.pin-input {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 6rem;
  height: 6rem;
  border-radius: 1.5rem;
  background-color: #ffffff;
  text-align: center;
}
.pin-input--sm {
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 1.6rem;
  border: 2px solid #ebebeb;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 1.6rem;
}
.label--light {
  color: #7d7d7d;
}
.label--orange {
  color: #e57d43;
}

.header-wrapper {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 2.4rem 2.4rem 0;
  background-color: rgba(0, 0, 0, 0);
  backdrop-filter: blur(3px);
  z-index: 99;
}
@media (max-width: 450px) {
  .header-wrapper {
    padding: 0;
  }
}

.header {
  width: 135rem;
  max-width: 100%;
  margin: auto;
  background-color: #e2f8e4;
  border-radius: 8rem;
  max-height: 7.9rem;
  transition: all 0.3s ease-in;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3.2rem;
}
@media (max-width: 800px) {
  .header {
    border-radius: 2.4rem;
    display: grid;
    grid-template-columns: auto 1fr;
    row-gap: 0;
  }
  .header.navbar-open {
    max-height: 450px;
  }
}
@media (max-width: 450px) {
  .header {
    border-radius: 0;
  }
  .header.navbar-open {
    border-bottom-left-radius: 1.2rem;
    border-bottom-right-radius: 1.2rem;
  }
}
.header__logo-toggle {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  height: 8rem;
  padding-left: 4rem;
}
@media (max-width: 800px) {
  .header__logo-toggle {
    padding-left: 2.4rem;
  }
}
.header__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__toggle svg {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
}
@media (min-width: 800px) {
  .header__toggle {
    display: none;
  }
}
.header__logo img {
  display: block;
  height: 3.2rem;
}
.header__navbar {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 3.2rem;
}
.header__navbar::before {
  content: "";
  display: block;
  height: 2.4rem;
  width: 1.5px;
  background-color: #9ae6a4;
}
@media (max-width: 800px) {
  .header__navbar {
    order: 3;
    grid-column: 1/-1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .header__navbar::before {
    display: none;
  }
}
.header__nav {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
@media (max-width: 800px) {
  .header__nav {
    border-top: 1px solid #9ae6a4;
    flex-direction: column;
    padding: 2.4rem;
    pointer-events: none;
    opacity: 0;
    transition: all 0.3s;
  }
  .navbar-open .header__nav {
    pointer-events: all;
    opacity: 1;
  }
}
.header__nav-link {
  font-weight: 500;
}
.header__nav-link.active {
  color: #448c04;
}
.header__right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.6rem;
  padding-right: 4rem;
}
@media (max-width: 800px) {
  .header__right {
    padding-right: 2.4rem;
  }
}

/* Header User */
.header-user {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.header-user__block {
  position: absolute;
  bottom: 6px;
  right: 0;
  width: 45rem;
  max-width: calc(100vw - 4.8rem);
  border-radius: 1rem;
  transform: translateY(100%);
  background-color: var(--header-user-bg);
  box-shadow: 0px -2px 8px 0px rgba(61, 64, 66, 0.05), 0px 4px 8px 0px rgba(61, 64, 66, 0.1);
  padding: 1.8rem;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.header-user__block--2 {
  bottom: -2.4rem;
}
.header-user.open .header-user__block {
  opacity: 1;
  pointer-events: all;
}
.header-user__email {
  text-align: center;
  font-weight: 500;
}
.header-user__user {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header-user__img {
  display: block;
  width: 9.6rem;
  height: 9.6rem;
  border-radius: 50%;
  margin-bottom: 6px;
}
.header-user__name {
  font-size: 2.4rem;
  font-weight: 600;
}
.header-user__menu {
  background-color: var(--header-user-menu-bg);
  border-radius: 1.6rem;
  overflow: hidden;
}
.header-user__menu-item {
  display: flex;
  flex-direction: column;
}
.header-user__menu-item:not(:last-child) {
  border-bottom: 3px solid var(--header-user-bg);
}
.header-user__menu-link {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.6rem 2rem;
  color: inherit;
  text-decoration: none;
  transition: all 0.3s;
}
.header-user__menu-link.active, .header-user__menu-link:hover, .header-user__menu-link:active {
  background-color: var(--header-user-menu-hover-bg);
}
.header-user__menu-link svg {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
}

/* End Header User */
.header-user__toggle {
  display: flex;
  align-items: center;
}
.header-user__toggle-main {
  display: block;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
}
.header-user__toggle-main img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.header-user__block {
  bottom: -1.6rem;
}
.header-user--dashboard .header-user__block {
  bottom: 6px;
}

.action-modal {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 99999;
  width: 62rem;
  max-width: 90dvw;
  height: 100dvh;
  transform: translateX(100%);
  background-color: #ffffff;
  transition: all 0.3s ease-out;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media (max-width: 650px) {
  .action-modal {
    border-radius: 1.6rem;
    height: 60dvh;
    max-width: calc(100% - 4.8rem);
    width: 60rem;
    right: initial;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    pointer-events: none;
  }
  .action-modal--auto {
    height: auto;
    max-height: 80dvh;
  }
}
@media (max-width: 500px) {
  .action-modal {
    top: initial;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: initial;
    height: 100rem;
    max-height: 80dvh;
    transform: translateY(100%);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .action-modal--auto {
    height: auto;
  }
}
.action-modal.open {
  transform: translate(0);
  overflow-y: scroll;
}
@media (max-width: 650px) {
  .action-modal.open {
    transform: translate(-50%, -50%) scale(1);
    pointer-events: all;
    overflow-y: scroll;
  }
}
@media (max-width: 500px) {
  .action-modal.open {
    transform: translateY(0);
    overflow-y: scroll;
  }
}
.action-modal__close-modal {
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.action-modal__close-modal svg {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
}
.action-modal__close-text {
  display: flex;
  justify-content: space-between;
  gap: 1.6rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #f2f2f2;
}
.action-modal__body-details {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.action-modal__event-body {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.action-modal__event-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem;
  background-color: #ffffff;
  border-radius: 0.8rem;
}
.action-modal__check-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1.6rem;
  row-gap: 1rem;
}
@media (max-width: 420px) {
  .action-modal__check-layout {
    grid-template-columns: 1fr;
  }
}
.action-modal__form-check {
  background-color: #ffffff;
  border-radius: 4px;
  padding: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  border: 1px solid #f2f2f2;
}
.action-modal__form-check.disabled {
  background-color: #fafafa;
}
.action-modal__form-check-bg {
  background-color: #f9fafb;
  border-radius: 4px;
  padding: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.action-modal__employeeId {
  background-color: #fff6e4;
  border-radius: 0.8rem;
  text-align: center;
  color: #808080;
  padding: 2rem 0;
}
.action-modal__save-box {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.action-modal__save-box p {
  font-size: 1.4rem;
  color: #4d4d4d;
}
.action-modal__form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.action-modal__btns {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.action-modal__btns button {
  flex: 1;
  padding: 1.2rem 0.8rem;
}

.center-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: 99999;
  width: 58rem;
  padding: 4rem 5rem 6rem;
  border-radius: 1.6rem;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  pointer-events: none;
  transition: all 0.3s;
}
@media (max-width: 500px) {
  .center-modal {
    top: initial;
    bottom: 0;
    left: 0;
    width: 100%;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    transform: translate(0, 100%) scale(0);
  }
}
@media (max-width: 400px) {
  .center-modal {
    padding: 4rem 2.4rem;
  }
}
.center-modal.open {
  transform: translate(-50%, -50%) scale(1);
  pointer-events: all;
  overflow-y: auto;
}
@media (max-width: 500px) {
  .center-modal.open {
    transform: translate(0, 0) scale(1);
  }
}
.center-modal__close {
  display: flex;
  align-items: center;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.center-modal__close svg {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
}
.center-modal__auth-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #f2f2f2;
  padding-bottom: 1.6rem;
}
.center-modal__auth-heading {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.center-modal__auth-heading span {
  color: #808080;
}
.center-modal__lock-modal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
@media (max-width: 400px) {
  .center-modal__lock-modal {
    gap: 2.4rem;
  }
}
.center-modal__lock-heading {
  padding-bottom: 1.6rem;
  width: 100%;
  font-size: 2rem;
  font-family: "Tango Sans";
  font-weight: normal;
  border-bottom: 1px solid #f2f2f2;
  text-align: center;
}
.center-modal__lock-text {
  font-weight: 500;
  text-align: center;
}
@media (max-width: 400px) {
  .center-modal__lock-text {
    font-size: 1.4rem;
  }
}
.center-modal__lock-text span {
  color: #dd3c3c;
}
.center-modal__lock-btns {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.kyc-success {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.kyc-success__main {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.kyc-success__main-img {
  display: block;
  width: 12rem;
  height: 12rem;
  align-self: center;
}
.kyc-success__content {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  text-align: center;
}
.kyc-success__content h3 {
  color: #20262c;
  font-family: "Tango Sans";
  font-weight: 400;
}
.kyc-success__content p {
  color: #808080;
}

.auth-modal {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.auth-modal__center-form {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.auth-modal__auth-code {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.auth-modal__qr-code {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.auth-modal__scan-code {
  display: flex;
  gap: 0.8rem;
}
.auth-modal__scan-code img {
  display: block;
  width: 16rem;
}
.auth-modal__set-up-key {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.auth-modal__set-up-number {
  font-size: 2.4rem;
  font-weight: 600;
}
.auth-modal__enter-code {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
}
.auth-modal__enter-code-text {
  color: #333333;
  text-align: center;
}

.lock-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: 99999;
  width: 54rem;
  padding: 4rem;
  border-radius: 0.8rem;
  background-color: #ffffff;
  pointer-events: none;
  transition: all 0.3s;
}
@media (max-width: 500px) {
  .lock-modal {
    top: initial;
    left: 0;
    bottom: 0;
    width: 100%;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    transform: translate(0, 100%) scale(1);
  }
}
@media (max-width: 400px) {
  .lock-modal {
    padding: 4rem 2.4rem;
  }
}
.lock-modal.open {
  transform: translate(-50%, -50%) scale(1);
  pointer-events: all;
}
@media (max-width: 500px) {
  .lock-modal.open {
    transform: translate(0, 0) scale(1);
  }
}
.lock-modal__heading {
  padding-bottom: 1.6rem;
  border-bottom: 1px solid #f2f2f2;
  font-size: 2rem;
  font-family: "Tango Sans";
  font-weight: normal;
  text-align: center;
}
.lock-modal__body {
  padding: 2.4rem 0;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.lock-modal__text {
  font-weight: 500;
  text-align: center;
}
.lock-modal__text span {
  color: #dd3c3c;
}
.lock-modal__actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}

.api-key-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: 99999;
  width: 60rem;
  border-radius: 1.6rem;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  pointer-events: none;
  transition: all 0.3s;
}
@media (max-width: 500px) {
  .api-key-modal {
    top: initial;
    bottom: 0;
    left: 0;
    width: 100%;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    transform: translate(0, 100%) scale(0);
  }
}
@media (max-width: 400px) {
  .api-key-modal {
    padding: 4rem 2.4rem;
  }
}
.api-key-modal.open {
  transform: translate(-50%, -50%) scale(1);
  pointer-events: all;
  overflow-y: auto;
}
@media (max-width: 500px) {
  .api-key-modal.open {
    transform: translate(0, 0) scale(1);
  }
}
.api-key-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.4rem;
  border-bottom: 1px solid #e2e5e9;
}
.api-key-modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
}
.api-key-modal__close svg {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
}
.api-key-modal__body {
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.api-key-modal__body-content {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.api-key-modal__copy-block {
  padding: 1.6rem;
  border-radius: 0.8rem;
  border: 1.5px solid #2dcb30;
  background-color: #d5f5d6;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.api-key-modal__copy-block p {
  word-wrap: break-word;
}

/* Form Controls */
.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.4rem;
}
@media (max-width: 700px) {
  .pagination {
    flex-direction: column;
  }
}
.pagination--column {
  flex-direction: column;
}
.pagination__info span {
  font-weight: 600;
}
.pagination__right {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3.2rem;
}
.pagination__main {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.pagination__main button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  background-color: var(--pagination-bg);
  box-shadow: 0 8px 64px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}
.pagination__main button svg {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
}
.pagination__main button:hover {
  background-color: #2dcb30;
  color: #fff;
}
.pagination__main button.active {
  background-color: #24a226;
  color: #fff;
}
.pagination__main button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: var(--pagination-bg) !important;
  color: var(--text-color) !important;
}

/* End Form Controls */
/* Form Controls */
.auth {
  padding-left: 72rem;
  min-height: 100vh;
  position: relative;
}
.auth--agent {
  padding-left: 45dvw;
}
@media (max-width: 1200px) {
  .auth {
    padding-left: 0;
  }
}
.auth__left {
  position: fixed;
  top: 0;
  left: 0;
  width: 72rem;
  height: 100vh;
}
@media (max-width: 1200px) {
  .auth__left {
    display: none !important;
  }
}
.auth--agent .auth__left {
  width: 45dvw;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #123054;
}
.auth--agent .auth__left::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url(../imgs/auth-bg.png);
  opacity: 0.5;
}
.auth__slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.auth__slider-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: all 0.45s ease-in-out;
}
.auth__slider-dots {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.auth__slider-dots button {
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid #fff;
  cursor: pointer;
  outline: 2px solid transparent;
  outline-offset: 2px;
  transition: all 0.3s;
}
.auth__slider-dots button:focus {
  outline: 2px solid #2dcb30;
  outline-offset: 2px;
}
.auth__slider-dots button.active {
  background-color: #2dcb30;
}
.auth__main {
  padding: 8rem 2.4rem;
}
@media (max-width: 1200px) {
  .auth__main {
    height: 100dvh;
    background-color: var(--auth-bg);
  }
}
@media (max-width: 500px) {
  .auth__main {
    padding: 0;
    padding-top: 4rem;
  }
}
.auth__main-content {
  width: 52.6rem;
  max-width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.auth__main-content--md {
  width: 56rem;
}
.auth__main-content--1 {
  gap: 8rem;
}
.auth__main-content--2 {
  gap: 10.45rem;
}
@media (max-width: 1200px) {
  .auth__main-content {
    width: 60rem;
    height: 100%;
    overflow: hidden;
    gap: 4rem !important;
  }
}
@media (max-width: 500px) {
  .auth__main-content {
    width: 100%;
    justify-content: flex-end;
    gap: 2.4rem;
  }
}
.auth__logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 500px) {
  .auth__logo-wrapper {
    flex: 1;
  }
}
.auth__logo-block {
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth__logo-block > a > img, .auth__logo-block > img {
  display: block;
  height: 3.8rem;
}
@media (max-width: 1200px) {
  .auth__logo-block {
    position: relative;
    align-self: center;
    width: 35rem;
    max-width: 80%;
  }
  .auth__logo-block > a, .auth__logo-block > img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.auth__logo-block--1 {
  position: relative;
  align-self: center;
  width: 35rem;
  max-width: 80%;
}
.auth__logo-block--1 > img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.auth__logo-bg {
  display: none;
}
@media (max-width: 1200px) {
  .auth__logo-bg {
    display: block;
  }
}
.auth__logo-bg img {
  display: block;
  width: 100%;
}
@media (max-width: 1200px) {
  .auth__block {
    padding: 3.2rem;
    background-color: var(--body-bg);
    border-radius: 1.6rem;
    max-height: 100%;
    overflow-y: auto;
  }
}
@media (max-width: 500px) {
  .auth__block {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    padding-bottom: 5.6rem;
  }
}
.auth__header {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 4.8rem;
}
.auth__header--2 {
  margin-bottom: 2.4rem;
}
@media (max-width: 500px) {
  .auth__header > * {
    text-align: left;
  }
}
.auth__body {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.auth__form {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.auth__form--1 {
  gap: 2.4rem;
}
.auth__form--2 {
  gap: 4rem;
}
.auth__form--add-tel {
  gap: 4rem;
  width: 50rem;
  max-width: 100%;
}
.auth__referees {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.auth__referee {
  border: none;
  padding: 1rem 2rem;
  border-radius: 0.45rem;
  box-shadow: 0.3rem 0.3rem 0 transparent;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1.4rem;
  text-align: center;
  color: #1e1e1e;
  outline: 2px solid transparent;
  transition: all 0.3s;
}
.auth__referee:nth-child(4n+1) {
  background-color: #d0f1eb;
}
.auth__referee:nth-child(4n+2) {
  background-color: #ded2f9;
}
.auth__referee:nth-child(4n+3) {
  background-color: #fdc9d2;
}
.auth__referee:nth-child(4n+4) {
  background-color: #f9e8bd;
}
.auth__referee.active {
  box-shadow: 0.3rem 0.3rem 0 #2dcb30;
  border: 2px solid #2dcb30;
}
.auth__referee:hover, .auth__referee:focus {
  border: 2px solid #2dcb30;
}
.auth__referee.loader {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}
.auth__link {
  display: inline-block;
  padding-bottom: 2px;
  cursor: pointer;
  font-weight: 500;
  outline: none;
  position: relative;
}
.auth__link::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: currentColor;
  transition: all 0.3s;
}
.auth__link--2::after {
  width: 50%;
}
.auth__link:focus::after, .auth__link:hover::after {
  width: 100%;
}
.auth__controls {
  align-self: center;
  width: 40rem;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media (max-width: 500px) {
  .auth__controls {
    width: 100%;
  }
}
.auth__footer {
  text-align: center;
  color: #7d7d7d;
  font-size: 1.4rem;
  font-weight: 500;
}
.auth__footer--1 {
  font-size: 2rem;
  font-weight: 600;
}
.auth__otp {
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.auth__otp--hidden {
  max-height: 0;
  overflow: hidden;
  transition: all 0.45s ease-in-out;
}
.auth__otp--sm {
  gap: 0.8rem;
}
.auth__otp-heading {
  font-size: 1.6rem;
  color: var(--text-color);
  font-weight: normal;
  text-align: center;
}
.auth__otp-heading--1 {
  font-family: "Tango Sans";
  font-weight: normal;
  font-size: 1.4rem;
}
.auth__otp-resend {
  color: #2dcb30;
  font-weight: 500;
  transition: background-color 0.2s;
  height: 36px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  outline: none !important;
  position: relative;
}
.auth__otp-resend::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: currentColor;
  transition: width 0.3s;
}
.auth__otp-resend:not(:disabled):focus::after, .auth__otp-resend:not(:disabled):hover::after {
  width: 100%;
}
.auth__otp-resend:disabled {
  color: #209226;
}
.auth__otp-resend:disabled::after {
  background-color: transparent;
}

/* End Form Controls */
.auth-form-container {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (max-width: 600px) {
  .auth-form-container {
    padding: 4rem 2rem;
  }
}

.auth-heading {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.auth-heading p {
  font-size: 1.4rem;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.auth-form__agreement {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.auth-form__agreement a {
  color: #2dcb30;
}
.auth-form__add-image {
  padding: 4rem 2.4rem;
  border-radius: 0.8rem;
  background-color: white;
  border: 1px dashed #e2e5e9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  cursor: pointer;
}
.auth-form__add-image-icon {
  display: block;
  width: 5.6rem;
  color: #e9e9e9;
  margin-bottom: 0.8rem;
}
.auth-form__add-image-info button {
  color: #2dcb30;
  font-weight: 500;
  text-decoration: underline;
}
.auth-form__add-image-limit {
  font-size: 1.2rem;
  color: #7d7d7d;
  text-align: center;
}
.auth-form__browse-btn {
  width: fit-content;
  padding: 0.4rem 1.6rem;
  border: 1px solid #e2e5e9;
  border-radius: 0.8rem;
  background-color: white;
}
.auth-form__browse-btn--remove {
  margin-top: 1rem;
  color: #dc2b2b;
}
.auth-form__extra {
  font-size: 1.4rem;
  color: #808080;
}
.auth-form__btns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.6rem;
  padding-top: 4rem;
  width: fit-content;
}
.auth-form__btns button {
  flex: 1;
  padding: 1.6rem 2.4rem;
  width: 20rem;
  max-width: 90%;
  height: fit-content;
}
.auth-form__business-btns {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding-top: 4rem;
  width: fit-content;
}
.auth-form__business-btns button {
  width: 20rem;
}

.auth-login {
  height: 100dvh;
  position: relative;
  padding-left: 50dvw;
}
@media (max-width: 1080px) {
  .auth-login {
    padding-left: 0;
  }
}
.auth-login__left {
  position: fixed;
  top: 0;
  left: 0;
  width: 50dvw;
  height: 100vh;
}
@media (max-width: 1080px) {
  .auth-login__left {
    display: none !important;
  }
}
.auth-login__bg-img {
  background-color: #123054;
  width: 100%;
  height: 100dvh;
  object-fit: cover;
}
.auth-login__logo-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.auth-login__body {
  padding: 12rem 2.4rem 0rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10rem;
  overflow: scroll;
  min-height: 100dvh;
}
@media (max-width: 1080px) {
  .auth-login__body {
    gap: 8rem;
  }
}
@media (max-width: 430px) {
  .auth-login__body {
    justify-content: center;
    padding-top: 0rem;
  }
}
.auth-login__logo-form {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-height: 1080px) {
  .auth-login__logo-form {
    width: 35rem;
    max-width: 100%;
  }
}
.auth-login__logo-form a {
  display: flex;
  justify-content: center;
}
.auth-login__img-logo-mobile {
  display: none;
}
@media (max-width: 1080px) {
  .auth-login__img-logo-mobile {
    display: block;
    width: 100%;
  }
}
@media (max-width: 430px) {
  .auth-login__img-logo-mobile {
    width: 70%;
  }
}
.auth-login__content {
  display: flex;
  flex-direction: column;
  gap: 6.4rem;
  max-width: 50rem;
  width: 100%;
  padding-bottom: 4rem;
}
.auth-login__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}
.auth-login__header span {
  font-size: 1.8rem;
  color: #5f606a;
  text-align: center;
}
.auth-login__header-text {
  font-size: 3.2rem;
  font-family: "Tango Sans";
}
@media (max-width: 500px) {
  .auth-login__header-text {
    font-size: 2.4rem;
  }
}
.auth-login__form {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.auth-login__form-input {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.not-input {
  background-color: #ffffff;
  color: #000000;
  height: 5.6rem;
  width: 100%;
  padding: 0 1.6rem;
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
}

.auth-qrcode__center-form {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.auth-qrcode__center-form p {
  text-align: center;
}
.auth-qrcode__auth-code {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.auth-qrcode__qr-code {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.auth-qrcode__scan-code {
  display: flex;
  gap: 0.8rem;
}
.auth-qrcode__scan-code img {
  display: block;
  width: 16rem;
}
.auth-qrcode__code-text {
  font-size: 1.2rem;
}
.auth-qrcode__set-up-key {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.auth-qrcode__set-up-number {
  font-size: 2.4rem;
  font-weight: 600;
}
.auth-qrcode__enter-code {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
}
.auth-qrcode__enter-code-text {
  color: #333333;
  text-align: center;
}
.auth-qrcode__log-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}
.auth-qrcode__logout-link {
  cursor: pointer;
}
.auth-qrcode__logout-link div {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.password-info {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.password-info__instruct {
  display: flex;
  align-items: center;
  gap: 4px;
}
.password-info__instruct svg {
  display: block;
  width: 1.6rem;
  color: #a3a3a3;
}
.password-info__instruct p {
  font-size: 1.2rem;
  color: #444444;
}

.acct-review {
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
  max-width: 50rem;
  width: 100%;
}
.acct-review__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.4rem;
}
.acct-review__review-img {
  display: flex;
  justify-content: center;
}
.acct-review__review-img img {
  display: block;
  width: 12rem;
}
.acct-review__review-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}
.acct-review__review-details h2 {
  font-size: 2.4rem;
  font-weight: normal;
  font-family: "Tango Sans";
}
.acct-review__text {
  font-size: 1.8rem;
  color: #5f606a;
  text-align: center;
}
.acct-review__contacts {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.acct-review__contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin: auto;
}
.acct-review__contact-info {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.acct-review__contact-info img {
  display: block;
  width: 2.4rem;
}
.acct-review__text-reject {
  color: #dd3c3c;
}
.acct-review__text-bg {
  background-color: #ffffff;
  border-radius: 0.8rem;
  padding: 1.6rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.acct-review__text-bold {
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
}
.acct-review__reasons {
  margin: auto;
}

/* Form Controls */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 26, 26, 0.5);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder {
  background-color: var(--placeholder-bg) !important;
  color: transparent !important;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: anim-placeholder;
  animation-timing-function: ease-in-out;
}
.placeholder * {
  color: transparent !important;
}
.placeholder--dark {
  background-color: var(--placeholder-dark-bg) !important;
}

.loader-ring {
  display: inline-block;
  width: 8rem;
  height: 8rem;
}
.loader-ring::after {
  content: " ";
  display: block;
  width: 6.4rem;
  height: 6.4rem;
  margin: 0.8rem;
  border-radius: 50%;
  border: 0.6rem solid #3872fa;
  border-color: #3872fa transparent #3872fa transparent;
  animation: anim-loader-ring 1.2s linear infinite;
}
.loader-ring--sm {
  transform: scale(0.35);
}

.loader-ripple {
  /* change color here */
  color: currentColor;
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.loader-ripple--primary {
  color: #2dcb30;
}
.loader-ripple--sm {
  transform: scale(0.6);
}
.loader-ripple--xs {
  transform: scale(0.4) translate(-50%, -50%);
  width: 36px;
  height: 36px;
}
.loader-ripple div {
  position: absolute;
  border: 4px solid currentColor;
  opacity: 1;
  border-radius: 50%;
  animation: anim-loader-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.loader-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}

/* End Form Controls */
/* Toastrs */
.toastrs {
  position: fixed;
  top: 1.6rem;
  right: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: 40rem;
  max-width: calc(100dvw - 4.8rem);
  height: auto;
  max-height: calc(100dvh - 4.8rem);
  z-index: 999999;
}
.toastrs--1 {
  top: 8.8rem;
}
.toastrs--2 {
  top: 10.4rem;
}

.toastr {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 1.6rem;
  border-radius: 4px;
  background-color: var(--toastr-bg);
  color: var(--toastr-text-color);
  position: relative;
  animation: toastr 0.5s ease-in-out 0.3s;
  animation-fill-mode: both;
}
.toastr--success {
  border-right: 4px solid #2dcb30;
  border-bottom: 4px solid #2dcb30;
  box-shadow: 1px 2px 4px 2px rgba(45, 203, 48, 0.2);
}
.toastr--warning {
  border-right: 4px solid #fdbd1a;
  border-bottom: 4px solid #fdbd1a;
  box-shadow: 1px 2px 4px 2px rgba(253, 189, 26, 0.2);
}
.toastr--error {
  border-right: 4px solid #dc2b2b;
  border-bottom: 4px solid #dc2b2b;
  box-shadow: 1px 2px 4px 2px rgba(220, 43, 43, 0.2);
}
.toastr__icon {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
}
.toastr--success .toastr__icon {
  color: #2dcb30;
}
.toastr--warning .toastr__icon {
  color: #fdbd1a;
}
.toastr--error .toastr__icon {
  color: #dc2b2b;
}
.toastr__close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
}
.toastr__main {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.toastr__heading {
  font-size: 1.8rem;
  font-weight: 600;
}
/* End Toastrs */
.toastrs {
  top: 12.8rem;
}
.toastrs--2 {
  position: absolute;
  top: 9.6rem;
}

.service-dropdown--open {
  display: table-row;
}
.service-dropdown--hide {
  display: none;
}
.service-dropdown svg {
  width: 2.4rem;
  height: 2.4rem;
  transition: all 0.3s;
}
.service-dropdown__open svg {
  transform: rotate(180deg);
}

.dashboard-wrapper {
  width: 100dvw;
  height: 100dvh;
  background-color: #f5f5f5;
}

.dashboard {
  margin: auto;
  max-width: 1920px;
  height: 100dvh;
  background-color: #f9fafb;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 25.4rem 1fr;
  position: relative;
}
@media (max-width: 1050px) {
  .dashboard {
    grid-template-columns: 1fr;
  }
}
.dashboard__content {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.dashboard__content-main {
  flex: 1;
  overflow-y: auto;
}
.dashboard__main {
  margin: auto;
  max-width: 1120px;
  padding: 3.2rem 2.4rem;
  min-height: calc(100dvh - 7.2rem);
}
.dashboard__main--no-padding {
  padding: 0;
}

.sidebar {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}
@media (max-width: 1050px) {
  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 25.4rem;
    height: 100dvh;
    z-index: 9999;
    transform: translateX(-100%);
  }
  .sidebar.open {
    transform: translateX(0);
  }
}
@media (max-width: 500px) {
  .sidebar {
    width: 30rem;
  }
}
@media (min-width: 1050px) {
  .sidebar__overlay {
    display: none;
  }
}
.sidebar__img-block {
  height: 7.2rem;
  padding: 0 3.2rem;
  display: flex;
  align-items: center;
  margin-bottom: 3.2rem;
}
@media (min-width: 1050px) {
  .sidebar__img-block {
    margin-bottom: 8rem;
  }
}
.sidebar__img-block img {
  display: block;
  height: 3.2rem;
}
.sidebar__main {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.sidebar__greetings {
  padding-left: 3.2rem;
}
@media (min-width: 1050px) {
  .sidebar__greetings {
    display: none;
  }
}
.sidebar__navbar {
  padding-right: 3.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.sidebar__link:link, .sidebar__link:visited {
  padding: 1.2rem 3.2rem;
  border-top-right-radius: 10rem;
  border-bottom-right-radius: 10rem;
  color: #7d7d7d;
  outline: none;
  font-size: 1.6rem;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.sidebar__link:focus, .sidebar__link:hover {
  background-color: #2dcb30;
  color: #ffffff;
}
.sidebar__link:active, .sidebar__link.active {
  background-color: #2dcb30 !important;
  color: #fff !important;
}
.sidebar__link-icon {
  display: flex;
  align-items: center;
}
.sidebar__link-icon svg {
  width: 2.4rem;
  height: 2.4rem;
}
.sidebar__link-icon svg:first-child {
  display: block;
}
.sidebar__link-icon svg:last-child {
  display: none;
}
.sidebar__link.active .sidebar__link-icon svg:first-child {
  display: none;
}
.sidebar__link.active .sidebar__link-icon svg:last-child {
  display: block;
}

.header-dash {
  position: sticky;
  top: 0;
  right: 0;
  z-index: 99;
  width: 100%;
  height: 7.2rem;
  padding: 0 2.4rem;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.4rem;
}
@media (max-width: 1050px) {
  .header-dash {
    width: 100%;
  }
}
.header-dash__left {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.header-dash__sidebar-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
@media (max-width: 1050px) {
  .header-dash__sidebar-toggle {
    display: flex;
  }
}
.header-dash__sidebar-toggle svg {
  display: block;
  width: 3.6rem;
  height: 3.6rem;
  border: none;
}
.header-dash__img-block {
  display: flex;
  align-items: center;
  display: none;
}
@media (max-width: 1050px) {
  .header-dash__img-block {
    display: flex;
  }
}
.header-dash__img-block img {
  display: block;
  height: 3.2rem;
}
.header-dash__greetings {
  font-family: "Lato" sans-serif;
  font-weight: 600;
}
@media (max-width: 1050px) {
  .header-dash__greetings {
    display: none;
  }
}
.header-dash__right {
  align-self: stretch;
  display: flex;
  align-items: center;
  gap: 2.4rem;
}

.header-notification__toggle {
  display: flex;
  align-items: center;
}
.header-notification__toggle-main {
  border: none;
  cursor: pointer;
  background-color: transparent;
}
.header-notification__toggle-main svg {
  display: block;
  width: 3.2rem;
  height: 3.2rem;
}

.menu {
  display: none;
}

.home {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.home__main {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.recent-trans {
  background-color: #ffffff;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.recent-trans__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.recent-trans__view-all {
  font-size: 1.4rem;
  font-weight: 500;
  color: #2dcb30 !important;
  cursor: pointer;
}

.sub-text {
  font-weight: 600;
}

.balances {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.6rem;
}
.balances__balance-tab {
  background-color: #ffffff;
  border-radius: 0.8rem;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.balances__tab-heading {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.balances__tab-heading svg {
  display: block;
  width: 2.4rem;
  color: #2dcb30;
}
.balances__bal-info {
  background-color: #fafafa;
  border-radius: 0.8rem;
  padding: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 500px) {
  .balances__bal-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.6rem;
  }
}
.balances__bal-amount {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.balances__bal-amount svg {
  display: block;
  width: 2.4rem;
  color: #2dcb30;
}
.balances__locked-bal {
  background-color: #ffffff;
  border-radius: 4px;
  font-size: 1.4rem;
  padding: 0.8rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.balances__locked-bal span {
  color: #808080;
}
.balances__locked-bal p {
  font-weight: 600;
}
.balances__amount {
  font-size: 3.2rem;
  font-weight: 700;
}
.balances__amount-sm {
  font-size: 2rem;
  font-weight: 700;
}
.balances__bank-info {
  background-color: #ffffff;
  border-radius: 0.8rem;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
@media (max-width: 295px) {
  .balances__bank-info {
    width: 100%;
  }
}
.balances__bank-name {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.balances__bank-name svg {
  display: block;
  width: 1.8rem;
  color: #ffa800;
}
.balances__text-sm {
  font-size: 1.4rem;
  color: #7d7d7d;
}
.balances__acct-details {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
@media (max-width: 295px) {
  .balances__acct-details {
    flex-direction: column;
    align-items: flex-start;
  }
}
.balances__acct-num {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.balances__acct-num p {
  font-size: 1.4rem;
  font-weight: 600;
}
.balances__acct-num svg {
  display: block;
  width: 2rem;
  color: #2dcb30;
}
.balances__acct-info {
  background-color: #fafafa;
  border-radius: 0.8rem;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.balances__manager-name {
  font-weight: 600;
}
.balances__acct-manager {
  background-color: #ffffff;
  border-radius: 0.8rem;
  padding: 0.8rem 0rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 385px) {
  .balances__acct-manager {
    flex-direction: column;
  }
}
.balances__manager-info {
  padding: 0rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
@media (max-width: 385px) {
  .balances__manager-info {
    padding: 1.6rem 0rem;
  }
}
.balances__manager-info:not(:last-child) {
  border-right: 1px solid #e9e9e9;
}
@media (max-width: 385px) {
  .balances__manager-info:not(:last-child) {
    border-bottom: 1px solid #e9e9e9;
    border-right: none;
  }
}
.balances__manager-info svg {
  display: block;
  width: 2rem;
  color: #e57d43;
}
@media (max-width: 385px) {
  .balances__manager-info svg {
    width: 1.6rem;
  }
}
.balances__manager-info span {
  color: #808080;
}
@media (max-width: 385px) {
  .balances__manager-info span {
    font-size: 1.2rem;
  }
}

.stats-tab {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.6rem;
}
@media (max-width: 650px) {
  .stats-tab {
    grid-template-columns: 1fr;
  }
}
.stats-tab__event-chart {
  display: flex;
  flex-direction: column;
  padding: 2.4rem;
  background-color: #ffffff;
  border-radius: 0.8rem;
}
.stats-tab__event-chart img {
  display: block;
  width: 100%;
  height: 25rem;
}
@media (max-width: 1130px) {
  .stats-tab__event-chart img {
    width: 45rem;
  }
}
@media (max-width: 410px) {
  .stats-tab__event-chart img {
    width: 30rem;
  }
}
.stats-tab__stats-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.4rem;
}
.stats-tab__event-stat {
  display: flex;
  justify-content: space-between;
  gap: 2.4rem;
  gap: 1.2rem;
}
.stats-tab__status {
  display: flex;
  align-items: center;
  gap: 6px;
}
.stats-tab__status p {
  font-size: 1.4rem;
  color: #a6a6a6;
}

.top-services {
  background-color: #fafafa;
  border-radius: 0.8rem;
  padding: 0rem 1.6rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.top-services__service-type {
  padding: 1.4rem 0rem;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-services__service-type:not(:last-child) {
  border-bottom: 2px solid #f2f2f2;
}
.top-services__service-type p {
  color: #7d7d7d;
}

.service-img-name {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.service-img-name img {
  width: 3.2rem;
  height: 3.2rem;
}

.service-provider-heading {
  font-weight: 600;
}

.status-mark {
  width: 1.4rem;
  height: 6px;
  border-radius: 4px;
}
.status-mark--complete {
  background-color: #05c168;
}
.status-mark--pending {
  background-color: #fdbd1a;
}
.status-mark--failed {
  background-color: #ff5a65;
}

.total-transact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}
@media (max-width: 920px) {
  .total-transact {
    grid-template-columns: 1fr;
  }
}
.total-transact__transact-tab {
  background-color: #ffffff;
  border-radius: 0.8rem;
  padding: 1.6rem 0rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 500px) {
  .total-transact__transact-tab {
    grid-template-columns: 1fr;
    padding: 0rem 1.6rem;
  }
}
.total-transact__reset {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.total-transact__reset svg {
  width: 2.4rem;
  height: 2.4rem;
}
.total-transact__transaction-details {
  padding: 0rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
@media (max-width: 500px) {
  .total-transact__transaction-details {
    padding: 1.6rem 0rem;
  }
}
.total-transact__transaction-details:not(:first-child) {
  border-left: 2px solid #f2f2f2;
}
@media (max-width: 500px) {
  .total-transact__transaction-details:not(:first-child) {
    border-left: none;
    border-top: 2px solid #f2f2f2;
  }
}
.total-transact__transaction-info {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.total-transact__transaction-info p {
  font-size: 1.4rem;
  color: #808080;
}
.total-transact__transaction-info svg {
  display: block;
  width: 2.4rem;
}
.total-transact__transaction-amount {
  background-color: #fafafa;
  border-radius: 0.8rem;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.total-transact__transaction-amount p {
  font-size: 1.8rem;
  font-weight: 600;
}
@media (max-width: 500px) {
  .total-transact__transaction-amount p {
    font-size: 1.6rem;
  }
}
.total-transact__transact-num {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  padding: 1.2rem 1.6rem;
}
.total-transact__transact-num p {
  font-size: 1.4rem;
  font-weight: 600;
}
.total-transact__transact-num span {
  font-size: 1.3rem;
  color: #a6a6a6;
}
.total-transact__wallet-transact {
  display: flex;
  justify-content: space-between;
}
.total-transact__acct-details {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.transact-icons {
  display: block;
  width: 2.4rem;
}
.transact-icons--orange {
  color: #e57d43;
}
.transact-icons--blue {
  color: #2080df;
}
.transact-icons--purple {
  color: #7448d2;
}
.transact-icons--orange-2 {
  color: #ee882b;
}

.transaction-details {
  padding: 4.8rem 2.4rem;
  display: flex;
  flex-direction: column;
}
.transaction-details__heading {
  text-align: center;
  margin-bottom: 4rem;
}
.transaction-details__infos {
  display: flex;
  flex-direction: column;
  overflow: auto;
}
.transaction-details__infos::-webkit-scrollbar {
  display: none;
}
.transaction-details__info {
  padding: 1.6rem;
  display: grid;
  grid-template-columns: 12rem 1fr;
  gap: 1.2rem;
}
.transaction-details__info-key {
  flex-shrink: 0;
  white-space: nowrap;
  color: var(--link-color);
}
.transaction-details__info-value {
  color: var(--favorites-text-color);
  word-break: break-word;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
}
.transaction-details__info-value--column {
  flex-direction: column;
  align-items: flex-end;
}
.transaction-details__info-value span {
  color: #2dcb30;
}
.transaction-details__info-value button {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2dcb30;
}
.transaction-details__info-value button svg {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
}
.transaction-details__info-value-inline {
  display: inline;
}
.transaction-details__status {
  padding: 0.6rem 1.6rem;
  border-radius: 10rem;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
}
.transaction-details__status--success {
  background-color: #eafaea;
  color: #25a727;
}
.transaction-details__status--failed {
  background-color: #ffeff0;
  color: #dc2b2b;
}
.transaction-details__status--pending {
  background-color: #fff6e4;
  color: #ffa800;
}
.transaction-details__status svg {
  display: block;
  width: 1.8rem;
  height: 1.8rem;
}

.statement__instruction {
  padding: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background-color: #fcf2ec;
  border-radius: 0.8rem;
}
.statement__instruction svg {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
}
.statement__instruction p {
  color: #444444;
  font-size: 1.5rem;
}
@media (max-width: 400px) {
  .statement__instruction p {
    font-size: 1.2rem;
  }
}
.statement__main {
  max-width: 60rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media (max-width: 700px) {
  .statement__main {
    max-width: initial;
    width: 100%;
  }
}
.statement__body {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.statement__flabel {
  font-size: 1.4rem;
  font-weight: 500;
}
.statement__fgroup-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
}
@media (max-width: 400px) {
  .statement__fgroup-grid {
    grid-template-columns: 1fr;
  }
}
.statement__contacts {
  flex: 1;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0.8rem;
  border: 1px solid #f2f2f2;
  padding: 1.6rem;
  height: 5.6rem;
}
.statement__select-time {
  color: #a3a3a3;
}
.statement__duration-info {
  font-size: 1.4rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.statement__duration-info svg {
  display: block;
  width: 2rem;
  height: 2rem;
  color: #e57d43;
}
.statement__duration-info span {
  color: #a6a6a6;
}
@media (max-width: 300px) {
  .statement__duration-info {
    font-size: 1.2rem;
  }
}
.statement__footer {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.statement__message {
  padding: 1.6rem;
  border-radius: 0.8rem;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  text-align: center;
}
.statement__message p:last-child span {
  color: #2dcb30;
}

.select-box {
  background-color: #ffffff;
  border: 1px solid #f2f2f2;
  border-radius: 0.8rem;
  padding: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.select-box__placeholder {
  color: #a6a6a6;
}

.setting {
  background-color: #ffffff;
  border-radius: 0.8rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media (max-width: 650px) {
  .setting {
    overflow: scroll;
  }
}
.setting__set-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid #f2f2f2;
}
.setting__set-type {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 1.5rem;
}
.setting__set-type span {
  color: #7d7d7d;
}
.setting__set-name {
  font-weight: 600;
}
.setting__set-mail {
  color: #808080;
}
.setting__set-site {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.transact-limit {
  background-color: #ffffff;
  border-radius: 0.8rem;
  padding: 2.4rem;
}
.transact-limit__transact-body {
  max-width: 80%;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media (max-width: 1050px) {
  .transact-limit__transact-body {
    max-width: 100%;
  }
}
.transact-limit__limit-note {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-radius: 0.8rem;
  background-color: #fff6e4;
  padding: 1.6rem;
}
@media (max-width: 345px) {
  .transact-limit__limit-note {
    padding: 0.8rem;
    font-size: 1.2rem;
    gap: 4px;
  }
}
.transact-limit__limit-note svg {
  display: block;
  width: 4rem;
  color: #ffa800;
}
@media (max-width: 345px) {
  .transact-limit__limit-note svg {
    width: 2rem;
  }
}
.transact-limit__limit-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.transact-limit__limit-text p {
  font-weight: 600;
}
.transact-limit__limit-text span {
  color: #808080;
}
.transact-limit__transact-info {
  border: 1px solid #f2f2f2;
  border-radius: 0.8rem;
}
.transact-limit__service-drop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem;
  border-bottom: 1px solid #f2f2f2;
}
.transact-limit__service-drop p {
  font-weight: 600;
}
.transact-limit__service-drop svg {
  display: block;
  width: 2.4rem;
}
.transact-limit__withdrawal-drop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem;
  margin-bottom: 0.8rem;
  border: 1px solid #f2f2f2;
  border-radius: 0.8rem;
}
.transact-limit__withdrawal-drop p {
  font-weight: 600;
}
.transact-limit__withdrawal-drop svg {
  display: block;
  width: 2.4rem;
}

.business-api {
  background-color: #ffffff;
  border-radius: 0.8rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.business-api__body {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.business-api__api-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  overflow: hidden;
}
.business-api__main {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  border-bottom: 1px solid #f2f2f2;
  padding-bottom: 2.4rem;
}
.business-api__api-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
}
.business-api__api-text {
  font-size: 1.4rem;
  color: #7d7d7d;
}
.business-api__live-link {
  display: flex;
  overflow: hidden;
}
.business-api__link-text {
  background-color: #ededed;
  padding: 1.6rem;
  color: #7d7d7d;
  border-top-left-radius: 0.8rem;
  border-bottom-left-radius: 0.8rem;
  flex: 1;
  height: 100%;
  overflow: scroll;
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none;
}
.business-api__input-text {
  padding: 1.6rem;
  border-radius: 0rem;
  border-top-left-radius: 0.8rem;
  border-bottom-left-radius: 0.8rem;
  border: 2px solid #e9e9e9;
  border-right: transparent;
  flex: 1;
  outline: none;
  height: 100%;
  width: fit-content;
}
.business-api__link-copy {
  background-color: #2dcb30;
  color: white;
  border-top-right-radius: 0.8rem;
  border-bottom-right-radius: 0.8rem;
  border: none;
  padding: 1.6rem 3.2rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.business-api__link-copy--2 {
  padding: 1.6rem 3.2rem;
  height: 5.6rem;
}
.business-api__generate-btn {
  width: 19rem;
  padding: 1.2rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background-color: #2dcb30;
  color: #ffffff;
  border-radius: 0.8rem;
  cursor: pointer;
}
.business-api__document {
  padding: 2.4rem;
  background-color: #fff6e4;
  border-radius: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.business-api__document span {
  color: #808080;
}
.business-api__document-text {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.business-api__document-text p {
  font-weight: 600;
}
.business-api__document-text svg {
  display: block;
  width: 2rem;
}
.business-api__ip-waitlist {
  padding: 2.4rem 1.6rem;
  border: 1px solid #f2f2f2;
  border-radius: 0.8rem;
}
.business-api__ip-waitlist-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid #f2f2f2;
}
.business-api__ip-waitlist-lists {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-top: 1.6rem;
}
.business-api__ip-waitlist-list {
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}

.limit-input {
  padding: 4rem 2.4rem;
  text-align: center;
  font-size: 2rem;
}

.header-hero {
  background-image: linear-gradient(to bottom, #0b1e0e, #153819);
  padding-top: 1rem;
}
@media (max-width: 720px) {
  .header-hero {
    height: 100%;
  }
}
@media (max-width: 490px) {
  .header-hero {
    padding-top: 0rem;
  }
}

.header-main {
  max-width: 150rem;
  margin: auto;
  padding: 2rem 4rem 0rem;
}
@media (max-width: 550px) {
  .header-main {
    padding: 2rem 3rem 0rem;
  }
}
.hero-event {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6.4rem;
  padding: 22rem 3rem 0rem;
}
@media (max-width: 450px) {
  .hero-event {
    padding: 18rem 3rem 0rem;
  }
}
.hero-event__hero-texts {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
}
.hero-event__mini-text {
  color: #ffffff;
  background-color: #e57d43;
  border-radius: 4rem;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 0.8rem 2rem;
}
@media (max-width: 490px) {
  .hero-event__mini-text {
    padding: 5px 1rem;
    font-size: 1.2rem;
    font-weight: 400;
  }
}
.hero-event__texts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}
.hero-event__text-bg {
  font-size: 6.4rem;
  font-family: "Tango Sans";
  font-weight: normal;
  text-align: center;
  color: #ffffff;
  text-transform: capitalize;
  max-width: 70rem;
  margin: auto;
  padding: 0rem 2rem;
}
@media (max-width: 950px) {
  .hero-event__text-bg {
    font-size: 4.8rem;
  }
}
@media (max-width: 490px) {
  .hero-event__text-bg {
    padding: 0rem 1rem;
    font-size: 3.6rem;
  }
}
.hero-event__text-bg span {
  color: #2dcb30;
}
.hero-event__text-sm {
  font-size: 2rem;
  color: #a3a3a3;
}
@media (max-width: 950px) {
  .hero-event__text-sm {
    font-size: 1.6rem;
    text-align: center;
  }
}
.hero-event__event-btns {
  margin-top: 3.6rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.hero-event__heroo-img {
  display: flex;
  justify-content: center;
  margin-top: 5rem;
  box-shadow: 0px -2px 120px 0px rgba(58, 205, 58, 0.2);
  overflow: hidden;
}
@media (max-width: 700px) {
  .hero-event__heroo-img {
    box-shadow: none;
  }
}
@media (max-width: 690px) {
  .hero-event__heroo-img {
    margin-top: 4rem;
  }
}
.hero-event__heroo-img img {
  max-width: 120rem;
  border-top-left-radius: 2.4rem;
  border-top-right-radius: 2.4rem;
  box-shadow: 0 4px 15px rgba(225, 0, 0, 0.5);
}
@media (max-width: 1210px) {
  .hero-event__heroo-img img {
    max-width: 90rem;
  }
}
@media (max-width: 950px) {
  .hero-event__heroo-img img {
    max-width: 70rem;
  }
}
@media (max-width: 690px) {
  .hero-event__heroo-img img {
    max-width: 100%;
  }
}

.features-section {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 10rem 30rem;
  background-color: #ffffff;
}
@media (max-width: 1400px) {
  .features-section {
    padding: 10rem 18rem;
  }
}
@media (max-width: 1200px) {
  .features-section {
    padding: 8rem 13rem;
  }
}
@media (max-width: 750px) {
  .features-section {
    padding: 8rem 3.5rem;
  }
}
@media (max-width: 490px) {
  .features-section {
    padding: 5rem 1.6rem;
  }
}
.features-section__why-plug {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  max-width: 50%;
}
@media (max-width: 1200px) {
  .features-section__why-plug {
    max-width: 60%;
  }
}
@media (max-width: 980px) {
  .features-section__why-plug {
    max-width: 100%;
  }
}
@media (max-width: 690px) {
  .features-section__why-plug {
    gap: 1rem;
  }
}
.features-section__features-info {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.features-section__features-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}
@media (max-width: 980px) {
  .features-section__features-layout {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 690px) {
  .features-section__features-layout {
    grid-template-columns: 1fr;
  }
}
.features-section__features-details {
  background-color: #f9fafb;
  border-radius: 0.8rem;
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.features-section__feature-text {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.features-section__feature-text h5 {
  font-size: 1.8rem;
  font-family: "Tango Sans";
  font-weight: normal;
}
.features-section__imgs {
  width: 100%;
}

.trusted-section {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 15rem 30rem;
  background-color: #1e1e1e;
}
@media (max-width: 1400px) {
  .trusted-section {
    padding: 10rem 18rem;
  }
}
@media (max-width: 1200px) {
  .trusted-section {
    padding: 8rem 13rem;
  }
}
@media (max-width: 690px) {
  .trusted-section {
    padding: 8rem 3.5rem;
  }
}
@media (max-width: 490px) {
  .trusted-section {
    padding: 5rem 1.6rem;
  }
}
.trusted-section__trusted-header {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 50%;
}
@media (max-width: 1200px) {
  .trusted-section__trusted-header {
    max-width: 100%;
  }
}
.trusted-section__trusted-body {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.trusted-section__trusted-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 980px) {
  .trusted-section__trusted-details {
    flex-direction: column;
    align-items: start;
    gap: 4rem;
  }
}
.trusted-section__list-details {
  padding: 2rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #e9e9e9;
}
.trusted-section__list-details:not(:last-child) {
  border-bottom: 1px solid #444444;
}
.trusted-section__list-details svg {
  display: block;
  width: 2.4rem;
}
.trusted-section__trusted-img img {
  display: block;
  width: 55rem;
  height: 100%;
}
@media (max-width: 980px) {
  .trusted-section__trusted-img img {
    width: 100%;
  }
}

.testimonial {
  padding: 10rem 30rem 5rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media (max-width: 1400px) {
  .testimonial {
    padding: 10rem 18rem 5rem;
  }
}
@media (max-width: 1200px) {
  .testimonial {
    padding: 8rem 13rem 5rem;
  }
}
@media (max-width: 750px) {
  .testimonial {
    padding: 8rem 3.5rem 5rem;
  }
}
@media (max-width: 490px) {
  .testimonial {
    padding: 5rem 1.6rem;
  }
}
.testimonial__testi-body {
  display: grid;
  grid-template-columns: 50rem 1fr;
  gap: 2.4rem;
}
@media (max-width: 980px) {
  .testimonial__testi-body {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}
.testimonial__testi-details {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 8rem 6rem;
  background-color: #f2f3f3;
  border-radius: 2rem;
}
@media (max-width: 1200px) {
  .testimonial__testi-details {
    padding: 6rem 5rem;
    gap: 2.4rem;
  }
}
@media (max-width: 600px) {
  .testimonial__testi-details {
    padding: 4rem 3rem;
    gap: 1.6rem;
  }
}
@media (max-width: 490px) {
  .testimonial__testi-details {
    padding: 2rem;
    gap: 1.2rem;
  }
}
.testimonial__testi-details svg {
  display: block;
  width: 6.4rem;
}
@media (max-width: 1200px) {
  .testimonial__testi-details svg {
    width: 4.8rem;
  }
}
@media (max-width: 600px) {
  .testimonial__testi-details svg {
    width: 4rem;
  }
}
@media (max-width: 490px) {
  .testimonial__testi-details svg {
    width: 2.4rem;
  }
}
.testimonial__testi-details h5 {
  font-size: 2.4rem;
  font-weight: 600;
  max-width: 70rem;
}
@media (max-width: 1200px) {
  .testimonial__testi-details h5 {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .testimonial__testi-details h5 {
    font-size: 2rem;
  }
}
.testimonial__testi-name {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
@media (max-width: 490px) {
  .testimonial__testi-name {
    gap: 4px;
  }
}
.testimonial__testi-name p {
  font-weight: 600;
}
.testimonial__testi-name span {
  color: #6f8195;
  font-size: 1.4rem;
}
.testimonial__testi-icons {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.testimonial__testi-img {
  width: 100%;
}
.testimonial__testi-img img {
  display: block;
  width: 100%;
  border-radius: 2rem;
}
.testimonial__testi-dots {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.testimonial__left-arrow {
  width: 100%;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 100%;
  background-color: #2dcb30;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial__left-arrow svg {
  display: block;
  width: 2.4rem;
}
.testimonial__testi-arrows {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}

.upgrade-section {
  padding: 5rem 30rem 10rem;
}
@media (max-width: 1400px) {
  .upgrade-section {
    padding: 5rem 18rem 10rem;
  }
}
@media (max-width: 1200px) {
  .upgrade-section {
    padding: 5rem 13rem 10rem;
  }
}
@media (max-width: 750px) {
  .upgrade-section {
    padding: 3rem 3.5rem 8rem;
  }
}
@media (max-width: 490px) {
  .upgrade-section {
    padding: 3rem 1.6rem 5rem;
  }
}
.upgrade-section__upgrade-bg {
  background-image: url(../img/upgrade-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7rem 0rem 0rem 7rem;
}
@media (max-width: 980px) {
  .upgrade-section__upgrade-bg {
    flex-direction: column;
    align-items: start;
    gap: 4rem;
    padding: 6rem 6rem 0rem 6rem;
  }
}
@media (max-width: 490px) {
  .upgrade-section__upgrade-bg {
    padding: 4rem 2.4rem 0rem;
  }
}
.upgrade-section__upgrade-details {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media (max-width: 1200px) {
  .upgrade-section__upgrade-details {
    gap: 3rem;
  }
}
.upgrade-section__upgrade-info {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 60rem;
}
@media (max-width: 980px) {
  .upgrade-section__upgrade-info {
    max-width: 100%;
  }
}
.upgrade-section__upgrade-info h5 {
  font-size: 2.8rem;
  font-family: "Tango Sans";
  font-weight: normal;
}
@media (max-width: 1200px) {
  .upgrade-section__upgrade-info h5 {
    font-size: 2.6rem;
  }
}
@media (max-width: 490px) {
  .upgrade-section__upgrade-info h5 {
    font-size: 2.2rem;
  }
}
.upgrade-section__upgrade-info p {
  font-size: 2rem;
  color: #7d7d7d;
}
@media (max-width: 1200px) {
  .upgrade-section__upgrade-info p {
    font-size: 1.8rem;
  }
}
.upgrade-section__upgrade-img img {
  display: block;
  max-width: 50rem;
}
@media (max-width: 1200px) {
  .upgrade-section__upgrade-img img {
    max-width: 35rem;
  }
}
@media (max-width: 980px) {
  .upgrade-section__upgrade-img img {
    max-width: 100%;
  }
}

.socials-section {
  padding: 5rem 30rem 5rem;
  border-top: 1px solid #e9e9e9;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1400px) {
  .socials-section {
    padding: 5rem 18rem 5rem;
  }
}
@media (max-width: 1200px) {
  .socials-section {
    padding: 5rem 13rem 5rem;
  }
}
@media (max-width: 690px) {
  .socials-section {
    padding: 5rem 3.5rem 5rem;
    flex-direction: column;
    gap: 3rem;
  }
}
@media (max-width: 490px) {
  .socials-section {
    padding: 5rem 1.6rem 4rem;
  }
}
.socials-section__social-details {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  max-width: 30%;
}
@media (max-width: 1200px) {
  .socials-section__social-details {
    max-width: 40%;
  }
}
@media (max-width: 980px) {
  .socials-section__social-details {
    max-width: 50%;
  }
}
@media (max-width: 690px) {
  .socials-section__social-details {
    max-width: 100%;
  }
}
.socials-section__social-logo {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
@media (max-width: 490px) {
  .socials-section__social-logo {
    gap: 1.6rem;
  }
}
.socials-section__social-logo p {
  color: #7d7d7d;
}
.socials-section__social-icons {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.socials-section__social-links {
  display: flex;
  gap: 9.6rem;
}
@media (max-width: 950px) {
  .socials-section__social-links {
    gap: 5rem;
  }
}
.socials-section__social-links ul,
.socials-section__social-links li {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
@media (max-width: 490px) {
  .socials-section__social-links ul,
  .socials-section__social-links li {
    gap: 1.2rem;
  }
}
.socials-section__social-links ul li:first-child,
.socials-section__social-links li li:first-child {
  color: #7d7d7d;
  font-family: "Tango Sans";
  font-weight: normal;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 2.4rem;
}
.footer p {
  color: #a3a3a3;
}
@media (max-width: 490px) {
  .footer p {
    font-size: 1.2rem;
  }
}

.text-colored {
  color: #e57d43;
  font-size: 1.3rem;
  font-weight: 500;
  text-transform: uppercase;
}

.text-sm {
  color: #7d7d7d;
}

.dots-icon {
  height: 1.4rem;
  width: 1.4rem;
  background-color: #2dcb30;
  border-radius: 100%;
}
.dots-icon--default {
  background-color: #e9e9e9;
}

.onboarding {
  width: 120rem;
  max-width: calc(100dvw - 2.4rem);
  padding: 2.4rem 0;
  margin: auto;
}
.onboarding__main {
  width: 100rem;
  max-width: 100%;
  margin: auto;
}
.onboarding__top {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  margin-bottom: 3.2rem;
}
.onboarding__top-logout {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #808080;
  cursor: pointer;
  height: 4.8rem;
}
.onboarding__top-logout svg {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
}
.onboarding__header {
  background-color: #eafaea;
  padding: 2.4rem;
  border-radius: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  text-align: center;
}
.onboarding__header h1 {
  font-size: 3.2rem;
  font-weight: 400;
  font-family: "Tango Sans";
}
.onboarding__header p {
  font-size: 1.8rem;
  color: #5f606a;
}

.onboarding-form {
  padding: 1.6rem 0;
  border-bottom: 1px solid #e6e6e6;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.onboarding-form--opaque {
  opacity: 0.5;
  pointer-events: none;
}
.onboarding-form__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.onboarding-form__header span {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid #ffa800;
  border-radius: 0.8rem;
  background-color: #fff6e4;
  color: #4d4d4d;
  padding: 4px 1.2rem;
}
.onboarding-form__header span svg {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
}
.onboarding-form__main {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding-bottom: 1.6rem;
}
.onboarding-form__input-block {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.onboarding-form__label {
  flex: 0 0 30rem;
  text-align: right;
}
.onboarding-form__input {
  flex: 1;
}
.onboarding-form__verif-input {
  display: flex;
  gap: 1.6rem;
}
.onboarding-form__verif-input > *:first-child {
  flex: 1;
}
.onboarding-form__verif-input > *:last-child {
  width: auto;
  padding: 0 2.4rem;
}
.onboarding-form__pin-input-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  padding: 2.4rem;
  background-color: #fff;
  border-radius: 0.8rem;
  justify-content: center;
}
.onboarding-form__pin-input-btn {
  color: #e57d43;
}
.onboarding-form__kyc-failed {
  padding: 0.8rem 1.2rem;
  border-radius: 0.8rem;
  background-color: #fdede8;
  font-size: 1.4rem;
  color: #eb6237;
  margin-top: 0.8rem;
}
.onboarding-form__alert {
  padding: 1.6rem 2.4rem;
  border-radius: 0.8rem;
  background-color: #fcf0e9;
  color: #808080;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.onboarding-form__alert svg {
  color: #e57d43;
  display: block;
  width: 2.4rem;
  height: 2.4rem;
}
.onboarding-form__footer-text {
  text-align: center;
}
.onboarding-form__footer-text a {
  color: #25a727;
  text-decoration: underline;
}

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