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

*,
*::before,
*::after,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
  -webkit-tap-highlight-color: transparent;
  font-size: 100%;
  vertical-align: baseline;
  font-family: $primary-font !important;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
  @include respond(tab-land) {
    font-size: 56.25%;
  }
  @include respond(tab-port) {
    font-size: 50%;
  }
  @include respond(big-desktop) {
    font-size: 75%;
  }
}

body {
  // font-family: $primary-font !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: $black;
  line-height: 1.3;
  font-size: 1.6rem;
  font-weight: 400;
  margin: 0 !important;
  padding: 0 !important;
}

i {
  font-style: normal;
}

ul {
  li {
    list-style: none;
    padding: 0;
  }
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  &:active,
  &:hover,
  &:focus,
  &.active,
  &.hover,
  &.focus {
    @extend a;
  }
}

// svg,
img {
  width: 100%;
  height: auto;
}

button {
  background: transparent;
  border: 0;
  cursor: pointer;
  position: relative;

  &:disabled {
    pointer-events: none;
  }
}

.okra-loader {
  border: 3px solid transparent;
  border-radius: 50%;
  border-top: 2px solid $white;
  border-right: 2px solid $white;
  width: 20px;
  height: 20px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  pointer-events: none;

  &-primary {
    border-top: 2px solid $primary;
    border-right: 2px solid $primary;
  }
  &-grey {
    border-top: 2px solid $dark-grey;
    border-right: 2px solid $dark-grey;
  }
}
