.loader_position {
    width: 100%;
      background-color: #505050;
      height: 100%;
      position: fixed;
      z-index: 1055;
      opacity: .8;
  }
  
  .loader {
      border: 5px solid #f3f3f3;
      border: 5px solid #f3f3f3;
      border-radius: 50%;
      border-top: 5px solid #97144d;
      width: 50px;
      height: 50px;
      -webkit-animation: spin 2s linear infinite;
      animation: spin 2s linear infinite;
      position: absolute;
      top: 35vh;
      left: 48%;
      display: block;
      z-index: 9
  }
  
  .loader_position>p {
      position: absolute;
      top: 43vh;
      width: 100%;
      text-align: center;
      color: #3d3d3d;
      font-family: arial;
      font-weight: 700;
      font-size: 15px;
      padding: 7px
  }
  
  @-webkit-keyframes spin {
      0% {
          -webkit-transform: rotate(0)
      }
  
      100% {
          -webkit-transform: rotate(360deg)
      }
  }
  
  @keyframes spin {
      0% {
          transform: rotate(0)
      }
  
      100% {
          transform: rotate(360deg)
      }
  }