  .loader {
    position: fixed; /* Sit on top of the page content */
    display: none; /* Hidden by default */
    width: 100%; /* Full width (cover the whole page) */
    height: 100%; /* Full height (cover the whole page) */
    top: 0; 
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.4); /* Black background with opacity */
    z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
    cursor: progress; 
  }

  #pvp {
      position: absolute;
      top: 50%;
      left: 50%;
      color: #05B804;
  }

  #_prog {
      position: absolute;
      top: 52%;
      left: 50%;
      color: #FFFFFF;
      z-index: 3;
      font-size: 30px;
  }

  .countrylist{
      display:none;
      background: white;
      border-width: 1px;
      border-color: grey;
      border-radius: 5px;
      position: absolute;
      right:0px;
      overflow: auto; /* Enable scroll if needed */
      min-width: 360px;
      max-height: 340px;
      box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.4);
      float:right;
      z-index: 1;
  }

  .tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
  }

  .tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: left;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
  }

  .tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
  }

  .tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
  }

  #custom:{
    cursor: url(https://mint-mobile.com/mintdev/css/cursor.cur)
  }