.loading_wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #fff;
    display: block;
    position: absolute;
    z-index: 99;
  }

  .loader_logo {
    height: 80px;
    width: 170px;
    position: absolute;
    left: 0;
    top: 38%;
    right: 0;
    margin: auto;
  }

  .loader_logo img {
    height: 100px;
    width: 100%;
    object-fit: contain;
  }

  .loading {
    border: 3px solid #a7d26e63;
    position: absolute;
    left: 0;
    top: 50%;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border-top-color: #a2cf66;
    animation: loader 1s ease-in-out infinite;
    -webkit-animation: loader 1s ease-in-out infinite;
    right: 0;
    margin: auto;
  }

  @keyframes loader {
    to {
      -webkit-transform: rotate(360deg);
    }
  }

  @-webkit-keyframes loader {
    to {
      -webkit-transform: rotate(360deg);
    }
  }