@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");

@layer base {
  html {
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, system-ui,
      sans-serif !important;
  }
}

@tailwind base;
@tailwind components;
@tailwind utilities;

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #d6d6d6;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb {
  background: #4d494981;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #e9dcc9;
}

.translate-center {
  transform: translate(-50%, -50%);
}

.loader {
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(farthest-side, #d6d6d6 94%, #0000) top/8px 8px
      no-repeat,
    conic-gradient(#0000 30%, #d6d6d6);
  -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 8px), #000 0);
  animation: l13 1s infinite linear;
}
@keyframes l13 {
  100% {
    transform: rotate(1turn);
  }
}
