

		/* ————— Common Button ————————————————————————————————————————————— */
    .priBtn{
      box-shadow: 4px 6px 9px -4px rgba(0,0,0,0.4);
      background-color: #AAAAAA;
      display: inline-block;
      cursor: pointer;
      color: #FFFFFF;
      font-family: 'Open Sans Condensed', sans-serif;
      font-size: 12px;
      padding: 4px 18px;
      margin: 5px 10px;
      text-decoration: none;
      text-transform: uppercase;
    }

    .priBtn{
      background-color: #0EA2BD;
    }
    .priBtn:hover{
      background-color:rgb(37, 197, 225);
    }
  /* ————— Common Button ————————————————————————————————————————————— */


/* Number Formating --------------*/
  .amtRight{
    text-align:right;
  }

  /* tooltip to show message on however --------------*/
  .tTip {
    position: relative;
    margin: 0px;
  }

  .tTip .tTextR {
    visibility: hidden;
    background: #eceeefc8;
    color: #0192ab;
    min-width: 100%;
    text-align: center;
    white-space: nowrap;
    font-size: 12px;
    border-radius: 6px;
    padding: 5px 5px;
    position: absolute;
    z-index: 100000;
    bottom: 125%; /* Above the button */
    right:0px;
    opacity: 0;
    transition: opacity 0.3s;
  }

  .tTip:hover .tTextR {
    visibility: visible;
    opacity: 1;
  }