/* body {
    background: whitesmoke;
}
.the_header {
    background: purple;
    display: flex;
    justify-content: space-between;
    padding: 10px;
}
.the_header img {
    width: 100px;
    height: 100px;
}
.logo {
    height: 100px;
    width: 100px;
    background: white;
    border-radius: 10px;
}
.header_menu {
    list-style-type: none;
    display: flex;
    align-content: center;
    flex-wrap: wrap;
}
.header_menu a {
    width: 60px;
    color: white;
    text-decoration: none;
    text-align: center;
}
.mobile_header ul {
    display: inline-grid;
    padding: 0;
    width: 100%;
    text-align: center;
}
.mobile_header a {
    height: 35px;
    text-decoration: none;
    border: 10px;
}
.mobile_header {
    transition: 0.5s ease-out;
    overflow: hidden;
}
#theclickdiv {
    display: none;
}

@media only screen and (min-width: 300px) and (max-width: 767px) {
    .header_menu {
        display: none;
    }
}

@media only screen and (min-width: 1px) and (max-width: 767px) {
    #theclickdiv {
        display: block;
    }
} */

.welcome {
    display: flex;
    justify-content: center;
    background-size: cover;
    height: 500px;
}
#square_box {
    height: 100px;
    width: 100px;
    border-radius: 20px;
    border-style: groove;
    display: flex;
    justify-content: center;
}
.m_hold_first, .m_hold_second {
    display: flex;
    justify-content: space-around;
    margin-top: 5px;
}
#square_box:hover {
    background: #800080d6;
    transition: ease-out;
    transition-duration: 3s;
}
.hold_all_box a {
    border: none;
}

.table-container {
    overflow-x: auto;
    margin: 20px;
}
table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px; /* Ensure table can scroll horizontally */
}
th, td {
    padding: 15px;
    text-align: center;
    border: 1px solid #ddd;
    word-wrap: break-word;
    color: white;
}
th {
    /* background-color: rgb(146, 29, 146); */
    color: white;
}
td img {
    max-width: 100px;
    height: auto;
}
.add-to-cart {
    background-color: rgb(146, 29, 146);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}
.add-to-cart:hover {
    background-color: rgb(146, 29, 146);
}
@media (max-width: 768px) {
    th, td {
        padding: 10px;
    }
    .add-to-cart {
        padding: 8px;
    }
}
.popup_button {
    position: absolute;
    left: 90%;
    border: none;
    color: white;
    background: none;
    font-size: 20px;
}
.popup_head {
    border-radius: 20px;
    margin: 20px;
}
.clearthis_opa {
    display: flex;
}
.popup_opacity {
    width: 100%;
    background-color: rgb(0 0 0 / 89%);
    position: fixed;
    top: 0;
    height: 100%;
    z-index: 10000;
    align-content: center;
    overflow-y: auto;
}
.slide_thing {
    background: purple;
    height: 20px;
    padding: 5px;
    border-radius: 5px;
}
.buy-header {
    background-color: #48006F;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.buy-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
}
.buy-header input {
    width: 60%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    font-size: 16px;
}

.ebuy-header {
    background-color: #48006F;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.ebuy-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
}
.ebuy-header input {
    /*width: 60%;*/
    padding: 10px;
    border-radius: 5px;
    border: none;
    font-size: 16px;
}

.buy-airtime-content {
    text-align: center;
    background-color: #48006F;
    color: white;
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 10px;
    justify-content: space-around;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.buy-airtime-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}
.buy-airtime-popup-content {
    background-color: white;
    width: 80%;
    max-width: 300px;
    border-radius: 10px;
    padding: 20px;
    text-align: left;
}
.buy-airtime-popup-content h2 {
    margin-top: 0;
}
.buy-airtime-popup-content ul {
    list-style: none;
    padding: 0;
}
.buy-airtime-popup-content ul li {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
}
.buy-airtime-popup-content ul li:last-child {
    border-bottom: none;
}
.close-btn {
    display: block;
    text-align: right;
    cursor: pointer;
    color: #48006F;
    font-weight: bold;
}
.buy-airtime-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 20px;
}
.buy-airtime-card {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    cursor: pointer;
}
.buy-airtime-card h3 {
    margin: 0;
    color: #48006F;
    font-size: 15px;
}
.buy-airtime-card .cashback {
    color: green;
}
.buy-airtime-content p:hover {
    text-decoration: underline;
    cursor: pointer;
}
.final-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}
.final-popup-content {
    background-color: white;
    width: 80%;
    max-width: 300px;
    border-radius: 10px;
    padding: 20px;
    text-align: left;
    position: fixed;
    bottom: 0;
}
.final-popup-content ol {
    padding-left: 0;
    display: flex;
    justify-content: space-between;
    font-weight: 500;
    height: 10px;
}
.final-popup-content h2 {
    text-align: center;
    color: #48006F;
}
.final-popup-content p {
    text-align: center;
    color: #48006F;
}
.topup-balance {
    background: gold;
    height: 30px;
    border-radius: 10px;
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    /* margin-top: 40px; */
    color: white;
    justify-content: space-around;
}
.topup-pay {
    background: #48006F;
    height: 30px;
    border-radius: 10px;
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
    color: white;
    justify-content: space-around;
    cursor: pointer;
}
.topup-spin {
    background: white;
    height: 30px;
    border: solid;
    border-color: #48006F;
    border-radius: 10px;
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    /* margin-top: 40px; */
    color: white;
    justify-content: center;
}
.popup-fund-wallet {
    cursor: pointer;
}
.lds-hourglass,
.lds-hourglass:after {
    box-sizing: border-box;
}
.lds-hourglass {
    position: relative;
}
.lds-hourglass:after {
    content: " ";
    display: block;
    border-radius: 50%;
    width: 0;
    height: 0;
    margin: 8px;
    box-sizing: border-box;
    border: 10px solid currentColor;
    border-color: currentColor #48006F currentColor #48006F;
    animation: lds-hourglass 1.2s infinite;
}
@keyframes lds-hourglass {
0% {
    transform: rotate(0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
50% {
    transform: rotate(900deg);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
100% {
    transform: rotate(1800deg);
}
}
#custom_amount {
    width: 60%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    font-size: 16px;
}
/* .popup {
    margin-top: 50px;
} */