.background-load {
    background-color: #4d3131;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999999999999999;
    opacity: 0.6;
  }

  #loader {
    position: absolute;
    left: 55%;
    top: 50%;
    z-index: 999999999999999999;
    width: 200px;
    height: 50px;
    margin: -75px 0 0 -75px;
    border: 10px solid #1901ec;
    border-radius: 50%;
    border-top: 10px solid #e40808;
    width: 150px;
    height: 150px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
  }

  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }