@import "../global.css";

.load_parent{
  position: fixed;
  top: 0;
  height: 100vh;
  width: 100vw;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0000007D;
}

.load{
  height: 60px;
  width: 60px;
  border: 8px solid;
  border-color: var(--color-main) #FFFFFF00;
  border-radius: 50%;
animation: spin 2s linear infinite;
}

@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}
