html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

:root {
    /* Fonts & general settings */
    --tappy-font: "Comfortaa", sans-serif;
    font-family: var(--tappy-font), system-ui, sans-serif;
    font-weight: 700;
    letter-spacing: 0.1px;
    /* Colors */
    --tap-body-text: #01031d;
    --tap-bg: #ffffff;
    --tap-bg-accent: #f2f6fc;
    --tap-blue: #007bff;
    --tap-green: #11c468;
    --tap-red: #ff004e;
    --tap-orange: #ffa300;
    --tap-grey: #c3ccd5;
    --tap-sup-blue: #02a0fc;
    /* Fades & shadows */
    --tap-blue-fade: #eaf2ff;
    --tap-sup-blue-fade: #0293fc1c;
    --tap-green-fade: #1fff0017;
    --tap-red-fade: #ff004e1f;
    --tap-orange-fade: #f1811c21;
    --tap-shadow: 0px 0px 20px rgba(0, 122, 255, 0.1);
    --tap-shadow-desk: 0px 0px 10px rgba(0, 122, 255, 0.1);
    /* Placeholder, tabs & others */
    --tap-placeholder: #a6bbcf;
    --tap-tab-color: #0c2145;
    --tap-xpays: #000;
    --tap-sup-grey-fade-1: #eaf4f8;
    --tap-sup-grey-fade-2: #dfe6eb;
    --tap-sup-grey-fade-3: #ebeff5;
    /* Other */
    --blue-light: #1575fb1e;
    --slide-down-delay: 10s;
    /* Apply body styles */
    color: var(--tap-body-text);
    background-color: var(--tap-bg);
}

/* ----------------- Dark Theme ----------------- */
[data-theme="dark"] {
    --tap-body-text: #ffffff;
    --tap-bg: #030303;
    --tap-bg-accent: #0c2145;
    --tap-blue-fade: #0041ff45;
    --tap-green-fade: #00ffb247;
    --tap-red-fade: #ff004e4d;
    --tap-orange-fade: #f1811c4d;
    --tap-sup-blue-fade: #02b4fc4d;
    --tap-shadow: -1px 14px 60px rgba(30, 76, 124, 0.4);
    --tap-shadow-desk: 0px 0px 17px rgb(11 99 190 / 27%);
    --tap-placeholder: #c3ccd5;
    --tap-tab-color: #ffffff;
    --tap-xpays: #fff;
    --tap-sup-grey-fade-1: #91939340;
    --tap-sup-grey-fade-2: #adadad26;
    --tap-sup-grey-fade-3: #4c4b4b30;
    /* Apply body styles */
    color: var(--tap-body-text);
    background-color: var(--tap-bg);
}

/* ----------------- Usage Example ----------------- */
body {
    font-family: var(--tappy-font);
    color: var(--tap-body-text);
    background-color: var(--tap-bg);
}

button {
    color: var(--tap-body-text);
    background-color: var(--tap-blue-fade);
}

input::placeholder {
    color: var(--tap-placeholder);
}

.card {
    background-color: var(--tap-bg-accent);
}

@font-face {
    font-family: "Comfortaa";
    src: url('/fonts/Comfortaa-VariableFont_wght.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@media screen and (min-width: 320px) and (max-width: 767px) and (orientation: landscape) {
    html {
        transform: rotate(-90deg);
        transform-origin: left top;
        width: 100vh;
        overflow-x: hidden;
        position: absolute;
        letter-spacing: 1px;
        background-color: var(--tap-bg) !important;
    }
}

/* Remove hover, focus, and active effects */
.user-reg-btn,
.btn:hover,
.btn:focus,
.btn:active,
.btn-dark:hover,
.btn-hover-bg:hover,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus,
.btn-outline-primary:hover {
    box-shadow: none !important;
    outline: none !important;
    /*border-color: #0069ff;*/
    /* Retain border-color for buttons */
    --bs-btn-focus-shadow-rgb: none !important;
    /* Removes focus shadow */
    --bs-btn-hover-bg: none;
    /* Removes hover background */
    --bs-btn-hover-color: none !important;
    /* Removes hover color */
    --bs-btn-active-bg: none !important;
    --bs-btn-active-color: none !important;
}

input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
    box-shadow: 0 0 0px 1000px transparent inset !important;
    background: transparent !important;
    background-color: transparent !important;
    color: var(--tap-body-text) !important;
    transition: background-color 9999s ease-in-out 0s !important;
}
.demo-click {
  cursor: pointer;
}

.demo-popup {
position: fixed;
    top: 10%;
    right: 36%;
    backdrop-filter: blur(15px);
    background-color: rgb(255 255 255 / 0%);
    color: var(--tap-red);
    padding: 12px 18px;
    border-radius: 3rem;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.6);
    z-index: 9999;
    font-size: 12px;
    font-weight: 700;
}

/* Trigger */
.demo-click:focus ~ .demo-popup {
  animation: demoBounceFade 2s ease forwards;
}

.demo-click:focus {
  outline: none;
}

@keyframes demoBounceFade {
  0% { opacity: 0; transform: scale(0.6); }
  25% { opacity: 1; transform: scale(1.15); }
  40% { transform: scale(1); }
  80% { opacity: 1; }
  100% { opacity: 0; transform: scale(0.9); }
}




.transactionReceiptModel {
    background:  var(--tap-bg) !important;
}

.table {
    color: var(--tap-body-text);
    border-color: var(--tap-grey) !important;
    letter-spacing: 0.5px;
}

.tr {
    border-bottom: 1px solid var(--tap-grey) !important;
}

.mb-0 {
    font-size: 1.2rem !important;
    /* Custom html styling applied to  Cover fees  - remove from html and then remove !important here */
    font-weight: 700 !important;
    /* Custom html styling applied to  Cover fees  - remove from html and then remove !important here */
}

.my-3 {
    margin-top: 10px !important;
    margin-bottom: 0.8rem !important;
}

.py-3 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

.mb-4 {
    margin-bottom: 0rem !important;
}

.ms-3 {
    margin-left: 1.2rem !important;
}

.row > * {
    margin-top: 0px;
    padding-right: calc(var(--bs-gutter-x) * 0);
    padding-left: calc(var(--bs-gutter-x) * 0);
}


.g-2,
.gy-2 {
    --bs-gutter-y: 0rem !important;
}

.g-2,
.gx-2 {
    --bs-gutter-x: 0rem !important;
}

.row .g-2 {
    overflow: scroll;
    height: 10rem;
    gap: 0.5rem;
}

.py-2,
.px-2 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
}

.mb-2 {
    margin-bottom: 0rem !important;
}

.mb-3 {
    margin-bottom: unset !important;
}

.mt-1 {
    padding: 0px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: fit-content;
    height: auto;
}

.mb-4 {
    margin-bottom: 0rem !important;
}

.mt-1 {
    margin-top: 0rem !important;
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: none !important;
    border-color: none !important;
}

.tappy-park-btn:hover,
.btn-link:hover {
    color: #fff;
    background-color: none !important;
    border-color: none !important;
}

.tappy-container {
    min-height: 500px;
    /*border: 2px solid #ffffff;*/
    border-radius: 30px;
    padding: 5px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

html {
    position: relative;
    min-height: 100%;
}

@font-face {
    font-family: 'Comfortaa-VariableFont_wght.ttf';
    src: url('/fonts/Comfortaa-VariableFont_wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/*Custom css*/
.industry-radio {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 14%;
}

.industry-radio-input {
    order: 2;
    /* Moves the radio button to the right */
}

.industry-radio-label {
    order: 1;
    /* Keeps the label on the left */
}

.view-width {
    max-width: 500px;
}

.oval-shape {
    border: 1px solid;
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.input-contact-field-tappy {
    box-shadow: none;
    border: 2px solid #0069ff;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
}

.grid-container {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 1px;
    padding: 1px;
    /*    align-items: baseline;*/
}

    .grid-container > .col {
        background-color: #f1f1f1;
        text-align: center;
        padding: 1px;
        font-size: 3px;
    }

/* Custom Grid Area for item4 */
.item4 {
    grid-area: 1 / 2 / 4 / 4;
}

/*Park Details View CSS*/

body {
    font-family: 'Comfortaa', sans-serif;
    background-color: #f8f9fa;
}

.px-2 {
    padding-right: 0rem !important;
    padding-left: 0rem !important;
}

.custom-container {
    min-height: fit-content;
    width: 100%;
    background: white;
    border-radius: 2.5rem;
    overflow: hidden;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1); */
}

.banner-img {
    height: 8.2rem;
    object-fit: cover;
}

.profile-img {
    width: 8rem;
    height: 8rem;
    border-radius: 1.25rem;
    object-fit: cover;
    aspect-ratio: auto 110 / 110;
}

.heading {
    font-weight: 700;
    font-size: 1.375rem;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.subheading {
    font-weight: 500;
    font-size: 1.375rem;
    color: #aebdc1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.day-message,
.visit-time-message {
    color: var(--tap-blue);
    font-size: 1.25rem;
    /* ~20px */
    line-height: 1.5;
}

.visit-time-charges {
    color: var(--tap-blue);
    font-size: 1.875rem;
    /* ~30px */
    line-height: 1.5;
}

.owing_amount {
    /* color: var(--tap-red)!important; */
    margin: 1rem 1rem 0rem;
}

.charge-info {
    font-size: 1.375rem;
    font-weight: 700;
}

.rate-link {
    color: var(--tap-blue);
    font-size: 1.25rem;
    text-decoration: none;
    font-weight: bold;
}

.bottom-container {
    position: relative;
    height: 30vh;
}

    .bottom-container > div:last-child {
        position: absolute;
        bottom: 0;
        width: 100%;
    }

.enter-label {
    color: #0c2145;
    font-weight: 700;
    font-size: 0.875rem;
    /* 14px */
}

.lottie-container {
    width: 35%;
}

.btn-back-color {
    background-color: var(--tap-blue-fade);
    color: #51565a;
    border-color: none !important;
    font-weight: bold;
}

.entry-container {
    position: relative;
    height: 25vh;
}

.btn-container {
    position: relative;
    height: 10vh;
}

.entry-fixed-bottom {
    /*position: absolute;*/
    bottom: 0;
    width: 100%;
}

.entry-label {
    color: #0c2145;
    font-weight: 700;
    font-size: 1.125rem;
    /* 18px */
}

.entry-success-label {
    color: #0c2145;
    font-weight: 800;
    font-size: 1.5625rem;
    /* 25px */
}

.entry-boom-label {
    color: #0c2145;
    font-weight: 700;
    font-size: 1.25rem;
    /* 20px */
}

.successview-options-label,
.successview-options-label-link {
    font-size: 0.9375rem;
    /* 15px */
    font-weight: 700;
}

.successview-options-label {
    color: #0c2145;
}

.successview-options-label-link {
    color: var(--tap-blue);
    text-decoration: none;
}

.marging-10-px {
    margin-left: 10px;
}

.success-custom-check-icon {
    color: var(--tap-blue);
    border: 3px solid var(--tap-blue) !important;
    border-color: var(--tap-blue) !important;
}

/* Responsive Font Tweaks for Small Screens */
@media (max-width: 576px) {

    .heading,
    .subheading {
        font-size: 1.375rem;
        /* ~18px */
    }

    /*    .day-message,*/
    .visit-time-message,
    .rate-link,
    .entry-label,
    .entry-boom-label {
        font-size: 1.20rem;
        /* ~16px */
    }

    .day-message {
        font-size: 1.125rem;
        /* ~16px */
    }

    .visit-time-charges,
    .entry-success-label {
        font-size: 1.875rem;
        /* ~20px */
    }

    .successview-options-label,
    .successview-options-label-link,
    .enter-label {
        font-size: 0.8125rem;
        /* ~13px */
    }

    .profile-img {
        width: 6.5rem;
        height: 6.5rem;
    }

    .banner-img {
        height: 7rem;
    }

    .lottie-container {
        width: 35%;
    }

    .fixed-bottom-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: white;
        border-top: 1px solid #ccc;
        z-index: 1000;
        padding-bottom: env(safe-area-inset-bottom);
        /* for iOS safe area */
    }
}

/* for Record view*/

.confirmation-container {
    position: relative;
    background-color: white;
    width: 100%;
    height: 100%;
    border-radius: 1.25rem;
    padding: 1rem;
    border: 1px solid #ececed;
    overflow: hidden;
}



.blur-effect {
    filter: blur(5px);
    pointer-events: none;
    user-select: none;
    border-radius: 1.25rem;
}

/* Container for confirmation message and button above */
.confirmation-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: black;
}

.confirm-btn {
    background-color: #3f8dfb;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .confirm-btn:hover {
        background-color: #2c6cd1;
    }

.digits-button {
    border: 1px solid #3f8dfb;
    border-radius: 8px;
    padding: 4px 12px;
    font-weight: 500;
}

.reverse-button {
    border: 1px solid #ff361f;
    border-radius: 999px;
    padding: 4px 12px;
    font-weight: 900;
    color: #ff361f;
}

.refund-button {
    border: 1px solid #ff361f;
    border-radius: 999px;
    padding: 4px 12px;
    font-weight: 900;
    color: black;
}

.information {
    font-weight: 700;
    font-size: 0.9rem;
}

.footer-icons {
    font-size: 0.8rem;
    color: black;
    font-weight: bold;
}

.active-footer-icons {
    font-size: 0.8rem;
    color: #3f8dfb;
    font-weight: bold;
}

.icon-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: red;
    color: white;
    font-size: 10px;
    font-weight: bold;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.transaction-record {
    background-color: white;
    width: 100%;
    height: 100%;
    border-radius: 1.25rem;
    padding: 1rem;
    border: 1px solid #ececed;
}

.alert-text {
    color: white;
    background-color: #1575fb;
    width: 100%;
    height: 100%;
    border-radius: 1.25rem;
    padding: 1rem;
}

.expire-alert {
    display: inline-flex;
    align-items: center;
    color: #14c47a;
}

.wallet-email-phone {
    color: #c6d1d3;
    font-size: 1rem;
}

.wallet-authentication-price {
    /* margin-top: 0.25rem; */
    background-color: #e3ebed;
    color: #28a745;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
}

.wallet-balance-price {
    background-color: #e3ebed;
    color: #28a745;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
}

.payout-div {
    background-color: white;
    border-radius: 1rem;
    padding: 0.75rem;
    width: 30%;
}

.lastpayment-maindiv {
    background-color: white;
    width: 100%;
    height: 100%;
    border-radius: 1.25rem;
    padding: 1rem;
}

.bank-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--tap-placeholder);
}

.bank-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.payout-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--tap-body-text);
}

.since-text {
    font-size: 0.75rem;
    color: var(--tap-placeholder);
}

.showcase-wrapper,
.showcase-wrapper_records {
    background: var(--tap-bg);
}

.date-day-wallet {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--tap-placeholder);
}

.last-payment {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--tap-placeholder);
}



.industry-wallet {
    font-size: 0.8rem;
    color: var(--tap-placeholder);
    font-weight: 500;
}

.username-wallet {
    font-size: 1rem;
    color: black;
    font-weight: 700;
}

.location-wallet {
    font-size: 0.8rem;
    color: #aebdc1;
    font-weight: 500;
}


.slider-WalletAuthentication {
    background: var(--tap-blue-fade);
    height: 7px;
    width: 7px;
    border-radius: 10px;
    opacity: 100%;
    display: inline-block;
    margin: 0px 1rem 10px 0;
}

.active-slider-WalletAuthentication {
    width: 30px;
    height: 7px;
    border-radius: 20px;
    background-color: var(--tap-blue);
    display: inline-block;
    margin: 0px 1rem 0px 0;
}

.tappy-text {
    padding-top: 0.5rem;
    padding-bottom: 1rem;
}

.custome-swich-walletAuthentication {
    width: 34px;
    height: 24px;
    border: 1px solid #1575fb;
}

.approve-input-payment {
    font-size: 0.95rem;
    font-weight: bold;
}

.custom-placeholder::placeholder {
    color: #b8c5c9;
}

.placeholdernew {
    display: inline-block;
    min-height: 1em;
    vertical-align: middle;
    cursor: wait;
}

.custom-dropdown-wrapper {
    position: relative;
    width: 100%;
    /* max-width: 400px; */
    /* margin-top: 10px; */
}

.custom-dropdown {
    border: 1px solid #0069ff;
    border-radius: 25px;
    padding: 10px 15px;
    cursor: pointer;
    color: #c0cbce;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    background-color: white;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='50,20 100,70 50,120' stroke='%230069ff' stroke-width='15' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 14px 14px;
}

    .custom-dropdown.active {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        border-bottom: none;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' width='14' height='14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20,50 70,100 120,50' stroke='%230069ff' stroke-width='15' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 1rem center;
        background-size: 14px 14px;
    }

    .custom-dropdown .placeholder.selected {
        color: #000;
    }

.arrow {
    font-size: 14px;
    color: #0069ff;
}

.dropdown-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid #0069ff;
    border-top: none;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    background: white;
    z-index: 1000;
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    max-height: 200px;
    overflow-y: auto;
}

    .dropdown-options li {
        padding: 10px 15px;
        cursor: pointer;
    }

        .dropdown-options li:hover {
            background-color: #f0f8ff;
        }

.businessselectiontype-fields {
    border-color: #0069ff;
    padding: 10px 15px;
}

.take-photo {
    height: 100px;
    width: 40%;
    color: #0069ff;
}

.uploadbutton {
    height: 100px;
    width: 40%;
    color: #0069ff;
    border-radius: 1.25rem;
}

.app_buttons_cont .apps_btns:nth-child(1) {
        width: 65%;
}

/* Second .apps_btns */
.app_buttons_cont .apps_btns:nth-child(2) {
  width: 75%;
}

/* Third .apps_btns */
.app_buttons_cont .apps_btns:nth-child(4) {
        width: 80%; 
}

.businesstypeselection-notetext {
    text-indent: 2em;
    font-weight: 700;
}

.next-button {
    color: #0069ff;
    background-color: #ddebfd;
    width: 40%;
    border-color: #0069ff;
}

.start-video {
    color: #0069ff;
    color: white;
    background-color: #0069ff;
    width: 40%;
}

#loginButton {
    color: #0069ff;
    background-color: #ddebfd;
    width: 50% !important;
}

.subheading-Taps {
    font-weight: 500;
    font-size: 1.375rem;
    color: #0069ff;
}


#startButton {
    margin-top: -1rem;
}

.logincodeview-image {
    height: 24rem;
    margin: 0rem 0rem 0rem 1rem !important;
}

.park-pay-svg {
    padding: 0%;
    width: 50%;
}



.tpay-pay-svg {
    padding: 0%;
    width: 50%;
}

.font-bold-login {
    font-weight: 700;
}

.activation_login_button {
    color: #ffffff;
    background-color: #0069ff;
    width: 40% !important;
}

    .activation_login_button:hover {
        color: #ffffff;
        background-color: #0069ff;
        width: 40% !important;
    }

.additionalview-title {
    color: #0069ff;
}

.custom-popup {
    position: absolute;
    width: 320px;
    background-color: white;
    border: 2px solid #2a7fff;
    border-radius: 17px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    /*  font-size: 14px;
    line-height: 1.5;*/
    left: 749.469px;
    top: -0.8021px;
}

.custom-popup-businessview {
    position: absolute;
    width: 320px;
    background-color: white;
    border: 2px solid #2a7fff;
    border-radius: 17px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    /*  font-size: 14px;
    line-height: 1.5;*/
    left: 749.469px;
    top: -0.8021px;
}

.popup-close-btn {
    position: absolute;
    top: -2px;
    right: 14px;
    /*background-color: #2a7fff;*/
    color: white;
    font-size: 18px;
    /*border: none;*/
    /*border-radius: 50%;*/
    width: 24px;
    height: 24px;
    line-height: 20px;
    text-align: center;
    cursor: pointer;
    padding: 0;
}
.payment-icons {
    height: 35px;
    width: auto;
}
/* Responsive adjustment */
@media screen and (max-width: 576px) {
    .custom-popup {
        width: 77vw !important;
        left: 8% !important;
        top: 0px !important;
        /* display below the icon */
    }

    .custom-popup-businessview {
        width: 77vw !important;
        left: 11% !important;
        top: 7px !important;
        /* display below the icon */
    }
}

.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 82%;
    backdrop-filter: blur(15px);
    background-color: rgb(255 255 255 / 0%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--tap-shadow);
}

.custom-container-activation-success {
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.3);
    /* Semi-transparent dark */
}

.hidden {
    display: none !important;
}

.activation-wallet-success-btn {
    color: white;
    background-color: #0069ff;
    width: 40% !important;
}

    .activation-wallet-success-btn:hover {
        color: white;
        background-color: #0069ff;
        width: 40% !important;
    }

.back-button {
    color: #0069ff;
    color: white;
    background-color: #0069ff;
    width: 40%;
}

.tpay-pay-button-width {
    width: 30% !important;
    height: 30% !important;
}

.park-pay-button-width {
    width: 30% !important;
    height: 30% !important;
}

@media screen and (max-width: 576px) {
    .tpay-pay-button-width {
        width: 80% !important;
        height: 80% !important;
    }

    .park-pay-button-width {
        width: 80% !important;
        height: 80% !important;
    }
}

.image-pop-up {
    max-width: 100%;
    height: auto;
}

#cropperModal .modal-dialog {
    max-width: 93vw !important;
    max-width: 92% !important;
    margin: 1rem;
    min-height: fit-content;
}

#cropperModal .modal-content {
    border-radius: 1rem;
    padding: 1rem;
}

#cropperModal #cropperImage {
    width: 100%;
    height: auto;
    max-height: 60vh;
    object-fit: contain;
}

.cropper-container {
    border-radius: 1.5rem !important;
}

.cropper-modal {
    border-radius: 1.5rem !important;
    background-color: var(--tap-bg) !important;
}

.modal-footer > * {
    margin: 0rem !important;
}

.gap-2 {
    gap: 1rem !important;
}

@media (max-width: 576px) {
    #cropperModal .modal-dialog {
        max-width: calc(100% - 2rem) !important;
    }

    #cropperModal .modal-body {
        padding: 0rem !important;
    }

    #cropperModal .modal-footer {
        flex-direction: row;
        gap: 0.5rem;
        height: 15vh;
    }

    #cropperModal .btn {
        width: 100%;
    }

    .modal-footer {
        border-top: 0px solid var(--tap-grey) !important;
        display: flex;
        flex-wrap: wrap;
        flex-shrink: 0;
        align-items: center;
        justify-content: flex-end;
        padding: 1rem 0 0 0;
        border-bottom-right-radius: calc(.3rem - 1px);
        border-bottom-left-radius: calc(.3rem - 1px);
        flex-wrap: unset !important;
        height: 71svh;
        justify-content: space-between;
    }
}

.w-sm-auto {
    background-color: var(--tap-red);
}

.text-success {
    color: var(--tap-green) !important;
}

.table-responsive {
    overflow: scroll;
    height: 14rem;
}

.no-scrollbar {
    overflow: auto;
    /* or scroll */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
    /* Chrome, Safari, Opera */
}

    .no-scrollbar::-webkit-scrollbar {
        display: none;
    }


/* Activation pages: */
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    padding-right: var(--bs-gutter-x, 1rem);
    padding-left: var(--bs-gutter-x, 1rem);
}

.reg-wrapper,
.wallet-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 1rem;
    margin-bottom: 0rem;
    flex-direction: column;
}

.wallet-container {
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    color: var(--tap-body-text);
    background: var(--tap-bg);
    box-shadow: var(--tap-shadow);
    padding: 1rem;
}

.flex_helperer {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    height: 80svh;
    margin: 1rem;
    color: var(--tap-body-text);
}

.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: -webkit-fill-available;
    height: 96svh;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: rgba(255, 255, 255, 0);
    /* light white overlay */
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(45px);
    /* For Safari */
    font-size: 23px;
    font-weight: 700;
    opacity: 1;
    transition: opacity 0.8s ease;
    pointer-events: all;
    margin: 1rem;
    padding: 0rem;
}

.reg-container {
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    color: var(--tap-body-text);
    background: var(--tap-bg);
    box-shadow: var(--tap-shadow);
    padding: 1rem;
}

.terms-container {
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    color: var(--tap-body-text);
    background: var(--tap-bg);
    box-shadow: var(--tap-shadow);
    padding: 1rem 1rem 0rem 1rem;
    height: 543px;
}

    .terms-container::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari, Opera */
    }

.container_helper_reg {
    padding: 1rem 1rem 0rem 1rem;
}

.custom-container {
    /*	height: fit-content; */
    width: 100%;
    border-radius: 2.5rem;
    overflow: hidden;
    color: var(--tap-body-text);
    background: var(--tap-bg);
    box-shadow: var(--tap-shadow);
    padding: 0rem;
    padding-top: 0;
    padding-bottom: 0;
}

.reg-main-view {
    height: 43rem;
    overflow-y: scroll;
    position: relative;
    z-index: 0;
    margin-bottom: -8rem;
    padding: 1rem;
}

.wallet-main-view {
    height: 91svh;
    overflow-y: scroll;
    overflow-x: hidden;
    position: relative;
    z-index: 0;
    margin-bottom: -8rem;
    padding: 1rem 1rem 8rem 1rem;
    gap: 0.5rem;
    display: flex;
    flex-direction: column;
}

.mobile_adjust_frame {
    padding: 0rem 1rem 8rem 1rem!important;
}

.wallet_page_tabs_container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    border-radius: 50px;
    padding: 0.8rem;
}

.pers_busi_radio_cust {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 16px;
}

    /* Hide the default radio */
    .pers_busi_radio_cust input[type="radio"] {
        display: none;
    }

.custom-radio {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    margin: 6px 0;
    user-select: none;
    font-size: 15px !important;
}

    /* Hide the default checkbox */
    .custom-radio input[type="checkbox"] {
        display: none;
    }

    /* Outer circle */
    .custom-radio .checkmark {
        width: 30px;
        height: 30px;
        border: 4px solid transparent;
        border-radius: 50%;
        position: relative;
        display: inline-block;
        margin-right: 8px;
        box-sizing: border-box;
        background: var(--tap-blue-fade);
        transition: all 0.2s ease;
    }

        /* Inner dot (hidden by default) */
        .custom-radio .checkmark::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            width: 22px;
            height: 22px;
            background: var(--tap-blue);
            border-radius: 50%;
            transform: translate(-50%, -50%) scale(0);
            /* hidden */
            transition: transform 0.3s ease;
            /* smooth animate */
        }

    /* When checked → show the inner dot */
    .custom-radio input[type="checkbox"]:checked + .checkmark::after {
        transform: translate(-50%, -50%) scale(1);
        /* pop in */
        background: var(--tap-blue);
    }





/* Create custom circle */
.custradio_circle {
    width: 30px;
    height: 30px;
    border: 4px solid transparent;
    border-radius: 50%;
    position: relative;
    transition: all 0.2s ease;
    background: var(--tap-blue-fade);
}

    .custradio_circle::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 22px;
        height: 22px;
        background: var(--tap-blue);
        border-radius: 50%;
        transform: translate(-50%, -50%) scale(0);
        /* start invisible */
        transition: transform 0.3s ease;
        /* add smooth animation */
    }

.pers_busi_radio_cust input[type="radio"]:checked + .custradio_circle::after {
    transform: translate(-50%, -50%) scale(1);
    /* scale up when selected */
}

.activation_title_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.auth_title_row_n_icon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.auth_title_row_n_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.busdeets_title_row {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.6);
    /* semi-transparent */
    backdrop-filter: blur(10px);
    padding: 0rem;
    display: flex;
    justify-content: space-between;
}

.activation_headers {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.2px;
    color: var(--tap-blue);
    padding: 0rem 0.3rem 0;
}

.stats_icon {
    width: 40px;
    height: auto;
}

.upload_icon_class {
    border-radius: 25rem;
    height: 46px;
    width: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, 0);
    border: 1px solid var(--tap-blue);
}

.edit_upload_icon_class {
    border-radius: 25rem;
    height: 46px;
    width: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, 0);
    border: 1px solid var(--tap-blue);
    margin-top: 2rem;
}

.outericon_circle {
    border-radius: 25rem;
    background: transparent;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .outericon_circle svg {
        fill: var(--tap-blue);
    }

.outericon_circle_open {
    border-radius: 25rem;
    background: var(--tap-blue);
    height: 38px;
    width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#help_infopop_icon {
    width: 22px;
}

.help_info_icon,
.help_image_icon {
    fill: var(--tap-blue);
}

.header-separator {
    margin: 0.5rem 0;
    opacity: 1;
    height: 1px;
    background: transparent;
    /* background: linear-gradient(58deg, #0078ff, #0099ff, #00beff, #00cdff, #00d0f5, #03d8da, #06e6af); */
}

.reduce_width_infopops {
    width: 86%;
    font-size: 18px;
}

.custom-form .form-group {
    position: relative;
    margin-top: 2rem;
    width: 100%;
}

.caro-form .form-labels {
    position: relative;
    left: 0;
    top: 10px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.2px;
    color: var(--tap-placeholder);
    transition: 0.3s ease all;
    pointer-events: none;
}

.caro-form .form-control {
    width: 100%;
    padding: 1.2rem 0.2rem 0.4rem;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.2px;
    border: none;
    border-bottom: 1px solid var(--tap-blue);
    background: transparent;
    outline: none;
    color: var(--tap-body-text);
    border-radius: 0;
}

.custom-form {
    position: relative;
}

    .custom-form .form-group {
        position: relative;
        margin-top: 1.5rem;
    }

.send-money-wallet-view .custom-form .form-group {
    margin-top: 1rem !important;
}
/* default pill style */
.custom-form .form-control {
    width: 100%;
    padding: 1.2rem 0.8rem 0.4rem;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.2px;
    border: 1px solid var(--tap-blue);
    border-radius: 999px;
    background: transparent;
    outline: none;
    color: var(--tap-body-text);
    transition: border-radius 0.4s ease-in-out, border-color 0.3s ease-in-out, box-shadow 0.4s ease-in-out, padding 0.3s ease-in-out;
    box-shadow: none;
    /* no underline by default */
}



    /* hide placeholder so label acts like placeholder */
    .custom-form .form-control::placeholder {
        color: transparent;
    }

/* floating label */
.custom-form .form-labels {
    position: absolute;
    left: 22px;
    top: 14px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.2px;
    color: var(--tap-placeholder);
    transition: all 0.3s ease;
    pointer-events: none;
}

/* focused/filled */
.custom-form .form-control:focus,
.custom-form .form-control:not(:placeholder-shown) {
    border-color: transparent;
    /* hide pill border */
    border-radius: 0;
    padding: 1.2rem 0.2rem 0.4rem;
    /* shrink for underline mode */
    box-shadow: 0 1px 0 0 var(--tap-blue) !important;
    /* smooth underline */
    border: none !important;
}

    /* label floats up & left */
    .custom-form .form-control:focus ~ .form-labels,
    .custom-form .form-control:not(:placeholder-shown) ~ .form-labels {
        top: -12px;
        left: 0;
        font-size: 15px;
        color: var(--tap-blue);
    }

/* error state */
.custom-form .form-group.error .form-control {
    border: none;
    border-bottom: 1px solid var(--tap-red);
    border-radius: 0;
    color: var(--tap-red);
}

.custom-form .form-group.error .form-labels {
    color: var(--tap-red);
}

.pay-form .form-group {
    position: relative;
    margin-top: 0.8rem;
    height: 45px;
}


/* input */
.pay-form .form-control {
    width: 100%;
    padding: 1.2rem 0.2rem 0.4rem;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.2px;
    border: none;
    border-bottom: 1px solid var(--tap-blue);
    background: transparent;
    outline: none;
    color: var(--tap-body-text);
    border-radius: 0;
    text-align: right;
    /* numbers + placeholder align right */
}

    /* placeholder styling */
    .pay-form .form-control::placeholder {
        color: var(--tap-placeholder);
        text-align: right;
        direction: rtl;
        /* makes sure R0.00 hugs the right edge */
        font-size: 18px;
        letter-spacing: 0.6px;
    }

/* floating label */
.pay-form .form-labels {
    position: absolute;
    left: 0;
    /* label sits on the left */
    top: 10px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.2px;
    color: var(--tap-placeholder);
    transition: 0.3s ease all;
    pointer-events: none;
}

/* float label up on focus or when input has content */
.pay-form .form-control:focus ~ .form-labels,
.pay-form .form-control:not(:placeholder-shown) ~ .form-labels {
    top: -15px;
    font-size: 15px;
    color: var(--tap-blue);
}

/* focus effect */
.pay-form .form-control:focus {
    border-bottom: 1px solid var(--tap-blue);
}

/* error state */
.pay-form .form-group.error .form-control {
    border-bottom: 1px solid var(--tap-red);
    color: var(--tap-red);
}

.pay-form .form-group.error .form-labels {
    color: var(--tap-red);
}

.mobilenum-form .form-group {
    position: relative;
    width: 100%;
}

.mobilenum-form .form-control {
    width: 95%;
    padding: 1.2rem 0.2rem 0.4rem;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.2px;
    border: none;
    border-bottom: 1px solid var(--tap-blue);
    background: transparent !important;
    background-color: transparent !important;
    outline: none;
    color: var(--tap-body-text);
    border-radius: 0;
    margin-left: 1rem;
}

    /* hide placeholder so label acts like placeholder */
    .mobilenum-form .form-control::placeholder {
        color: transparent;
    }

.mobilenum-form .form-labels {
    position: absolute;
    left: 0;
    top: 10px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.2px;
    color: var(--tap-blue-fade);
    transition: 0.3s ease all;
    pointer-events: none;
}

/* float label up on focus or when input has content */
.mobilenum-form .form-control:focus ~ .form-labels,
.mobilenum-form .form-control:not(:placeholder-shown) ~ .form-labels {
    top: -15px;
    font-size: 15px;
    color: var(--tap-body-text);
}

/* focus effect */
.mobilenum-form .form-control:focus {
    border-bottom: 1px solid var(--tap-blue);
}

/* error state */
.mobilenum-form .form-group.error .form-control {
    border-bottom: 1px solid var(--tap-red);
    color: var(--tap-red);
}

.mobilenum-form .form-group.error .form-labels {
    color: var(--tap-red);
}

.payment-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    justify-content: center;
    align-items: flex-start;
    background: transparent;
    backdrop-filter: blur(19px);
    padding: 5rem 1rem 0rem 1rem;
}

.payment-modal-content {
    background-color: var(--tap-bg);
    border-radius: 20px;
    padding: 1rem;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: var(--tap-shadow);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 10px;
    margin-bottom: 1rem;
}

.modal-bank-icon {
    box-shadow: 0px 0px 9px 2px rgb(0 0 0 / 6%);
    border-radius: 50px;
    height: 70px;
    width: 70px;
}

    .modal-bank-icon svg {
        width: 70px;
        height: 70px;
    }

.modal-bank-name {
    font-size: 16px;
    font-weight: 700;
    margin: 0.2rem 0rem 0rem;
    text-align: left;
}

.modal-message {
    font-size: 1rem;
    margin: 1rem 0;
    color: var(--tap-body-text);
}

.modal-amount {
    font-size: 16px;
    font-weight: bold;
    color: var(--tap-blue);
    margin-bottom: 1.5rem;
}

.modal-buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.modal-cancel,
.modal-confirm {
    flex: 1;
    padding: 0.7rem;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
}

.modal-cancel {
    background-color: var(--tap-red);
    color: #ffffff;
}

.modal-confirm {
    background-color: var(--tap-blue);
    color: #ffffff;
}

.modal-bank-icon img {
    width: 70px;
    height: 70px;
}

.payment_section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0rem;
}

select#bankSelect_custom {
    padding: 0px;
    /* display: none; */
    width: 100%;
    background: none;
    border: none;
    border-bottom: 1px solid var(--tap-blue) !important;
    border-radius: 0;
    height: 50px;
    color: var(--tap-grey)
}

.bank_selector_dropdown {
    background: var(--tap-bg);
    width: 100%;
    border-radius: 23px;
    overflow: hidden;
    padding: 0px 0px 0px 10px;
    align-items: center;
    max-height: 37px;
    margin-top: 0px;
}

    .bank_selector_dropdown label {
        display: none;
    }

.payout_btn_container {
    margin-top: 1rem;
}

.send-money-wallet-view {
    padding-right: 0 !important;
    margin-top: 0rem !important;
}




.noanimation-form .form-labels {
    display: flex;
    padding-left: 17px;
    letter-spacing: 1px;
    line-height: 1;
    font-size: 15px;
    font-weight: 700;
    color: var(--tap-placeholder);
    position: relative;
    top: 0px;
    left: 0;
    width: 100%;
    transition: 0.5s all;
    cursor: text;
}

.noanimation-form .form-control {
    display: flex;
    width: 90%;
    padding: 0.8rem 1.5rem 0.65rem 0.2rem;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 700;
    letter-spacing: 1px;
    background-clip: padding-box;
    appearance: none;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--tap-blue);
    color: var(--tap-body-text);
    background: transparent;
    outline: none;
    box-shadow: none;
    transition: border-color 0.2s ease;
    flex-direction: row;
    align-items: center;
    margin: 0.5rem auto auto;
    width: 83%;
    float: right;
}

    .noanimation-form.form-control::placeholder {
        letter-spacing: 1px;
        text-transform: capitalize;
        font-size: 16px;
        color: var(--tap-placeholder);
        padding-left: 0px !important;
        transform: translateY(-2px);
    }

    .noanimation-form.form-control:focus {
        color: var(--tap-placeholder);
        border-bottom: solid 1px var(--tap-blue);
        background: transparent;
    }

    /* Optional invalid highlight */
    .noanimation-form .form-control:invalid {
        /* border-color: var(--tap-red); */
        outline: 0;
    }


    /* On focus or valid */
    .noanimation-form .form-control:focus,
    .noanimation-form .form-control:valid {
        border-bottom: 1px solid var(--tap-blue);
    }


        /* Animate label position when input is focused or valid */
        .noanimation-form .form-control:focus ~ .form-labels,
        .noanimation-form .form-control:valid ~ .form-labels {
            font-size: 15px;
            padding-left: 1px;
            top: -60px;
            /* color: var(--tap-placeholder); */
            width: 100%;
            display: flex;
            margin-bottom: 2px;
            left: 0px;
        }

.payment-reference_header {
    font-size: 14px;
    text-align: left;
}
.footer_logo_container {
    display: flex;
    padding-right: 3rem;
    margin: 0.5rem auto auto;
    flex-direction: row;
    justify-content: center;
}

.park_footer_logo_container {
    display: flex;
    margin: 0.5rem auto auto;
    flex-direction: row;
    justify-content: center;
}

.my_tappy_logo {
    width: 130px;
    height: auto;
}

.park_footer_logo_container {
    display: flex;
    margin: 0.5rem auto auto;
    flex-direction: row;
    justify-content: center;
}

/* Form Section */
.form_content_flex {
    display: flex;
    flex-direction: column;
    justify-content: start !important;
    height: fit-content;
    max-height: 40rem;
    min-height: 28rem;
    /* makes hight of white tile correct height to fit into screen */
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    overflow-y: hidden;
}

.pay_form_content_flex {
    display: flex;
    flex-direction: column;
    justify-content: start;
    height: fit-content;
    max-height: 40rem;
    min-height: 28rem;
    /* makes hight of white tile correct height to fit into screen */
    gap: 0.8rem;
    margin-bottom: 0rem;
    overflow-y: hidden;
}

.scroll_image_container::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.form_content_flex_wallet {
    display: flex;
    flex-direction: column;
    justify-content: start;
    height: fit-content;
    min-height: fit-content;
    gap: 1rem;
    /* margin: 0.8rem 0.8rem 6rem 0.8rem; */
}

.terms_form_content_flex {
    display: flex;
    flex-direction: column;
    justify-content: start;
    height: fit-content;
    max-height: 40rem;
    min-height: 28rem;
    /* makes hight of white tile correct height to fit into screen */
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    flex: 1;
    /* take available space */
    overflow-y: auto;
    /* scrolls terms */
    padding: 0rem;
}

    .terms_form_content_flex::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari, Opera */
    }

.image_under {
    z-index: 0;
    position: relative;
}


.text-danger {
    color: var(--tap-red) !important;
    padding: 0.5rem 0rem 0;
    letter-spacing: 0.2px;
    line-height: 2;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    width: 100%;
    display: inline-block;
}

.field-validation-error {
    margin-left: 20px;
}

#profile-error {
    margin: -14px 0 -20px 20px;
    line-height: 18px;
    width: 50%;
}

#banner-error {
    margin-top: -37px;
    line-height: 18px;
}

.logout_button {
    float: right;
    font-size: 1rem;
    padding: 0rem 0rem 0 0rem;
}

/* Buttons */
.activation_button_container {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 0.8rem;
}

.tappymeinfocont {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tappyme {
    width: 50%;
    height: auto;
}

.tappymeinfowrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 4rem;
    height: 385px;
}

.tappyme_button_container {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 3rem auto 0rem;
}

#tappyMebutton {
    height: fit-content;
}

.blk-btn {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, box-shadow .15s ease-in-out;
    width: 100%;
    border-radius: 2rem;
    background-color: var(--tap-body-text);
    padding: 4px 24px;
}

.buttons_ontop {
    z-index: 1;
    position: relative;
}

.btn-check:active + .btn-primary,
.btn-check:checked + .btn-primary,
.btn-primary.active,
.btn-primary:active,
.show > .btn-primary.dropdown-toggle {
    color: #ffffff;
    background-color: var(--tap-blue);
    border: none !important;
    font-weight: 700 !important;
    box-shadow: none !important;
}

.btn {
    display: inline-block;
    height: 45px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    padding: 5px 0 2px 0;
    font-size: 1.3rem;
    border: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, box-shadow .15s ease-in-out;
    letter-spacing: 1px;
    width: 100%;
    border-radius: 5rem;
}

    .btn:hover {
        color: #ffffff;
    }

.bluebtn {
    display: inline-block;
    height: 45px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    padding: 5px 0 0;
    font-size: 16px;
    border: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, box-shadow .15s ease-in-out;
    letter-spacing: 1px;
    width: 50%;
    border-radius: 5rem;
}

.tip-btn {
    display: inline-block;
    height: 45px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    padding: 5px 0 0;
    font-size: 1.3rem;
    border: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, box-shadow .15s ease-in-out;
    letter-spacing: 1px;
    width: 100%;
    border-radius: 1rem;
}

/* Base animation setup */
.tip-btn {
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, background-color 0.3s ease;
}

    /* Bounce/pop on click */
    .tip-btn:active {
        transform: scale(0.94);
    }

    /* Background burst animation */
    .tip-btn::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.25);
        /* subtle highlight flash */
        border-radius: 50%;
        transform: translate(-50%, -50%);
        opacity: 0;
        pointer-events: none;
    }

    /* Trigger burst */
    .tip-btn:active::after {
        animation: clickBurst 0.8s ease-out forwards;
    }

/* Burst keyframes */
@keyframes clickBurst {
    0% {
        width: 0;
        height: 0;
        opacity: 0.5;
    }

    70% {
        width: 180%;
        height: 180%;
        opacity: 0.1;
    }

    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

/* Optional slight "text jolt" using scale */
.tip-btn:active {
    transform: scale(0.94);
}

/* Activation page unique code input: */
.activationcodeview-image-container {
    width: max-content;
    height: 22rem;
    overflow: hidden;
    border-radius: 2rem;
    margin: auto;
}

.activationcodeview-image {
    height: 40rem;
    margin-top: -10rem;
}

/* .activationcodeview-image {
    max-width: 20rem;
} */

.linkdevice_codeview_image {
    max-width: 425px;
    position: absolute;
    margin-left: -200px;
}

.already-user {
    margin: 0rem 1rem -1.5rem 0rem !important;
}

.create-user {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    margin: 0rem 1rem -1.5rem 0rem !important;
}

.me-1 {
    margin-right: -.5rem !important;
}

.activationcodeview-input {
    letter-spacing: 3px !important;
    text-transform: uppercase;
}

    .activationcodeview-input::placeholder {
        text-transform: capitalize;
    }

.activation_active_button {
    color: #ffffff;
    background-color: var(--tap-blue);
    line-height: 2;
    letter-spacing: 0;
}

.select_hum_bus_cont {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    padding: 1rem 0 0rem 0 !important;
}

.ifperson_sel {
    justify-content: space-evenly !important;
    gap: 0 !important;
}

.wallet_tips {
    margin: 1.5rem 0.2rem !important;
}

ul.wallet_tips_list.auth_veriview_info_text > li {
    font-size: 12px !important;
}

    ul.wallet_tips_list.auth_veriview_info_text > li img {
        width: 22px !important;
        height: 22px !important;
    }

.container_sel_person {
    gap: 1rem;
}

.select_hum_bus_row {
    margin-bottom: 1rem;
}

.icon_if_personal_busniness_icons {
    height: 36px;
    max-width: 100%;
    margin: 0px 0px 7px 1px;
}

.cancel_active_button {
    color: #ffffff;
    background-color: var(--tap-red);
    line-height: 2;
    letter-spacing: 0;
}

.find_share_icon {
    height: 30px;
    margin: 0px 5px 10px;
}

.activation-success-label {
    font-size: 21px;
}

.activation-success-sub {
    letter-spacing: 0.2px;
    line-height: 2;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: left;
    width: 100%;
    display: inline-block;
    margin-bottom: 0rem
}

.from_your_browser_container {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.from_your_browser_cont {
    display: flex;
    flex-direction: column;
}

/* Contact No. page unique code input: */
.contact_veriview {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100%;
}

.from_your_browser {
    height: 134px;
    width: auto;
}

.contact_prefix {
    color: var(--tap-blue);
    float: left;
    height: 47px;
    padding: 1.2rem 0.2rem 0.4rem;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.2px;
    border: none;
    background: transparent;
    outline: none;
    border-radius: 0;
}

.square_up_corn {
    border-radius: 0rem 25rem 25rem 0rem;
}

/* OTP page unique code input: */
.otp_verifiview_timer {
    text-align: center;
}

.otp_verifiview_timer_label {
    font-size: 1.8rem;
    font-weight: 700;
    width: 6rem;
    height: 6rem;
    margin: 0 auto;
    padding: 0.9rem 0.5rem 0.8rem 0.5rem;
    border: 2px solid var(--tap-grey);
    line-height: 2.3;
    border-radius: 50px;
}

.otp_verifiview_resend {
    text-align: center;
}

.otp_verifiview_resend_link {
    font-size: 20px;
}

.contact_veriview_info {
    margin: 1rem 0 0rem;
}

.contact_veriview_info_text {
    padding: 0rem 0.3rem 0;
    letter-spacing: 0.2px;
    line-height: 1.5;
    font-size: 1rem;
    font-weight: 700;
    text-align: left;
    width: 92%;
    display: inline-block;
    margin-bottom: 0rem;
}

.auth_veriview_info_text {
    padding: 0;
    letter-spacing: 0.2px;
    line-height: 1.7;
    font-size: 13px;
    font-weight: 700;
    text-align: left;
    width: -webkit-fill-available;
    display: inline-block;
    margin-bottom: 0rem;
}

.textbody_size {
    font-size: 1.2rem;
    margin-bottom: 0 !important;
}

#IndustryDiv {
    margin-bottom: 0.8rem;
}

.infopop {
    position: absolute;
    padding: 0.8rem;
    border-radius: 20px;
    background: var(--tap-bg);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .5s, visibility 0s linear .5s;
    transition: opacity .5s, visibility 0s linear .5s;
    z-index: 3;
    box-shadow: var(--tap-shadow);
    font-size: 17px;
    top: 260px;
    width: 94%;
    font-weight: 700;
    margin: 0 auto;
}

    .infopop:target {
        visibility: visible;
        opacity: 1;
        /* cancel visibility transition delay */
        -webkit-transition-delay: 0s;
        transition-delay: 0s;
        position: fixed;
        /* instead of absolute */
        top: 50% !important;
        left: 50%;
        transform: translate(-50%, -50%);
    }

.infopop-close {
    position: absolute;
    padding: 10px;
    max-width: 500px;
    border-radius: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, .9);
}

.infopop .close {
    position: absolute;
    right: 0.8rem;
    top: 0.8rem;
}

.close-infopop {
    cursor: default;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .5s, visibility 0s linear .5s;
    transition: opacity .5s, visibility 0s linear .5s;
    z-index: 2;
    background: transparent;
    /* backdrop-filter: blur(10px); */
    width: 100vw;
    height: 100svh;
}

.infopop:target + .close-infopop {
    opacity: 1;
    visibility: visible;
    /* cancel visibility transition delay */
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    position: fixed;
    /* instead of absolute */
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
}









.info-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: opacity .5s, visibility 0s linear .5s;
    transition: opacity .5s, visibility 0s linear .5s;
    z-index: 2;
    background: transparent;
    backdrop-filter: blur(5px);
    color: var(--tap-body-text);
    font-size: 15px;
    cursor: pointer;
    cursor: default;
    display: none;
    opacity: 1;
    transition: opacity 0.5s ease;
}

    .info-popup.fade-out {
        opacity: 0;
    }

.share_icon_helper {
    width: 100%;
    height: auto;
    margin: 10px auto 0;
    display: block;
}

.share_info_tapme_deet {
    background: var(--tap-bg);
    border-radius: 20px;
    padding: 12px;
    width: 90%;
    position: relative;
    margin: 18rem auto 3rem;
    box-shadow: var(--tap-shadow);
    line-height: 1.7;
    font-size: 15px;
    font-weight: 700;
}

.info-text {
    white-space: pre-line;
}

.cat_label_row {
    display: none;
    background: transparent;
    backdrop-filter: blur(20px);
    width: 100%;
    position: relative;
    z-index: 1;
    gap: 0rem;
    border-radius: 25px 25px 0 0;
}

.servicefees_total_cont {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.5rem;
}

.prod_ind_type_tips,
.prod_ind_type_trade,
.prod_ind_type_service {
    width: 33.333333%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .prod_ind_type_tips svg,
    .prod_ind_type_trade svg,
    .prod_ind_type_service svg {
        width: 21px;
        height: 21px;
    }

.prod_ind_type_head_text {
    font-size: 1.1rem !important;
    margin: 3px 0px 0px 3px;
    line-height: 45px;
    font-weight: 700;
}

.glyph_fill {
    fill: var(--tap-body-text)
}

#tappy_glyph > * {
    flex-shrink: 0;
}

.cat_product_columns {
    display: flex;
    gap: 0.8rem;
    justify-content: space-between;
    overflow: scroll;
    height: 47vh;
}

.prod_col_tips,
.prod_col_trade,
.prod_col_services {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0px;
    padding: 24px 0px 0px 0px;
}

.prod_ind_type_img {
    max-width: 8rem;
    margin: 0rem 0rem 0rem;
    max-height: 8.5rem;
    overflow: hidden;
    border-radius: 19px;
    flex: 0 0 auto;
    width: 100%;
    text-align: center;
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}
.btn-email-receipt {
    text-align: right;
    font-size: 14px;
}
.set_up_cust_page {
    display: flex;
    flex-direction: column-reverse;
}

.businessinformationview-photo-upload {
    width: 110px;
    height: 110px;
    z-index: 1;
    margin: -6rem 0 0rem 1rem;
    position: relative;
}

    .businessinformationview-photo-upload #imagePreview {
        box-shadow: 0 0px 12px rgba(0, 0, 0, 0.1) !important;
        width: 110px !important;
        height: 110px !important;
        border: none !important;
        border-radius: 1.5rem !important;
    }

.businessinformationview-banner-upload {
    width: 100%;
    height: 110px;
    position: relative;
}

.businessinformationview-banner-upload {
    margin-top: -6px;
    height: 110px !important;
    border: none !important;
}

.businessinformationview-banner-button,
.businessinformationview-photo-button {
    position: absolute !important;
    color: var(--tap-blue);
    border-radius: 1.25rem;
    box-shadow: 0 0px 12px rgba(0, 0, 0, 0.1);
    align-items: center !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 100%;
    font-weight: 700;
    line-height: 1.25;
    border: none !important;
    background-color: var(--tap-bg);
    gap: 0.4rem;
}

.businessinformationview-banner-button {
    padding: 0 0 0 9rem;
}

.prod_ind_img {
    max-width: 100%;
    display: block;
    width: 100%;
    height: auto;
}

.upload_image_icon,
.upload_banner_image_icon {
    max-width: 28px !important;
    display: block;
    height: 100%;
    object-fit: contain;
    flex-shrink: 0;
}

.howitlooks_tips {
    max-width: 100%;
    display: block;
    width: 100%;
    height: auto;
}

.howitlooks_tips_img {
    max-width: 80%;
    margin: 0rem 0rem 0rem;
    max-height: fit-content;
    overflow: hidden;
    border-radius: 23px;
    flex: 0 0 auto;
    width: 80%;
    text-align: center;
    position: relative;
    display: inline-block;
}

.prod_ind_type_text {
    font-size: 0.8rem;
    text-align: center;
    pointer-events: none;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3px 0px;
    color: #ffffff;
    box-sizing: border-box;
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
    background: transparent;
    backdrop-filter: blur(15px);
    letter-spacing: 0.2px;
    height: 22px;
    font-weight: 700;
}

.scroll_image_container {
    overflow: hidden;
    height: 48vh;
    margin: -35px 0 5px 0;
    position: relative;
    z-index: 0;
    border-radius: 25px;
    box-shadow: var(--tap-shadow);
    padding: 0.8rem;
    display: none;
    /*  hidden for now */
}

    .scroll_image_container::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari, Opera */
    }

.form-select {
    display: block;
    width: 100%;
    padding: 0.8rem 2rem .65rem 1px;
    -moz-padding-start: calc(0.75rem - 3px);
    font-size: 16px;
    letter-spacing: 0.2px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--tap-placeholder);
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
    background-size: 16px 16px;
    border: none;
    border-radius: 0;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: none;
    outline: none !important;
    box-shadow: none !important;
    border-bottom: 1px solid var(--tap-blue);
}

    .form-select::placeholder {
        letter-spacing: 1px;
        text-transform: capitalize;
        font-size: 16px;
        color: var(--tap-placeholder);
        padding-left: 0px !important;
        transform: translateY(-2px);
    }


/*Wallet updates*/

.wallet_page_tabs_flex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    text-align: center;
    background: transparent;
    backdrop-filter: blur(15px);
    padding: 0.4rem 0.4rem 0.4rem 0.4rem;
    border-radius: 20px;
}

.wallet_summary_container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}

.user_detail_container {
    padding: 7px;
    display: flex;
    flex-direction: column;
    height: fit-content;
    gap: 0.5rem;
    border-radius: 16px;
    background: var(--tap-bg-accent);
}

.user_detail_list_cont {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.wallet_profile_img {
    width: 6.5rem;
    height: 6.5rem;
    border-radius: 1.2rem;
    object-fit: cover;
    aspect-ratio: auto 110 / 110;
}

.user_detail_headers {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 14ch;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    color: var(--tap-body-text);
}

.payment_totals_to_date_container {
    width: 100%;
    flex-direction: column;
    margin-top: 0rem;
    box-shadow: none;
    gap: 0.8rem;
    justify-content: space-between;
    display: flex;
    align-items: flex-end;
}

.wallet_top_row {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
}

.wallet_middle_row {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
}

.wallet_bottom_row {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
}

.payment_totals_inner_containers {
    background: var(--tap-bg);
    box-shadow: var(--tap-shadow-desk);
    border-radius: 2rem;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: 100%;
    padding: 0.5rem;
    gap: 0.5rem;
}

.payment_totals_inner_containers_bottom,
.available_balance_card {
    background: var(--tap-bg);
    box-shadow: var(--tap-shadow-desk);
    border-radius: 2rem;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: 100%;
    padding: 0.5rem;
    gap: 0.5rem;
    margin-top: 0px;
}

.payment_totals_icons {
    width: 60px;
    margin: 0;
}

.stacked_info_cont {
    display: flex;
    flex-direction: column;
    align-items: left;
    margin-bottom: 0rem;
    gap: 0.5rem;
    text-align: left;
    width: 100%;
}

.stacked_info_cont_bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0rem;
    gap: 0.2rem;
    text-align: left;
    width: 38%;
}

.top_head_info_totals {
    font-size: 14px;
    text-align: left;
    font-weight: 700;
    line-height: 1;
}

.bottom_head_info_totals {
    font-size: 12px;
    text-align: left;
    font-weight: 700;
    line-height: 1;
}

.bottom_head_info_totals {
    min-height: 13px;
    display: flex;
    align-items: center;
}

.wallet_total_numbers {
    background: var(--tap-bg);
    border-radius: 30px;
    font-size: 16px;
    width: 100%;
    position: relative;
    max-height: 37px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 9px;
    font-weight: 700;
    background: var(--tap-sup-blue-fade);
}

.wallet-balance-current {
    width: 50%;
}

.payout_container {
    display: block;
    width: 100%;
}

    .payout_container.active {
        display: flex;
    }

.input_field_container {
    width: 100%;
}

.paybutton-wallet {
    color: #ffffff;
    background: var(--tap-blue);
    transition: opacity 0.4s ease, fill 0.4s ease;
    border-radius: 2rem !important;
    margin-left: 1rem !important;
    width: 33% !important;
}

.bank_selector_container {
    display: flex;
    flex-direction: row;
    height: auto;
    gap: 1rem;
    align-items: center;
    margin: 0.5rem
}

.bank_icon_container {
    box-shadow: 0px 0px 9px 2px rgb(0 0 0 / 6%);
    border-radius: 50px;
    height: 30px;
}

    .bank_icon_container svg {
        height: 34px;
    }

.bank_name_container {
    flex-grow: 1;
}

.bank-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--tap-body-text);
}

.payment_options_bank_selectors {
    display: flex;
    flex-direction: column;
    margin-top: 0.5rem;
    gap: 1rem;
}

.custom-bank-radio {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}

    .custom-bank-radio input[type="radio"] {
        opacity: 0;
        position: absolute;
        pointer-events: none;
    }

.bank-radio-mark {
    width: 30px;
    height: 30px;
    /*	border: 1px solid var(--tap-blue);	border circle */
    background-color: var(--tap-blue-fade);
    border-radius: 50%;
    display: inline-block;
    position: relative;
    transition: all 0.2s ease;
}

/* filled circle inside when selected */
.custom-bank-radio input[type="radio"]:checked + .bank-radio-mark::after {
    content: "";
    position: absolute;
    top: 6px;
    left: 6px;
    width: 18px;
    height: 18px;
    background-color: var(--tap-blue);
    /* filled dot color */
    border-radius: 50%;
}

.tab-content {
    transition: opacity 0.3s ease;
}

    .tab-content.visible {
        opacity: 1;
        pointer-events: auto;
        position: relative;
    }

.tab-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

    /* Default (inactive) */
    .tab-link .tabs_text {
        color: var(--tap-tab-color);
        /* black or your default text color */
    }

    .tab-link .active_tab_icon {
        display: none;
    }

    .tab-link .non_active_tab_icon {
        display: inline-block;
    }

    /* Active */
    .tab-link.active .tabs_text {
        color: var(--tap-blue);
        /* blue text when active */
        font-size: 11px;
    }

    .tab-link.active .active_tab_icon {
        display: inline-block;
    }

    .tab-link.active .non_active_tab_icon {
        display: none;
    }

.tabs_text {
    transition: color 0.2s ease;
    font-size: 11px;
    margin: 0px 0 0;
    font-weight: 700;
    letter-spacing: 0px;
}

.tabs_icons {
    position: relative;
    width: 40px;
    height: auto;
    margin-bottom: 0.2rem;
}

.active_tab_icon {
    opacity: 0;
    pointer-events: none;
    fill: var(--tap-blue);
    transition: opacity 0.3s ease, fill 0.3s ease;
    height: 40px;
}

.non_active_tab_icon {
    opacity: 1;
    pointer-events: auto;
    fill: var(--tap-tab-color);
    transition: opacity 0.3s ease, fill 0.3s ease;
    height: 40px;
}

.tab-link.active .active_tab_icon {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1.2);
}

.tab-link.active .non_active_tab_icon {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.95);
}

/* Animate the icon when active */
.active_tab_icon {
    animation: bounceGrow 0.2s ease-out;
    transform-origin: center;
}

/* Animate the label when active */
.tab-link.active .tabs_text {
    animation: bounceGrow 0.2s ease-out;
    transform-origin: center;
}

@keyframes bounceGrow {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    60% {
        transform: scale(1.15);
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}

.new_alert_counter,
.new_record_counter {
    position: absolute;
    top: -5px;
    left: 23px;
    background-color: var(--tap-red);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 10px;
    width: 20px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: right;
    width: fit-content;
    padding: 4px 6px 2px 6px;
    -webkit-text-stroke: 0.3px #ffffff;
    text-stroke: 1px #ffffff;
    z-index: 1;
}

.date-widget {
    position: absolute;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: fit-content;
    text-align: center;
    top: 16.5px;
    z-index: 1;
    -webkit-text-stroke: 0.5px #000;
    text-stroke: 0.5px #000;
    z-index: 1;
    font-weight: 700;
    color: #000;
    transform: rotate(1deg);
}

    .date-widget .day {
        font-size: 6px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .date-widget .date {
        font-size: 8px;
        font-weight: 500;
        top: -3px;
        position: relative;
        letter-spacing: 0.5px;
        -webkit-text-stroke: 0.5px var(--tap-blue);
        text-stroke: 0.5px var(--tap-blue);
        color: var(--tap-blue);
        left: -1px;
        font-family: system-ui !important;
    }

.tab-link.active .tabs_icons .date-widget .day {
    font-size: 6px;
}

.tab-link.active .tabs_icons .date-widget .date {
    font-size: 9px;
}

.terms-and-referral-radio-input {
    width: 30px;
    height: 30px;
}

.terms-and-referral-radio {
    font-weight: 700;
    padding-bottom: 15px;
    display: none !important;
}

.terms-and-referral-text {
    text-align: justify;
    line-height: 2;
    margin-bottom: 10rem;
}

/* Records/ History Section */

/* Export pop-out field */
.embedded-export-form {
    max-width: 700px;
    margin-top: 1rem;
}

.field-group {
    margin-bottom: 1rem;
}

    .field-group label,
    .field-group p {
        font-weight: 700;
        margin-bottom: 0.3rem;
        display: block;
    }

.export-input {
    width: 100%;
    padding: 0.5rem;
    font-size: 1rem;
}

.export-actions {
    display: flex;
    gap: 1rem;
    margin: 1rem 0 3rem;
}

.export-submit-btn,
.export-cancel-btn {
    padding: 0.5rem 1rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

.export-feedback {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.monthly_holder_cont {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
    margin: 1rem;

}
.control_month_order_cont {
    overflow-y: scroll;
    height: 80vh;
    padding-bottom: 7rem;
    margin: 0rem -1rem 0rem;
}

.history_content_wrapper {
    font-size: 12px;
    font-weight: 700;
    background: var(--tap-bg);
    padding: 0.5rem;
    border-radius: 14px;
    box-shadow: var(--tap-shadow);
}

.user_withdrawal_record {
    background: var(--tap-blue-fade);
}

.latest_incoming_payment {
    background: #00d35721;
    margin: -0.8rem;
    padding: 0.8rem;
}

.history_header_text_cont {
    padding-bottom: 0.5rem;
    justify-content: space-between;
    display: flex;
    width: 100%;
    color: var(--tap-body-text);
    text-align: center;
}

.history_buttons_cont {
    text-align: center;
    justify-content: space-between;
    gap: .5rem;
    display: flex;
    font-size: 12px !important;
}

.history_text_device {
    width: 50%;
    text-align: left;
    border-right: 1px solid var(--tap-body-text);
    font-size: 0.7rem;
    align-content: center;
    text-transform: capitalize;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    overflow-wrap: anywhere;
    white-space: normal;
    padding-right: 5px;
}

.history_text_description {
    width: 30%;
    text-align: center;
    border-right: 1px solid var(--tap-body-text);
    font-size: 0.7rem;
    align-content: center;
}

.history_divider {
    display: none;
}

.device-scroll-wrapper {
    z-index: 3;
    position: fixed;
    width: -webkit-fill-available;
    padding: 1.8rem 1rem 2rem;
    margin: 0 0rem 0rem -1rem !important;
    background: transparent;
    backdrop-filter: blur(19px);
    border-radius: 20px;
    bottom: 0svh;
}

.history_text_date_time {
    width: 30%;
    text-align: center;
    font-size: 0.7rem;
    align-content: center;
}

.tappyme_btn {
    width: 36%;
}

#records-tab {
    margin: 0 -1rem;
}

.history_header_buttons_cont {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    text-align: center;
}

.outgoing_bank_hist {
    background: var(--tap-red-fade);
    color: var(--tap-red);
}


.history_btns {
    background: var(--tap-bg);
    border-radius: 7px;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 36px;
}

.apps_btns {
    background: var(--tap-bg);
    border-radius: 7px;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 36px;
}

.history_fills {
    font-weight: 700;
    width: 100%;
    align-content: center;
    position: relative;
    height: 100%;
    padding: 0.6rem 0rem 0.4rem;
}

.history_gross {
    background: var(--tap-green-fade);
    color: var(--tap-green);
}

.history_fees {
    background: var(--tap-orange-fade);
    color: var(--tap-orange);
}

.history_net {
    background: var(--tap-sup-blue-fade);
    color: var(--tap-sup-blue);
}

.transaction_feed_container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.profile_container {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

/* Modals, refund, reversals and timers */

.action-button-wrapper {
    background: var(--tap-bg);
    border-radius: 2rem;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 36px;
}

.reversal-button,
.refund-button {
    position: relative;
    display: block;
    width: 100%;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    height: 36px;
    line-height: 21px;
}

.reversal-button {
    background: var(--tap-blue-fade);
    color: var(--tap-blue);
    font-weight: 700;
    font-size: 12px;
    padding: 0.3rem 0rem 0.2rem;
    letter-spacing: 0.5px;
}

.refund-button {
    background: var(--tap-red-fade);
    color: var(--tap-red);
    font-weight: 700;
    font-size: 11px;
    padding: 0.6rem 0rem 0.4rem;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: var(--tap-blue-fade);
    z-index: 0;
    transition: width 1s linear;
    pointer-events: none;
}

.reversal-button span,
.refund-button span {
    position: relative;
    z-index: 2;
}

.countdown-timer {
    font-size: 8px;
    color: var(--tap-green);
    text-align: center;
    font-weight: 700;
    text-align: center;
    z-index: 3;
    position: relative;
    margin-top: -3px;
}

.refund_confirmation_block {
    width: 100%;
    /*	display: flex;*/
    display: none;
    position: fixed;
    top: 200px;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--tap-body-text);
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    pointer-events: auto;
    align-items: center;
    gap: 0.5rem;
    z-index: 123123;
    background: transparent;
    backdrop-filter: blur(19px);
    height: 150%;
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: calc(100% - 0rem);
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 0px solid rgba(0, 0, 0, .2);
    border-radius: .3rem;
    outline: 0;
    border-radius: 2rem !important;
    background-color: rgba(255, 255, 255, 0);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(45px);
    padding: 1rem !important;
    height: 100svh;
}

.payout_btn_container {
    display: none;
    /* hidden by default */
    transition: opacity 0.3s ease;
    width: 50%;
}

.money-input {
    width: 100%;
    transition: width 0.3s ease;
}

.payout_container.active .custom-form {
    width: 60%;
}

.form-group {
    height: 50px;
}

.payout_container.active .payout_btn_container {
    display: block;
    width: 40%;
}

.monthly_collate_dropdown_cont {
    height: 100%;
    border: none;
    font-size: 12px;
    font-weight: 700;
    padding: 1px;
    border-radius: 22px;
    /* box-shadow: var(--tap-shadow); */
    background: transparent;
    background: var(--tap-blue);
    margin: 0rem 1rem 0 !important;
}
.appointments_dropdown_cont {
      height: 100%;
    border: none;
    font-size: 12px;
    font-weight: 700;
    padding: 1px;
    border-radius: 22px;
    /* box-shadow: var(--tap-shadow); */
    background: transparent;
    background: var(--tap-blue);
    margin: 1rem 1rem 0 !important;  
}
.reverse-popup {
    height: 100% !important;
}

.export_dropdown_cont {
    height: 100%;
    border: none;
    font-size: 12px;
    font-weight: 700;
    padding: 1px;
    border-radius: 23px;
    /* box-shadow: var(--tap-shadow); */
    background: transparent;
    background: var(--tap-green);
    margin: 0rem 1rem !important;
}

.monthly_collate_drop_btn {
    width: 100%;
    background: var(--tap-bg);
    border-radius: 21px;
    padding: 1.1rem 1rem 1rem;
    color: var(--tap-blue);
    font-size: 16px;
    box-shadow: none;
    outline: none;
    line-height: 3.2rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, box-shadow .15s ease-in-out;
    letter-spacing: 1px;
    justify-content: flex-end;
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
}
.app_block_detail_cont {

    justify-content: space-between;
    display: flex;
    width: 100%;
    color: var(--tap-body-text);
    text-align: center;
    gap: 5px;
    font-weight: 700;
    font-size: 0.7rem;
        align-items: center;
}
a:hover {
    color: var(--tap-blue)
}
.go_app_address {
font-size: 0.7rem;
    text-align: right;
    font-weight: 700;
    width: 100%;
    display: inline-block;
    position: relative;
    /* display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5em;
    max-height: 3em; */
}
.go_app_customer {
    width: 35%;
    text-align: left;
    font-size: 0.7rem;
    align-content: center;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    overflow-wrap: anywhere;
    white-space: normal;
    padding-right: 0px;
        font-weight: 700;
}.contact_icons_appoints {
    height: 14px;
    margin: 0px 5px 3px 0;
}
.customer_and_adress {
    display: flex;
    line-height: 25px;
}
.go_app_contact_customer {
    display: flex;
    flex-direction: column;
    font-size: 0.7rem;
    width: 33%;
    line-height: 1.5em;
    text-align: left;
}
.appointment_fills-all {
    font-weight: 700;
    width: 100%;
    align-content: center;
    position: relative;
    height: 100%;
    padding: 0.25rem 0rem 0rem;
    line-height: 15px;
}

.app-refund-button {
    position: relative;
    display: block;
    width: 100%;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    height: 36px;
    line-height: 21px;
}

.app-refund-button {
    background: var(--tap-red-fade);
    color: var(--tap-red);
    font-weight: 700;
    font-size: 9px;
    padding: unset;
    line-height: 38px;
}
.appointment_date {
    background: var(--tap-green-fade);
    color: var(--tap-green);
}

.appointment_date_next {
    background: #a6bbcf3d;
    color: var(--tap-green);
}

.appointment_time {
    background: var(--tap-orange-fade);
    color: var(--tap-orange);
}

.appointment_followup {
    background: var(--tap-sup-blue-fade);
    color: var(--tap-sup-blue);
    border-radius: 2rem;
}

.appointment_followup:hover {
    background: var(--tap-blue);
    color: white;
    border-radius: 2rem;
}

.app_buttons_cont {
    text-align: center;
    justify-content: space-between;
    gap: .5rem;
    display: flex;
    font-size: 9px !important;
    margin-top: 0.5rem;
}

/* Adding Tappy Pay options block  */
.tappy-blur-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgb(255 255 255 / 40%);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: flex-end;
    /* bottom anchor */
    transition: opacity 0.3s ease;
    opacity: 0;
    z-index: 9999;
}

    .tappy-blur-overlay.active {
        display: flex;
        opacity: 1;
    }

.tappy-payment-window {
    transform: translateY(40px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

    .tappy-payment-window.active {
        transform: translateY(0);
        opacity: 1;
    }

.tappy-payment-window {
    width: 100%;
    max-width: 500px;
    height: fit-content;
    border-radius: 37px;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    margin: 1rem;
    border: 1px solid var(--tap-bg);
    background: rgb(255 255 255 / 40%);
    backdrop-filter: blur(10px);
    min-height: 329px;
    /* adjust as needed for nested modal */
    opacity: 0;
    transform: translateY(100px) scaleY(0.7) scaleX(0.9);
    /* slightly less squashed */
    transform-origin: bottom center;
}

    /* Only animate when .active is added */
    .tappy-payment-window.active {
        animation: genieFlyIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }

@keyframes genieFlyIn {
    0% {
        opacity: 0;
        transform: translateY(100px) scaleY(0.7) scaleX(0.9);
    }

    40% {
        opacity: 1;
        transform: translateY(-10px) scaleY(1.05) scaleX(1.02);
        /* smaller overshoot */
    }

    60% {
        transform: translateY(5px) scaleY(0.98) scaleX(0.99);
        /* gentler settle */
    }

    80% {
        transform: translateY(-2px) scaleY(1.01) scaleX(1.005);
        /* very subtle bounce */
    }

    100% {
        transform: translateY(0) scaleY(1) scaleX(1);
        /* final resting position */
    }
}

/* Header */
.tappy-payment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -1rem;
    height: 60px;
    margin-left: 5px;
}

.tappy-close-btn {
    font-size: 1.5rem;
    cursor: pointer;
}

/* Card Block */
.tappy-card-block,
.tappy-change-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f1f4fc;
    border-radius: 25px;
    padding: 1.3rem 1.5rem 1.2rem;
    margin-bottom: 1rem;
}

.tappy-card-block {
    width: 85vw;
    padding: 1rem;
}

.tappy-card-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.tappy-card-img {
    width: 40px;
    height: 27px;
    background: #333;
    border-radius: 3px;
}

.tappy-bank-name {
    font-size: 18px;
    font-weight: 500;
}

.tappy-card-digits {
    font-size: 18px;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
}

.tappy-change-block span {
    font-size: 15px;
    font-weight: 500;
}

.tappy-pay-line {
    text-align: left;
    margin: 0.5rem 0;
    font-size: 1rem;
    font-weight: 500;
    margin-left: 1rem;
}

.tappy-amount {
    text-align: left;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    margin-left: 1rem;
}

.tappy-confirm-btn {
    background: #007aff;
    color: white;
}

.tappy-result-msg {
    display: none;
    text-align: center;
    font-size: 1.2rem;
    margin-top: 1rem;
}

    .tappy-result-msg.success {
        color: var(--tap-green);
    }

    .tappy-result-msg.fail {
        color: var(--tap-red);
    }

.tappy-bank-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bank-option {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border: 1px solid #eaf2ff;
    border-radius: 10px;
    cursor: pointer;
    width: 85vw;
}

    .bank-option.selected {
        border: 1px solid #007bff;
        background-color: #eaf2ff;
    }

.tappy-bank-options {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    position: relative;
}

.bank-option {
    position: relative;
    background: transparent;
    border: 1px solid #eaf2ff;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    overflow: hidden;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Adding Tappy Pay options block  */



.arrow_right_to_down svg {
    position: relative;
    width: 17px;
    height: auto;
}

/* Rotate arrow smoothly */
.arrow_right_to_down {
    transition: transform 0.3s ease;
    display: inline-block;
}

    .arrow_right_to_down.rotate-down {
        transform: rotate(90deg);
    }

.monthArrow {
    display: none;
}

/* Profile section */
.add_buttons_cont {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    position: relative;
    background-color: var(--tap-bg);
    border-radius: 1.5rem !important;
    /* margin: 1rem; */
    overflow: hidden;
    width: -webkit-fill-available;
    /* width: calc(100% + 1rem); */
    height: 70px;
    background-color: var(--tap-blue-fade)
}

.add_buttons_wrapper {
    /* padding: 0.4rem 0rem 0.2rem 0.5rem; */
    width: calc(100% + 0rem) !important;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    font-weight: 700;
    font-size: 12px;
    color: var(--tap-blue);
    align-items: flex-start;
    background-color: var(--tap-blue-fade);
    min-height: 70px;
    align-items: anchor-center;
    border-radius: 0rem !important;
    gap: 0px;
}

.existing_number_table {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
}

.existing_number {
    color: var(--tap-grey);
    width: -webkit-fill-available;
    font-size: 1.1rem;
    font-weight: 700;
}

.existing_number_delete {
    color: var(--tap-red);
    text-align: right;
    padding: 0px 0 0;
    width: 30%;
    font-size: 1.1rem;
}

.add_buttons_icon img {
    width: auto;
    height: 45px;
    margin: auto;
}

.info_image_icon {
    max-width: 100%;
    height: 36px;
    margin: 3px 2px 10px 0px;
}

.add_buttons_circle_plus {
    border-radius: 25rem;
    background: var(--tap-bg);
    height: 37px;
    width: 37px;
    display: flex;
    align-items: anchor-center;
    justify-content: center;
    margin: 36px 6px 0px 0px;
    padding: 3px;
}

    .add_buttons_circle_plus svg {
        transform: rotate(45deg);
        fill: var(--tap-blue);
    }

.profile_content_cont {
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
    /* margin: 60px 0; */
}

.profile_info_wrapper {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 0.8rem;
}

.auth_profile_info_wrapper {
    display: flex;
    justify-content: start;
    flex-direction: column;
    padding: 0rem;
    background-color: transparent !important;
    background: transparent;
    backdrop-filter: blur(15px);
    z-index: 2;
    position: relative;
}


.profile_info_block {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: fit-content;
    height: 95px;
    /* margin-left: 1rem; removed for not needed n wallet, see pay window  */
    width: 100%;
}

.settings_profile_info_block {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: fit-content;
    height: 85px;
    /* margin-left: 1rem; removed for not needed n wallet, see pay window  */
    width: fit-content;
    max-width: 210px;
}

.profile_info_headers_cont {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    color: var(--tap-body-text);
    flex-direction: column;
    padding: 0rem;
    gap: 0.8rem;
    font-weight: 700;
}

.profile_info_headers_cont_fix {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    color: var(--tap-body-text);
    padding: 0rem;
    gap: 0.8rem;
    font-weight: 700;
    flex-direction: row;
}

.profile_info_headers {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--tap-body-text);
    align-items: center;
}

.approve_payments_cont {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.switch_headers {
    font-size: 13px;
    color: var(--tap-body-text);
    margin-right: 0.5rem;
}

.profile_info_style {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--tap-blue);
    font-weight: 700;
}

.pages_dots_cont {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem auto 0;
}

.profile_header_cont {
    display: flex;
    justify-content: space-between;
    font-size: 17px;
    color: var(--tap-body-text);
    font-weight: 700;
}

    .profile_header_cont a {
        color: var(--tap-blue);
    }

#profile-tab .profile_content_cont .profile_info_wrapper .profile_header_cont {
    padding-left: 10px;
    padding-right: 10px;
}


.authenticate_lines {
    text-decoration: none;
    display: flex;
    width: 100%;
    font-size: 1rem;
    gap: 0.5rem;
    align-items: center;
}

.authenticate_icon {
    height: 45px;
    max-width: 100%;
    margin: 14px 0px 13px 10px;
}

.authenticate_icon_auth {
    height: 33px;
    max-width: 100%;
    margin: 1px 0px 8px 5px;
}

.success_key_icons {
    height: 1.4rem;
    max-width: 100%;
    margin: auto 0;
}

.success_key_icons_headers {
    font-size: 12px;
    font-weight: 700;
    line-height: 2.8;
    letter-spacing: 0.2px;
    color: var(--tap-body-text);
    padding: 0rem 0.3rem 0;
    text-align: left !important;
}

.success_key_icons_title {
    display: flex;
    justify-content: flex-start;
    gap: 0.5rem;
}

.camera-wrapper {
    position: relative;
    width: 14rem;
    height: 14rem;
    border-radius: 50%;
    overflow: hidden;
    background: var(--tap-bg);
    margin: auto;
}

.bg-video {
    position: absolute;
    top: -6px;
    left: -69px;
    width: 142%;
    height: 137%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.3;
}

.selfie-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scaleX(-1);
    /* mirror for selfie */
    display: none;
    /* hidden until camera is active */
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.slefie_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

    .slefie_overlay svg {
        width: 65%;
        height: 65%;
    }

.corner {
    stroke: #fff;
    stroke-width: 3;
    fill: none;
}

/* Alerts/ Messages section */
.alerts-update-message {
    font-size: 14px;
    line-height: 1.6;
    border-radius: 1.3rem;
    color: var(--tap-body-text);
    background: var(--tap-bg);
    box-shadow: 0 0px 14px rgb(0 0 0 / 0%);
    margin: 0rem 0 0.5rem;
    letter-spacing: 0.5px;
    box-shadow: var(--tap-shadow);
    padding: 0.7rem;
    font-weight: 700;
}

.alerts_timer-update-message {
    text-align: end;
    margin: 0px 10px 0px;
    font-size: 13px;
    font-weight: 700;
    visibility: hidden;
}

.expire-alert_text {
    opacity: 40%;
}

.expire-alert {
    margin-right: 5px;
    fill: var(--tap-green);
    width: 16px;
    height: auto;
}







.input-contact-field-tappy {
    box-shadow: none;
    border: 2px solid #0069ff;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
}



body {
    font-family: "Comfortaa", sans-serif !important;
    height: 100svh;
    padding-bottom: 0.8rem;
    overflow: hidden;
    background-color: var(--tap-bg) !important;
    color: var(--tap-body-text);
}

a {
    color: var(--tap-blue);
    text-decoration: unset !important;
}



/*
we need a custom version/ class for actiavtion screen for .form_content_flex
.form_content_flex_activation {
	display: flex;
	flex-direction: column;
	justify-content: start;
	min-height: 400px;
}
*/

.text-primary {
    color: var(--tap-blue) !important;
    font-size: 1.4rem !important;
    letter-spacing: 1px;
}

.trade-tip-total-label,
.servicefeesview-total-label,
.tradeonlyview-total-text,
.tradeonlyview-total-text {
    color: var(--tap-grey) !important;
    letter-spacing: 1px;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
}

.servicefeesview_total_amount {
    font-weight: 700;
    color: var(--tap-blue) !important;
    font-size: 1.4rem !important;
    letter-spacing: 1px;
}


.tipview-container {
    /*	height: fit-content;*/
    width: 100%;
    border-radius: 30px;
    /*	overflow: hidden;*/
    color: var(--tap-body-text);
    background: var(--tap-bg);
    box-shadow: var(--tap-shadow);
}

.percentage-container-input-plus-tips {
    overflow-x: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 110%;
    margin-left: -0.8rem;
    padding-left: 0.8rem;
    padding-right: 0.8rem;
}

    .percentage-container-input-plus-tips::-webkit-scrollbar {
        display: none;
    }



/*
input,
textarea,
select {
	font-size: 20px!important; 	stops zoom in when placeholder tapped mobile
}
*/





.logo-lottie-main {
    margin: 0 auto;
    padding-right: 2.9rem;
}

    .logo-lottie-main img {
        width: 10rem;
    }

.mt-4 {
    margin-top: 0rem !important;
}

.pt-5 {
    padding-top: unset !important;
}

.mt-5 {
    margin-top: unset !important;
    gap: 0.8rem;
}



.text-muted {
    color: var(--tap-bg) !important;
    background: transparent;
    backdrop-filter: blur(15px);
    margin-top: -1.7rem;
    line-height: 24px;
    letter-spacing: 1px;
    width: 105%;
    border-radius: 0px 0rem 0.8rem 0.8rem;
}

.monthly_record_section {
    margin-top: 0.8rem;
    order : 2;
}

.mt-2 {
    margin-bottom: 0.5rem !important;
}

.confirmation-container1 {
    position: relative;
    background-color: var(--tap-bg);
    width: 100%;
    height: 100%;
    border-radius: 10px;
    padding: 0.5rem;
    border: 0px solid #ececed;
    overflow: hidden;
    margin: 0 !important;
    box-shadow: var(--tap-shadow);
    display: flex;
    flex-direction: column-reverse;
}

    .confirmation-container1 [id^="refundconfirmation-text_"] {
        height: 100%;
        background: transparent !important;
        backdrop-filter: blur(15px);
        padding-top: 9%;
        z-index: 2;
    }

.h4 {
    font-size: calc(1.0.8rem + .3vw);
}

.h5,
h5 {
    font-size: 1.4rem;
    font-weight: 700;
}

.h6,
h6 {
    line-height: 1.5;
}

.timestampofentry_after {
    text-transform: lowercase;
}

    .timestampofentry_after::first-letter {
        text-transform: uppercase;
    }

.tradeonlyview-total-value {
    color: var(--tap-blue) !important;
    font-size: 1.4rem !important;
    letter-spacing: 1px;
}

.rounded-circle {
    border-radius: 50px !important;
    width: 3rem;
    height: 3rem !important;
    font-size: 1.8rem;
    padding: 0.8rem 0.5rem 0.8rem 0.5rem !important;
    border: 2px solid var(--tap-grey) !important;
}

.rounded {
    border-radius: 0.8rem !important;
}

html {
    font-size: 14px;
    background-color: var(--tap-bg);
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

/* Remove hover, focus, and active effects */
.user-reg-btn,
.btn:hover,
.btn:focus,
.btn:active,
.btn-dark:hover,
.btn-hover-bg:hover,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus,
.btn-outline-primary:hover {
    box-shadow: none !important;
    outline: none !important;
    /*border-color: #0069ff;*/
    /* Retain border-color for buttons */
    --bs-btn-focus-shadow-rgb: none !important;
    /* Removes focus shadow */
    --bs-btn-hover-bg: none;
    /* Removes hover background */
    --bs-btn-hover-color: none !important;
    /* Removes hover color */
    --bs-btn-active-bg: none !important;
    --bs-btn-active-color: none !important;
}

.btn:hover {
    color: #fff;
}

.btn-outline-primary:hover {
    color: var(--tap-body-text);
    background-color: none !important;
    border-color: none !important;
}

.tappy-park-btn:hover,
.btn-link:hover {
    color: var(--tap-body-text);
    background-color: none !important;
    border-color: none !important;
}

.tappy-container {
    min-height: 500px;
    border-radius: 30px;
    padding: 5px;
    box-shadow: var(--tap-shadow);
}

html {
    position: relative;
    min-height: 100%;
}

/*Custom css*/
.industry-radio {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 5%;
}

.industry-radio-input {
    order: 2;
    /* Moves the radio button to the right */
}

.industry-radio-label {
    order: 1;
    /* Keeps the label on the left */
}

.view-width {
    max-width: 500px;
}

.oval-shape {
    border: 1px solid;
    border-radius: 50%;
    width: 50px;
    height: 50px;
}



.grid-container {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 1px;
    padding: 1px;
    /*	align-items: baseline;*/
}

    .grid-container > .col {
        background-color: #f1f1f1;
        text-align: center;
        padding: 1px;
        font-size: 3px;
    }

/* Custom Grid Area for item4 */
.item4 {
    grid-area: 1 / 2 / 4 / 4;
}


/*Tappy Customer payment*/

.tappycustomerpayment-switch {
    position: relative;
    display: flex;
    width: 50px;
    height: 28px;
    margin-right: 2px;
}

    .tappycustomerpayment-switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }


/* NAVPA */
/* Park Details View CSS */
.parkcust-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 1rem;
    margin-bottom: 0rem;
    flex-direction: column;
}

.paycust-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 1rem;
    margin-bottom: 0rem;
    flex-direction: column;
}

.parkcust-main-view {
    position: relative;
    overflow: hidden;
}

.park_banner_container {
    z-index: 2;
    position: relative;
}

.banner_container {
    z-index: 2;
    position: relative;
}

.form_content_flex_parkcust,
.form_content_flex_paycust {
    /* display: flex;
    flex-direction: column; */
    margin: 1rem;
    /* justify-content: flex-start; */
}

.reg-wrapper {
    position: relative;
    height: 100vh;
    /* fill screen */
    display: flex;
    flex-direction: column;
}







.terms-footer {
    position: sticky;
    bottom: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 1rem;
    margin-left: -1rem;
    width: 108%;
}

.parkcust_profile_info_wrapper {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    /* height: 30rem; number can be adjusted but don't change this to min-height, keeps expansion moving up keeping pay buttons in place */
    min-height: fit-content;
    max-height: 30rem;
}

.paycust_profile_info_wrapper {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    /* height: 30rem; number can be adjusted but don't change this to min-height, keeps expansion moving up keeping pay buttons in place */
    min-height: fit-content;
    max-height: 30rem;
}

.park_info_wrapper {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0.5rem;
}

.pay_info_wrapper {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.park_inner_info_wrapper,
.pay_inner_info_wrapper,
.profile_inner_info_wrapper {
    display: flex;
    align-items: anchor-center;
    gap: 1rem;
}

.enter_landing_cont,
.enter_success,
.go_take_me_to_exit_process,
.exit_landing_cont,
.parking_receipt_cont,
.validate_landing_cont,
.redman_runner {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: -webkit-fit-content;
    line-height: 1.5;
}

/* West testing something */
.enter_landing_cont,
.enter_success,
.go_take_me_to_exit_process,
.exit_landing_cont,
.parking_receipt_cont,
.validate_landing_cont,
.redman_runner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: -webkit-fit-content;
    line-height: 1.5;
    min-height: 35vh;
}

.redman_runner {
    padding-top: 1rem;
}

.dynamic_park_content {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    width: 100%;
}

.dynamic_pay_content {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
    min-height: 22rem;
}

/*.enter_success {
    display: none;
}*/

/*.go_take_me_to_exit_process {
    display: none;
}*/


.park-rates-wrapper {
    font-weight: 700;
    padding-bottom: 10px;
    ;
}

.parkcust_info_block {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 8rem;
    margin-left: 1rem;
    gap: 0rem;
    width: 100%;
    letter-spacing: 0px;
}

.park-rates-button {
    color: var(--tap-blue) !important;
    font-size: 1.3rem !important;
    letter-spacing: 0px;
    padding-left: 0.5rem;
    font-weight: 700;
    text-decoration: none !important;
}

.rates_table_gen {
    color: var(--tap-grey);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.table > :not(:last-child) > :last-child > * {
    border-bottom-color: var(--tap-blue) !important;
}

.day-message,
.visit-time-message {
    width: 100%;
    line-height: 1.5;
    font-size: 1.3rem;
    font-weight: 700;
    color: #44dea7;
    color: var(--tap-body-text);
    text-align: center;
    letter-spacing: 0.1px;
}

.charge-info {
    font-size: 1.2rem;
    font-weight: 700;
    color: #44dea7;
    color: var(--tap-body-text);
    text-align: center;
    letter-spacing: 0.1px;
    line-height: 2;
}

.cust_charge-info {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--tap-body-text);
    text-align: center;
    letter-spacing: 0.1px;
    line-height: 2;
    text-align: left;
    padding-left: 0.5rem;
}

.receipt_info_unqid {
    font-size: 15px;
    font-weight: 700;
    color: var(--tap-body-text);
    text-align: left;
    letter-spacing: 1px;
    padding-left: 0.5rem;
}


.entry-label {
    color: var(--tap-body-text);
    padding-left: 1rem;
    font-size: 18px;
    font-weight: 700;
}


.parkpay_button_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    /*flex-direction: row;*/
    gap: 0rem;
    /* (can't be 1rem cause if one button make shit gap at the bottom) */
    justify-content: flex-end;
}

.parkpay_button_container_exit {
    width: 100%;
    display: flex;
    /*flex-direction: row;*/
    flex-direction: column;
    gap: 0rem;
    justify-content: flex-end;
}

.parkgo_button_container {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
    margin-top: 10rem;
}

.caro-button-logos {
    width: -webkit-fill-available;
    height: 3rem;
}

/* Default hidden fallback button */




.pay-blk-btn {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, box-shadow .15s ease-in-out;
    /*width: 50%;*/
    border-radius: 1.3rem;
    background-color: var(--tap-body-text);
    padding: 0px;
    color: white;
    /*Added because of validation test is not showing */
    height: 3.4rem;
    margin-top: 1rem;
}

.logout-as-label {
    border: none;
    background: transparent;
    color: var(--tap-red);
    font-size: 14px;
    font-weight: 700;
}

.caro-blk-btn {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, box-shadow .15s ease-in-out;
    /*width: 50%;*/
    border-radius: 1.3rem;
    background-color: var(--tap-body-text);
    padding: 0px;
    color: white;
    /*Added because of validation test is not showing */
    height: 3rem;
    margin-top: 1rem;
}

.tenant_logo_btn {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, box-shadow .15s ease-in-out;
    width: 100%;
    border-radius: 1.3rem;
    background-color: #030303;
    padding: 0px;
    color: white;
    /*Added because of validation test is not showing */
    height: 3.4rem;
    margin-top: 1rem;
    box-shadow: 0 0 22px rgba(49, 51, 51, 0.9);
}

.go-pay-blk-btn {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, box-shadow .15s ease-in-out;
    width: 100%;
    border-radius: 1.3rem;
    background-color: var(--tap-body-text);
    color: white;
    /*Added because of validation test is not showing */
    border-radius: 1.3rem;
    padding: 0px;
    color: white;
    /*Added because of validation test is not showing */
    height: 3.4rem;
}

.pay-button-logos {
    width: -webkit-fill-available;
    height: 3.4rem;
}

.caro-button-logos {
    width: -webkit-fill-available;
    height: 3rem;
}

.go-button-logo {
    width: -webkit-fill-available;
    height: 3.4rem;
}

.park_tenant_logo {
    width: -webkit-fill-available;
    height: 56px;
    margin-top: -6px;
    display: block;
}

/* All pay buttons */
.park_button_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    bottom: 0px;
    position: relative;
}




/* Tappy button container */
.tappypay_button_container {
    display: flex;
    flex-direction: column;
    width: 30%;
    z-index: 2;
}

/* Add Card text hidden by default */
.add-card_text {
    display: none;
    align-items: center;
    font-size: 1.2rem;
    padding-top: 3px;
    color: var(--tap-bg);
}

.button-animation {
    width: 5.5rem;
    margin: -15px 0rem;
}

/* Container holding extra pay buttons (Google/Apple/etc.) */
.x_pay_button_container {
    display: flex;
    flex-direction: column;
    /* gap: 0.8rem; */
    width: 67%;
}

.payment-blk-btn {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, box-shadow .15s ease-in-out;
    /*width: 50%;*/
    border-radius: 1.6rem;
    background-color: var(--tap-xpays);
    padding: 0px;
    color: white;
    /*Added because of validation test is not showing */
    height: 3rem;
    gap: 0rem;
    margin: 0rem 0rem 0 0;
}

.tapaybutton {
    overflow: hidden;
    width: 100%;
    height: 100%;
    min-height: 3rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.remove_card {
    border: none;
    background: transparent;
    color: var(--tap-red);
    font-weight: 700;
    text-align: left;
    align-items: center;
}

/* Success screen enter */
.custom-blur-container {
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    color: var(--tap-body-text);
    background: transparent;
    backdrop-filter: blur(19px);
    padding: 0rem;
    padding-top: 0;
    padding-bottom: 0;
    z-index: 4;
    position: relative;
}

.cust_exit_options_header {
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0.5rem 0.5rem 0.5rem 1.5rem;
    text-align: left;
    letter-spacing: 0px;
    color: var(--tap-blue);
}

.receipt-tbl-lcol {
    text-align: left !important;
}

.table_border_bot {
    border-bottom: 1px solid var(--tap-bg) !important;
}

.exit_options_header_site_name {
    font-weight: 700;
    line-height: 1;
    padding: 0rem .5rem 0.5rem !important;
}

.receipt-sentence {
    color: var(--tap-red);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0rem 1rem 0rem;
}

.receipt-sub-sentence {
    padding: 0.5rem;
    font-weight: 700;
}

.custom-blur-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 57vh;
    width: 88vw;
}

.catchup-amount {
    color: var(--tap-red) !important;
}

.early_exit_payment_succesful,
.park_payment_succesful {
    gap: 1rem;
    display: flex;
    flex-direction: column;
    width: 85vw;
    height: 65vh;
    justify-content: flex-start;
}

.park_payment_succesful {
    height: 32vh;
}

.center-container {
    display: flex;
    justify-content: center;
    /* horizontal */
    align-items: center;
    /* vertical */
    height: -webkit-fit-content;
    /* or any desired height */
    flex-direction: column;
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: left;
    /* horizontal */
    align-items: flex-start;
    /* vertical */
    height: -webkit-fit-content;
    /* or any desired height */
    flex-direction: row;
    position: relative;
    z-index: 5;
}

.exit_options_caro_container {
    position: relative;
    z-index: 1;
    margin: 1rem 0rem 3rem 1rem;
    padding: 0rem;
    background: transparent;
    backdrop-filter: blur(15px);
    padding: 1rem;
    border-radius: 36px;
}

/* SJ - Because of this the time label is not vsible*/
/*.timestampofentry_after {
    display: none;
}*/

.custom-blur-container {
    position: absolute;
    width: 100%;
    height: 100%;
    color: var(--tap-body-text);
    background: transparent;
    backdrop-filter: blur(20px);
    align-items: center;
    z-index: 9999;
    transition: opacity 1s ease;
    font-weight: 700;
    font-size: 23px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 0rem;
    display: none;
}

.exit_options_header {
    font-weight: 700;
    font-size: 15px;
    margin: 5px 5px 5px;
    text-align: left;
    letter-spacing: 0px;
    text-align: center;
}

.info_pop_caro {
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0rem 0 !important;
    letter-spacing: 0px;
    text-align: center;
    background: transparent;
    backdrop-filter: blur(19px);
    padding: 1rem;
    border-radius: 22px;
}

.table_border_bot {
    border-bottom: 1px solid var(--tap-blue);
}

.open_add_park_shortcut {
    display: flex;
    float: right;
    margin: -2rem 5rem 0 0;
    position: relative;
}

    .open_add_park_shortcut img {
        width: 30px;
        height: auto;
    }

.open_add_park_shortcut {
    display: flex;
    float: right;
    margin: -2rem 5rem 0 0;
    position: relative;
}

    .open_add_park_shortcut img {
        width: 30px;
        height: auto;
    }


/* Optional container styles of your page */
.exit_options_caro_container .center-container {
    position: relative;
    /* ensures absolutely positioned children anchor nicely if needed */
}

/* Carousel wrapper: fixed height viewport */
.caro-carousel-wrapper {
    position: relative;
    width: 100%;
    height: 277px;
    /* adjust as you like */
    border-radius: 22px;
    overflow: hidden;
    touch-action: pan-x;
    /* allow horizontal page scroll; we handle vertical swipes */
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

/* Track stacks slides vertically */
.carousel-track {
    display: flex;
    flex-direction: column;
    /* vertical stack */

    will-change: transform;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    height: 277px;
}

/* Each slide fills the viewport (wrapper) */
.carousel-slide {
    flex: 0 0 auto;
    width: 100%;
    height: 277px;
    /* match wrapper height */
}

    .carousel-slide img {
        width: 100%;
        height: 277px;
        object-fit: cover;
        /* or 'contain' if you prefer no crop */
        display: block;
        pointer-events: none;
        -webkit-user-drag: none;
        user-drag: none;
    }

/* slider for how it looks activation screens */
/* Each slide fills the viewport (wrapper) */
.carousel-slider {
    flex: 0 0 auto;
    width: 100%;
    height: 277px;
    /* match wrapper height */
}

    .carousel-slider img {
        /* object-fit: cover;             or 'contain' if you prefer no crop */
        display: block;
        pointer-events: none;
        -webkit-user-drag: none;
        user-drag: none;
    }

/* Dots on the right, vertical */
.dots {
    position: relative;
    top: 32px;
    right: -4px;
    margin-left: 5px;
    /* transform: translateY(-50%); */
    display: flex;
    flex-direction: column;
    gap: 3rem;
    z-index: 2;
    pointer-events: auto;
    width: 2%;
}

.dot {
    display: block;
    height: 9px;
    width: 9px;
    background-color: #1575fa70;
    border-radius: 50%;
    transition: background-color 0.3s;
}

    .dot.active {
        background-color: var(--tap-blue);
    }



.done-success-screen-labels {
    color: var(--tap-body-text);
    font-weight: 800;
    font-size: 1.5625rem;
    /* 25px */
}


.trade-tip-add-tip-text {
    padding-left: 1.2rem;
}

.trade-tip-content,
.tiponlytransactionview-inner,
.tipview-inner,
.tradeonlyview-content,
.servicefeesview-content {
    gap: 0.8rem;
    padding: 0rem !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0.8rem;
}

.tradeonlyview-contenthelper {
    margin: 0rem 0.8rem 0.8rem 0.8rem;
}

.tradeonlyview-content {
    min-height: 370px;
}

.tradeonlyview-amount-input-section {
    margin: 0rem !important;
}

.tradeonlyview-profile-info {
    height: 108px !important;
    padding: 5px 0 0 !important;
    width: 100% !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tiponlytransactionview-profile-info,
.tipview-profile-text {
    height: 108px !important;
    padding: 5px 0 0 !important;
    width: 100% !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tipview-tip-label {
    margin-bottom: -0.8rem !important;
}

.tappyme_button {
    padding-inline: 0px !important;
}

.payview-addtip-label {
    font-size: 1.3rem !important;
    letter-spacing: 0px;
    padding: 0rem 0.5rem 0rem 0.5rem;
    font-weight: 700;
    text-decoration: none !important;
    margin: 0rem 1rem -0.6rem !important;
}

.tiponlytransactionview-tip-options {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem !important;
}

.tipview-tip-options {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem !important;
}

.payview-pay-options {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem !important;
    margin-top: 0rem !important;
}

.payview-cover-fees {
    justify-content: flex-end;
    gap: .5rem;
    display: flex;
    align-items: center;
}

.payment_approval_switch {
    justify-content: space-between;
    gap: .5rem;
    display: flex;
    align-items: center;
}

.trade-tip-amount-label {
    font-size: 1.2rem !important;
}

/* COMMON BASE */
.fly-in {
    height: 110px;
    object-fit: cover;
    border-radius: 1.4rem;
    width: -webkit-fill-available;
    position: relative;
    margin: 1rem 1rem 0 1rem;
    opacity: 0;
    animation: iosFlyInBounce 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.profile_info_wrapper .banner_container,
.profile_info_wrapper .banner_container .banner-img {
    margin: 0rem;
    height: 90px;
}

.tappymeinfowrapper .banner_container .banner-img {
    margin: 0rem;
}

.tappymeinfowrapper .profile_info_wrapper .profile_inner_info_wrapper .profile-img {
    width: 95px;
    height: 95px;
}

.tappymeinfowrapper .profile_info_wrapper .profile_inner_info_wrapper .tradeonlyview-profile-info {
    height: 100% !important;
    padding: 5px 0 0 !important;
    width: 100% !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    zoom: 0.8;
}

.tradeonlyview-total-section {
    zoom: 0.8;
}

#profile-tab .profile_content_cont .profile_info_wrapper .banner_container .banner-img {
    height: 90px;
    border-radius: 18px;
}
#profile-tab .profile_content_cont .profile_info_wrapper .banner_container {
    min-width: 320px;
    max-width: 450px;
}

#profile-tab .profile_content_cont .profile_info_wrapper .profile_inner_info_wrapper .profile-img {
    width: 90px;
    height: 90px;
}
#profile-tab .profile_content_cont .profile_info_wrapper .profile_inner_info_wrapper .profile_info_block {
    height: 90px;
}
#profile-tab .profile_content_cont .profile_info_wrapper .profile_inner_info_wrapper .profile_info_block .heading {
    font-size: 15px!important;
    line-height: unset;
}

#profile-tab .profile_content_cont .profile_info_wrapper .profile_inner_info_wrapper .profile_info_block .subheading {
    font-size: 15px;
    line-height: unset;
}

#profile-tab .profile_content_cont .profile_info_wrapper .profile_inner_info_wrapper .profile_info_block h5 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

#frmUpdateProfile .form_content_flex .custom-form .form-control:focus ~ .form-labels, .custom-form .form-control:not(:placeholder-shown) {
    padding: 10px 5px 6px;
    box-shadow: 0 0px 0 0 var(--tap-blue) !important;
    border-bottom: 1px solid var(--tap-blue) !important;
}

    #frmUpdateProfile .form_content_flex .custom-form .form-control:focus ~ .form-labels, .custom-form .form-control:not(:placeholder-shown) ~ .form-labels {
        font-size: 13px;
    }

#frmUpdateProfile .form_content_flex .set_up_cust_page .businessinformationview-photo-upload {
    margin: -6rem 0 0rem 1rem;
}

    #frmUpdateProfile .form_content_flex .set_up_cust_page .businessinformationview-photo-upload .profile-img {
        top: 10px !important;
    }

    #frmUpdateProfile .form_content_flex .set_up_cust_page .businessinformationview-photo-upload .upload_image_icon {
        max-width: 35px !important;
        width: 35px !important;
        height: 35px !important;
        bottom: -6px !important;
        left: unset !important;
        right: 0px !important;
    }

    #frmUpdateProfile .form_content_flex .set_up_cust_page .businessinformationview-photo-upload #imagePreview {
        width: 95px !important;
        height: 95px !important;
        border-radius: 20px !important;
    }

#frmUpdateProfile .form_content_flex .set_up_cust_page .businessinformationview-banner-upload {
    margin-top: 0px;
    height: 100px !important;
}

    #frmUpdateProfile .form_content_flex .set_up_cust_page .businessinformationview-banner-upload .banner-img {
        height: 100px;
        border-radius: 20px;
        margin: 0rem 0rem 0rem;
    }

    #frmUpdateProfile .form_content_flex .set_up_cust_page .businessinformationview-banner-upload .upload_banner_image_icon {
        max-width: 35px !important;
        top: 80px !important;
        right: 13px !important;
        width: 35px !important;
        height: 35px !important;
    }
/* -------------------
   1. Fly-in from TOP
------------------- */
.banner-img {
    height: 110px;
    object-fit: cover;
    border-radius: 1.5rem;
    width: -webkit-fill-available;
    position: relative;
    margin: 1rem 1rem 0rem 1rem;
    opacity: 0;
    transform: translateY(-80px) scale(2);
    /* start double size */
    animation: iosFlyInBounceTop 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.add_buttons_cont,
.wallet-banner-img,
.pages_dots_cont,
.monthly_collate_dropdown_cont,
.appointments_dropdown_cont,
.device-scroll-wrapper {
    opacity: 0;
    transform: translateY(-80px) scale(2);
    /* start double size */
    animation: iosFlyInBounceTop 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.fly-in-top,
.banner-img,
.add_buttons_cont,
.wallet-banner-img,
.pages_dots_cont {
    transform: translateY(-80px) scale(2);
}

.payview-pay-options .tipview-tip-btns:nth-child(2) .tip-btn {
    opacity: 0;
    transform: translateY(-80px) scale(2);
    /* start double size */
    animation: iosFlyInBounceTop 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Base animation for both alert types */
#alerts-container .alerts-update-message,
#alerts-container .alerts_timer-update-message {
    opacity: 0;
    transform: translateY(-80px) scale(2);
    animation: iosFlyInBounceTop 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Staggered delay for each alert */
#alerts-container > *:nth-child(1) {
    animation-delay: 0s;
}

#alerts-container > *:nth-child(2) {
    animation-delay: 0.05s;
}

#alerts-container > *:nth-child(3) {
    animation-delay: 0.1s;
}

#alerts-container > *:nth-child(4) {
    animation-delay: 0.15s;
}

#alerts-container > *:nth-child(5) {
    animation-delay: 0.2s;
}

.payment_totals_to_date_container .payment_totals_inner_containers {
    opacity: 0;
    transform: translateY(-80px) scale(2);
    animation: iosFlyInBounceTop 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Staggered delay for each alert */
.payment_totals_to_date_container > *:nth-child(1) {
    animation-delay: 0s;
}

.payment_totals_to_date_container > *:nth-child(2) {
    animation-delay: 0.05s;
}

.payment_totals_to_date_container > *:nth-child(3) {
    animation-delay: 0.1s;
}

.payment_totals_to_date_container > *:nth-child(4) {
    animation-delay: 0.15s;
}


.confirmation-container1 {
    opacity: 0;
    transform: translateY(-80px) scale(2);
    animation: iosFlyInBounceTop 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

    /* Staggered delay for each alert */
    .confirmation-container1 > *:nth-child(1) {
        animation-delay: 0s;
    }

    .confirmation-container1 > *:nth-child(2) {
        animation-delay: 0.05s;
    }

    .confirmation-container1 > *:nth-child(3) {
        animation-delay: 0.1s;
    }

    .confirmation-container1 > *:nth-child(4) {
        animation-delay: 0.15s;
    }

    .confirmation-container1 > *:nth-child(5) {
        animation-delay: 0.2s;
    }

    .confirmation-container1 > *:nth-child(6) {
        animation-delay: 0.25s;
    }

@keyframes iosFlyInBounceTop {
    0% {
        opacity: 0;
        transform: translateY(-80px) scale(2);
    }

    50% {
        opacity: 1;
        transform: translateY(2px) scale(0.98);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Fly out when needed */
.confirmation-container1.closing > * {
    animation: iosFlyOutBounceTop 0.4s cubic-bezier(0.36, 0, 0.66, -0.56) forwards;
}

    /* Optional staggered delays for reverse (in reverse order if you like) */
    .confirmation-container1.closing > *:nth-child(1) {
        animation-delay: 0.25s;
    }

    .confirmation-container1.closing > *:nth-child(2) {
        animation-delay: 0.2s;
    }

    .confirmation-container1.closing > *:nth-child(3) {
        animation-delay: 0.15s;
    }

    .confirmation-container1.closing > *:nth-child(4) {
        animation-delay: 0.1s;
    }

    .confirmation-container1.closing > *:nth-child(5) {
        animation-delay: 0.05s;
    }

    .confirmation-container1.closing > *:nth-child(6) {
        animation-delay: 0s;
    }

@keyframes iosFlyOutBounceTop {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(-80px) scale(0.8);
    }
}

.history_content_wrapper {
    opacity: 0;
    transform: translateY(-80px) scale(2);
    animation: iosFlyInBounceTop 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

    /* Staggered delay for each alert */
    .history_content_wrapper > *:nth-child(1) {
        animation-delay: 0s;
    }

    .history_content_wrapper > *:nth-child(2) {
        animation-delay: 0.05s;
    }

    .history_content_wrapper > *:nth-child(3) {
        animation-delay: 0.1s;
    }

    .history_content_wrapper > *:nth-child(4) {
        animation-delay: 0.15s;
    }

    .history_content_wrapper > *:nth-child(5) {
        animation-delay: 0.2s;
    }

    .history_content_wrapper > *:nth-child(6) {
        animation-delay: 0.25s;
    }

    /* Fly out when needed */
    .history_content_wrapper.closing > * {
        animation: iosFlyOutBounceTop 0.4s cubic-bezier(0.36, 0, 0.66, -0.56) forwards;
    }

        /* Optional staggered delays for reverse (in reverse order if you like) */
        .history_content_wrapper.closing > *:nth-child(1) {
            animation-delay: 0.25s;
        }

        .history_content_wrapper.closing > *:nth-child(2) {
            animation-delay: 0.2s;
        }

        .history_content_wrapper.closing > *:nth-child(3) {
            animation-delay: 0.15s;
        }

        .history_content_wrapper.closing > *:nth-child(4) {
            animation-delay: 0.1s;
        }

        .history_content_wrapper.closing > *:nth-child(5) {
            animation-delay: 0.05s;
        }

        .history_content_wrapper.closing > *:nth-child(6) {
            animation-delay: 0s;
        }

@keyframes iosFlyOutBounceTop {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(-80px) scale(0.8);
    }
}

/* -------------------
   2. Fly-in from BOTTOM
------------------- */
.pay_button_container {
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    /* padding: 0 1rem; */
    bottom: 0px;
    position: relative;
    gap: 0.7rem;
    opacity: 0;
    transform: translateY(80px) scale(2);
    /* start double size */
    animation: iosFlyInBounceBottom 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.wallet_page_tabs_flex,
.tappyme_button_container,
.export_dropdown_cont {
    opacity: 0;
    transform: translateY(80px) scale(2);
    /* start double size */
    animation: iosFlyInBounceBottom 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.pay_button_container > :empty {
    display: none;
}

.dynamic_pay_content:has(.trade-tip-button-container) .pay_button_container {
    padding: 0 1rem;
}

.fly-in-bottom,
.pay_button_container,
.wallet_page_tabs_flex {
    transform: translateY(80px) scale(2);
}

.payview-pay-options .tipview-tip-btns:nth-child(5) .tip-btn,
.trade-tip-button-container {
    opacity: 0;
    transform: translateY(80px) scale(2);
    /* start double size */
    animation: iosFlyInBounceBottom 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Base animation for both alert types */
.payment_options_bank_selectors {
    opacity: 0;
    transform: translateY(80px) scale(2);
    /* start double size */
    animation: iosFlyInBounceBottom 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

    /* Staggered delay for each alert */
    .payment_options_bank_selectors > *:nth-child(1) {
        animation-delay: 0s;
    }

    .payment_options_bank_selectors > *:nth-child(2) {
        animation-delay: 0.05s;
    }

@keyframes iosFlyInBounceBottom {
    0% {
        opacity: 0;
        transform: translateY(80px) scale(2);
    }

    50% {
        opacity: 1;
        transform: translateY(-2px) scale(0.98);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* -------------------
   3. Fly-in from LEFT
------------------- */
.tappyme_icon {
    width: 50px;
}

.tappyme_icon_ani {
    width: 100px;
    margin: auto;
}

.tappyme_button {
    border: none;
    background: none;
    display: flex;
    justify-content: space-between;
    width: -webkit-fill-available;
    align-items: end;
    height: 17px;
    margin-bottom: -5px;
}

.profile-img,
.park_profile-img,
.wallet-profile-img {
    width: 105px;
    height: 105px;
    border-radius: 1.4rem;
    object-fit: cover;
    aspect-ratio: auto 105 / 105;
    opacity: 0;
    transform: translateX(-80px) scale(0.92);
    /* start off-screen to the left */
    animation: iosFlyInBounceLeft 0.55s cubic-bezier(0.15, 0.75, 0.35, 1.1) forwards;
}

.profile_info_headers_cont,
.profile_header_con,
.profile_info_headers,
.payview-addtip-label,
.servicefees_total_cont,
.tappyme_icon,
.tappyme_icon_ani {
    opacity: 0;
    transform: translateX(-80px) scale(0.92);
    /* start off-screen to the left */
    animation: iosFlyInBounceLeft 0.55s cubic-bezier(0.15, 0.75, 0.35, 1.1) forwards;
}

.payview-pay-label {
    font-size: 1.3rem !important;
    letter-spacing: 0px;
    padding: 1rem 0.5rem 0rem 0.5rem;
    font-weight: 700;
    text-decoration: none !important;
    margin-bottom: -0.4rem;
    opacity: 0;
    transform: translateX(-80px) scale(0.92);
    /* start off-screen to the left */
    animation: iosFlyInBounceLeft 0.55s cubic-bezier(0.15, 0.75, 0.35, 1.1) forwards;
    animation-delay: 0.15s;
    /* adjust as needed */
}

.fly-in-left,
.profile-img,
.payview-pay-label,
.park_profile-img,
.wallet-profile-img,
.profile_info_headers_cont,
.profile_header_con,
.profile_info_headers,
.payview-addtip-label {
    transform: translateX(-80px) scale(2);
}

@keyframes iosFlyInBounceLeft {
    0% {
        opacity: 0;
        transform: translateX(-80px) scale(2);
    }

    50% {
        opacity: 1;
        transform: translateX(2px) scale(0.98);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* -------------------
   4. Fly-in from RIGHT
------------------- */

.tradeonlyview-profile-info .heading,
.tradeonlyview-profile-info .subheading,
.tradeonlyview-profile-info .subheading-Taps {
    opacity: 0;
    transform: translateX(80px) scale(0.92);
    animation: iosFlyInBounceRight 0.45s cubic-bezier(0.15, 0.75, 0.35, 1.1) forwards;
}

/* stagger after container */
.tradeonlyview-profile-info > :nth-child(1) {
    animation-delay: 0s;
}

/* heading */
.tradeonlyview-profile-info > :nth-child(2) {
    animation-delay: 0.1s;
}

/* subheading 1 */
.tradeonlyview-profile-info > :nth-child(3) {
    animation-delay: 0.15s;
}

/* subheading 2 */
.tradeonlyview-profile-info > :nth-child(4) {
    animation-delay: 0.2s;
}

/* subheading 3 */
.fly-in-right,
.logout_button,
.info_image_icon {
    transform: translateX(80px) scale(2);
}

.profile_info_block .heading,
.profile_info_block .subheading,
.logout_button,
.info_image_icon,
.pay-form {
    opacity: 0;
    transform: translateX(80px) scale(0.92);
    animation: iosFlyInBounceRight 0.45s cubic-bezier(0.15, 0.75, 0.35, 1.1) forwards;
}

/* stagger after container */
.profile_info_block > :nth-child(1) {
    animation-delay: 0s;
}

/* heading */
.profile_info_block > :nth-child(2) {
    animation-delay: 0.1s;
}

/* subheading 1 */
.profile_info_block > :nth-child(3) {
    animation-delay: 0.15s;
}

/* subheading 2 */
.profile_info_block > :nth-child(4) {
    animation-delay: 0.2s;
}

/* subheading 3 */
.fly-in-right,
.logout_button,
.info_image_icon {
    transform: translateX(80px) scale(2);
}

.pay-coverfees {
    font-size: 1.3rem;
    font-weight: 700;
    opacity: 0;
    transform: translateX(80px) scale(0.92);
    animation: iosFlyInBounceRight 0.45s cubic-bezier(0.15, 0.75, 0.35, 1.1) forwards;
}

@keyframes iosFlyInBounceRight {
    0% {
        opacity: 0;
        transform: translateX(80px) scale(2);
    }

    50% {
        opacity: 1;
        transform: translateX(-2px) scale(0.98);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* -------------------
   5. Fly-in from TOP LEFT
------------------- */
.fly-in-top-left,
.payview-pay-options .tipview-tip-btns:nth-child(1) .tip-btn {
    opacity: 0;
    transform: translate(-80px, -80px) scale(2);
    animation: iosFlyInBounceTopLeft 0.45s cubic-bezier(0.15, 0.75, 0.35, 1.1) forwards;
}

@keyframes iosFlyInBounceTopLeft {
    0% {
        opacity: 0;
        transform: translate(-80px, -80px) scale(2);
    }

    50% {
        opacity: 1;
        transform: translate(2px, 2px) scale(0.98);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
}

/* -------------------
   6. Fly-in from TOP RIGHT
------------------- */
.fly-in-top-right,
.payview-pay-options .tipview-tip-btns:nth-child(3) .tip-btn {
    opacity: 0;
    transform: translate(80px, -80px) scale(2);
    animation: iosFlyInBounceTopRight 0.45s cubic-bezier(0.15, 0.75, 0.35, 1.1) forwards;
}

@keyframes iosFlyInBounceTopRight {
    0% {
        opacity: 0;
        transform: translate(80px, -80px) scale(2);
    }

    50% {
        opacity: 1;
        transform: translate(-2px, 2px) scale(0.98);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
}

/* -------------------
   7. Fly-in from BOTTOM LEFT
------------------- */
.fly-in-bottom-left,
.payview-pay-options .tipview-tip-btns:nth-child(4) .tip-btn {
    opacity: 0;
    transform: translate(-80px, 80px) scale(2);
    animation: iosFlyInBounceBottomLeft 0.45s cubic-bezier(0.15, 0.75, 0.35, 1.1) forwards;
}

@keyframes iosFlyInBounceBottomLeft {
    0% {
        opacity: 0;
        transform: translate(-80px, 80px) scale(2);
    }

    50% {
        opacity: 1;
        transform: translate(2px, -2px) scale(0.98);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
}

/* -------------------
   8. Fly-in from BOTTOM RIGHT
------------------- */
.fly-in-bottom-right,
.payview-pay-options .tipview-tip-btns:nth-child(6) .tip-btn {
    opacity: 0;
    transform: translate(80px, 80px) scale(2);
    animation: iosFlyInBounceBottomRight 0.45s cubic-bezier(0.15, 0.75, 0.35, 1.1) forwards;
}

@keyframes iosFlyInBounceBottomRight {
    0% {
        opacity: 0;
        transform: translate(80px, 80px) scale(2);
    }

    50% {
        opacity: 1;
        transform: translate(-2px, -2px) scale(0.98);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
}


.pay-form {
    margin: 1rem 1rem 0rem;
}


.wallet-banner-img {
    height: 105px;
    object-fit: cover;
    border-radius: 17px;
    width: 100%;
}

.carosizefix {
    height: 95px !important;
}

.receipt-sub-sentence {
    color: var (--tap-blue);
}

/* ------------------------------
   2. Slider Track
-------------------------------*/
.tappycustomerpayment-slider {
    position: relative;
    cursor: pointer;
    display: block;
    width: 45px;
    /* adjust as needed */
    height: 28px;
    /* adjust as needed */
    background-color: var(--tap-blue-fade);
    border-radius: 30px;
    transition: background-color 0.4s;
    /* overflow: hidden; */
    /* ensures knob stays inside */
}

    /* ------------------------------
   3. Knob: Grow-In Animation + Toggle Slide
-------------------------------*/
    .tappycustomerpayment-slider:before {
        content: "";
        position: absolute;
        height: 24px;
        width: 24px;
        left: 2px;
        bottom: 2px;
        background-color: #fff;
        border-radius: 50%;
        /* Start invisible and scaled down */
        opacity: 0;
        transform: scale(0) translateX(0);
        transform-origin: center center;
        /* Grow-in only affects scale */
        animation: growBounceSafe 0.6s ease-out forwards;
        animation-delay: 0.35s;
        /* Toggle slide controlled by transition */
        transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.5s;
    }

/* Keyframes: only scale, not translateX */
@keyframes growBounceSafe {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    60% {
        opacity: 1;
        transform: scale(1.1);
    }

    80% {
        transform: scale(0.96);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ------------------------------
   4. Toggle ON State
-------------------------------*/
input:checked + .tappycustomerpayment-slider {
    background-color: var(--tap-blue);
}

    input:checked + .tappycustomerpayment-slider:before {
        left: auto;
        /* release left */
        right: 2px;
        /* stick knob to right */
        transform: scale(1) translateX(0);
        /* scale fixed by animation, slide controlled by transition */
        opacity: 1;
    }





.carosizefix_2 {
    height: 95px !important;
    width: auto;
    border-radius: 20px;
}

.trade-tip-profile-details {
    height: 8rem !important;
    padding: 5px 0 !important;
    width: 100% !important;
}

.servicefeesview-user-info {
    height: 8rem !important;
    padding: 5px 0 !important;
    width: 100% !important;
}

/*replace this with custom class name*/
.pt-0 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 20ch;
}

.heading {
    font-weight: 700;
    font-size: 1.25rem;
}

.trade-tip-button-container {
    display: flex !important;
    gap: 0.8rem !important;
    overflow-x: auto !important;
    /* allow horizontal scroll */
    flex-wrap: nowrap !important;
    /* prevent wrapping */
    scroll-behavior: smooth;
    /* smooth scrolling */
    -webkit-overflow-scrolling: touch;
    /* smooth on iOS */
    width: 100%;
    /* make container responsive */
    padding-left: 1rem;
    padding-right: 1rem;
}

    .trade-tip-button-container::-webkit-scrollbar {
        display: none;
        /* optional scrollbar styling */
    }

    .trade-tip-button-container button {
        flex: 0 0 calc((100% / 3.3) - 0.8rem);
        /* show 6 buttons in viewport with gap */
        min-width: 0;
        /* prevent overflow issues */
    }

.trade-tip-button {
    background-color: var(--tap-blue-fade) !important;
    font-weight: 700 !important;
    color: var(--tap-body-text) !important;
    width: 100% !important;
    padding: 4px 0 0 !important;
    border: none !important;
    border-radius: 1rem;
}

.tip_calc_cover_cont {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
}

.subheading {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--tap-grey);
}

.table-responsive {
    width: 100%;
    color: var(--tap-body-text)
}


.visit-time-charges {
    color: var(--tap-blue);
    font-size: 35px;
    line-height: 1;
    text-align: center;
    font-weight: 700;
}


.rate-link {
    color: var(--tap-blue);
    font-size: 1.25rem;
    text-decoration: none;
    font-weight: bold;
}

.bottom-container {
    position: relative;
    height: 30vh;
}

    .bottom-container > div:last-child {
        position: absolute;
        bottom: 0;
        width: 100%;
    }

.enter-label {
    color: var(--tap-body-text);
    font-weight: 700;
    font-size: 0.875rem;
    /* 14px */
}

.lottie-container {
    margin: 0 auto;
}


.successie-container {
    width: 50px;
    margin: 0 auto;
}

.failie-container {
    width: 50px;
    margin: 0 auto;
}

.process-exit-view-loader {
    z-index: 1055;
    width: 100%;
    overflow: hidden;
    color: var(--tap-body-text);
    background: transparent;
    backdrop-filter: blur(15px);
    padding: 0rem;
    padding-top: 0;
    padding-bottom: 0;
    position: fixed;
    height: 100%;
    top: 0;
    left: 0;
}

.loading_ani_icon_cont {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
    z-index: 2147483647 !important;
}

.loadie-container {
    width: 50px;
    margin: 0 auto;
    height: 50px;
}

.btn-back-color {
    background-color: var(--tap-blue-fade);
    color: var(--tap-body-text);
    border-color: none !important;
    font-weight: bold;
}

.entry-container {
    position: relative;
    /*	height: 25vh;*/
    height: -webkit-fill-available;
}

.btn-container {
    position: relative;
    height: -webkit-fill-available;
}

.entry-fixed-bottom {
    position: relative;
    bottom: 0;
    width: 100%;
}





.entry-boom-label {
    color: var(--tap-body-text);
    font-weight: 700;
    font-size: 1.25rem;
    /* 20px */
}

.successview-options-label,
.successview-options-label-link {
    font-size: 0.9375rem;
    /* 15px */
    font-weight: 700;
}

.successview-options-label {
    color: var(--tap-body-text);
}

.successview-options-label-link {
    color: var(--tap-blue);
    text-decoration: none;
}

.marging-10-px {
    margin-left: 10px;
}

.success-custom-check-icon {
    color: var(--tap-blue);
    border: 3px solid var(--tap-blue) !important;
    border-color: var(--tap-blue) !important;
}



.px-3 {
    flex-direction: row !important;
    /*		height: 3rem!important;*/
}


.btn-primary {
    background-color: var(--tap-blue) !important;
    color: #ffffff !important;
}

.blue_tap {
    color: var(--tap-blue);
}
.green {
    color: var(--tap-green);
}
.green_tap {
    color: var(--tap-green);
    background: var(--tap-green-fade);
}
.grey {
    color: var(--tap-placeholder);    
}
.grey_tap {
    color: var(--tap-placeholder);
    background: var(--tap-sup-blue-fade);
}

.red_tap {
    color: var(--tap-red);
    background: var(--tap-red-fade);
}

.park_payment_failed {
    height: 36rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.custom-blur-container {
    position: fixed;
    top: 0;
    left: 0;
    width: -webkit-fill-available;
    height: 100%;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: rgba(255, 255, 255, 0);
    /* light white overlay */
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(45px);
    /* For Safari */

    opacity: 1;
    transition: opacity 0.8s ease;
    pointer-events: all;
    margin: 1rem;
    padding: 1rem;
}

    .custom-blur-container.is-hidden {
        opacity: 0;
        pointer-events: none;
    }



#samsungpay-container button {
    width: 100% !important;
    border-radius: 2.3rem !important;
    height: 3rem !important;
    min-height: 3rem !important;
    border: none;
    outline: none;
    padding: 0px 0px !important;
    background-size: 75% !important;
}

.park-google-pay-button-width,
.park-samsung-pay-button-width,
.park-apple-pay-button-width {
    line-height: 0 !important;
}

.pay-google-pay-button-width,
.pay-samsung-pay-button-width,
.pay-apple-pay-button-width {
    line-height: 0 !important;
}

#google-container button {
    width: 100% !important;
    border-radius: 2.3rem !important;
    height: 3rem;
    font-size: 1.2rem;
    padding: 10px 0px !important;
    border: none !important;
    outline: none !important;
    /* background: transparent !important; */
}

.gpay-card-info-container-fill .gpay-card-info-iframe {
    background: var(--tap-xpays) !important;
}

/* sorting out dark mode so they don't have to */
.gpay-card-info-container.black,
.gpay-card-info-animation-container.black {
    background-color: var(--tap-xpays) !important;
}

.gpay-card-info-container.white,
.gpay-card-info-animation-container.white {
    background-color: var(--tap-xpays) !important;
}

#apple-pay-container button {
    width: 100% !important;
    font-size: 25px;
    padding: 0px;
    background-color: var(--tap-xpays);
    color: var(--tap-bg);
    border-radius: 2.3rem !important;
    height: 3rem;
    border: none;
    outline: none;
    /* margin-top: 2px; */
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    margin-top: 0rem !important;
    font-size: 1.2rem !important;
}

.gpay-card-info-container-fill {
    line-height: 0 !important;
}

.gpay-card-info-iframe {
    border-radius: 2rem !important;
}

.gpay-card-info-animation-container {
    display: none !important;
}

.gpay-card-info-container {
    height: 3rem !important;
    width: 100% !important;
    border-radius: 2rem !important;
    outline: none !important;
    border: none !important;
    padding: 0rem !important;
    display: flex !important;
    min-width: 100% !important;
}

.share-popdown {
    position: absolute;
    top: 20rem;
    padding: 1rem;
    border-radius: 24px;
    box-shadow: var(--tap-shadow);
    width: 200px;
    opacity: 0;
    pointer-events: none;
    /* initial state */
    transform: scale(0.3) translate(-10px, -20px);
    transform-origin: top right;
    transition: opacity 0.2s ease; /* ONLY opacity */
    z-index: 9999;
    background-color: rgba(255, 255, 255, 0);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    will-change: transform, opacity;
}

    .share-popdown.show {
        opacity: 1;
        pointer-events: all;
        animation: genieBounceDownLeft 0.28s cubic-bezier(.34,1.56,.64,1) forwards;
    }

@keyframes genieBounceDownLeft {
    0% {
        transform: scale(0.3) translate(-10px, -20px);
    }

    65% {
        transform: scale(1.05) translate(-4px, 6px);
    }

    100% {
        transform: scale(1) translate(0, 0);
    }
}

/* to use in Wallet Tappy Me Share button */
.share-popup {
    position: absolute;
    top: 40%;
    right: 27px;
    background: #fff;
    padding: 1rem;
    border-radius: 24px;
    box-shadow: var(--tap-shadow);
    width: 200px;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.3) translateY(20px);
    transform-origin: bottom right;
    transition: opacity 0.2s ease; /* ONLY opacity */
    z-index: 9999;
    background-color: rgba(255, 255, 255, 0);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

    .share-popup.show {
        opacity: 1;
        pointer-events: all;
        animation: genieBounce 0.28s cubic-bezier(.34,1.56,.64,1) forwards;
    }

@keyframes genieBounce {
    0% {
        transform: scale(0.3) translateY(20px);
    }

    65% {
        transform: scale(1.05) translateY(-6px);
    }

    100% {
        transform: scale(1) translateY(0);
    }
}


.share-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--tap-blue);
    margin-left: 1rem;
}

.share-btn {
    width: 100%;
    padding: 0.8rem 0.8rem 0.6rem;
    border-radius: 10px;
    border: none;
    background: #f0f3ff;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 3px;
    font-weight: 700;
    font-size: 17px;
    color: #01031d;
}

    .share-btn.whatsapp {
        background: #e5ffe5;
        color: #25D366;
    }

    .share-btn img {
        width: 25px;
        height: 25px;
    }

.bank-option .change-btn {
    position: absolute;
    right: -160px;
    /* <- start hidden */
    top: 0;
    height: 100%;
    width: 80px;
    background: #007bff;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: right 0.3s ease;
}

#changePaymentModal {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 30px;
    animation: fadeIn 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
}

.delete-btn {
    background: none;
    border: none;
    color: var(--tap-red);
    font-size: 16px;
    padding: 2px 0 0;
}

.change-btn:active .delete-btn {
    background: var(--tap-red);
    color: white;
}

#tappymeshare {
    margin-right: -8px !important;
    margin-top: 0px !important;
    margin-bottom: -15px;
}

.text_hide {
    color: var(--tap-bg);
}

.alerts-container {
    display: flex;
    flex-direction: column-reverse;
}

.reverse_block_styling, .refund_block_styling {
    width: 100%;
    display: flex;
    position: relative;
    font-weight: 600;
    font-size: 16px;
    color: var(--tap-body-text);
    background: transparent;
    padding-right: 0rem;
    padding-bottom: 0.5rem;
    padding-left: 1rem;
    border-radius: 1rem;
    pointer-events: auto;
    align-items: center;
    gap: 0.5rem;
    padding-top: 8% !important;
    justify-content: flex-end;
}

    .reverse_block_styling span, .refund_block_styling span {
        padding-top: 4px;
    }

.refundconfbtn, .reverseconfbtn {
    display: inline-block;
    height: 40px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    font-size: 16px;
    border: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, box-shadow .15s ease-in-out;
    letter-spacing: 1px;
    width: 50%;
    background-color: var(--tap-blue);
    color: white;
    padding: 2px 15px 0px;
    border-radius: 30px;
    cursor: pointer;
    width: 117px;
}

@media (min-width: 768px) {
    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl,
    .container-xxl {
        /* max-width: 1280px !important;
        padding-left: 0 !important;
        padding-right: 0 !important; */
        max-width: 1600px !important;
        padding-left: 0 !important;
        padding-right: 0px !important;
        width: -webkit-fill-available;
        min-width: 1280px !important;
    }
      /* Active */
    .tabs_text {
        color: var(--tap-body-text);
        /* blue text when active */
        cursor: pointer;
    }
    .tabs_text:hover {
        color: var(--tap-blue);
    }
    .tab-link.active .tabs_text:hover {
        color: var(--tap-blue);
        cursor: pointer;
    }
    #profile-tab .profile_content_cont .profile_info_wrapper .banner_container {
    min-width: unset;
    max-width: unset;
    width: 320px;
}
#profile-tab .profile_content_cont .profile_info_wrapper .profile_info_headers_cont_fix {
   width: 320px;
}
    .custom-container {
        /*	height: fit-content; */
        box-shadow: var(--tap-shadow-desk);
        border-radius: 25px;
        position: relative;
    }

    .reverse_block_styling, .refund_block_styling {
        gap: 1.5rem;
        padding-top: 1% !important;
        margin-top: 1rem;
    }

    .refundconfbtn, .reverseconfbtn {
        width: 140px;
    }

    .wallet_page_tabs_container {
        position: absolute;
        z-index: 1;
        display: flex;
        justify-content: flex-start;
        flex-direction: row;
        border-radius: 0;
        padding: 0rem;
        top: 0rem;
        overflow: hidden;
        height: 100%;
    }

    .tab-link {
        flex-direction: row;
        justify-content: flex-start;
        min-width: 150px;
    }

    .wallet_page_tabs_flex {
        transition: all 0.2s ease;
        justify-content: flex-start;
        gap: 2rem;
        width: 70px;
        padding: 15px;
        flex-direction: column;
        border-top-right-radius: 20px;
        border-top-left-radius: 25px;
        border-bottom-left-radius: 25px;
        border-bottom-right-radius: 20px;
    }

        .wallet_page_tabs_flex:hover {
            width: 175px;
            transition: all 0.2s ease;
        }

        .wallet_page_tabs_flex > .tab-link .tabs_text p {
            margin: 0;
            opacity: 0;
            transform: translateX(-14px);
            transition: transform 0.6s cubic-bezier(.4,0,.2,1), opacity 0.4s ease;
        }

        .wallet_page_tabs_flex > .tab-link:nth-child(1) .tabs_text p {
            transition-delay: 0s;
        }

        .wallet_page_tabs_flex > .tab-link:nth-child(2) .tabs_text p {
            transition-delay: 0.12s;
        }

        .wallet_page_tabs_flex > .tab-link:nth-child(3) .tabs_text p {
            transition-delay: 0.24s;
        }

        .wallet_page_tabs_flex > .tab-link:nth-child(4) .tabs_text p {
            transition-delay: 0.36s;
        }

        .wallet_page_tabs_flex > .tab-link:nth-child(5) .tabs_text p {
            transition-delay: 0.48s;
        }

        .wallet_page_tabs_flex:not(:hover) > .tab-link .tabs_text p {
            transition-delay: 0s;
        }

    .tabs_text p {
        margin: 0;
        white-space: nowrap;
    }

    .tabs_icons {
        width: 50px;
        margin-right: 20px;
    }

    .tabs_text {
        font-size: 15px;
    }

    .tab-link.active .tabs_text {
        font-size: 15px;
    }

    .reg-wrapper, .wallet-wrapper {
        overflow: hidden;
        padding: 1rem;
    }

    .wallet-main-view {
        height: 100svh;
        overflow-y: scroll;
        overflow-x: hidden;
        position: relative;
        z-index: 0;
        margin-bottom: -95px;
        padding: 1rem 1rem 95px 75px!important;
        max-height: 910px;
    }



    .add_buttons_wrapper {
        flex-direction: row;
        gap: 15px;
    }

    .add_buttons_wrapper {
        font-size: 16px;
    }

    .add_buttons_icon img {
        height: 50px;
    }

    .cancel_active_button {
        line-height: 2.4;
    }

    .device-scroll-wrapper {
        position: relative;
        padding: 0rem 0rem 1rem 1rem;
        margin: 0 0rem 0rem 0rem !important;
    }

    .monthly_collate_drop_btn {
        border-radius: 9px;
        padding: 0.7rem 1rem 0.5rem;
        font-size: 16px;
        line-height: 1.2rem;
    }

    #alerts-container > *:nth-child(1) {
    animation-delay: 0s;
    }

    #alerts-container > *:nth-child(2) {
        animation-delay: 0.05s;
    }

    #alerts-container > *:nth-child(3) {
        animation-delay: 0.1s;
    }

    #alerts-container > *:nth-child(4) {
        animation-delay: 0.15s;
    }

    #alerts-container > *:nth-child(5) {
        animation-delay: 0.2s;
    }
    #alerts-container > *:nth-child(6) {
        animation-delay: 0.25s;
    }
        #alerts-container > *:nth-child(7) {
        animation-delay: 0.3s;
    }
        #alerts-container > *:nth-child(8) {
        animation-delay: 0.35s;
    }
        #alerts-container > *:nth-child(5) {
        animation-delay: 0.4s;
    }

    .monthly_collate_dropdown_cont, .export_dropdown_cont {
        border-radius: 10px;
        padding: 1px;
        order: 2;
    }

    .monthly_collate_drop_btn:hover {
        background: var(--tap-blue-fade);
    }

    .control_month_order {
        order: 2
    }

    .export_dropdown_cont {
        background: var(--tap-green);
        max-width: fit-content;
        margin: auto 1rem auto auto !important;
        order: 1
    }

        .export_dropdown_cont:hover {
            background: var(--tap-green-fade)!important;
        }

    .add_buttons_cont {
        height: 4rem;
        border-radius: 12px !important;
    }

    .add_buttons_wrapper {
        min-height: 4rem;
    }


    
    .date-widget {
        width: 48px;
    }

    .footer_logo_container {
        padding-right: 0rem;
    }

    .history_buttons_cont {
        font-size: 14px !important;
        gap: 30px;
        flex-direction: row-reverse;
        margin-top: 0 !important;
        width: 100%;
        justify-content: flex-start;
        margin: 0 0 0 25px;
    }

    .refund-button, .reversal-button {
        font-size: 13px;
    }

    .recordhistory_content_wrapper {
        display: flex;
        justify-content: space-between;
    }

    .appointment_content_wrapper {
        display: flex;
        justify-content: space-between;
    }

    .history_text_device, .history_text_description, .history_text_date_time {
        width: 35%;
        font-size: 12px;
    }

    .history_text_device, .history_text_description {
        width: 35%;
        font-size: 12px;
        border-right: 1px solid var(--tap-grey);
    }

    .history_header_text_cont {
        padding: 10px 0px 8px 0px;
    }

    .confirmation-container1 {
        box-shadow: var(--tap-shadow-desk);
        padding: 0.5rem;
        border-radius: 10px;
    }

    .latest_incoming_payment {
        margin: -0.5rem;
        padding: 0.5rem;
    }




    


    .tip_bubble {
        background: var(--tap-blue-fade) !important;
        margin: 0rem !important;
        padding: 0.5rem !important;
        box-shadow: none !important;
    }

        .tip_bubble .recordhistory_content_wrapper .history_header_text_cont {
            padding: 0;
        }

        .tip_bubble .recordhistory_content_wrapper .history_buttons_cont .history_btns {
            width: calc(25% - 23px);
        }

        .tip_bubble .recordhistory_content_wrapper .history_buttons_cont {
            justify-content: flex-start;
        }

.outgoing_bank_btns {
    width:100%;
    align-self: flex-end;
}
.outgoing_bank_btns .history_btns  {
    width: calc(25% - 23px);
}

    .history_tip_net {
        border: 1px solid var(--tap-sup-blue) !important;
        border-radius: 7px !important;
    }

    .action-button-wrapper, .refund-button {
        border-radius: 23px;
    }

    .reversal-button {
        background: var(--tap-blue-fade) !important;
        color: var(--tap-blue);
    }

        .reversal-button:hover {
            background: var(--tap-blue) !important;
            color: #fff;
        }

    .refund-button {
        background: var(--tap-red-fade) !important;
        ;
        color: var(--tap-red);
    }

        .refund-button:hover {
            background: var(--tap-red) !important;
            ;
            color: #fff;
        }

    .custom-radio .checkmark {
        width: 25px;
        height: 25px;
    }

        /* Inner dot (hidden by default) */
        .custom-radio .checkmark::after {
            width: 17px;
            height: 17px;
        }

    /* #tappyme-tab {
        width: 300px;
        margin-left: 2rem;
        box-shadow: var(--tap-shadow);
        border-radius: 30px;
        background: var(--tap-bg);
        padding: 0.8rem;
        position: relative;
    } */

    .appointment_content_wrapper .app_block_detail_cont {
        width: 27%;
        flex-direction: row-reverse;
                padding: 0.5rem 0 0.3rem 0;
    }

    .appointment_content_wrapper .app_block_detail_cont .go_app_customer {
        width: unset;
    }

    .appointment_content_wrapper .customer_and_adress {
              width: 38%;
                padding: 0.5rem 0 0.3rem 0;
    }

    .appointment_content_wrapper .customer_and_adress .go_app_customer {
    padding: 0 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 120px;
    display: inline-block;
    vertical-align: middle;
    }

    .appointment_content_wrapper .customer_and_adress .go_app_address {
        text-align: left;
        width: 70%;
        display: inline-block;
        position: relative;
        align-content: center;
        white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 270px;
    display: inline-block;
    vertical-align: middle;
    }

    .app_buttons_cont {
    text-align: center;
    justify-content: space-between;
    gap: .5rem;
    display: flex;
    font-size: 11px !important;
    margin-top: 0.5rem;
}

    .appointment_content_wrapper .app_buttons_cont {
        width: 37%;
        margin-top: 0.1rem;
    }

    .appointment_content_wrapper .app_buttons_cont .app_btns .appointment_followup {
        border-radius: 2rem;
    padding: 0.88rem 0;
    line-height: 11px;

    }
    /* .app_buttons_cont .apps_btns:nth-of-type(1) {
        width: 53%;
    }
    .app_buttons_cont .apps_btns:nth-of-type(2) {
        width: 60%;
    }
    .app_buttons_cont .apps_btns:nth-of-type(3) { 
        width: 80%; 
    } */
/* First .apps_btns inside .app_buttons_cont */

.device-scroll-wrapper .flex-nowrap .custom-radio {
    font-size: 13px !important;
}
.app_buttons_cont .apps_btns:nth-child(1) {
        width: 65%;
}

/* Second .apps_btns */
.app_buttons_cont .apps_btns:nth-child(2) {
  width: 75%;
}

/* Third .apps_btns */
.app_buttons_cont .apps_btns:nth-child(4) {
        width: 80%; 
}
    .control_month_order_cont {
        height: 90vh;
    }

    .appointments_dropdown_cont .monthly_collate_drop_btn {
        border-radius: 20px;
    }

    .app_buttons_cont .action-button-wrapper .app-refund-button:hover {
        background: var(--tap-red);
        color: white;
    }
.app-refund-button {
    background: var(--tap-red-fade);
    color: var(--tap-red);
    font-weight: 700;
    font-size: 11px;
    padding: 0.88rem 0;
    line-height: 11px;
}
    .appointment_content_wrapper .app_buttons_cont .app_btns .appointment_followup:hover {
        background: var(--tap-blue);
        color: white;
    }

    .tappymeinfowrapper {
        height: 410px;
        zoom: 0.9;
        gap: 0.8rem;
    }

        .tappymeinfowrapper > :nth-child(3) .banner_container .banner-img {
            height: 100px;
            border-radius: 19px;
            width: 100%;
        }

        .tappymeinfowrapper > :nth-child(3) .profile_info_wrapper .profile_inner_info_wrapper .profile-img {
            width: 95px;
            height: 95px;
        }

    .alerts-update-message {
        box-shadow: var(--tap-shadow-desk);
        border-radius: 12px;
    }

    .add_buttons_wrapper:hover {
        /* padding: 0.4rem 0rem 0.2rem 0.5rem; */
        color: #fff;
        background-color: var(--tap-blue);
    }

    #profile-tab .profile_content_cont .profile_info_wrapper .profile_header_cont {
        padding-left: 18px;
        padding-right: 18px;
    }

    .payment_totals_inner_containers {
        width: 35%;
        box-shadow: var(--tap-shadow-desk);
    }

    .send-money-wallet-view .custom-form .form-group {
        width: 41% !important;
    }

    #wallet-tab {
        margin-left: 2rem;
    }

    .modal-dialog {
        max-width: calc(100% - 2rem);
        margin: 1rem auto;
    }



    .modal-content {
        position: relative;
        display: flex;
        flex-direction: column;
        width: calc(100% - 0rem);
        pointer-events: auto;
        background-color: #fff;
        background-clip: padding-box;
        border: 0px solid rgba(0, 0, 0, .2);
        outline: 0;
        border-radius: 38px !important;
        background-color: rgba(255, 255, 255, 0);
        backdrop-filter: blur(32px);
        -webkit-backdrop-filter: blur(45px);
        padding: 1rem !important;
        height: -webkit-fill-available;
    }

    .modal-title {
        font-size: 1rem;
        font-weight: 700;
        line-height: 1.5;
        letter-spacing: 0.2px;
        color: var(--tap-blue);
        padding: 0rem 0.3rem 0;
    }

    .modal-header {
        margin-bottom: 0rem;
    }

    .btn {
        font-size: 16px;
    }

    #tappyiframe, .iframe-preview {
        border: 1px solid #ccc;
        width: -webkit-fill-available !important;
        height: -webkit-fill-available !important;
    }

    .iframe-modal-body {
        max-height: -webkit-fill-available !important;
        max-width: 375px !important;
    }

    .latest_incoming_payment {
        background: var(--tap-green-fade);
    }



    .slider-WalletAuthentication {
        background: var(--tap-blue-fade);
        height: 10px;
        width: 10px;
        border-radius: 10px;
        margin: 0 8px !important;
    }

    .active-slider-WalletAuthentication {
        background: var(--tap-blue);
        height: 7px;
        width: 40px;
        border-radius: 10px;
        margin: 0 8px !important;
    }

    .share-popup {
        top: 34%;
        right: unset;
        left: 21%;
        zoom: 0.9;
        transform-origin: bottom left;
    }

    .share-btn {
        gap: 10px;
    }

    .tappymeinfowrapper .banner_container .banner-img {
        width: 100%;
        height: 95px;
        border-radius: 18px;
    }

    .modal-responsive {
        width: 100%;
        max-width: 420px !important;
        margin: auto auto !important;
        padding: 1rem !important;
        zoom: 0.8;
    }

    .infopop:target {
        top: 17% !important;
        left: 79%;
    }

    .infopop {
        width: 30%;
    }

    .charge-info, .cust_charge-info, .receipt_info_unqid, .exit_options_header {
        font-size: 17px;
    }

    .receipt-sub-sentence {
        font-size: 19px;
    }

    .receipt-custom-container > :nth-child(2) .park_banner_container .banner-img {
        height: 110px;
        border-radius: 20px
    }

    .park_inner_info_wrapper .paycust_info_block {
        zoom: 0.9;
        height: 110px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .cust_exit_options_header {
        margin: 0.5rem 0.5rem 0.5rem 0.9rem;
    }

    .logincodeview-image {
        height: 29rem;
        margin: 0rem 0rem 0rem 1rem !important;
    }

    .activationcodeview-image-container {
        width: max-content;
        height: 24rem;
        overflow: hidden;
        border-radius: 2rem;
        margin: auto 0 auto auto;
        display: flex;
        align-items: flex-end;
        overflow: visible;
    }

    .create-user {
        z-index: 2;
    }

    .receipt-parkcust-wrapper {
        justify-content: flex-start !important;
    }

    .receipt-modal {
        max-height: fit-content !important;
    }

    .receipt-custom-container {
        height: 100% !important;
        border-radius: 38px !important;
    }
    .arrow_right_to_down {
    display: inline-grid;
}
}
