/* Smooth scroll */

@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
 :root {
    scroll-behavior: smooth;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    font-family: "Outfit";
    font-weight: 600;
    font-style: normal;
    color: #000;
}

li a {
    color: #333;
}

.button {
    background-color: #7E1891;
    color: #fff;
    border-radius: 10px;
    padding: 15px 45px;
    text-decoration: none;
    border: 1px solid transparent; 
    display: inline-block;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.button:hover {
    color: #fff;
    opacity: 0.9;
}

.form-control {
    border: 1px solid #4b4949;
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/

.header {
    color: var(--default-color);
    transition: all 0.5s;
    z-index: 997;
    background-color: var(--background-color);
}

@media (max-width: 575px) {
    .header .topbar .contact-info i a,
    .header .topbar .contact-info i span {
        font-size: 13px;
    }
}

.header .branding {
    min-height: 60px;
    padding: 10px 0;
}

.header .logo {
    line-height: 1;
}

.header .logo img {
    max-height: 36px;
    margin: 0px 20px;
}

.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/* Desktop Navigation */

@media (min-width: 1200px) {
    header .nav-body {
        border: #c9c9c9 solid 1px;
        border-radius: 10px;
        /* width: 75%;
        padding: 0 20px; */
        background-color: #f9f9f9;
        /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
    }
    .navmenu {
        padding: 0;
    }
    .navmenu ul {
        margin: 0;
        padding: 0;
        color: #49557e;
        gap: 5px;
        display: flex;
        list-style: none;
        align-items: center;
    }
    .navmenu li {
        position: relative;
    }
    .navmenu>ul>li {
        white-space: nowrap;
        padding: 15px 14px;
    }
    .navmenu>ul>li:last-child {
        padding-right: 0;
    }
    .navmenu a,
    .navmenu a:focus {
        color: #000;
        font-size: 15px;
        padding: 0 2px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
        margin-right: 45px;
        text-decoration: none;
    }
    .navmenu .get-started {
        background-color: #7E1891;
        color: #fff;
        border-radius: 10px;
        padding: 10px 35px;
    }
    .navmenu .get-started::before {
        content: "";
        position: absolute;
        height: 0;
        bottom: 0;
        left: 0;
        visibility: hidden;
        color: #fff;
    }
}

.main-nav {
    background-color: #f9f9f9;
    border-radius: 10px;
    border: 1px solid #c9c9c9;
    margin-top: 10px;
}

nav .navbar-brand img {
    height: 48px;
    margin-left: 3px;
    margin-bottom: 3px;
}

nav .icon {
    background-color: #fff;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    margin-right: 10px;
    box-shadow: 0 2px 6px 0 rgba(67, 89, 113, .12);
}

nav .icon:hover {
    color: #7E1891;
}

nav .icon a {
    text-decoration: none;
    color: #fff;
}

nav .dropdown-menu.show {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

nav .dropdown li a {
    width: 100%;
    background-color: #e1e1e1;
}

.filter .logout a {
    color: red;
}

nav .dropdown-menu {
    background-color: #fff;
}

nav .services {
    display: grid;
    gap: 0.5rem;
    grid-template-columns: repeat(2, 1fr);gap: 1rem;
}

nav .services a {
    padding: 1.5rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    border-radius: 0.375rem;
    box-shadow: 0 2px 6px 0 rgb(218 218 253 / 65%), 0 2px 6px 0 rgb(206 206 238 / 54%);
    display: inline-block;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    color: #000;
    background-color: #fff;
}

nav .services a:hover, nav .services a.active {
    color: #fff;
    background-color: #7E1891;
}

nav .icon li a {
    color: #000;
    background-color: #f6f6f6 !important;
    min-width: 200px;
    height: 50px;
    border-radius: 8px;
    margin: 10px auto;
}

nav .icon li a:hover {
    color: #fff;
    background-color: #7E1891 !important;
}

.transform-rotate {
    left: 30px;
    top: 30px;
    transform: rotate(-35deg);
}

.trusted .get-started {
    background-color: #7E1891;
    color: #fff;
    border-radius: 10px;
    padding: 15px 45px;
    margin: 30px auto;
}

.trusted .bottom a {
    text-decoration: none;
}


/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/

.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: #7E1891;
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.scroll-top:hover {
    background-color: #d577e5;
    color: #fff;
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
}


/*--------------------------------------------------------------
# Scroll bar
--------------------------------------------------------------*/


/* width */

 ::-webkit-scrollbar {
    width: 15px;
}


/* Track */

 ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #d1d0d0;
    border-radius: 10px;
}


/* Handle */

 ::-webkit-scrollbar-thumb {
    background: #7E1891;
    border-radius: 10px;
}


/* Handle on hover */

 ::-webkit-scrollbar-thumb:hover {
    background: #d577e5;
}


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}


/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/

section,
.section {
    padding: 50px 0;
    scroll-margin-top: 112px;
    overflow: clip;
}

@media (max-width: 1199px) {
    section,
    .section {
        scroll-margin-top: 100px;
    }
}


/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/

.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero {
    width: 100%;
    position: relative;
    padding: 140px 0 0 0;
}

.hero a {
    background-color: #7E1891;
    border-radius: 8px;
    color: #fff;
    padding: 15px 70px;
    text-decoration: none;
}

.hero h1 {
    font-family: "Outfit";
    font-weight: 800;
    font-style: normal;
    margin: 0;
}

.hero .top {
    position: relative;
}

.hero .top img {
    width: 50px;
    margin-top: -50px;
    z-index: 1;
}

.hero .thumb img {
    position: relative;
    margin: -150px;
    width: 200px;
}

.hero .mid {
    position: relative;
    margin: -50px;
}

.hero .mid img {
    width: 200px;
}

.hero p {
    font-family: "Outfit";
    font-weight: 600;
    font-style: normal;
}


/* TRUSTED SECTION */

.trusted .top img {
    width: 30px;
}

.trusted .top h5 {
    font-family: "Outfit";
    font-weight: 600;
    font-style: normal;
}

.trusted h3 {
    font-family: "Outfit";
    font-weight: 600;
    font-style: normal;
}

.trusted .box .top .title {
    width: 80%;
    margin: 30px auto;
}

.trusted .title {
    width: 700px;
    margin: 30px auto;
    text-align: center;
    font-family: "Outfit";
    font-weight: 700;
    font-style: normal;
}

.trusted h2 {
    font-family: "Outfit";
    font-weight: 700;
    font-style: normal;
}

.trusted .box {
    border-radius: 20px;
    border: solid 1px #333;
    padding: 0;
    position: relative;
    margin: auto 50px;
}

.trusted .box .top {
    background-color: #ffcb01;
    border-radius: 20px 20px 0 0;
    width: 100%;
    height: 200px;
}

.trusted .box .icons {
    background-color: #fff;
    padding: 10px 0;
    width: 80%;
    margin: auto;
    border-radius: 20px;
}

.trusted .box img {
    width: 50px;
    margin: 0 20px;
}

.trusted .box .price {
    background-color: #fff;
    border-radius: 20px;
    border: solid 1px #333;
    padding: 20px;
    width: 80%;
    margin: auto;
    position: relative;
    margin-top: -50px;
}

.trusted .box .bottom {
    background-color: #fff;
    border-radius: 0 0 20px 20px;
    width: 100%;
    /* height: 170px; */
    margin: auto;
    position: relative;
    padding: 30px 50px;
}

.trusted .box .bottom .content {
    width: 90%;
    margin: auto;
}

.trusted .box .bottom .content p {
    font-family: "Outfit";
    font-weight: 600;
    font-style: normal;
}

.trusted .box .bottom .content h4 {
    font-family: "Outfit";
    font-weight: 700;
    font-style: normal;
}

.trusted .box select {
    width: 100%;
    font-family: "Outfit";
    font-weight: 700;
    font-style: normal;
    font-size: 1.5rem;
    border: none;
}

.swiper {
    width: 80%;
    margin: auto;
}

.swiper img {
    width: 100px;
}

.security .up i {
    color: white;
    padding: 10px;
    margin-right: 10px;
}

.security p {
    font-family: "Outfit";
    font-weight: 500;
    font-style: normal;
}

.testimonials .up {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
    padding-right: 30px;
    margin: 10px 30px;
}

.testimonials .story {
    width: 80%;
    margin: auto;
    padding: 20px;
    border: solid 1px #333;
    border-radius: 15px;
    font-family: "Outfit";
    font-weight: 500;
    font-style: normal;
}

.testimonials i {
    font-size: 2rem;
}

footer {
    margin: 40px;
}

footer a {
    color: #000;
    text-decoration: none;
}

footer a:hover {
    color: #7E1891;
}

footer .top {
    border-radius: 30px;
    border: #333 solid 1px;
    padding: 20px;
}

footer ul li {
    margin-bottom: 5px;
}

footer ul li.first {
    margin-bottom: 10px;
}

footer .top .logo img {
    width: 200px;
}

footer form {
    border-radius: 30px;
    border: #333 solid 1px;
    padding: 20px;
    background-color: #f5f6ee;
}

footer form label {
    font-size: 1.5rem;
    font-family: "Outfit";
    font-weight: 600;
    font-style: normal;
}

footer form input {
    width: 100%;
    height: 50px;
    border-radius: 8px;
    border: solid 1px #000;
    margin: 30px auto;
    padding: 10px 20px;
    font-size: 1rem;
    font-family: "Outfit";
    font-weight: 500;
    font-style: normal;
}

footer .right {
    /* background-color: #f5f6ee; */
    border-radius: 30px;
}

footer form button {
    width: 100%;
    height: 40px;
    border-radius: 8px;
    border: none;
    background-color: #7E1891;
    color: #fff;
}

.footer {
    margin: 0;
    margin-top: auto;
    background-color: #000;
    color: #fff;
    padding: 15px 0;
}

.footer .link {
    color: #ffcb01;
    margin-right: 20px;
    font-weight: 500;
}

.footer .link:last-child {
    margin-right: 0;
}

.footer .link:hover {
    color: #fff;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about .box-a {
    padding: 0 30px 0 0;
}

.about .box-a h2 {
    font-family: "Outfit";
    font-weight: 600;
    font-style: normal;
}

.about .box-a p {
    font-family: "Outfit";
    font-style: normal;
}

.about .right .box-b {
    background-color: #ffcb01;
    border-radius: 30px;
    height: 400px;
    overflow: hidden;
    display: flex;
    justify-content: end;
    object-fit: fill;
    object-position: center;
}

.about .right img {
    width: 90%;
    height: 500px;
    border-radius: 15px;
    padding: 30px 0 0 0px;
}


/*--------------------------------------------------------------
# Faqs
--------------------------------------------------------------*/

.faqs .box-a {
    padding: 0 30px 0 0;
}

.faqs .box-a h2 {
    font-family: "Outfit";
    font-weight: 600;
    font-style: normal;
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact .btn {
    color: #fff;
    background-color: #7E1891;
    border-radius: 7px;
    border: none;
    padding: 10px 50px;
}

.contact .btn:hover {
    background-color: #650777;
}

/*--------------------------------------------------------------
# Workflow
--------------------------------------------------------------*/

.workflow {
    width: 60%;
    font-family: "Outfit";
}

.workflow form input {
    height: 50px;
    border: solid 1px #c9c9c9;
    border-radius: 10px;
}

.workflow form textarea {
    height: 200px;
    width: 100%;
    border: solid 1px #c9c9c9;
    border-radius: 10px;
    padding: 10px 10px;
    font-size: 1rem;
    color: #888;
}

.workflow .btn {
    color: #fff;
    background-color: #7E1891;
    border-radius: 10px;
    border: none;
    white-space: nowrap;
    padding: 10px 50px;
}

.workflow .contact {
    border: solid 1px #4b4949;
    border-radius: 12px;
    height: 75px;
}

.workflow .contact .icon {
    border-right: solid 1px #000;
    width: 100px;
    margin: auto;
}

.workflow .contact input {
    border: none;
    width: 100%;
    height: 70px;
    background: transparent;
    font-size: 1.2rem;
    font-family: "Outfit";
    font-weight: 500;
    font-style: normal;
}

.workflow .amount-field {
    border: solid 1px #4b4949;
    border-radius: 12px;
    padding: 0;
    margin: auto;
}

.workflow .amount-field input {
    border: none;
    width: 80%;
    height: 68px;
    background: transparent;
    font-size: 1.2rem;
    font-family: "Outfit";
    font-weight: 500;
    font-style: normal;
}

.workflow .contact input:focus {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.workflow form input:focus {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.workflow form input:disabled {
  background-color: #e9ecef;
  opacity: 1;
  cursor: not-allowed;
}

.workflow form button {
    background-color: #7E1891;
    color: #fff;
    width: 20%;
    border: none;
    height: 70px;
    border-radius: 11px;
}

.workflow form button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.workflow img {
    width: 50px;
}

.workflow .dropdown .btn {
    background-color: transparent;
    padding: 0 0 0 10px;
    margin-right: 4px;
}

.workflow .dropdown {
    border-right: solid 1px #000;
}

.workflow .dropdown-menu {
    min-width: 0rem !important;
}

.dropdown img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.dropdown .dropdown-toggle::after {
    content: none; 
}

.quick-topup {
    width: 100%;
    margin: auto;
}

.quick-topup a {
    border-radius: 20px;
    background-color: #ECEBEB;
    height: 100px;
    width: 100%;
    font-size: 1.2rem;
    text-decoration: none;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.quick-topup a:last-child {
    margin-right: 0;
}

.quick-topup a:hover {
    border: 1px solid #7D1E90;
}

nav .filter a {
    color: #000;
}

.modal h6 {
    font-family: "Outfit";
    font-weight: 700;
    font-style: normal;
}

.modal .btn-close {
    background-color: #e1dfdf;
    margin: 0px;
    padding: 13px;
    border-radius: 50%;
    font-size: 11px;
}

.modal img {
    width: 100px;
}

.modal a {
    text-decoration: none;
    color: #000;
}

.modal .password {
    width: 80px;
    height: 50px;
    background-color: #d2d2d2;
    margin-bottom: 50px;
    border-radius: 5px;
    font-size: 1.2rem;
    font-family: "Outfit";
    font-weight: 500;
    font-style: normal;
    outline: none !important;
    border: none !important;
}

.modal .password:focus {
    outline: none !important;
    border: none !important;
}

.modal .proceed {
    width: 100%;
    background-color: #7E1891;
    border: none;
    margin: auto;
}

.airtime #passowrdModal .modal-body {
    padding: 70px 30px;
}

#passowrdModal .password {
    width: 80px;
    height: 50px;
    background-color: #d2d2d2;
    margin-bottom: 50px;
    border-radius: 5px;
    font-size: 1.2rem;
    font-family: "Outfit";
    font-weight: 500;
    font-style: normal;
}

.pin form {
    border: solid 2px #7E1891;
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0px 0px 10px rgb(0, 0, 0, .1);
}

.pin form label {
    font-size: 1.2rem;
    font-family: "Outfit";
    font-weight: 700;
    font-style: normal;
}

.pin form input {
    border: none;
    border-radius: 8px;
    width: 80px;
    height: 60px;
    background: #f5f5f5;
    font-size: 1.2rem;
    font-family: "Outfit";
    font-weight: 500;
    font-style: normal;
}

.pin form input:focus {
    outline: none;
}

.pin form a {
    text-decoration: none;
    color: #000;
}

.pin #passowrdModal a p {
    border-bottom: #000 solid 2px;
}

.pin form .proceed {
    width: 100%;
    background-color: #7E1891;
    color: #fff;
    border: none;
    margin: auto;
    height: 50px;
    border-radius: 8px;
}

.pin form .proceed:hover {
    background-color: #9a3eaa;
}

.virtual-account .account img {
    width: 60px;
    margin: 0 20px 0 0;
}

.virtual-account .account-number {
    width: 100%;
    height: 70px;
    border-radius: 8px;
    border: solid 1px #d7d7d7;
    background-color: #f5f5f5;
    padding: 0 15px 0 10px;
}

.virtual-account .account-number input {
    width: 95%;
    height: 100%;
    padding-left: 10px;
    background-color: transparent;
    border: none;
    font-size: 1.2rem;
    font-weight: 600;
}

.virtual-account .account-number input:focus {
    outline: none !important;
}

.virtual-account .account-number img {
    width: 7%;
    cursor: pointer;
}

.virtual-account #passowrdModal .modal-body {
    padding: 30px 30px;
}

.forgot-password .modal img {
    width: 100px;
    margin: 0 20px 0 0;
}

.forgot-password .account-number input {
    width: 100%;
    padding-left: 10px;
}

.forgot-password label {
    font-size: 1.2rem;
    font-family: "Outfit";
    font-weight: 700;
    font-style: normal;
}

.forgot-password input {
    border: solid 1px #000;
    border-radius: 8px;
    padding-left: 10px;
    width: 100%;
    height: 60px;
    background: #f5f5f5;
    font-size: 1.2rem;
    font-family: "Outfit";
    font-weight: 500;
    font-style: normal;
}

.login #confirmModal input {
    border: none;
    border-radius: 5px;
    width: 75px;
    height: 60px;
    background: #eaeaea;
    font-size: 1.2rem;
    font-family: "Outfit";
    font-weight: 500;
    font-style: normal;
}

.forgot-password form .proceed {
    width: 100%;
    background-color: #7E1891;
    color: #fff;
    border: none;
    margin: auto;
    height: 50px;
    border-radius: 8px;
}

.forgot-password form .proceed:hover {
    background-color: #9a3eaa;
}

.forgot-password .modal input:focus {
    color: #fff;
    outline: none;
    border-radius: 5px;
}


/*--------------------------------------------------------------
# Data
--------------------------------------------------------------*/

.banner {
    background: #ffcb01;
    border-radius: 15px;
    position: relative;
    height: 200px;
}

.banner img {
    width: 300px;
    position: relative;
    position: absolute;
    bottom: 0px;
}

.banner .right .btn {
    color: #000;
    background-color: #fff;
    border-radius: 10px;
    border: none;
    white-space: nowrap;
    padding: 10px 50px;
    font-weight: 700;
}

.data .heading {
    font-family: "Outfit";
    font-weight: 700;
    font-style: normal;
}

.data .dropdown-menu.show {
    display: block;
    min-width: 0;
}

.select .timeframe {
    overflow-x: auto;
    white-space: nowrap;
}

.select .timeframe a {
    display: inline-block;
    text-decoration: none;
    font-weight: 500;
    color: #000;
    padding: 5px 15px;
    border-radius: 8px;
    margin-right: 35px;
    cursor: pointer;
}

.select .timeframe .active, .select .timeframe a:hover {
    background-color: #ffcb01;
}

.data-type-skeleton-loader {
    display: inline-block;
    width: 70px;
    height: 25px;
    margin-right: 15px;
}

.data .background {
    background-color: #f9f9f9;
    border-radius: 15px;
    padding: 10px 20px;
    margin-top: 5px;
}

.data .background a {
    background-color: #fff;
    border-radius: 15px;
    height: 200px;
    margin: 10px auto;
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.data .background a:hover {
    color: #000;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.data .modal input {
    width: 100%;
    height: 50px;
    border-radius: 8px;
    border: solid 1px #999;
    padding-left: 10px;
}

.data .modal .box {
    border-radius: 8px;
    background-color: rgba(227, 227, 227, 0.2);
    padding: 0 10px;
}

.data .modal img {
    width: 30px;
    margin: 0 10px 0 0;
}

.data .modal .btn1 {
    background-color: #7E1891;
    color: #fff;
    border-radius: 10px;
    border: none;
    padding: 10px 30px;
}

.data .modal .btn2 {
    background-color: #fff;
    color: #000;
    border-radius: 10px;
    border: solid 2px #999;
    padding: 10px 30px;
}

.data .proceed {
    background-color: #7E1891;
    color: #fff;
    border-radius: 10px;
    border: none;
    width: 90%;
    height: 40px;
}


/*--------------------------------------------------------------
# Utility
--------------------------------------------------------------*/

.meter {
    border: solid 1px #000;
    border-radius: 12px;
    padding: 5px;
    position: relative;
    color: #000;
}

.meter small {
    margin-left: 10px;
    color: #6c757d;
}

.meter-select {
    width: 100%;
    border: none !important;
    font-weight: 600;
    font-size: 1.1rem;
}

.meter::after {
    content: '▼';
    font-size: 14px;
    color: #333;
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    pointer-events: none;
    border: #000 1px solid;
    padding: 4px 8px;
    border-radius: 50px;
}

.meter-select:focus {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

#electricityProviderModal ul {
    padding: 5px;
}

#electricityProviderModal ul li a {
    color: #000;
    background-color: #f5f5f5;
    border-radius: 8px;
    margin: 10px 0;
    display: block;
    padding: 12px;
    text-decoration: none;
    border: 1px solid #efeeee;
}

.electricity-provider-dialog {
    height: 600px;
}

#electricityProviderModal ul li a:hover {
    color: #fff;
    background-color: #7E1891;
}

#electricityProviderModal ul li a img {
    width: 45px;
    height: 45px;
    border-radius: 50px;
    margin-right: 5px;
}

.utility .proceed {
    width: 90%;
    background-color: #7E1891;
    color: #fff;
    border: none;
    margin: auto;
    height: 50px;
    border-radius: 8px;
}


/*--------------------------------------------------------------
# Utility
--------------------------------------------------------------*/

.verify-user {
    background-color: #7E1891;
    color: #fff;
    border-radius: 15px;
    padding: 0px 20px;
}

.verify-user p {
    background-color: #fff;
    color: #7E1891;
    border-radius: 8px;
    padding: 5px 20px;
    margin-top: 15px;
}

.membership-type {
    width: 100%;
    border: solid 1px #000;
    border-radius: 15px;
    height: 70px;
    padding: 5px;
}

.membership-type a {
    background-color: #ebebeb;
    color: #000;
    text-decoration: none;
    border-radius: 15px;
    width: 47%;
    margin: auto;
    text-align: center;
    height: 50px;
}

.membership-type a:hover {
    background-color: #f6ccfe;
    color: #000;
}

.package-type {
    width: 100%;
    border: solid 1px #000;
    border-radius: 12px;
    height: 75px;
    padding: 8px;
}

.package-type .label {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    color: #000;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
    margin-right: 8px;
    border-radius: 10px;
}

.package-type .label:last-child {
  margin-right: 0;
}

.package-type input:checked + .label {
    border: 1px solid #d0d8e1;
    background-color: #ebebeb;
}

.package-type input {
    display: none;
}

.modal .proceed {
    width: 100%;
    background-color: #7E1891;
    color: #fff;
    border: none;
    margin: auto;
    height: 50px;
    border-radius: 8px;
}

.proceed:hover {
    background-color: #9a3eaa;
}


/*--------------------------------------------------------------
# Transaction
--------------------------------------------------------------*/

.transaction .heading {
    font-family: "Outfit";
    font-weight: 700;
    font-style: normal;
}

.transaction tbody img {
    width: 30px;
}

.transaction tbody a {
    text-decoration: none;
    color: #7E1891;
}

.transaction-modal .modal-dialog {
    position: fixed;
    bottom: 0px;
    right: 0px;
    margin: 0px;
    width: 600px;
    border: 5px solid #999996; 
}

.transaction-modal .modal-dialog,
.modal-content {
    height: 100%;
    border-radius: 15px;
}

.modal-body .b img {
    width: 30px;
    margin-left: 10px;
}

.transaction-modal .skeleton {
    background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
}

.transaction-modal .skeleton-box {
    padding: 0;
}

.transaction-modal .skeleton-box .box-a {
    width: 50%;
}

.transaction-modal .skeleton-box .box-b {
    width: 50%;
    display: block;
    justify-content: flex-end;
}

.transaction-modal .skeleton-short-paragraph {
    width: 60%;
    height: 15px;
    margin: 10px 0;
}

.transaction-modal .skeleton-veryshort-paragraph {
    width: 30%;
    height: 15px;
    margin: 10px 0;
}

.transaction-modal .skeleton-paragraph {
    width: 80%;
    height: 15px;
    margin: 10px 0;
}

.transaction-modal .long {
    width: 80%;
    height: 15px;
    border-radius: 8px;
}

.transaction-modal .mid {
    width: 50%;
    height: 15px;
    border-radius: 8px;
}

.transaction-modal .short {
    width: 40%;
    height: 15px;
    border-radius: 8px;
}

.transaction-modal .refresh {
    margin-top: 40px;
}

.transaction-modal .refresh a {
    border-radius: 24px;
    padding: 15px 30px;
    border: #bdbdbd solid 1px;
    margin: 15px;
    box-shadow: 0 2px 6px 0 rgba(67, 89, 113, .12);
}

.transaction-status {
    border: 2px solid #000;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 10px;
}

.transaction-status i {
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading {
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    background-color: #f9f9f9;
    box-shadow: 0 2px 6px 0 rgba(67, 89, 113, .12);
    border-radius: 10px;
    text-align: center;
}

.no-content i {
    font-size: 4rem;
    color: #f5365c;
    margin-bottom: 10px;
}

.no-content h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.no-content p {
    margin-bottom: 0;
}

.token {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    margin: 0 1rem 1rem 1rem;
    background-color: #fadeff;
    border-radius: 10px;
    border: 1px solid #dee2e6;
}

.copy-button {
    cursor: pointer;
}

/*--------------------------------------------------------------
# Account
--------------------------------------------------------------*/

.account .heading {
    font-family: "Outfit";
    font-weight: 700;
    font-style: normal;
}

.account-card {
    padding: 0;
    border: none;
    border-radius: 0.5rem;
}

.account-card .nav-link {
    color: rgb(110, 110, 110);
    font-weight: 500;
}

.account-card .nav-link:hover {
    color: #7d1e90;
}

.account-card .nav-pills .nav-link.active {
    color: #7d1e90;
    background-color: white;
    border-radius: 0.5rem 0.5rem 0 0;
    font-weight: 600;
    border-bottom: 2px solid #7d1e90;
}

/*--------------------------------------------------------------
# Profile
--------------------------------------------------------------*/

.profile .box {
    width: 100%;
    border: solid 1px #000;
    border-radius: 15px;
    height: 70px;
    padding: 5px;
    margin: 15px auto;
}

.profile button {
    color: #000;
}

.profile ul button:hover {
    color: #7E1891;
}

.profile input {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 10px;
    width: 100%;
    height: 60px;
}

.profile input:focus {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.profile .proceed {
    width: 100%;
    background-color: #7E1891;
    color: #fff;
    border: none;
    margin: auto;
    border-radius: 15px;
    height: 50px;
}

.profile .modal-body img {
    width: 250px;
}

.profile .modal .btn1 {
    background-color: #7E1891;
    color: #fff;
    border-radius: 10px;
    border: none;
    padding: 10px 30px;
}

.profile .modal .btn2 {
    background-color: #fff;
    color: #000;
    border-radius: 10px;
    border: solid 2px #999;
    padding: 10px 30px;
}

.profile .modal input {
    width: 80px;
    height: 50px;
    background-color: #7E1891;
    color: #fff;
    margin-bottom: 50px;
    font-size: 1.2rem;
    font-family: "Outfit";
    font-weight: 500;
    font-style: normal;
    border-radius: 8px;
}

.profile .pin {
    margin: 20px;
}

.profile .verify .input {
    width: 100%;
    height: 50px;
    margin-bottom: 50px;
    border-radius: 8px;
    border: solid 1px #000;
    padding: 10px;
}

.profile .verify input {
    width: 100%;
    height: 35px;
    background-color: #fff;
    color: #000;
    font-size: 1.2rem;
    font-family: "Outfit";
    font-weight: 500;
    font-style: normal;
    border: solid 1px #000;
}


/*--------------------------------------------------------------
# Authentication Modal
--------------------------------------------------------------*/
.auth-modal .modal-dialog {
    border-radius: 25px; 
    border: 5px solid #999996; 
    background-color: #7E1891; 
    margin-top: 8rem;
}

.auth-modal .modal-dialog .modal-content {
    background-color: transparent;
}

.auth-modal .modal-dialog .modal-content .modal-body {
    padding: 0 11px;
}

.auth .left {
    border-radius: 20px;
    padding: 25px 30px;
    background-color: #fff;
    box-shadow: 0 0 4px 5px rgba(237, 237, 237, 0.25);
}

.auth .right {
    border-radius: 0 30px 30px 0;
}

.auth a {
    color: #000;
    font-size: 15px;
    text-align: end;
}

.auth .form-control {
    height: 60px;
    border-radius: 8px;
}

.auth .form-control.is-invalid {
    border-color: #dc3545;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.btn-auth-white {
    display: inline-block;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    padding: 10px 55px;
    border-radius: 30px;
    background-color: #fff;
    color: #000;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid #fff;
}

.btn-auth-orange {
    display: inline-block;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    padding: 10px 55px;
    border-radius: 30px;
    background-color: #eb5b00;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid #eb5b00;
}

.btn-auth-orange:hover {
    color: #fff;
    background-color: #eb5b00;
    border-color: #eb5b00;
}

.auth .line {
    width: 70px;
    height: 3px;
    background-color: #f2efef;
}

.auth .divider {
    margin: 0 10px;
}

.auth .footer {
    font-size: 15px;
}

.auth .otp-footer {
    font-size: 15px;
}
.auth .otp-footer a {
    color: #7e1891;
}

.social a {
    border-radius: 8px;
    border: #000 solid 1px;
    width: 100px;
    height: 50px;
    margin: 0 5px;
}

.social a .google {
    width: 65px;
    margin-top: 8px;
}

.social a .facebook {
    width: 30px;
    margin-top: 9px;
}

.social a:hover {
    box-shadow: 0 0 10px rgb(0, 0, 0, .3);
}

/*--------------------------------------------------------------
# Main Modal
--------------------------------------------------------------*/
.main-modal .modal-dialog {
    border-radius: 25px; 
    border: 5px solid #999996; 
    margin-top: 8rem;
}

.main-modal .modal-dialog .main-content {
    border-radius: 20px;
}

.main-modal .modal-dialog .modal-inner {
    padding: 15px 20px;
}

/*--------------------------------------------------------------
# Electricity Provider Modal
--------------------------------------------------------------*/
.electricity-provider-modal .modal-dialog {
    border-radius: 25px; 
    border: 5px solid #999996; 
    margin-top: 8rem;
}

.electricity-provider-modal .modal-dialog .main-content {
    border-radius: 20px;
}

.electricity-provider-modal .modal-dialog .modal-inner {
    padding: 15px 20px;
}

/*--------------------------------------------------------------
# Reset Pin Modal
--------------------------------------------------------------*/
.reset-pin-modal .modal-dialog {
    border-radius: 25px; 
    border: 5px solid #999996; 
    margin-top: 8rem;
}

.reset-pin-modal .modal-dialog .reset-pin-content {
    border-radius: 20px;
}

.reset-pin-modal img {
    width: 150px;
}

/* Skeleton Loader Styles */
.skeleton {
    background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 5px;
}

.skeleton-box {
    min-width: 150px;
    min-height: 150px;
    padding-top: 20px;
}

.skeleton-paragraph {
    width: 80%;
    height: 19px;
    margin: 12px auto 13px auto;
}

.skeleton-short-paragraph {
    width: 60%;
    height: 23px;
    margin: 10px auto 10px auto;
}

.skeleton-paragraph-2 {
    width: 80%;
    height: 15px;
    margin: 15px auto 0 auto;
}

.sltv .skeleton-box {
    width: 100% !important;
    background-color: rgb(239, 239, 239);
    padding: 0 30px;
    margin: 0;
}

.sltv .skeleton-paragraph {
    width: 600px;
    height: 15px;
    margin: 10px 0;
}

.workflow form button:hover {
    background-color: #903c9f;
}

.button:hover {
    background-color: #903c9f;
}

/* Shimmer Effect */

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.margin-left-minus-10 {
    margin-left: -10px;
}

.margin-right-minus-10 {
    margin-right: -10px;
}

.accordion-item {
    border: 1px solid #000;
    border-radius: 10px;
}
.accordion-button {
    padding: 25px;
    border-radius: 10px;
    font-weight: 600;
}
.accordion-button:not(.collapsed) {
    color: #000;
    background: transparent;
}
.accordion-item:not(:first-of-type) {
    border-top: 1px solid #000;
}
.accordion-item:first-of-type {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.accordion-item:last-of-type {
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}
.accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #7e1891;
  --bs-btn-border-color: #7e1891;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #b826d3;
  --bs-btn-hover-border-color: #b826d3;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #7e1891;
  --bs-btn-active-border-color: #7e1891;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #e681f9;
  --bs-btn-disabled-border-color: #e681f9;
  height: 60px;
  font-weight: 600;
}

.btn-normal-primary {
    color: #fff;
    background-color: #7e1891;
    border: 1px solid #7e1891;
    font-weight: 600;
    border-radius: 10px;
    padding: 1.1rem 2rem;
}

.btn-normal-primary:hover {
    color: #fff;
    background-color: #b826d3;
    border: 1px solid #b826d3;
}

.btn-normal-primary:disabled {
    color: #fff;
    background-color: #e681f9;
    border: 1px solid #e681f9;
    cursor: not-allowed;
}

.btn-normal-default {
    color: #7E1891;
    background-color: #fff;
    border: 1px solid #A6A6A6;
    font-weight: 600;
    border-radius: 10px;
    padding: 1.1rem 2rem;
}

.btn-normal-default:hover {
    color: #000000;
    background-color: #fff;
    border: 1px solid #A6A6A6;
}

.btn-normal-default:disabled {
    color: #7E1891;
    background-color: #fff;
    border: 1px solid #A6A6A6;
}

/* OTP input */
.otp-input input {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    background-clip: padding-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    width: 65px;
    height: 65px;
    border: 1px solid #ced4da;
    background-color: #fdfdfd;
    color: #000;
}
.otp-input input[type=number]::-webkit-inner-spin-button, .otp-input input[type=number]::-webkit-outer-spin-button{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0
}
.otp-input input[disabled] {
    background-color: #eeeeee;
    color: #999999;
    cursor: not-allowed;
}
.otp-input input:focus{
    outline: 0;
    box-shadow: none;
    background-color: #fdfdfd;
    color: #000;
    border:1px solid #7e1891;
}

/* Pin input */
.pin-input input {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    background-clip: padding-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    width: 65px;
    height: 65px;
    border: 1px solid #ced4da;
    background-color: #fdfdfd;
    color: #000;
}
.pin-input input[type=number]::-webkit-inner-spin-button, .pin-input input[type=number]::-webkit-outer-spin-button{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0
}
.pin-input input[disabled] {
    background-color: #eeeeee;
    color: #999999;
    cursor: not-allowed;
}
.pin-input input:focus{
    outline: 0;
    box-shadow: none;
    background-color: #fdfdfd;
    color: #000;
    border:1px solid #7e1891;
}

.m-vh-160 {
    min-height: 160px;
}

.m-vh-220 {
    min-height: 220px;
}

.m-15 {
    margin: 0.15rem;
}

/* Aui Alert */
.aui-message {
    background: #fff;
    border: 1px solid #3572b0;
    border-radius: 5px;
    color: #333;
    line-height: 20px;
    margin: 20px 0 0 0;
    overflow-wrap: break-word;
    padding-bottom: 15px;
    padding-left: 50px;
    padding-right: 15px;
    padding-top: 13px;
    position: relative;
    word-wrap: break-word;
    word-break: break-word;
    margin-bottom: 1.5rem !important;
}

.aui-message.warning, .aui-message-warning {
    background: #fff;
    border-color: #EDC211;
    color: #333;
}

.aui-message.error, .aui-message-error {
    background: #fff;
    border-color: #d04437;
    color: #333;
}

.aui-message.success, .aui-message-success {
    background: #fff;
    border-color: #669900;
    color: #333;
}

.aui-message.success:before, .aui-message-success:before {
    background-color: #669900;
}
.aui-message.error:before, .aui-message-error:before {
    background-color: #d04437;
}

.aui-message.warning:before, .aui-message-warning:before {
    background-color: #EDC211;
}

.aui-message:before {
    background-color: #3572b0;
}

.aui-message:before {
    background-color: #3572b0;
    bottom: 0;
    content: '';
    left: 0;
    position: absolute;
    top: 0;
    width: 40px;
}

.aui-message.success:after, .aui-message-success:after {
    content: "\f05d";
    color: #fff;
}
.aui-message.warning:after, .aui-message-warning:after{
    content: "\f071";
    color: #fff;
}
.aui-message.error:after, .aui-message-error:after {
    content: "\f06a";
    color: #fff;
}

.aui-message:after {
    content: "\f05a";
    color: #fff;
}

.aui-message:after {
    color: #fff;
    font-family: 'FontAwesome';
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-weight: normal;
    left: 12px;
    line-height: 1;
    margin-top: -8px;
    position: absolute;
    speak: none;
    top: 50%;
}

/* Error Page */
.error-page {
    min-height: 100vh;
    background: linear-gradient(to bottom, #7e1891, #6c157d, #5a1269);
}

.error-container {
    max-width: 600px;
}

.error-code {
    font-size: 11rem;
    font-weight: 900;
    background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0.5));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse 2s infinite;
}

.error-message {
    color: rgba(255, 255, 255, 0.9);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.btn-glass {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    transition: all 0.3s ease;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

/* Chrome, Safari, Edge, Opera */
input[type="number"]::-webkit-inner-spin-button, 
input[type="number"]::-webkit-outer-spin-button { 
    -webkit-appearance: none; 
    margin: 0; 
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

.py-08 {
    padding-top: 0.8rem !important;
    padding-bottom: 0.8rem !important;
}

.dropdown-menu {
    --bs-dropdown-link-active-bg: #7E1891;
}

.provider-selector-transform {
    display: flex;
    align-items: center;
    justify-content: center;
    left: 38px;
    top: 40px;
    transform: rotate(-35deg);
    border-radius: 50%;
    padding: 5px;
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
    width: 25px;
    height: 25px;
}

.network-selector button {
    border: 1px solid #c9c9c9;
}

.network-selector-transform {
    display: flex;
    align-items: center;
    justify-content: center;
    left: 42px;
    top: 40px;
    transform: rotate(-35deg);
    border-radius: 50%;
    padding: 5px;
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
    width: 24px;
    height: 24px;
}

.fa-1x {
    font-size: 1.4rem;
}

.data-confirmation-card {
    border-radius: 15px;
    background-color: #FEFAEB;
    padding: 1rem;
    border: 1px solid #dee2e6;
    margin-bottom: 75px;
}

.data-confirmation-card img {
    width: 30px;
    margin: 0 10px 0 0;
}

.list-title {
    color: #444343;
    line-height: 120%;
    font-weight: 500;
    font-size: 13px;
    margin-bottom: 3px;
}
.list-subtitle {
    line-height: 17px;
    font-weight: 500;
    font-size: 14px;
}
.list-divider {
    border: solid 1px #e4e4e4;
    margin: 15px 0;
}

.data-deletion-list li {
    list-style: unset;
}

/* Mobile Navigation */
@media (max-width: 1199px) {
    .network-selector img {
        width: 30px;
        height: 30px;
        object-fit: cover;
    }
    .network-selector-transform {
        left: 32px;
        top: 26px;
        width: 5px;
        height: 5px;
        padding: 7px;
        font-size: 11px;
    }
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }
    .navmenu {
        padding: 0;
        z-index: 9997;
    }
    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: #fff;
        border: 1px solid #7E1891;
        box-shadow: none;
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }
    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        text-decoration: none;
    }
    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }
    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }
    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }
    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }
    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        transition: all 0.5s ease-in-out;
    }
    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }
    .navmenu .dropdown>.dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }
    .mobile-nav-active {
        overflow: hidden;
    }
    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }
    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }
    .mobile-nav-active .navmenu>ul {
        display: block;
    }
    .hero {
        padding: 50px 0 0 0;
        position: relative;
    }
    .hero img {
        /* visibility: hidden; */
        position: absolute;
    }
    .hero .left {
        position: absolute;
        margin-left: 300px;
        opacity: 0.2;
    }
    .hero .right {
        position: absolute;
        margin-right: 300px;
    }
    .hero h1 {
        font-family: "Outfit";
        font-weight: 800;
        font-style: normal;
        margin: 0;
        font-size: 25px;
    }
    .hero .mid {
        width: 100%;
        margin: auto;
    }
    .hero .mid p {
        width: 100%;
        margin: 30px auto;
        font-size: 14px;
    }
    header .nav-body {
        border: #c9c9c9 solid 1px;
        border-radius: 10px;
        width: 95%;
        padding: 0 20px;
        background-color: #f9f9f9;
        /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
    }
    .trusted .title {
        width: 90%;
        margin: 30px auto;
        margin-top: 30px;
        text-align: center;
        font-family: "Outfit";
        font-weight: 700;
        font-style: normal;
    }
    .trusted .box .top .title {
        width: 80%;
        margin: 30px auto;
    }
    .trusted .title {
        width: 90%;
        margin: 30px auto;
        text-align: center;
        font-family: "Outfit";
        font-weight: 700;
        font-style: normal;
    }
    .trusted h2 {
        font-family: "Outfit";
        font-weight: 700;
        font-style: normal;
    }
    .trusted .box {
        border-radius: 20px;
        border: solid 1px #333;
        padding: 0;
        position: relative;
        margin: auto;
    }
    .trusted .row {
        margin: 0;
    }
    .trusted .box .top {
        background-color: #ffcb01;
        border-radius: 20px 20px 0 0;
        width: 100%;
        height: 200px;
    }
    .trusted .box .icons {
        background-color: #fff;
        padding: 0;
        width: 80%;
        margin: auto;
        border-radius: 20px;
    }
    .trusted .box img {
        width: 30px;
        margin: 0 20px;
    }
    .trusted .box .price {
        background-color: #fff;
        border-radius: 20px;
        border: solid 1px #333;
        padding: 20px;
        width: 80%;
        margin: auto;
        position: relative;
        margin-top: -40px;
    }
    .trusted .box .price h3 {
        width: 100%;
        margin: 0 auto;
    }
    .trusted .box .bottom {
        background-color: #fff;
        border-radius: 0 0 20px 20px;
        width: 100%;
        /* height: 200px; */
        margin: auto;
        position: relative;
        padding: 30px 10px;
    }
    .trusted .box .bottom .content {
        width: 90%;
        margin: auto;
    }
    .trusted .box .bottom .content p {
        font-family: "Outfit";
        font-weight: 600;
        font-style: normal;
        text-align: center;
    }
    .trusted .box .bottom .content h4 {
        font-family: "Outfit";
        font-weight: 700;
        font-style: normal;
        margin-bottom: 30px;
    }
    .trusted .box select {
        width: 100%;
        font-family: "Outfit";
        font-weight: 700;
        font-style: normal;
        font-size: 1.5rem;
        border: none;
    }
    .swiper {
        width: 80%;
        margin: auto;
    }
    .swiper img {
        width: 50px;
    }
    .security .up i {
        color: white;
        padding: 10px;
        margin-right: 10px;
    }
    .security p {
        font-family: "Outfit";
        font-weight: 500;
        font-style: normal;
    }
    .testimonials .up {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: end;
        padding-right: 30px;
        margin: 10px 30px;
    }
    .testimonials .story {
        width: 100%;
        margin: auto;
        padding: 20px;
        border: solid 1px #333;
        border-radius: 15px;
        font-family: "Outfit";
        font-weight: 500;
        font-style: normal;
    }
    .testimonials i {
        font-size: 2rem;
    }
    footer {
        margin: 20px 0px;
    }
    footer a {
        color: #000;
        text-decoration: none;
    }
    footer .top {
        border-radius: 30px;
        width: 100%;
        padding: 20px;
    }
    footer .left .b {
        margin: 30px auto;
    }
    footer form {
        border-radius: 30px;
        padding: 20px;
        width: 100%;
        margin: auto;
        border: none;
    }
    footer form label {
        font-size: 1.2rem;
        font-family: "Outfit";
        font-weight: 600;
        font-style: normal;
        text-align: center;
    }
    footer form input {
        width: 100%;
        height: 50px;
        border-radius: 8px;
        border: solid 1px #000;
        margin: 30px auto;
        padding: 10px 20px;
        font-size: 1rem;
        font-family: "Outfit";
        font-weight: 500;
        font-style: normal;
    }
    footer .right {
        background-color: #f5f6ee;
        border-radius: 30px;
        width: 100%;
        margin: auto;
        border: #333 solid 1px;
    }
    footer form button {
        width: 100%;
        height: 40px;
        border-radius: 8px;
        border: none;
        background-color: #7E1891;
        color: #fff;
    }
    footer form button:hover {
        background-color: #903c9f;
    }
    .disclaimer h5 {
        font-size: 1rem;
        font-family: "Outfit";
        font-weight: 500;
        font-style: italic;
        line-height: 20px;
        text-align: justify;
    }
    .faqs .box-a {
        margin: auto;
        padding: 0 0 0 10px;
    }
    .accordion {
        margin-top: 50px;
    }
    .data .heading h3 {
        font-size: 20px;
    }
    .data-main .button {
        margin-left: 50px;
        padding: 10px 20px;
        white-space: nowrap;
    }
    .workflow {
        width: 100%;
        margin-top: 70px;
    }
    .workflow .top {
        width: 50%;
    }
    .workflow h3 {
        font-size: 20px;
    }
    .workflow h5 {
        font-size: 18px;
    }
    .workflow .top {
        width: 100%;
    }
    .workflow .button {
        margin-left: 50px;
        padding: 10px 20px;
        white-space: nowrap;
    }
    .workflow .amount-field input {
        font-size: 1rem;
    }
    .workflow .btn {
        color: #fff;
        background-color: #7E1891;
        border-radius: 10px;
        border: none;
        white-space: nowrap;
        padding: 10px 50px;
    }
    .workflow .contact input {
        height: 50px;
        font-size: 1rem;
    }
    .workflow form button {
        width: 30%;
    }
    .workflow form button:hover {
        background-color: #903c9f;
    }
    #passowrdModal .password {
        width: 65px;
        height: 40px;
        background-color: #e1e1e1;
        margin-bottom: 30px;
        border-radius: 5px;
        font-size: 1rem;
    }
    .copyright {
        margin: 0px;
    }
    .membership-type {
        height: 50px;
        padding: 5px 2px;
    }
    .membership-type a {
        height: 40px;
    }
    .data {
        padding-top: 30px;
    }
    .banner {
        background: #ffcb01;
        border-radius: 15px;
        position: relative;
        height: 250px;
    }
    .banner img {
        width: 200px;
        position: relative;
        position: absolute;
        bottom: 0px;
    }
    .banner .right {
        position: relative;
        position: absolute;
        top: 0px;
    }
    .data a {
        text-decoration: none;
        color: #000;
        font-family: "Outfit";
        font-weight: 500;
        font-style: normal;
    }
    .select .dropdown ul {
        z-index: 100;
    }
    .data .background {
        border-radius: 8px;
    }
    .data .background .box {
        background-color: #fff;
        border-radius: 10px;
        height: 150px;
        margin: 5px auto;
        box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
    }
    .profile #confirmModal input {
        width: 60px;
        height: 40px;
        background-color: #7E1891;
        font-size: 1rem;
        border-radius: 8px;
    }
    .auth .line {
        margin-top: 10px;
    }
    .auth .social .box {
        border-radius: 8px;
        border: #000 solid 1px;
        width: 80px;
        height: 50px;
        margin: 0 10px;
    }
    .auth .social .box .google {
        width: 50px;
    }
    .auth .social .box .facebook {
        width: 30px;
    }
    .contact .btn {
        width: 100%;
    }
    .sltv .skeleton-box {
        width: 100% !important;
        background-color: #ffffff;
        padding: 0 30px;
        margin: 0;
    }
    .sltv .skeleton-paragraph {
        width: 300px;
        height: 15px;
        margin: 10px 0;
    }
    .sltv .skeleton-short-paragraph {
        width: 100px;
        height: 15px;
        margin: 10px 0;
    }
    .skeleton-box {
        min-width: 150px;
        min-height: 150px;
        padding: 20px;
    }

    .transaction-modal .skeleton-button {
        width: 250px;
        height: 30px;
        margin: 15px 70px;
        position: fixed;
        bottom: 90px;
        right: 0;
        border-radius: 8px;
    }
    .virtual-account .account-number img {
        width: 10%;
        cursor: pointer;
    }
}

@media (max-width: 992px) {
    .auth-modal .modal-dialog {
        margin-top: 4rem;
    }
    .main-modal .modal-dialog {
        margin-top: 4rem;
    }
    .reset-pin-modal .modal-dialog {
        margin-top: 4rem;
    }
    .electricity-provider-modal .modal-dialog {
      margin-top: 4rem;
    }
}

@media (max-width: 768px) {
    .select .timeframe a {
        font-size: 15px;
        padding: 5px 6px;
        margin-right: 0;
    }
    .data .background a {
      margin: 5px auto;
    }
    .auth-modal .modal-dialog {
        margin-top: 0;
    }
    .main-modal .modal-dialog {
        margin-top: 0;
    }
    .reset-pin-modal .modal-dialog {
        margin-top: 0;
    }
    .electricity-provider-modal .modal-dialog {
      margin-top: 0;
    }
    .transaction-modal .modal-dialog, .modal-content {
        height: auto;
    }
}

@media (max-width: 576px) {
    .data .background {
        padding: 10px;
    }

    .auth .left {
        padding: 25px 15px;
    }

    .main-modal .modal-dialog .modal-content .modal-body {
        padding: 0;
    }

    .electricity-provider-modal .modal-dialog .modal-content .modal-body {
        padding: 0;
    }

    .quick-topup a {
        height: 70px;
        margin-right: 5px;
    }

    /* OTP input */
    .otp-input input {
        width: 45px;
        height: 45px;
    }

    .transaction-modal .modal-dialog {
        position: relative;
        margin: 0 auto;
        width: 97%;
    }
}

@media (max-width: 500px) {
    #otpModal .password {
        height: 55px;
    }
}

.page li {
    list-style: inherit;
}

footer .quick-info li {
    color: #fff;
    font-size: 16px;
}
footer .quick-info li .icon {
    font-size: 15px;
    color: #f88020;
}