
@use './modules/typography' as *;
@use "./modules/base" as *;

@tailwind base;
@tailwind components;
@tailwind utilities;


html {
  scrollbar-gutter: stable;
}

.dark {
  color-scheme: dark;
}

body {
  padding: 0 !important;
  color: #2C3E50;
  background-color: #F4F5F6;
}

.dark body {
  color: #E3E5E8;
  background-color: #161617;
}

html::-webkit-scrollbar {
  width: 15px;
}

html::-webkit-scrollbar-thumb {
  background: #c4c4c4;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

@media (min-width: 320px) and (max-width: 767px) {
  .a-container {
    padding: 0
  }
  .mobile-padding {
    padding: 16px;
  }
}
@media (prefers-color-scheme: dark) {
  .bg-gradient-blue {
    background: linear-gradient(236.46deg, #4FBDFF -2.39%, #1B98E2 79.1%);
  }
}
@media (prefers-color-scheme: light) {
  .bg-gradient-blue {
    background: linear-gradient(236.46deg, #479FFF -2.39%, #0070EB 79.1%);
  }
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.toast__body{
  padding:0 16px 0 0 !important;
  margin:0 !important;
  align-items: stretch !important;
}
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}
input[type="search"]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}
/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}
