@use './variables-global' as *;

* {
  box-sizing: border-box;
  font-family: 'Sh', sans-serif;
  text-decoration: none;
}

html,
body {
  color: $primary_color_text;
  font-size: 14px;
  font-weight: 400;
}

pre {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  margin: 0 0 8px;
}

h1 {
  font-size: 28px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 14px;
}

.gray {
  color: #666 !important;
}

.persian_red {
  color: $persian_red !important;
}

@for $i from 0 through 20 {
  .gap-#{$i} {
    gap: #{$i}px !important;
  }
}

@for $i from -10 through 40 {
  .mt#{$i} {
    margin-top: #{$i}px !important;
  }
}

@for $i from -10 through 40 {
  .mr#{$i} {
    margin-right: #{$i}px !important;
  }
}

@for $i from -10 through 40 {
  .mb#{$i} {
    margin-bottom: #{$i}px !important;
  }
}

@for $i from -10 through 40 {
  .ml#{$i} {
    margin-left: #{$i}px !important;
  }
}

@for $i from 0 through 40 {
  .pt#{$i} {
    padding-top: #{$i}px !important;
  }
}

@for $i from 0 through 40 {
  .pr#{$i} {
    padding-right: #{$i}px !important;
  }
}

@for $i from 0 through 40 {
  .pb#{$i} {
    padding-bottom: #{$i}px !important;
  }
}

@for $i from 0 through 40 {
  .pl#{$i} {
    padding-left: #{$i}px !important;
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}