::-webkit-scrollbar {
    width: 5px !important;
    height: 10px !important;
  }

  /* Track */
  ::-webkit-scrollbar-track {
    /* box-shadow: inset 0 0 5px rgba(212, 212, 212, 0.857) !important; */
    border-radius: 2px;
  }

  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #abababa4 !important;
    border-radius: 5px;
  }

  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {

    background: #b0adad  !important;
  }

.showModal{
    display: flex;
    z-index: 107;
    position: fixed;
    inset: 0px 0px auto auto;
    margin: 0px;
    transform: translate(-351px, 19px);
}


/* for scroll bar */
.spinner-wrapper {
    display: none;
    position: fixed;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: rgb(255, 255, 255);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    z-index: 9999;
    overflow: hidden;
    border-radius: 50%;
    animation: slide-down 0.5s ease;
  }

  .spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }

  .spinner:before {
    content: "";
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 3px solid #009ef7;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
  }

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


  @keyframes slide-up {
    0% {
      top: 0;
    }
    100% {
      top: -40px;
    }
  }
