@import url(./theme.css);

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Ravi', sans-serif;
  background-color: var(--bg-color);
  color: var(--icon-color);
  margin: 0;
  padding: 0;
  direction: rtl;
  min-height: 100vh;
}

/* scrollbar -------------------------------------------------------------------------------------- */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 8px;
}

::-webkit-scrollbar-button:single-button {
  display: block;
  height: 0;
  width: 0;
  background: transparent;
}

/* prevent autofill styling ------------------------------------------------------------- */
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  transition: background-color 9999s ease-in-out 0s, color 9999s ease-in-out 0s;
  background-color: transparent !important;
  color: inherit !important;
  -webkit-text-fill-color: inherit !important;
  caret-color: auto;
  font-family: inherit;
}

input[type="checkbox"] {
  accent-color: #613CC3;
}

.container-style {
  max-width: 2000px;
  padding: 0 80px;
  margin: 0 auto;
}

@media screen and (max-width: 1279px) {
  .container-style {
    padding: 0 16px;
  }
}