@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@500&display=swap');

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%
}

body {
    background: none repeat scroll 0 0 #fff !important;
    color: #333 !important;
    font-size: 12px !important;
    font-family: 'Nunito', sans-serif !important;
    background-color: transparent !important;
}

.topStatusBar {
    background-color: #2fc812;
    width: 100%;
    margin: 0 auto;
    padding: 12px 16px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    font-weight: 600;
    font-size: 12px;
    box-shadow: 0 1px 5px -1px rgba(0, 0, 0, .6);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;  /* centers icon + text vertically */
}

.topStatusBar span {
    color: #fff !important;
    text-transform: capitalize !important;
    position: relative;
    top: 1px;
}

.topStatusBar img {
    width: 20px;
    margin-right: 6px;
    filter: invert(1);
}

footer {
    background-color: #fff;
    width: 100%;
    position: fixed;
    bottom: 0;
    text-align: center;
    font-size: 9px;
    font-weight: 600;
    color: #000;
    z-index: 999;
    text-transform: uppercase;
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* ✅ 5 equal columns */
    align-items: center;
}

footer span {
    padding: 5px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

footer img {
    width: 24px;
    filter: invert(0);
    margin-bottom: -10px;
}

footer .active {
     filter: invert(57%) sepia(93%) saturate(2532%) hue-rotate(78deg) brightness(94%) contrast(95%);
}

.clear {
  clear: both !important;
}

.loadingWaitBg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    text-align: center;
    background-color: #fff;
    z-index: 9999999;
    padding-top: 65%;
    display: none;
}

.yPDc {
    -webkit-box-align: center;
    align-items: center;
    display: flex;
    left: 21px;
    top: 0px;
    position: absolute;
    z-index: 10;
    padding: 0;
}

.yPDcT {
    color: rgb(255, 255, 255);
    font-weight: 800;
    font-size: 9px;
    text-align: center !important;
    z-index: 20;
    position: absolute;
    left: 0;
    width: 100%;
    line-height: 11px;
}

[anim="ripple"] {
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
  }

  .ripple {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0);
    background: rgba(0, 0, 0, 0.3);
    animation: ripple 500ms ease-out;
  }

  @keyframes ripple {
    to {
      transform: translate(-50%, -50%) scale(3);
      opacity: 0;
    }
  }

  /* optional: for dark backgrounds */
  [anim="ripple"][data-ripple="light"] .ripple {
    background: rgba(255,255,255,0.4);
  }