@charset "UTF-8";
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
}

body {
  box-sizing: border-box;
  background: #fff;
  font-size: 1.6rem;
  font-family: "NeurialGrotesk", sans-serif;
  font-weight: 300;
  line-height: 1.6;
  color: #011d28;
}
@media (max-width: 768px) {
  body {
    background: white;
  }
}

button {
  font-family: inherit;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

.cursor {
  cursor: pointer;
}

.sidebar {
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  background: #f4f6f4;
  border-radius: 0;
}
@media screen and (max-width: 768px) {
  .sidebar {
    position: fixed;
    background: var(--sidebar-bg);
    width: 25rem;
    z-index: 3;
    height: 100vh;
    background: #fff;
    display: none;
  }
}
.sidebar__head {
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sidebar__head h2 {
  color: #00af66;
  font-weight: 500;
}
.sidebar__body {
  padding-left: 2rem;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.sidebar__menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.sidebar__menu__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  height: 5rem;
  text-decoration: none;
  color: #565c5c;
  font-size: 1.5rem;
  font-weight: 300;
  padding-left: 1rem;
}
.sidebar__menu__item img {
  width: 18px;
}
.sidebar__menu__item.active {
  background: #00af66;
  color: #f4f6f4;
  border-radius: 0.7rem 0 0 0.7rem;
}
.sidebar__menu__item.active img {
  filter: invert(100%) sepia(200%) saturate(10%) hue-rotate(224deg) brightness(406%) contrast(100%);
}
.sidebar .close-sidebar {
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  display: none;
}
@media screen and (max-width: 768px) {
  .sidebar .close-sidebar {
    display: block;
  }
}
.sidebar .close-sidebar img {
  width: 15px;
}

.search {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.search img {
  width: 25px;
}
.search input {
  width: 200px;
  height: 3rem;
  font-family: inherit;
  font-weight: 300;
  font-size: 1.4rem;
  border: none;
  color: #565c5c;
}

.wallet__balance {
  background: rgb(0, 175, 102);
  background: linear-gradient(149deg, rgb(0, 175, 102) 30%, rgb(0, 131, 77) 100%);
  width: 100%;
  padding: 2rem;
  border-radius: 1rem;
  height: 187px;
}
@media screen and (max-width: 768px) {
  .wallet__balance {
    height: 160px;
    padding: 1.5rem;
    width: 300px;
  }
}
.wallet__balance__title {
  color: #fff;
  opacity: 0.8;
  font-size: 1.4rem;
  font-weight: 300;
}
.wallet__balance__amount {
  padding-top: 0.5rem;
  color: #fff;
  opacity: 0.9;
  font-size: 3rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .wallet__balance__amount {
    font-size: 2.5rem;
    line-height: 3rem;
  }
}
.wallet__balance__buttons {
  padding-top: 3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .wallet__balance__buttons {
    padding-top: 2rem;
  }
}
.wallet__balance__buttons button,
.wallet__balance__buttons a {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.6431372549);
  padding: 1rem 2rem;
  cursor: pointer;
  border-radius: 2rem;
  font-weight: 300;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  line-height: 0;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .wallet__balance__buttons button,
  .wallet__balance__buttons a {
    padding: 1rem 1.2rem;
  }
}
.wallet__balance__buttons button img,
.wallet__balance__buttons a img {
  width: 17px;
}

.bills__service {
  margin-top: 3rem;
  border: 1px solid #e9e9e9;
  border-radius: 1rem;
  padding: 2rem;
}
@media screen and (max-width: 768px) {
  .bills__service {
    padding: 1.5rem;
  }
}
.bills__service__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.bills__service__head .title {
  color: #565c5c;
  font-size: 1.5rem;
  font-weight: 300;
}
.bills__service__head a {
  color: #00af66;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 300;
}
.bills__service__list {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .bills__service__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.bills__service__item {
  border: 1px solid #e9e9e9;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.5rem;
  width: 150px;
  text-decoration: none;
  gap: 2rem;
  transition: ease-in 0.2s;
}
.bills__service__item:hover {
  background: #f4f6f4;
}
.bills__service__item img {
  width: 35px;
}
.bills__service__item span {
  color: #565c5c;
  font-size: 1.5rem;
}

.table {
  margin-top: 3rem;
  border: 1px solid #e9e9e9;
  border-radius: 1rem;
}
.table__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #e9e9e9;
}
.table__head__title {
  font-size: 1.5rem;
  font-weight: 300;
  color: #565c5c;
}
@media screen and (max-width: 768px) {
  .table__head__title {
    font-size: 1.4rem;
  }
}
.table__filter {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.table__filter .form-box {
  margin-bottom: 0;
}
.table__main {
  width: 100%;
  border-collapse: collapse;
}
@media screen and (max-width: 768px) {
  .table__main {
    display: block;
    overflow-x: auto;
  }
}
.table__main thead tr {
  background: #f4f6f4;
  border: none;
  height: 50px;
  text-align: left;
  font-size: 1.4rem;
  line-height: 16px;
  color: #808287;
}
.table__main thead tr th {
  color: #565c5c;
  font-size: 1.4rem;
  font-weight: 300;
  padding-left: 2rem;
}
.table__main tbody tr {
  height: 45px;
  border-bottom: 1px solid rgba(233, 233, 233, 0.568627451);
  color: #565c5c;
  font-size: 1.3rem;
  line-height: 16px;
}
.table__main tbody tr:last-child {
  border-bottom: none;
}
.table__main tbody tr td {
  padding-left: 2rem;
  font-weight: 300;
  color: #565c5c;
  font-size: 1.4rem;
  font-weight: 300;
}
.table__main tbody tr td:last-child {
  padding-right: 2rem;
}
.table__main tbody tr td span {
  white-space: pre;
}
.table .table__link {
  display: flex;
  align-items: center;
  height: 4.5rem;
  gap: 1rem;
  text-decoration: none;
  color: #565c5c;
}
.table .table__link img {
  width: 28px;
  height: 28px;
}
.table .date-time span:first-child::after {
  content: " -";
  color: #565c5c;
}

.logo {
  color: #00af66;
  font-weight: 500;
  font-size: 2.5rem;
}
@media screen and (max-width: 768px) {
  .logo {
    font-size: 2rem;
  }
}

.naira {
  font-family: sans-serif;
}

.grid-2-gap-20 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.hide-mobile {
  display: block !important;
}

.hide-pc {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
  .hide-pc {
    display: block !important;
  }
}
.form-box {
  margin-bottom: 1rem;
}
.form-box label {
  font-size: 1.4rem;
  font-weight: 300;
  color: #010101;
  display: block;
  padding-bottom: 0.5rem;
}
.form-box input,
.form-box textarea {
  width: 100%;
  border: 1px solid #e9e9e9;
  height: 4.5rem;
  border-radius: 0.6rem;
  padding: 0rem 1rem;
  font-family: inherit;
  font-size: 1.4rem;
  color: #565c5c;
  font-weight: 300;
  transition: ease-in-out 0.2s;
}
.form-box input:focus,
.form-box textarea:focus {
  border: 1px solid #00af66;
  padding: 1rem;
}
.form-box textarea {
  height: 100px;
}
.form-box select {
  width: 100%;
  border: 1px solid #e9e9e9;
  height: 4rem;
  border-radius: 0.6rem;
  padding: 0rem 1rem;
  font-family: inherit;
  font-size: 1.5rem;
  color: #565c5c;
  font-weight: 300;
  background-image: url("/assets/img/dropdown-icon.svg");
  background-repeat: no-repeat;
  -webkit-appearance: none;
  background-position: calc(100% - 0.5rem) 50%;
  padding-right: 3rem;
  background-size: 20px;
}
.form-box .small {
  color: #565c5c;
  font-size: 1.2rem;
  font-family: 300;
  opacity: 0.8;
}

.success {
  font-size: 1.1rem;
  background: #E5F5ED;
  color: #00af66;
  padding: 0.3rem 0.6rem;
  border-radius: 1rem;
  font-weight: 300;
  background-image: url("/assets/img/check-icon.svg");
  background-repeat: no-repeat;
  padding-left: 2rem;
  background-size: 15px;
  background-position: 5px 3px;
}

.fail {
  font-size: 1.1rem;
  background: #FADCDD;
  color: #B9242C;
  padding: 0.3rem 0.6rem;
  border-radius: 1rem;
  font-weight: 300;
  background-image: url("/assets/img/close-red-icon.svg");
  background-repeat: no-repeat;
  padding-left: 2rem;
  background-size: 12px;
  background-position: 5px 3px;
}

.btn-full {
  margin-top: 3rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #00af66;
  border-radius: 0.5rem;
  text-decoration: none;
  color: #fff;
  font-size: 1.5rem;
  padding: 0.8rem 0;
  font-weight: 400;
  border: none;
  cursor: pointer;
  height: 4.2rem;
}
@media screen and (max-width: 768px) {
  .btn-full {
    font-size: 1.3rem;
  }
}

.primary-btn {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #00af66;
  border-radius: 0.5rem;
  text-decoration: none;
  color: #fff;
  font-size: 1.5rem;
  padding: 0.8rem 2rem;
  font-weight: 400;
  border: none;
  cursor: pointer;
  height: 4.2rem;
}
@media screen and (max-width: 768px) {
  .primary-btn {
    font-size: 1.3rem;
  }
}

/**************************
  Basic Modal Styles
**************************/
.modal {
  font-family: inherit;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.416);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.modal__container {
  width: 514px;
  height: 100%;
  max-width: 100%;
  overflow-y: auto;
  box-sizing: border-box;
  background: #ffffff;
  border-radius: 6px;
}

@supports (display: flex) {
  .modal__container {
    height: initial;
    max-height: 80vh;
  }
  @media (max-width: 768px) {
    .modal__container {
      max-height: -moz-fit-content;
      max-height: fit-content;
    }
  }
}
.modal__header {
  position: relative;
  display: block;
  height: 30px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e9e9e9;
  padding: 1.8rem 2rem;
}
.modal__header h2 {
  font-size: 1.7rem;
  font-weight: 400;
  color: #000;
  opacity: 0.8;
}

.modal__footer {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #dbdbdb;
  gap: 1rem;
}
@media (max-width: 768px) {
  .modal__footer {
    padding: 0 2rem;
  }
}
.modal__footer button,
.modal__footer a {
  width: 165px;
  height: 44px;
  border-radius: 0.4rem;
}
.modal__footer button.modal__btn,
.modal__footer a.modal__btn {
  border: 1px solid #00af66;
  background: #f4f8ff;
  color: #00af66;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 24px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal__footer button.modal__btn-primary,
.modal__footer a.modal__btn-primary {
  border: 1px solid #00af66;
  background: #00af66;
  color: #fefefe;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 24px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

@supports (display: flex) {
  .modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: initial;
    margin-bottom: 0px;
  }
}
.modal__title {
  position: absolute;
  top: 20px;
  left: 20px;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  box-sizing: border-box;
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 0;
  cursor: pointer;
  margin: 0px;
  padding: 0px;
}

@supports (display: flex) {
  .modal__title {
    position: static;
  }
  .modal__close {
    position: static;
  }
}
.modal__header .modal__close:before {
  content: "✕";
}

.modal__content {
  margin: 1rem 2.4rem;
  color: rgba(0, 0, 0, 0.8);
}

@supports (display: flex) {
  .modal__content {
    margin-top: 2rem;
    margin-bottom: 2rem;
    line-height: 1.5;
  }
}
/**************************
    Demo Animation Style
  **************************/
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  .modal__container {
    width: 90% !important;
    min-width: 90% !important;
  }
  @supports (display: flex) {
    .modal__container {
      width: 90% !important;
      min-width: 90% !important;
    }
  }
}
@media (max-width: 768px) {
  .modal__container {
    max-height: -moz-fit-content;
    max-height: 90%;
  }
}
.setup__pin__text {
  color: #565c5c;
  font-size: 1.6rem;
  text-align: center;
  padding: 1rem 0;
}

.bank__info {
  background: #dff4e9;
  width: 100%;
  padding: 2rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 187px;
}
@media screen and (max-width: 768px) {
  .bank__info {
    height: 160px;
    padding: 1.5rem;
    width: 300px;
  }
}
.bank__info__title {
  font-size: 1.8rem;
  color: #000;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .bank__info__title {
    font-size: 1.6rem;
  }
}
.bank__info__flex {
  display: flex;
  align-items: center;
}
.bank__info .line {
  margin: 0 2rem;
  display: block;
  background: #cacaca;
  height: 5rem;
  width: 1px;
}
@media screen and (max-width: 768px) {
  .bank__info .line {
    height: 4rem;
  }
}
.bank__info__text span {
  font-size: 1.5rem;
  color: #565c5c;
  display: block;
  padding-bottom: 0.2rem;
}
@media screen and (max-width: 768px) {
  .bank__info__text span {
    font-size: 1.3rem;
  }
}
.bank__info__text h3 {
  font-size: 2rem;
  color: #000;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .bank__info__text h3 {
    font-size: 1.7rem;
  }
}

.pagination {
  display: flex;
  padding: 0 2rem;
  margin: 2rem 0;
}
.pagination__list {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.pagination__item {
  margin: 0 0.25rem;
}
.pagination__link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 3.5rem;
  padding: 0 1rem;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  color: #333;
  text-decoration: none;
  font-size: 1.4rem;
  background-color: #fff;
  transition: all 0.3s ease;
}
.pagination__link:hover, .pagination__link:focus {
  background-color: #dee2e6;
  color: #027244;
}
.pagination__link--active {
  background-color: #00af66;
  border-color: #00af66;
  color: #fff;
  font-weight: 500;
}
.pagination__link--active:hover, .pagination__link--active:focus {
  background-color: #027244;
  border-color: #027244;
  color: #fff;
}
.pagination__link--prev, .pagination__link--next {
  padding: 0 1.5rem;
}

@media (max-width: 576px) {
  .pagination__item:not(:first-child):not(:last-child):not(:nth-child(2)):not(:nth-last-child(2)) {
    display: none;
  }
  .pagination__link {
    min-width: 2rem;
    height: 3rem;
    font-size: 1.2rem;
  }
  .pagination__link--prev, .pagination__link--next {
    padding: 0 0.5rem;
  }
}
.dashboard {
  display: grid;
  grid-template-columns: 26rem auto;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .dashboard {
    width: 100%;
    grid-template-columns: 1fr;
    display: block;
  }
}
.dashboard__main__content {
  padding: 3rem 4rem;
}
@media screen and (max-width: 768px) {
  .dashboard__main__content {
    padding: 3rem 2rem;
  }
}
.dashboard__main__content-greetings {
  margin-bottom: 2.5rem;
}
.dashboard__main__content-greetings h3 {
  font-size: 2rem;
  color: #565c5c;
  padding-bottom: 0.5rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .dashboard__main__content-greetings h3 {
    font-size: 1.6rem;
  }
}
.dashboard__main__content-greetings p {
  font-size: 1.5rem;
  color: #565c5c;
  opacity: 0.8;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .dashboard__main__content-greetings p {
    font-size: 1.4rem;
  }
}
.dashboard__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 4rem;
}
.dashboard__title__link {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.dashboard__title .first {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.dashboard__title .first img {
  width: 30px;
}
.dashboard__title .first a {
  text-decoration: none;
  line-height: 0;
}
.dashboard__title .first h2 {
  font-size: 2rem;
  font-weight: 400;
  color: #565c5c;
}
@media screen and (max-width: 768px) {
  .dashboard__title .first h2 {
    font-size: 1.6rem;
  }
}

.topbar {
  height: 6.6rem;
  background: #fff;
  border-bottom: 1px solid #f4f6f4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5rem;
  position: sticky;
  top: 0;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .topbar {
    width: 100%;
    padding: 0 2rem;
  }
}
.topbar__right {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.topbar__profile {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #565c5c;
  font-size: 1.5rem;
  font-weight: 400;
}
.topbar__profile img {
  width: 40px;
}
.topbar__notification {
  background: none;
  border: none;
  cursor: pointer;
}
.topbar__notification img {
  width: 25px;
}
.topbar .mobile-menu {
  background: #e7eae7;
  width: 32px;
  height: 32px;
  border-radius: 50px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.topbar .mobile-menu img {
  width: 25px;
}

.topbar-first {
  display: flex;
  align-items: center;
  gap: 2rem;
  display: none;
}
@media screen and (max-width: 768px) {
  .topbar-first {
    display: flex;
  }
}

.dashboard__wallet__bank__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .dashboard__wallet__bank__grid {
    overflow: auto;
  }
}

.auth__container {
  width: 100%;
  height: 100vh;
  background: url("/assets/img/auth-bg.svg");
  background-position: center;
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth__box {
  width: 1000px;
  max-width: 100%;
  height: 650px;
  background: #fff;
  border-radius: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.auth__box__form {
  width: 370px;
  padding-top: 3rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.auth__box__form-text {
  margin-top: 2rem;
  text-align: center;
}
.auth__box__form-text h3 {
  font-size: 2rem;
  color: #191919;
  font-weight: 500;
}
.auth__box__form-text p {
  color: #565c5c;
  font-size: 1.4rem;
  font-weight: 300;
  padding-top: 0.5rem;
}
.auth__box__form-container {
  margin-top: 4rem;
  width: 100%;
}
.auth__box__ads {
  background: #DEEDE6;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}
.auth__btn {
  background: #00af66;
  width: 100%;
  margin-top: 1rem;
  height: 4rem;
  cursor: pointer;
  border-radius: 0.6rem;
  border: none;
  color: #fff;
}
.auth__disclaimer {
  color: #565c5c;
  font-size: 1.4rem;
  font-weight: 300;
  padding-bottom: 1rem;
  display: block;
}
.auth__disclaimer a {
  text-decoration: none;
  color: #00af66;
}
.auth__link {
  color: #565c5c;
  font-size: 1.4rem;
  font-weight: 300;
  padding-bottom: 1rem;
  display: block;
  padding-top: 2rem;
  text-align: center;
}
.auth__link a {
  text-decoration: none;
  color: #00af66;
}

.auth2__container {
  width: 100%;
  height: 100vh;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr minmax(0, 1.4fr);
}
.auth2__form {
  width: 400px;
  margin: 0 auto;
  padding-top: 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.auth2__form__text {
  padding-top: 2rem;
}
.auth2__form__text h3 {
  font-size: 2rem;
  color: #191919;
  font-weight: 500;
}
.auth2__form__text p {
  color: #565c5c;
  font-size: 1.4rem;
  font-weight: 300;
  padding-top: 0.5rem;
}
.auth2__ads {
  position: relative;
  background: #CFDFD7;
}
.auth2__ads figure img {
  position: absolute;
  bottom: 0;
  right: 0;
}
.auth2__ads__text {
  padding: 5rem;
}
.auth2__ads__text p {
  font-size: 1.8rem;
  color: #000;
  font-weight: 300;
}

.transaction__details {
  margin-top: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.transaction__details__box {
  width: 450px;
  text-align: center;
}
.transaction__details__box .top {
  margin-bottom: 2rem;
}
.transaction__details__box .top img {
  width: 70px;
}
.transaction__details__box .top h3 {
  color: #000;
  font-size: 1.8rem;
  font-weight: 500;
  padding-top: 1rem;
  opacity: 0.9;
}
.transaction__details__box .top p {
  font-size: 1.5rem;
  color: #565c5c;
}
.transaction__details__box-info {
  background: #f4f6f4;
  border-radius: 1rem;
  padding: 2rem;
}
.transaction__details__box-info .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.2rem;
}
.transaction__details__box-info .item .title {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.8rem;
  color: #565c5c;
}
@media screen and (max-width: 768px) {
  .transaction__details__box-info .item .title {
    font-size: 1.2rem;
  }
}
.transaction__details__box-info .item .answer {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.8rem;
  color: #000;
}
@media screen and (max-width: 768px) {
  .transaction__details__box-info .item .answer {
    font-size: 1.3rem;
  }
}
.transaction__details__box-pin {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
}
.transaction__details__box-pin h3 {
  font-size: 1.8rem;
  font-weight: 400;
  color: #000;
  opacity: 0.8;
  padding-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .transaction__details__box-pin h3 {
    font-size: 1.5rem;
  }
}

.transactions-preview-price {
  text-align: center;
  font-size: 2.5rem;
  padding-bottom: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .transactions-preview-price {
    font-size: 2rem;
  }
}

.pin-input {
  width: 40px;
  height: 40px;
  font-size: 18px;
  text-align: center;
  border: 1px solid #e9e9e9;
  border-radius: 0.5rem;
  margin: 5px;
}

.bills__box {
  border: 1px solid #e9e9e9;
  width: 500px;
  max-width: 100%;
  margin: 0 auto;
  padding: 2rem 4rem 3rem;
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  .bills__box {
    padding: 2rem;
  }
}
.bills__box__title {
  text-align: center;
  margin-bottom: 3rem;
}
.bills__box__title img {
  width: 40px;
}
.bills__box__title h3 {
  font-size: 1.7rem;
  font-weight: 500;
  padding-top: 0.2rem;
  color: #000;
  opacity: 0.8;
}
.bills__box__provider {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.bills__box__provider-item {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.bills__box__provider-item input {
  display: none;
}
.bills__box__provider-item label {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  cursor: pointer;
  transition: ease-in 0.1s;
  border: 1px solid #e9e9e9;
  padding: 0.6rem 1rem;
  border-radius: 0.5rem;
}
.bills__box__provider-item label span {
  color: #565c5c;
  font-size: 1.3rem;
}
.bills__box__provider-logo {
  line-height: 0;
  cursor: pointer;
}
.bills__box__provider-logo img {
  width: 30px;
}
.bills__box__form .form-box {
  margin-bottom: 2rem;
}

.bills__box__provider-item input[type=radio]:checked + label {
  border: 1px solid #00af66;
}

.payment-link__btn {
  background: #00af66;
  display: flex;
  padding: 1rem 1.2rem;
  border-radius: 0.5rem;
  color: #fff;
  font-size: 1.4rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.payment__link__box {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .payment__link__box {
    grid-template-columns: 1fr;
  }
}

.payment__link__data {
  border: 1px solid #f1f1f1;
  background: #f4f6f4;
  padding: 2rem;
  border-radius: 0.5rem;
  border: 1px solid #c2cec8;
}
.payment__link__data span {
  color: #565c5c;
  font-size: 1.3rem;
  text-transform: uppercase;
  display: block;
  padding-bottom: 0.6rem;
}
@media screen and (max-width: 768px) {
  .payment__link__data span {
    font-size: 1.2rem;
  }
}
.payment__link__data h2 {
  font-size: 3rem;
  color: #000;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .payment__link__data h2 {
    font-size: 2.5rem;
  }
}

.payment-link-preview {
  border: 1px solid #00af66;
  padding: 0.3rem 0.6rem;
  font-size: 1.3rem;
  font-weight: 300;
  color: #00af66;
  text-decoration: none;
  border-radius: 0.5rem;
  line-height: 1.5rem;
  text-wrap: nowrap;
}

.copy-icon {
  border: none;
  background: none;
  cursor: pointer;
}

.payment-link-details {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.payment-link-success {
  width: 500px;
  max-width: 100%;
  margin: 10rem auto;
}
@media screen and (max-width: 768px) {
  .payment-link-success {
    padding: 2rem;
  }
}
.payment-link-success .content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.payment-link-success .content img {
  width: 120px;
}
@media screen and (max-width: 768px) {
  .payment-link-success .content img {
    width: 100px;
  }
}
.payment-link-success .content h2 {
  padding-top: 3rem;
  font-size: 3rem;
  font-weight: 500;
  padding-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
  .payment-link-success .content h2 {
    font-size: 2rem;
  }
}
.payment-link-success .content p {
  color: #565c5c;
  font-size: 1.5rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .payment-link-success .content p {
    font-size: 1.3rem;
  }
}

.payment-link-link {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 3rem;
  background: #f4f6f4;
  border-radius: 0.5rem;
  border: 1px solid #c2cec8;
  width: 100%;
  padding: 1rem;
}
.payment-link-link span {
  color: #565c5c;
  font-size: 1.4rem;
  font-weight: 300;
}
.payment-link-link a {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #00af66;
  font-size: 1.3rem;
  text-decoration: none;
}
.payment-link-link .link-icon {
  width: 20px !important;
}

.payment-link-success-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}
.payment-link-success-footer .done {
  border: 1px solid #00af66;
  padding: 0.5rem 1.5rem;
  color: #00af66;
  font-size: 1.4rem;
  text-decoration: none;
  border-radius: 0.5rem;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.payment-link-success-footer .copy-link {
  display: block;
  border: 1px solid #00af66;
  background: #00af66;
  color: #fff;
  padding: 0.5rem 2rem;
  font-size: 1.4rem;
  text-decoration: none;
  border-radius: 0.5rem;
  cursor: pointer;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment__link__details {
  background: #f4f6f4;
  width: 100%;
  border: 1px solid #c2cec8;
  border-radius: 0.8rem;
  padding: 2rem;
  margin-bottom: 2rem;
}
.payment__link__details .title {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(194, 206, 200, 0.5450980392);
}
.payment__link__details .title h3 {
  font-size: 1.6rem;
  font-weight: 400;
}
.payment__link__details .title p {
  font-size: 1.4rem;
  color: #565c5c;
  opacity: 0.8;
}
.payment__link__details .details__grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
@media screen and (max-width: 768px) {
  .payment__link__details .details__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.payment__link__details .details__grid .item {
  padding-bottom: 2rem;
}
.payment__link__details .details__grid .item span {
  font-size: 1.4rem;
  color: #565c5c;
}
@media screen and (max-width: 768px) {
  .payment__link__details .details__grid .item span {
    font-size: 1.2rem;
  }
}
.payment__link__details .details__grid .item h5 {
  font-size: 1.6rem;
  color: #000;
  padding-top: 0.5rem;
  font-weight: 400;
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .payment__link__details .details__grid .item h5 {
    font-size: 1.4rem;
  }
}
.payment__link__details .details__grid .item a {
  display: block;
  padding-top: 0.5rem;
  font-size: 1.3rem;
  text-decoration: none;
  color: #00af66;
}

.biller__box {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
}
.biller__box__search {
  width: 600px;
  max-width: 100%;
  margin: 0 auto;
  border: 1px solid #e9e9e9;
  border-radius: 0.8rem;
  height: 5rem;
  display: flex;
  align-items: center;
  padding-left: 1rem;
  gap: 1rem;
  margin-top: 5rem;
  transition: ease-in-out 0.3s;
}
.biller__box__search:focus-within {
  border-color: #00af66;
}
.biller__box__search img {
  width: 30px;
}
.biller__box__search input {
  width: 100%;
  height: 100%;
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 300;
  border: none;
  background: none;
}
.biller__box__search input:focus {
  outline: none;
}
.biller__box__grid {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .biller__box__grid {
    grid-template-columns: 1fr;
  }
}
.biller__box__item {
  background: #fff;
  border: 1px solid #e9e9e9;
  cursor: pointer;
  border-radius: 0.8rem;
  height: 90px;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
}
.biller__box__item .image {
  width: 70px;
  height: 70px;
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.biller__box__item .image img {
  width: 60px;
  max-height: 60px;
}
.biller__box__item .content h4 {
  font-size: 1.5rem;
  font-weight: 400;
  color: #393939;
}
.biller__box__item .content p {
  font-size: 1.4rem;
  color: #565c5c;
  opacity: 0.7;
}

.biller__list {
  display: flex;
  flex-direction: column;
}
.biller__list__item {
  display: flex;
  align-items: center;
  gap: 2rem;
  border-bottom: 1px solid #e9e9e9;
  text-decoration: none;
  padding: 1rem 0;
  transition: ease-in 0.2s;
}
.biller__list__item:hover {
  background-color: #f4f6f4;
}
.biller__list__item img {
  width: 50px;
  max-height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}
.biller__list__item h3 {
  font-size: 1.7rem;
  line-height: 2rem;
  font-weight: 400;
  color: #565c5c;
}

.settings__nav {
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  background: #f4f6f4;
}
.settings__nav a {
  padding: 1rem 2rem;
  display: flex;
  text-decoration: none;
  font-size: 1.4rem;
  color: #565c5c;
}
.settings__nav a.active {
  border-bottom: 1px solid #565c5c;
  color: #000;
  opacity: 0.8;
}

.settings__sub__title {
  border-bottom: 1px solid #f0f2f5;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}
.settings__sub__title h3 {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2.4rem;
  padding-bottom: 0.5rem;
  color: #000;
  opacity: 0.8;
}
.settings__sub__title p {
  font-size: 1.4rem;
  font-weight: 300;
  color: #565c5c;
}

.settings-card {
  width: 600px;
  max-width: 100%;
}/*# sourceMappingURL=main.css.map */