/* @tailwind base; This provides default overrides which we will not use for backwards compatibility with scss. In case default components are made by tailwind this should not be enabled and will cause random artifacts. */

.container {
  width: 100%
}

@media (min-width: 480px) {
  .container {
    max-width: 480px
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1400px
  }
}

.static {
  position: static
}

.fixed {
  position: fixed
}

.absolute {
  position: absolute
}

.m-auto {
  margin: auto
}

.mb-0 {
  margin-bottom: 0px
}

.mb-10 {
  margin-bottom: 2.5rem
}

.mb-20 {
  margin-bottom: 5rem
}

.mb-3 {
  margin-bottom: 0.75rem
}

.mb-40 {
  margin-bottom: 10rem
}

.mb-80 {
  margin-bottom: 20rem
}

.ml-10 {
  margin-left: 2.5rem
}

.ml-5 {
  margin-left: 1.25rem
}

.mr-10 {
  margin-right: 2.5rem
}

.mr-5 {
  margin-right: 1.25rem
}

.mt-10 {
  margin-top: 2.5rem
}

.mt-20 {
  margin-top: 5rem
}

.mt-3 {
  margin-top: 0.75rem
}

.mt-40 {
  margin-top: 10rem
}

.mt-60 {
  margin-top: 15rem
}

.block {
  display: block
}

.inline-block {
  display: inline-block
}

.flex {
  display: flex
}

.hidden {
  display: none
}

.w-full {
  width: 100%
}

.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.cursor-pointer {
  cursor: pointer
}

.flex-row {
  flex-direction: row
}

.flex-row-reverse {
  flex-direction: row-reverse
}

.items-center {
  align-items: center
}

.justify-start {
  justify-content: flex-start
}

.justify-end {
  justify-content: flex-end
}

.justify-center {
  justify-content: center
}

.gap-10 {
  gap: 2.5rem
}

.text-wrap {
  text-wrap: wrap
}

.border {
  border-width: 1px
}

.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity))
}

.p-2 {
  padding: 0.5rem
}

.p-3 {
  padding: 0.75rem
}

.text-center {
  text-align: center
}

.text-right {
  text-align: right
}

.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity))
}
