/* reset.scss - modern CSS reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  user-select: none;
}

a {
  text-decoration: none;
}

.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-base {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
}

.text-6xl {
  font-size: 3.75rem;
}

.text-7xl {
  font-size: 4.5rem;
}

.text-8xl {
  font-size: 6rem;
}

.text-9xl {
  font-size: 8rem;
}

.font-thin {
  font-weight: 100;
}

.font-extralight {
  font-weight: 200;
}

.font-light {
  font-weight: 300;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-extrabold {
  font-weight: 800;
}

.font-black {
  font-weight: 900;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.capitalize {
  text-transform: capitalize;
}

.normal-case {
  text-transform: none;
}

.leading-none {
  line-height: 1;
}

.leading-tight {
  line-height: 1.25;
}

.leading-snug {
  line-height: 1.375;
}

.leading-normal {
  line-height: 1.5;
}

.leading-relaxed {
  line-height: 1.625;
}

.leading-loose {
  line-height: 2;
}

.tracking-tighter {
  letter-spacing: -0.05em;
}

.tracking-tight {
  letter-spacing: -0.025em;
}

.tracking-normal {
  letter-spacing: 0em;
}

.tracking-wide {
  letter-spacing: 0.025em;
}

.tracking-wider {
  letter-spacing: 0.05em;
}

.tracking-widest {
  letter-spacing: 0.1em;
}

.underline {
  text-decoration: underline;
}

.line-through {
  text-decoration: line-through;
}

.no-underline {
  text-decoration: none;
}

.italic {
  font-style: italic;
}

.not-italic {
  font-style: normal;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.break-normal {
  overflow-wrap: normal;
  word-break: normal;
}

.break-words {
  overflow-wrap: break-word;
}

.break-all {
  word-break: break-all;
}

.whitespace-normal {
  white-space: normal;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.whitespace-pre {
  white-space: pre;
}

.whitespace-pre-line {
  white-space: pre-line;
}

.whitespace-pre-wrap {
  white-space: pre-wrap;
}

.w-auto {
  width: auto;
}

.min-w-auto {
  min-width: auto;
}

.max-w-auto {
  max-width: auto;
}

@media (min-width: 640px) {
  .sm\:w-auto {
    width: auto;
  }
  .sm\:min-w-auto {
    min-width: auto;
  }
  .sm\:max-w-auto {
    max-width: auto;
  }
}
@media (min-width: 768px) {
  .md\:w-auto {
    width: auto;
  }
  .md\:min-w-auto {
    min-width: auto;
  }
  .md\:max-w-auto {
    max-width: auto;
  }
}
@media (min-width: 1024px) {
  .lg\:w-auto {
    width: auto;
  }
  .lg\:min-w-auto {
    min-width: auto;
  }
  .lg\:max-w-auto {
    max-width: auto;
  }
}
@media (min-width: 1280px) {
  .xl\:w-auto {
    width: auto;
  }
  .xl\:min-w-auto {
    min-width: auto;
  }
  .xl\:max-w-auto {
    max-width: auto;
  }
}
.w-min {
  width: min-content;
}

.min-w-min {
  min-width: min-content;
}

.max-w-min {
  max-width: min-content;
}

@media (min-width: 640px) {
  .sm\:w-min {
    width: min-content;
  }
  .sm\:min-w-min {
    min-width: min-content;
  }
  .sm\:max-w-min {
    max-width: min-content;
  }
}
@media (min-width: 768px) {
  .md\:w-min {
    width: min-content;
  }
  .md\:min-w-min {
    min-width: min-content;
  }
  .md\:max-w-min {
    max-width: min-content;
  }
}
@media (min-width: 1024px) {
  .lg\:w-min {
    width: min-content;
  }
  .lg\:min-w-min {
    min-width: min-content;
  }
  .lg\:max-w-min {
    max-width: min-content;
  }
}
@media (min-width: 1280px) {
  .xl\:w-min {
    width: min-content;
  }
  .xl\:min-w-min {
    min-width: min-content;
  }
  .xl\:max-w-min {
    max-width: min-content;
  }
}
.w-max {
  width: max-content;
}

.min-w-max {
  min-width: max-content;
}

.max-w-max {
  max-width: max-content;
}

@media (min-width: 640px) {
  .sm\:w-max {
    width: max-content;
  }
  .sm\:min-w-max {
    min-width: max-content;
  }
  .sm\:max-w-max {
    max-width: max-content;
  }
}
@media (min-width: 768px) {
  .md\:w-max {
    width: max-content;
  }
  .md\:min-w-max {
    min-width: max-content;
  }
  .md\:max-w-max {
    max-width: max-content;
  }
}
@media (min-width: 1024px) {
  .lg\:w-max {
    width: max-content;
  }
  .lg\:min-w-max {
    min-width: max-content;
  }
  .lg\:max-w-max {
    max-width: max-content;
  }
}
@media (min-width: 1280px) {
  .xl\:w-max {
    width: max-content;
  }
  .xl\:min-w-max {
    min-width: max-content;
  }
  .xl\:max-w-max {
    max-width: max-content;
  }
}
.w-px {
  width: 1px;
}

.min-w-px {
  min-width: 1px;
}

.max-w-px {
  max-width: 1px;
}

@media (min-width: 640px) {
  .sm\:w-px {
    width: 1px;
  }
  .sm\:min-w-px {
    min-width: 1px;
  }
  .sm\:max-w-px {
    max-width: 1px;
  }
}
@media (min-width: 768px) {
  .md\:w-px {
    width: 1px;
  }
  .md\:min-w-px {
    min-width: 1px;
  }
  .md\:max-w-px {
    max-width: 1px;
  }
}
@media (min-width: 1024px) {
  .lg\:w-px {
    width: 1px;
  }
  .lg\:min-w-px {
    min-width: 1px;
  }
  .lg\:max-w-px {
    max-width: 1px;
  }
}
@media (min-width: 1280px) {
  .xl\:w-px {
    width: 1px;
  }
  .xl\:min-w-px {
    min-width: 1px;
  }
  .xl\:max-w-px {
    max-width: 1px;
  }
}
.w-0 {
  width: 0rem;
}

.min-w-0 {
  min-width: 0rem;
}

.max-w-0 {
  max-width: 0rem;
}

@media (min-width: 640px) {
  .sm\:w-0 {
    width: 0rem;
  }
  .sm\:min-w-0 {
    min-width: 0rem;
  }
  .sm\:max-w-0 {
    max-width: 0rem;
  }
}
@media (min-width: 768px) {
  .md\:w-0 {
    width: 0rem;
  }
  .md\:min-w-0 {
    min-width: 0rem;
  }
  .md\:max-w-0 {
    max-width: 0rem;
  }
}
@media (min-width: 1024px) {
  .lg\:w-0 {
    width: 0rem;
  }
  .lg\:min-w-0 {
    min-width: 0rem;
  }
  .lg\:max-w-0 {
    max-width: 0rem;
  }
}
@media (min-width: 1280px) {
  .xl\:w-0 {
    width: 0rem;
  }
  .xl\:min-w-0 {
    min-width: 0rem;
  }
  .xl\:max-w-0 {
    max-width: 0rem;
  }
}
.w-1 {
  width: 0.25rem;
}

.min-w-1 {
  min-width: 0.25rem;
}

.max-w-1 {
  max-width: 0.25rem;
}

@media (min-width: 640px) {
  .sm\:w-1 {
    width: 0.25rem;
  }
  .sm\:min-w-1 {
    min-width: 0.25rem;
  }
  .sm\:max-w-1 {
    max-width: 0.25rem;
  }
}
@media (min-width: 768px) {
  .md\:w-1 {
    width: 0.25rem;
  }
  .md\:min-w-1 {
    min-width: 0.25rem;
  }
  .md\:max-w-1 {
    max-width: 0.25rem;
  }
}
@media (min-width: 1024px) {
  .lg\:w-1 {
    width: 0.25rem;
  }
  .lg\:min-w-1 {
    min-width: 0.25rem;
  }
  .lg\:max-w-1 {
    max-width: 0.25rem;
  }
}
@media (min-width: 1280px) {
  .xl\:w-1 {
    width: 0.25rem;
  }
  .xl\:min-w-1 {
    min-width: 0.25rem;
  }
  .xl\:max-w-1 {
    max-width: 0.25rem;
  }
}
.w-2 {
  width: 0.5rem;
}

.min-w-2 {
  min-width: 0.5rem;
}

.max-w-2 {
  max-width: 0.5rem;
}

@media (min-width: 640px) {
  .sm\:w-2 {
    width: 0.5rem;
  }
  .sm\:min-w-2 {
    min-width: 0.5rem;
  }
  .sm\:max-w-2 {
    max-width: 0.5rem;
  }
}
@media (min-width: 768px) {
  .md\:w-2 {
    width: 0.5rem;
  }
  .md\:min-w-2 {
    min-width: 0.5rem;
  }
  .md\:max-w-2 {
    max-width: 0.5rem;
  }
}
@media (min-width: 1024px) {
  .lg\:w-2 {
    width: 0.5rem;
  }
  .lg\:min-w-2 {
    min-width: 0.5rem;
  }
  .lg\:max-w-2 {
    max-width: 0.5rem;
  }
}
@media (min-width: 1280px) {
  .xl\:w-2 {
    width: 0.5rem;
  }
  .xl\:min-w-2 {
    min-width: 0.5rem;
  }
  .xl\:max-w-2 {
    max-width: 0.5rem;
  }
}
.w-3 {
  width: 0.75rem;
}

.min-w-3 {
  min-width: 0.75rem;
}

.max-w-3 {
  max-width: 0.75rem;
}

@media (min-width: 640px) {
  .sm\:w-3 {
    width: 0.75rem;
  }
  .sm\:min-w-3 {
    min-width: 0.75rem;
  }
  .sm\:max-w-3 {
    max-width: 0.75rem;
  }
}
@media (min-width: 768px) {
  .md\:w-3 {
    width: 0.75rem;
  }
  .md\:min-w-3 {
    min-width: 0.75rem;
  }
  .md\:max-w-3 {
    max-width: 0.75rem;
  }
}
@media (min-width: 1024px) {
  .lg\:w-3 {
    width: 0.75rem;
  }
  .lg\:min-w-3 {
    min-width: 0.75rem;
  }
  .lg\:max-w-3 {
    max-width: 0.75rem;
  }
}
@media (min-width: 1280px) {
  .xl\:w-3 {
    width: 0.75rem;
  }
  .xl\:min-w-3 {
    min-width: 0.75rem;
  }
  .xl\:max-w-3 {
    max-width: 0.75rem;
  }
}
.w-4 {
  width: 1rem;
}

.min-w-4 {
  min-width: 1rem;
}

.max-w-4 {
  max-width: 1rem;
}

@media (min-width: 640px) {
  .sm\:w-4 {
    width: 1rem;
  }
  .sm\:min-w-4 {
    min-width: 1rem;
  }
  .sm\:max-w-4 {
    max-width: 1rem;
  }
}
@media (min-width: 768px) {
  .md\:w-4 {
    width: 1rem;
  }
  .md\:min-w-4 {
    min-width: 1rem;
  }
  .md\:max-w-4 {
    max-width: 1rem;
  }
}
@media (min-width: 1024px) {
  .lg\:w-4 {
    width: 1rem;
  }
  .lg\:min-w-4 {
    min-width: 1rem;
  }
  .lg\:max-w-4 {
    max-width: 1rem;
  }
}
@media (min-width: 1280px) {
  .xl\:w-4 {
    width: 1rem;
  }
  .xl\:min-w-4 {
    min-width: 1rem;
  }
  .xl\:max-w-4 {
    max-width: 1rem;
  }
}
.w-5 {
  width: 1.25rem;
}

.min-w-5 {
  min-width: 1.25rem;
}

.max-w-5 {
  max-width: 1.25rem;
}

@media (min-width: 640px) {
  .sm\:w-5 {
    width: 1.25rem;
  }
  .sm\:min-w-5 {
    min-width: 1.25rem;
  }
  .sm\:max-w-5 {
    max-width: 1.25rem;
  }
}
@media (min-width: 768px) {
  .md\:w-5 {
    width: 1.25rem;
  }
  .md\:min-w-5 {
    min-width: 1.25rem;
  }
  .md\:max-w-5 {
    max-width: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .lg\:w-5 {
    width: 1.25rem;
  }
  .lg\:min-w-5 {
    min-width: 1.25rem;
  }
  .lg\:max-w-5 {
    max-width: 1.25rem;
  }
}
@media (min-width: 1280px) {
  .xl\:w-5 {
    width: 1.25rem;
  }
  .xl\:min-w-5 {
    min-width: 1.25rem;
  }
  .xl\:max-w-5 {
    max-width: 1.25rem;
  }
}
.w-6 {
  width: 1.5rem;
}

.min-w-6 {
  min-width: 1.5rem;
}

.max-w-6 {
  max-width: 1.5rem;
}

@media (min-width: 640px) {
  .sm\:w-6 {
    width: 1.5rem;
  }
  .sm\:min-w-6 {
    min-width: 1.5rem;
  }
  .sm\:max-w-6 {
    max-width: 1.5rem;
  }
}
@media (min-width: 768px) {
  .md\:w-6 {
    width: 1.5rem;
  }
  .md\:min-w-6 {
    min-width: 1.5rem;
  }
  .md\:max-w-6 {
    max-width: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .lg\:w-6 {
    width: 1.5rem;
  }
  .lg\:min-w-6 {
    min-width: 1.5rem;
  }
  .lg\:max-w-6 {
    max-width: 1.5rem;
  }
}
@media (min-width: 1280px) {
  .xl\:w-6 {
    width: 1.5rem;
  }
  .xl\:min-w-6 {
    min-width: 1.5rem;
  }
  .xl\:max-w-6 {
    max-width: 1.5rem;
  }
}
.w-8 {
  width: 2rem;
}

.min-w-8 {
  min-width: 2rem;
}

.max-w-8 {
  max-width: 2rem;
}

@media (min-width: 640px) {
  .sm\:w-8 {
    width: 2rem;
  }
  .sm\:min-w-8 {
    min-width: 2rem;
  }
  .sm\:max-w-8 {
    max-width: 2rem;
  }
}
@media (min-width: 768px) {
  .md\:w-8 {
    width: 2rem;
  }
  .md\:min-w-8 {
    min-width: 2rem;
  }
  .md\:max-w-8 {
    max-width: 2rem;
  }
}
@media (min-width: 1024px) {
  .lg\:w-8 {
    width: 2rem;
  }
  .lg\:min-w-8 {
    min-width: 2rem;
  }
  .lg\:max-w-8 {
    max-width: 2rem;
  }
}
@media (min-width: 1280px) {
  .xl\:w-8 {
    width: 2rem;
  }
  .xl\:min-w-8 {
    min-width: 2rem;
  }
  .xl\:max-w-8 {
    max-width: 2rem;
  }
}
.w-10 {
  width: 2.5rem;
}

.min-w-10 {
  min-width: 2.5rem;
}

.max-w-10 {
  max-width: 2.5rem;
}

@media (min-width: 640px) {
  .sm\:w-10 {
    width: 2.5rem;
  }
  .sm\:min-w-10 {
    min-width: 2.5rem;
  }
  .sm\:max-w-10 {
    max-width: 2.5rem;
  }
}
@media (min-width: 768px) {
  .md\:w-10 {
    width: 2.5rem;
  }
  .md\:min-w-10 {
    min-width: 2.5rem;
  }
  .md\:max-w-10 {
    max-width: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .lg\:w-10 {
    width: 2.5rem;
  }
  .lg\:min-w-10 {
    min-width: 2.5rem;
  }
  .lg\:max-w-10 {
    max-width: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .xl\:w-10 {
    width: 2.5rem;
  }
  .xl\:min-w-10 {
    min-width: 2.5rem;
  }
  .xl\:max-w-10 {
    max-width: 2.5rem;
  }
}
.w-12 {
  width: 3rem;
}

.min-w-12 {
  min-width: 3rem;
}

.max-w-12 {
  max-width: 3rem;
}

@media (min-width: 640px) {
  .sm\:w-12 {
    width: 3rem;
  }
  .sm\:min-w-12 {
    min-width: 3rem;
  }
  .sm\:max-w-12 {
    max-width: 3rem;
  }
}
@media (min-width: 768px) {
  .md\:w-12 {
    width: 3rem;
  }
  .md\:min-w-12 {
    min-width: 3rem;
  }
  .md\:max-w-12 {
    max-width: 3rem;
  }
}
@media (min-width: 1024px) {
  .lg\:w-12 {
    width: 3rem;
  }
  .lg\:min-w-12 {
    min-width: 3rem;
  }
  .lg\:max-w-12 {
    max-width: 3rem;
  }
}
@media (min-width: 1280px) {
  .xl\:w-12 {
    width: 3rem;
  }
  .xl\:min-w-12 {
    min-width: 3rem;
  }
  .xl\:max-w-12 {
    max-width: 3rem;
  }
}
.w-16 {
  width: 4rem;
}

.min-w-16 {
  min-width: 4rem;
}

.max-w-16 {
  max-width: 4rem;
}

@media (min-width: 640px) {
  .sm\:w-16 {
    width: 4rem;
  }
  .sm\:min-w-16 {
    min-width: 4rem;
  }
  .sm\:max-w-16 {
    max-width: 4rem;
  }
}
@media (min-width: 768px) {
  .md\:w-16 {
    width: 4rem;
  }
  .md\:min-w-16 {
    min-width: 4rem;
  }
  .md\:max-w-16 {
    max-width: 4rem;
  }
}
@media (min-width: 1024px) {
  .lg\:w-16 {
    width: 4rem;
  }
  .lg\:min-w-16 {
    min-width: 4rem;
  }
  .lg\:max-w-16 {
    max-width: 4rem;
  }
}
@media (min-width: 1280px) {
  .xl\:w-16 {
    width: 4rem;
  }
  .xl\:min-w-16 {
    min-width: 4rem;
  }
  .xl\:max-w-16 {
    max-width: 4rem;
  }
}
.w-20 {
  width: 5rem;
}

.min-w-20 {
  min-width: 5rem;
}

.max-w-20 {
  max-width: 5rem;
}

@media (min-width: 640px) {
  .sm\:w-20 {
    width: 5rem;
  }
  .sm\:min-w-20 {
    min-width: 5rem;
  }
  .sm\:max-w-20 {
    max-width: 5rem;
  }
}
@media (min-width: 768px) {
  .md\:w-20 {
    width: 5rem;
  }
  .md\:min-w-20 {
    min-width: 5rem;
  }
  .md\:max-w-20 {
    max-width: 5rem;
  }
}
@media (min-width: 1024px) {
  .lg\:w-20 {
    width: 5rem;
  }
  .lg\:min-w-20 {
    min-width: 5rem;
  }
  .lg\:max-w-20 {
    max-width: 5rem;
  }
}
@media (min-width: 1280px) {
  .xl\:w-20 {
    width: 5rem;
  }
  .xl\:min-w-20 {
    min-width: 5rem;
  }
  .xl\:max-w-20 {
    max-width: 5rem;
  }
}
.w-24 {
  width: 6rem;
}

.min-w-24 {
  min-width: 6rem;
}

.max-w-24 {
  max-width: 6rem;
}

@media (min-width: 640px) {
  .sm\:w-24 {
    width: 6rem;
  }
  .sm\:min-w-24 {
    min-width: 6rem;
  }
  .sm\:max-w-24 {
    max-width: 6rem;
  }
}
@media (min-width: 768px) {
  .md\:w-24 {
    width: 6rem;
  }
  .md\:min-w-24 {
    min-width: 6rem;
  }
  .md\:max-w-24 {
    max-width: 6rem;
  }
}
@media (min-width: 1024px) {
  .lg\:w-24 {
    width: 6rem;
  }
  .lg\:min-w-24 {
    min-width: 6rem;
  }
  .lg\:max-w-24 {
    max-width: 6rem;
  }
}
@media (min-width: 1280px) {
  .xl\:w-24 {
    width: 6rem;
  }
  .xl\:min-w-24 {
    min-width: 6rem;
  }
  .xl\:max-w-24 {
    max-width: 6rem;
  }
}
.w-32 {
  width: 8rem;
}

.min-w-32 {
  min-width: 8rem;
}

.max-w-32 {
  max-width: 8rem;
}

@media (min-width: 640px) {
  .sm\:w-32 {
    width: 8rem;
  }
  .sm\:min-w-32 {
    min-width: 8rem;
  }
  .sm\:max-w-32 {
    max-width: 8rem;
  }
}
@media (min-width: 768px) {
  .md\:w-32 {
    width: 8rem;
  }
  .md\:min-w-32 {
    min-width: 8rem;
  }
  .md\:max-w-32 {
    max-width: 8rem;
  }
}
@media (min-width: 1024px) {
  .lg\:w-32 {
    width: 8rem;
  }
  .lg\:min-w-32 {
    min-width: 8rem;
  }
  .lg\:max-w-32 {
    max-width: 8rem;
  }
}
@media (min-width: 1280px) {
  .xl\:w-32 {
    width: 8rem;
  }
  .xl\:min-w-32 {
    min-width: 8rem;
  }
  .xl\:max-w-32 {
    max-width: 8rem;
  }
}
.w-40 {
  width: 10rem;
}

.min-w-40 {
  min-width: 10rem;
}

.max-w-40 {
  max-width: 10rem;
}

@media (min-width: 640px) {
  .sm\:w-40 {
    width: 10rem;
  }
  .sm\:min-w-40 {
    min-width: 10rem;
  }
  .sm\:max-w-40 {
    max-width: 10rem;
  }
}
@media (min-width: 768px) {
  .md\:w-40 {
    width: 10rem;
  }
  .md\:min-w-40 {
    min-width: 10rem;
  }
  .md\:max-w-40 {
    max-width: 10rem;
  }
}
@media (min-width: 1024px) {
  .lg\:w-40 {
    width: 10rem;
  }
  .lg\:min-w-40 {
    min-width: 10rem;
  }
  .lg\:max-w-40 {
    max-width: 10rem;
  }
}
@media (min-width: 1280px) {
  .xl\:w-40 {
    width: 10rem;
  }
  .xl\:min-w-40 {
    min-width: 10rem;
  }
  .xl\:max-w-40 {
    max-width: 10rem;
  }
}
.w-48 {
  width: 12rem;
}

.min-w-48 {
  min-width: 12rem;
}

.max-w-48 {
  max-width: 12rem;
}

@media (min-width: 640px) {
  .sm\:w-48 {
    width: 12rem;
  }
  .sm\:min-w-48 {
    min-width: 12rem;
  }
  .sm\:max-w-48 {
    max-width: 12rem;
  }
}
@media (min-width: 768px) {
  .md\:w-48 {
    width: 12rem;
  }
  .md\:min-w-48 {
    min-width: 12rem;
  }
  .md\:max-w-48 {
    max-width: 12rem;
  }
}
@media (min-width: 1024px) {
  .lg\:w-48 {
    width: 12rem;
  }
  .lg\:min-w-48 {
    min-width: 12rem;
  }
  .lg\:max-w-48 {
    max-width: 12rem;
  }
}
@media (min-width: 1280px) {
  .xl\:w-48 {
    width: 12rem;
  }
  .xl\:min-w-48 {
    min-width: 12rem;
  }
  .xl\:max-w-48 {
    max-width: 12rem;
  }
}
.w-56 {
  width: 14rem;
}

.min-w-56 {
  min-width: 14rem;
}

.max-w-56 {
  max-width: 14rem;
}

@media (min-width: 640px) {
  .sm\:w-56 {
    width: 14rem;
  }
  .sm\:min-w-56 {
    min-width: 14rem;
  }
  .sm\:max-w-56 {
    max-width: 14rem;
  }
}
@media (min-width: 768px) {
  .md\:w-56 {
    width: 14rem;
  }
  .md\:min-w-56 {
    min-width: 14rem;
  }
  .md\:max-w-56 {
    max-width: 14rem;
  }
}
@media (min-width: 1024px) {
  .lg\:w-56 {
    width: 14rem;
  }
  .lg\:min-w-56 {
    min-width: 14rem;
  }
  .lg\:max-w-56 {
    max-width: 14rem;
  }
}
@media (min-width: 1280px) {
  .xl\:w-56 {
    width: 14rem;
  }
  .xl\:min-w-56 {
    min-width: 14rem;
  }
  .xl\:max-w-56 {
    max-width: 14rem;
  }
}
.w-64 {
  width: 16rem;
}

.min-w-64 {
  min-width: 16rem;
}

.max-w-64 {
  max-width: 16rem;
}

@media (min-width: 640px) {
  .sm\:w-64 {
    width: 16rem;
  }
  .sm\:min-w-64 {
    min-width: 16rem;
  }
  .sm\:max-w-64 {
    max-width: 16rem;
  }
}
@media (min-width: 768px) {
  .md\:w-64 {
    width: 16rem;
  }
  .md\:min-w-64 {
    min-width: 16rem;
  }
  .md\:max-w-64 {
    max-width: 16rem;
  }
}
@media (min-width: 1024px) {
  .lg\:w-64 {
    width: 16rem;
  }
  .lg\:min-w-64 {
    min-width: 16rem;
  }
  .lg\:max-w-64 {
    max-width: 16rem;
  }
}
@media (min-width: 1280px) {
  .xl\:w-64 {
    width: 16rem;
  }
  .xl\:min-w-64 {
    min-width: 16rem;
  }
  .xl\:max-w-64 {
    max-width: 16rem;
  }
}
.w-72 {
  width: 18rem;
}

.min-w-72 {
  min-width: 18rem;
}

.max-w-72 {
  max-width: 18rem;
}

@media (min-width: 640px) {
  .sm\:w-72 {
    width: 18rem;
  }
  .sm\:min-w-72 {
    min-width: 18rem;
  }
  .sm\:max-w-72 {
    max-width: 18rem;
  }
}
@media (min-width: 768px) {
  .md\:w-72 {
    width: 18rem;
  }
  .md\:min-w-72 {
    min-width: 18rem;
  }
  .md\:max-w-72 {
    max-width: 18rem;
  }
}
@media (min-width: 1024px) {
  .lg\:w-72 {
    width: 18rem;
  }
  .lg\:min-w-72 {
    min-width: 18rem;
  }
  .lg\:max-w-72 {
    max-width: 18rem;
  }
}
@media (min-width: 1280px) {
  .xl\:w-72 {
    width: 18rem;
  }
  .xl\:min-w-72 {
    min-width: 18rem;
  }
  .xl\:max-w-72 {
    max-width: 18rem;
  }
}
.w-80 {
  width: 20rem;
}

.min-w-80 {
  min-width: 20rem;
}

.max-w-80 {
  max-width: 20rem;
}

@media (min-width: 640px) {
  .sm\:w-80 {
    width: 20rem;
  }
  .sm\:min-w-80 {
    min-width: 20rem;
  }
  .sm\:max-w-80 {
    max-width: 20rem;
  }
}
@media (min-width: 768px) {
  .md\:w-80 {
    width: 20rem;
  }
  .md\:min-w-80 {
    min-width: 20rem;
  }
  .md\:max-w-80 {
    max-width: 20rem;
  }
}
@media (min-width: 1024px) {
  .lg\:w-80 {
    width: 20rem;
  }
  .lg\:min-w-80 {
    min-width: 20rem;
  }
  .lg\:max-w-80 {
    max-width: 20rem;
  }
}
@media (min-width: 1280px) {
  .xl\:w-80 {
    width: 20rem;
  }
  .xl\:min-w-80 {
    min-width: 20rem;
  }
  .xl\:max-w-80 {
    max-width: 20rem;
  }
}
.w-96 {
  width: 24rem;
}

.min-w-96 {
  min-width: 24rem;
}

.max-w-96 {
  max-width: 24rem;
}

@media (min-width: 640px) {
  .sm\:w-96 {
    width: 24rem;
  }
  .sm\:min-w-96 {
    min-width: 24rem;
  }
  .sm\:max-w-96 {
    max-width: 24rem;
  }
}
@media (min-width: 768px) {
  .md\:w-96 {
    width: 24rem;
  }
  .md\:min-w-96 {
    min-width: 24rem;
  }
  .md\:max-w-96 {
    max-width: 24rem;
  }
}
@media (min-width: 1024px) {
  .lg\:w-96 {
    width: 24rem;
  }
  .lg\:min-w-96 {
    min-width: 24rem;
  }
  .lg\:max-w-96 {
    max-width: 24rem;
  }
}
@media (min-width: 1280px) {
  .xl\:w-96 {
    width: 24rem;
  }
  .xl\:min-w-96 {
    min-width: 24rem;
  }
  .xl\:max-w-96 {
    max-width: 24rem;
  }
}
.w-sm {
  width: 24rem;
}

.min-w-sm {
  min-width: 24rem;
}

.max-w-sm {
  max-width: 24rem;
}

@media (min-width: 640px) {
  .sm\:w-sm {
    width: 24rem;
  }
  .sm\:min-w-sm {
    min-width: 24rem;
  }
  .sm\:max-w-sm {
    max-width: 24rem;
  }
}
@media (min-width: 768px) {
  .md\:w-sm {
    width: 24rem;
  }
  .md\:min-w-sm {
    min-width: 24rem;
  }
  .md\:max-w-sm {
    max-width: 24rem;
  }
}
@media (min-width: 1024px) {
  .lg\:w-sm {
    width: 24rem;
  }
  .lg\:min-w-sm {
    min-width: 24rem;
  }
  .lg\:max-w-sm {
    max-width: 24rem;
  }
}
@media (min-width: 1280px) {
  .xl\:w-sm {
    width: 24rem;
  }
  .xl\:min-w-sm {
    min-width: 24rem;
  }
  .xl\:max-w-sm {
    max-width: 24rem;
  }
}
.w-md {
  width: 28rem;
}

.min-w-md {
  min-width: 28rem;
}

.max-w-md {
  max-width: 28rem;
}

@media (min-width: 640px) {
  .sm\:w-md {
    width: 28rem;
  }
  .sm\:min-w-md {
    min-width: 28rem;
  }
  .sm\:max-w-md {
    max-width: 28rem;
  }
}
@media (min-width: 768px) {
  .md\:w-md {
    width: 28rem;
  }
  .md\:min-w-md {
    min-width: 28rem;
  }
  .md\:max-w-md {
    max-width: 28rem;
  }
}
@media (min-width: 1024px) {
  .lg\:w-md {
    width: 28rem;
  }
  .lg\:min-w-md {
    min-width: 28rem;
  }
  .lg\:max-w-md {
    max-width: 28rem;
  }
}
@media (min-width: 1280px) {
  .xl\:w-md {
    width: 28rem;
  }
  .xl\:min-w-md {
    min-width: 28rem;
  }
  .xl\:max-w-md {
    max-width: 28rem;
  }
}
.w-lg {
  width: 32rem;
}

.min-w-lg {
  min-width: 32rem;
}

.max-w-lg {
  max-width: 32rem;
}

@media (min-width: 640px) {
  .sm\:w-lg {
    width: 32rem;
  }
  .sm\:min-w-lg {
    min-width: 32rem;
  }
  .sm\:max-w-lg {
    max-width: 32rem;
  }
}
@media (min-width: 768px) {
  .md\:w-lg {
    width: 32rem;
  }
  .md\:min-w-lg {
    min-width: 32rem;
  }
  .md\:max-w-lg {
    max-width: 32rem;
  }
}
@media (min-width: 1024px) {
  .lg\:w-lg {
    width: 32rem;
  }
  .lg\:min-w-lg {
    min-width: 32rem;
  }
  .lg\:max-w-lg {
    max-width: 32rem;
  }
}
@media (min-width: 1280px) {
  .xl\:w-lg {
    width: 32rem;
  }
  .xl\:min-w-lg {
    min-width: 32rem;
  }
  .xl\:max-w-lg {
    max-width: 32rem;
  }
}
.w-xl {
  width: 36rem;
}

.min-w-xl {
  min-width: 36rem;
}

.max-w-xl {
  max-width: 36rem;
}

@media (min-width: 640px) {
  .sm\:w-xl {
    width: 36rem;
  }
  .sm\:min-w-xl {
    min-width: 36rem;
  }
  .sm\:max-w-xl {
    max-width: 36rem;
  }
}
@media (min-width: 768px) {
  .md\:w-xl {
    width: 36rem;
  }
  .md\:min-w-xl {
    min-width: 36rem;
  }
  .md\:max-w-xl {
    max-width: 36rem;
  }
}
@media (min-width: 1024px) {
  .lg\:w-xl {
    width: 36rem;
  }
  .lg\:min-w-xl {
    min-width: 36rem;
  }
  .lg\:max-w-xl {
    max-width: 36rem;
  }
}
@media (min-width: 1280px) {
  .xl\:w-xl {
    width: 36rem;
  }
  .xl\:min-w-xl {
    min-width: 36rem;
  }
  .xl\:max-w-xl {
    max-width: 36rem;
  }
}
.w-full {
  width: 100%;
}

.min-w-full {
  min-width: 100%;
}

.max-w-full {
  max-width: 100%;
}

@media (min-width: 640px) {
  .sm\:w-full {
    width: 100%;
  }
  .sm\:min-w-full {
    min-width: 100%;
  }
  .sm\:max-w-full {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .md\:w-full {
    width: 100%;
  }
  .md\:min-w-full {
    min-width: 100%;
  }
  .md\:max-w-full {
    max-width: 100%;
  }
}
@media (min-width: 1024px) {
  .lg\:w-full {
    width: 100%;
  }
  .lg\:min-w-full {
    min-width: 100%;
  }
  .lg\:max-w-full {
    max-width: 100%;
  }
}
@media (min-width: 1280px) {
  .xl\:w-full {
    width: 100%;
  }
  .xl\:min-w-full {
    min-width: 100%;
  }
  .xl\:max-w-full {
    max-width: 100%;
  }
}
.w-screen {
  width: 100vw;
}

.min-w-screen {
  min-width: 100vw;
}

.max-w-screen {
  max-width: 100vw;
}

@media (min-width: 640px) {
  .sm\:w-screen {
    width: 100vw;
  }
  .sm\:min-w-screen {
    min-width: 100vw;
  }
  .sm\:max-w-screen {
    max-width: 100vw;
  }
}
@media (min-width: 768px) {
  .md\:w-screen {
    width: 100vw;
  }
  .md\:min-w-screen {
    min-width: 100vw;
  }
  .md\:max-w-screen {
    max-width: 100vw;
  }
}
@media (min-width: 1024px) {
  .lg\:w-screen {
    width: 100vw;
  }
  .lg\:min-w-screen {
    min-width: 100vw;
  }
  .lg\:max-w-screen {
    max-width: 100vw;
  }
}
@media (min-width: 1280px) {
  .xl\:w-screen {
    width: 100vw;
  }
  .xl\:min-w-screen {
    min-width: 100vw;
  }
  .xl\:max-w-screen {
    max-width: 100vw;
  }
}
.w-1\/2 {
  width: 50%;
}

.min-w-1\/2 {
  min-width: 50%;
}

.max-w-1\/2 {
  max-width: 50%;
}

@media (min-width: 640px) {
  .sm\:w-1\/2 {
    width: 50%;
  }
  .sm\:min-w-1\/2 {
    min-width: 50%;
  }
  .sm\:max-w-1\/2 {
    max-width: 50%;
  }
}
@media (min-width: 768px) {
  .md\:w-1\/2 {
    width: 50%;
  }
  .md\:min-w-1\/2 {
    min-width: 50%;
  }
  .md\:max-w-1\/2 {
    max-width: 50%;
  }
}
@media (min-width: 1024px) {
  .lg\:w-1\/2 {
    width: 50%;
  }
  .lg\:min-w-1\/2 {
    min-width: 50%;
  }
  .lg\:max-w-1\/2 {
    max-width: 50%;
  }
}
@media (min-width: 1280px) {
  .xl\:w-1\/2 {
    width: 50%;
  }
  .xl\:min-w-1\/2 {
    min-width: 50%;
  }
  .xl\:max-w-1\/2 {
    max-width: 50%;
  }
}
.w-1\/3 {
  width: 33.3333%;
}

.min-w-1\/3 {
  min-width: 33.3333%;
}

.max-w-1\/3 {
  max-width: 33.3333%;
}

@media (min-width: 640px) {
  .sm\:w-1\/3 {
    width: 33.3333%;
  }
  .sm\:min-w-1\/3 {
    min-width: 33.3333%;
  }
  .sm\:max-w-1\/3 {
    max-width: 33.3333%;
  }
}
@media (min-width: 768px) {
  .md\:w-1\/3 {
    width: 33.3333%;
  }
  .md\:min-w-1\/3 {
    min-width: 33.3333%;
  }
  .md\:max-w-1\/3 {
    max-width: 33.3333%;
  }
}
@media (min-width: 1024px) {
  .lg\:w-1\/3 {
    width: 33.3333%;
  }
  .lg\:min-w-1\/3 {
    min-width: 33.3333%;
  }
  .lg\:max-w-1\/3 {
    max-width: 33.3333%;
  }
}
@media (min-width: 1280px) {
  .xl\:w-1\/3 {
    width: 33.3333%;
  }
  .xl\:min-w-1\/3 {
    min-width: 33.3333%;
  }
  .xl\:max-w-1\/3 {
    max-width: 33.3333%;
  }
}
.w-2\/3 {
  width: 66.6667%;
}

.min-w-2\/3 {
  min-width: 66.6667%;
}

.max-w-2\/3 {
  max-width: 66.6667%;
}

@media (min-width: 640px) {
  .sm\:w-2\/3 {
    width: 66.6667%;
  }
  .sm\:min-w-2\/3 {
    min-width: 66.6667%;
  }
  .sm\:max-w-2\/3 {
    max-width: 66.6667%;
  }
}
@media (min-width: 768px) {
  .md\:w-2\/3 {
    width: 66.6667%;
  }
  .md\:min-w-2\/3 {
    min-width: 66.6667%;
  }
  .md\:max-w-2\/3 {
    max-width: 66.6667%;
  }
}
@media (min-width: 1024px) {
  .lg\:w-2\/3 {
    width: 66.6667%;
  }
  .lg\:min-w-2\/3 {
    min-width: 66.6667%;
  }
  .lg\:max-w-2\/3 {
    max-width: 66.6667%;
  }
}
@media (min-width: 1280px) {
  .xl\:w-2\/3 {
    width: 66.6667%;
  }
  .xl\:min-w-2\/3 {
    min-width: 66.6667%;
  }
  .xl\:max-w-2\/3 {
    max-width: 66.6667%;
  }
}
.w-1\/4 {
  width: 25%;
}

.min-w-1\/4 {
  min-width: 25%;
}

.max-w-1\/4 {
  max-width: 25%;
}

@media (min-width: 640px) {
  .sm\:w-1\/4 {
    width: 25%;
  }
  .sm\:min-w-1\/4 {
    min-width: 25%;
  }
  .sm\:max-w-1\/4 {
    max-width: 25%;
  }
}
@media (min-width: 768px) {
  .md\:w-1\/4 {
    width: 25%;
  }
  .md\:min-w-1\/4 {
    min-width: 25%;
  }
  .md\:max-w-1\/4 {
    max-width: 25%;
  }
}
@media (min-width: 1024px) {
  .lg\:w-1\/4 {
    width: 25%;
  }
  .lg\:min-w-1\/4 {
    min-width: 25%;
  }
  .lg\:max-w-1\/4 {
    max-width: 25%;
  }
}
@media (min-width: 1280px) {
  .xl\:w-1\/4 {
    width: 25%;
  }
  .xl\:min-w-1\/4 {
    min-width: 25%;
  }
  .xl\:max-w-1\/4 {
    max-width: 25%;
  }
}
.w-3\/4 {
  width: 75%;
}

.min-w-3\/4 {
  min-width: 75%;
}

.max-w-3\/4 {
  max-width: 75%;
}

@media (min-width: 640px) {
  .sm\:w-3\/4 {
    width: 75%;
  }
  .sm\:min-w-3\/4 {
    min-width: 75%;
  }
  .sm\:max-w-3\/4 {
    max-width: 75%;
  }
}
@media (min-width: 768px) {
  .md\:w-3\/4 {
    width: 75%;
  }
  .md\:min-w-3\/4 {
    min-width: 75%;
  }
  .md\:max-w-3\/4 {
    max-width: 75%;
  }
}
@media (min-width: 1024px) {
  .lg\:w-3\/4 {
    width: 75%;
  }
  .lg\:min-w-3\/4 {
    min-width: 75%;
  }
  .lg\:max-w-3\/4 {
    max-width: 75%;
  }
}
@media (min-width: 1280px) {
  .xl\:w-3\/4 {
    width: 75%;
  }
  .xl\:min-w-3\/4 {
    min-width: 75%;
  }
  .xl\:max-w-3\/4 {
    max-width: 75%;
  }
}
.h-auto {
  height: auto;
}

.min-h-auto {
  min-height: auto;
}

.max-h-auto {
  max-height: auto;
}

@media (min-width: 640px) {
  .sm\:h-auto {
    height: auto;
  }
  .sm\:min-h-auto {
    min-height: auto;
  }
  .sm\:max-h-auto {
    max-height: auto;
  }
}
@media (min-width: 768px) {
  .md\:h-auto {
    height: auto;
  }
  .md\:min-h-auto {
    min-height: auto;
  }
  .md\:max-h-auto {
    max-height: auto;
  }
}
@media (min-width: 1024px) {
  .lg\:h-auto {
    height: auto;
  }
  .lg\:min-h-auto {
    min-height: auto;
  }
  .lg\:max-h-auto {
    max-height: auto;
  }
}
@media (min-width: 1280px) {
  .xl\:h-auto {
    height: auto;
  }
  .xl\:min-h-auto {
    min-height: auto;
  }
  .xl\:max-h-auto {
    max-height: auto;
  }
}
.h-min {
  height: min-content;
}

.min-h-min {
  min-height: min-content;
}

.max-h-min {
  max-height: min-content;
}

@media (min-width: 640px) {
  .sm\:h-min {
    height: min-content;
  }
  .sm\:min-h-min {
    min-height: min-content;
  }
  .sm\:max-h-min {
    max-height: min-content;
  }
}
@media (min-width: 768px) {
  .md\:h-min {
    height: min-content;
  }
  .md\:min-h-min {
    min-height: min-content;
  }
  .md\:max-h-min {
    max-height: min-content;
  }
}
@media (min-width: 1024px) {
  .lg\:h-min {
    height: min-content;
  }
  .lg\:min-h-min {
    min-height: min-content;
  }
  .lg\:max-h-min {
    max-height: min-content;
  }
}
@media (min-width: 1280px) {
  .xl\:h-min {
    height: min-content;
  }
  .xl\:min-h-min {
    min-height: min-content;
  }
  .xl\:max-h-min {
    max-height: min-content;
  }
}
.h-max {
  height: max-content;
}

.min-h-max {
  min-height: max-content;
}

.max-h-max {
  max-height: max-content;
}

@media (min-width: 640px) {
  .sm\:h-max {
    height: max-content;
  }
  .sm\:min-h-max {
    min-height: max-content;
  }
  .sm\:max-h-max {
    max-height: max-content;
  }
}
@media (min-width: 768px) {
  .md\:h-max {
    height: max-content;
  }
  .md\:min-h-max {
    min-height: max-content;
  }
  .md\:max-h-max {
    max-height: max-content;
  }
}
@media (min-width: 1024px) {
  .lg\:h-max {
    height: max-content;
  }
  .lg\:min-h-max {
    min-height: max-content;
  }
  .lg\:max-h-max {
    max-height: max-content;
  }
}
@media (min-width: 1280px) {
  .xl\:h-max {
    height: max-content;
  }
  .xl\:min-h-max {
    min-height: max-content;
  }
  .xl\:max-h-max {
    max-height: max-content;
  }
}
.h-px {
  height: 1px;
}

.min-h-px {
  min-height: 1px;
}

.max-h-px {
  max-height: 1px;
}

@media (min-width: 640px) {
  .sm\:h-px {
    height: 1px;
  }
  .sm\:min-h-px {
    min-height: 1px;
  }
  .sm\:max-h-px {
    max-height: 1px;
  }
}
@media (min-width: 768px) {
  .md\:h-px {
    height: 1px;
  }
  .md\:min-h-px {
    min-height: 1px;
  }
  .md\:max-h-px {
    max-height: 1px;
  }
}
@media (min-width: 1024px) {
  .lg\:h-px {
    height: 1px;
  }
  .lg\:min-h-px {
    min-height: 1px;
  }
  .lg\:max-h-px {
    max-height: 1px;
  }
}
@media (min-width: 1280px) {
  .xl\:h-px {
    height: 1px;
  }
  .xl\:min-h-px {
    min-height: 1px;
  }
  .xl\:max-h-px {
    max-height: 1px;
  }
}
.h-0 {
  height: 0rem;
}

.min-h-0 {
  min-height: 0rem;
}

.max-h-0 {
  max-height: 0rem;
}

@media (min-width: 640px) {
  .sm\:h-0 {
    height: 0rem;
  }
  .sm\:min-h-0 {
    min-height: 0rem;
  }
  .sm\:max-h-0 {
    max-height: 0rem;
  }
}
@media (min-width: 768px) {
  .md\:h-0 {
    height: 0rem;
  }
  .md\:min-h-0 {
    min-height: 0rem;
  }
  .md\:max-h-0 {
    max-height: 0rem;
  }
}
@media (min-width: 1024px) {
  .lg\:h-0 {
    height: 0rem;
  }
  .lg\:min-h-0 {
    min-height: 0rem;
  }
  .lg\:max-h-0 {
    max-height: 0rem;
  }
}
@media (min-width: 1280px) {
  .xl\:h-0 {
    height: 0rem;
  }
  .xl\:min-h-0 {
    min-height: 0rem;
  }
  .xl\:max-h-0 {
    max-height: 0rem;
  }
}
.h-1 {
  height: 0.25rem;
}

.min-h-1 {
  min-height: 0.25rem;
}

.max-h-1 {
  max-height: 0.25rem;
}

@media (min-width: 640px) {
  .sm\:h-1 {
    height: 0.25rem;
  }
  .sm\:min-h-1 {
    min-height: 0.25rem;
  }
  .sm\:max-h-1 {
    max-height: 0.25rem;
  }
}
@media (min-width: 768px) {
  .md\:h-1 {
    height: 0.25rem;
  }
  .md\:min-h-1 {
    min-height: 0.25rem;
  }
  .md\:max-h-1 {
    max-height: 0.25rem;
  }
}
@media (min-width: 1024px) {
  .lg\:h-1 {
    height: 0.25rem;
  }
  .lg\:min-h-1 {
    min-height: 0.25rem;
  }
  .lg\:max-h-1 {
    max-height: 0.25rem;
  }
}
@media (min-width: 1280px) {
  .xl\:h-1 {
    height: 0.25rem;
  }
  .xl\:min-h-1 {
    min-height: 0.25rem;
  }
  .xl\:max-h-1 {
    max-height: 0.25rem;
  }
}
.h-2 {
  height: 0.5rem;
}

.min-h-2 {
  min-height: 0.5rem;
}

.max-h-2 {
  max-height: 0.5rem;
}

@media (min-width: 640px) {
  .sm\:h-2 {
    height: 0.5rem;
  }
  .sm\:min-h-2 {
    min-height: 0.5rem;
  }
  .sm\:max-h-2 {
    max-height: 0.5rem;
  }
}
@media (min-width: 768px) {
  .md\:h-2 {
    height: 0.5rem;
  }
  .md\:min-h-2 {
    min-height: 0.5rem;
  }
  .md\:max-h-2 {
    max-height: 0.5rem;
  }
}
@media (min-width: 1024px) {
  .lg\:h-2 {
    height: 0.5rem;
  }
  .lg\:min-h-2 {
    min-height: 0.5rem;
  }
  .lg\:max-h-2 {
    max-height: 0.5rem;
  }
}
@media (min-width: 1280px) {
  .xl\:h-2 {
    height: 0.5rem;
  }
  .xl\:min-h-2 {
    min-height: 0.5rem;
  }
  .xl\:max-h-2 {
    max-height: 0.5rem;
  }
}
.h-3 {
  height: 0.75rem;
}

.min-h-3 {
  min-height: 0.75rem;
}

.max-h-3 {
  max-height: 0.75rem;
}

@media (min-width: 640px) {
  .sm\:h-3 {
    height: 0.75rem;
  }
  .sm\:min-h-3 {
    min-height: 0.75rem;
  }
  .sm\:max-h-3 {
    max-height: 0.75rem;
  }
}
@media (min-width: 768px) {
  .md\:h-3 {
    height: 0.75rem;
  }
  .md\:min-h-3 {
    min-height: 0.75rem;
  }
  .md\:max-h-3 {
    max-height: 0.75rem;
  }
}
@media (min-width: 1024px) {
  .lg\:h-3 {
    height: 0.75rem;
  }
  .lg\:min-h-3 {
    min-height: 0.75rem;
  }
  .lg\:max-h-3 {
    max-height: 0.75rem;
  }
}
@media (min-width: 1280px) {
  .xl\:h-3 {
    height: 0.75rem;
  }
  .xl\:min-h-3 {
    min-height: 0.75rem;
  }
  .xl\:max-h-3 {
    max-height: 0.75rem;
  }
}
.h-4 {
  height: 1rem;
}

.min-h-4 {
  min-height: 1rem;
}

.max-h-4 {
  max-height: 1rem;
}

@media (min-width: 640px) {
  .sm\:h-4 {
    height: 1rem;
  }
  .sm\:min-h-4 {
    min-height: 1rem;
  }
  .sm\:max-h-4 {
    max-height: 1rem;
  }
}
@media (min-width: 768px) {
  .md\:h-4 {
    height: 1rem;
  }
  .md\:min-h-4 {
    min-height: 1rem;
  }
  .md\:max-h-4 {
    max-height: 1rem;
  }
}
@media (min-width: 1024px) {
  .lg\:h-4 {
    height: 1rem;
  }
  .lg\:min-h-4 {
    min-height: 1rem;
  }
  .lg\:max-h-4 {
    max-height: 1rem;
  }
}
@media (min-width: 1280px) {
  .xl\:h-4 {
    height: 1rem;
  }
  .xl\:min-h-4 {
    min-height: 1rem;
  }
  .xl\:max-h-4 {
    max-height: 1rem;
  }
}
.h-5 {
  height: 1.25rem;
}

.min-h-5 {
  min-height: 1.25rem;
}

.max-h-5 {
  max-height: 1.25rem;
}

@media (min-width: 640px) {
  .sm\:h-5 {
    height: 1.25rem;
  }
  .sm\:min-h-5 {
    min-height: 1.25rem;
  }
  .sm\:max-h-5 {
    max-height: 1.25rem;
  }
}
@media (min-width: 768px) {
  .md\:h-5 {
    height: 1.25rem;
  }
  .md\:min-h-5 {
    min-height: 1.25rem;
  }
  .md\:max-h-5 {
    max-height: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .lg\:h-5 {
    height: 1.25rem;
  }
  .lg\:min-h-5 {
    min-height: 1.25rem;
  }
  .lg\:max-h-5 {
    max-height: 1.25rem;
  }
}
@media (min-width: 1280px) {
  .xl\:h-5 {
    height: 1.25rem;
  }
  .xl\:min-h-5 {
    min-height: 1.25rem;
  }
  .xl\:max-h-5 {
    max-height: 1.25rem;
  }
}
.h-6 {
  height: 1.5rem;
}

.min-h-6 {
  min-height: 1.5rem;
}

.max-h-6 {
  max-height: 1.5rem;
}

@media (min-width: 640px) {
  .sm\:h-6 {
    height: 1.5rem;
  }
  .sm\:min-h-6 {
    min-height: 1.5rem;
  }
  .sm\:max-h-6 {
    max-height: 1.5rem;
  }
}
@media (min-width: 768px) {
  .md\:h-6 {
    height: 1.5rem;
  }
  .md\:min-h-6 {
    min-height: 1.5rem;
  }
  .md\:max-h-6 {
    max-height: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .lg\:h-6 {
    height: 1.5rem;
  }
  .lg\:min-h-6 {
    min-height: 1.5rem;
  }
  .lg\:max-h-6 {
    max-height: 1.5rem;
  }
}
@media (min-width: 1280px) {
  .xl\:h-6 {
    height: 1.5rem;
  }
  .xl\:min-h-6 {
    min-height: 1.5rem;
  }
  .xl\:max-h-6 {
    max-height: 1.5rem;
  }
}
.h-8 {
  height: 2rem;
}

.min-h-8 {
  min-height: 2rem;
}

.max-h-8 {
  max-height: 2rem;
}

@media (min-width: 640px) {
  .sm\:h-8 {
    height: 2rem;
  }
  .sm\:min-h-8 {
    min-height: 2rem;
  }
  .sm\:max-h-8 {
    max-height: 2rem;
  }
}
@media (min-width: 768px) {
  .md\:h-8 {
    height: 2rem;
  }
  .md\:min-h-8 {
    min-height: 2rem;
  }
  .md\:max-h-8 {
    max-height: 2rem;
  }
}
@media (min-width: 1024px) {
  .lg\:h-8 {
    height: 2rem;
  }
  .lg\:min-h-8 {
    min-height: 2rem;
  }
  .lg\:max-h-8 {
    max-height: 2rem;
  }
}
@media (min-width: 1280px) {
  .xl\:h-8 {
    height: 2rem;
  }
  .xl\:min-h-8 {
    min-height: 2rem;
  }
  .xl\:max-h-8 {
    max-height: 2rem;
  }
}
.h-10 {
  height: 2.5rem;
}

.min-h-10 {
  min-height: 2.5rem;
}

.max-h-10 {
  max-height: 2.5rem;
}

@media (min-width: 640px) {
  .sm\:h-10 {
    height: 2.5rem;
  }
  .sm\:min-h-10 {
    min-height: 2.5rem;
  }
  .sm\:max-h-10 {
    max-height: 2.5rem;
  }
}
@media (min-width: 768px) {
  .md\:h-10 {
    height: 2.5rem;
  }
  .md\:min-h-10 {
    min-height: 2.5rem;
  }
  .md\:max-h-10 {
    max-height: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .lg\:h-10 {
    height: 2.5rem;
  }
  .lg\:min-h-10 {
    min-height: 2.5rem;
  }
  .lg\:max-h-10 {
    max-height: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .xl\:h-10 {
    height: 2.5rem;
  }
  .xl\:min-h-10 {
    min-height: 2.5rem;
  }
  .xl\:max-h-10 {
    max-height: 2.5rem;
  }
}
.h-12 {
  height: 3rem;
}

.min-h-12 {
  min-height: 3rem;
}

.max-h-12 {
  max-height: 3rem;
}

@media (min-width: 640px) {
  .sm\:h-12 {
    height: 3rem;
  }
  .sm\:min-h-12 {
    min-height: 3rem;
  }
  .sm\:max-h-12 {
    max-height: 3rem;
  }
}
@media (min-width: 768px) {
  .md\:h-12 {
    height: 3rem;
  }
  .md\:min-h-12 {
    min-height: 3rem;
  }
  .md\:max-h-12 {
    max-height: 3rem;
  }
}
@media (min-width: 1024px) {
  .lg\:h-12 {
    height: 3rem;
  }
  .lg\:min-h-12 {
    min-height: 3rem;
  }
  .lg\:max-h-12 {
    max-height: 3rem;
  }
}
@media (min-width: 1280px) {
  .xl\:h-12 {
    height: 3rem;
  }
  .xl\:min-h-12 {
    min-height: 3rem;
  }
  .xl\:max-h-12 {
    max-height: 3rem;
  }
}
.h-16 {
  height: 4rem;
}

.min-h-16 {
  min-height: 4rem;
}

.max-h-16 {
  max-height: 4rem;
}

@media (min-width: 640px) {
  .sm\:h-16 {
    height: 4rem;
  }
  .sm\:min-h-16 {
    min-height: 4rem;
  }
  .sm\:max-h-16 {
    max-height: 4rem;
  }
}
@media (min-width: 768px) {
  .md\:h-16 {
    height: 4rem;
  }
  .md\:min-h-16 {
    min-height: 4rem;
  }
  .md\:max-h-16 {
    max-height: 4rem;
  }
}
@media (min-width: 1024px) {
  .lg\:h-16 {
    height: 4rem;
  }
  .lg\:min-h-16 {
    min-height: 4rem;
  }
  .lg\:max-h-16 {
    max-height: 4rem;
  }
}
@media (min-width: 1280px) {
  .xl\:h-16 {
    height: 4rem;
  }
  .xl\:min-h-16 {
    min-height: 4rem;
  }
  .xl\:max-h-16 {
    max-height: 4rem;
  }
}
.h-20 {
  height: 5rem;
}

.min-h-20 {
  min-height: 5rem;
}

.max-h-20 {
  max-height: 5rem;
}

@media (min-width: 640px) {
  .sm\:h-20 {
    height: 5rem;
  }
  .sm\:min-h-20 {
    min-height: 5rem;
  }
  .sm\:max-h-20 {
    max-height: 5rem;
  }
}
@media (min-width: 768px) {
  .md\:h-20 {
    height: 5rem;
  }
  .md\:min-h-20 {
    min-height: 5rem;
  }
  .md\:max-h-20 {
    max-height: 5rem;
  }
}
@media (min-width: 1024px) {
  .lg\:h-20 {
    height: 5rem;
  }
  .lg\:min-h-20 {
    min-height: 5rem;
  }
  .lg\:max-h-20 {
    max-height: 5rem;
  }
}
@media (min-width: 1280px) {
  .xl\:h-20 {
    height: 5rem;
  }
  .xl\:min-h-20 {
    min-height: 5rem;
  }
  .xl\:max-h-20 {
    max-height: 5rem;
  }
}
.h-24 {
  height: 6rem;
}

.min-h-24 {
  min-height: 6rem;
}

.max-h-24 {
  max-height: 6rem;
}

@media (min-width: 640px) {
  .sm\:h-24 {
    height: 6rem;
  }
  .sm\:min-h-24 {
    min-height: 6rem;
  }
  .sm\:max-h-24 {
    max-height: 6rem;
  }
}
@media (min-width: 768px) {
  .md\:h-24 {
    height: 6rem;
  }
  .md\:min-h-24 {
    min-height: 6rem;
  }
  .md\:max-h-24 {
    max-height: 6rem;
  }
}
@media (min-width: 1024px) {
  .lg\:h-24 {
    height: 6rem;
  }
  .lg\:min-h-24 {
    min-height: 6rem;
  }
  .lg\:max-h-24 {
    max-height: 6rem;
  }
}
@media (min-width: 1280px) {
  .xl\:h-24 {
    height: 6rem;
  }
  .xl\:min-h-24 {
    min-height: 6rem;
  }
  .xl\:max-h-24 {
    max-height: 6rem;
  }
}
.h-32 {
  height: 8rem;
}

.min-h-32 {
  min-height: 8rem;
}

.max-h-32 {
  max-height: 8rem;
}

@media (min-width: 640px) {
  .sm\:h-32 {
    height: 8rem;
  }
  .sm\:min-h-32 {
    min-height: 8rem;
  }
  .sm\:max-h-32 {
    max-height: 8rem;
  }
}
@media (min-width: 768px) {
  .md\:h-32 {
    height: 8rem;
  }
  .md\:min-h-32 {
    min-height: 8rem;
  }
  .md\:max-h-32 {
    max-height: 8rem;
  }
}
@media (min-width: 1024px) {
  .lg\:h-32 {
    height: 8rem;
  }
  .lg\:min-h-32 {
    min-height: 8rem;
  }
  .lg\:max-h-32 {
    max-height: 8rem;
  }
}
@media (min-width: 1280px) {
  .xl\:h-32 {
    height: 8rem;
  }
  .xl\:min-h-32 {
    min-height: 8rem;
  }
  .xl\:max-h-32 {
    max-height: 8rem;
  }
}
.h-40 {
  height: 10rem;
}

.min-h-40 {
  min-height: 10rem;
}

.max-h-40 {
  max-height: 10rem;
}

@media (min-width: 640px) {
  .sm\:h-40 {
    height: 10rem;
  }
  .sm\:min-h-40 {
    min-height: 10rem;
  }
  .sm\:max-h-40 {
    max-height: 10rem;
  }
}
@media (min-width: 768px) {
  .md\:h-40 {
    height: 10rem;
  }
  .md\:min-h-40 {
    min-height: 10rem;
  }
  .md\:max-h-40 {
    max-height: 10rem;
  }
}
@media (min-width: 1024px) {
  .lg\:h-40 {
    height: 10rem;
  }
  .lg\:min-h-40 {
    min-height: 10rem;
  }
  .lg\:max-h-40 {
    max-height: 10rem;
  }
}
@media (min-width: 1280px) {
  .xl\:h-40 {
    height: 10rem;
  }
  .xl\:min-h-40 {
    min-height: 10rem;
  }
  .xl\:max-h-40 {
    max-height: 10rem;
  }
}
.h-48 {
  height: 12rem;
}

.min-h-48 {
  min-height: 12rem;
}

.max-h-48 {
  max-height: 12rem;
}

@media (min-width: 640px) {
  .sm\:h-48 {
    height: 12rem;
  }
  .sm\:min-h-48 {
    min-height: 12rem;
  }
  .sm\:max-h-48 {
    max-height: 12rem;
  }
}
@media (min-width: 768px) {
  .md\:h-48 {
    height: 12rem;
  }
  .md\:min-h-48 {
    min-height: 12rem;
  }
  .md\:max-h-48 {
    max-height: 12rem;
  }
}
@media (min-width: 1024px) {
  .lg\:h-48 {
    height: 12rem;
  }
  .lg\:min-h-48 {
    min-height: 12rem;
  }
  .lg\:max-h-48 {
    max-height: 12rem;
  }
}
@media (min-width: 1280px) {
  .xl\:h-48 {
    height: 12rem;
  }
  .xl\:min-h-48 {
    min-height: 12rem;
  }
  .xl\:max-h-48 {
    max-height: 12rem;
  }
}
.h-56 {
  height: 14rem;
}

.min-h-56 {
  min-height: 14rem;
}

.max-h-56 {
  max-height: 14rem;
}

@media (min-width: 640px) {
  .sm\:h-56 {
    height: 14rem;
  }
  .sm\:min-h-56 {
    min-height: 14rem;
  }
  .sm\:max-h-56 {
    max-height: 14rem;
  }
}
@media (min-width: 768px) {
  .md\:h-56 {
    height: 14rem;
  }
  .md\:min-h-56 {
    min-height: 14rem;
  }
  .md\:max-h-56 {
    max-height: 14rem;
  }
}
@media (min-width: 1024px) {
  .lg\:h-56 {
    height: 14rem;
  }
  .lg\:min-h-56 {
    min-height: 14rem;
  }
  .lg\:max-h-56 {
    max-height: 14rem;
  }
}
@media (min-width: 1280px) {
  .xl\:h-56 {
    height: 14rem;
  }
  .xl\:min-h-56 {
    min-height: 14rem;
  }
  .xl\:max-h-56 {
    max-height: 14rem;
  }
}
.h-64 {
  height: 16rem;
}

.min-h-64 {
  min-height: 16rem;
}

.max-h-64 {
  max-height: 16rem;
}

@media (min-width: 640px) {
  .sm\:h-64 {
    height: 16rem;
  }
  .sm\:min-h-64 {
    min-height: 16rem;
  }
  .sm\:max-h-64 {
    max-height: 16rem;
  }
}
@media (min-width: 768px) {
  .md\:h-64 {
    height: 16rem;
  }
  .md\:min-h-64 {
    min-height: 16rem;
  }
  .md\:max-h-64 {
    max-height: 16rem;
  }
}
@media (min-width: 1024px) {
  .lg\:h-64 {
    height: 16rem;
  }
  .lg\:min-h-64 {
    min-height: 16rem;
  }
  .lg\:max-h-64 {
    max-height: 16rem;
  }
}
@media (min-width: 1280px) {
  .xl\:h-64 {
    height: 16rem;
  }
  .xl\:min-h-64 {
    min-height: 16rem;
  }
  .xl\:max-h-64 {
    max-height: 16rem;
  }
}
.h-72 {
  height: 18rem;
}

.min-h-72 {
  min-height: 18rem;
}

.max-h-72 {
  max-height: 18rem;
}

@media (min-width: 640px) {
  .sm\:h-72 {
    height: 18rem;
  }
  .sm\:min-h-72 {
    min-height: 18rem;
  }
  .sm\:max-h-72 {
    max-height: 18rem;
  }
}
@media (min-width: 768px) {
  .md\:h-72 {
    height: 18rem;
  }
  .md\:min-h-72 {
    min-height: 18rem;
  }
  .md\:max-h-72 {
    max-height: 18rem;
  }
}
@media (min-width: 1024px) {
  .lg\:h-72 {
    height: 18rem;
  }
  .lg\:min-h-72 {
    min-height: 18rem;
  }
  .lg\:max-h-72 {
    max-height: 18rem;
  }
}
@media (min-width: 1280px) {
  .xl\:h-72 {
    height: 18rem;
  }
  .xl\:min-h-72 {
    min-height: 18rem;
  }
  .xl\:max-h-72 {
    max-height: 18rem;
  }
}
.h-80 {
  height: 20rem;
}

.min-h-80 {
  min-height: 20rem;
}

.max-h-80 {
  max-height: 20rem;
}

@media (min-width: 640px) {
  .sm\:h-80 {
    height: 20rem;
  }
  .sm\:min-h-80 {
    min-height: 20rem;
  }
  .sm\:max-h-80 {
    max-height: 20rem;
  }
}
@media (min-width: 768px) {
  .md\:h-80 {
    height: 20rem;
  }
  .md\:min-h-80 {
    min-height: 20rem;
  }
  .md\:max-h-80 {
    max-height: 20rem;
  }
}
@media (min-width: 1024px) {
  .lg\:h-80 {
    height: 20rem;
  }
  .lg\:min-h-80 {
    min-height: 20rem;
  }
  .lg\:max-h-80 {
    max-height: 20rem;
  }
}
@media (min-width: 1280px) {
  .xl\:h-80 {
    height: 20rem;
  }
  .xl\:min-h-80 {
    min-height: 20rem;
  }
  .xl\:max-h-80 {
    max-height: 20rem;
  }
}
.h-96 {
  height: 24rem;
}

.min-h-96 {
  min-height: 24rem;
}

.max-h-96 {
  max-height: 24rem;
}

@media (min-width: 640px) {
  .sm\:h-96 {
    height: 24rem;
  }
  .sm\:min-h-96 {
    min-height: 24rem;
  }
  .sm\:max-h-96 {
    max-height: 24rem;
  }
}
@media (min-width: 768px) {
  .md\:h-96 {
    height: 24rem;
  }
  .md\:min-h-96 {
    min-height: 24rem;
  }
  .md\:max-h-96 {
    max-height: 24rem;
  }
}
@media (min-width: 1024px) {
  .lg\:h-96 {
    height: 24rem;
  }
  .lg\:min-h-96 {
    min-height: 24rem;
  }
  .lg\:max-h-96 {
    max-height: 24rem;
  }
}
@media (min-width: 1280px) {
  .xl\:h-96 {
    height: 24rem;
  }
  .xl\:min-h-96 {
    min-height: 24rem;
  }
  .xl\:max-h-96 {
    max-height: 24rem;
  }
}
.h-sm {
  height: 24rem;
}

.min-h-sm {
  min-height: 24rem;
}

.max-h-sm {
  max-height: 24rem;
}

@media (min-width: 640px) {
  .sm\:h-sm {
    height: 24rem;
  }
  .sm\:min-h-sm {
    min-height: 24rem;
  }
  .sm\:max-h-sm {
    max-height: 24rem;
  }
}
@media (min-width: 768px) {
  .md\:h-sm {
    height: 24rem;
  }
  .md\:min-h-sm {
    min-height: 24rem;
  }
  .md\:max-h-sm {
    max-height: 24rem;
  }
}
@media (min-width: 1024px) {
  .lg\:h-sm {
    height: 24rem;
  }
  .lg\:min-h-sm {
    min-height: 24rem;
  }
  .lg\:max-h-sm {
    max-height: 24rem;
  }
}
@media (min-width: 1280px) {
  .xl\:h-sm {
    height: 24rem;
  }
  .xl\:min-h-sm {
    min-height: 24rem;
  }
  .xl\:max-h-sm {
    max-height: 24rem;
  }
}
.h-md {
  height: 28rem;
}

.min-h-md {
  min-height: 28rem;
}

.max-h-md {
  max-height: 28rem;
}

@media (min-width: 640px) {
  .sm\:h-md {
    height: 28rem;
  }
  .sm\:min-h-md {
    min-height: 28rem;
  }
  .sm\:max-h-md {
    max-height: 28rem;
  }
}
@media (min-width: 768px) {
  .md\:h-md {
    height: 28rem;
  }
  .md\:min-h-md {
    min-height: 28rem;
  }
  .md\:max-h-md {
    max-height: 28rem;
  }
}
@media (min-width: 1024px) {
  .lg\:h-md {
    height: 28rem;
  }
  .lg\:min-h-md {
    min-height: 28rem;
  }
  .lg\:max-h-md {
    max-height: 28rem;
  }
}
@media (min-width: 1280px) {
  .xl\:h-md {
    height: 28rem;
  }
  .xl\:min-h-md {
    min-height: 28rem;
  }
  .xl\:max-h-md {
    max-height: 28rem;
  }
}
.h-lg {
  height: 32rem;
}

.min-h-lg {
  min-height: 32rem;
}

.max-h-lg {
  max-height: 32rem;
}

@media (min-width: 640px) {
  .sm\:h-lg {
    height: 32rem;
  }
  .sm\:min-h-lg {
    min-height: 32rem;
  }
  .sm\:max-h-lg {
    max-height: 32rem;
  }
}
@media (min-width: 768px) {
  .md\:h-lg {
    height: 32rem;
  }
  .md\:min-h-lg {
    min-height: 32rem;
  }
  .md\:max-h-lg {
    max-height: 32rem;
  }
}
@media (min-width: 1024px) {
  .lg\:h-lg {
    height: 32rem;
  }
  .lg\:min-h-lg {
    min-height: 32rem;
  }
  .lg\:max-h-lg {
    max-height: 32rem;
  }
}
@media (min-width: 1280px) {
  .xl\:h-lg {
    height: 32rem;
  }
  .xl\:min-h-lg {
    min-height: 32rem;
  }
  .xl\:max-h-lg {
    max-height: 32rem;
  }
}
.h-xl {
  height: 36rem;
}

.min-h-xl {
  min-height: 36rem;
}

.max-h-xl {
  max-height: 36rem;
}

@media (min-width: 640px) {
  .sm\:h-xl {
    height: 36rem;
  }
  .sm\:min-h-xl {
    min-height: 36rem;
  }
  .sm\:max-h-xl {
    max-height: 36rem;
  }
}
@media (min-width: 768px) {
  .md\:h-xl {
    height: 36rem;
  }
  .md\:min-h-xl {
    min-height: 36rem;
  }
  .md\:max-h-xl {
    max-height: 36rem;
  }
}
@media (min-width: 1024px) {
  .lg\:h-xl {
    height: 36rem;
  }
  .lg\:min-h-xl {
    min-height: 36rem;
  }
  .lg\:max-h-xl {
    max-height: 36rem;
  }
}
@media (min-width: 1280px) {
  .xl\:h-xl {
    height: 36rem;
  }
  .xl\:min-h-xl {
    min-height: 36rem;
  }
  .xl\:max-h-xl {
    max-height: 36rem;
  }
}
.h-full {
  height: 100%;
}

.min-h-full {
  min-height: 100%;
}

.max-h-full {
  max-height: 100%;
}

@media (min-width: 640px) {
  .sm\:h-full {
    height: 100%;
  }
  .sm\:min-h-full {
    min-height: 100%;
  }
  .sm\:max-h-full {
    max-height: 100%;
  }
}
@media (min-width: 768px) {
  .md\:h-full {
    height: 100%;
  }
  .md\:min-h-full {
    min-height: 100%;
  }
  .md\:max-h-full {
    max-height: 100%;
  }
}
@media (min-width: 1024px) {
  .lg\:h-full {
    height: 100%;
  }
  .lg\:min-h-full {
    min-height: 100%;
  }
  .lg\:max-h-full {
    max-height: 100%;
  }
}
@media (min-width: 1280px) {
  .xl\:h-full {
    height: 100%;
  }
  .xl\:min-h-full {
    min-height: 100%;
  }
  .xl\:max-h-full {
    max-height: 100%;
  }
}
.h-1\/2 {
  height: 50%;
}

.min-h-1\/2 {
  min-height: 50%;
}

.max-h-1\/2 {
  max-height: 50%;
}

@media (min-width: 640px) {
  .sm\:h-1\/2 {
    height: 50%;
  }
  .sm\:min-h-1\/2 {
    min-height: 50%;
  }
  .sm\:max-h-1\/2 {
    max-height: 50%;
  }
}
@media (min-width: 768px) {
  .md\:h-1\/2 {
    height: 50%;
  }
  .md\:min-h-1\/2 {
    min-height: 50%;
  }
  .md\:max-h-1\/2 {
    max-height: 50%;
  }
}
@media (min-width: 1024px) {
  .lg\:h-1\/2 {
    height: 50%;
  }
  .lg\:min-h-1\/2 {
    min-height: 50%;
  }
  .lg\:max-h-1\/2 {
    max-height: 50%;
  }
}
@media (min-width: 1280px) {
  .xl\:h-1\/2 {
    height: 50%;
  }
  .xl\:min-h-1\/2 {
    min-height: 50%;
  }
  .xl\:max-h-1\/2 {
    max-height: 50%;
  }
}
.h-1\/3 {
  height: 33.3333%;
}

.min-h-1\/3 {
  min-height: 33.3333%;
}

.max-h-1\/3 {
  max-height: 33.3333%;
}

@media (min-width: 640px) {
  .sm\:h-1\/3 {
    height: 33.3333%;
  }
  .sm\:min-h-1\/3 {
    min-height: 33.3333%;
  }
  .sm\:max-h-1\/3 {
    max-height: 33.3333%;
  }
}
@media (min-width: 768px) {
  .md\:h-1\/3 {
    height: 33.3333%;
  }
  .md\:min-h-1\/3 {
    min-height: 33.3333%;
  }
  .md\:max-h-1\/3 {
    max-height: 33.3333%;
  }
}
@media (min-width: 1024px) {
  .lg\:h-1\/3 {
    height: 33.3333%;
  }
  .lg\:min-h-1\/3 {
    min-height: 33.3333%;
  }
  .lg\:max-h-1\/3 {
    max-height: 33.3333%;
  }
}
@media (min-width: 1280px) {
  .xl\:h-1\/3 {
    height: 33.3333%;
  }
  .xl\:min-h-1\/3 {
    min-height: 33.3333%;
  }
  .xl\:max-h-1\/3 {
    max-height: 33.3333%;
  }
}
.h-2\/3 {
  height: 66.6667%;
}

.min-h-2\/3 {
  min-height: 66.6667%;
}

.max-h-2\/3 {
  max-height: 66.6667%;
}

@media (min-width: 640px) {
  .sm\:h-2\/3 {
    height: 66.6667%;
  }
  .sm\:min-h-2\/3 {
    min-height: 66.6667%;
  }
  .sm\:max-h-2\/3 {
    max-height: 66.6667%;
  }
}
@media (min-width: 768px) {
  .md\:h-2\/3 {
    height: 66.6667%;
  }
  .md\:min-h-2\/3 {
    min-height: 66.6667%;
  }
  .md\:max-h-2\/3 {
    max-height: 66.6667%;
  }
}
@media (min-width: 1024px) {
  .lg\:h-2\/3 {
    height: 66.6667%;
  }
  .lg\:min-h-2\/3 {
    min-height: 66.6667%;
  }
  .lg\:max-h-2\/3 {
    max-height: 66.6667%;
  }
}
@media (min-width: 1280px) {
  .xl\:h-2\/3 {
    height: 66.6667%;
  }
  .xl\:min-h-2\/3 {
    min-height: 66.6667%;
  }
  .xl\:max-h-2\/3 {
    max-height: 66.6667%;
  }
}
.h-1\/4 {
  height: 25%;
}

.min-h-1\/4 {
  min-height: 25%;
}

.max-h-1\/4 {
  max-height: 25%;
}

@media (min-width: 640px) {
  .sm\:h-1\/4 {
    height: 25%;
  }
  .sm\:min-h-1\/4 {
    min-height: 25%;
  }
  .sm\:max-h-1\/4 {
    max-height: 25%;
  }
}
@media (min-width: 768px) {
  .md\:h-1\/4 {
    height: 25%;
  }
  .md\:min-h-1\/4 {
    min-height: 25%;
  }
  .md\:max-h-1\/4 {
    max-height: 25%;
  }
}
@media (min-width: 1024px) {
  .lg\:h-1\/4 {
    height: 25%;
  }
  .lg\:min-h-1\/4 {
    min-height: 25%;
  }
  .lg\:max-h-1\/4 {
    max-height: 25%;
  }
}
@media (min-width: 1280px) {
  .xl\:h-1\/4 {
    height: 25%;
  }
  .xl\:min-h-1\/4 {
    min-height: 25%;
  }
  .xl\:max-h-1\/4 {
    max-height: 25%;
  }
}
.h-3\/4 {
  height: 75%;
}

.min-h-3\/4 {
  min-height: 75%;
}

.max-h-3\/4 {
  max-height: 75%;
}

@media (min-width: 640px) {
  .sm\:h-3\/4 {
    height: 75%;
  }
  .sm\:min-h-3\/4 {
    min-height: 75%;
  }
  .sm\:max-h-3\/4 {
    max-height: 75%;
  }
}
@media (min-width: 768px) {
  .md\:h-3\/4 {
    height: 75%;
  }
  .md\:min-h-3\/4 {
    min-height: 75%;
  }
  .md\:max-h-3\/4 {
    max-height: 75%;
  }
}
@media (min-width: 1024px) {
  .lg\:h-3\/4 {
    height: 75%;
  }
  .lg\:min-h-3\/4 {
    min-height: 75%;
  }
  .lg\:max-h-3\/4 {
    max-height: 75%;
  }
}
@media (min-width: 1280px) {
  .xl\:h-3\/4 {
    height: 75%;
  }
  .xl\:min-h-3\/4 {
    min-height: 75%;
  }
  .xl\:max-h-3\/4 {
    max-height: 75%;
  }
}
.h-screen {
  height: 100vh;
}

@media (min-width: 640px) {
  .sm\:h-screen {
    height: 100vh;
  }
}
@media (min-width: 768px) {
  .md\:h-screen {
    height: 100vh;
  }
}
@media (min-width: 1024px) {
  .lg\:h-screen {
    height: 100vh;
  }
}
@media (min-width: 1280px) {
  .xl\:h-screen {
    height: 100vh;
  }
}
.m-0 {
  margin: 0rem !important;
}

.mt-0 {
  margin-top: 0rem !important;
}

.mr-0 {
  margin-right: 0rem !important;
}

.mb-0 {
  margin-bottom: 0rem !important;
}

.ml-0 {
  margin-left: 0rem !important;
}

.mx-0 {
  margin-left: 0rem !important;
  margin-right: 0rem !important;
}

.my-0 {
  margin-top: 0rem !important;
  margin-bottom: 0rem !important;
}

@media (min-width: 640px) {
  .sm\:m-0 {
    margin: 0rem !important;
  }
  .sm\:mt-0 {
    margin-top: 0rem !important;
  }
  .sm\:mr-0 {
    margin-right: 0rem !important;
  }
  .sm\:mb-0 {
    margin-bottom: 0rem !important;
  }
  .sm\:ml-0 {
    margin-left: 0rem !important;
  }
  .sm\:mx-0 {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
  }
  .sm\:my-0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
}
@media (min-width: 768px) {
  .md\:m-0 {
    margin: 0rem !important;
  }
  .md\:mt-0 {
    margin-top: 0rem !important;
  }
  .md\:mr-0 {
    margin-right: 0rem !important;
  }
  .md\:mb-0 {
    margin-bottom: 0rem !important;
  }
  .md\:ml-0 {
    margin-left: 0rem !important;
  }
  .md\:mx-0 {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
  }
  .md\:my-0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:m-0 {
    margin: 0rem !important;
  }
  .lg\:mt-0 {
    margin-top: 0rem !important;
  }
  .lg\:mr-0 {
    margin-right: 0rem !important;
  }
  .lg\:mb-0 {
    margin-bottom: 0rem !important;
  }
  .lg\:ml-0 {
    margin-left: 0rem !important;
  }
  .lg\:mx-0 {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
  }
  .lg\:my-0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:m-0 {
    margin: 0rem !important;
  }
  .xl\:mt-0 {
    margin-top: 0rem !important;
  }
  .xl\:mr-0 {
    margin-right: 0rem !important;
  }
  .xl\:mb-0 {
    margin-bottom: 0rem !important;
  }
  .xl\:ml-0 {
    margin-left: 0rem !important;
  }
  .xl\:mx-0 {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
  }
  .xl\:my-0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
}
.m-0-5 {
  margin: 0.125rem !important;
}

.mt-0-5 {
  margin-top: 0.125rem !important;
}

.mr-0-5 {
  margin-right: 0.125rem !important;
}

.mb-0-5 {
  margin-bottom: 0.125rem !important;
}

.ml-0-5 {
  margin-left: 0.125rem !important;
}

.mx-0-5 {
  margin-left: 0.125rem !important;
  margin-right: 0.125rem !important;
}

.my-0-5 {
  margin-top: 0.125rem !important;
  margin-bottom: 0.125rem !important;
}

@media (min-width: 640px) {
  .sm\:m-0-5 {
    margin: 0.125rem !important;
  }
  .sm\:mt-0-5 {
    margin-top: 0.125rem !important;
  }
  .sm\:mr-0-5 {
    margin-right: 0.125rem !important;
  }
  .sm\:mb-0-5 {
    margin-bottom: 0.125rem !important;
  }
  .sm\:ml-0-5 {
    margin-left: 0.125rem !important;
  }
  .sm\:mx-0-5 {
    margin-left: 0.125rem !important;
    margin-right: 0.125rem !important;
  }
  .sm\:my-0-5 {
    margin-top: 0.125rem !important;
    margin-bottom: 0.125rem !important;
  }
}
@media (min-width: 768px) {
  .md\:m-0-5 {
    margin: 0.125rem !important;
  }
  .md\:mt-0-5 {
    margin-top: 0.125rem !important;
  }
  .md\:mr-0-5 {
    margin-right: 0.125rem !important;
  }
  .md\:mb-0-5 {
    margin-bottom: 0.125rem !important;
  }
  .md\:ml-0-5 {
    margin-left: 0.125rem !important;
  }
  .md\:mx-0-5 {
    margin-left: 0.125rem !important;
    margin-right: 0.125rem !important;
  }
  .md\:my-0-5 {
    margin-top: 0.125rem !important;
    margin-bottom: 0.125rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:m-0-5 {
    margin: 0.125rem !important;
  }
  .lg\:mt-0-5 {
    margin-top: 0.125rem !important;
  }
  .lg\:mr-0-5 {
    margin-right: 0.125rem !important;
  }
  .lg\:mb-0-5 {
    margin-bottom: 0.125rem !important;
  }
  .lg\:ml-0-5 {
    margin-left: 0.125rem !important;
  }
  .lg\:mx-0-5 {
    margin-left: 0.125rem !important;
    margin-right: 0.125rem !important;
  }
  .lg\:my-0-5 {
    margin-top: 0.125rem !important;
    margin-bottom: 0.125rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:m-0-5 {
    margin: 0.125rem !important;
  }
  .xl\:mt-0-5 {
    margin-top: 0.125rem !important;
  }
  .xl\:mr-0-5 {
    margin-right: 0.125rem !important;
  }
  .xl\:mb-0-5 {
    margin-bottom: 0.125rem !important;
  }
  .xl\:ml-0-5 {
    margin-left: 0.125rem !important;
  }
  .xl\:mx-0-5 {
    margin-left: 0.125rem !important;
    margin-right: 0.125rem !important;
  }
  .xl\:my-0-5 {
    margin-top: 0.125rem !important;
    margin-bottom: 0.125rem !important;
  }
}
.m-1 {
  margin: 0.25rem !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mr-1 {
  margin-right: 0.25rem !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1 {
  margin-left: 0.25rem !important;
}

.mx-1 {
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

@media (min-width: 640px) {
  .sm\:m-1 {
    margin: 0.25rem !important;
  }
  .sm\:mt-1 {
    margin-top: 0.25rem !important;
  }
  .sm\:mr-1 {
    margin-right: 0.25rem !important;
  }
  .sm\:mb-1 {
    margin-bottom: 0.25rem !important;
  }
  .sm\:ml-1 {
    margin-left: 0.25rem !important;
  }
  .sm\:mx-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .sm\:my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
}
@media (min-width: 768px) {
  .md\:m-1 {
    margin: 0.25rem !important;
  }
  .md\:mt-1 {
    margin-top: 0.25rem !important;
  }
  .md\:mr-1 {
    margin-right: 0.25rem !important;
  }
  .md\:mb-1 {
    margin-bottom: 0.25rem !important;
  }
  .md\:ml-1 {
    margin-left: 0.25rem !important;
  }
  .md\:mx-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .md\:my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:m-1 {
    margin: 0.25rem !important;
  }
  .lg\:mt-1 {
    margin-top: 0.25rem !important;
  }
  .lg\:mr-1 {
    margin-right: 0.25rem !important;
  }
  .lg\:mb-1 {
    margin-bottom: 0.25rem !important;
  }
  .lg\:ml-1 {
    margin-left: 0.25rem !important;
  }
  .lg\:mx-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .lg\:my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:m-1 {
    margin: 0.25rem !important;
  }
  .xl\:mt-1 {
    margin-top: 0.25rem !important;
  }
  .xl\:mr-1 {
    margin-right: 0.25rem !important;
  }
  .xl\:mb-1 {
    margin-bottom: 0.25rem !important;
  }
  .xl\:ml-1 {
    margin-left: 0.25rem !important;
  }
  .xl\:mx-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .xl\:my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
}
.m-1-5 {
  margin: 0.375rem !important;
}

.mt-1-5 {
  margin-top: 0.375rem !important;
}

.mr-1-5 {
  margin-right: 0.375rem !important;
}

.mb-1-5 {
  margin-bottom: 0.375rem !important;
}

.ml-1-5 {
  margin-left: 0.375rem !important;
}

.mx-1-5 {
  margin-left: 0.375rem !important;
  margin-right: 0.375rem !important;
}

.my-1-5 {
  margin-top: 0.375rem !important;
  margin-bottom: 0.375rem !important;
}

@media (min-width: 640px) {
  .sm\:m-1-5 {
    margin: 0.375rem !important;
  }
  .sm\:mt-1-5 {
    margin-top: 0.375rem !important;
  }
  .sm\:mr-1-5 {
    margin-right: 0.375rem !important;
  }
  .sm\:mb-1-5 {
    margin-bottom: 0.375rem !important;
  }
  .sm\:ml-1-5 {
    margin-left: 0.375rem !important;
  }
  .sm\:mx-1-5 {
    margin-left: 0.375rem !important;
    margin-right: 0.375rem !important;
  }
  .sm\:my-1-5 {
    margin-top: 0.375rem !important;
    margin-bottom: 0.375rem !important;
  }
}
@media (min-width: 768px) {
  .md\:m-1-5 {
    margin: 0.375rem !important;
  }
  .md\:mt-1-5 {
    margin-top: 0.375rem !important;
  }
  .md\:mr-1-5 {
    margin-right: 0.375rem !important;
  }
  .md\:mb-1-5 {
    margin-bottom: 0.375rem !important;
  }
  .md\:ml-1-5 {
    margin-left: 0.375rem !important;
  }
  .md\:mx-1-5 {
    margin-left: 0.375rem !important;
    margin-right: 0.375rem !important;
  }
  .md\:my-1-5 {
    margin-top: 0.375rem !important;
    margin-bottom: 0.375rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:m-1-5 {
    margin: 0.375rem !important;
  }
  .lg\:mt-1-5 {
    margin-top: 0.375rem !important;
  }
  .lg\:mr-1-5 {
    margin-right: 0.375rem !important;
  }
  .lg\:mb-1-5 {
    margin-bottom: 0.375rem !important;
  }
  .lg\:ml-1-5 {
    margin-left: 0.375rem !important;
  }
  .lg\:mx-1-5 {
    margin-left: 0.375rem !important;
    margin-right: 0.375rem !important;
  }
  .lg\:my-1-5 {
    margin-top: 0.375rem !important;
    margin-bottom: 0.375rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:m-1-5 {
    margin: 0.375rem !important;
  }
  .xl\:mt-1-5 {
    margin-top: 0.375rem !important;
  }
  .xl\:mr-1-5 {
    margin-right: 0.375rem !important;
  }
  .xl\:mb-1-5 {
    margin-bottom: 0.375rem !important;
  }
  .xl\:ml-1-5 {
    margin-left: 0.375rem !important;
  }
  .xl\:mx-1-5 {
    margin-left: 0.375rem !important;
    margin-right: 0.375rem !important;
  }
  .xl\:my-1-5 {
    margin-top: 0.375rem !important;
    margin-bottom: 0.375rem !important;
  }
}
.m-2 {
  margin: 0.5rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mr-2 {
  margin-right: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2 {
  margin-left: 0.5rem !important;
}

.mx-2 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

@media (min-width: 640px) {
  .sm\:m-2 {
    margin: 0.5rem !important;
  }
  .sm\:mt-2 {
    margin-top: 0.5rem !important;
  }
  .sm\:mr-2 {
    margin-right: 0.5rem !important;
  }
  .sm\:mb-2 {
    margin-bottom: 0.5rem !important;
  }
  .sm\:ml-2 {
    margin-left: 0.5rem !important;
  }
  .sm\:mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .sm\:my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
}
@media (min-width: 768px) {
  .md\:m-2 {
    margin: 0.5rem !important;
  }
  .md\:mt-2 {
    margin-top: 0.5rem !important;
  }
  .md\:mr-2 {
    margin-right: 0.5rem !important;
  }
  .md\:mb-2 {
    margin-bottom: 0.5rem !important;
  }
  .md\:ml-2 {
    margin-left: 0.5rem !important;
  }
  .md\:mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .md\:my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:m-2 {
    margin: 0.5rem !important;
  }
  .lg\:mt-2 {
    margin-top: 0.5rem !important;
  }
  .lg\:mr-2 {
    margin-right: 0.5rem !important;
  }
  .lg\:mb-2 {
    margin-bottom: 0.5rem !important;
  }
  .lg\:ml-2 {
    margin-left: 0.5rem !important;
  }
  .lg\:mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .lg\:my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:m-2 {
    margin: 0.5rem !important;
  }
  .xl\:mt-2 {
    margin-top: 0.5rem !important;
  }
  .xl\:mr-2 {
    margin-right: 0.5rem !important;
  }
  .xl\:mb-2 {
    margin-bottom: 0.5rem !important;
  }
  .xl\:ml-2 {
    margin-left: 0.5rem !important;
  }
  .xl\:mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .xl\:my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
}
.m-2-5 {
  margin: 0.625rem !important;
}

.mt-2-5 {
  margin-top: 0.625rem !important;
}

.mr-2-5 {
  margin-right: 0.625rem !important;
}

.mb-2-5 {
  margin-bottom: 0.625rem !important;
}

.ml-2-5 {
  margin-left: 0.625rem !important;
}

.mx-2-5 {
  margin-left: 0.625rem !important;
  margin-right: 0.625rem !important;
}

.my-2-5 {
  margin-top: 0.625rem !important;
  margin-bottom: 0.625rem !important;
}

@media (min-width: 640px) {
  .sm\:m-2-5 {
    margin: 0.625rem !important;
  }
  .sm\:mt-2-5 {
    margin-top: 0.625rem !important;
  }
  .sm\:mr-2-5 {
    margin-right: 0.625rem !important;
  }
  .sm\:mb-2-5 {
    margin-bottom: 0.625rem !important;
  }
  .sm\:ml-2-5 {
    margin-left: 0.625rem !important;
  }
  .sm\:mx-2-5 {
    margin-left: 0.625rem !important;
    margin-right: 0.625rem !important;
  }
  .sm\:my-2-5 {
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }
}
@media (min-width: 768px) {
  .md\:m-2-5 {
    margin: 0.625rem !important;
  }
  .md\:mt-2-5 {
    margin-top: 0.625rem !important;
  }
  .md\:mr-2-5 {
    margin-right: 0.625rem !important;
  }
  .md\:mb-2-5 {
    margin-bottom: 0.625rem !important;
  }
  .md\:ml-2-5 {
    margin-left: 0.625rem !important;
  }
  .md\:mx-2-5 {
    margin-left: 0.625rem !important;
    margin-right: 0.625rem !important;
  }
  .md\:my-2-5 {
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:m-2-5 {
    margin: 0.625rem !important;
  }
  .lg\:mt-2-5 {
    margin-top: 0.625rem !important;
  }
  .lg\:mr-2-5 {
    margin-right: 0.625rem !important;
  }
  .lg\:mb-2-5 {
    margin-bottom: 0.625rem !important;
  }
  .lg\:ml-2-5 {
    margin-left: 0.625rem !important;
  }
  .lg\:mx-2-5 {
    margin-left: 0.625rem !important;
    margin-right: 0.625rem !important;
  }
  .lg\:my-2-5 {
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:m-2-5 {
    margin: 0.625rem !important;
  }
  .xl\:mt-2-5 {
    margin-top: 0.625rem !important;
  }
  .xl\:mr-2-5 {
    margin-right: 0.625rem !important;
  }
  .xl\:mb-2-5 {
    margin-bottom: 0.625rem !important;
  }
  .xl\:ml-2-5 {
    margin-left: 0.625rem !important;
  }
  .xl\:mx-2-5 {
    margin-left: 0.625rem !important;
    margin-right: 0.625rem !important;
  }
  .xl\:my-2-5 {
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }
}
.m-3 {
  margin: 0.75rem !important;
}

.mt-3 {
  margin-top: 0.75rem !important;
}

.mr-3 {
  margin-right: 0.75rem !important;
}

.mb-3 {
  margin-bottom: 0.75rem !important;
}

.ml-3 {
  margin-left: 0.75rem !important;
}

.mx-3 {
  margin-left: 0.75rem !important;
  margin-right: 0.75rem !important;
}

.my-3 {
  margin-top: 0.75rem !important;
  margin-bottom: 0.75rem !important;
}

@media (min-width: 640px) {
  .sm\:m-3 {
    margin: 0.75rem !important;
  }
  .sm\:mt-3 {
    margin-top: 0.75rem !important;
  }
  .sm\:mr-3 {
    margin-right: 0.75rem !important;
  }
  .sm\:mb-3 {
    margin-bottom: 0.75rem !important;
  }
  .sm\:ml-3 {
    margin-left: 0.75rem !important;
  }
  .sm\:mx-3 {
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
  }
  .sm\:my-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
}
@media (min-width: 768px) {
  .md\:m-3 {
    margin: 0.75rem !important;
  }
  .md\:mt-3 {
    margin-top: 0.75rem !important;
  }
  .md\:mr-3 {
    margin-right: 0.75rem !important;
  }
  .md\:mb-3 {
    margin-bottom: 0.75rem !important;
  }
  .md\:ml-3 {
    margin-left: 0.75rem !important;
  }
  .md\:mx-3 {
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
  }
  .md\:my-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:m-3 {
    margin: 0.75rem !important;
  }
  .lg\:mt-3 {
    margin-top: 0.75rem !important;
  }
  .lg\:mr-3 {
    margin-right: 0.75rem !important;
  }
  .lg\:mb-3 {
    margin-bottom: 0.75rem !important;
  }
  .lg\:ml-3 {
    margin-left: 0.75rem !important;
  }
  .lg\:mx-3 {
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
  }
  .lg\:my-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:m-3 {
    margin: 0.75rem !important;
  }
  .xl\:mt-3 {
    margin-top: 0.75rem !important;
  }
  .xl\:mr-3 {
    margin-right: 0.75rem !important;
  }
  .xl\:mb-3 {
    margin-bottom: 0.75rem !important;
  }
  .xl\:ml-3 {
    margin-left: 0.75rem !important;
  }
  .xl\:mx-3 {
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
  }
  .xl\:my-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
}
.m-3-5 {
  margin: 0.875rem !important;
}

.mt-3-5 {
  margin-top: 0.875rem !important;
}

.mr-3-5 {
  margin-right: 0.875rem !important;
}

.mb-3-5 {
  margin-bottom: 0.875rem !important;
}

.ml-3-5 {
  margin-left: 0.875rem !important;
}

.mx-3-5 {
  margin-left: 0.875rem !important;
  margin-right: 0.875rem !important;
}

.my-3-5 {
  margin-top: 0.875rem !important;
  margin-bottom: 0.875rem !important;
}

@media (min-width: 640px) {
  .sm\:m-3-5 {
    margin: 0.875rem !important;
  }
  .sm\:mt-3-5 {
    margin-top: 0.875rem !important;
  }
  .sm\:mr-3-5 {
    margin-right: 0.875rem !important;
  }
  .sm\:mb-3-5 {
    margin-bottom: 0.875rem !important;
  }
  .sm\:ml-3-5 {
    margin-left: 0.875rem !important;
  }
  .sm\:mx-3-5 {
    margin-left: 0.875rem !important;
    margin-right: 0.875rem !important;
  }
  .sm\:my-3-5 {
    margin-top: 0.875rem !important;
    margin-bottom: 0.875rem !important;
  }
}
@media (min-width: 768px) {
  .md\:m-3-5 {
    margin: 0.875rem !important;
  }
  .md\:mt-3-5 {
    margin-top: 0.875rem !important;
  }
  .md\:mr-3-5 {
    margin-right: 0.875rem !important;
  }
  .md\:mb-3-5 {
    margin-bottom: 0.875rem !important;
  }
  .md\:ml-3-5 {
    margin-left: 0.875rem !important;
  }
  .md\:mx-3-5 {
    margin-left: 0.875rem !important;
    margin-right: 0.875rem !important;
  }
  .md\:my-3-5 {
    margin-top: 0.875rem !important;
    margin-bottom: 0.875rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:m-3-5 {
    margin: 0.875rem !important;
  }
  .lg\:mt-3-5 {
    margin-top: 0.875rem !important;
  }
  .lg\:mr-3-5 {
    margin-right: 0.875rem !important;
  }
  .lg\:mb-3-5 {
    margin-bottom: 0.875rem !important;
  }
  .lg\:ml-3-5 {
    margin-left: 0.875rem !important;
  }
  .lg\:mx-3-5 {
    margin-left: 0.875rem !important;
    margin-right: 0.875rem !important;
  }
  .lg\:my-3-5 {
    margin-top: 0.875rem !important;
    margin-bottom: 0.875rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:m-3-5 {
    margin: 0.875rem !important;
  }
  .xl\:mt-3-5 {
    margin-top: 0.875rem !important;
  }
  .xl\:mr-3-5 {
    margin-right: 0.875rem !important;
  }
  .xl\:mb-3-5 {
    margin-bottom: 0.875rem !important;
  }
  .xl\:ml-3-5 {
    margin-left: 0.875rem !important;
  }
  .xl\:mx-3-5 {
    margin-left: 0.875rem !important;
    margin-right: 0.875rem !important;
  }
  .xl\:my-3-5 {
    margin-top: 0.875rem !important;
    margin-bottom: 0.875rem !important;
  }
}
.m-4 {
  margin: 1rem !important;
}

.mt-4 {
  margin-top: 1rem !important;
}

.mr-4 {
  margin-right: 1rem !important;
}

.mb-4 {
  margin-bottom: 1rem !important;
}

.ml-4 {
  margin-left: 1rem !important;
}

.mx-4 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.my-4 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

@media (min-width: 640px) {
  .sm\:m-4 {
    margin: 1rem !important;
  }
  .sm\:mt-4 {
    margin-top: 1rem !important;
  }
  .sm\:mr-4 {
    margin-right: 1rem !important;
  }
  .sm\:mb-4 {
    margin-bottom: 1rem !important;
  }
  .sm\:ml-4 {
    margin-left: 1rem !important;
  }
  .sm\:mx-4 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .sm\:my-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
}
@media (min-width: 768px) {
  .md\:m-4 {
    margin: 1rem !important;
  }
  .md\:mt-4 {
    margin-top: 1rem !important;
  }
  .md\:mr-4 {
    margin-right: 1rem !important;
  }
  .md\:mb-4 {
    margin-bottom: 1rem !important;
  }
  .md\:ml-4 {
    margin-left: 1rem !important;
  }
  .md\:mx-4 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .md\:my-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:m-4 {
    margin: 1rem !important;
  }
  .lg\:mt-4 {
    margin-top: 1rem !important;
  }
  .lg\:mr-4 {
    margin-right: 1rem !important;
  }
  .lg\:mb-4 {
    margin-bottom: 1rem !important;
  }
  .lg\:ml-4 {
    margin-left: 1rem !important;
  }
  .lg\:mx-4 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .lg\:my-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:m-4 {
    margin: 1rem !important;
  }
  .xl\:mt-4 {
    margin-top: 1rem !important;
  }
  .xl\:mr-4 {
    margin-right: 1rem !important;
  }
  .xl\:mb-4 {
    margin-bottom: 1rem !important;
  }
  .xl\:ml-4 {
    margin-left: 1rem !important;
  }
  .xl\:mx-4 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .xl\:my-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
}
.m-5 {
  margin: 1.25rem !important;
}

.mt-5 {
  margin-top: 1.25rem !important;
}

.mr-5 {
  margin-right: 1.25rem !important;
}

.mb-5 {
  margin-bottom: 1.25rem !important;
}

.ml-5 {
  margin-left: 1.25rem !important;
}

.mx-5 {
  margin-left: 1.25rem !important;
  margin-right: 1.25rem !important;
}

.my-5 {
  margin-top: 1.25rem !important;
  margin-bottom: 1.25rem !important;
}

@media (min-width: 640px) {
  .sm\:m-5 {
    margin: 1.25rem !important;
  }
  .sm\:mt-5 {
    margin-top: 1.25rem !important;
  }
  .sm\:mr-5 {
    margin-right: 1.25rem !important;
  }
  .sm\:mb-5 {
    margin-bottom: 1.25rem !important;
  }
  .sm\:ml-5 {
    margin-left: 1.25rem !important;
  }
  .sm\:mx-5 {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }
  .sm\:my-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
}
@media (min-width: 768px) {
  .md\:m-5 {
    margin: 1.25rem !important;
  }
  .md\:mt-5 {
    margin-top: 1.25rem !important;
  }
  .md\:mr-5 {
    margin-right: 1.25rem !important;
  }
  .md\:mb-5 {
    margin-bottom: 1.25rem !important;
  }
  .md\:ml-5 {
    margin-left: 1.25rem !important;
  }
  .md\:mx-5 {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }
  .md\:my-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:m-5 {
    margin: 1.25rem !important;
  }
  .lg\:mt-5 {
    margin-top: 1.25rem !important;
  }
  .lg\:mr-5 {
    margin-right: 1.25rem !important;
  }
  .lg\:mb-5 {
    margin-bottom: 1.25rem !important;
  }
  .lg\:ml-5 {
    margin-left: 1.25rem !important;
  }
  .lg\:mx-5 {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }
  .lg\:my-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:m-5 {
    margin: 1.25rem !important;
  }
  .xl\:mt-5 {
    margin-top: 1.25rem !important;
  }
  .xl\:mr-5 {
    margin-right: 1.25rem !important;
  }
  .xl\:mb-5 {
    margin-bottom: 1.25rem !important;
  }
  .xl\:ml-5 {
    margin-left: 1.25rem !important;
  }
  .xl\:mx-5 {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }
  .xl\:my-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
}
.m-6 {
  margin: 1.5rem !important;
}

.mt-6 {
  margin-top: 1.5rem !important;
}

.mr-6 {
  margin-right: 1.5rem !important;
}

.mb-6 {
  margin-bottom: 1.5rem !important;
}

.ml-6 {
  margin-left: 1.5rem !important;
}

.mx-6 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

.my-6 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

@media (min-width: 640px) {
  .sm\:m-6 {
    margin: 1.5rem !important;
  }
  .sm\:mt-6 {
    margin-top: 1.5rem !important;
  }
  .sm\:mr-6 {
    margin-right: 1.5rem !important;
  }
  .sm\:mb-6 {
    margin-bottom: 1.5rem !important;
  }
  .sm\:ml-6 {
    margin-left: 1.5rem !important;
  }
  .sm\:mx-6 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .sm\:my-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
}
@media (min-width: 768px) {
  .md\:m-6 {
    margin: 1.5rem !important;
  }
  .md\:mt-6 {
    margin-top: 1.5rem !important;
  }
  .md\:mr-6 {
    margin-right: 1.5rem !important;
  }
  .md\:mb-6 {
    margin-bottom: 1.5rem !important;
  }
  .md\:ml-6 {
    margin-left: 1.5rem !important;
  }
  .md\:mx-6 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .md\:my-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:m-6 {
    margin: 1.5rem !important;
  }
  .lg\:mt-6 {
    margin-top: 1.5rem !important;
  }
  .lg\:mr-6 {
    margin-right: 1.5rem !important;
  }
  .lg\:mb-6 {
    margin-bottom: 1.5rem !important;
  }
  .lg\:ml-6 {
    margin-left: 1.5rem !important;
  }
  .lg\:mx-6 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .lg\:my-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:m-6 {
    margin: 1.5rem !important;
  }
  .xl\:mt-6 {
    margin-top: 1.5rem !important;
  }
  .xl\:mr-6 {
    margin-right: 1.5rem !important;
  }
  .xl\:mb-6 {
    margin-bottom: 1.5rem !important;
  }
  .xl\:ml-6 {
    margin-left: 1.5rem !important;
  }
  .xl\:mx-6 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .xl\:my-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
}
.m-7 {
  margin: 1.75rem !important;
}

.mt-7 {
  margin-top: 1.75rem !important;
}

.mr-7 {
  margin-right: 1.75rem !important;
}

.mb-7 {
  margin-bottom: 1.75rem !important;
}

.ml-7 {
  margin-left: 1.75rem !important;
}

.mx-7 {
  margin-left: 1.75rem !important;
  margin-right: 1.75rem !important;
}

.my-7 {
  margin-top: 1.75rem !important;
  margin-bottom: 1.75rem !important;
}

@media (min-width: 640px) {
  .sm\:m-7 {
    margin: 1.75rem !important;
  }
  .sm\:mt-7 {
    margin-top: 1.75rem !important;
  }
  .sm\:mr-7 {
    margin-right: 1.75rem !important;
  }
  .sm\:mb-7 {
    margin-bottom: 1.75rem !important;
  }
  .sm\:ml-7 {
    margin-left: 1.75rem !important;
  }
  .sm\:mx-7 {
    margin-left: 1.75rem !important;
    margin-right: 1.75rem !important;
  }
  .sm\:my-7 {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }
}
@media (min-width: 768px) {
  .md\:m-7 {
    margin: 1.75rem !important;
  }
  .md\:mt-7 {
    margin-top: 1.75rem !important;
  }
  .md\:mr-7 {
    margin-right: 1.75rem !important;
  }
  .md\:mb-7 {
    margin-bottom: 1.75rem !important;
  }
  .md\:ml-7 {
    margin-left: 1.75rem !important;
  }
  .md\:mx-7 {
    margin-left: 1.75rem !important;
    margin-right: 1.75rem !important;
  }
  .md\:my-7 {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:m-7 {
    margin: 1.75rem !important;
  }
  .lg\:mt-7 {
    margin-top: 1.75rem !important;
  }
  .lg\:mr-7 {
    margin-right: 1.75rem !important;
  }
  .lg\:mb-7 {
    margin-bottom: 1.75rem !important;
  }
  .lg\:ml-7 {
    margin-left: 1.75rem !important;
  }
  .lg\:mx-7 {
    margin-left: 1.75rem !important;
    margin-right: 1.75rem !important;
  }
  .lg\:my-7 {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:m-7 {
    margin: 1.75rem !important;
  }
  .xl\:mt-7 {
    margin-top: 1.75rem !important;
  }
  .xl\:mr-7 {
    margin-right: 1.75rem !important;
  }
  .xl\:mb-7 {
    margin-bottom: 1.75rem !important;
  }
  .xl\:ml-7 {
    margin-left: 1.75rem !important;
  }
  .xl\:mx-7 {
    margin-left: 1.75rem !important;
    margin-right: 1.75rem !important;
  }
  .xl\:my-7 {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }
}
.m-8 {
  margin: 2rem !important;
}

.mt-8 {
  margin-top: 2rem !important;
}

.mr-8 {
  margin-right: 2rem !important;
}

.mb-8 {
  margin-bottom: 2rem !important;
}

.ml-8 {
  margin-left: 2rem !important;
}

.mx-8 {
  margin-left: 2rem !important;
  margin-right: 2rem !important;
}

.my-8 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

@media (min-width: 640px) {
  .sm\:m-8 {
    margin: 2rem !important;
  }
  .sm\:mt-8 {
    margin-top: 2rem !important;
  }
  .sm\:mr-8 {
    margin-right: 2rem !important;
  }
  .sm\:mb-8 {
    margin-bottom: 2rem !important;
  }
  .sm\:ml-8 {
    margin-left: 2rem !important;
  }
  .sm\:mx-8 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .sm\:my-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
}
@media (min-width: 768px) {
  .md\:m-8 {
    margin: 2rem !important;
  }
  .md\:mt-8 {
    margin-top: 2rem !important;
  }
  .md\:mr-8 {
    margin-right: 2rem !important;
  }
  .md\:mb-8 {
    margin-bottom: 2rem !important;
  }
  .md\:ml-8 {
    margin-left: 2rem !important;
  }
  .md\:mx-8 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .md\:my-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:m-8 {
    margin: 2rem !important;
  }
  .lg\:mt-8 {
    margin-top: 2rem !important;
  }
  .lg\:mr-8 {
    margin-right: 2rem !important;
  }
  .lg\:mb-8 {
    margin-bottom: 2rem !important;
  }
  .lg\:ml-8 {
    margin-left: 2rem !important;
  }
  .lg\:mx-8 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .lg\:my-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:m-8 {
    margin: 2rem !important;
  }
  .xl\:mt-8 {
    margin-top: 2rem !important;
  }
  .xl\:mr-8 {
    margin-right: 2rem !important;
  }
  .xl\:mb-8 {
    margin-bottom: 2rem !important;
  }
  .xl\:ml-8 {
    margin-left: 2rem !important;
  }
  .xl\:mx-8 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .xl\:my-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
}
.m-9 {
  margin: 2.25rem !important;
}

.mt-9 {
  margin-top: 2.25rem !important;
}

.mr-9 {
  margin-right: 2.25rem !important;
}

.mb-9 {
  margin-bottom: 2.25rem !important;
}

.ml-9 {
  margin-left: 2.25rem !important;
}

.mx-9 {
  margin-left: 2.25rem !important;
  margin-right: 2.25rem !important;
}

.my-9 {
  margin-top: 2.25rem !important;
  margin-bottom: 2.25rem !important;
}

@media (min-width: 640px) {
  .sm\:m-9 {
    margin: 2.25rem !important;
  }
  .sm\:mt-9 {
    margin-top: 2.25rem !important;
  }
  .sm\:mr-9 {
    margin-right: 2.25rem !important;
  }
  .sm\:mb-9 {
    margin-bottom: 2.25rem !important;
  }
  .sm\:ml-9 {
    margin-left: 2.25rem !important;
  }
  .sm\:mx-9 {
    margin-left: 2.25rem !important;
    margin-right: 2.25rem !important;
  }
  .sm\:my-9 {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }
}
@media (min-width: 768px) {
  .md\:m-9 {
    margin: 2.25rem !important;
  }
  .md\:mt-9 {
    margin-top: 2.25rem !important;
  }
  .md\:mr-9 {
    margin-right: 2.25rem !important;
  }
  .md\:mb-9 {
    margin-bottom: 2.25rem !important;
  }
  .md\:ml-9 {
    margin-left: 2.25rem !important;
  }
  .md\:mx-9 {
    margin-left: 2.25rem !important;
    margin-right: 2.25rem !important;
  }
  .md\:my-9 {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:m-9 {
    margin: 2.25rem !important;
  }
  .lg\:mt-9 {
    margin-top: 2.25rem !important;
  }
  .lg\:mr-9 {
    margin-right: 2.25rem !important;
  }
  .lg\:mb-9 {
    margin-bottom: 2.25rem !important;
  }
  .lg\:ml-9 {
    margin-left: 2.25rem !important;
  }
  .lg\:mx-9 {
    margin-left: 2.25rem !important;
    margin-right: 2.25rem !important;
  }
  .lg\:my-9 {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:m-9 {
    margin: 2.25rem !important;
  }
  .xl\:mt-9 {
    margin-top: 2.25rem !important;
  }
  .xl\:mr-9 {
    margin-right: 2.25rem !important;
  }
  .xl\:mb-9 {
    margin-bottom: 2.25rem !important;
  }
  .xl\:ml-9 {
    margin-left: 2.25rem !important;
  }
  .xl\:mx-9 {
    margin-left: 2.25rem !important;
    margin-right: 2.25rem !important;
  }
  .xl\:my-9 {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }
}
.m-10 {
  margin: 2.5rem !important;
}

.mt-10 {
  margin-top: 2.5rem !important;
}

.mr-10 {
  margin-right: 2.5rem !important;
}

.mb-10 {
  margin-bottom: 2.5rem !important;
}

.ml-10 {
  margin-left: 2.5rem !important;
}

.mx-10 {
  margin-left: 2.5rem !important;
  margin-right: 2.5rem !important;
}

.my-10 {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
}

@media (min-width: 640px) {
  .sm\:m-10 {
    margin: 2.5rem !important;
  }
  .sm\:mt-10 {
    margin-top: 2.5rem !important;
  }
  .sm\:mr-10 {
    margin-right: 2.5rem !important;
  }
  .sm\:mb-10 {
    margin-bottom: 2.5rem !important;
  }
  .sm\:ml-10 {
    margin-left: 2.5rem !important;
  }
  .sm\:mx-10 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
  .sm\:my-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
}
@media (min-width: 768px) {
  .md\:m-10 {
    margin: 2.5rem !important;
  }
  .md\:mt-10 {
    margin-top: 2.5rem !important;
  }
  .md\:mr-10 {
    margin-right: 2.5rem !important;
  }
  .md\:mb-10 {
    margin-bottom: 2.5rem !important;
  }
  .md\:ml-10 {
    margin-left: 2.5rem !important;
  }
  .md\:mx-10 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
  .md\:my-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:m-10 {
    margin: 2.5rem !important;
  }
  .lg\:mt-10 {
    margin-top: 2.5rem !important;
  }
  .lg\:mr-10 {
    margin-right: 2.5rem !important;
  }
  .lg\:mb-10 {
    margin-bottom: 2.5rem !important;
  }
  .lg\:ml-10 {
    margin-left: 2.5rem !important;
  }
  .lg\:mx-10 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
  .lg\:my-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:m-10 {
    margin: 2.5rem !important;
  }
  .xl\:mt-10 {
    margin-top: 2.5rem !important;
  }
  .xl\:mr-10 {
    margin-right: 2.5rem !important;
  }
  .xl\:mb-10 {
    margin-bottom: 2.5rem !important;
  }
  .xl\:ml-10 {
    margin-left: 2.5rem !important;
  }
  .xl\:mx-10 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
  .xl\:my-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
}
.m-12 {
  margin: 3rem !important;
}

.mt-12 {
  margin-top: 3rem !important;
}

.mr-12 {
  margin-right: 3rem !important;
}

.mb-12 {
  margin-bottom: 3rem !important;
}

.ml-12 {
  margin-left: 3rem !important;
}

.mx-12 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

.my-12 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

@media (min-width: 640px) {
  .sm\:m-12 {
    margin: 3rem !important;
  }
  .sm\:mt-12 {
    margin-top: 3rem !important;
  }
  .sm\:mr-12 {
    margin-right: 3rem !important;
  }
  .sm\:mb-12 {
    margin-bottom: 3rem !important;
  }
  .sm\:ml-12 {
    margin-left: 3rem !important;
  }
  .sm\:mx-12 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .sm\:my-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
}
@media (min-width: 768px) {
  .md\:m-12 {
    margin: 3rem !important;
  }
  .md\:mt-12 {
    margin-top: 3rem !important;
  }
  .md\:mr-12 {
    margin-right: 3rem !important;
  }
  .md\:mb-12 {
    margin-bottom: 3rem !important;
  }
  .md\:ml-12 {
    margin-left: 3rem !important;
  }
  .md\:mx-12 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .md\:my-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:m-12 {
    margin: 3rem !important;
  }
  .lg\:mt-12 {
    margin-top: 3rem !important;
  }
  .lg\:mr-12 {
    margin-right: 3rem !important;
  }
  .lg\:mb-12 {
    margin-bottom: 3rem !important;
  }
  .lg\:ml-12 {
    margin-left: 3rem !important;
  }
  .lg\:mx-12 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .lg\:my-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:m-12 {
    margin: 3rem !important;
  }
  .xl\:mt-12 {
    margin-top: 3rem !important;
  }
  .xl\:mr-12 {
    margin-right: 3rem !important;
  }
  .xl\:mb-12 {
    margin-bottom: 3rem !important;
  }
  .xl\:ml-12 {
    margin-left: 3rem !important;
  }
  .xl\:mx-12 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .xl\:my-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
}
.m-14 {
  margin: 3.5rem !important;
}

.mt-14 {
  margin-top: 3.5rem !important;
}

.mr-14 {
  margin-right: 3.5rem !important;
}

.mb-14 {
  margin-bottom: 3.5rem !important;
}

.ml-14 {
  margin-left: 3.5rem !important;
}

.mx-14 {
  margin-left: 3.5rem !important;
  margin-right: 3.5rem !important;
}

.my-14 {
  margin-top: 3.5rem !important;
  margin-bottom: 3.5rem !important;
}

@media (min-width: 640px) {
  .sm\:m-14 {
    margin: 3.5rem !important;
  }
  .sm\:mt-14 {
    margin-top: 3.5rem !important;
  }
  .sm\:mr-14 {
    margin-right: 3.5rem !important;
  }
  .sm\:mb-14 {
    margin-bottom: 3.5rem !important;
  }
  .sm\:ml-14 {
    margin-left: 3.5rem !important;
  }
  .sm\:mx-14 {
    margin-left: 3.5rem !important;
    margin-right: 3.5rem !important;
  }
  .sm\:my-14 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
}
@media (min-width: 768px) {
  .md\:m-14 {
    margin: 3.5rem !important;
  }
  .md\:mt-14 {
    margin-top: 3.5rem !important;
  }
  .md\:mr-14 {
    margin-right: 3.5rem !important;
  }
  .md\:mb-14 {
    margin-bottom: 3.5rem !important;
  }
  .md\:ml-14 {
    margin-left: 3.5rem !important;
  }
  .md\:mx-14 {
    margin-left: 3.5rem !important;
    margin-right: 3.5rem !important;
  }
  .md\:my-14 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:m-14 {
    margin: 3.5rem !important;
  }
  .lg\:mt-14 {
    margin-top: 3.5rem !important;
  }
  .lg\:mr-14 {
    margin-right: 3.5rem !important;
  }
  .lg\:mb-14 {
    margin-bottom: 3.5rem !important;
  }
  .lg\:ml-14 {
    margin-left: 3.5rem !important;
  }
  .lg\:mx-14 {
    margin-left: 3.5rem !important;
    margin-right: 3.5rem !important;
  }
  .lg\:my-14 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:m-14 {
    margin: 3.5rem !important;
  }
  .xl\:mt-14 {
    margin-top: 3.5rem !important;
  }
  .xl\:mr-14 {
    margin-right: 3.5rem !important;
  }
  .xl\:mb-14 {
    margin-bottom: 3.5rem !important;
  }
  .xl\:ml-14 {
    margin-left: 3.5rem !important;
  }
  .xl\:mx-14 {
    margin-left: 3.5rem !important;
    margin-right: 3.5rem !important;
  }
  .xl\:my-14 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
}
.m-16 {
  margin: 4rem !important;
}

.mt-16 {
  margin-top: 4rem !important;
}

.mr-16 {
  margin-right: 4rem !important;
}

.mb-16 {
  margin-bottom: 4rem !important;
}

.ml-16 {
  margin-left: 4rem !important;
}

.mx-16 {
  margin-left: 4rem !important;
  margin-right: 4rem !important;
}

.my-16 {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}

@media (min-width: 640px) {
  .sm\:m-16 {
    margin: 4rem !important;
  }
  .sm\:mt-16 {
    margin-top: 4rem !important;
  }
  .sm\:mr-16 {
    margin-right: 4rem !important;
  }
  .sm\:mb-16 {
    margin-bottom: 4rem !important;
  }
  .sm\:ml-16 {
    margin-left: 4rem !important;
  }
  .sm\:mx-16 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .sm\:my-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
}
@media (min-width: 768px) {
  .md\:m-16 {
    margin: 4rem !important;
  }
  .md\:mt-16 {
    margin-top: 4rem !important;
  }
  .md\:mr-16 {
    margin-right: 4rem !important;
  }
  .md\:mb-16 {
    margin-bottom: 4rem !important;
  }
  .md\:ml-16 {
    margin-left: 4rem !important;
  }
  .md\:mx-16 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .md\:my-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:m-16 {
    margin: 4rem !important;
  }
  .lg\:mt-16 {
    margin-top: 4rem !important;
  }
  .lg\:mr-16 {
    margin-right: 4rem !important;
  }
  .lg\:mb-16 {
    margin-bottom: 4rem !important;
  }
  .lg\:ml-16 {
    margin-left: 4rem !important;
  }
  .lg\:mx-16 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .lg\:my-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:m-16 {
    margin: 4rem !important;
  }
  .xl\:mt-16 {
    margin-top: 4rem !important;
  }
  .xl\:mr-16 {
    margin-right: 4rem !important;
  }
  .xl\:mb-16 {
    margin-bottom: 4rem !important;
  }
  .xl\:ml-16 {
    margin-left: 4rem !important;
  }
  .xl\:mx-16 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .xl\:my-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
}
.m-20 {
  margin: 5rem !important;
}

.mt-20 {
  margin-top: 5rem !important;
}

.mr-20 {
  margin-right: 5rem !important;
}

.mb-20 {
  margin-bottom: 5rem !important;
}

.ml-20 {
  margin-left: 5rem !important;
}

.mx-20 {
  margin-left: 5rem !important;
  margin-right: 5rem !important;
}

.my-20 {
  margin-top: 5rem !important;
  margin-bottom: 5rem !important;
}

@media (min-width: 640px) {
  .sm\:m-20 {
    margin: 5rem !important;
  }
  .sm\:mt-20 {
    margin-top: 5rem !important;
  }
  .sm\:mr-20 {
    margin-right: 5rem !important;
  }
  .sm\:mb-20 {
    margin-bottom: 5rem !important;
  }
  .sm\:ml-20 {
    margin-left: 5rem !important;
  }
  .sm\:mx-20 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
  .sm\:my-20 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
}
@media (min-width: 768px) {
  .md\:m-20 {
    margin: 5rem !important;
  }
  .md\:mt-20 {
    margin-top: 5rem !important;
  }
  .md\:mr-20 {
    margin-right: 5rem !important;
  }
  .md\:mb-20 {
    margin-bottom: 5rem !important;
  }
  .md\:ml-20 {
    margin-left: 5rem !important;
  }
  .md\:mx-20 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
  .md\:my-20 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:m-20 {
    margin: 5rem !important;
  }
  .lg\:mt-20 {
    margin-top: 5rem !important;
  }
  .lg\:mr-20 {
    margin-right: 5rem !important;
  }
  .lg\:mb-20 {
    margin-bottom: 5rem !important;
  }
  .lg\:ml-20 {
    margin-left: 5rem !important;
  }
  .lg\:mx-20 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
  .lg\:my-20 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:m-20 {
    margin: 5rem !important;
  }
  .xl\:mt-20 {
    margin-top: 5rem !important;
  }
  .xl\:mr-20 {
    margin-right: 5rem !important;
  }
  .xl\:mb-20 {
    margin-bottom: 5rem !important;
  }
  .xl\:ml-20 {
    margin-left: 5rem !important;
  }
  .xl\:mx-20 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
  .xl\:my-20 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
}
.m-24 {
  margin: 6rem !important;
}

.mt-24 {
  margin-top: 6rem !important;
}

.mr-24 {
  margin-right: 6rem !important;
}

.mb-24 {
  margin-bottom: 6rem !important;
}

.ml-24 {
  margin-left: 6rem !important;
}

.mx-24 {
  margin-left: 6rem !important;
  margin-right: 6rem !important;
}

.my-24 {
  margin-top: 6rem !important;
  margin-bottom: 6rem !important;
}

@media (min-width: 640px) {
  .sm\:m-24 {
    margin: 6rem !important;
  }
  .sm\:mt-24 {
    margin-top: 6rem !important;
  }
  .sm\:mr-24 {
    margin-right: 6rem !important;
  }
  .sm\:mb-24 {
    margin-bottom: 6rem !important;
  }
  .sm\:ml-24 {
    margin-left: 6rem !important;
  }
  .sm\:mx-24 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }
  .sm\:my-24 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
}
@media (min-width: 768px) {
  .md\:m-24 {
    margin: 6rem !important;
  }
  .md\:mt-24 {
    margin-top: 6rem !important;
  }
  .md\:mr-24 {
    margin-right: 6rem !important;
  }
  .md\:mb-24 {
    margin-bottom: 6rem !important;
  }
  .md\:ml-24 {
    margin-left: 6rem !important;
  }
  .md\:mx-24 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }
  .md\:my-24 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:m-24 {
    margin: 6rem !important;
  }
  .lg\:mt-24 {
    margin-top: 6rem !important;
  }
  .lg\:mr-24 {
    margin-right: 6rem !important;
  }
  .lg\:mb-24 {
    margin-bottom: 6rem !important;
  }
  .lg\:ml-24 {
    margin-left: 6rem !important;
  }
  .lg\:mx-24 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }
  .lg\:my-24 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:m-24 {
    margin: 6rem !important;
  }
  .xl\:mt-24 {
    margin-top: 6rem !important;
  }
  .xl\:mr-24 {
    margin-right: 6rem !important;
  }
  .xl\:mb-24 {
    margin-bottom: 6rem !important;
  }
  .xl\:ml-24 {
    margin-left: 6rem !important;
  }
  .xl\:mx-24 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }
  .xl\:my-24 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
}
.m-28 {
  margin: 7rem !important;
}

.mt-28 {
  margin-top: 7rem !important;
}

.mr-28 {
  margin-right: 7rem !important;
}

.mb-28 {
  margin-bottom: 7rem !important;
}

.ml-28 {
  margin-left: 7rem !important;
}

.mx-28 {
  margin-left: 7rem !important;
  margin-right: 7rem !important;
}

.my-28 {
  margin-top: 7rem !important;
  margin-bottom: 7rem !important;
}

@media (min-width: 640px) {
  .sm\:m-28 {
    margin: 7rem !important;
  }
  .sm\:mt-28 {
    margin-top: 7rem !important;
  }
  .sm\:mr-28 {
    margin-right: 7rem !important;
  }
  .sm\:mb-28 {
    margin-bottom: 7rem !important;
  }
  .sm\:ml-28 {
    margin-left: 7rem !important;
  }
  .sm\:mx-28 {
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }
  .sm\:my-28 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
}
@media (min-width: 768px) {
  .md\:m-28 {
    margin: 7rem !important;
  }
  .md\:mt-28 {
    margin-top: 7rem !important;
  }
  .md\:mr-28 {
    margin-right: 7rem !important;
  }
  .md\:mb-28 {
    margin-bottom: 7rem !important;
  }
  .md\:ml-28 {
    margin-left: 7rem !important;
  }
  .md\:mx-28 {
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }
  .md\:my-28 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:m-28 {
    margin: 7rem !important;
  }
  .lg\:mt-28 {
    margin-top: 7rem !important;
  }
  .lg\:mr-28 {
    margin-right: 7rem !important;
  }
  .lg\:mb-28 {
    margin-bottom: 7rem !important;
  }
  .lg\:ml-28 {
    margin-left: 7rem !important;
  }
  .lg\:mx-28 {
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }
  .lg\:my-28 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:m-28 {
    margin: 7rem !important;
  }
  .xl\:mt-28 {
    margin-top: 7rem !important;
  }
  .xl\:mr-28 {
    margin-right: 7rem !important;
  }
  .xl\:mb-28 {
    margin-bottom: 7rem !important;
  }
  .xl\:ml-28 {
    margin-left: 7rem !important;
  }
  .xl\:mx-28 {
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }
  .xl\:my-28 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
}
.m-32 {
  margin: 8rem !important;
}

.mt-32 {
  margin-top: 8rem !important;
}

.mr-32 {
  margin-right: 8rem !important;
}

.mb-32 {
  margin-bottom: 8rem !important;
}

.ml-32 {
  margin-left: 8rem !important;
}

.mx-32 {
  margin-left: 8rem !important;
  margin-right: 8rem !important;
}

.my-32 {
  margin-top: 8rem !important;
  margin-bottom: 8rem !important;
}

@media (min-width: 640px) {
  .sm\:m-32 {
    margin: 8rem !important;
  }
  .sm\:mt-32 {
    margin-top: 8rem !important;
  }
  .sm\:mr-32 {
    margin-right: 8rem !important;
  }
  .sm\:mb-32 {
    margin-bottom: 8rem !important;
  }
  .sm\:ml-32 {
    margin-left: 8rem !important;
  }
  .sm\:mx-32 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }
  .sm\:my-32 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
}
@media (min-width: 768px) {
  .md\:m-32 {
    margin: 8rem !important;
  }
  .md\:mt-32 {
    margin-top: 8rem !important;
  }
  .md\:mr-32 {
    margin-right: 8rem !important;
  }
  .md\:mb-32 {
    margin-bottom: 8rem !important;
  }
  .md\:ml-32 {
    margin-left: 8rem !important;
  }
  .md\:mx-32 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }
  .md\:my-32 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:m-32 {
    margin: 8rem !important;
  }
  .lg\:mt-32 {
    margin-top: 8rem !important;
  }
  .lg\:mr-32 {
    margin-right: 8rem !important;
  }
  .lg\:mb-32 {
    margin-bottom: 8rem !important;
  }
  .lg\:ml-32 {
    margin-left: 8rem !important;
  }
  .lg\:mx-32 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }
  .lg\:my-32 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:m-32 {
    margin: 8rem !important;
  }
  .xl\:mt-32 {
    margin-top: 8rem !important;
  }
  .xl\:mr-32 {
    margin-right: 8rem !important;
  }
  .xl\:mb-32 {
    margin-bottom: 8rem !important;
  }
  .xl\:ml-32 {
    margin-left: 8rem !important;
  }
  .xl\:mx-32 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }
  .xl\:my-32 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
}
.m-36 {
  margin: 9rem !important;
}

.mt-36 {
  margin-top: 9rem !important;
}

.mr-36 {
  margin-right: 9rem !important;
}

.mb-36 {
  margin-bottom: 9rem !important;
}

.ml-36 {
  margin-left: 9rem !important;
}

.mx-36 {
  margin-left: 9rem !important;
  margin-right: 9rem !important;
}

.my-36 {
  margin-top: 9rem !important;
  margin-bottom: 9rem !important;
}

@media (min-width: 640px) {
  .sm\:m-36 {
    margin: 9rem !important;
  }
  .sm\:mt-36 {
    margin-top: 9rem !important;
  }
  .sm\:mr-36 {
    margin-right: 9rem !important;
  }
  .sm\:mb-36 {
    margin-bottom: 9rem !important;
  }
  .sm\:ml-36 {
    margin-left: 9rem !important;
  }
  .sm\:mx-36 {
    margin-left: 9rem !important;
    margin-right: 9rem !important;
  }
  .sm\:my-36 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
}
@media (min-width: 768px) {
  .md\:m-36 {
    margin: 9rem !important;
  }
  .md\:mt-36 {
    margin-top: 9rem !important;
  }
  .md\:mr-36 {
    margin-right: 9rem !important;
  }
  .md\:mb-36 {
    margin-bottom: 9rem !important;
  }
  .md\:ml-36 {
    margin-left: 9rem !important;
  }
  .md\:mx-36 {
    margin-left: 9rem !important;
    margin-right: 9rem !important;
  }
  .md\:my-36 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:m-36 {
    margin: 9rem !important;
  }
  .lg\:mt-36 {
    margin-top: 9rem !important;
  }
  .lg\:mr-36 {
    margin-right: 9rem !important;
  }
  .lg\:mb-36 {
    margin-bottom: 9rem !important;
  }
  .lg\:ml-36 {
    margin-left: 9rem !important;
  }
  .lg\:mx-36 {
    margin-left: 9rem !important;
    margin-right: 9rem !important;
  }
  .lg\:my-36 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:m-36 {
    margin: 9rem !important;
  }
  .xl\:mt-36 {
    margin-top: 9rem !important;
  }
  .xl\:mr-36 {
    margin-right: 9rem !important;
  }
  .xl\:mb-36 {
    margin-bottom: 9rem !important;
  }
  .xl\:ml-36 {
    margin-left: 9rem !important;
  }
  .xl\:mx-36 {
    margin-left: 9rem !important;
    margin-right: 9rem !important;
  }
  .xl\:my-36 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
}
.m-40 {
  margin: 10rem !important;
}

.mt-40 {
  margin-top: 10rem !important;
}

.mr-40 {
  margin-right: 10rem !important;
}

.mb-40 {
  margin-bottom: 10rem !important;
}

.ml-40 {
  margin-left: 10rem !important;
}

.mx-40 {
  margin-left: 10rem !important;
  margin-right: 10rem !important;
}

.my-40 {
  margin-top: 10rem !important;
  margin-bottom: 10rem !important;
}

@media (min-width: 640px) {
  .sm\:m-40 {
    margin: 10rem !important;
  }
  .sm\:mt-40 {
    margin-top: 10rem !important;
  }
  .sm\:mr-40 {
    margin-right: 10rem !important;
  }
  .sm\:mb-40 {
    margin-bottom: 10rem !important;
  }
  .sm\:ml-40 {
    margin-left: 10rem !important;
  }
  .sm\:mx-40 {
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }
  .sm\:my-40 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
}
@media (min-width: 768px) {
  .md\:m-40 {
    margin: 10rem !important;
  }
  .md\:mt-40 {
    margin-top: 10rem !important;
  }
  .md\:mr-40 {
    margin-right: 10rem !important;
  }
  .md\:mb-40 {
    margin-bottom: 10rem !important;
  }
  .md\:ml-40 {
    margin-left: 10rem !important;
  }
  .md\:mx-40 {
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }
  .md\:my-40 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:m-40 {
    margin: 10rem !important;
  }
  .lg\:mt-40 {
    margin-top: 10rem !important;
  }
  .lg\:mr-40 {
    margin-right: 10rem !important;
  }
  .lg\:mb-40 {
    margin-bottom: 10rem !important;
  }
  .lg\:ml-40 {
    margin-left: 10rem !important;
  }
  .lg\:mx-40 {
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }
  .lg\:my-40 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:m-40 {
    margin: 10rem !important;
  }
  .xl\:mt-40 {
    margin-top: 10rem !important;
  }
  .xl\:mr-40 {
    margin-right: 10rem !important;
  }
  .xl\:mb-40 {
    margin-bottom: 10rem !important;
  }
  .xl\:ml-40 {
    margin-left: 10rem !important;
  }
  .xl\:mx-40 {
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }
  .xl\:my-40 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
}
.m-44 {
  margin: 11rem !important;
}

.mt-44 {
  margin-top: 11rem !important;
}

.mr-44 {
  margin-right: 11rem !important;
}

.mb-44 {
  margin-bottom: 11rem !important;
}

.ml-44 {
  margin-left: 11rem !important;
}

.mx-44 {
  margin-left: 11rem !important;
  margin-right: 11rem !important;
}

.my-44 {
  margin-top: 11rem !important;
  margin-bottom: 11rem !important;
}

@media (min-width: 640px) {
  .sm\:m-44 {
    margin: 11rem !important;
  }
  .sm\:mt-44 {
    margin-top: 11rem !important;
  }
  .sm\:mr-44 {
    margin-right: 11rem !important;
  }
  .sm\:mb-44 {
    margin-bottom: 11rem !important;
  }
  .sm\:ml-44 {
    margin-left: 11rem !important;
  }
  .sm\:mx-44 {
    margin-left: 11rem !important;
    margin-right: 11rem !important;
  }
  .sm\:my-44 {
    margin-top: 11rem !important;
    margin-bottom: 11rem !important;
  }
}
@media (min-width: 768px) {
  .md\:m-44 {
    margin: 11rem !important;
  }
  .md\:mt-44 {
    margin-top: 11rem !important;
  }
  .md\:mr-44 {
    margin-right: 11rem !important;
  }
  .md\:mb-44 {
    margin-bottom: 11rem !important;
  }
  .md\:ml-44 {
    margin-left: 11rem !important;
  }
  .md\:mx-44 {
    margin-left: 11rem !important;
    margin-right: 11rem !important;
  }
  .md\:my-44 {
    margin-top: 11rem !important;
    margin-bottom: 11rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:m-44 {
    margin: 11rem !important;
  }
  .lg\:mt-44 {
    margin-top: 11rem !important;
  }
  .lg\:mr-44 {
    margin-right: 11rem !important;
  }
  .lg\:mb-44 {
    margin-bottom: 11rem !important;
  }
  .lg\:ml-44 {
    margin-left: 11rem !important;
  }
  .lg\:mx-44 {
    margin-left: 11rem !important;
    margin-right: 11rem !important;
  }
  .lg\:my-44 {
    margin-top: 11rem !important;
    margin-bottom: 11rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:m-44 {
    margin: 11rem !important;
  }
  .xl\:mt-44 {
    margin-top: 11rem !important;
  }
  .xl\:mr-44 {
    margin-right: 11rem !important;
  }
  .xl\:mb-44 {
    margin-bottom: 11rem !important;
  }
  .xl\:ml-44 {
    margin-left: 11rem !important;
  }
  .xl\:mx-44 {
    margin-left: 11rem !important;
    margin-right: 11rem !important;
  }
  .xl\:my-44 {
    margin-top: 11rem !important;
    margin-bottom: 11rem !important;
  }
}
.m-48 {
  margin: 12rem !important;
}

.mt-48 {
  margin-top: 12rem !important;
}

.mr-48 {
  margin-right: 12rem !important;
}

.mb-48 {
  margin-bottom: 12rem !important;
}

.ml-48 {
  margin-left: 12rem !important;
}

.mx-48 {
  margin-left: 12rem !important;
  margin-right: 12rem !important;
}

.my-48 {
  margin-top: 12rem !important;
  margin-bottom: 12rem !important;
}

@media (min-width: 640px) {
  .sm\:m-48 {
    margin: 12rem !important;
  }
  .sm\:mt-48 {
    margin-top: 12rem !important;
  }
  .sm\:mr-48 {
    margin-right: 12rem !important;
  }
  .sm\:mb-48 {
    margin-bottom: 12rem !important;
  }
  .sm\:ml-48 {
    margin-left: 12rem !important;
  }
  .sm\:mx-48 {
    margin-left: 12rem !important;
    margin-right: 12rem !important;
  }
  .sm\:my-48 {
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }
}
@media (min-width: 768px) {
  .md\:m-48 {
    margin: 12rem !important;
  }
  .md\:mt-48 {
    margin-top: 12rem !important;
  }
  .md\:mr-48 {
    margin-right: 12rem !important;
  }
  .md\:mb-48 {
    margin-bottom: 12rem !important;
  }
  .md\:ml-48 {
    margin-left: 12rem !important;
  }
  .md\:mx-48 {
    margin-left: 12rem !important;
    margin-right: 12rem !important;
  }
  .md\:my-48 {
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:m-48 {
    margin: 12rem !important;
  }
  .lg\:mt-48 {
    margin-top: 12rem !important;
  }
  .lg\:mr-48 {
    margin-right: 12rem !important;
  }
  .lg\:mb-48 {
    margin-bottom: 12rem !important;
  }
  .lg\:ml-48 {
    margin-left: 12rem !important;
  }
  .lg\:mx-48 {
    margin-left: 12rem !important;
    margin-right: 12rem !important;
  }
  .lg\:my-48 {
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:m-48 {
    margin: 12rem !important;
  }
  .xl\:mt-48 {
    margin-top: 12rem !important;
  }
  .xl\:mr-48 {
    margin-right: 12rem !important;
  }
  .xl\:mb-48 {
    margin-bottom: 12rem !important;
  }
  .xl\:ml-48 {
    margin-left: 12rem !important;
  }
  .xl\:mx-48 {
    margin-left: 12rem !important;
    margin-right: 12rem !important;
  }
  .xl\:my-48 {
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }
}
.p-0 {
  padding: 0rem !important;
}

.pt-0 {
  padding-top: 0rem !important;
}

.pr-0 {
  padding-right: 0rem !important;
}

.pb-0 {
  padding-bottom: 0rem !important;
}

.pl-0 {
  padding-left: 0rem !important;
}

.px-0 {
  padding-left: 0rem !important;
  padding-right: 0rem !important;
}

.py-0 {
  padding-top: 0rem !important;
  padding-bottom: 0rem !important;
}

@media (min-width: 640px) {
  .sm\:p-0 {
    padding: 0rem !important;
  }
  .sm\:pt-0 {
    padding-top: 0rem !important;
  }
  .sm\:pr-0 {
    padding-right: 0rem !important;
  }
  .sm\:pb-0 {
    padding-bottom: 0rem !important;
  }
  .sm\:pl-0 {
    padding-left: 0rem !important;
  }
  .sm\:px-0 {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }
  .sm\:py-0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
}
@media (min-width: 768px) {
  .md\:p-0 {
    padding: 0rem !important;
  }
  .md\:pt-0 {
    padding-top: 0rem !important;
  }
  .md\:pr-0 {
    padding-right: 0rem !important;
  }
  .md\:pb-0 {
    padding-bottom: 0rem !important;
  }
  .md\:pl-0 {
    padding-left: 0rem !important;
  }
  .md\:px-0 {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }
  .md\:py-0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:p-0 {
    padding: 0rem !important;
  }
  .lg\:pt-0 {
    padding-top: 0rem !important;
  }
  .lg\:pr-0 {
    padding-right: 0rem !important;
  }
  .lg\:pb-0 {
    padding-bottom: 0rem !important;
  }
  .lg\:pl-0 {
    padding-left: 0rem !important;
  }
  .lg\:px-0 {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }
  .lg\:py-0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:p-0 {
    padding: 0rem !important;
  }
  .xl\:pt-0 {
    padding-top: 0rem !important;
  }
  .xl\:pr-0 {
    padding-right: 0rem !important;
  }
  .xl\:pb-0 {
    padding-bottom: 0rem !important;
  }
  .xl\:pl-0 {
    padding-left: 0rem !important;
  }
  .xl\:px-0 {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }
  .xl\:py-0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
}
.p-0-5 {
  padding: 0.125rem !important;
}

.pt-0-5 {
  padding-top: 0.125rem !important;
}

.pr-0-5 {
  padding-right: 0.125rem !important;
}

.pb-0-5 {
  padding-bottom: 0.125rem !important;
}

.pl-0-5 {
  padding-left: 0.125rem !important;
}

.px-0-5 {
  padding-left: 0.125rem !important;
  padding-right: 0.125rem !important;
}

.py-0-5 {
  padding-top: 0.125rem !important;
  padding-bottom: 0.125rem !important;
}

@media (min-width: 640px) {
  .sm\:p-0-5 {
    padding: 0.125rem !important;
  }
  .sm\:pt-0-5 {
    padding-top: 0.125rem !important;
  }
  .sm\:pr-0-5 {
    padding-right: 0.125rem !important;
  }
  .sm\:pb-0-5 {
    padding-bottom: 0.125rem !important;
  }
  .sm\:pl-0-5 {
    padding-left: 0.125rem !important;
  }
  .sm\:px-0-5 {
    padding-left: 0.125rem !important;
    padding-right: 0.125rem !important;
  }
  .sm\:py-0-5 {
    padding-top: 0.125rem !important;
    padding-bottom: 0.125rem !important;
  }
}
@media (min-width: 768px) {
  .md\:p-0-5 {
    padding: 0.125rem !important;
  }
  .md\:pt-0-5 {
    padding-top: 0.125rem !important;
  }
  .md\:pr-0-5 {
    padding-right: 0.125rem !important;
  }
  .md\:pb-0-5 {
    padding-bottom: 0.125rem !important;
  }
  .md\:pl-0-5 {
    padding-left: 0.125rem !important;
  }
  .md\:px-0-5 {
    padding-left: 0.125rem !important;
    padding-right: 0.125rem !important;
  }
  .md\:py-0-5 {
    padding-top: 0.125rem !important;
    padding-bottom: 0.125rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:p-0-5 {
    padding: 0.125rem !important;
  }
  .lg\:pt-0-5 {
    padding-top: 0.125rem !important;
  }
  .lg\:pr-0-5 {
    padding-right: 0.125rem !important;
  }
  .lg\:pb-0-5 {
    padding-bottom: 0.125rem !important;
  }
  .lg\:pl-0-5 {
    padding-left: 0.125rem !important;
  }
  .lg\:px-0-5 {
    padding-left: 0.125rem !important;
    padding-right: 0.125rem !important;
  }
  .lg\:py-0-5 {
    padding-top: 0.125rem !important;
    padding-bottom: 0.125rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:p-0-5 {
    padding: 0.125rem !important;
  }
  .xl\:pt-0-5 {
    padding-top: 0.125rem !important;
  }
  .xl\:pr-0-5 {
    padding-right: 0.125rem !important;
  }
  .xl\:pb-0-5 {
    padding-bottom: 0.125rem !important;
  }
  .xl\:pl-0-5 {
    padding-left: 0.125rem !important;
  }
  .xl\:px-0-5 {
    padding-left: 0.125rem !important;
    padding-right: 0.125rem !important;
  }
  .xl\:py-0-5 {
    padding-top: 0.125rem !important;
    padding-bottom: 0.125rem !important;
  }
}
.p-1 {
  padding: 0.25rem !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pr-1 {
  padding-right: 0.25rem !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1 {
  padding-left: 0.25rem !important;
}

.px-1 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

@media (min-width: 640px) {
  .sm\:p-1 {
    padding: 0.25rem !important;
  }
  .sm\:pt-1 {
    padding-top: 0.25rem !important;
  }
  .sm\:pr-1 {
    padding-right: 0.25rem !important;
  }
  .sm\:pb-1 {
    padding-bottom: 0.25rem !important;
  }
  .sm\:pl-1 {
    padding-left: 0.25rem !important;
  }
  .sm\:px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .sm\:py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
}
@media (min-width: 768px) {
  .md\:p-1 {
    padding: 0.25rem !important;
  }
  .md\:pt-1 {
    padding-top: 0.25rem !important;
  }
  .md\:pr-1 {
    padding-right: 0.25rem !important;
  }
  .md\:pb-1 {
    padding-bottom: 0.25rem !important;
  }
  .md\:pl-1 {
    padding-left: 0.25rem !important;
  }
  .md\:px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .md\:py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:p-1 {
    padding: 0.25rem !important;
  }
  .lg\:pt-1 {
    padding-top: 0.25rem !important;
  }
  .lg\:pr-1 {
    padding-right: 0.25rem !important;
  }
  .lg\:pb-1 {
    padding-bottom: 0.25rem !important;
  }
  .lg\:pl-1 {
    padding-left: 0.25rem !important;
  }
  .lg\:px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .lg\:py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:p-1 {
    padding: 0.25rem !important;
  }
  .xl\:pt-1 {
    padding-top: 0.25rem !important;
  }
  .xl\:pr-1 {
    padding-right: 0.25rem !important;
  }
  .xl\:pb-1 {
    padding-bottom: 0.25rem !important;
  }
  .xl\:pl-1 {
    padding-left: 0.25rem !important;
  }
  .xl\:px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .xl\:py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
}
.p-1-5 {
  padding: 0.375rem !important;
}

.pt-1-5 {
  padding-top: 0.375rem !important;
}

.pr-1-5 {
  padding-right: 0.375rem !important;
}

.pb-1-5 {
  padding-bottom: 0.375rem !important;
}

.pl-1-5 {
  padding-left: 0.375rem !important;
}

.px-1-5 {
  padding-left: 0.375rem !important;
  padding-right: 0.375rem !important;
}

.py-1-5 {
  padding-top: 0.375rem !important;
  padding-bottom: 0.375rem !important;
}

@media (min-width: 640px) {
  .sm\:p-1-5 {
    padding: 0.375rem !important;
  }
  .sm\:pt-1-5 {
    padding-top: 0.375rem !important;
  }
  .sm\:pr-1-5 {
    padding-right: 0.375rem !important;
  }
  .sm\:pb-1-5 {
    padding-bottom: 0.375rem !important;
  }
  .sm\:pl-1-5 {
    padding-left: 0.375rem !important;
  }
  .sm\:px-1-5 {
    padding-left: 0.375rem !important;
    padding-right: 0.375rem !important;
  }
  .sm\:py-1-5 {
    padding-top: 0.375rem !important;
    padding-bottom: 0.375rem !important;
  }
}
@media (min-width: 768px) {
  .md\:p-1-5 {
    padding: 0.375rem !important;
  }
  .md\:pt-1-5 {
    padding-top: 0.375rem !important;
  }
  .md\:pr-1-5 {
    padding-right: 0.375rem !important;
  }
  .md\:pb-1-5 {
    padding-bottom: 0.375rem !important;
  }
  .md\:pl-1-5 {
    padding-left: 0.375rem !important;
  }
  .md\:px-1-5 {
    padding-left: 0.375rem !important;
    padding-right: 0.375rem !important;
  }
  .md\:py-1-5 {
    padding-top: 0.375rem !important;
    padding-bottom: 0.375rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:p-1-5 {
    padding: 0.375rem !important;
  }
  .lg\:pt-1-5 {
    padding-top: 0.375rem !important;
  }
  .lg\:pr-1-5 {
    padding-right: 0.375rem !important;
  }
  .lg\:pb-1-5 {
    padding-bottom: 0.375rem !important;
  }
  .lg\:pl-1-5 {
    padding-left: 0.375rem !important;
  }
  .lg\:px-1-5 {
    padding-left: 0.375rem !important;
    padding-right: 0.375rem !important;
  }
  .lg\:py-1-5 {
    padding-top: 0.375rem !important;
    padding-bottom: 0.375rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:p-1-5 {
    padding: 0.375rem !important;
  }
  .xl\:pt-1-5 {
    padding-top: 0.375rem !important;
  }
  .xl\:pr-1-5 {
    padding-right: 0.375rem !important;
  }
  .xl\:pb-1-5 {
    padding-bottom: 0.375rem !important;
  }
  .xl\:pl-1-5 {
    padding-left: 0.375rem !important;
  }
  .xl\:px-1-5 {
    padding-left: 0.375rem !important;
    padding-right: 0.375rem !important;
  }
  .xl\:py-1-5 {
    padding-top: 0.375rem !important;
    padding-bottom: 0.375rem !important;
  }
}
.p-2 {
  padding: 0.5rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pr-2 {
  padding-right: 0.5rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2 {
  padding-left: 0.5rem !important;
}

.px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

@media (min-width: 640px) {
  .sm\:p-2 {
    padding: 0.5rem !important;
  }
  .sm\:pt-2 {
    padding-top: 0.5rem !important;
  }
  .sm\:pr-2 {
    padding-right: 0.5rem !important;
  }
  .sm\:pb-2 {
    padding-bottom: 0.5rem !important;
  }
  .sm\:pl-2 {
    padding-left: 0.5rem !important;
  }
  .sm\:px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .sm\:py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
}
@media (min-width: 768px) {
  .md\:p-2 {
    padding: 0.5rem !important;
  }
  .md\:pt-2 {
    padding-top: 0.5rem !important;
  }
  .md\:pr-2 {
    padding-right: 0.5rem !important;
  }
  .md\:pb-2 {
    padding-bottom: 0.5rem !important;
  }
  .md\:pl-2 {
    padding-left: 0.5rem !important;
  }
  .md\:px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .md\:py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:p-2 {
    padding: 0.5rem !important;
  }
  .lg\:pt-2 {
    padding-top: 0.5rem !important;
  }
  .lg\:pr-2 {
    padding-right: 0.5rem !important;
  }
  .lg\:pb-2 {
    padding-bottom: 0.5rem !important;
  }
  .lg\:pl-2 {
    padding-left: 0.5rem !important;
  }
  .lg\:px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .lg\:py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:p-2 {
    padding: 0.5rem !important;
  }
  .xl\:pt-2 {
    padding-top: 0.5rem !important;
  }
  .xl\:pr-2 {
    padding-right: 0.5rem !important;
  }
  .xl\:pb-2 {
    padding-bottom: 0.5rem !important;
  }
  .xl\:pl-2 {
    padding-left: 0.5rem !important;
  }
  .xl\:px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .xl\:py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
}
.p-2-5 {
  padding: 0.625rem !important;
}

.pt-2-5 {
  padding-top: 0.625rem !important;
}

.pr-2-5 {
  padding-right: 0.625rem !important;
}

.pb-2-5 {
  padding-bottom: 0.625rem !important;
}

.pl-2-5 {
  padding-left: 0.625rem !important;
}

.px-2-5 {
  padding-left: 0.625rem !important;
  padding-right: 0.625rem !important;
}

.py-2-5 {
  padding-top: 0.625rem !important;
  padding-bottom: 0.625rem !important;
}

@media (min-width: 640px) {
  .sm\:p-2-5 {
    padding: 0.625rem !important;
  }
  .sm\:pt-2-5 {
    padding-top: 0.625rem !important;
  }
  .sm\:pr-2-5 {
    padding-right: 0.625rem !important;
  }
  .sm\:pb-2-5 {
    padding-bottom: 0.625rem !important;
  }
  .sm\:pl-2-5 {
    padding-left: 0.625rem !important;
  }
  .sm\:px-2-5 {
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
  }
  .sm\:py-2-5 {
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }
}
@media (min-width: 768px) {
  .md\:p-2-5 {
    padding: 0.625rem !important;
  }
  .md\:pt-2-5 {
    padding-top: 0.625rem !important;
  }
  .md\:pr-2-5 {
    padding-right: 0.625rem !important;
  }
  .md\:pb-2-5 {
    padding-bottom: 0.625rem !important;
  }
  .md\:pl-2-5 {
    padding-left: 0.625rem !important;
  }
  .md\:px-2-5 {
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
  }
  .md\:py-2-5 {
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:p-2-5 {
    padding: 0.625rem !important;
  }
  .lg\:pt-2-5 {
    padding-top: 0.625rem !important;
  }
  .lg\:pr-2-5 {
    padding-right: 0.625rem !important;
  }
  .lg\:pb-2-5 {
    padding-bottom: 0.625rem !important;
  }
  .lg\:pl-2-5 {
    padding-left: 0.625rem !important;
  }
  .lg\:px-2-5 {
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
  }
  .lg\:py-2-5 {
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:p-2-5 {
    padding: 0.625rem !important;
  }
  .xl\:pt-2-5 {
    padding-top: 0.625rem !important;
  }
  .xl\:pr-2-5 {
    padding-right: 0.625rem !important;
  }
  .xl\:pb-2-5 {
    padding-bottom: 0.625rem !important;
  }
  .xl\:pl-2-5 {
    padding-left: 0.625rem !important;
  }
  .xl\:px-2-5 {
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
  }
  .xl\:py-2-5 {
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }
}
.p-3 {
  padding: 0.75rem !important;
}

.pt-3 {
  padding-top: 0.75rem !important;
}

.pr-3 {
  padding-right: 0.75rem !important;
}

.pb-3 {
  padding-bottom: 0.75rem !important;
}

.pl-3 {
  padding-left: 0.75rem !important;
}

.px-3 {
  padding-left: 0.75rem !important;
  padding-right: 0.75rem !important;
}

.py-3 {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}

@media (min-width: 640px) {
  .sm\:p-3 {
    padding: 0.75rem !important;
  }
  .sm\:pt-3 {
    padding-top: 0.75rem !important;
  }
  .sm\:pr-3 {
    padding-right: 0.75rem !important;
  }
  .sm\:pb-3 {
    padding-bottom: 0.75rem !important;
  }
  .sm\:pl-3 {
    padding-left: 0.75rem !important;
  }
  .sm\:px-3 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }
  .sm\:py-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
}
@media (min-width: 768px) {
  .md\:p-3 {
    padding: 0.75rem !important;
  }
  .md\:pt-3 {
    padding-top: 0.75rem !important;
  }
  .md\:pr-3 {
    padding-right: 0.75rem !important;
  }
  .md\:pb-3 {
    padding-bottom: 0.75rem !important;
  }
  .md\:pl-3 {
    padding-left: 0.75rem !important;
  }
  .md\:px-3 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }
  .md\:py-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:p-3 {
    padding: 0.75rem !important;
  }
  .lg\:pt-3 {
    padding-top: 0.75rem !important;
  }
  .lg\:pr-3 {
    padding-right: 0.75rem !important;
  }
  .lg\:pb-3 {
    padding-bottom: 0.75rem !important;
  }
  .lg\:pl-3 {
    padding-left: 0.75rem !important;
  }
  .lg\:px-3 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }
  .lg\:py-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:p-3 {
    padding: 0.75rem !important;
  }
  .xl\:pt-3 {
    padding-top: 0.75rem !important;
  }
  .xl\:pr-3 {
    padding-right: 0.75rem !important;
  }
  .xl\:pb-3 {
    padding-bottom: 0.75rem !important;
  }
  .xl\:pl-3 {
    padding-left: 0.75rem !important;
  }
  .xl\:px-3 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }
  .xl\:py-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
}
.p-3-5 {
  padding: 0.875rem !important;
}

.pt-3-5 {
  padding-top: 0.875rem !important;
}

.pr-3-5 {
  padding-right: 0.875rem !important;
}

.pb-3-5 {
  padding-bottom: 0.875rem !important;
}

.pl-3-5 {
  padding-left: 0.875rem !important;
}

.px-3-5 {
  padding-left: 0.875rem !important;
  padding-right: 0.875rem !important;
}

.py-3-5 {
  padding-top: 0.875rem !important;
  padding-bottom: 0.875rem !important;
}

@media (min-width: 640px) {
  .sm\:p-3-5 {
    padding: 0.875rem !important;
  }
  .sm\:pt-3-5 {
    padding-top: 0.875rem !important;
  }
  .sm\:pr-3-5 {
    padding-right: 0.875rem !important;
  }
  .sm\:pb-3-5 {
    padding-bottom: 0.875rem !important;
  }
  .sm\:pl-3-5 {
    padding-left: 0.875rem !important;
  }
  .sm\:px-3-5 {
    padding-left: 0.875rem !important;
    padding-right: 0.875rem !important;
  }
  .sm\:py-3-5 {
    padding-top: 0.875rem !important;
    padding-bottom: 0.875rem !important;
  }
}
@media (min-width: 768px) {
  .md\:p-3-5 {
    padding: 0.875rem !important;
  }
  .md\:pt-3-5 {
    padding-top: 0.875rem !important;
  }
  .md\:pr-3-5 {
    padding-right: 0.875rem !important;
  }
  .md\:pb-3-5 {
    padding-bottom: 0.875rem !important;
  }
  .md\:pl-3-5 {
    padding-left: 0.875rem !important;
  }
  .md\:px-3-5 {
    padding-left: 0.875rem !important;
    padding-right: 0.875rem !important;
  }
  .md\:py-3-5 {
    padding-top: 0.875rem !important;
    padding-bottom: 0.875rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:p-3-5 {
    padding: 0.875rem !important;
  }
  .lg\:pt-3-5 {
    padding-top: 0.875rem !important;
  }
  .lg\:pr-3-5 {
    padding-right: 0.875rem !important;
  }
  .lg\:pb-3-5 {
    padding-bottom: 0.875rem !important;
  }
  .lg\:pl-3-5 {
    padding-left: 0.875rem !important;
  }
  .lg\:px-3-5 {
    padding-left: 0.875rem !important;
    padding-right: 0.875rem !important;
  }
  .lg\:py-3-5 {
    padding-top: 0.875rem !important;
    padding-bottom: 0.875rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:p-3-5 {
    padding: 0.875rem !important;
  }
  .xl\:pt-3-5 {
    padding-top: 0.875rem !important;
  }
  .xl\:pr-3-5 {
    padding-right: 0.875rem !important;
  }
  .xl\:pb-3-5 {
    padding-bottom: 0.875rem !important;
  }
  .xl\:pl-3-5 {
    padding-left: 0.875rem !important;
  }
  .xl\:px-3-5 {
    padding-left: 0.875rem !important;
    padding-right: 0.875rem !important;
  }
  .xl\:py-3-5 {
    padding-top: 0.875rem !important;
    padding-bottom: 0.875rem !important;
  }
}
.p-4 {
  padding: 1rem !important;
}

.pt-4 {
  padding-top: 1rem !important;
}

.pr-4 {
  padding-right: 1rem !important;
}

.pb-4 {
  padding-bottom: 1rem !important;
}

.pl-4 {
  padding-left: 1rem !important;
}

.px-4 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.py-4 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

@media (min-width: 640px) {
  .sm\:p-4 {
    padding: 1rem !important;
  }
  .sm\:pt-4 {
    padding-top: 1rem !important;
  }
  .sm\:pr-4 {
    padding-right: 1rem !important;
  }
  .sm\:pb-4 {
    padding-bottom: 1rem !important;
  }
  .sm\:pl-4 {
    padding-left: 1rem !important;
  }
  .sm\:px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .sm\:py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
}
@media (min-width: 768px) {
  .md\:p-4 {
    padding: 1rem !important;
  }
  .md\:pt-4 {
    padding-top: 1rem !important;
  }
  .md\:pr-4 {
    padding-right: 1rem !important;
  }
  .md\:pb-4 {
    padding-bottom: 1rem !important;
  }
  .md\:pl-4 {
    padding-left: 1rem !important;
  }
  .md\:px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .md\:py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:p-4 {
    padding: 1rem !important;
  }
  .lg\:pt-4 {
    padding-top: 1rem !important;
  }
  .lg\:pr-4 {
    padding-right: 1rem !important;
  }
  .lg\:pb-4 {
    padding-bottom: 1rem !important;
  }
  .lg\:pl-4 {
    padding-left: 1rem !important;
  }
  .lg\:px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .lg\:py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:p-4 {
    padding: 1rem !important;
  }
  .xl\:pt-4 {
    padding-top: 1rem !important;
  }
  .xl\:pr-4 {
    padding-right: 1rem !important;
  }
  .xl\:pb-4 {
    padding-bottom: 1rem !important;
  }
  .xl\:pl-4 {
    padding-left: 1rem !important;
  }
  .xl\:px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .xl\:py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
}
.p-5 {
  padding: 1.25rem !important;
}

.pt-5 {
  padding-top: 1.25rem !important;
}

.pr-5 {
  padding-right: 1.25rem !important;
}

.pb-5 {
  padding-bottom: 1.25rem !important;
}

.pl-5 {
  padding-left: 1.25rem !important;
}

.px-5 {
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important;
}

.py-5 {
  padding-top: 1.25rem !important;
  padding-bottom: 1.25rem !important;
}

@media (min-width: 640px) {
  .sm\:p-5 {
    padding: 1.25rem !important;
  }
  .sm\:pt-5 {
    padding-top: 1.25rem !important;
  }
  .sm\:pr-5 {
    padding-right: 1.25rem !important;
  }
  .sm\:pb-5 {
    padding-bottom: 1.25rem !important;
  }
  .sm\:pl-5 {
    padding-left: 1.25rem !important;
  }
  .sm\:px-5 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
  .sm\:py-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
}
@media (min-width: 768px) {
  .md\:p-5 {
    padding: 1.25rem !important;
  }
  .md\:pt-5 {
    padding-top: 1.25rem !important;
  }
  .md\:pr-5 {
    padding-right: 1.25rem !important;
  }
  .md\:pb-5 {
    padding-bottom: 1.25rem !important;
  }
  .md\:pl-5 {
    padding-left: 1.25rem !important;
  }
  .md\:px-5 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
  .md\:py-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:p-5 {
    padding: 1.25rem !important;
  }
  .lg\:pt-5 {
    padding-top: 1.25rem !important;
  }
  .lg\:pr-5 {
    padding-right: 1.25rem !important;
  }
  .lg\:pb-5 {
    padding-bottom: 1.25rem !important;
  }
  .lg\:pl-5 {
    padding-left: 1.25rem !important;
  }
  .lg\:px-5 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
  .lg\:py-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:p-5 {
    padding: 1.25rem !important;
  }
  .xl\:pt-5 {
    padding-top: 1.25rem !important;
  }
  .xl\:pr-5 {
    padding-right: 1.25rem !important;
  }
  .xl\:pb-5 {
    padding-bottom: 1.25rem !important;
  }
  .xl\:pl-5 {
    padding-left: 1.25rem !important;
  }
  .xl\:px-5 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
  .xl\:py-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
}
.p-6 {
  padding: 1.5rem !important;
}

.pt-6 {
  padding-top: 1.5rem !important;
}

.pr-6 {
  padding-right: 1.5rem !important;
}

.pb-6 {
  padding-bottom: 1.5rem !important;
}

.pl-6 {
  padding-left: 1.5rem !important;
}

.px-6 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.py-6 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

@media (min-width: 640px) {
  .sm\:p-6 {
    padding: 1.5rem !important;
  }
  .sm\:pt-6 {
    padding-top: 1.5rem !important;
  }
  .sm\:pr-6 {
    padding-right: 1.5rem !important;
  }
  .sm\:pb-6 {
    padding-bottom: 1.5rem !important;
  }
  .sm\:pl-6 {
    padding-left: 1.5rem !important;
  }
  .sm\:px-6 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .sm\:py-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
}
@media (min-width: 768px) {
  .md\:p-6 {
    padding: 1.5rem !important;
  }
  .md\:pt-6 {
    padding-top: 1.5rem !important;
  }
  .md\:pr-6 {
    padding-right: 1.5rem !important;
  }
  .md\:pb-6 {
    padding-bottom: 1.5rem !important;
  }
  .md\:pl-6 {
    padding-left: 1.5rem !important;
  }
  .md\:px-6 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .md\:py-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:p-6 {
    padding: 1.5rem !important;
  }
  .lg\:pt-6 {
    padding-top: 1.5rem !important;
  }
  .lg\:pr-6 {
    padding-right: 1.5rem !important;
  }
  .lg\:pb-6 {
    padding-bottom: 1.5rem !important;
  }
  .lg\:pl-6 {
    padding-left: 1.5rem !important;
  }
  .lg\:px-6 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .lg\:py-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:p-6 {
    padding: 1.5rem !important;
  }
  .xl\:pt-6 {
    padding-top: 1.5rem !important;
  }
  .xl\:pr-6 {
    padding-right: 1.5rem !important;
  }
  .xl\:pb-6 {
    padding-bottom: 1.5rem !important;
  }
  .xl\:pl-6 {
    padding-left: 1.5rem !important;
  }
  .xl\:px-6 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .xl\:py-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
}
.p-7 {
  padding: 1.75rem !important;
}

.pt-7 {
  padding-top: 1.75rem !important;
}

.pr-7 {
  padding-right: 1.75rem !important;
}

.pb-7 {
  padding-bottom: 1.75rem !important;
}

.pl-7 {
  padding-left: 1.75rem !important;
}

.px-7 {
  padding-left: 1.75rem !important;
  padding-right: 1.75rem !important;
}

.py-7 {
  padding-top: 1.75rem !important;
  padding-bottom: 1.75rem !important;
}

@media (min-width: 640px) {
  .sm\:p-7 {
    padding: 1.75rem !important;
  }
  .sm\:pt-7 {
    padding-top: 1.75rem !important;
  }
  .sm\:pr-7 {
    padding-right: 1.75rem !important;
  }
  .sm\:pb-7 {
    padding-bottom: 1.75rem !important;
  }
  .sm\:pl-7 {
    padding-left: 1.75rem !important;
  }
  .sm\:px-7 {
    padding-left: 1.75rem !important;
    padding-right: 1.75rem !important;
  }
  .sm\:py-7 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }
}
@media (min-width: 768px) {
  .md\:p-7 {
    padding: 1.75rem !important;
  }
  .md\:pt-7 {
    padding-top: 1.75rem !important;
  }
  .md\:pr-7 {
    padding-right: 1.75rem !important;
  }
  .md\:pb-7 {
    padding-bottom: 1.75rem !important;
  }
  .md\:pl-7 {
    padding-left: 1.75rem !important;
  }
  .md\:px-7 {
    padding-left: 1.75rem !important;
    padding-right: 1.75rem !important;
  }
  .md\:py-7 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:p-7 {
    padding: 1.75rem !important;
  }
  .lg\:pt-7 {
    padding-top: 1.75rem !important;
  }
  .lg\:pr-7 {
    padding-right: 1.75rem !important;
  }
  .lg\:pb-7 {
    padding-bottom: 1.75rem !important;
  }
  .lg\:pl-7 {
    padding-left: 1.75rem !important;
  }
  .lg\:px-7 {
    padding-left: 1.75rem !important;
    padding-right: 1.75rem !important;
  }
  .lg\:py-7 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:p-7 {
    padding: 1.75rem !important;
  }
  .xl\:pt-7 {
    padding-top: 1.75rem !important;
  }
  .xl\:pr-7 {
    padding-right: 1.75rem !important;
  }
  .xl\:pb-7 {
    padding-bottom: 1.75rem !important;
  }
  .xl\:pl-7 {
    padding-left: 1.75rem !important;
  }
  .xl\:px-7 {
    padding-left: 1.75rem !important;
    padding-right: 1.75rem !important;
  }
  .xl\:py-7 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }
}
.p-8 {
  padding: 2rem !important;
}

.pt-8 {
  padding-top: 2rem !important;
}

.pr-8 {
  padding-right: 2rem !important;
}

.pb-8 {
  padding-bottom: 2rem !important;
}

.pl-8 {
  padding-left: 2rem !important;
}

.px-8 {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

.py-8 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

@media (min-width: 640px) {
  .sm\:p-8 {
    padding: 2rem !important;
  }
  .sm\:pt-8 {
    padding-top: 2rem !important;
  }
  .sm\:pr-8 {
    padding-right: 2rem !important;
  }
  .sm\:pb-8 {
    padding-bottom: 2rem !important;
  }
  .sm\:pl-8 {
    padding-left: 2rem !important;
  }
  .sm\:px-8 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .sm\:py-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
}
@media (min-width: 768px) {
  .md\:p-8 {
    padding: 2rem !important;
  }
  .md\:pt-8 {
    padding-top: 2rem !important;
  }
  .md\:pr-8 {
    padding-right: 2rem !important;
  }
  .md\:pb-8 {
    padding-bottom: 2rem !important;
  }
  .md\:pl-8 {
    padding-left: 2rem !important;
  }
  .md\:px-8 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .md\:py-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:p-8 {
    padding: 2rem !important;
  }
  .lg\:pt-8 {
    padding-top: 2rem !important;
  }
  .lg\:pr-8 {
    padding-right: 2rem !important;
  }
  .lg\:pb-8 {
    padding-bottom: 2rem !important;
  }
  .lg\:pl-8 {
    padding-left: 2rem !important;
  }
  .lg\:px-8 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .lg\:py-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:p-8 {
    padding: 2rem !important;
  }
  .xl\:pt-8 {
    padding-top: 2rem !important;
  }
  .xl\:pr-8 {
    padding-right: 2rem !important;
  }
  .xl\:pb-8 {
    padding-bottom: 2rem !important;
  }
  .xl\:pl-8 {
    padding-left: 2rem !important;
  }
  .xl\:px-8 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .xl\:py-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
}
.p-9 {
  padding: 2.25rem !important;
}

.pt-9 {
  padding-top: 2.25rem !important;
}

.pr-9 {
  padding-right: 2.25rem !important;
}

.pb-9 {
  padding-bottom: 2.25rem !important;
}

.pl-9 {
  padding-left: 2.25rem !important;
}

.px-9 {
  padding-left: 2.25rem !important;
  padding-right: 2.25rem !important;
}

.py-9 {
  padding-top: 2.25rem !important;
  padding-bottom: 2.25rem !important;
}

@media (min-width: 640px) {
  .sm\:p-9 {
    padding: 2.25rem !important;
  }
  .sm\:pt-9 {
    padding-top: 2.25rem !important;
  }
  .sm\:pr-9 {
    padding-right: 2.25rem !important;
  }
  .sm\:pb-9 {
    padding-bottom: 2.25rem !important;
  }
  .sm\:pl-9 {
    padding-left: 2.25rem !important;
  }
  .sm\:px-9 {
    padding-left: 2.25rem !important;
    padding-right: 2.25rem !important;
  }
  .sm\:py-9 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }
}
@media (min-width: 768px) {
  .md\:p-9 {
    padding: 2.25rem !important;
  }
  .md\:pt-9 {
    padding-top: 2.25rem !important;
  }
  .md\:pr-9 {
    padding-right: 2.25rem !important;
  }
  .md\:pb-9 {
    padding-bottom: 2.25rem !important;
  }
  .md\:pl-9 {
    padding-left: 2.25rem !important;
  }
  .md\:px-9 {
    padding-left: 2.25rem !important;
    padding-right: 2.25rem !important;
  }
  .md\:py-9 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:p-9 {
    padding: 2.25rem !important;
  }
  .lg\:pt-9 {
    padding-top: 2.25rem !important;
  }
  .lg\:pr-9 {
    padding-right: 2.25rem !important;
  }
  .lg\:pb-9 {
    padding-bottom: 2.25rem !important;
  }
  .lg\:pl-9 {
    padding-left: 2.25rem !important;
  }
  .lg\:px-9 {
    padding-left: 2.25rem !important;
    padding-right: 2.25rem !important;
  }
  .lg\:py-9 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:p-9 {
    padding: 2.25rem !important;
  }
  .xl\:pt-9 {
    padding-top: 2.25rem !important;
  }
  .xl\:pr-9 {
    padding-right: 2.25rem !important;
  }
  .xl\:pb-9 {
    padding-bottom: 2.25rem !important;
  }
  .xl\:pl-9 {
    padding-left: 2.25rem !important;
  }
  .xl\:px-9 {
    padding-left: 2.25rem !important;
    padding-right: 2.25rem !important;
  }
  .xl\:py-9 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }
}
.p-10 {
  padding: 2.5rem !important;
}

.pt-10 {
  padding-top: 2.5rem !important;
}

.pr-10 {
  padding-right: 2.5rem !important;
}

.pb-10 {
  padding-bottom: 2.5rem !important;
}

.pl-10 {
  padding-left: 2.5rem !important;
}

.px-10 {
  padding-left: 2.5rem !important;
  padding-right: 2.5rem !important;
}

.py-10 {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}

@media (min-width: 640px) {
  .sm\:p-10 {
    padding: 2.5rem !important;
  }
  .sm\:pt-10 {
    padding-top: 2.5rem !important;
  }
  .sm\:pr-10 {
    padding-right: 2.5rem !important;
  }
  .sm\:pb-10 {
    padding-bottom: 2.5rem !important;
  }
  .sm\:pl-10 {
    padding-left: 2.5rem !important;
  }
  .sm\:px-10 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
  .sm\:py-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
}
@media (min-width: 768px) {
  .md\:p-10 {
    padding: 2.5rem !important;
  }
  .md\:pt-10 {
    padding-top: 2.5rem !important;
  }
  .md\:pr-10 {
    padding-right: 2.5rem !important;
  }
  .md\:pb-10 {
    padding-bottom: 2.5rem !important;
  }
  .md\:pl-10 {
    padding-left: 2.5rem !important;
  }
  .md\:px-10 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
  .md\:py-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:p-10 {
    padding: 2.5rem !important;
  }
  .lg\:pt-10 {
    padding-top: 2.5rem !important;
  }
  .lg\:pr-10 {
    padding-right: 2.5rem !important;
  }
  .lg\:pb-10 {
    padding-bottom: 2.5rem !important;
  }
  .lg\:pl-10 {
    padding-left: 2.5rem !important;
  }
  .lg\:px-10 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
  .lg\:py-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:p-10 {
    padding: 2.5rem !important;
  }
  .xl\:pt-10 {
    padding-top: 2.5rem !important;
  }
  .xl\:pr-10 {
    padding-right: 2.5rem !important;
  }
  .xl\:pb-10 {
    padding-bottom: 2.5rem !important;
  }
  .xl\:pl-10 {
    padding-left: 2.5rem !important;
  }
  .xl\:px-10 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
  .xl\:py-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
}
.p-12 {
  padding: 3rem !important;
}

.pt-12 {
  padding-top: 3rem !important;
}

.pr-12 {
  padding-right: 3rem !important;
}

.pb-12 {
  padding-bottom: 3rem !important;
}

.pl-12 {
  padding-left: 3rem !important;
}

.px-12 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.py-12 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

@media (min-width: 640px) {
  .sm\:p-12 {
    padding: 3rem !important;
  }
  .sm\:pt-12 {
    padding-top: 3rem !important;
  }
  .sm\:pr-12 {
    padding-right: 3rem !important;
  }
  .sm\:pb-12 {
    padding-bottom: 3rem !important;
  }
  .sm\:pl-12 {
    padding-left: 3rem !important;
  }
  .sm\:px-12 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .sm\:py-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
}
@media (min-width: 768px) {
  .md\:p-12 {
    padding: 3rem !important;
  }
  .md\:pt-12 {
    padding-top: 3rem !important;
  }
  .md\:pr-12 {
    padding-right: 3rem !important;
  }
  .md\:pb-12 {
    padding-bottom: 3rem !important;
  }
  .md\:pl-12 {
    padding-left: 3rem !important;
  }
  .md\:px-12 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .md\:py-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:p-12 {
    padding: 3rem !important;
  }
  .lg\:pt-12 {
    padding-top: 3rem !important;
  }
  .lg\:pr-12 {
    padding-right: 3rem !important;
  }
  .lg\:pb-12 {
    padding-bottom: 3rem !important;
  }
  .lg\:pl-12 {
    padding-left: 3rem !important;
  }
  .lg\:px-12 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .lg\:py-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:p-12 {
    padding: 3rem !important;
  }
  .xl\:pt-12 {
    padding-top: 3rem !important;
  }
  .xl\:pr-12 {
    padding-right: 3rem !important;
  }
  .xl\:pb-12 {
    padding-bottom: 3rem !important;
  }
  .xl\:pl-12 {
    padding-left: 3rem !important;
  }
  .xl\:px-12 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .xl\:py-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
}
.p-14 {
  padding: 3.5rem !important;
}

.pt-14 {
  padding-top: 3.5rem !important;
}

.pr-14 {
  padding-right: 3.5rem !important;
}

.pb-14 {
  padding-bottom: 3.5rem !important;
}

.pl-14 {
  padding-left: 3.5rem !important;
}

.px-14 {
  padding-left: 3.5rem !important;
  padding-right: 3.5rem !important;
}

.py-14 {
  padding-top: 3.5rem !important;
  padding-bottom: 3.5rem !important;
}

@media (min-width: 640px) {
  .sm\:p-14 {
    padding: 3.5rem !important;
  }
  .sm\:pt-14 {
    padding-top: 3.5rem !important;
  }
  .sm\:pr-14 {
    padding-right: 3.5rem !important;
  }
  .sm\:pb-14 {
    padding-bottom: 3.5rem !important;
  }
  .sm\:pl-14 {
    padding-left: 3.5rem !important;
  }
  .sm\:px-14 {
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }
  .sm\:py-14 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
}
@media (min-width: 768px) {
  .md\:p-14 {
    padding: 3.5rem !important;
  }
  .md\:pt-14 {
    padding-top: 3.5rem !important;
  }
  .md\:pr-14 {
    padding-right: 3.5rem !important;
  }
  .md\:pb-14 {
    padding-bottom: 3.5rem !important;
  }
  .md\:pl-14 {
    padding-left: 3.5rem !important;
  }
  .md\:px-14 {
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }
  .md\:py-14 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:p-14 {
    padding: 3.5rem !important;
  }
  .lg\:pt-14 {
    padding-top: 3.5rem !important;
  }
  .lg\:pr-14 {
    padding-right: 3.5rem !important;
  }
  .lg\:pb-14 {
    padding-bottom: 3.5rem !important;
  }
  .lg\:pl-14 {
    padding-left: 3.5rem !important;
  }
  .lg\:px-14 {
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }
  .lg\:py-14 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:p-14 {
    padding: 3.5rem !important;
  }
  .xl\:pt-14 {
    padding-top: 3.5rem !important;
  }
  .xl\:pr-14 {
    padding-right: 3.5rem !important;
  }
  .xl\:pb-14 {
    padding-bottom: 3.5rem !important;
  }
  .xl\:pl-14 {
    padding-left: 3.5rem !important;
  }
  .xl\:px-14 {
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }
  .xl\:py-14 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
}
.p-16 {
  padding: 4rem !important;
}

.pt-16 {
  padding-top: 4rem !important;
}

.pr-16 {
  padding-right: 4rem !important;
}

.pb-16 {
  padding-bottom: 4rem !important;
}

.pl-16 {
  padding-left: 4rem !important;
}

.px-16 {
  padding-left: 4rem !important;
  padding-right: 4rem !important;
}

.py-16 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

@media (min-width: 640px) {
  .sm\:p-16 {
    padding: 4rem !important;
  }
  .sm\:pt-16 {
    padding-top: 4rem !important;
  }
  .sm\:pr-16 {
    padding-right: 4rem !important;
  }
  .sm\:pb-16 {
    padding-bottom: 4rem !important;
  }
  .sm\:pl-16 {
    padding-left: 4rem !important;
  }
  .sm\:px-16 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .sm\:py-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
}
@media (min-width: 768px) {
  .md\:p-16 {
    padding: 4rem !important;
  }
  .md\:pt-16 {
    padding-top: 4rem !important;
  }
  .md\:pr-16 {
    padding-right: 4rem !important;
  }
  .md\:pb-16 {
    padding-bottom: 4rem !important;
  }
  .md\:pl-16 {
    padding-left: 4rem !important;
  }
  .md\:px-16 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .md\:py-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:p-16 {
    padding: 4rem !important;
  }
  .lg\:pt-16 {
    padding-top: 4rem !important;
  }
  .lg\:pr-16 {
    padding-right: 4rem !important;
  }
  .lg\:pb-16 {
    padding-bottom: 4rem !important;
  }
  .lg\:pl-16 {
    padding-left: 4rem !important;
  }
  .lg\:px-16 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .lg\:py-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:p-16 {
    padding: 4rem !important;
  }
  .xl\:pt-16 {
    padding-top: 4rem !important;
  }
  .xl\:pr-16 {
    padding-right: 4rem !important;
  }
  .xl\:pb-16 {
    padding-bottom: 4rem !important;
  }
  .xl\:pl-16 {
    padding-left: 4rem !important;
  }
  .xl\:px-16 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .xl\:py-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
}
.p-20 {
  padding: 5rem !important;
}

.pt-20 {
  padding-top: 5rem !important;
}

.pr-20 {
  padding-right: 5rem !important;
}

.pb-20 {
  padding-bottom: 5rem !important;
}

.pl-20 {
  padding-left: 5rem !important;
}

.px-20 {
  padding-left: 5rem !important;
  padding-right: 5rem !important;
}

.py-20 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

@media (min-width: 640px) {
  .sm\:p-20 {
    padding: 5rem !important;
  }
  .sm\:pt-20 {
    padding-top: 5rem !important;
  }
  .sm\:pr-20 {
    padding-right: 5rem !important;
  }
  .sm\:pb-20 {
    padding-bottom: 5rem !important;
  }
  .sm\:pl-20 {
    padding-left: 5rem !important;
  }
  .sm\:px-20 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
  .sm\:py-20 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
}
@media (min-width: 768px) {
  .md\:p-20 {
    padding: 5rem !important;
  }
  .md\:pt-20 {
    padding-top: 5rem !important;
  }
  .md\:pr-20 {
    padding-right: 5rem !important;
  }
  .md\:pb-20 {
    padding-bottom: 5rem !important;
  }
  .md\:pl-20 {
    padding-left: 5rem !important;
  }
  .md\:px-20 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
  .md\:py-20 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:p-20 {
    padding: 5rem !important;
  }
  .lg\:pt-20 {
    padding-top: 5rem !important;
  }
  .lg\:pr-20 {
    padding-right: 5rem !important;
  }
  .lg\:pb-20 {
    padding-bottom: 5rem !important;
  }
  .lg\:pl-20 {
    padding-left: 5rem !important;
  }
  .lg\:px-20 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
  .lg\:py-20 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:p-20 {
    padding: 5rem !important;
  }
  .xl\:pt-20 {
    padding-top: 5rem !important;
  }
  .xl\:pr-20 {
    padding-right: 5rem !important;
  }
  .xl\:pb-20 {
    padding-bottom: 5rem !important;
  }
  .xl\:pl-20 {
    padding-left: 5rem !important;
  }
  .xl\:px-20 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
  .xl\:py-20 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
}
.p-24 {
  padding: 6rem !important;
}

.pt-24 {
  padding-top: 6rem !important;
}

.pr-24 {
  padding-right: 6rem !important;
}

.pb-24 {
  padding-bottom: 6rem !important;
}

.pl-24 {
  padding-left: 6rem !important;
}

.px-24 {
  padding-left: 6rem !important;
  padding-right: 6rem !important;
}

.py-24 {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}

@media (min-width: 640px) {
  .sm\:p-24 {
    padding: 6rem !important;
  }
  .sm\:pt-24 {
    padding-top: 6rem !important;
  }
  .sm\:pr-24 {
    padding-right: 6rem !important;
  }
  .sm\:pb-24 {
    padding-bottom: 6rem !important;
  }
  .sm\:pl-24 {
    padding-left: 6rem !important;
  }
  .sm\:px-24 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }
  .sm\:py-24 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
}
@media (min-width: 768px) {
  .md\:p-24 {
    padding: 6rem !important;
  }
  .md\:pt-24 {
    padding-top: 6rem !important;
  }
  .md\:pr-24 {
    padding-right: 6rem !important;
  }
  .md\:pb-24 {
    padding-bottom: 6rem !important;
  }
  .md\:pl-24 {
    padding-left: 6rem !important;
  }
  .md\:px-24 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }
  .md\:py-24 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:p-24 {
    padding: 6rem !important;
  }
  .lg\:pt-24 {
    padding-top: 6rem !important;
  }
  .lg\:pr-24 {
    padding-right: 6rem !important;
  }
  .lg\:pb-24 {
    padding-bottom: 6rem !important;
  }
  .lg\:pl-24 {
    padding-left: 6rem !important;
  }
  .lg\:px-24 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }
  .lg\:py-24 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:p-24 {
    padding: 6rem !important;
  }
  .xl\:pt-24 {
    padding-top: 6rem !important;
  }
  .xl\:pr-24 {
    padding-right: 6rem !important;
  }
  .xl\:pb-24 {
    padding-bottom: 6rem !important;
  }
  .xl\:pl-24 {
    padding-left: 6rem !important;
  }
  .xl\:px-24 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }
  .xl\:py-24 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
}
.p-28 {
  padding: 7rem !important;
}

.pt-28 {
  padding-top: 7rem !important;
}

.pr-28 {
  padding-right: 7rem !important;
}

.pb-28 {
  padding-bottom: 7rem !important;
}

.pl-28 {
  padding-left: 7rem !important;
}

.px-28 {
  padding-left: 7rem !important;
  padding-right: 7rem !important;
}

.py-28 {
  padding-top: 7rem !important;
  padding-bottom: 7rem !important;
}

@media (min-width: 640px) {
  .sm\:p-28 {
    padding: 7rem !important;
  }
  .sm\:pt-28 {
    padding-top: 7rem !important;
  }
  .sm\:pr-28 {
    padding-right: 7rem !important;
  }
  .sm\:pb-28 {
    padding-bottom: 7rem !important;
  }
  .sm\:pl-28 {
    padding-left: 7rem !important;
  }
  .sm\:px-28 {
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }
  .sm\:py-28 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
}
@media (min-width: 768px) {
  .md\:p-28 {
    padding: 7rem !important;
  }
  .md\:pt-28 {
    padding-top: 7rem !important;
  }
  .md\:pr-28 {
    padding-right: 7rem !important;
  }
  .md\:pb-28 {
    padding-bottom: 7rem !important;
  }
  .md\:pl-28 {
    padding-left: 7rem !important;
  }
  .md\:px-28 {
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }
  .md\:py-28 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:p-28 {
    padding: 7rem !important;
  }
  .lg\:pt-28 {
    padding-top: 7rem !important;
  }
  .lg\:pr-28 {
    padding-right: 7rem !important;
  }
  .lg\:pb-28 {
    padding-bottom: 7rem !important;
  }
  .lg\:pl-28 {
    padding-left: 7rem !important;
  }
  .lg\:px-28 {
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }
  .lg\:py-28 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:p-28 {
    padding: 7rem !important;
  }
  .xl\:pt-28 {
    padding-top: 7rem !important;
  }
  .xl\:pr-28 {
    padding-right: 7rem !important;
  }
  .xl\:pb-28 {
    padding-bottom: 7rem !important;
  }
  .xl\:pl-28 {
    padding-left: 7rem !important;
  }
  .xl\:px-28 {
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }
  .xl\:py-28 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
}
.p-32 {
  padding: 8rem !important;
}

.pt-32 {
  padding-top: 8rem !important;
}

.pr-32 {
  padding-right: 8rem !important;
}

.pb-32 {
  padding-bottom: 8rem !important;
}

.pl-32 {
  padding-left: 8rem !important;
}

.px-32 {
  padding-left: 8rem !important;
  padding-right: 8rem !important;
}

.py-32 {
  padding-top: 8rem !important;
  padding-bottom: 8rem !important;
}

@media (min-width: 640px) {
  .sm\:p-32 {
    padding: 8rem !important;
  }
  .sm\:pt-32 {
    padding-top: 8rem !important;
  }
  .sm\:pr-32 {
    padding-right: 8rem !important;
  }
  .sm\:pb-32 {
    padding-bottom: 8rem !important;
  }
  .sm\:pl-32 {
    padding-left: 8rem !important;
  }
  .sm\:px-32 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }
  .sm\:py-32 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
}
@media (min-width: 768px) {
  .md\:p-32 {
    padding: 8rem !important;
  }
  .md\:pt-32 {
    padding-top: 8rem !important;
  }
  .md\:pr-32 {
    padding-right: 8rem !important;
  }
  .md\:pb-32 {
    padding-bottom: 8rem !important;
  }
  .md\:pl-32 {
    padding-left: 8rem !important;
  }
  .md\:px-32 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }
  .md\:py-32 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:p-32 {
    padding: 8rem !important;
  }
  .lg\:pt-32 {
    padding-top: 8rem !important;
  }
  .lg\:pr-32 {
    padding-right: 8rem !important;
  }
  .lg\:pb-32 {
    padding-bottom: 8rem !important;
  }
  .lg\:pl-32 {
    padding-left: 8rem !important;
  }
  .lg\:px-32 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }
  .lg\:py-32 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:p-32 {
    padding: 8rem !important;
  }
  .xl\:pt-32 {
    padding-top: 8rem !important;
  }
  .xl\:pr-32 {
    padding-right: 8rem !important;
  }
  .xl\:pb-32 {
    padding-bottom: 8rem !important;
  }
  .xl\:pl-32 {
    padding-left: 8rem !important;
  }
  .xl\:px-32 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }
  .xl\:py-32 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
}
.p-36 {
  padding: 9rem !important;
}

.pt-36 {
  padding-top: 9rem !important;
}

.pr-36 {
  padding-right: 9rem !important;
}

.pb-36 {
  padding-bottom: 9rem !important;
}

.pl-36 {
  padding-left: 9rem !important;
}

.px-36 {
  padding-left: 9rem !important;
  padding-right: 9rem !important;
}

.py-36 {
  padding-top: 9rem !important;
  padding-bottom: 9rem !important;
}

@media (min-width: 640px) {
  .sm\:p-36 {
    padding: 9rem !important;
  }
  .sm\:pt-36 {
    padding-top: 9rem !important;
  }
  .sm\:pr-36 {
    padding-right: 9rem !important;
  }
  .sm\:pb-36 {
    padding-bottom: 9rem !important;
  }
  .sm\:pl-36 {
    padding-left: 9rem !important;
  }
  .sm\:px-36 {
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }
  .sm\:py-36 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
}
@media (min-width: 768px) {
  .md\:p-36 {
    padding: 9rem !important;
  }
  .md\:pt-36 {
    padding-top: 9rem !important;
  }
  .md\:pr-36 {
    padding-right: 9rem !important;
  }
  .md\:pb-36 {
    padding-bottom: 9rem !important;
  }
  .md\:pl-36 {
    padding-left: 9rem !important;
  }
  .md\:px-36 {
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }
  .md\:py-36 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:p-36 {
    padding: 9rem !important;
  }
  .lg\:pt-36 {
    padding-top: 9rem !important;
  }
  .lg\:pr-36 {
    padding-right: 9rem !important;
  }
  .lg\:pb-36 {
    padding-bottom: 9rem !important;
  }
  .lg\:pl-36 {
    padding-left: 9rem !important;
  }
  .lg\:px-36 {
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }
  .lg\:py-36 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:p-36 {
    padding: 9rem !important;
  }
  .xl\:pt-36 {
    padding-top: 9rem !important;
  }
  .xl\:pr-36 {
    padding-right: 9rem !important;
  }
  .xl\:pb-36 {
    padding-bottom: 9rem !important;
  }
  .xl\:pl-36 {
    padding-left: 9rem !important;
  }
  .xl\:px-36 {
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }
  .xl\:py-36 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
}
.p-40 {
  padding: 10rem !important;
}

.pt-40 {
  padding-top: 10rem !important;
}

.pr-40 {
  padding-right: 10rem !important;
}

.pb-40 {
  padding-bottom: 10rem !important;
}

.pl-40 {
  padding-left: 10rem !important;
}

.px-40 {
  padding-left: 10rem !important;
  padding-right: 10rem !important;
}

.py-40 {
  padding-top: 10rem !important;
  padding-bottom: 10rem !important;
}

@media (min-width: 640px) {
  .sm\:p-40 {
    padding: 10rem !important;
  }
  .sm\:pt-40 {
    padding-top: 10rem !important;
  }
  .sm\:pr-40 {
    padding-right: 10rem !important;
  }
  .sm\:pb-40 {
    padding-bottom: 10rem !important;
  }
  .sm\:pl-40 {
    padding-left: 10rem !important;
  }
  .sm\:px-40 {
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }
  .sm\:py-40 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
}
@media (min-width: 768px) {
  .md\:p-40 {
    padding: 10rem !important;
  }
  .md\:pt-40 {
    padding-top: 10rem !important;
  }
  .md\:pr-40 {
    padding-right: 10rem !important;
  }
  .md\:pb-40 {
    padding-bottom: 10rem !important;
  }
  .md\:pl-40 {
    padding-left: 10rem !important;
  }
  .md\:px-40 {
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }
  .md\:py-40 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:p-40 {
    padding: 10rem !important;
  }
  .lg\:pt-40 {
    padding-top: 10rem !important;
  }
  .lg\:pr-40 {
    padding-right: 10rem !important;
  }
  .lg\:pb-40 {
    padding-bottom: 10rem !important;
  }
  .lg\:pl-40 {
    padding-left: 10rem !important;
  }
  .lg\:px-40 {
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }
  .lg\:py-40 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:p-40 {
    padding: 10rem !important;
  }
  .xl\:pt-40 {
    padding-top: 10rem !important;
  }
  .xl\:pr-40 {
    padding-right: 10rem !important;
  }
  .xl\:pb-40 {
    padding-bottom: 10rem !important;
  }
  .xl\:pl-40 {
    padding-left: 10rem !important;
  }
  .xl\:px-40 {
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }
  .xl\:py-40 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
}
.p-44 {
  padding: 11rem !important;
}

.pt-44 {
  padding-top: 11rem !important;
}

.pr-44 {
  padding-right: 11rem !important;
}

.pb-44 {
  padding-bottom: 11rem !important;
}

.pl-44 {
  padding-left: 11rem !important;
}

.px-44 {
  padding-left: 11rem !important;
  padding-right: 11rem !important;
}

.py-44 {
  padding-top: 11rem !important;
  padding-bottom: 11rem !important;
}

@media (min-width: 640px) {
  .sm\:p-44 {
    padding: 11rem !important;
  }
  .sm\:pt-44 {
    padding-top: 11rem !important;
  }
  .sm\:pr-44 {
    padding-right: 11rem !important;
  }
  .sm\:pb-44 {
    padding-bottom: 11rem !important;
  }
  .sm\:pl-44 {
    padding-left: 11rem !important;
  }
  .sm\:px-44 {
    padding-left: 11rem !important;
    padding-right: 11rem !important;
  }
  .sm\:py-44 {
    padding-top: 11rem !important;
    padding-bottom: 11rem !important;
  }
}
@media (min-width: 768px) {
  .md\:p-44 {
    padding: 11rem !important;
  }
  .md\:pt-44 {
    padding-top: 11rem !important;
  }
  .md\:pr-44 {
    padding-right: 11rem !important;
  }
  .md\:pb-44 {
    padding-bottom: 11rem !important;
  }
  .md\:pl-44 {
    padding-left: 11rem !important;
  }
  .md\:px-44 {
    padding-left: 11rem !important;
    padding-right: 11rem !important;
  }
  .md\:py-44 {
    padding-top: 11rem !important;
    padding-bottom: 11rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:p-44 {
    padding: 11rem !important;
  }
  .lg\:pt-44 {
    padding-top: 11rem !important;
  }
  .lg\:pr-44 {
    padding-right: 11rem !important;
  }
  .lg\:pb-44 {
    padding-bottom: 11rem !important;
  }
  .lg\:pl-44 {
    padding-left: 11rem !important;
  }
  .lg\:px-44 {
    padding-left: 11rem !important;
    padding-right: 11rem !important;
  }
  .lg\:py-44 {
    padding-top: 11rem !important;
    padding-bottom: 11rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:p-44 {
    padding: 11rem !important;
  }
  .xl\:pt-44 {
    padding-top: 11rem !important;
  }
  .xl\:pr-44 {
    padding-right: 11rem !important;
  }
  .xl\:pb-44 {
    padding-bottom: 11rem !important;
  }
  .xl\:pl-44 {
    padding-left: 11rem !important;
  }
  .xl\:px-44 {
    padding-left: 11rem !important;
    padding-right: 11rem !important;
  }
  .xl\:py-44 {
    padding-top: 11rem !important;
    padding-bottom: 11rem !important;
  }
}
.p-48 {
  padding: 12rem !important;
}

.pt-48 {
  padding-top: 12rem !important;
}

.pr-48 {
  padding-right: 12rem !important;
}

.pb-48 {
  padding-bottom: 12rem !important;
}

.pl-48 {
  padding-left: 12rem !important;
}

.px-48 {
  padding-left: 12rem !important;
  padding-right: 12rem !important;
}

.py-48 {
  padding-top: 12rem !important;
  padding-bottom: 12rem !important;
}

@media (min-width: 640px) {
  .sm\:p-48 {
    padding: 12rem !important;
  }
  .sm\:pt-48 {
    padding-top: 12rem !important;
  }
  .sm\:pr-48 {
    padding-right: 12rem !important;
  }
  .sm\:pb-48 {
    padding-bottom: 12rem !important;
  }
  .sm\:pl-48 {
    padding-left: 12rem !important;
  }
  .sm\:px-48 {
    padding-left: 12rem !important;
    padding-right: 12rem !important;
  }
  .sm\:py-48 {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }
}
@media (min-width: 768px) {
  .md\:p-48 {
    padding: 12rem !important;
  }
  .md\:pt-48 {
    padding-top: 12rem !important;
  }
  .md\:pr-48 {
    padding-right: 12rem !important;
  }
  .md\:pb-48 {
    padding-bottom: 12rem !important;
  }
  .md\:pl-48 {
    padding-left: 12rem !important;
  }
  .md\:px-48 {
    padding-left: 12rem !important;
    padding-right: 12rem !important;
  }
  .md\:py-48 {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:p-48 {
    padding: 12rem !important;
  }
  .lg\:pt-48 {
    padding-top: 12rem !important;
  }
  .lg\:pr-48 {
    padding-right: 12rem !important;
  }
  .lg\:pb-48 {
    padding-bottom: 12rem !important;
  }
  .lg\:pl-48 {
    padding-left: 12rem !important;
  }
  .lg\:px-48 {
    padding-left: 12rem !important;
    padding-right: 12rem !important;
  }
  .lg\:py-48 {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:p-48 {
    padding: 12rem !important;
  }
  .xl\:pt-48 {
    padding-top: 12rem !important;
  }
  .xl\:pr-48 {
    padding-right: 12rem !important;
  }
  .xl\:pb-48 {
    padding-bottom: 12rem !important;
  }
  .xl\:pl-48 {
    padding-left: 12rem !important;
  }
  .xl\:px-48 {
    padding-left: 12rem !important;
    padding-right: 12rem !important;
  }
  .xl\:py-48 {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }
}
.gap-0 {
  gap: 0rem !important;
}

.gap-x-0 {
  column-gap: 0rem !important;
}

.gap-y-0 {
  row-gap: 0rem !important;
}

@media (min-width: 640px) {
  .sm\:gap-0 {
    gap: 0rem !important;
  }
  .sm\:gap-x-0 {
    column-gap: 0rem !important;
  }
  .sm\:gap-y-0 {
    row-gap: 0rem !important;
  }
}
@media (min-width: 768px) {
  .md\:gap-0 {
    gap: 0rem !important;
  }
  .md\:gap-x-0 {
    column-gap: 0rem !important;
  }
  .md\:gap-y-0 {
    row-gap: 0rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:gap-0 {
    gap: 0rem !important;
  }
  .lg\:gap-x-0 {
    column-gap: 0rem !important;
  }
  .lg\:gap-y-0 {
    row-gap: 0rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:gap-0 {
    gap: 0rem !important;
  }
  .xl\:gap-x-0 {
    column-gap: 0rem !important;
  }
  .xl\:gap-y-0 {
    row-gap: 0rem !important;
  }
}
.gap-0-5 {
  gap: 0.125rem !important;
}

.gap-x-0-5 {
  column-gap: 0.125rem !important;
}

.gap-y-0-5 {
  row-gap: 0.125rem !important;
}

@media (min-width: 640px) {
  .sm\:gap-0-5 {
    gap: 0.125rem !important;
  }
  .sm\:gap-x-0-5 {
    column-gap: 0.125rem !important;
  }
  .sm\:gap-y-0-5 {
    row-gap: 0.125rem !important;
  }
}
@media (min-width: 768px) {
  .md\:gap-0-5 {
    gap: 0.125rem !important;
  }
  .md\:gap-x-0-5 {
    column-gap: 0.125rem !important;
  }
  .md\:gap-y-0-5 {
    row-gap: 0.125rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:gap-0-5 {
    gap: 0.125rem !important;
  }
  .lg\:gap-x-0-5 {
    column-gap: 0.125rem !important;
  }
  .lg\:gap-y-0-5 {
    row-gap: 0.125rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:gap-0-5 {
    gap: 0.125rem !important;
  }
  .xl\:gap-x-0-5 {
    column-gap: 0.125rem !important;
  }
  .xl\:gap-y-0-5 {
    row-gap: 0.125rem !important;
  }
}
.gap-1 {
  gap: 0.25rem !important;
}

.gap-x-1 {
  column-gap: 0.25rem !important;
}

.gap-y-1 {
  row-gap: 0.25rem !important;
}

@media (min-width: 640px) {
  .sm\:gap-1 {
    gap: 0.25rem !important;
  }
  .sm\:gap-x-1 {
    column-gap: 0.25rem !important;
  }
  .sm\:gap-y-1 {
    row-gap: 0.25rem !important;
  }
}
@media (min-width: 768px) {
  .md\:gap-1 {
    gap: 0.25rem !important;
  }
  .md\:gap-x-1 {
    column-gap: 0.25rem !important;
  }
  .md\:gap-y-1 {
    row-gap: 0.25rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:gap-1 {
    gap: 0.25rem !important;
  }
  .lg\:gap-x-1 {
    column-gap: 0.25rem !important;
  }
  .lg\:gap-y-1 {
    row-gap: 0.25rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:gap-1 {
    gap: 0.25rem !important;
  }
  .xl\:gap-x-1 {
    column-gap: 0.25rem !important;
  }
  .xl\:gap-y-1 {
    row-gap: 0.25rem !important;
  }
}
.gap-1-5 {
  gap: 0.375rem !important;
}

.gap-x-1-5 {
  column-gap: 0.375rem !important;
}

.gap-y-1-5 {
  row-gap: 0.375rem !important;
}

@media (min-width: 640px) {
  .sm\:gap-1-5 {
    gap: 0.375rem !important;
  }
  .sm\:gap-x-1-5 {
    column-gap: 0.375rem !important;
  }
  .sm\:gap-y-1-5 {
    row-gap: 0.375rem !important;
  }
}
@media (min-width: 768px) {
  .md\:gap-1-5 {
    gap: 0.375rem !important;
  }
  .md\:gap-x-1-5 {
    column-gap: 0.375rem !important;
  }
  .md\:gap-y-1-5 {
    row-gap: 0.375rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:gap-1-5 {
    gap: 0.375rem !important;
  }
  .lg\:gap-x-1-5 {
    column-gap: 0.375rem !important;
  }
  .lg\:gap-y-1-5 {
    row-gap: 0.375rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:gap-1-5 {
    gap: 0.375rem !important;
  }
  .xl\:gap-x-1-5 {
    column-gap: 0.375rem !important;
  }
  .xl\:gap-y-1-5 {
    row-gap: 0.375rem !important;
  }
}
.gap-2 {
  gap: 0.5rem !important;
}

.gap-x-2 {
  column-gap: 0.5rem !important;
}

.gap-y-2 {
  row-gap: 0.5rem !important;
}

@media (min-width: 640px) {
  .sm\:gap-2 {
    gap: 0.5rem !important;
  }
  .sm\:gap-x-2 {
    column-gap: 0.5rem !important;
  }
  .sm\:gap-y-2 {
    row-gap: 0.5rem !important;
  }
}
@media (min-width: 768px) {
  .md\:gap-2 {
    gap: 0.5rem !important;
  }
  .md\:gap-x-2 {
    column-gap: 0.5rem !important;
  }
  .md\:gap-y-2 {
    row-gap: 0.5rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:gap-2 {
    gap: 0.5rem !important;
  }
  .lg\:gap-x-2 {
    column-gap: 0.5rem !important;
  }
  .lg\:gap-y-2 {
    row-gap: 0.5rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:gap-2 {
    gap: 0.5rem !important;
  }
  .xl\:gap-x-2 {
    column-gap: 0.5rem !important;
  }
  .xl\:gap-y-2 {
    row-gap: 0.5rem !important;
  }
}
.gap-2-5 {
  gap: 0.625rem !important;
}

.gap-x-2-5 {
  column-gap: 0.625rem !important;
}

.gap-y-2-5 {
  row-gap: 0.625rem !important;
}

@media (min-width: 640px) {
  .sm\:gap-2-5 {
    gap: 0.625rem !important;
  }
  .sm\:gap-x-2-5 {
    column-gap: 0.625rem !important;
  }
  .sm\:gap-y-2-5 {
    row-gap: 0.625rem !important;
  }
}
@media (min-width: 768px) {
  .md\:gap-2-5 {
    gap: 0.625rem !important;
  }
  .md\:gap-x-2-5 {
    column-gap: 0.625rem !important;
  }
  .md\:gap-y-2-5 {
    row-gap: 0.625rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:gap-2-5 {
    gap: 0.625rem !important;
  }
  .lg\:gap-x-2-5 {
    column-gap: 0.625rem !important;
  }
  .lg\:gap-y-2-5 {
    row-gap: 0.625rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:gap-2-5 {
    gap: 0.625rem !important;
  }
  .xl\:gap-x-2-5 {
    column-gap: 0.625rem !important;
  }
  .xl\:gap-y-2-5 {
    row-gap: 0.625rem !important;
  }
}
.gap-3 {
  gap: 0.75rem !important;
}

.gap-x-3 {
  column-gap: 0.75rem !important;
}

.gap-y-3 {
  row-gap: 0.75rem !important;
}

@media (min-width: 640px) {
  .sm\:gap-3 {
    gap: 0.75rem !important;
  }
  .sm\:gap-x-3 {
    column-gap: 0.75rem !important;
  }
  .sm\:gap-y-3 {
    row-gap: 0.75rem !important;
  }
}
@media (min-width: 768px) {
  .md\:gap-3 {
    gap: 0.75rem !important;
  }
  .md\:gap-x-3 {
    column-gap: 0.75rem !important;
  }
  .md\:gap-y-3 {
    row-gap: 0.75rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:gap-3 {
    gap: 0.75rem !important;
  }
  .lg\:gap-x-3 {
    column-gap: 0.75rem !important;
  }
  .lg\:gap-y-3 {
    row-gap: 0.75rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:gap-3 {
    gap: 0.75rem !important;
  }
  .xl\:gap-x-3 {
    column-gap: 0.75rem !important;
  }
  .xl\:gap-y-3 {
    row-gap: 0.75rem !important;
  }
}
.gap-3-5 {
  gap: 0.875rem !important;
}

.gap-x-3-5 {
  column-gap: 0.875rem !important;
}

.gap-y-3-5 {
  row-gap: 0.875rem !important;
}

@media (min-width: 640px) {
  .sm\:gap-3-5 {
    gap: 0.875rem !important;
  }
  .sm\:gap-x-3-5 {
    column-gap: 0.875rem !important;
  }
  .sm\:gap-y-3-5 {
    row-gap: 0.875rem !important;
  }
}
@media (min-width: 768px) {
  .md\:gap-3-5 {
    gap: 0.875rem !important;
  }
  .md\:gap-x-3-5 {
    column-gap: 0.875rem !important;
  }
  .md\:gap-y-3-5 {
    row-gap: 0.875rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:gap-3-5 {
    gap: 0.875rem !important;
  }
  .lg\:gap-x-3-5 {
    column-gap: 0.875rem !important;
  }
  .lg\:gap-y-3-5 {
    row-gap: 0.875rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:gap-3-5 {
    gap: 0.875rem !important;
  }
  .xl\:gap-x-3-5 {
    column-gap: 0.875rem !important;
  }
  .xl\:gap-y-3-5 {
    row-gap: 0.875rem !important;
  }
}
.gap-4 {
  gap: 1rem !important;
}

.gap-x-4 {
  column-gap: 1rem !important;
}

.gap-y-4 {
  row-gap: 1rem !important;
}

@media (min-width: 640px) {
  .sm\:gap-4 {
    gap: 1rem !important;
  }
  .sm\:gap-x-4 {
    column-gap: 1rem !important;
  }
  .sm\:gap-y-4 {
    row-gap: 1rem !important;
  }
}
@media (min-width: 768px) {
  .md\:gap-4 {
    gap: 1rem !important;
  }
  .md\:gap-x-4 {
    column-gap: 1rem !important;
  }
  .md\:gap-y-4 {
    row-gap: 1rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:gap-4 {
    gap: 1rem !important;
  }
  .lg\:gap-x-4 {
    column-gap: 1rem !important;
  }
  .lg\:gap-y-4 {
    row-gap: 1rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:gap-4 {
    gap: 1rem !important;
  }
  .xl\:gap-x-4 {
    column-gap: 1rem !important;
  }
  .xl\:gap-y-4 {
    row-gap: 1rem !important;
  }
}
.gap-5 {
  gap: 1.25rem !important;
}

.gap-x-5 {
  column-gap: 1.25rem !important;
}

.gap-y-5 {
  row-gap: 1.25rem !important;
}

@media (min-width: 640px) {
  .sm\:gap-5 {
    gap: 1.25rem !important;
  }
  .sm\:gap-x-5 {
    column-gap: 1.25rem !important;
  }
  .sm\:gap-y-5 {
    row-gap: 1.25rem !important;
  }
}
@media (min-width: 768px) {
  .md\:gap-5 {
    gap: 1.25rem !important;
  }
  .md\:gap-x-5 {
    column-gap: 1.25rem !important;
  }
  .md\:gap-y-5 {
    row-gap: 1.25rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:gap-5 {
    gap: 1.25rem !important;
  }
  .lg\:gap-x-5 {
    column-gap: 1.25rem !important;
  }
  .lg\:gap-y-5 {
    row-gap: 1.25rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:gap-5 {
    gap: 1.25rem !important;
  }
  .xl\:gap-x-5 {
    column-gap: 1.25rem !important;
  }
  .xl\:gap-y-5 {
    row-gap: 1.25rem !important;
  }
}
.gap-6 {
  gap: 1.5rem !important;
}

.gap-x-6 {
  column-gap: 1.5rem !important;
}

.gap-y-6 {
  row-gap: 1.5rem !important;
}

@media (min-width: 640px) {
  .sm\:gap-6 {
    gap: 1.5rem !important;
  }
  .sm\:gap-x-6 {
    column-gap: 1.5rem !important;
  }
  .sm\:gap-y-6 {
    row-gap: 1.5rem !important;
  }
}
@media (min-width: 768px) {
  .md\:gap-6 {
    gap: 1.5rem !important;
  }
  .md\:gap-x-6 {
    column-gap: 1.5rem !important;
  }
  .md\:gap-y-6 {
    row-gap: 1.5rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:gap-6 {
    gap: 1.5rem !important;
  }
  .lg\:gap-x-6 {
    column-gap: 1.5rem !important;
  }
  .lg\:gap-y-6 {
    row-gap: 1.5rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:gap-6 {
    gap: 1.5rem !important;
  }
  .xl\:gap-x-6 {
    column-gap: 1.5rem !important;
  }
  .xl\:gap-y-6 {
    row-gap: 1.5rem !important;
  }
}
.gap-7 {
  gap: 1.75rem !important;
}

.gap-x-7 {
  column-gap: 1.75rem !important;
}

.gap-y-7 {
  row-gap: 1.75rem !important;
}

@media (min-width: 640px) {
  .sm\:gap-7 {
    gap: 1.75rem !important;
  }
  .sm\:gap-x-7 {
    column-gap: 1.75rem !important;
  }
  .sm\:gap-y-7 {
    row-gap: 1.75rem !important;
  }
}
@media (min-width: 768px) {
  .md\:gap-7 {
    gap: 1.75rem !important;
  }
  .md\:gap-x-7 {
    column-gap: 1.75rem !important;
  }
  .md\:gap-y-7 {
    row-gap: 1.75rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:gap-7 {
    gap: 1.75rem !important;
  }
  .lg\:gap-x-7 {
    column-gap: 1.75rem !important;
  }
  .lg\:gap-y-7 {
    row-gap: 1.75rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:gap-7 {
    gap: 1.75rem !important;
  }
  .xl\:gap-x-7 {
    column-gap: 1.75rem !important;
  }
  .xl\:gap-y-7 {
    row-gap: 1.75rem !important;
  }
}
.gap-8 {
  gap: 2rem !important;
}

.gap-x-8 {
  column-gap: 2rem !important;
}

.gap-y-8 {
  row-gap: 2rem !important;
}

@media (min-width: 640px) {
  .sm\:gap-8 {
    gap: 2rem !important;
  }
  .sm\:gap-x-8 {
    column-gap: 2rem !important;
  }
  .sm\:gap-y-8 {
    row-gap: 2rem !important;
  }
}
@media (min-width: 768px) {
  .md\:gap-8 {
    gap: 2rem !important;
  }
  .md\:gap-x-8 {
    column-gap: 2rem !important;
  }
  .md\:gap-y-8 {
    row-gap: 2rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:gap-8 {
    gap: 2rem !important;
  }
  .lg\:gap-x-8 {
    column-gap: 2rem !important;
  }
  .lg\:gap-y-8 {
    row-gap: 2rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:gap-8 {
    gap: 2rem !important;
  }
  .xl\:gap-x-8 {
    column-gap: 2rem !important;
  }
  .xl\:gap-y-8 {
    row-gap: 2rem !important;
  }
}
.gap-9 {
  gap: 2.25rem !important;
}

.gap-x-9 {
  column-gap: 2.25rem !important;
}

.gap-y-9 {
  row-gap: 2.25rem !important;
}

@media (min-width: 640px) {
  .sm\:gap-9 {
    gap: 2.25rem !important;
  }
  .sm\:gap-x-9 {
    column-gap: 2.25rem !important;
  }
  .sm\:gap-y-9 {
    row-gap: 2.25rem !important;
  }
}
@media (min-width: 768px) {
  .md\:gap-9 {
    gap: 2.25rem !important;
  }
  .md\:gap-x-9 {
    column-gap: 2.25rem !important;
  }
  .md\:gap-y-9 {
    row-gap: 2.25rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:gap-9 {
    gap: 2.25rem !important;
  }
  .lg\:gap-x-9 {
    column-gap: 2.25rem !important;
  }
  .lg\:gap-y-9 {
    row-gap: 2.25rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:gap-9 {
    gap: 2.25rem !important;
  }
  .xl\:gap-x-9 {
    column-gap: 2.25rem !important;
  }
  .xl\:gap-y-9 {
    row-gap: 2.25rem !important;
  }
}
.gap-10 {
  gap: 2.5rem !important;
}

.gap-x-10 {
  column-gap: 2.5rem !important;
}

.gap-y-10 {
  row-gap: 2.5rem !important;
}

@media (min-width: 640px) {
  .sm\:gap-10 {
    gap: 2.5rem !important;
  }
  .sm\:gap-x-10 {
    column-gap: 2.5rem !important;
  }
  .sm\:gap-y-10 {
    row-gap: 2.5rem !important;
  }
}
@media (min-width: 768px) {
  .md\:gap-10 {
    gap: 2.5rem !important;
  }
  .md\:gap-x-10 {
    column-gap: 2.5rem !important;
  }
  .md\:gap-y-10 {
    row-gap: 2.5rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:gap-10 {
    gap: 2.5rem !important;
  }
  .lg\:gap-x-10 {
    column-gap: 2.5rem !important;
  }
  .lg\:gap-y-10 {
    row-gap: 2.5rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:gap-10 {
    gap: 2.5rem !important;
  }
  .xl\:gap-x-10 {
    column-gap: 2.5rem !important;
  }
  .xl\:gap-y-10 {
    row-gap: 2.5rem !important;
  }
}
.gap-12 {
  gap: 3rem !important;
}

.gap-x-12 {
  column-gap: 3rem !important;
}

.gap-y-12 {
  row-gap: 3rem !important;
}

@media (min-width: 640px) {
  .sm\:gap-12 {
    gap: 3rem !important;
  }
  .sm\:gap-x-12 {
    column-gap: 3rem !important;
  }
  .sm\:gap-y-12 {
    row-gap: 3rem !important;
  }
}
@media (min-width: 768px) {
  .md\:gap-12 {
    gap: 3rem !important;
  }
  .md\:gap-x-12 {
    column-gap: 3rem !important;
  }
  .md\:gap-y-12 {
    row-gap: 3rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:gap-12 {
    gap: 3rem !important;
  }
  .lg\:gap-x-12 {
    column-gap: 3rem !important;
  }
  .lg\:gap-y-12 {
    row-gap: 3rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:gap-12 {
    gap: 3rem !important;
  }
  .xl\:gap-x-12 {
    column-gap: 3rem !important;
  }
  .xl\:gap-y-12 {
    row-gap: 3rem !important;
  }
}
.gap-14 {
  gap: 3.5rem !important;
}

.gap-x-14 {
  column-gap: 3.5rem !important;
}

.gap-y-14 {
  row-gap: 3.5rem !important;
}

@media (min-width: 640px) {
  .sm\:gap-14 {
    gap: 3.5rem !important;
  }
  .sm\:gap-x-14 {
    column-gap: 3.5rem !important;
  }
  .sm\:gap-y-14 {
    row-gap: 3.5rem !important;
  }
}
@media (min-width: 768px) {
  .md\:gap-14 {
    gap: 3.5rem !important;
  }
  .md\:gap-x-14 {
    column-gap: 3.5rem !important;
  }
  .md\:gap-y-14 {
    row-gap: 3.5rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:gap-14 {
    gap: 3.5rem !important;
  }
  .lg\:gap-x-14 {
    column-gap: 3.5rem !important;
  }
  .lg\:gap-y-14 {
    row-gap: 3.5rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:gap-14 {
    gap: 3.5rem !important;
  }
  .xl\:gap-x-14 {
    column-gap: 3.5rem !important;
  }
  .xl\:gap-y-14 {
    row-gap: 3.5rem !important;
  }
}
.gap-16 {
  gap: 4rem !important;
}

.gap-x-16 {
  column-gap: 4rem !important;
}

.gap-y-16 {
  row-gap: 4rem !important;
}

@media (min-width: 640px) {
  .sm\:gap-16 {
    gap: 4rem !important;
  }
  .sm\:gap-x-16 {
    column-gap: 4rem !important;
  }
  .sm\:gap-y-16 {
    row-gap: 4rem !important;
  }
}
@media (min-width: 768px) {
  .md\:gap-16 {
    gap: 4rem !important;
  }
  .md\:gap-x-16 {
    column-gap: 4rem !important;
  }
  .md\:gap-y-16 {
    row-gap: 4rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:gap-16 {
    gap: 4rem !important;
  }
  .lg\:gap-x-16 {
    column-gap: 4rem !important;
  }
  .lg\:gap-y-16 {
    row-gap: 4rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:gap-16 {
    gap: 4rem !important;
  }
  .xl\:gap-x-16 {
    column-gap: 4rem !important;
  }
  .xl\:gap-y-16 {
    row-gap: 4rem !important;
  }
}
.gap-20 {
  gap: 5rem !important;
}

.gap-x-20 {
  column-gap: 5rem !important;
}

.gap-y-20 {
  row-gap: 5rem !important;
}

@media (min-width: 640px) {
  .sm\:gap-20 {
    gap: 5rem !important;
  }
  .sm\:gap-x-20 {
    column-gap: 5rem !important;
  }
  .sm\:gap-y-20 {
    row-gap: 5rem !important;
  }
}
@media (min-width: 768px) {
  .md\:gap-20 {
    gap: 5rem !important;
  }
  .md\:gap-x-20 {
    column-gap: 5rem !important;
  }
  .md\:gap-y-20 {
    row-gap: 5rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:gap-20 {
    gap: 5rem !important;
  }
  .lg\:gap-x-20 {
    column-gap: 5rem !important;
  }
  .lg\:gap-y-20 {
    row-gap: 5rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:gap-20 {
    gap: 5rem !important;
  }
  .xl\:gap-x-20 {
    column-gap: 5rem !important;
  }
  .xl\:gap-y-20 {
    row-gap: 5rem !important;
  }
}
.gap-24 {
  gap: 6rem !important;
}

.gap-x-24 {
  column-gap: 6rem !important;
}

.gap-y-24 {
  row-gap: 6rem !important;
}

@media (min-width: 640px) {
  .sm\:gap-24 {
    gap: 6rem !important;
  }
  .sm\:gap-x-24 {
    column-gap: 6rem !important;
  }
  .sm\:gap-y-24 {
    row-gap: 6rem !important;
  }
}
@media (min-width: 768px) {
  .md\:gap-24 {
    gap: 6rem !important;
  }
  .md\:gap-x-24 {
    column-gap: 6rem !important;
  }
  .md\:gap-y-24 {
    row-gap: 6rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:gap-24 {
    gap: 6rem !important;
  }
  .lg\:gap-x-24 {
    column-gap: 6rem !important;
  }
  .lg\:gap-y-24 {
    row-gap: 6rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:gap-24 {
    gap: 6rem !important;
  }
  .xl\:gap-x-24 {
    column-gap: 6rem !important;
  }
  .xl\:gap-y-24 {
    row-gap: 6rem !important;
  }
}
.gap-28 {
  gap: 7rem !important;
}

.gap-x-28 {
  column-gap: 7rem !important;
}

.gap-y-28 {
  row-gap: 7rem !important;
}

@media (min-width: 640px) {
  .sm\:gap-28 {
    gap: 7rem !important;
  }
  .sm\:gap-x-28 {
    column-gap: 7rem !important;
  }
  .sm\:gap-y-28 {
    row-gap: 7rem !important;
  }
}
@media (min-width: 768px) {
  .md\:gap-28 {
    gap: 7rem !important;
  }
  .md\:gap-x-28 {
    column-gap: 7rem !important;
  }
  .md\:gap-y-28 {
    row-gap: 7rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:gap-28 {
    gap: 7rem !important;
  }
  .lg\:gap-x-28 {
    column-gap: 7rem !important;
  }
  .lg\:gap-y-28 {
    row-gap: 7rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:gap-28 {
    gap: 7rem !important;
  }
  .xl\:gap-x-28 {
    column-gap: 7rem !important;
  }
  .xl\:gap-y-28 {
    row-gap: 7rem !important;
  }
}
.gap-32 {
  gap: 8rem !important;
}

.gap-x-32 {
  column-gap: 8rem !important;
}

.gap-y-32 {
  row-gap: 8rem !important;
}

@media (min-width: 640px) {
  .sm\:gap-32 {
    gap: 8rem !important;
  }
  .sm\:gap-x-32 {
    column-gap: 8rem !important;
  }
  .sm\:gap-y-32 {
    row-gap: 8rem !important;
  }
}
@media (min-width: 768px) {
  .md\:gap-32 {
    gap: 8rem !important;
  }
  .md\:gap-x-32 {
    column-gap: 8rem !important;
  }
  .md\:gap-y-32 {
    row-gap: 8rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:gap-32 {
    gap: 8rem !important;
  }
  .lg\:gap-x-32 {
    column-gap: 8rem !important;
  }
  .lg\:gap-y-32 {
    row-gap: 8rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:gap-32 {
    gap: 8rem !important;
  }
  .xl\:gap-x-32 {
    column-gap: 8rem !important;
  }
  .xl\:gap-y-32 {
    row-gap: 8rem !important;
  }
}
.gap-36 {
  gap: 9rem !important;
}

.gap-x-36 {
  column-gap: 9rem !important;
}

.gap-y-36 {
  row-gap: 9rem !important;
}

@media (min-width: 640px) {
  .sm\:gap-36 {
    gap: 9rem !important;
  }
  .sm\:gap-x-36 {
    column-gap: 9rem !important;
  }
  .sm\:gap-y-36 {
    row-gap: 9rem !important;
  }
}
@media (min-width: 768px) {
  .md\:gap-36 {
    gap: 9rem !important;
  }
  .md\:gap-x-36 {
    column-gap: 9rem !important;
  }
  .md\:gap-y-36 {
    row-gap: 9rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:gap-36 {
    gap: 9rem !important;
  }
  .lg\:gap-x-36 {
    column-gap: 9rem !important;
  }
  .lg\:gap-y-36 {
    row-gap: 9rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:gap-36 {
    gap: 9rem !important;
  }
  .xl\:gap-x-36 {
    column-gap: 9rem !important;
  }
  .xl\:gap-y-36 {
    row-gap: 9rem !important;
  }
}
.gap-40 {
  gap: 10rem !important;
}

.gap-x-40 {
  column-gap: 10rem !important;
}

.gap-y-40 {
  row-gap: 10rem !important;
}

@media (min-width: 640px) {
  .sm\:gap-40 {
    gap: 10rem !important;
  }
  .sm\:gap-x-40 {
    column-gap: 10rem !important;
  }
  .sm\:gap-y-40 {
    row-gap: 10rem !important;
  }
}
@media (min-width: 768px) {
  .md\:gap-40 {
    gap: 10rem !important;
  }
  .md\:gap-x-40 {
    column-gap: 10rem !important;
  }
  .md\:gap-y-40 {
    row-gap: 10rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:gap-40 {
    gap: 10rem !important;
  }
  .lg\:gap-x-40 {
    column-gap: 10rem !important;
  }
  .lg\:gap-y-40 {
    row-gap: 10rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:gap-40 {
    gap: 10rem !important;
  }
  .xl\:gap-x-40 {
    column-gap: 10rem !important;
  }
  .xl\:gap-y-40 {
    row-gap: 10rem !important;
  }
}
.gap-44 {
  gap: 11rem !important;
}

.gap-x-44 {
  column-gap: 11rem !important;
}

.gap-y-44 {
  row-gap: 11rem !important;
}

@media (min-width: 640px) {
  .sm\:gap-44 {
    gap: 11rem !important;
  }
  .sm\:gap-x-44 {
    column-gap: 11rem !important;
  }
  .sm\:gap-y-44 {
    row-gap: 11rem !important;
  }
}
@media (min-width: 768px) {
  .md\:gap-44 {
    gap: 11rem !important;
  }
  .md\:gap-x-44 {
    column-gap: 11rem !important;
  }
  .md\:gap-y-44 {
    row-gap: 11rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:gap-44 {
    gap: 11rem !important;
  }
  .lg\:gap-x-44 {
    column-gap: 11rem !important;
  }
  .lg\:gap-y-44 {
    row-gap: 11rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:gap-44 {
    gap: 11rem !important;
  }
  .xl\:gap-x-44 {
    column-gap: 11rem !important;
  }
  .xl\:gap-y-44 {
    row-gap: 11rem !important;
  }
}
.gap-48 {
  gap: 12rem !important;
}

.gap-x-48 {
  column-gap: 12rem !important;
}

.gap-y-48 {
  row-gap: 12rem !important;
}

@media (min-width: 640px) {
  .sm\:gap-48 {
    gap: 12rem !important;
  }
  .sm\:gap-x-48 {
    column-gap: 12rem !important;
  }
  .sm\:gap-y-48 {
    row-gap: 12rem !important;
  }
}
@media (min-width: 768px) {
  .md\:gap-48 {
    gap: 12rem !important;
  }
  .md\:gap-x-48 {
    column-gap: 12rem !important;
  }
  .md\:gap-y-48 {
    row-gap: 12rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\:gap-48 {
    gap: 12rem !important;
  }
  .lg\:gap-x-48 {
    column-gap: 12rem !important;
  }
  .lg\:gap-y-48 {
    row-gap: 12rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\:gap-48 {
    gap: 12rem !important;
  }
  .xl\:gap-x-48 {
    column-gap: 12rem !important;
  }
  .xl\:gap-y-48 {
    row-gap: 12rem !important;
  }
}
.text-white {
  color: #ffffff;
}

.hover\:text-white:hover {
  color: #ffffff;
}

.text-black {
  color: #000000;
}

.hover\:text-black:hover {
  color: #000000;
}

.text-red-50 {
  color: #ffebee;
}

.hover\:text-red-50:hover {
  color: #ffebee;
}

.text-red-100 {
  color: #ffcdd2;
}

.hover\:text-red-100:hover {
  color: #ffcdd2;
}

.text-red-200 {
  color: #ef9a9a;
}

.hover\:text-red-200:hover {
  color: #ef9a9a;
}

.text-red-300 {
  color: #e57373;
}

.hover\:text-red-300:hover {
  color: #e57373;
}

.text-red-400 {
  color: #ef5350;
}

.hover\:text-red-400:hover {
  color: #ef5350;
}

.text-red-500 {
  color: #f44336;
}

.hover\:text-red-500:hover {
  color: #f44336;
}

.text-red-600 {
  color: #e53935;
}

.hover\:text-red-600:hover {
  color: #e53935;
}

.text-red-700 {
  color: #d32f2f;
}

.hover\:text-red-700:hover {
  color: #d32f2f;
}

.text-red-800 {
  color: #c62828;
}

.hover\:text-red-800:hover {
  color: #c62828;
}

.text-red-900 {
  color: #b71c1c;
}

.hover\:text-red-900:hover {
  color: #b71c1c;
}

.text-pink-50 {
  color: #fce4ec;
}

.hover\:text-pink-50:hover {
  color: #fce4ec;
}

.text-pink-100 {
  color: #f8bbd0;
}

.hover\:text-pink-100:hover {
  color: #f8bbd0;
}

.text-pink-200 {
  color: #f48fb1;
}

.hover\:text-pink-200:hover {
  color: #f48fb1;
}

.text-pink-300 {
  color: #f06292;
}

.hover\:text-pink-300:hover {
  color: #f06292;
}

.text-pink-400 {
  color: #ec407a;
}

.hover\:text-pink-400:hover {
  color: #ec407a;
}

.text-pink-500 {
  color: #e91e63;
}

.hover\:text-pink-500:hover {
  color: #e91e63;
}

.text-pink-600 {
  color: #d81b60;
}

.hover\:text-pink-600:hover {
  color: #d81b60;
}

.text-pink-700 {
  color: #c2185b;
}

.hover\:text-pink-700:hover {
  color: #c2185b;
}

.text-pink-800 {
  color: #ad1457;
}

.hover\:text-pink-800:hover {
  color: #ad1457;
}

.text-pink-900 {
  color: #880e4f;
}

.hover\:text-pink-900:hover {
  color: #880e4f;
}

.text-purple-50 {
  color: #f3e5f5;
}

.hover\:text-purple-50:hover {
  color: #f3e5f5;
}

.text-purple-100 {
  color: #e1bee7;
}

.hover\:text-purple-100:hover {
  color: #e1bee7;
}

.text-purple-200 {
  color: #ce93d8;
}

.hover\:text-purple-200:hover {
  color: #ce93d8;
}

.text-purple-300 {
  color: #ba68c8;
}

.hover\:text-purple-300:hover {
  color: #ba68c8;
}

.text-purple-400 {
  color: #ab47bc;
}

.hover\:text-purple-400:hover {
  color: #ab47bc;
}

.text-purple-500 {
  color: #9c27b0;
}

.hover\:text-purple-500:hover {
  color: #9c27b0;
}

.text-purple-600 {
  color: #8e24aa;
}

.hover\:text-purple-600:hover {
  color: #8e24aa;
}

.text-purple-700 {
  color: #7b1fa2;
}

.hover\:text-purple-700:hover {
  color: #7b1fa2;
}

.text-purple-800 {
  color: #6a1b9a;
}

.hover\:text-purple-800:hover {
  color: #6a1b9a;
}

.text-purple-900 {
  color: #4a148c;
}

.hover\:text-purple-900:hover {
  color: #4a148c;
}

.text-indigo-50 {
  color: #e8eaf6;
}

.hover\:text-indigo-50:hover {
  color: #e8eaf6;
}

.text-indigo-100 {
  color: #c5cae9;
}

.hover\:text-indigo-100:hover {
  color: #c5cae9;
}

.text-indigo-200 {
  color: #9fa8da;
}

.hover\:text-indigo-200:hover {
  color: #9fa8da;
}

.text-indigo-300 {
  color: #7986cb;
}

.hover\:text-indigo-300:hover {
  color: #7986cb;
}

.text-indigo-400 {
  color: #5c6bc0;
}

.hover\:text-indigo-400:hover {
  color: #5c6bc0;
}

.text-indigo-500 {
  color: #3f51b5;
}

.hover\:text-indigo-500:hover {
  color: #3f51b5;
}

.text-indigo-600 {
  color: #3949ab;
}

.hover\:text-indigo-600:hover {
  color: #3949ab;
}

.text-indigo-700 {
  color: #303f9f;
}

.hover\:text-indigo-700:hover {
  color: #303f9f;
}

.text-indigo-800 {
  color: #283593;
}

.hover\:text-indigo-800:hover {
  color: #283593;
}

.text-indigo-900 {
  color: #1a237e;
}

.hover\:text-indigo-900:hover {
  color: #1a237e;
}

.text-blue-50 {
  color: #e3f2fd;
}

.hover\:text-blue-50:hover {
  color: #e3f2fd;
}

.text-blue-100 {
  color: #bbdefb;
}

.hover\:text-blue-100:hover {
  color: #bbdefb;
}

.text-blue-200 {
  color: #90caf9;
}

.hover\:text-blue-200:hover {
  color: #90caf9;
}

.text-blue-300 {
  color: #64b5f6;
}

.hover\:text-blue-300:hover {
  color: #64b5f6;
}

.text-blue-400 {
  color: #42a5f5;
}

.hover\:text-blue-400:hover {
  color: #42a5f5;
}

.text-blue-500 {
  color: #2196f3;
}

.hover\:text-blue-500:hover {
  color: #2196f3;
}

.text-blue-600 {
  color: #1e88e5;
}

.hover\:text-blue-600:hover {
  color: #1e88e5;
}

.text-blue-700 {
  color: #1976d2;
}

.hover\:text-blue-700:hover {
  color: #1976d2;
}

.text-blue-800 {
  color: #1565c0;
}

.hover\:text-blue-800:hover {
  color: #1565c0;
}

.text-blue-900 {
  color: #0d47a1;
}

.hover\:text-blue-900:hover {
  color: #0d47a1;
}

.text-cyan-50 {
  color: #e0f7fa;
}

.hover\:text-cyan-50:hover {
  color: #e0f7fa;
}

.text-cyan-100 {
  color: #b2ebf2;
}

.hover\:text-cyan-100:hover {
  color: #b2ebf2;
}

.text-cyan-200 {
  color: #80deea;
}

.hover\:text-cyan-200:hover {
  color: #80deea;
}

.text-cyan-300 {
  color: #4dd0e1;
}

.hover\:text-cyan-300:hover {
  color: #4dd0e1;
}

.text-cyan-400 {
  color: #26c6da;
}

.hover\:text-cyan-400:hover {
  color: #26c6da;
}

.text-cyan-500 {
  color: #00bcd4;
}

.hover\:text-cyan-500:hover {
  color: #00bcd4;
}

.text-cyan-600 {
  color: #00acc1;
}

.hover\:text-cyan-600:hover {
  color: #00acc1;
}

.text-cyan-700 {
  color: #0097a7;
}

.hover\:text-cyan-700:hover {
  color: #0097a7;
}

.text-cyan-800 {
  color: #00838f;
}

.hover\:text-cyan-800:hover {
  color: #00838f;
}

.text-cyan-900 {
  color: #006064;
}

.hover\:text-cyan-900:hover {
  color: #006064;
}

.text-green-50 {
  color: #e8f5e9;
}

.hover\:text-green-50:hover {
  color: #e8f5e9;
}

.text-green-100 {
  color: #c8e6c9;
}

.hover\:text-green-100:hover {
  color: #c8e6c9;
}

.text-green-200 {
  color: #a5d6a7;
}

.hover\:text-green-200:hover {
  color: #a5d6a7;
}

.text-green-300 {
  color: #81c784;
}

.hover\:text-green-300:hover {
  color: #81c784;
}

.text-green-400 {
  color: #66bb6a;
}

.hover\:text-green-400:hover {
  color: #66bb6a;
}

.text-green-500 {
  color: #4caf50;
}

.hover\:text-green-500:hover {
  color: #4caf50;
}

.text-green-600 {
  color: #43a047;
}

.hover\:text-green-600:hover {
  color: #43a047;
}

.text-green-700 {
  color: #388e3c;
}

.hover\:text-green-700:hover {
  color: #388e3c;
}

.text-green-800 {
  color: #2e7d32;
}

.hover\:text-green-800:hover {
  color: #2e7d32;
}

.text-green-900 {
  color: #1b5e20;
}

.hover\:text-green-900:hover {
  color: #1b5e20;
}

.text-yellow-50 {
  color: #fffde7;
}

.hover\:text-yellow-50:hover {
  color: #fffde7;
}

.text-yellow-100 {
  color: #fff9c4;
}

.hover\:text-yellow-100:hover {
  color: #fff9c4;
}

.text-yellow-200 {
  color: #fff59d;
}

.hover\:text-yellow-200:hover {
  color: #fff59d;
}

.text-yellow-300 {
  color: #fff176;
}

.hover\:text-yellow-300:hover {
  color: #fff176;
}

.text-yellow-400 {
  color: #ffee58;
}

.hover\:text-yellow-400:hover {
  color: #ffee58;
}

.text-yellow-500 {
  color: #ffeb3b;
}

.hover\:text-yellow-500:hover {
  color: #ffeb3b;
}

.text-yellow-600 {
  color: #fdd835;
}

.hover\:text-yellow-600:hover {
  color: #fdd835;
}

.text-yellow-700 {
  color: #fbc02d;
}

.hover\:text-yellow-700:hover {
  color: #fbc02d;
}

.text-yellow-800 {
  color: #f9a825;
}

.hover\:text-yellow-800:hover {
  color: #f9a825;
}

.text-yellow-900 {
  color: #f57f17;
}

.hover\:text-yellow-900:hover {
  color: #f57f17;
}

.text-orange-50 {
  color: #fff3e0;
}

.hover\:text-orange-50:hover {
  color: #fff3e0;
}

.text-orange-100 {
  color: #ffe0b2;
}

.hover\:text-orange-100:hover {
  color: #ffe0b2;
}

.text-orange-200 {
  color: #ffcc80;
}

.hover\:text-orange-200:hover {
  color: #ffcc80;
}

.text-orange-300 {
  color: #ffb74d;
}

.hover\:text-orange-300:hover {
  color: #ffb74d;
}

.text-orange-400 {
  color: #ffa726;
}

.hover\:text-orange-400:hover {
  color: #ffa726;
}

.text-orange-500 {
  color: #ff9800;
}

.hover\:text-orange-500:hover {
  color: #ff9800;
}

.text-orange-600 {
  color: #fb8c00;
}

.hover\:text-orange-600:hover {
  color: #fb8c00;
}

.text-orange-700 {
  color: #f57c00;
}

.hover\:text-orange-700:hover {
  color: #f57c00;
}

.text-orange-800 {
  color: #ef6c00;
}

.hover\:text-orange-800:hover {
  color: #ef6c00;
}

.text-orange-900 {
  color: #e65100;
}

.hover\:text-orange-900:hover {
  color: #e65100;
}

.text-grey-50 {
  color: #fafafa;
}

.hover\:text-grey-50:hover {
  color: #fafafa;
}

.text-grey-100 {
  color: #f5f5f5;
}

.hover\:text-grey-100:hover {
  color: #f5f5f5;
}

.text-grey-200 {
  color: #eeeeee;
}

.hover\:text-grey-200:hover {
  color: #eeeeee;
}

.text-grey-300 {
  color: #e0e0e0;
}

.hover\:text-grey-300:hover {
  color: #e0e0e0;
}

.text-grey-400 {
  color: #bdbdbd;
}

.hover\:text-grey-400:hover {
  color: #bdbdbd;
}

.text-grey-500 {
  color: #9e9e9e;
}

.hover\:text-grey-500:hover {
  color: #9e9e9e;
}

.text-grey-600 {
  color: #757575;
}

.hover\:text-grey-600:hover {
  color: #757575;
}

.text-grey-700 {
  color: #616161;
}

.hover\:text-grey-700:hover {
  color: #616161;
}

.text-grey-800 {
  color: #424242;
}

.hover\:text-grey-800:hover {
  color: #424242;
}

.text-grey-900 {
  color: #212121;
}

.hover\:text-grey-900:hover {
  color: #212121;
}

.bg-white {
  background-color: #ffffff;
}

.hover\:bg-white:hover {
  background-color: #ffffff;
}

.bg-black {
  background-color: #000000;
}

.hover\:bg-black:hover {
  background-color: #000000;
}

.bg-red-50 {
  background-color: #ffebee;
}

.hover\:bg-red-50:hover {
  background-color: #ffebee;
}

.bg-red-50\/0 {
  background-color: rgba(255, 235, 238, 0);
}

.hover\:bg-red-50\/0:hover {
  background-color: rgba(255, 235, 238, 0);
}

.bg-red-50\/5 {
  background-color: rgba(255, 235, 238, 0.05);
}

.hover\:bg-red-50\/5:hover {
  background-color: rgba(255, 235, 238, 0.05);
}

.bg-red-50\/10 {
  background-color: rgba(255, 235, 238, 0.1);
}

.hover\:bg-red-50\/10:hover {
  background-color: rgba(255, 235, 238, 0.1);
}

.bg-red-50\/20 {
  background-color: rgba(255, 235, 238, 0.2);
}

.hover\:bg-red-50\/20:hover {
  background-color: rgba(255, 235, 238, 0.2);
}

.bg-red-50\/25 {
  background-color: rgba(255, 235, 238, 0.25);
}

.hover\:bg-red-50\/25:hover {
  background-color: rgba(255, 235, 238, 0.25);
}

.bg-red-50\/30 {
  background-color: rgba(255, 235, 238, 0.3);
}

.hover\:bg-red-50\/30:hover {
  background-color: rgba(255, 235, 238, 0.3);
}

.bg-red-50\/40 {
  background-color: rgba(255, 235, 238, 0.4);
}

.hover\:bg-red-50\/40:hover {
  background-color: rgba(255, 235, 238, 0.4);
}

.bg-red-50\/50 {
  background-color: rgba(255, 235, 238, 0.5);
}

.hover\:bg-red-50\/50:hover {
  background-color: rgba(255, 235, 238, 0.5);
}

.bg-red-50\/60 {
  background-color: rgba(255, 235, 238, 0.6);
}

.hover\:bg-red-50\/60:hover {
  background-color: rgba(255, 235, 238, 0.6);
}

.bg-red-50\/70 {
  background-color: rgba(255, 235, 238, 0.7);
}

.hover\:bg-red-50\/70:hover {
  background-color: rgba(255, 235, 238, 0.7);
}

.bg-red-50\/75 {
  background-color: rgba(255, 235, 238, 0.75);
}

.hover\:bg-red-50\/75:hover {
  background-color: rgba(255, 235, 238, 0.75);
}

.bg-red-50\/80 {
  background-color: rgba(255, 235, 238, 0.8);
}

.hover\:bg-red-50\/80:hover {
  background-color: rgba(255, 235, 238, 0.8);
}

.bg-red-50\/90 {
  background-color: rgba(255, 235, 238, 0.9);
}

.hover\:bg-red-50\/90:hover {
  background-color: rgba(255, 235, 238, 0.9);
}

.bg-red-50\/95 {
  background-color: rgba(255, 235, 238, 0.95);
}

.hover\:bg-red-50\/95:hover {
  background-color: rgba(255, 235, 238, 0.95);
}

.bg-red-50\/100 {
  background-color: #ffebee;
}

.hover\:bg-red-50\/100:hover {
  background-color: #ffebee;
}

.bg-red-100 {
  background-color: #ffcdd2;
}

.hover\:bg-red-100:hover {
  background-color: #ffcdd2;
}

.bg-red-100\/0 {
  background-color: rgba(255, 205, 210, 0);
}

.hover\:bg-red-100\/0:hover {
  background-color: rgba(255, 205, 210, 0);
}

.bg-red-100\/5 {
  background-color: rgba(255, 205, 210, 0.05);
}

.hover\:bg-red-100\/5:hover {
  background-color: rgba(255, 205, 210, 0.05);
}

.bg-red-100\/10 {
  background-color: rgba(255, 205, 210, 0.1);
}

.hover\:bg-red-100\/10:hover {
  background-color: rgba(255, 205, 210, 0.1);
}

.bg-red-100\/20 {
  background-color: rgba(255, 205, 210, 0.2);
}

.hover\:bg-red-100\/20:hover {
  background-color: rgba(255, 205, 210, 0.2);
}

.bg-red-100\/25 {
  background-color: rgba(255, 205, 210, 0.25);
}

.hover\:bg-red-100\/25:hover {
  background-color: rgba(255, 205, 210, 0.25);
}

.bg-red-100\/30 {
  background-color: rgba(255, 205, 210, 0.3);
}

.hover\:bg-red-100\/30:hover {
  background-color: rgba(255, 205, 210, 0.3);
}

.bg-red-100\/40 {
  background-color: rgba(255, 205, 210, 0.4);
}

.hover\:bg-red-100\/40:hover {
  background-color: rgba(255, 205, 210, 0.4);
}

.bg-red-100\/50 {
  background-color: rgba(255, 205, 210, 0.5);
}

.hover\:bg-red-100\/50:hover {
  background-color: rgba(255, 205, 210, 0.5);
}

.bg-red-100\/60 {
  background-color: rgba(255, 205, 210, 0.6);
}

.hover\:bg-red-100\/60:hover {
  background-color: rgba(255, 205, 210, 0.6);
}

.bg-red-100\/70 {
  background-color: rgba(255, 205, 210, 0.7);
}

.hover\:bg-red-100\/70:hover {
  background-color: rgba(255, 205, 210, 0.7);
}

.bg-red-100\/75 {
  background-color: rgba(255, 205, 210, 0.75);
}

.hover\:bg-red-100\/75:hover {
  background-color: rgba(255, 205, 210, 0.75);
}

.bg-red-100\/80 {
  background-color: rgba(255, 205, 210, 0.8);
}

.hover\:bg-red-100\/80:hover {
  background-color: rgba(255, 205, 210, 0.8);
}

.bg-red-100\/90 {
  background-color: rgba(255, 205, 210, 0.9);
}

.hover\:bg-red-100\/90:hover {
  background-color: rgba(255, 205, 210, 0.9);
}

.bg-red-100\/95 {
  background-color: rgba(255, 205, 210, 0.95);
}

.hover\:bg-red-100\/95:hover {
  background-color: rgba(255, 205, 210, 0.95);
}

.bg-red-100\/100 {
  background-color: #ffcdd2;
}

.hover\:bg-red-100\/100:hover {
  background-color: #ffcdd2;
}

.bg-red-200 {
  background-color: #ef9a9a;
}

.hover\:bg-red-200:hover {
  background-color: #ef9a9a;
}

.bg-red-200\/0 {
  background-color: rgba(239, 154, 154, 0);
}

.hover\:bg-red-200\/0:hover {
  background-color: rgba(239, 154, 154, 0);
}

.bg-red-200\/5 {
  background-color: rgba(239, 154, 154, 0.05);
}

.hover\:bg-red-200\/5:hover {
  background-color: rgba(239, 154, 154, 0.05);
}

.bg-red-200\/10 {
  background-color: rgba(239, 154, 154, 0.1);
}

.hover\:bg-red-200\/10:hover {
  background-color: rgba(239, 154, 154, 0.1);
}

.bg-red-200\/20 {
  background-color: rgba(239, 154, 154, 0.2);
}

.hover\:bg-red-200\/20:hover {
  background-color: rgba(239, 154, 154, 0.2);
}

.bg-red-200\/25 {
  background-color: rgba(239, 154, 154, 0.25);
}

.hover\:bg-red-200\/25:hover {
  background-color: rgba(239, 154, 154, 0.25);
}

.bg-red-200\/30 {
  background-color: rgba(239, 154, 154, 0.3);
}

.hover\:bg-red-200\/30:hover {
  background-color: rgba(239, 154, 154, 0.3);
}

.bg-red-200\/40 {
  background-color: rgba(239, 154, 154, 0.4);
}

.hover\:bg-red-200\/40:hover {
  background-color: rgba(239, 154, 154, 0.4);
}

.bg-red-200\/50 {
  background-color: rgba(239, 154, 154, 0.5);
}

.hover\:bg-red-200\/50:hover {
  background-color: rgba(239, 154, 154, 0.5);
}

.bg-red-200\/60 {
  background-color: rgba(239, 154, 154, 0.6);
}

.hover\:bg-red-200\/60:hover {
  background-color: rgba(239, 154, 154, 0.6);
}

.bg-red-200\/70 {
  background-color: rgba(239, 154, 154, 0.7);
}

.hover\:bg-red-200\/70:hover {
  background-color: rgba(239, 154, 154, 0.7);
}

.bg-red-200\/75 {
  background-color: rgba(239, 154, 154, 0.75);
}

.hover\:bg-red-200\/75:hover {
  background-color: rgba(239, 154, 154, 0.75);
}

.bg-red-200\/80 {
  background-color: rgba(239, 154, 154, 0.8);
}

.hover\:bg-red-200\/80:hover {
  background-color: rgba(239, 154, 154, 0.8);
}

.bg-red-200\/90 {
  background-color: rgba(239, 154, 154, 0.9);
}

.hover\:bg-red-200\/90:hover {
  background-color: rgba(239, 154, 154, 0.9);
}

.bg-red-200\/95 {
  background-color: rgba(239, 154, 154, 0.95);
}

.hover\:bg-red-200\/95:hover {
  background-color: rgba(239, 154, 154, 0.95);
}

.bg-red-200\/100 {
  background-color: #ef9a9a;
}

.hover\:bg-red-200\/100:hover {
  background-color: #ef9a9a;
}

.bg-red-300 {
  background-color: #e57373;
}

.hover\:bg-red-300:hover {
  background-color: #e57373;
}

.bg-red-300\/0 {
  background-color: rgba(229, 115, 115, 0);
}

.hover\:bg-red-300\/0:hover {
  background-color: rgba(229, 115, 115, 0);
}

.bg-red-300\/5 {
  background-color: rgba(229, 115, 115, 0.05);
}

.hover\:bg-red-300\/5:hover {
  background-color: rgba(229, 115, 115, 0.05);
}

.bg-red-300\/10 {
  background-color: rgba(229, 115, 115, 0.1);
}

.hover\:bg-red-300\/10:hover {
  background-color: rgba(229, 115, 115, 0.1);
}

.bg-red-300\/20 {
  background-color: rgba(229, 115, 115, 0.2);
}

.hover\:bg-red-300\/20:hover {
  background-color: rgba(229, 115, 115, 0.2);
}

.bg-red-300\/25 {
  background-color: rgba(229, 115, 115, 0.25);
}

.hover\:bg-red-300\/25:hover {
  background-color: rgba(229, 115, 115, 0.25);
}

.bg-red-300\/30 {
  background-color: rgba(229, 115, 115, 0.3);
}

.hover\:bg-red-300\/30:hover {
  background-color: rgba(229, 115, 115, 0.3);
}

.bg-red-300\/40 {
  background-color: rgba(229, 115, 115, 0.4);
}

.hover\:bg-red-300\/40:hover {
  background-color: rgba(229, 115, 115, 0.4);
}

.bg-red-300\/50 {
  background-color: rgba(229, 115, 115, 0.5);
}

.hover\:bg-red-300\/50:hover {
  background-color: rgba(229, 115, 115, 0.5);
}

.bg-red-300\/60 {
  background-color: rgba(229, 115, 115, 0.6);
}

.hover\:bg-red-300\/60:hover {
  background-color: rgba(229, 115, 115, 0.6);
}

.bg-red-300\/70 {
  background-color: rgba(229, 115, 115, 0.7);
}

.hover\:bg-red-300\/70:hover {
  background-color: rgba(229, 115, 115, 0.7);
}

.bg-red-300\/75 {
  background-color: rgba(229, 115, 115, 0.75);
}

.hover\:bg-red-300\/75:hover {
  background-color: rgba(229, 115, 115, 0.75);
}

.bg-red-300\/80 {
  background-color: rgba(229, 115, 115, 0.8);
}

.hover\:bg-red-300\/80:hover {
  background-color: rgba(229, 115, 115, 0.8);
}

.bg-red-300\/90 {
  background-color: rgba(229, 115, 115, 0.9);
}

.hover\:bg-red-300\/90:hover {
  background-color: rgba(229, 115, 115, 0.9);
}

.bg-red-300\/95 {
  background-color: rgba(229, 115, 115, 0.95);
}

.hover\:bg-red-300\/95:hover {
  background-color: rgba(229, 115, 115, 0.95);
}

.bg-red-300\/100 {
  background-color: #e57373;
}

.hover\:bg-red-300\/100:hover {
  background-color: #e57373;
}

.bg-red-400 {
  background-color: #ef5350;
}

.hover\:bg-red-400:hover {
  background-color: #ef5350;
}

.bg-red-400\/0 {
  background-color: rgba(239, 83, 80, 0);
}

.hover\:bg-red-400\/0:hover {
  background-color: rgba(239, 83, 80, 0);
}

.bg-red-400\/5 {
  background-color: rgba(239, 83, 80, 0.05);
}

.hover\:bg-red-400\/5:hover {
  background-color: rgba(239, 83, 80, 0.05);
}

.bg-red-400\/10 {
  background-color: rgba(239, 83, 80, 0.1);
}

.hover\:bg-red-400\/10:hover {
  background-color: rgba(239, 83, 80, 0.1);
}

.bg-red-400\/20 {
  background-color: rgba(239, 83, 80, 0.2);
}

.hover\:bg-red-400\/20:hover {
  background-color: rgba(239, 83, 80, 0.2);
}

.bg-red-400\/25 {
  background-color: rgba(239, 83, 80, 0.25);
}

.hover\:bg-red-400\/25:hover {
  background-color: rgba(239, 83, 80, 0.25);
}

.bg-red-400\/30 {
  background-color: rgba(239, 83, 80, 0.3);
}

.hover\:bg-red-400\/30:hover {
  background-color: rgba(239, 83, 80, 0.3);
}

.bg-red-400\/40 {
  background-color: rgba(239, 83, 80, 0.4);
}

.hover\:bg-red-400\/40:hover {
  background-color: rgba(239, 83, 80, 0.4);
}

.bg-red-400\/50 {
  background-color: rgba(239, 83, 80, 0.5);
}

.hover\:bg-red-400\/50:hover {
  background-color: rgba(239, 83, 80, 0.5);
}

.bg-red-400\/60 {
  background-color: rgba(239, 83, 80, 0.6);
}

.hover\:bg-red-400\/60:hover {
  background-color: rgba(239, 83, 80, 0.6);
}

.bg-red-400\/70 {
  background-color: rgba(239, 83, 80, 0.7);
}

.hover\:bg-red-400\/70:hover {
  background-color: rgba(239, 83, 80, 0.7);
}

.bg-red-400\/75 {
  background-color: rgba(239, 83, 80, 0.75);
}

.hover\:bg-red-400\/75:hover {
  background-color: rgba(239, 83, 80, 0.75);
}

.bg-red-400\/80 {
  background-color: rgba(239, 83, 80, 0.8);
}

.hover\:bg-red-400\/80:hover {
  background-color: rgba(239, 83, 80, 0.8);
}

.bg-red-400\/90 {
  background-color: rgba(239, 83, 80, 0.9);
}

.hover\:bg-red-400\/90:hover {
  background-color: rgba(239, 83, 80, 0.9);
}

.bg-red-400\/95 {
  background-color: rgba(239, 83, 80, 0.95);
}

.hover\:bg-red-400\/95:hover {
  background-color: rgba(239, 83, 80, 0.95);
}

.bg-red-400\/100 {
  background-color: #ef5350;
}

.hover\:bg-red-400\/100:hover {
  background-color: #ef5350;
}

.bg-red-500 {
  background-color: #f44336;
}

.hover\:bg-red-500:hover {
  background-color: #f44336;
}

.bg-red-500\/0 {
  background-color: rgba(244, 67, 54, 0);
}

.hover\:bg-red-500\/0:hover {
  background-color: rgba(244, 67, 54, 0);
}

.bg-red-500\/5 {
  background-color: rgba(244, 67, 54, 0.05);
}

.hover\:bg-red-500\/5:hover {
  background-color: rgba(244, 67, 54, 0.05);
}

.bg-red-500\/10 {
  background-color: rgba(244, 67, 54, 0.1);
}

.hover\:bg-red-500\/10:hover {
  background-color: rgba(244, 67, 54, 0.1);
}

.bg-red-500\/20 {
  background-color: rgba(244, 67, 54, 0.2);
}

.hover\:bg-red-500\/20:hover {
  background-color: rgba(244, 67, 54, 0.2);
}

.bg-red-500\/25 {
  background-color: rgba(244, 67, 54, 0.25);
}

.hover\:bg-red-500\/25:hover {
  background-color: rgba(244, 67, 54, 0.25);
}

.bg-red-500\/30 {
  background-color: rgba(244, 67, 54, 0.3);
}

.hover\:bg-red-500\/30:hover {
  background-color: rgba(244, 67, 54, 0.3);
}

.bg-red-500\/40 {
  background-color: rgba(244, 67, 54, 0.4);
}

.hover\:bg-red-500\/40:hover {
  background-color: rgba(244, 67, 54, 0.4);
}

.bg-red-500\/50 {
  background-color: rgba(244, 67, 54, 0.5);
}

.hover\:bg-red-500\/50:hover {
  background-color: rgba(244, 67, 54, 0.5);
}

.bg-red-500\/60 {
  background-color: rgba(244, 67, 54, 0.6);
}

.hover\:bg-red-500\/60:hover {
  background-color: rgba(244, 67, 54, 0.6);
}

.bg-red-500\/70 {
  background-color: rgba(244, 67, 54, 0.7);
}

.hover\:bg-red-500\/70:hover {
  background-color: rgba(244, 67, 54, 0.7);
}

.bg-red-500\/75 {
  background-color: rgba(244, 67, 54, 0.75);
}

.hover\:bg-red-500\/75:hover {
  background-color: rgba(244, 67, 54, 0.75);
}

.bg-red-500\/80 {
  background-color: rgba(244, 67, 54, 0.8);
}

.hover\:bg-red-500\/80:hover {
  background-color: rgba(244, 67, 54, 0.8);
}

.bg-red-500\/90 {
  background-color: rgba(244, 67, 54, 0.9);
}

.hover\:bg-red-500\/90:hover {
  background-color: rgba(244, 67, 54, 0.9);
}

.bg-red-500\/95 {
  background-color: rgba(244, 67, 54, 0.95);
}

.hover\:bg-red-500\/95:hover {
  background-color: rgba(244, 67, 54, 0.95);
}

.bg-red-500\/100 {
  background-color: #f44336;
}

.hover\:bg-red-500\/100:hover {
  background-color: #f44336;
}

.bg-red-600 {
  background-color: #e53935;
}

.hover\:bg-red-600:hover {
  background-color: #e53935;
}

.bg-red-600\/0 {
  background-color: rgba(229, 57, 53, 0);
}

.hover\:bg-red-600\/0:hover {
  background-color: rgba(229, 57, 53, 0);
}

.bg-red-600\/5 {
  background-color: rgba(229, 57, 53, 0.05);
}

.hover\:bg-red-600\/5:hover {
  background-color: rgba(229, 57, 53, 0.05);
}

.bg-red-600\/10 {
  background-color: rgba(229, 57, 53, 0.1);
}

.hover\:bg-red-600\/10:hover {
  background-color: rgba(229, 57, 53, 0.1);
}

.bg-red-600\/20 {
  background-color: rgba(229, 57, 53, 0.2);
}

.hover\:bg-red-600\/20:hover {
  background-color: rgba(229, 57, 53, 0.2);
}

.bg-red-600\/25 {
  background-color: rgba(229, 57, 53, 0.25);
}

.hover\:bg-red-600\/25:hover {
  background-color: rgba(229, 57, 53, 0.25);
}

.bg-red-600\/30 {
  background-color: rgba(229, 57, 53, 0.3);
}

.hover\:bg-red-600\/30:hover {
  background-color: rgba(229, 57, 53, 0.3);
}

.bg-red-600\/40 {
  background-color: rgba(229, 57, 53, 0.4);
}

.hover\:bg-red-600\/40:hover {
  background-color: rgba(229, 57, 53, 0.4);
}

.bg-red-600\/50 {
  background-color: rgba(229, 57, 53, 0.5);
}

.hover\:bg-red-600\/50:hover {
  background-color: rgba(229, 57, 53, 0.5);
}

.bg-red-600\/60 {
  background-color: rgba(229, 57, 53, 0.6);
}

.hover\:bg-red-600\/60:hover {
  background-color: rgba(229, 57, 53, 0.6);
}

.bg-red-600\/70 {
  background-color: rgba(229, 57, 53, 0.7);
}

.hover\:bg-red-600\/70:hover {
  background-color: rgba(229, 57, 53, 0.7);
}

.bg-red-600\/75 {
  background-color: rgba(229, 57, 53, 0.75);
}

.hover\:bg-red-600\/75:hover {
  background-color: rgba(229, 57, 53, 0.75);
}

.bg-red-600\/80 {
  background-color: rgba(229, 57, 53, 0.8);
}

.hover\:bg-red-600\/80:hover {
  background-color: rgba(229, 57, 53, 0.8);
}

.bg-red-600\/90 {
  background-color: rgba(229, 57, 53, 0.9);
}

.hover\:bg-red-600\/90:hover {
  background-color: rgba(229, 57, 53, 0.9);
}

.bg-red-600\/95 {
  background-color: rgba(229, 57, 53, 0.95);
}

.hover\:bg-red-600\/95:hover {
  background-color: rgba(229, 57, 53, 0.95);
}

.bg-red-600\/100 {
  background-color: #e53935;
}

.hover\:bg-red-600\/100:hover {
  background-color: #e53935;
}

.bg-red-700 {
  background-color: #d32f2f;
}

.hover\:bg-red-700:hover {
  background-color: #d32f2f;
}

.bg-red-700\/0 {
  background-color: rgba(211, 47, 47, 0);
}

.hover\:bg-red-700\/0:hover {
  background-color: rgba(211, 47, 47, 0);
}

.bg-red-700\/5 {
  background-color: rgba(211, 47, 47, 0.05);
}

.hover\:bg-red-700\/5:hover {
  background-color: rgba(211, 47, 47, 0.05);
}

.bg-red-700\/10 {
  background-color: rgba(211, 47, 47, 0.1);
}

.hover\:bg-red-700\/10:hover {
  background-color: rgba(211, 47, 47, 0.1);
}

.bg-red-700\/20 {
  background-color: rgba(211, 47, 47, 0.2);
}

.hover\:bg-red-700\/20:hover {
  background-color: rgba(211, 47, 47, 0.2);
}

.bg-red-700\/25 {
  background-color: rgba(211, 47, 47, 0.25);
}

.hover\:bg-red-700\/25:hover {
  background-color: rgba(211, 47, 47, 0.25);
}

.bg-red-700\/30 {
  background-color: rgba(211, 47, 47, 0.3);
}

.hover\:bg-red-700\/30:hover {
  background-color: rgba(211, 47, 47, 0.3);
}

.bg-red-700\/40 {
  background-color: rgba(211, 47, 47, 0.4);
}

.hover\:bg-red-700\/40:hover {
  background-color: rgba(211, 47, 47, 0.4);
}

.bg-red-700\/50 {
  background-color: rgba(211, 47, 47, 0.5);
}

.hover\:bg-red-700\/50:hover {
  background-color: rgba(211, 47, 47, 0.5);
}

.bg-red-700\/60 {
  background-color: rgba(211, 47, 47, 0.6);
}

.hover\:bg-red-700\/60:hover {
  background-color: rgba(211, 47, 47, 0.6);
}

.bg-red-700\/70 {
  background-color: rgba(211, 47, 47, 0.7);
}

.hover\:bg-red-700\/70:hover {
  background-color: rgba(211, 47, 47, 0.7);
}

.bg-red-700\/75 {
  background-color: rgba(211, 47, 47, 0.75);
}

.hover\:bg-red-700\/75:hover {
  background-color: rgba(211, 47, 47, 0.75);
}

.bg-red-700\/80 {
  background-color: rgba(211, 47, 47, 0.8);
}

.hover\:bg-red-700\/80:hover {
  background-color: rgba(211, 47, 47, 0.8);
}

.bg-red-700\/90 {
  background-color: rgba(211, 47, 47, 0.9);
}

.hover\:bg-red-700\/90:hover {
  background-color: rgba(211, 47, 47, 0.9);
}

.bg-red-700\/95 {
  background-color: rgba(211, 47, 47, 0.95);
}

.hover\:bg-red-700\/95:hover {
  background-color: rgba(211, 47, 47, 0.95);
}

.bg-red-700\/100 {
  background-color: #d32f2f;
}

.hover\:bg-red-700\/100:hover {
  background-color: #d32f2f;
}

.bg-red-800 {
  background-color: #c62828;
}

.hover\:bg-red-800:hover {
  background-color: #c62828;
}

.bg-red-800\/0 {
  background-color: rgba(198, 40, 40, 0);
}

.hover\:bg-red-800\/0:hover {
  background-color: rgba(198, 40, 40, 0);
}

.bg-red-800\/5 {
  background-color: rgba(198, 40, 40, 0.05);
}

.hover\:bg-red-800\/5:hover {
  background-color: rgba(198, 40, 40, 0.05);
}

.bg-red-800\/10 {
  background-color: rgba(198, 40, 40, 0.1);
}

.hover\:bg-red-800\/10:hover {
  background-color: rgba(198, 40, 40, 0.1);
}

.bg-red-800\/20 {
  background-color: rgba(198, 40, 40, 0.2);
}

.hover\:bg-red-800\/20:hover {
  background-color: rgba(198, 40, 40, 0.2);
}

.bg-red-800\/25 {
  background-color: rgba(198, 40, 40, 0.25);
}

.hover\:bg-red-800\/25:hover {
  background-color: rgba(198, 40, 40, 0.25);
}

.bg-red-800\/30 {
  background-color: rgba(198, 40, 40, 0.3);
}

.hover\:bg-red-800\/30:hover {
  background-color: rgba(198, 40, 40, 0.3);
}

.bg-red-800\/40 {
  background-color: rgba(198, 40, 40, 0.4);
}

.hover\:bg-red-800\/40:hover {
  background-color: rgba(198, 40, 40, 0.4);
}

.bg-red-800\/50 {
  background-color: rgba(198, 40, 40, 0.5);
}

.hover\:bg-red-800\/50:hover {
  background-color: rgba(198, 40, 40, 0.5);
}

.bg-red-800\/60 {
  background-color: rgba(198, 40, 40, 0.6);
}

.hover\:bg-red-800\/60:hover {
  background-color: rgba(198, 40, 40, 0.6);
}

.bg-red-800\/70 {
  background-color: rgba(198, 40, 40, 0.7);
}

.hover\:bg-red-800\/70:hover {
  background-color: rgba(198, 40, 40, 0.7);
}

.bg-red-800\/75 {
  background-color: rgba(198, 40, 40, 0.75);
}

.hover\:bg-red-800\/75:hover {
  background-color: rgba(198, 40, 40, 0.75);
}

.bg-red-800\/80 {
  background-color: rgba(198, 40, 40, 0.8);
}

.hover\:bg-red-800\/80:hover {
  background-color: rgba(198, 40, 40, 0.8);
}

.bg-red-800\/90 {
  background-color: rgba(198, 40, 40, 0.9);
}

.hover\:bg-red-800\/90:hover {
  background-color: rgba(198, 40, 40, 0.9);
}

.bg-red-800\/95 {
  background-color: rgba(198, 40, 40, 0.95);
}

.hover\:bg-red-800\/95:hover {
  background-color: rgba(198, 40, 40, 0.95);
}

.bg-red-800\/100 {
  background-color: #c62828;
}

.hover\:bg-red-800\/100:hover {
  background-color: #c62828;
}

.bg-red-900 {
  background-color: #b71c1c;
}

.hover\:bg-red-900:hover {
  background-color: #b71c1c;
}

.bg-red-900\/0 {
  background-color: rgba(183, 28, 28, 0);
}

.hover\:bg-red-900\/0:hover {
  background-color: rgba(183, 28, 28, 0);
}

.bg-red-900\/5 {
  background-color: rgba(183, 28, 28, 0.05);
}

.hover\:bg-red-900\/5:hover {
  background-color: rgba(183, 28, 28, 0.05);
}

.bg-red-900\/10 {
  background-color: rgba(183, 28, 28, 0.1);
}

.hover\:bg-red-900\/10:hover {
  background-color: rgba(183, 28, 28, 0.1);
}

.bg-red-900\/20 {
  background-color: rgba(183, 28, 28, 0.2);
}

.hover\:bg-red-900\/20:hover {
  background-color: rgba(183, 28, 28, 0.2);
}

.bg-red-900\/25 {
  background-color: rgba(183, 28, 28, 0.25);
}

.hover\:bg-red-900\/25:hover {
  background-color: rgba(183, 28, 28, 0.25);
}

.bg-red-900\/30 {
  background-color: rgba(183, 28, 28, 0.3);
}

.hover\:bg-red-900\/30:hover {
  background-color: rgba(183, 28, 28, 0.3);
}

.bg-red-900\/40 {
  background-color: rgba(183, 28, 28, 0.4);
}

.hover\:bg-red-900\/40:hover {
  background-color: rgba(183, 28, 28, 0.4);
}

.bg-red-900\/50 {
  background-color: rgba(183, 28, 28, 0.5);
}

.hover\:bg-red-900\/50:hover {
  background-color: rgba(183, 28, 28, 0.5);
}

.bg-red-900\/60 {
  background-color: rgba(183, 28, 28, 0.6);
}

.hover\:bg-red-900\/60:hover {
  background-color: rgba(183, 28, 28, 0.6);
}

.bg-red-900\/70 {
  background-color: rgba(183, 28, 28, 0.7);
}

.hover\:bg-red-900\/70:hover {
  background-color: rgba(183, 28, 28, 0.7);
}

.bg-red-900\/75 {
  background-color: rgba(183, 28, 28, 0.75);
}

.hover\:bg-red-900\/75:hover {
  background-color: rgba(183, 28, 28, 0.75);
}

.bg-red-900\/80 {
  background-color: rgba(183, 28, 28, 0.8);
}

.hover\:bg-red-900\/80:hover {
  background-color: rgba(183, 28, 28, 0.8);
}

.bg-red-900\/90 {
  background-color: rgba(183, 28, 28, 0.9);
}

.hover\:bg-red-900\/90:hover {
  background-color: rgba(183, 28, 28, 0.9);
}

.bg-red-900\/95 {
  background-color: rgba(183, 28, 28, 0.95);
}

.hover\:bg-red-900\/95:hover {
  background-color: rgba(183, 28, 28, 0.95);
}

.bg-red-900\/100 {
  background-color: #b71c1c;
}

.hover\:bg-red-900\/100:hover {
  background-color: #b71c1c;
}

.bg-pink-50 {
  background-color: #fce4ec;
}

.hover\:bg-pink-50:hover {
  background-color: #fce4ec;
}

.bg-pink-50\/0 {
  background-color: rgba(252, 228, 236, 0);
}

.hover\:bg-pink-50\/0:hover {
  background-color: rgba(252, 228, 236, 0);
}

.bg-pink-50\/5 {
  background-color: rgba(252, 228, 236, 0.05);
}

.hover\:bg-pink-50\/5:hover {
  background-color: rgba(252, 228, 236, 0.05);
}

.bg-pink-50\/10 {
  background-color: rgba(252, 228, 236, 0.1);
}

.hover\:bg-pink-50\/10:hover {
  background-color: rgba(252, 228, 236, 0.1);
}

.bg-pink-50\/20 {
  background-color: rgba(252, 228, 236, 0.2);
}

.hover\:bg-pink-50\/20:hover {
  background-color: rgba(252, 228, 236, 0.2);
}

.bg-pink-50\/25 {
  background-color: rgba(252, 228, 236, 0.25);
}

.hover\:bg-pink-50\/25:hover {
  background-color: rgba(252, 228, 236, 0.25);
}

.bg-pink-50\/30 {
  background-color: rgba(252, 228, 236, 0.3);
}

.hover\:bg-pink-50\/30:hover {
  background-color: rgba(252, 228, 236, 0.3);
}

.bg-pink-50\/40 {
  background-color: rgba(252, 228, 236, 0.4);
}

.hover\:bg-pink-50\/40:hover {
  background-color: rgba(252, 228, 236, 0.4);
}

.bg-pink-50\/50 {
  background-color: rgba(252, 228, 236, 0.5);
}

.hover\:bg-pink-50\/50:hover {
  background-color: rgba(252, 228, 236, 0.5);
}

.bg-pink-50\/60 {
  background-color: rgba(252, 228, 236, 0.6);
}

.hover\:bg-pink-50\/60:hover {
  background-color: rgba(252, 228, 236, 0.6);
}

.bg-pink-50\/70 {
  background-color: rgba(252, 228, 236, 0.7);
}

.hover\:bg-pink-50\/70:hover {
  background-color: rgba(252, 228, 236, 0.7);
}

.bg-pink-50\/75 {
  background-color: rgba(252, 228, 236, 0.75);
}

.hover\:bg-pink-50\/75:hover {
  background-color: rgba(252, 228, 236, 0.75);
}

.bg-pink-50\/80 {
  background-color: rgba(252, 228, 236, 0.8);
}

.hover\:bg-pink-50\/80:hover {
  background-color: rgba(252, 228, 236, 0.8);
}

.bg-pink-50\/90 {
  background-color: rgba(252, 228, 236, 0.9);
}

.hover\:bg-pink-50\/90:hover {
  background-color: rgba(252, 228, 236, 0.9);
}

.bg-pink-50\/95 {
  background-color: rgba(252, 228, 236, 0.95);
}

.hover\:bg-pink-50\/95:hover {
  background-color: rgba(252, 228, 236, 0.95);
}

.bg-pink-50\/100 {
  background-color: #fce4ec;
}

.hover\:bg-pink-50\/100:hover {
  background-color: #fce4ec;
}

.bg-pink-100 {
  background-color: #f8bbd0;
}

.hover\:bg-pink-100:hover {
  background-color: #f8bbd0;
}

.bg-pink-100\/0 {
  background-color: rgba(248, 187, 208, 0);
}

.hover\:bg-pink-100\/0:hover {
  background-color: rgba(248, 187, 208, 0);
}

.bg-pink-100\/5 {
  background-color: rgba(248, 187, 208, 0.05);
}

.hover\:bg-pink-100\/5:hover {
  background-color: rgba(248, 187, 208, 0.05);
}

.bg-pink-100\/10 {
  background-color: rgba(248, 187, 208, 0.1);
}

.hover\:bg-pink-100\/10:hover {
  background-color: rgba(248, 187, 208, 0.1);
}

.bg-pink-100\/20 {
  background-color: rgba(248, 187, 208, 0.2);
}

.hover\:bg-pink-100\/20:hover {
  background-color: rgba(248, 187, 208, 0.2);
}

.bg-pink-100\/25 {
  background-color: rgba(248, 187, 208, 0.25);
}

.hover\:bg-pink-100\/25:hover {
  background-color: rgba(248, 187, 208, 0.25);
}

.bg-pink-100\/30 {
  background-color: rgba(248, 187, 208, 0.3);
}

.hover\:bg-pink-100\/30:hover {
  background-color: rgba(248, 187, 208, 0.3);
}

.bg-pink-100\/40 {
  background-color: rgba(248, 187, 208, 0.4);
}

.hover\:bg-pink-100\/40:hover {
  background-color: rgba(248, 187, 208, 0.4);
}

.bg-pink-100\/50 {
  background-color: rgba(248, 187, 208, 0.5);
}

.hover\:bg-pink-100\/50:hover {
  background-color: rgba(248, 187, 208, 0.5);
}

.bg-pink-100\/60 {
  background-color: rgba(248, 187, 208, 0.6);
}

.hover\:bg-pink-100\/60:hover {
  background-color: rgba(248, 187, 208, 0.6);
}

.bg-pink-100\/70 {
  background-color: rgba(248, 187, 208, 0.7);
}

.hover\:bg-pink-100\/70:hover {
  background-color: rgba(248, 187, 208, 0.7);
}

.bg-pink-100\/75 {
  background-color: rgba(248, 187, 208, 0.75);
}

.hover\:bg-pink-100\/75:hover {
  background-color: rgba(248, 187, 208, 0.75);
}

.bg-pink-100\/80 {
  background-color: rgba(248, 187, 208, 0.8);
}

.hover\:bg-pink-100\/80:hover {
  background-color: rgba(248, 187, 208, 0.8);
}

.bg-pink-100\/90 {
  background-color: rgba(248, 187, 208, 0.9);
}

.hover\:bg-pink-100\/90:hover {
  background-color: rgba(248, 187, 208, 0.9);
}

.bg-pink-100\/95 {
  background-color: rgba(248, 187, 208, 0.95);
}

.hover\:bg-pink-100\/95:hover {
  background-color: rgba(248, 187, 208, 0.95);
}

.bg-pink-100\/100 {
  background-color: #f8bbd0;
}

.hover\:bg-pink-100\/100:hover {
  background-color: #f8bbd0;
}

.bg-pink-200 {
  background-color: #f48fb1;
}

.hover\:bg-pink-200:hover {
  background-color: #f48fb1;
}

.bg-pink-200\/0 {
  background-color: rgba(244, 143, 177, 0);
}

.hover\:bg-pink-200\/0:hover {
  background-color: rgba(244, 143, 177, 0);
}

.bg-pink-200\/5 {
  background-color: rgba(244, 143, 177, 0.05);
}

.hover\:bg-pink-200\/5:hover {
  background-color: rgba(244, 143, 177, 0.05);
}

.bg-pink-200\/10 {
  background-color: rgba(244, 143, 177, 0.1);
}

.hover\:bg-pink-200\/10:hover {
  background-color: rgba(244, 143, 177, 0.1);
}

.bg-pink-200\/20 {
  background-color: rgba(244, 143, 177, 0.2);
}

.hover\:bg-pink-200\/20:hover {
  background-color: rgba(244, 143, 177, 0.2);
}

.bg-pink-200\/25 {
  background-color: rgba(244, 143, 177, 0.25);
}

.hover\:bg-pink-200\/25:hover {
  background-color: rgba(244, 143, 177, 0.25);
}

.bg-pink-200\/30 {
  background-color: rgba(244, 143, 177, 0.3);
}

.hover\:bg-pink-200\/30:hover {
  background-color: rgba(244, 143, 177, 0.3);
}

.bg-pink-200\/40 {
  background-color: rgba(244, 143, 177, 0.4);
}

.hover\:bg-pink-200\/40:hover {
  background-color: rgba(244, 143, 177, 0.4);
}

.bg-pink-200\/50 {
  background-color: rgba(244, 143, 177, 0.5);
}

.hover\:bg-pink-200\/50:hover {
  background-color: rgba(244, 143, 177, 0.5);
}

.bg-pink-200\/60 {
  background-color: rgba(244, 143, 177, 0.6);
}

.hover\:bg-pink-200\/60:hover {
  background-color: rgba(244, 143, 177, 0.6);
}

.bg-pink-200\/70 {
  background-color: rgba(244, 143, 177, 0.7);
}

.hover\:bg-pink-200\/70:hover {
  background-color: rgba(244, 143, 177, 0.7);
}

.bg-pink-200\/75 {
  background-color: rgba(244, 143, 177, 0.75);
}

.hover\:bg-pink-200\/75:hover {
  background-color: rgba(244, 143, 177, 0.75);
}

.bg-pink-200\/80 {
  background-color: rgba(244, 143, 177, 0.8);
}

.hover\:bg-pink-200\/80:hover {
  background-color: rgba(244, 143, 177, 0.8);
}

.bg-pink-200\/90 {
  background-color: rgba(244, 143, 177, 0.9);
}

.hover\:bg-pink-200\/90:hover {
  background-color: rgba(244, 143, 177, 0.9);
}

.bg-pink-200\/95 {
  background-color: rgba(244, 143, 177, 0.95);
}

.hover\:bg-pink-200\/95:hover {
  background-color: rgba(244, 143, 177, 0.95);
}

.bg-pink-200\/100 {
  background-color: #f48fb1;
}

.hover\:bg-pink-200\/100:hover {
  background-color: #f48fb1;
}

.bg-pink-300 {
  background-color: #f06292;
}

.hover\:bg-pink-300:hover {
  background-color: #f06292;
}

.bg-pink-300\/0 {
  background-color: rgba(240, 98, 146, 0);
}

.hover\:bg-pink-300\/0:hover {
  background-color: rgba(240, 98, 146, 0);
}

.bg-pink-300\/5 {
  background-color: rgba(240, 98, 146, 0.05);
}

.hover\:bg-pink-300\/5:hover {
  background-color: rgba(240, 98, 146, 0.05);
}

.bg-pink-300\/10 {
  background-color: rgba(240, 98, 146, 0.1);
}

.hover\:bg-pink-300\/10:hover {
  background-color: rgba(240, 98, 146, 0.1);
}

.bg-pink-300\/20 {
  background-color: rgba(240, 98, 146, 0.2);
}

.hover\:bg-pink-300\/20:hover {
  background-color: rgba(240, 98, 146, 0.2);
}

.bg-pink-300\/25 {
  background-color: rgba(240, 98, 146, 0.25);
}

.hover\:bg-pink-300\/25:hover {
  background-color: rgba(240, 98, 146, 0.25);
}

.bg-pink-300\/30 {
  background-color: rgba(240, 98, 146, 0.3);
}

.hover\:bg-pink-300\/30:hover {
  background-color: rgba(240, 98, 146, 0.3);
}

.bg-pink-300\/40 {
  background-color: rgba(240, 98, 146, 0.4);
}

.hover\:bg-pink-300\/40:hover {
  background-color: rgba(240, 98, 146, 0.4);
}

.bg-pink-300\/50 {
  background-color: rgba(240, 98, 146, 0.5);
}

.hover\:bg-pink-300\/50:hover {
  background-color: rgba(240, 98, 146, 0.5);
}

.bg-pink-300\/60 {
  background-color: rgba(240, 98, 146, 0.6);
}

.hover\:bg-pink-300\/60:hover {
  background-color: rgba(240, 98, 146, 0.6);
}

.bg-pink-300\/70 {
  background-color: rgba(240, 98, 146, 0.7);
}

.hover\:bg-pink-300\/70:hover {
  background-color: rgba(240, 98, 146, 0.7);
}

.bg-pink-300\/75 {
  background-color: rgba(240, 98, 146, 0.75);
}

.hover\:bg-pink-300\/75:hover {
  background-color: rgba(240, 98, 146, 0.75);
}

.bg-pink-300\/80 {
  background-color: rgba(240, 98, 146, 0.8);
}

.hover\:bg-pink-300\/80:hover {
  background-color: rgba(240, 98, 146, 0.8);
}

.bg-pink-300\/90 {
  background-color: rgba(240, 98, 146, 0.9);
}

.hover\:bg-pink-300\/90:hover {
  background-color: rgba(240, 98, 146, 0.9);
}

.bg-pink-300\/95 {
  background-color: rgba(240, 98, 146, 0.95);
}

.hover\:bg-pink-300\/95:hover {
  background-color: rgba(240, 98, 146, 0.95);
}

.bg-pink-300\/100 {
  background-color: #f06292;
}

.hover\:bg-pink-300\/100:hover {
  background-color: #f06292;
}

.bg-pink-400 {
  background-color: #ec407a;
}

.hover\:bg-pink-400:hover {
  background-color: #ec407a;
}

.bg-pink-400\/0 {
  background-color: rgba(236, 64, 122, 0);
}

.hover\:bg-pink-400\/0:hover {
  background-color: rgba(236, 64, 122, 0);
}

.bg-pink-400\/5 {
  background-color: rgba(236, 64, 122, 0.05);
}

.hover\:bg-pink-400\/5:hover {
  background-color: rgba(236, 64, 122, 0.05);
}

.bg-pink-400\/10 {
  background-color: rgba(236, 64, 122, 0.1);
}

.hover\:bg-pink-400\/10:hover {
  background-color: rgba(236, 64, 122, 0.1);
}

.bg-pink-400\/20 {
  background-color: rgba(236, 64, 122, 0.2);
}

.hover\:bg-pink-400\/20:hover {
  background-color: rgba(236, 64, 122, 0.2);
}

.bg-pink-400\/25 {
  background-color: rgba(236, 64, 122, 0.25);
}

.hover\:bg-pink-400\/25:hover {
  background-color: rgba(236, 64, 122, 0.25);
}

.bg-pink-400\/30 {
  background-color: rgba(236, 64, 122, 0.3);
}

.hover\:bg-pink-400\/30:hover {
  background-color: rgba(236, 64, 122, 0.3);
}

.bg-pink-400\/40 {
  background-color: rgba(236, 64, 122, 0.4);
}

.hover\:bg-pink-400\/40:hover {
  background-color: rgba(236, 64, 122, 0.4);
}

.bg-pink-400\/50 {
  background-color: rgba(236, 64, 122, 0.5);
}

.hover\:bg-pink-400\/50:hover {
  background-color: rgba(236, 64, 122, 0.5);
}

.bg-pink-400\/60 {
  background-color: rgba(236, 64, 122, 0.6);
}

.hover\:bg-pink-400\/60:hover {
  background-color: rgba(236, 64, 122, 0.6);
}

.bg-pink-400\/70 {
  background-color: rgba(236, 64, 122, 0.7);
}

.hover\:bg-pink-400\/70:hover {
  background-color: rgba(236, 64, 122, 0.7);
}

.bg-pink-400\/75 {
  background-color: rgba(236, 64, 122, 0.75);
}

.hover\:bg-pink-400\/75:hover {
  background-color: rgba(236, 64, 122, 0.75);
}

.bg-pink-400\/80 {
  background-color: rgba(236, 64, 122, 0.8);
}

.hover\:bg-pink-400\/80:hover {
  background-color: rgba(236, 64, 122, 0.8);
}

.bg-pink-400\/90 {
  background-color: rgba(236, 64, 122, 0.9);
}

.hover\:bg-pink-400\/90:hover {
  background-color: rgba(236, 64, 122, 0.9);
}

.bg-pink-400\/95 {
  background-color: rgba(236, 64, 122, 0.95);
}

.hover\:bg-pink-400\/95:hover {
  background-color: rgba(236, 64, 122, 0.95);
}

.bg-pink-400\/100 {
  background-color: #ec407a;
}

.hover\:bg-pink-400\/100:hover {
  background-color: #ec407a;
}

.bg-pink-500 {
  background-color: #e91e63;
}

.hover\:bg-pink-500:hover {
  background-color: #e91e63;
}

.bg-pink-500\/0 {
  background-color: rgba(233, 30, 99, 0);
}

.hover\:bg-pink-500\/0:hover {
  background-color: rgba(233, 30, 99, 0);
}

.bg-pink-500\/5 {
  background-color: rgba(233, 30, 99, 0.05);
}

.hover\:bg-pink-500\/5:hover {
  background-color: rgba(233, 30, 99, 0.05);
}

.bg-pink-500\/10 {
  background-color: rgba(233, 30, 99, 0.1);
}

.hover\:bg-pink-500\/10:hover {
  background-color: rgba(233, 30, 99, 0.1);
}

.bg-pink-500\/20 {
  background-color: rgba(233, 30, 99, 0.2);
}

.hover\:bg-pink-500\/20:hover {
  background-color: rgba(233, 30, 99, 0.2);
}

.bg-pink-500\/25 {
  background-color: rgba(233, 30, 99, 0.25);
}

.hover\:bg-pink-500\/25:hover {
  background-color: rgba(233, 30, 99, 0.25);
}

.bg-pink-500\/30 {
  background-color: rgba(233, 30, 99, 0.3);
}

.hover\:bg-pink-500\/30:hover {
  background-color: rgba(233, 30, 99, 0.3);
}

.bg-pink-500\/40 {
  background-color: rgba(233, 30, 99, 0.4);
}

.hover\:bg-pink-500\/40:hover {
  background-color: rgba(233, 30, 99, 0.4);
}

.bg-pink-500\/50 {
  background-color: rgba(233, 30, 99, 0.5);
}

.hover\:bg-pink-500\/50:hover {
  background-color: rgba(233, 30, 99, 0.5);
}

.bg-pink-500\/60 {
  background-color: rgba(233, 30, 99, 0.6);
}

.hover\:bg-pink-500\/60:hover {
  background-color: rgba(233, 30, 99, 0.6);
}

.bg-pink-500\/70 {
  background-color: rgba(233, 30, 99, 0.7);
}

.hover\:bg-pink-500\/70:hover {
  background-color: rgba(233, 30, 99, 0.7);
}

.bg-pink-500\/75 {
  background-color: rgba(233, 30, 99, 0.75);
}

.hover\:bg-pink-500\/75:hover {
  background-color: rgba(233, 30, 99, 0.75);
}

.bg-pink-500\/80 {
  background-color: rgba(233, 30, 99, 0.8);
}

.hover\:bg-pink-500\/80:hover {
  background-color: rgba(233, 30, 99, 0.8);
}

.bg-pink-500\/90 {
  background-color: rgba(233, 30, 99, 0.9);
}

.hover\:bg-pink-500\/90:hover {
  background-color: rgba(233, 30, 99, 0.9);
}

.bg-pink-500\/95 {
  background-color: rgba(233, 30, 99, 0.95);
}

.hover\:bg-pink-500\/95:hover {
  background-color: rgba(233, 30, 99, 0.95);
}

.bg-pink-500\/100 {
  background-color: #e91e63;
}

.hover\:bg-pink-500\/100:hover {
  background-color: #e91e63;
}

.bg-pink-600 {
  background-color: #d81b60;
}

.hover\:bg-pink-600:hover {
  background-color: #d81b60;
}

.bg-pink-600\/0 {
  background-color: rgba(216, 27, 96, 0);
}

.hover\:bg-pink-600\/0:hover {
  background-color: rgba(216, 27, 96, 0);
}

.bg-pink-600\/5 {
  background-color: rgba(216, 27, 96, 0.05);
}

.hover\:bg-pink-600\/5:hover {
  background-color: rgba(216, 27, 96, 0.05);
}

.bg-pink-600\/10 {
  background-color: rgba(216, 27, 96, 0.1);
}

.hover\:bg-pink-600\/10:hover {
  background-color: rgba(216, 27, 96, 0.1);
}

.bg-pink-600\/20 {
  background-color: rgba(216, 27, 96, 0.2);
}

.hover\:bg-pink-600\/20:hover {
  background-color: rgba(216, 27, 96, 0.2);
}

.bg-pink-600\/25 {
  background-color: rgba(216, 27, 96, 0.25);
}

.hover\:bg-pink-600\/25:hover {
  background-color: rgba(216, 27, 96, 0.25);
}

.bg-pink-600\/30 {
  background-color: rgba(216, 27, 96, 0.3);
}

.hover\:bg-pink-600\/30:hover {
  background-color: rgba(216, 27, 96, 0.3);
}

.bg-pink-600\/40 {
  background-color: rgba(216, 27, 96, 0.4);
}

.hover\:bg-pink-600\/40:hover {
  background-color: rgba(216, 27, 96, 0.4);
}

.bg-pink-600\/50 {
  background-color: rgba(216, 27, 96, 0.5);
}

.hover\:bg-pink-600\/50:hover {
  background-color: rgba(216, 27, 96, 0.5);
}

.bg-pink-600\/60 {
  background-color: rgba(216, 27, 96, 0.6);
}

.hover\:bg-pink-600\/60:hover {
  background-color: rgba(216, 27, 96, 0.6);
}

.bg-pink-600\/70 {
  background-color: rgba(216, 27, 96, 0.7);
}

.hover\:bg-pink-600\/70:hover {
  background-color: rgba(216, 27, 96, 0.7);
}

.bg-pink-600\/75 {
  background-color: rgba(216, 27, 96, 0.75);
}

.hover\:bg-pink-600\/75:hover {
  background-color: rgba(216, 27, 96, 0.75);
}

.bg-pink-600\/80 {
  background-color: rgba(216, 27, 96, 0.8);
}

.hover\:bg-pink-600\/80:hover {
  background-color: rgba(216, 27, 96, 0.8);
}

.bg-pink-600\/90 {
  background-color: rgba(216, 27, 96, 0.9);
}

.hover\:bg-pink-600\/90:hover {
  background-color: rgba(216, 27, 96, 0.9);
}

.bg-pink-600\/95 {
  background-color: rgba(216, 27, 96, 0.95);
}

.hover\:bg-pink-600\/95:hover {
  background-color: rgba(216, 27, 96, 0.95);
}

.bg-pink-600\/100 {
  background-color: #d81b60;
}

.hover\:bg-pink-600\/100:hover {
  background-color: #d81b60;
}

.bg-pink-700 {
  background-color: #c2185b;
}

.hover\:bg-pink-700:hover {
  background-color: #c2185b;
}

.bg-pink-700\/0 {
  background-color: rgba(194, 24, 91, 0);
}

.hover\:bg-pink-700\/0:hover {
  background-color: rgba(194, 24, 91, 0);
}

.bg-pink-700\/5 {
  background-color: rgba(194, 24, 91, 0.05);
}

.hover\:bg-pink-700\/5:hover {
  background-color: rgba(194, 24, 91, 0.05);
}

.bg-pink-700\/10 {
  background-color: rgba(194, 24, 91, 0.1);
}

.hover\:bg-pink-700\/10:hover {
  background-color: rgba(194, 24, 91, 0.1);
}

.bg-pink-700\/20 {
  background-color: rgba(194, 24, 91, 0.2);
}

.hover\:bg-pink-700\/20:hover {
  background-color: rgba(194, 24, 91, 0.2);
}

.bg-pink-700\/25 {
  background-color: rgba(194, 24, 91, 0.25);
}

.hover\:bg-pink-700\/25:hover {
  background-color: rgba(194, 24, 91, 0.25);
}

.bg-pink-700\/30 {
  background-color: rgba(194, 24, 91, 0.3);
}

.hover\:bg-pink-700\/30:hover {
  background-color: rgba(194, 24, 91, 0.3);
}

.bg-pink-700\/40 {
  background-color: rgba(194, 24, 91, 0.4);
}

.hover\:bg-pink-700\/40:hover {
  background-color: rgba(194, 24, 91, 0.4);
}

.bg-pink-700\/50 {
  background-color: rgba(194, 24, 91, 0.5);
}

.hover\:bg-pink-700\/50:hover {
  background-color: rgba(194, 24, 91, 0.5);
}

.bg-pink-700\/60 {
  background-color: rgba(194, 24, 91, 0.6);
}

.hover\:bg-pink-700\/60:hover {
  background-color: rgba(194, 24, 91, 0.6);
}

.bg-pink-700\/70 {
  background-color: rgba(194, 24, 91, 0.7);
}

.hover\:bg-pink-700\/70:hover {
  background-color: rgba(194, 24, 91, 0.7);
}

.bg-pink-700\/75 {
  background-color: rgba(194, 24, 91, 0.75);
}

.hover\:bg-pink-700\/75:hover {
  background-color: rgba(194, 24, 91, 0.75);
}

.bg-pink-700\/80 {
  background-color: rgba(194, 24, 91, 0.8);
}

.hover\:bg-pink-700\/80:hover {
  background-color: rgba(194, 24, 91, 0.8);
}

.bg-pink-700\/90 {
  background-color: rgba(194, 24, 91, 0.9);
}

.hover\:bg-pink-700\/90:hover {
  background-color: rgba(194, 24, 91, 0.9);
}

.bg-pink-700\/95 {
  background-color: rgba(194, 24, 91, 0.95);
}

.hover\:bg-pink-700\/95:hover {
  background-color: rgba(194, 24, 91, 0.95);
}

.bg-pink-700\/100 {
  background-color: #c2185b;
}

.hover\:bg-pink-700\/100:hover {
  background-color: #c2185b;
}

.bg-pink-800 {
  background-color: #ad1457;
}

.hover\:bg-pink-800:hover {
  background-color: #ad1457;
}

.bg-pink-800\/0 {
  background-color: rgba(173, 20, 87, 0);
}

.hover\:bg-pink-800\/0:hover {
  background-color: rgba(173, 20, 87, 0);
}

.bg-pink-800\/5 {
  background-color: rgba(173, 20, 87, 0.05);
}

.hover\:bg-pink-800\/5:hover {
  background-color: rgba(173, 20, 87, 0.05);
}

.bg-pink-800\/10 {
  background-color: rgba(173, 20, 87, 0.1);
}

.hover\:bg-pink-800\/10:hover {
  background-color: rgba(173, 20, 87, 0.1);
}

.bg-pink-800\/20 {
  background-color: rgba(173, 20, 87, 0.2);
}

.hover\:bg-pink-800\/20:hover {
  background-color: rgba(173, 20, 87, 0.2);
}

.bg-pink-800\/25 {
  background-color: rgba(173, 20, 87, 0.25);
}

.hover\:bg-pink-800\/25:hover {
  background-color: rgba(173, 20, 87, 0.25);
}

.bg-pink-800\/30 {
  background-color: rgba(173, 20, 87, 0.3);
}

.hover\:bg-pink-800\/30:hover {
  background-color: rgba(173, 20, 87, 0.3);
}

.bg-pink-800\/40 {
  background-color: rgba(173, 20, 87, 0.4);
}

.hover\:bg-pink-800\/40:hover {
  background-color: rgba(173, 20, 87, 0.4);
}

.bg-pink-800\/50 {
  background-color: rgba(173, 20, 87, 0.5);
}

.hover\:bg-pink-800\/50:hover {
  background-color: rgba(173, 20, 87, 0.5);
}

.bg-pink-800\/60 {
  background-color: rgba(173, 20, 87, 0.6);
}

.hover\:bg-pink-800\/60:hover {
  background-color: rgba(173, 20, 87, 0.6);
}

.bg-pink-800\/70 {
  background-color: rgba(173, 20, 87, 0.7);
}

.hover\:bg-pink-800\/70:hover {
  background-color: rgba(173, 20, 87, 0.7);
}

.bg-pink-800\/75 {
  background-color: rgba(173, 20, 87, 0.75);
}

.hover\:bg-pink-800\/75:hover {
  background-color: rgba(173, 20, 87, 0.75);
}

.bg-pink-800\/80 {
  background-color: rgba(173, 20, 87, 0.8);
}

.hover\:bg-pink-800\/80:hover {
  background-color: rgba(173, 20, 87, 0.8);
}

.bg-pink-800\/90 {
  background-color: rgba(173, 20, 87, 0.9);
}

.hover\:bg-pink-800\/90:hover {
  background-color: rgba(173, 20, 87, 0.9);
}

.bg-pink-800\/95 {
  background-color: rgba(173, 20, 87, 0.95);
}

.hover\:bg-pink-800\/95:hover {
  background-color: rgba(173, 20, 87, 0.95);
}

.bg-pink-800\/100 {
  background-color: #ad1457;
}

.hover\:bg-pink-800\/100:hover {
  background-color: #ad1457;
}

.bg-pink-900 {
  background-color: #880e4f;
}

.hover\:bg-pink-900:hover {
  background-color: #880e4f;
}

.bg-pink-900\/0 {
  background-color: rgba(136, 14, 79, 0);
}

.hover\:bg-pink-900\/0:hover {
  background-color: rgba(136, 14, 79, 0);
}

.bg-pink-900\/5 {
  background-color: rgba(136, 14, 79, 0.05);
}

.hover\:bg-pink-900\/5:hover {
  background-color: rgba(136, 14, 79, 0.05);
}

.bg-pink-900\/10 {
  background-color: rgba(136, 14, 79, 0.1);
}

.hover\:bg-pink-900\/10:hover {
  background-color: rgba(136, 14, 79, 0.1);
}

.bg-pink-900\/20 {
  background-color: rgba(136, 14, 79, 0.2);
}

.hover\:bg-pink-900\/20:hover {
  background-color: rgba(136, 14, 79, 0.2);
}

.bg-pink-900\/25 {
  background-color: rgba(136, 14, 79, 0.25);
}

.hover\:bg-pink-900\/25:hover {
  background-color: rgba(136, 14, 79, 0.25);
}

.bg-pink-900\/30 {
  background-color: rgba(136, 14, 79, 0.3);
}

.hover\:bg-pink-900\/30:hover {
  background-color: rgba(136, 14, 79, 0.3);
}

.bg-pink-900\/40 {
  background-color: rgba(136, 14, 79, 0.4);
}

.hover\:bg-pink-900\/40:hover {
  background-color: rgba(136, 14, 79, 0.4);
}

.bg-pink-900\/50 {
  background-color: rgba(136, 14, 79, 0.5);
}

.hover\:bg-pink-900\/50:hover {
  background-color: rgba(136, 14, 79, 0.5);
}

.bg-pink-900\/60 {
  background-color: rgba(136, 14, 79, 0.6);
}

.hover\:bg-pink-900\/60:hover {
  background-color: rgba(136, 14, 79, 0.6);
}

.bg-pink-900\/70 {
  background-color: rgba(136, 14, 79, 0.7);
}

.hover\:bg-pink-900\/70:hover {
  background-color: rgba(136, 14, 79, 0.7);
}

.bg-pink-900\/75 {
  background-color: rgba(136, 14, 79, 0.75);
}

.hover\:bg-pink-900\/75:hover {
  background-color: rgba(136, 14, 79, 0.75);
}

.bg-pink-900\/80 {
  background-color: rgba(136, 14, 79, 0.8);
}

.hover\:bg-pink-900\/80:hover {
  background-color: rgba(136, 14, 79, 0.8);
}

.bg-pink-900\/90 {
  background-color: rgba(136, 14, 79, 0.9);
}

.hover\:bg-pink-900\/90:hover {
  background-color: rgba(136, 14, 79, 0.9);
}

.bg-pink-900\/95 {
  background-color: rgba(136, 14, 79, 0.95);
}

.hover\:bg-pink-900\/95:hover {
  background-color: rgba(136, 14, 79, 0.95);
}

.bg-pink-900\/100 {
  background-color: #880e4f;
}

.hover\:bg-pink-900\/100:hover {
  background-color: #880e4f;
}

.bg-purple-50 {
  background-color: #f3e5f5;
}

.hover\:bg-purple-50:hover {
  background-color: #f3e5f5;
}

.bg-purple-50\/0 {
  background-color: rgba(243, 229, 245, 0);
}

.hover\:bg-purple-50\/0:hover {
  background-color: rgba(243, 229, 245, 0);
}

.bg-purple-50\/5 {
  background-color: rgba(243, 229, 245, 0.05);
}

.hover\:bg-purple-50\/5:hover {
  background-color: rgba(243, 229, 245, 0.05);
}

.bg-purple-50\/10 {
  background-color: rgba(243, 229, 245, 0.1);
}

.hover\:bg-purple-50\/10:hover {
  background-color: rgba(243, 229, 245, 0.1);
}

.bg-purple-50\/20 {
  background-color: rgba(243, 229, 245, 0.2);
}

.hover\:bg-purple-50\/20:hover {
  background-color: rgba(243, 229, 245, 0.2);
}

.bg-purple-50\/25 {
  background-color: rgba(243, 229, 245, 0.25);
}

.hover\:bg-purple-50\/25:hover {
  background-color: rgba(243, 229, 245, 0.25);
}

.bg-purple-50\/30 {
  background-color: rgba(243, 229, 245, 0.3);
}

.hover\:bg-purple-50\/30:hover {
  background-color: rgba(243, 229, 245, 0.3);
}

.bg-purple-50\/40 {
  background-color: rgba(243, 229, 245, 0.4);
}

.hover\:bg-purple-50\/40:hover {
  background-color: rgba(243, 229, 245, 0.4);
}

.bg-purple-50\/50 {
  background-color: rgba(243, 229, 245, 0.5);
}

.hover\:bg-purple-50\/50:hover {
  background-color: rgba(243, 229, 245, 0.5);
}

.bg-purple-50\/60 {
  background-color: rgba(243, 229, 245, 0.6);
}

.hover\:bg-purple-50\/60:hover {
  background-color: rgba(243, 229, 245, 0.6);
}

.bg-purple-50\/70 {
  background-color: rgba(243, 229, 245, 0.7);
}

.hover\:bg-purple-50\/70:hover {
  background-color: rgba(243, 229, 245, 0.7);
}

.bg-purple-50\/75 {
  background-color: rgba(243, 229, 245, 0.75);
}

.hover\:bg-purple-50\/75:hover {
  background-color: rgba(243, 229, 245, 0.75);
}

.bg-purple-50\/80 {
  background-color: rgba(243, 229, 245, 0.8);
}

.hover\:bg-purple-50\/80:hover {
  background-color: rgba(243, 229, 245, 0.8);
}

.bg-purple-50\/90 {
  background-color: rgba(243, 229, 245, 0.9);
}

.hover\:bg-purple-50\/90:hover {
  background-color: rgba(243, 229, 245, 0.9);
}

.bg-purple-50\/95 {
  background-color: rgba(243, 229, 245, 0.95);
}

.hover\:bg-purple-50\/95:hover {
  background-color: rgba(243, 229, 245, 0.95);
}

.bg-purple-50\/100 {
  background-color: #f3e5f5;
}

.hover\:bg-purple-50\/100:hover {
  background-color: #f3e5f5;
}

.bg-purple-100 {
  background-color: #e1bee7;
}

.hover\:bg-purple-100:hover {
  background-color: #e1bee7;
}

.bg-purple-100\/0 {
  background-color: rgba(225, 190, 231, 0);
}

.hover\:bg-purple-100\/0:hover {
  background-color: rgba(225, 190, 231, 0);
}

.bg-purple-100\/5 {
  background-color: rgba(225, 190, 231, 0.05);
}

.hover\:bg-purple-100\/5:hover {
  background-color: rgba(225, 190, 231, 0.05);
}

.bg-purple-100\/10 {
  background-color: rgba(225, 190, 231, 0.1);
}

.hover\:bg-purple-100\/10:hover {
  background-color: rgba(225, 190, 231, 0.1);
}

.bg-purple-100\/20 {
  background-color: rgba(225, 190, 231, 0.2);
}

.hover\:bg-purple-100\/20:hover {
  background-color: rgba(225, 190, 231, 0.2);
}

.bg-purple-100\/25 {
  background-color: rgba(225, 190, 231, 0.25);
}

.hover\:bg-purple-100\/25:hover {
  background-color: rgba(225, 190, 231, 0.25);
}

.bg-purple-100\/30 {
  background-color: rgba(225, 190, 231, 0.3);
}

.hover\:bg-purple-100\/30:hover {
  background-color: rgba(225, 190, 231, 0.3);
}

.bg-purple-100\/40 {
  background-color: rgba(225, 190, 231, 0.4);
}

.hover\:bg-purple-100\/40:hover {
  background-color: rgba(225, 190, 231, 0.4);
}

.bg-purple-100\/50 {
  background-color: rgba(225, 190, 231, 0.5);
}

.hover\:bg-purple-100\/50:hover {
  background-color: rgba(225, 190, 231, 0.5);
}

.bg-purple-100\/60 {
  background-color: rgba(225, 190, 231, 0.6);
}

.hover\:bg-purple-100\/60:hover {
  background-color: rgba(225, 190, 231, 0.6);
}

.bg-purple-100\/70 {
  background-color: rgba(225, 190, 231, 0.7);
}

.hover\:bg-purple-100\/70:hover {
  background-color: rgba(225, 190, 231, 0.7);
}

.bg-purple-100\/75 {
  background-color: rgba(225, 190, 231, 0.75);
}

.hover\:bg-purple-100\/75:hover {
  background-color: rgba(225, 190, 231, 0.75);
}

.bg-purple-100\/80 {
  background-color: rgba(225, 190, 231, 0.8);
}

.hover\:bg-purple-100\/80:hover {
  background-color: rgba(225, 190, 231, 0.8);
}

.bg-purple-100\/90 {
  background-color: rgba(225, 190, 231, 0.9);
}

.hover\:bg-purple-100\/90:hover {
  background-color: rgba(225, 190, 231, 0.9);
}

.bg-purple-100\/95 {
  background-color: rgba(225, 190, 231, 0.95);
}

.hover\:bg-purple-100\/95:hover {
  background-color: rgba(225, 190, 231, 0.95);
}

.bg-purple-100\/100 {
  background-color: #e1bee7;
}

.hover\:bg-purple-100\/100:hover {
  background-color: #e1bee7;
}

.bg-purple-200 {
  background-color: #ce93d8;
}

.hover\:bg-purple-200:hover {
  background-color: #ce93d8;
}

.bg-purple-200\/0 {
  background-color: rgba(206, 147, 216, 0);
}

.hover\:bg-purple-200\/0:hover {
  background-color: rgba(206, 147, 216, 0);
}

.bg-purple-200\/5 {
  background-color: rgba(206, 147, 216, 0.05);
}

.hover\:bg-purple-200\/5:hover {
  background-color: rgba(206, 147, 216, 0.05);
}

.bg-purple-200\/10 {
  background-color: rgba(206, 147, 216, 0.1);
}

.hover\:bg-purple-200\/10:hover {
  background-color: rgba(206, 147, 216, 0.1);
}

.bg-purple-200\/20 {
  background-color: rgba(206, 147, 216, 0.2);
}

.hover\:bg-purple-200\/20:hover {
  background-color: rgba(206, 147, 216, 0.2);
}

.bg-purple-200\/25 {
  background-color: rgba(206, 147, 216, 0.25);
}

.hover\:bg-purple-200\/25:hover {
  background-color: rgba(206, 147, 216, 0.25);
}

.bg-purple-200\/30 {
  background-color: rgba(206, 147, 216, 0.3);
}

.hover\:bg-purple-200\/30:hover {
  background-color: rgba(206, 147, 216, 0.3);
}

.bg-purple-200\/40 {
  background-color: rgba(206, 147, 216, 0.4);
}

.hover\:bg-purple-200\/40:hover {
  background-color: rgba(206, 147, 216, 0.4);
}

.bg-purple-200\/50 {
  background-color: rgba(206, 147, 216, 0.5);
}

.hover\:bg-purple-200\/50:hover {
  background-color: rgba(206, 147, 216, 0.5);
}

.bg-purple-200\/60 {
  background-color: rgba(206, 147, 216, 0.6);
}

.hover\:bg-purple-200\/60:hover {
  background-color: rgba(206, 147, 216, 0.6);
}

.bg-purple-200\/70 {
  background-color: rgba(206, 147, 216, 0.7);
}

.hover\:bg-purple-200\/70:hover {
  background-color: rgba(206, 147, 216, 0.7);
}

.bg-purple-200\/75 {
  background-color: rgba(206, 147, 216, 0.75);
}

.hover\:bg-purple-200\/75:hover {
  background-color: rgba(206, 147, 216, 0.75);
}

.bg-purple-200\/80 {
  background-color: rgba(206, 147, 216, 0.8);
}

.hover\:bg-purple-200\/80:hover {
  background-color: rgba(206, 147, 216, 0.8);
}

.bg-purple-200\/90 {
  background-color: rgba(206, 147, 216, 0.9);
}

.hover\:bg-purple-200\/90:hover {
  background-color: rgba(206, 147, 216, 0.9);
}

.bg-purple-200\/95 {
  background-color: rgba(206, 147, 216, 0.95);
}

.hover\:bg-purple-200\/95:hover {
  background-color: rgba(206, 147, 216, 0.95);
}

.bg-purple-200\/100 {
  background-color: #ce93d8;
}

.hover\:bg-purple-200\/100:hover {
  background-color: #ce93d8;
}

.bg-purple-300 {
  background-color: #ba68c8;
}

.hover\:bg-purple-300:hover {
  background-color: #ba68c8;
}

.bg-purple-300\/0 {
  background-color: rgba(186, 104, 200, 0);
}

.hover\:bg-purple-300\/0:hover {
  background-color: rgba(186, 104, 200, 0);
}

.bg-purple-300\/5 {
  background-color: rgba(186, 104, 200, 0.05);
}

.hover\:bg-purple-300\/5:hover {
  background-color: rgba(186, 104, 200, 0.05);
}

.bg-purple-300\/10 {
  background-color: rgba(186, 104, 200, 0.1);
}

.hover\:bg-purple-300\/10:hover {
  background-color: rgba(186, 104, 200, 0.1);
}

.bg-purple-300\/20 {
  background-color: rgba(186, 104, 200, 0.2);
}

.hover\:bg-purple-300\/20:hover {
  background-color: rgba(186, 104, 200, 0.2);
}

.bg-purple-300\/25 {
  background-color: rgba(186, 104, 200, 0.25);
}

.hover\:bg-purple-300\/25:hover {
  background-color: rgba(186, 104, 200, 0.25);
}

.bg-purple-300\/30 {
  background-color: rgba(186, 104, 200, 0.3);
}

.hover\:bg-purple-300\/30:hover {
  background-color: rgba(186, 104, 200, 0.3);
}

.bg-purple-300\/40 {
  background-color: rgba(186, 104, 200, 0.4);
}

.hover\:bg-purple-300\/40:hover {
  background-color: rgba(186, 104, 200, 0.4);
}

.bg-purple-300\/50 {
  background-color: rgba(186, 104, 200, 0.5);
}

.hover\:bg-purple-300\/50:hover {
  background-color: rgba(186, 104, 200, 0.5);
}

.bg-purple-300\/60 {
  background-color: rgba(186, 104, 200, 0.6);
}

.hover\:bg-purple-300\/60:hover {
  background-color: rgba(186, 104, 200, 0.6);
}

.bg-purple-300\/70 {
  background-color: rgba(186, 104, 200, 0.7);
}

.hover\:bg-purple-300\/70:hover {
  background-color: rgba(186, 104, 200, 0.7);
}

.bg-purple-300\/75 {
  background-color: rgba(186, 104, 200, 0.75);
}

.hover\:bg-purple-300\/75:hover {
  background-color: rgba(186, 104, 200, 0.75);
}

.bg-purple-300\/80 {
  background-color: rgba(186, 104, 200, 0.8);
}

.hover\:bg-purple-300\/80:hover {
  background-color: rgba(186, 104, 200, 0.8);
}

.bg-purple-300\/90 {
  background-color: rgba(186, 104, 200, 0.9);
}

.hover\:bg-purple-300\/90:hover {
  background-color: rgba(186, 104, 200, 0.9);
}

.bg-purple-300\/95 {
  background-color: rgba(186, 104, 200, 0.95);
}

.hover\:bg-purple-300\/95:hover {
  background-color: rgba(186, 104, 200, 0.95);
}

.bg-purple-300\/100 {
  background-color: #ba68c8;
}

.hover\:bg-purple-300\/100:hover {
  background-color: #ba68c8;
}

.bg-purple-400 {
  background-color: #ab47bc;
}

.hover\:bg-purple-400:hover {
  background-color: #ab47bc;
}

.bg-purple-400\/0 {
  background-color: rgba(171, 71, 188, 0);
}

.hover\:bg-purple-400\/0:hover {
  background-color: rgba(171, 71, 188, 0);
}

.bg-purple-400\/5 {
  background-color: rgba(171, 71, 188, 0.05);
}

.hover\:bg-purple-400\/5:hover {
  background-color: rgba(171, 71, 188, 0.05);
}

.bg-purple-400\/10 {
  background-color: rgba(171, 71, 188, 0.1);
}

.hover\:bg-purple-400\/10:hover {
  background-color: rgba(171, 71, 188, 0.1);
}

.bg-purple-400\/20 {
  background-color: rgba(171, 71, 188, 0.2);
}

.hover\:bg-purple-400\/20:hover {
  background-color: rgba(171, 71, 188, 0.2);
}

.bg-purple-400\/25 {
  background-color: rgba(171, 71, 188, 0.25);
}

.hover\:bg-purple-400\/25:hover {
  background-color: rgba(171, 71, 188, 0.25);
}

.bg-purple-400\/30 {
  background-color: rgba(171, 71, 188, 0.3);
}

.hover\:bg-purple-400\/30:hover {
  background-color: rgba(171, 71, 188, 0.3);
}

.bg-purple-400\/40 {
  background-color: rgba(171, 71, 188, 0.4);
}

.hover\:bg-purple-400\/40:hover {
  background-color: rgba(171, 71, 188, 0.4);
}

.bg-purple-400\/50 {
  background-color: rgba(171, 71, 188, 0.5);
}

.hover\:bg-purple-400\/50:hover {
  background-color: rgba(171, 71, 188, 0.5);
}

.bg-purple-400\/60 {
  background-color: rgba(171, 71, 188, 0.6);
}

.hover\:bg-purple-400\/60:hover {
  background-color: rgba(171, 71, 188, 0.6);
}

.bg-purple-400\/70 {
  background-color: rgba(171, 71, 188, 0.7);
}

.hover\:bg-purple-400\/70:hover {
  background-color: rgba(171, 71, 188, 0.7);
}

.bg-purple-400\/75 {
  background-color: rgba(171, 71, 188, 0.75);
}

.hover\:bg-purple-400\/75:hover {
  background-color: rgba(171, 71, 188, 0.75);
}

.bg-purple-400\/80 {
  background-color: rgba(171, 71, 188, 0.8);
}

.hover\:bg-purple-400\/80:hover {
  background-color: rgba(171, 71, 188, 0.8);
}

.bg-purple-400\/90 {
  background-color: rgba(171, 71, 188, 0.9);
}

.hover\:bg-purple-400\/90:hover {
  background-color: rgba(171, 71, 188, 0.9);
}

.bg-purple-400\/95 {
  background-color: rgba(171, 71, 188, 0.95);
}

.hover\:bg-purple-400\/95:hover {
  background-color: rgba(171, 71, 188, 0.95);
}

.bg-purple-400\/100 {
  background-color: #ab47bc;
}

.hover\:bg-purple-400\/100:hover {
  background-color: #ab47bc;
}

.bg-purple-500 {
  background-color: #9c27b0;
}

.hover\:bg-purple-500:hover {
  background-color: #9c27b0;
}

.bg-purple-500\/0 {
  background-color: rgba(156, 39, 176, 0);
}

.hover\:bg-purple-500\/0:hover {
  background-color: rgba(156, 39, 176, 0);
}

.bg-purple-500\/5 {
  background-color: rgba(156, 39, 176, 0.05);
}

.hover\:bg-purple-500\/5:hover {
  background-color: rgba(156, 39, 176, 0.05);
}

.bg-purple-500\/10 {
  background-color: rgba(156, 39, 176, 0.1);
}

.hover\:bg-purple-500\/10:hover {
  background-color: rgba(156, 39, 176, 0.1);
}

.bg-purple-500\/20 {
  background-color: rgba(156, 39, 176, 0.2);
}

.hover\:bg-purple-500\/20:hover {
  background-color: rgba(156, 39, 176, 0.2);
}

.bg-purple-500\/25 {
  background-color: rgba(156, 39, 176, 0.25);
}

.hover\:bg-purple-500\/25:hover {
  background-color: rgba(156, 39, 176, 0.25);
}

.bg-purple-500\/30 {
  background-color: rgba(156, 39, 176, 0.3);
}

.hover\:bg-purple-500\/30:hover {
  background-color: rgba(156, 39, 176, 0.3);
}

.bg-purple-500\/40 {
  background-color: rgba(156, 39, 176, 0.4);
}

.hover\:bg-purple-500\/40:hover {
  background-color: rgba(156, 39, 176, 0.4);
}

.bg-purple-500\/50 {
  background-color: rgba(156, 39, 176, 0.5);
}

.hover\:bg-purple-500\/50:hover {
  background-color: rgba(156, 39, 176, 0.5);
}

.bg-purple-500\/60 {
  background-color: rgba(156, 39, 176, 0.6);
}

.hover\:bg-purple-500\/60:hover {
  background-color: rgba(156, 39, 176, 0.6);
}

.bg-purple-500\/70 {
  background-color: rgba(156, 39, 176, 0.7);
}

.hover\:bg-purple-500\/70:hover {
  background-color: rgba(156, 39, 176, 0.7);
}

.bg-purple-500\/75 {
  background-color: rgba(156, 39, 176, 0.75);
}

.hover\:bg-purple-500\/75:hover {
  background-color: rgba(156, 39, 176, 0.75);
}

.bg-purple-500\/80 {
  background-color: rgba(156, 39, 176, 0.8);
}

.hover\:bg-purple-500\/80:hover {
  background-color: rgba(156, 39, 176, 0.8);
}

.bg-purple-500\/90 {
  background-color: rgba(156, 39, 176, 0.9);
}

.hover\:bg-purple-500\/90:hover {
  background-color: rgba(156, 39, 176, 0.9);
}

.bg-purple-500\/95 {
  background-color: rgba(156, 39, 176, 0.95);
}

.hover\:bg-purple-500\/95:hover {
  background-color: rgba(156, 39, 176, 0.95);
}

.bg-purple-500\/100 {
  background-color: #9c27b0;
}

.hover\:bg-purple-500\/100:hover {
  background-color: #9c27b0;
}

.bg-purple-600 {
  background-color: #8e24aa;
}

.hover\:bg-purple-600:hover {
  background-color: #8e24aa;
}

.bg-purple-600\/0 {
  background-color: rgba(142, 36, 170, 0);
}

.hover\:bg-purple-600\/0:hover {
  background-color: rgba(142, 36, 170, 0);
}

.bg-purple-600\/5 {
  background-color: rgba(142, 36, 170, 0.05);
}

.hover\:bg-purple-600\/5:hover {
  background-color: rgba(142, 36, 170, 0.05);
}

.bg-purple-600\/10 {
  background-color: rgba(142, 36, 170, 0.1);
}

.hover\:bg-purple-600\/10:hover {
  background-color: rgba(142, 36, 170, 0.1);
}

.bg-purple-600\/20 {
  background-color: rgba(142, 36, 170, 0.2);
}

.hover\:bg-purple-600\/20:hover {
  background-color: rgba(142, 36, 170, 0.2);
}

.bg-purple-600\/25 {
  background-color: rgba(142, 36, 170, 0.25);
}

.hover\:bg-purple-600\/25:hover {
  background-color: rgba(142, 36, 170, 0.25);
}

.bg-purple-600\/30 {
  background-color: rgba(142, 36, 170, 0.3);
}

.hover\:bg-purple-600\/30:hover {
  background-color: rgba(142, 36, 170, 0.3);
}

.bg-purple-600\/40 {
  background-color: rgba(142, 36, 170, 0.4);
}

.hover\:bg-purple-600\/40:hover {
  background-color: rgba(142, 36, 170, 0.4);
}

.bg-purple-600\/50 {
  background-color: rgba(142, 36, 170, 0.5);
}

.hover\:bg-purple-600\/50:hover {
  background-color: rgba(142, 36, 170, 0.5);
}

.bg-purple-600\/60 {
  background-color: rgba(142, 36, 170, 0.6);
}

.hover\:bg-purple-600\/60:hover {
  background-color: rgba(142, 36, 170, 0.6);
}

.bg-purple-600\/70 {
  background-color: rgba(142, 36, 170, 0.7);
}

.hover\:bg-purple-600\/70:hover {
  background-color: rgba(142, 36, 170, 0.7);
}

.bg-purple-600\/75 {
  background-color: rgba(142, 36, 170, 0.75);
}

.hover\:bg-purple-600\/75:hover {
  background-color: rgba(142, 36, 170, 0.75);
}

.bg-purple-600\/80 {
  background-color: rgba(142, 36, 170, 0.8);
}

.hover\:bg-purple-600\/80:hover {
  background-color: rgba(142, 36, 170, 0.8);
}

.bg-purple-600\/90 {
  background-color: rgba(142, 36, 170, 0.9);
}

.hover\:bg-purple-600\/90:hover {
  background-color: rgba(142, 36, 170, 0.9);
}

.bg-purple-600\/95 {
  background-color: rgba(142, 36, 170, 0.95);
}

.hover\:bg-purple-600\/95:hover {
  background-color: rgba(142, 36, 170, 0.95);
}

.bg-purple-600\/100 {
  background-color: #8e24aa;
}

.hover\:bg-purple-600\/100:hover {
  background-color: #8e24aa;
}

.bg-purple-700 {
  background-color: #7b1fa2;
}

.hover\:bg-purple-700:hover {
  background-color: #7b1fa2;
}

.bg-purple-700\/0 {
  background-color: rgba(123, 31, 162, 0);
}

.hover\:bg-purple-700\/0:hover {
  background-color: rgba(123, 31, 162, 0);
}

.bg-purple-700\/5 {
  background-color: rgba(123, 31, 162, 0.05);
}

.hover\:bg-purple-700\/5:hover {
  background-color: rgba(123, 31, 162, 0.05);
}

.bg-purple-700\/10 {
  background-color: rgba(123, 31, 162, 0.1);
}

.hover\:bg-purple-700\/10:hover {
  background-color: rgba(123, 31, 162, 0.1);
}

.bg-purple-700\/20 {
  background-color: rgba(123, 31, 162, 0.2);
}

.hover\:bg-purple-700\/20:hover {
  background-color: rgba(123, 31, 162, 0.2);
}

.bg-purple-700\/25 {
  background-color: rgba(123, 31, 162, 0.25);
}

.hover\:bg-purple-700\/25:hover {
  background-color: rgba(123, 31, 162, 0.25);
}

.bg-purple-700\/30 {
  background-color: rgba(123, 31, 162, 0.3);
}

.hover\:bg-purple-700\/30:hover {
  background-color: rgba(123, 31, 162, 0.3);
}

.bg-purple-700\/40 {
  background-color: rgba(123, 31, 162, 0.4);
}

.hover\:bg-purple-700\/40:hover {
  background-color: rgba(123, 31, 162, 0.4);
}

.bg-purple-700\/50 {
  background-color: rgba(123, 31, 162, 0.5);
}

.hover\:bg-purple-700\/50:hover {
  background-color: rgba(123, 31, 162, 0.5);
}

.bg-purple-700\/60 {
  background-color: rgba(123, 31, 162, 0.6);
}

.hover\:bg-purple-700\/60:hover {
  background-color: rgba(123, 31, 162, 0.6);
}

.bg-purple-700\/70 {
  background-color: rgba(123, 31, 162, 0.7);
}

.hover\:bg-purple-700\/70:hover {
  background-color: rgba(123, 31, 162, 0.7);
}

.bg-purple-700\/75 {
  background-color: rgba(123, 31, 162, 0.75);
}

.hover\:bg-purple-700\/75:hover {
  background-color: rgba(123, 31, 162, 0.75);
}

.bg-purple-700\/80 {
  background-color: rgba(123, 31, 162, 0.8);
}

.hover\:bg-purple-700\/80:hover {
  background-color: rgba(123, 31, 162, 0.8);
}

.bg-purple-700\/90 {
  background-color: rgba(123, 31, 162, 0.9);
}

.hover\:bg-purple-700\/90:hover {
  background-color: rgba(123, 31, 162, 0.9);
}

.bg-purple-700\/95 {
  background-color: rgba(123, 31, 162, 0.95);
}

.hover\:bg-purple-700\/95:hover {
  background-color: rgba(123, 31, 162, 0.95);
}

.bg-purple-700\/100 {
  background-color: #7b1fa2;
}

.hover\:bg-purple-700\/100:hover {
  background-color: #7b1fa2;
}

.bg-purple-800 {
  background-color: #6a1b9a;
}

.hover\:bg-purple-800:hover {
  background-color: #6a1b9a;
}

.bg-purple-800\/0 {
  background-color: rgba(106, 27, 154, 0);
}

.hover\:bg-purple-800\/0:hover {
  background-color: rgba(106, 27, 154, 0);
}

.bg-purple-800\/5 {
  background-color: rgba(106, 27, 154, 0.05);
}

.hover\:bg-purple-800\/5:hover {
  background-color: rgba(106, 27, 154, 0.05);
}

.bg-purple-800\/10 {
  background-color: rgba(106, 27, 154, 0.1);
}

.hover\:bg-purple-800\/10:hover {
  background-color: rgba(106, 27, 154, 0.1);
}

.bg-purple-800\/20 {
  background-color: rgba(106, 27, 154, 0.2);
}

.hover\:bg-purple-800\/20:hover {
  background-color: rgba(106, 27, 154, 0.2);
}

.bg-purple-800\/25 {
  background-color: rgba(106, 27, 154, 0.25);
}

.hover\:bg-purple-800\/25:hover {
  background-color: rgba(106, 27, 154, 0.25);
}

.bg-purple-800\/30 {
  background-color: rgba(106, 27, 154, 0.3);
}

.hover\:bg-purple-800\/30:hover {
  background-color: rgba(106, 27, 154, 0.3);
}

.bg-purple-800\/40 {
  background-color: rgba(106, 27, 154, 0.4);
}

.hover\:bg-purple-800\/40:hover {
  background-color: rgba(106, 27, 154, 0.4);
}

.bg-purple-800\/50 {
  background-color: rgba(106, 27, 154, 0.5);
}

.hover\:bg-purple-800\/50:hover {
  background-color: rgba(106, 27, 154, 0.5);
}

.bg-purple-800\/60 {
  background-color: rgba(106, 27, 154, 0.6);
}

.hover\:bg-purple-800\/60:hover {
  background-color: rgba(106, 27, 154, 0.6);
}

.bg-purple-800\/70 {
  background-color: rgba(106, 27, 154, 0.7);
}

.hover\:bg-purple-800\/70:hover {
  background-color: rgba(106, 27, 154, 0.7);
}

.bg-purple-800\/75 {
  background-color: rgba(106, 27, 154, 0.75);
}

.hover\:bg-purple-800\/75:hover {
  background-color: rgba(106, 27, 154, 0.75);
}

.bg-purple-800\/80 {
  background-color: rgba(106, 27, 154, 0.8);
}

.hover\:bg-purple-800\/80:hover {
  background-color: rgba(106, 27, 154, 0.8);
}

.bg-purple-800\/90 {
  background-color: rgba(106, 27, 154, 0.9);
}

.hover\:bg-purple-800\/90:hover {
  background-color: rgba(106, 27, 154, 0.9);
}

.bg-purple-800\/95 {
  background-color: rgba(106, 27, 154, 0.95);
}

.hover\:bg-purple-800\/95:hover {
  background-color: rgba(106, 27, 154, 0.95);
}

.bg-purple-800\/100 {
  background-color: #6a1b9a;
}

.hover\:bg-purple-800\/100:hover {
  background-color: #6a1b9a;
}

.bg-purple-900 {
  background-color: #4a148c;
}

.hover\:bg-purple-900:hover {
  background-color: #4a148c;
}

.bg-purple-900\/0 {
  background-color: rgba(74, 20, 140, 0);
}

.hover\:bg-purple-900\/0:hover {
  background-color: rgba(74, 20, 140, 0);
}

.bg-purple-900\/5 {
  background-color: rgba(74, 20, 140, 0.05);
}

.hover\:bg-purple-900\/5:hover {
  background-color: rgba(74, 20, 140, 0.05);
}

.bg-purple-900\/10 {
  background-color: rgba(74, 20, 140, 0.1);
}

.hover\:bg-purple-900\/10:hover {
  background-color: rgba(74, 20, 140, 0.1);
}

.bg-purple-900\/20 {
  background-color: rgba(74, 20, 140, 0.2);
}

.hover\:bg-purple-900\/20:hover {
  background-color: rgba(74, 20, 140, 0.2);
}

.bg-purple-900\/25 {
  background-color: rgba(74, 20, 140, 0.25);
}

.hover\:bg-purple-900\/25:hover {
  background-color: rgba(74, 20, 140, 0.25);
}

.bg-purple-900\/30 {
  background-color: rgba(74, 20, 140, 0.3);
}

.hover\:bg-purple-900\/30:hover {
  background-color: rgba(74, 20, 140, 0.3);
}

.bg-purple-900\/40 {
  background-color: rgba(74, 20, 140, 0.4);
}

.hover\:bg-purple-900\/40:hover {
  background-color: rgba(74, 20, 140, 0.4);
}

.bg-purple-900\/50 {
  background-color: rgba(74, 20, 140, 0.5);
}

.hover\:bg-purple-900\/50:hover {
  background-color: rgba(74, 20, 140, 0.5);
}

.bg-purple-900\/60 {
  background-color: rgba(74, 20, 140, 0.6);
}

.hover\:bg-purple-900\/60:hover {
  background-color: rgba(74, 20, 140, 0.6);
}

.bg-purple-900\/70 {
  background-color: rgba(74, 20, 140, 0.7);
}

.hover\:bg-purple-900\/70:hover {
  background-color: rgba(74, 20, 140, 0.7);
}

.bg-purple-900\/75 {
  background-color: rgba(74, 20, 140, 0.75);
}

.hover\:bg-purple-900\/75:hover {
  background-color: rgba(74, 20, 140, 0.75);
}

.bg-purple-900\/80 {
  background-color: rgba(74, 20, 140, 0.8);
}

.hover\:bg-purple-900\/80:hover {
  background-color: rgba(74, 20, 140, 0.8);
}

.bg-purple-900\/90 {
  background-color: rgba(74, 20, 140, 0.9);
}

.hover\:bg-purple-900\/90:hover {
  background-color: rgba(74, 20, 140, 0.9);
}

.bg-purple-900\/95 {
  background-color: rgba(74, 20, 140, 0.95);
}

.hover\:bg-purple-900\/95:hover {
  background-color: rgba(74, 20, 140, 0.95);
}

.bg-purple-900\/100 {
  background-color: #4a148c;
}

.hover\:bg-purple-900\/100:hover {
  background-color: #4a148c;
}

.bg-indigo-50 {
  background-color: #e8eaf6;
}

.hover\:bg-indigo-50:hover {
  background-color: #e8eaf6;
}

.bg-indigo-50\/0 {
  background-color: rgba(232, 234, 246, 0);
}

.hover\:bg-indigo-50\/0:hover {
  background-color: rgba(232, 234, 246, 0);
}

.bg-indigo-50\/5 {
  background-color: rgba(232, 234, 246, 0.05);
}

.hover\:bg-indigo-50\/5:hover {
  background-color: rgba(232, 234, 246, 0.05);
}

.bg-indigo-50\/10 {
  background-color: rgba(232, 234, 246, 0.1);
}

.hover\:bg-indigo-50\/10:hover {
  background-color: rgba(232, 234, 246, 0.1);
}

.bg-indigo-50\/20 {
  background-color: rgba(232, 234, 246, 0.2);
}

.hover\:bg-indigo-50\/20:hover {
  background-color: rgba(232, 234, 246, 0.2);
}

.bg-indigo-50\/25 {
  background-color: rgba(232, 234, 246, 0.25);
}

.hover\:bg-indigo-50\/25:hover {
  background-color: rgba(232, 234, 246, 0.25);
}

.bg-indigo-50\/30 {
  background-color: rgba(232, 234, 246, 0.3);
}

.hover\:bg-indigo-50\/30:hover {
  background-color: rgba(232, 234, 246, 0.3);
}

.bg-indigo-50\/40 {
  background-color: rgba(232, 234, 246, 0.4);
}

.hover\:bg-indigo-50\/40:hover {
  background-color: rgba(232, 234, 246, 0.4);
}

.bg-indigo-50\/50 {
  background-color: rgba(232, 234, 246, 0.5);
}

.hover\:bg-indigo-50\/50:hover {
  background-color: rgba(232, 234, 246, 0.5);
}

.bg-indigo-50\/60 {
  background-color: rgba(232, 234, 246, 0.6);
}

.hover\:bg-indigo-50\/60:hover {
  background-color: rgba(232, 234, 246, 0.6);
}

.bg-indigo-50\/70 {
  background-color: rgba(232, 234, 246, 0.7);
}

.hover\:bg-indigo-50\/70:hover {
  background-color: rgba(232, 234, 246, 0.7);
}

.bg-indigo-50\/75 {
  background-color: rgba(232, 234, 246, 0.75);
}

.hover\:bg-indigo-50\/75:hover {
  background-color: rgba(232, 234, 246, 0.75);
}

.bg-indigo-50\/80 {
  background-color: rgba(232, 234, 246, 0.8);
}

.hover\:bg-indigo-50\/80:hover {
  background-color: rgba(232, 234, 246, 0.8);
}

.bg-indigo-50\/90 {
  background-color: rgba(232, 234, 246, 0.9);
}

.hover\:bg-indigo-50\/90:hover {
  background-color: rgba(232, 234, 246, 0.9);
}

.bg-indigo-50\/95 {
  background-color: rgba(232, 234, 246, 0.95);
}

.hover\:bg-indigo-50\/95:hover {
  background-color: rgba(232, 234, 246, 0.95);
}

.bg-indigo-50\/100 {
  background-color: #e8eaf6;
}

.hover\:bg-indigo-50\/100:hover {
  background-color: #e8eaf6;
}

.bg-indigo-100 {
  background-color: #c5cae9;
}

.hover\:bg-indigo-100:hover {
  background-color: #c5cae9;
}

.bg-indigo-100\/0 {
  background-color: rgba(197, 202, 233, 0);
}

.hover\:bg-indigo-100\/0:hover {
  background-color: rgba(197, 202, 233, 0);
}

.bg-indigo-100\/5 {
  background-color: rgba(197, 202, 233, 0.05);
}

.hover\:bg-indigo-100\/5:hover {
  background-color: rgba(197, 202, 233, 0.05);
}

.bg-indigo-100\/10 {
  background-color: rgba(197, 202, 233, 0.1);
}

.hover\:bg-indigo-100\/10:hover {
  background-color: rgba(197, 202, 233, 0.1);
}

.bg-indigo-100\/20 {
  background-color: rgba(197, 202, 233, 0.2);
}

.hover\:bg-indigo-100\/20:hover {
  background-color: rgba(197, 202, 233, 0.2);
}

.bg-indigo-100\/25 {
  background-color: rgba(197, 202, 233, 0.25);
}

.hover\:bg-indigo-100\/25:hover {
  background-color: rgba(197, 202, 233, 0.25);
}

.bg-indigo-100\/30 {
  background-color: rgba(197, 202, 233, 0.3);
}

.hover\:bg-indigo-100\/30:hover {
  background-color: rgba(197, 202, 233, 0.3);
}

.bg-indigo-100\/40 {
  background-color: rgba(197, 202, 233, 0.4);
}

.hover\:bg-indigo-100\/40:hover {
  background-color: rgba(197, 202, 233, 0.4);
}

.bg-indigo-100\/50 {
  background-color: rgba(197, 202, 233, 0.5);
}

.hover\:bg-indigo-100\/50:hover {
  background-color: rgba(197, 202, 233, 0.5);
}

.bg-indigo-100\/60 {
  background-color: rgba(197, 202, 233, 0.6);
}

.hover\:bg-indigo-100\/60:hover {
  background-color: rgba(197, 202, 233, 0.6);
}

.bg-indigo-100\/70 {
  background-color: rgba(197, 202, 233, 0.7);
}

.hover\:bg-indigo-100\/70:hover {
  background-color: rgba(197, 202, 233, 0.7);
}

.bg-indigo-100\/75 {
  background-color: rgba(197, 202, 233, 0.75);
}

.hover\:bg-indigo-100\/75:hover {
  background-color: rgba(197, 202, 233, 0.75);
}

.bg-indigo-100\/80 {
  background-color: rgba(197, 202, 233, 0.8);
}

.hover\:bg-indigo-100\/80:hover {
  background-color: rgba(197, 202, 233, 0.8);
}

.bg-indigo-100\/90 {
  background-color: rgba(197, 202, 233, 0.9);
}

.hover\:bg-indigo-100\/90:hover {
  background-color: rgba(197, 202, 233, 0.9);
}

.bg-indigo-100\/95 {
  background-color: rgba(197, 202, 233, 0.95);
}

.hover\:bg-indigo-100\/95:hover {
  background-color: rgba(197, 202, 233, 0.95);
}

.bg-indigo-100\/100 {
  background-color: #c5cae9;
}

.hover\:bg-indigo-100\/100:hover {
  background-color: #c5cae9;
}

.bg-indigo-200 {
  background-color: #9fa8da;
}

.hover\:bg-indigo-200:hover {
  background-color: #9fa8da;
}

.bg-indigo-200\/0 {
  background-color: rgba(159, 168, 218, 0);
}

.hover\:bg-indigo-200\/0:hover {
  background-color: rgba(159, 168, 218, 0);
}

.bg-indigo-200\/5 {
  background-color: rgba(159, 168, 218, 0.05);
}

.hover\:bg-indigo-200\/5:hover {
  background-color: rgba(159, 168, 218, 0.05);
}

.bg-indigo-200\/10 {
  background-color: rgba(159, 168, 218, 0.1);
}

.hover\:bg-indigo-200\/10:hover {
  background-color: rgba(159, 168, 218, 0.1);
}

.bg-indigo-200\/20 {
  background-color: rgba(159, 168, 218, 0.2);
}

.hover\:bg-indigo-200\/20:hover {
  background-color: rgba(159, 168, 218, 0.2);
}

.bg-indigo-200\/25 {
  background-color: rgba(159, 168, 218, 0.25);
}

.hover\:bg-indigo-200\/25:hover {
  background-color: rgba(159, 168, 218, 0.25);
}

.bg-indigo-200\/30 {
  background-color: rgba(159, 168, 218, 0.3);
}

.hover\:bg-indigo-200\/30:hover {
  background-color: rgba(159, 168, 218, 0.3);
}

.bg-indigo-200\/40 {
  background-color: rgba(159, 168, 218, 0.4);
}

.hover\:bg-indigo-200\/40:hover {
  background-color: rgba(159, 168, 218, 0.4);
}

.bg-indigo-200\/50 {
  background-color: rgba(159, 168, 218, 0.5);
}

.hover\:bg-indigo-200\/50:hover {
  background-color: rgba(159, 168, 218, 0.5);
}

.bg-indigo-200\/60 {
  background-color: rgba(159, 168, 218, 0.6);
}

.hover\:bg-indigo-200\/60:hover {
  background-color: rgba(159, 168, 218, 0.6);
}

.bg-indigo-200\/70 {
  background-color: rgba(159, 168, 218, 0.7);
}

.hover\:bg-indigo-200\/70:hover {
  background-color: rgba(159, 168, 218, 0.7);
}

.bg-indigo-200\/75 {
  background-color: rgba(159, 168, 218, 0.75);
}

.hover\:bg-indigo-200\/75:hover {
  background-color: rgba(159, 168, 218, 0.75);
}

.bg-indigo-200\/80 {
  background-color: rgba(159, 168, 218, 0.8);
}

.hover\:bg-indigo-200\/80:hover {
  background-color: rgba(159, 168, 218, 0.8);
}

.bg-indigo-200\/90 {
  background-color: rgba(159, 168, 218, 0.9);
}

.hover\:bg-indigo-200\/90:hover {
  background-color: rgba(159, 168, 218, 0.9);
}

.bg-indigo-200\/95 {
  background-color: rgba(159, 168, 218, 0.95);
}

.hover\:bg-indigo-200\/95:hover {
  background-color: rgba(159, 168, 218, 0.95);
}

.bg-indigo-200\/100 {
  background-color: #9fa8da;
}

.hover\:bg-indigo-200\/100:hover {
  background-color: #9fa8da;
}

.bg-indigo-300 {
  background-color: #7986cb;
}

.hover\:bg-indigo-300:hover {
  background-color: #7986cb;
}

.bg-indigo-300\/0 {
  background-color: rgba(121, 134, 203, 0);
}

.hover\:bg-indigo-300\/0:hover {
  background-color: rgba(121, 134, 203, 0);
}

.bg-indigo-300\/5 {
  background-color: rgba(121, 134, 203, 0.05);
}

.hover\:bg-indigo-300\/5:hover {
  background-color: rgba(121, 134, 203, 0.05);
}

.bg-indigo-300\/10 {
  background-color: rgba(121, 134, 203, 0.1);
}

.hover\:bg-indigo-300\/10:hover {
  background-color: rgba(121, 134, 203, 0.1);
}

.bg-indigo-300\/20 {
  background-color: rgba(121, 134, 203, 0.2);
}

.hover\:bg-indigo-300\/20:hover {
  background-color: rgba(121, 134, 203, 0.2);
}

.bg-indigo-300\/25 {
  background-color: rgba(121, 134, 203, 0.25);
}

.hover\:bg-indigo-300\/25:hover {
  background-color: rgba(121, 134, 203, 0.25);
}

.bg-indigo-300\/30 {
  background-color: rgba(121, 134, 203, 0.3);
}

.hover\:bg-indigo-300\/30:hover {
  background-color: rgba(121, 134, 203, 0.3);
}

.bg-indigo-300\/40 {
  background-color: rgba(121, 134, 203, 0.4);
}

.hover\:bg-indigo-300\/40:hover {
  background-color: rgba(121, 134, 203, 0.4);
}

.bg-indigo-300\/50 {
  background-color: rgba(121, 134, 203, 0.5);
}

.hover\:bg-indigo-300\/50:hover {
  background-color: rgba(121, 134, 203, 0.5);
}

.bg-indigo-300\/60 {
  background-color: rgba(121, 134, 203, 0.6);
}

.hover\:bg-indigo-300\/60:hover {
  background-color: rgba(121, 134, 203, 0.6);
}

.bg-indigo-300\/70 {
  background-color: rgba(121, 134, 203, 0.7);
}

.hover\:bg-indigo-300\/70:hover {
  background-color: rgba(121, 134, 203, 0.7);
}

.bg-indigo-300\/75 {
  background-color: rgba(121, 134, 203, 0.75);
}

.hover\:bg-indigo-300\/75:hover {
  background-color: rgba(121, 134, 203, 0.75);
}

.bg-indigo-300\/80 {
  background-color: rgba(121, 134, 203, 0.8);
}

.hover\:bg-indigo-300\/80:hover {
  background-color: rgba(121, 134, 203, 0.8);
}

.bg-indigo-300\/90 {
  background-color: rgba(121, 134, 203, 0.9);
}

.hover\:bg-indigo-300\/90:hover {
  background-color: rgba(121, 134, 203, 0.9);
}

.bg-indigo-300\/95 {
  background-color: rgba(121, 134, 203, 0.95);
}

.hover\:bg-indigo-300\/95:hover {
  background-color: rgba(121, 134, 203, 0.95);
}

.bg-indigo-300\/100 {
  background-color: #7986cb;
}

.hover\:bg-indigo-300\/100:hover {
  background-color: #7986cb;
}

.bg-indigo-400 {
  background-color: #5c6bc0;
}

.hover\:bg-indigo-400:hover {
  background-color: #5c6bc0;
}

.bg-indigo-400\/0 {
  background-color: rgba(92, 107, 192, 0);
}

.hover\:bg-indigo-400\/0:hover {
  background-color: rgba(92, 107, 192, 0);
}

.bg-indigo-400\/5 {
  background-color: rgba(92, 107, 192, 0.05);
}

.hover\:bg-indigo-400\/5:hover {
  background-color: rgba(92, 107, 192, 0.05);
}

.bg-indigo-400\/10 {
  background-color: rgba(92, 107, 192, 0.1);
}

.hover\:bg-indigo-400\/10:hover {
  background-color: rgba(92, 107, 192, 0.1);
}

.bg-indigo-400\/20 {
  background-color: rgba(92, 107, 192, 0.2);
}

.hover\:bg-indigo-400\/20:hover {
  background-color: rgba(92, 107, 192, 0.2);
}

.bg-indigo-400\/25 {
  background-color: rgba(92, 107, 192, 0.25);
}

.hover\:bg-indigo-400\/25:hover {
  background-color: rgba(92, 107, 192, 0.25);
}

.bg-indigo-400\/30 {
  background-color: rgba(92, 107, 192, 0.3);
}

.hover\:bg-indigo-400\/30:hover {
  background-color: rgba(92, 107, 192, 0.3);
}

.bg-indigo-400\/40 {
  background-color: rgba(92, 107, 192, 0.4);
}

.hover\:bg-indigo-400\/40:hover {
  background-color: rgba(92, 107, 192, 0.4);
}

.bg-indigo-400\/50 {
  background-color: rgba(92, 107, 192, 0.5);
}

.hover\:bg-indigo-400\/50:hover {
  background-color: rgba(92, 107, 192, 0.5);
}

.bg-indigo-400\/60 {
  background-color: rgba(92, 107, 192, 0.6);
}

.hover\:bg-indigo-400\/60:hover {
  background-color: rgba(92, 107, 192, 0.6);
}

.bg-indigo-400\/70 {
  background-color: rgba(92, 107, 192, 0.7);
}

.hover\:bg-indigo-400\/70:hover {
  background-color: rgba(92, 107, 192, 0.7);
}

.bg-indigo-400\/75 {
  background-color: rgba(92, 107, 192, 0.75);
}

.hover\:bg-indigo-400\/75:hover {
  background-color: rgba(92, 107, 192, 0.75);
}

.bg-indigo-400\/80 {
  background-color: rgba(92, 107, 192, 0.8);
}

.hover\:bg-indigo-400\/80:hover {
  background-color: rgba(92, 107, 192, 0.8);
}

.bg-indigo-400\/90 {
  background-color: rgba(92, 107, 192, 0.9);
}

.hover\:bg-indigo-400\/90:hover {
  background-color: rgba(92, 107, 192, 0.9);
}

.bg-indigo-400\/95 {
  background-color: rgba(92, 107, 192, 0.95);
}

.hover\:bg-indigo-400\/95:hover {
  background-color: rgba(92, 107, 192, 0.95);
}

.bg-indigo-400\/100 {
  background-color: #5c6bc0;
}

.hover\:bg-indigo-400\/100:hover {
  background-color: #5c6bc0;
}

.bg-indigo-500 {
  background-color: #3f51b5;
}

.hover\:bg-indigo-500:hover {
  background-color: #3f51b5;
}

.bg-indigo-500\/0 {
  background-color: rgba(63, 81, 181, 0);
}

.hover\:bg-indigo-500\/0:hover {
  background-color: rgba(63, 81, 181, 0);
}

.bg-indigo-500\/5 {
  background-color: rgba(63, 81, 181, 0.05);
}

.hover\:bg-indigo-500\/5:hover {
  background-color: rgba(63, 81, 181, 0.05);
}

.bg-indigo-500\/10 {
  background-color: rgba(63, 81, 181, 0.1);
}

.hover\:bg-indigo-500\/10:hover {
  background-color: rgba(63, 81, 181, 0.1);
}

.bg-indigo-500\/20 {
  background-color: rgba(63, 81, 181, 0.2);
}

.hover\:bg-indigo-500\/20:hover {
  background-color: rgba(63, 81, 181, 0.2);
}

.bg-indigo-500\/25 {
  background-color: rgba(63, 81, 181, 0.25);
}

.hover\:bg-indigo-500\/25:hover {
  background-color: rgba(63, 81, 181, 0.25);
}

.bg-indigo-500\/30 {
  background-color: rgba(63, 81, 181, 0.3);
}

.hover\:bg-indigo-500\/30:hover {
  background-color: rgba(63, 81, 181, 0.3);
}

.bg-indigo-500\/40 {
  background-color: rgba(63, 81, 181, 0.4);
}

.hover\:bg-indigo-500\/40:hover {
  background-color: rgba(63, 81, 181, 0.4);
}

.bg-indigo-500\/50 {
  background-color: rgba(63, 81, 181, 0.5);
}

.hover\:bg-indigo-500\/50:hover {
  background-color: rgba(63, 81, 181, 0.5);
}

.bg-indigo-500\/60 {
  background-color: rgba(63, 81, 181, 0.6);
}

.hover\:bg-indigo-500\/60:hover {
  background-color: rgba(63, 81, 181, 0.6);
}

.bg-indigo-500\/70 {
  background-color: rgba(63, 81, 181, 0.7);
}

.hover\:bg-indigo-500\/70:hover {
  background-color: rgba(63, 81, 181, 0.7);
}

.bg-indigo-500\/75 {
  background-color: rgba(63, 81, 181, 0.75);
}

.hover\:bg-indigo-500\/75:hover {
  background-color: rgba(63, 81, 181, 0.75);
}

.bg-indigo-500\/80 {
  background-color: rgba(63, 81, 181, 0.8);
}

.hover\:bg-indigo-500\/80:hover {
  background-color: rgba(63, 81, 181, 0.8);
}

.bg-indigo-500\/90 {
  background-color: rgba(63, 81, 181, 0.9);
}

.hover\:bg-indigo-500\/90:hover {
  background-color: rgba(63, 81, 181, 0.9);
}

.bg-indigo-500\/95 {
  background-color: rgba(63, 81, 181, 0.95);
}

.hover\:bg-indigo-500\/95:hover {
  background-color: rgba(63, 81, 181, 0.95);
}

.bg-indigo-500\/100 {
  background-color: #3f51b5;
}

.hover\:bg-indigo-500\/100:hover {
  background-color: #3f51b5;
}

.bg-indigo-600 {
  background-color: #3949ab;
}

.hover\:bg-indigo-600:hover {
  background-color: #3949ab;
}

.bg-indigo-600\/0 {
  background-color: rgba(57, 73, 171, 0);
}

.hover\:bg-indigo-600\/0:hover {
  background-color: rgba(57, 73, 171, 0);
}

.bg-indigo-600\/5 {
  background-color: rgba(57, 73, 171, 0.05);
}

.hover\:bg-indigo-600\/5:hover {
  background-color: rgba(57, 73, 171, 0.05);
}

.bg-indigo-600\/10 {
  background-color: rgba(57, 73, 171, 0.1);
}

.hover\:bg-indigo-600\/10:hover {
  background-color: rgba(57, 73, 171, 0.1);
}

.bg-indigo-600\/20 {
  background-color: rgba(57, 73, 171, 0.2);
}

.hover\:bg-indigo-600\/20:hover {
  background-color: rgba(57, 73, 171, 0.2);
}

.bg-indigo-600\/25 {
  background-color: rgba(57, 73, 171, 0.25);
}

.hover\:bg-indigo-600\/25:hover {
  background-color: rgba(57, 73, 171, 0.25);
}

.bg-indigo-600\/30 {
  background-color: rgba(57, 73, 171, 0.3);
}

.hover\:bg-indigo-600\/30:hover {
  background-color: rgba(57, 73, 171, 0.3);
}

.bg-indigo-600\/40 {
  background-color: rgba(57, 73, 171, 0.4);
}

.hover\:bg-indigo-600\/40:hover {
  background-color: rgba(57, 73, 171, 0.4);
}

.bg-indigo-600\/50 {
  background-color: rgba(57, 73, 171, 0.5);
}

.hover\:bg-indigo-600\/50:hover {
  background-color: rgba(57, 73, 171, 0.5);
}

.bg-indigo-600\/60 {
  background-color: rgba(57, 73, 171, 0.6);
}

.hover\:bg-indigo-600\/60:hover {
  background-color: rgba(57, 73, 171, 0.6);
}

.bg-indigo-600\/70 {
  background-color: rgba(57, 73, 171, 0.7);
}

.hover\:bg-indigo-600\/70:hover {
  background-color: rgba(57, 73, 171, 0.7);
}

.bg-indigo-600\/75 {
  background-color: rgba(57, 73, 171, 0.75);
}

.hover\:bg-indigo-600\/75:hover {
  background-color: rgba(57, 73, 171, 0.75);
}

.bg-indigo-600\/80 {
  background-color: rgba(57, 73, 171, 0.8);
}

.hover\:bg-indigo-600\/80:hover {
  background-color: rgba(57, 73, 171, 0.8);
}

.bg-indigo-600\/90 {
  background-color: rgba(57, 73, 171, 0.9);
}

.hover\:bg-indigo-600\/90:hover {
  background-color: rgba(57, 73, 171, 0.9);
}

.bg-indigo-600\/95 {
  background-color: rgba(57, 73, 171, 0.95);
}

.hover\:bg-indigo-600\/95:hover {
  background-color: rgba(57, 73, 171, 0.95);
}

.bg-indigo-600\/100 {
  background-color: #3949ab;
}

.hover\:bg-indigo-600\/100:hover {
  background-color: #3949ab;
}

.bg-indigo-700 {
  background-color: #303f9f;
}

.hover\:bg-indigo-700:hover {
  background-color: #303f9f;
}

.bg-indigo-700\/0 {
  background-color: rgba(48, 63, 159, 0);
}

.hover\:bg-indigo-700\/0:hover {
  background-color: rgba(48, 63, 159, 0);
}

.bg-indigo-700\/5 {
  background-color: rgba(48, 63, 159, 0.05);
}

.hover\:bg-indigo-700\/5:hover {
  background-color: rgba(48, 63, 159, 0.05);
}

.bg-indigo-700\/10 {
  background-color: rgba(48, 63, 159, 0.1);
}

.hover\:bg-indigo-700\/10:hover {
  background-color: rgba(48, 63, 159, 0.1);
}

.bg-indigo-700\/20 {
  background-color: rgba(48, 63, 159, 0.2);
}

.hover\:bg-indigo-700\/20:hover {
  background-color: rgba(48, 63, 159, 0.2);
}

.bg-indigo-700\/25 {
  background-color: rgba(48, 63, 159, 0.25);
}

.hover\:bg-indigo-700\/25:hover {
  background-color: rgba(48, 63, 159, 0.25);
}

.bg-indigo-700\/30 {
  background-color: rgba(48, 63, 159, 0.3);
}

.hover\:bg-indigo-700\/30:hover {
  background-color: rgba(48, 63, 159, 0.3);
}

.bg-indigo-700\/40 {
  background-color: rgba(48, 63, 159, 0.4);
}

.hover\:bg-indigo-700\/40:hover {
  background-color: rgba(48, 63, 159, 0.4);
}

.bg-indigo-700\/50 {
  background-color: rgba(48, 63, 159, 0.5);
}

.hover\:bg-indigo-700\/50:hover {
  background-color: rgba(48, 63, 159, 0.5);
}

.bg-indigo-700\/60 {
  background-color: rgba(48, 63, 159, 0.6);
}

.hover\:bg-indigo-700\/60:hover {
  background-color: rgba(48, 63, 159, 0.6);
}

.bg-indigo-700\/70 {
  background-color: rgba(48, 63, 159, 0.7);
}

.hover\:bg-indigo-700\/70:hover {
  background-color: rgba(48, 63, 159, 0.7);
}

.bg-indigo-700\/75 {
  background-color: rgba(48, 63, 159, 0.75);
}

.hover\:bg-indigo-700\/75:hover {
  background-color: rgba(48, 63, 159, 0.75);
}

.bg-indigo-700\/80 {
  background-color: rgba(48, 63, 159, 0.8);
}

.hover\:bg-indigo-700\/80:hover {
  background-color: rgba(48, 63, 159, 0.8);
}

.bg-indigo-700\/90 {
  background-color: rgba(48, 63, 159, 0.9);
}

.hover\:bg-indigo-700\/90:hover {
  background-color: rgba(48, 63, 159, 0.9);
}

.bg-indigo-700\/95 {
  background-color: rgba(48, 63, 159, 0.95);
}

.hover\:bg-indigo-700\/95:hover {
  background-color: rgba(48, 63, 159, 0.95);
}

.bg-indigo-700\/100 {
  background-color: #303f9f;
}

.hover\:bg-indigo-700\/100:hover {
  background-color: #303f9f;
}

.bg-indigo-800 {
  background-color: #283593;
}

.hover\:bg-indigo-800:hover {
  background-color: #283593;
}

.bg-indigo-800\/0 {
  background-color: rgba(40, 53, 147, 0);
}

.hover\:bg-indigo-800\/0:hover {
  background-color: rgba(40, 53, 147, 0);
}

.bg-indigo-800\/5 {
  background-color: rgba(40, 53, 147, 0.05);
}

.hover\:bg-indigo-800\/5:hover {
  background-color: rgba(40, 53, 147, 0.05);
}

.bg-indigo-800\/10 {
  background-color: rgba(40, 53, 147, 0.1);
}

.hover\:bg-indigo-800\/10:hover {
  background-color: rgba(40, 53, 147, 0.1);
}

.bg-indigo-800\/20 {
  background-color: rgba(40, 53, 147, 0.2);
}

.hover\:bg-indigo-800\/20:hover {
  background-color: rgba(40, 53, 147, 0.2);
}

.bg-indigo-800\/25 {
  background-color: rgba(40, 53, 147, 0.25);
}

.hover\:bg-indigo-800\/25:hover {
  background-color: rgba(40, 53, 147, 0.25);
}

.bg-indigo-800\/30 {
  background-color: rgba(40, 53, 147, 0.3);
}

.hover\:bg-indigo-800\/30:hover {
  background-color: rgba(40, 53, 147, 0.3);
}

.bg-indigo-800\/40 {
  background-color: rgba(40, 53, 147, 0.4);
}

.hover\:bg-indigo-800\/40:hover {
  background-color: rgba(40, 53, 147, 0.4);
}

.bg-indigo-800\/50 {
  background-color: rgba(40, 53, 147, 0.5);
}

.hover\:bg-indigo-800\/50:hover {
  background-color: rgba(40, 53, 147, 0.5);
}

.bg-indigo-800\/60 {
  background-color: rgba(40, 53, 147, 0.6);
}

.hover\:bg-indigo-800\/60:hover {
  background-color: rgba(40, 53, 147, 0.6);
}

.bg-indigo-800\/70 {
  background-color: rgba(40, 53, 147, 0.7);
}

.hover\:bg-indigo-800\/70:hover {
  background-color: rgba(40, 53, 147, 0.7);
}

.bg-indigo-800\/75 {
  background-color: rgba(40, 53, 147, 0.75);
}

.hover\:bg-indigo-800\/75:hover {
  background-color: rgba(40, 53, 147, 0.75);
}

.bg-indigo-800\/80 {
  background-color: rgba(40, 53, 147, 0.8);
}

.hover\:bg-indigo-800\/80:hover {
  background-color: rgba(40, 53, 147, 0.8);
}

.bg-indigo-800\/90 {
  background-color: rgba(40, 53, 147, 0.9);
}

.hover\:bg-indigo-800\/90:hover {
  background-color: rgba(40, 53, 147, 0.9);
}

.bg-indigo-800\/95 {
  background-color: rgba(40, 53, 147, 0.95);
}

.hover\:bg-indigo-800\/95:hover {
  background-color: rgba(40, 53, 147, 0.95);
}

.bg-indigo-800\/100 {
  background-color: #283593;
}

.hover\:bg-indigo-800\/100:hover {
  background-color: #283593;
}

.bg-indigo-900 {
  background-color: #1a237e;
}

.hover\:bg-indigo-900:hover {
  background-color: #1a237e;
}

.bg-indigo-900\/0 {
  background-color: rgba(26, 35, 126, 0);
}

.hover\:bg-indigo-900\/0:hover {
  background-color: rgba(26, 35, 126, 0);
}

.bg-indigo-900\/5 {
  background-color: rgba(26, 35, 126, 0.05);
}

.hover\:bg-indigo-900\/5:hover {
  background-color: rgba(26, 35, 126, 0.05);
}

.bg-indigo-900\/10 {
  background-color: rgba(26, 35, 126, 0.1);
}

.hover\:bg-indigo-900\/10:hover {
  background-color: rgba(26, 35, 126, 0.1);
}

.bg-indigo-900\/20 {
  background-color: rgba(26, 35, 126, 0.2);
}

.hover\:bg-indigo-900\/20:hover {
  background-color: rgba(26, 35, 126, 0.2);
}

.bg-indigo-900\/25 {
  background-color: rgba(26, 35, 126, 0.25);
}

.hover\:bg-indigo-900\/25:hover {
  background-color: rgba(26, 35, 126, 0.25);
}

.bg-indigo-900\/30 {
  background-color: rgba(26, 35, 126, 0.3);
}

.hover\:bg-indigo-900\/30:hover {
  background-color: rgba(26, 35, 126, 0.3);
}

.bg-indigo-900\/40 {
  background-color: rgba(26, 35, 126, 0.4);
}

.hover\:bg-indigo-900\/40:hover {
  background-color: rgba(26, 35, 126, 0.4);
}

.bg-indigo-900\/50 {
  background-color: rgba(26, 35, 126, 0.5);
}

.hover\:bg-indigo-900\/50:hover {
  background-color: rgba(26, 35, 126, 0.5);
}

.bg-indigo-900\/60 {
  background-color: rgba(26, 35, 126, 0.6);
}

.hover\:bg-indigo-900\/60:hover {
  background-color: rgba(26, 35, 126, 0.6);
}

.bg-indigo-900\/70 {
  background-color: rgba(26, 35, 126, 0.7);
}

.hover\:bg-indigo-900\/70:hover {
  background-color: rgba(26, 35, 126, 0.7);
}

.bg-indigo-900\/75 {
  background-color: rgba(26, 35, 126, 0.75);
}

.hover\:bg-indigo-900\/75:hover {
  background-color: rgba(26, 35, 126, 0.75);
}

.bg-indigo-900\/80 {
  background-color: rgba(26, 35, 126, 0.8);
}

.hover\:bg-indigo-900\/80:hover {
  background-color: rgba(26, 35, 126, 0.8);
}

.bg-indigo-900\/90 {
  background-color: rgba(26, 35, 126, 0.9);
}

.hover\:bg-indigo-900\/90:hover {
  background-color: rgba(26, 35, 126, 0.9);
}

.bg-indigo-900\/95 {
  background-color: rgba(26, 35, 126, 0.95);
}

.hover\:bg-indigo-900\/95:hover {
  background-color: rgba(26, 35, 126, 0.95);
}

.bg-indigo-900\/100 {
  background-color: #1a237e;
}

.hover\:bg-indigo-900\/100:hover {
  background-color: #1a237e;
}

.bg-blue-50 {
  background-color: #e3f2fd;
}

.hover\:bg-blue-50:hover {
  background-color: #e3f2fd;
}

.bg-blue-50\/0 {
  background-color: rgba(227, 242, 253, 0);
}

.hover\:bg-blue-50\/0:hover {
  background-color: rgba(227, 242, 253, 0);
}

.bg-blue-50\/5 {
  background-color: rgba(227, 242, 253, 0.05);
}

.hover\:bg-blue-50\/5:hover {
  background-color: rgba(227, 242, 253, 0.05);
}

.bg-blue-50\/10 {
  background-color: rgba(227, 242, 253, 0.1);
}

.hover\:bg-blue-50\/10:hover {
  background-color: rgba(227, 242, 253, 0.1);
}

.bg-blue-50\/20 {
  background-color: rgba(227, 242, 253, 0.2);
}

.hover\:bg-blue-50\/20:hover {
  background-color: rgba(227, 242, 253, 0.2);
}

.bg-blue-50\/25 {
  background-color: rgba(227, 242, 253, 0.25);
}

.hover\:bg-blue-50\/25:hover {
  background-color: rgba(227, 242, 253, 0.25);
}

.bg-blue-50\/30 {
  background-color: rgba(227, 242, 253, 0.3);
}

.hover\:bg-blue-50\/30:hover {
  background-color: rgba(227, 242, 253, 0.3);
}

.bg-blue-50\/40 {
  background-color: rgba(227, 242, 253, 0.4);
}

.hover\:bg-blue-50\/40:hover {
  background-color: rgba(227, 242, 253, 0.4);
}

.bg-blue-50\/50 {
  background-color: rgba(227, 242, 253, 0.5);
}

.hover\:bg-blue-50\/50:hover {
  background-color: rgba(227, 242, 253, 0.5);
}

.bg-blue-50\/60 {
  background-color: rgba(227, 242, 253, 0.6);
}

.hover\:bg-blue-50\/60:hover {
  background-color: rgba(227, 242, 253, 0.6);
}

.bg-blue-50\/70 {
  background-color: rgba(227, 242, 253, 0.7);
}

.hover\:bg-blue-50\/70:hover {
  background-color: rgba(227, 242, 253, 0.7);
}

.bg-blue-50\/75 {
  background-color: rgba(227, 242, 253, 0.75);
}

.hover\:bg-blue-50\/75:hover {
  background-color: rgba(227, 242, 253, 0.75);
}

.bg-blue-50\/80 {
  background-color: rgba(227, 242, 253, 0.8);
}

.hover\:bg-blue-50\/80:hover {
  background-color: rgba(227, 242, 253, 0.8);
}

.bg-blue-50\/90 {
  background-color: rgba(227, 242, 253, 0.9);
}

.hover\:bg-blue-50\/90:hover {
  background-color: rgba(227, 242, 253, 0.9);
}

.bg-blue-50\/95 {
  background-color: rgba(227, 242, 253, 0.95);
}

.hover\:bg-blue-50\/95:hover {
  background-color: rgba(227, 242, 253, 0.95);
}

.bg-blue-50\/100 {
  background-color: #e3f2fd;
}

.hover\:bg-blue-50\/100:hover {
  background-color: #e3f2fd;
}

.bg-blue-100 {
  background-color: #bbdefb;
}

.hover\:bg-blue-100:hover {
  background-color: #bbdefb;
}

.bg-blue-100\/0 {
  background-color: rgba(187, 222, 251, 0);
}

.hover\:bg-blue-100\/0:hover {
  background-color: rgba(187, 222, 251, 0);
}

.bg-blue-100\/5 {
  background-color: rgba(187, 222, 251, 0.05);
}

.hover\:bg-blue-100\/5:hover {
  background-color: rgba(187, 222, 251, 0.05);
}

.bg-blue-100\/10 {
  background-color: rgba(187, 222, 251, 0.1);
}

.hover\:bg-blue-100\/10:hover {
  background-color: rgba(187, 222, 251, 0.1);
}

.bg-blue-100\/20 {
  background-color: rgba(187, 222, 251, 0.2);
}

.hover\:bg-blue-100\/20:hover {
  background-color: rgba(187, 222, 251, 0.2);
}

.bg-blue-100\/25 {
  background-color: rgba(187, 222, 251, 0.25);
}

.hover\:bg-blue-100\/25:hover {
  background-color: rgba(187, 222, 251, 0.25);
}

.bg-blue-100\/30 {
  background-color: rgba(187, 222, 251, 0.3);
}

.hover\:bg-blue-100\/30:hover {
  background-color: rgba(187, 222, 251, 0.3);
}

.bg-blue-100\/40 {
  background-color: rgba(187, 222, 251, 0.4);
}

.hover\:bg-blue-100\/40:hover {
  background-color: rgba(187, 222, 251, 0.4);
}

.bg-blue-100\/50 {
  background-color: rgba(187, 222, 251, 0.5);
}

.hover\:bg-blue-100\/50:hover {
  background-color: rgba(187, 222, 251, 0.5);
}

.bg-blue-100\/60 {
  background-color: rgba(187, 222, 251, 0.6);
}

.hover\:bg-blue-100\/60:hover {
  background-color: rgba(187, 222, 251, 0.6);
}

.bg-blue-100\/70 {
  background-color: rgba(187, 222, 251, 0.7);
}

.hover\:bg-blue-100\/70:hover {
  background-color: rgba(187, 222, 251, 0.7);
}

.bg-blue-100\/75 {
  background-color: rgba(187, 222, 251, 0.75);
}

.hover\:bg-blue-100\/75:hover {
  background-color: rgba(187, 222, 251, 0.75);
}

.bg-blue-100\/80 {
  background-color: rgba(187, 222, 251, 0.8);
}

.hover\:bg-blue-100\/80:hover {
  background-color: rgba(187, 222, 251, 0.8);
}

.bg-blue-100\/90 {
  background-color: rgba(187, 222, 251, 0.9);
}

.hover\:bg-blue-100\/90:hover {
  background-color: rgba(187, 222, 251, 0.9);
}

.bg-blue-100\/95 {
  background-color: rgba(187, 222, 251, 0.95);
}

.hover\:bg-blue-100\/95:hover {
  background-color: rgba(187, 222, 251, 0.95);
}

.bg-blue-100\/100 {
  background-color: #bbdefb;
}

.hover\:bg-blue-100\/100:hover {
  background-color: #bbdefb;
}

.bg-blue-200 {
  background-color: #90caf9;
}

.hover\:bg-blue-200:hover {
  background-color: #90caf9;
}

.bg-blue-200\/0 {
  background-color: rgba(144, 202, 249, 0);
}

.hover\:bg-blue-200\/0:hover {
  background-color: rgba(144, 202, 249, 0);
}

.bg-blue-200\/5 {
  background-color: rgba(144, 202, 249, 0.05);
}

.hover\:bg-blue-200\/5:hover {
  background-color: rgba(144, 202, 249, 0.05);
}

.bg-blue-200\/10 {
  background-color: rgba(144, 202, 249, 0.1);
}

.hover\:bg-blue-200\/10:hover {
  background-color: rgba(144, 202, 249, 0.1);
}

.bg-blue-200\/20 {
  background-color: rgba(144, 202, 249, 0.2);
}

.hover\:bg-blue-200\/20:hover {
  background-color: rgba(144, 202, 249, 0.2);
}

.bg-blue-200\/25 {
  background-color: rgba(144, 202, 249, 0.25);
}

.hover\:bg-blue-200\/25:hover {
  background-color: rgba(144, 202, 249, 0.25);
}

.bg-blue-200\/30 {
  background-color: rgba(144, 202, 249, 0.3);
}

.hover\:bg-blue-200\/30:hover {
  background-color: rgba(144, 202, 249, 0.3);
}

.bg-blue-200\/40 {
  background-color: rgba(144, 202, 249, 0.4);
}

.hover\:bg-blue-200\/40:hover {
  background-color: rgba(144, 202, 249, 0.4);
}

.bg-blue-200\/50 {
  background-color: rgba(144, 202, 249, 0.5);
}

.hover\:bg-blue-200\/50:hover {
  background-color: rgba(144, 202, 249, 0.5);
}

.bg-blue-200\/60 {
  background-color: rgba(144, 202, 249, 0.6);
}

.hover\:bg-blue-200\/60:hover {
  background-color: rgba(144, 202, 249, 0.6);
}

.bg-blue-200\/70 {
  background-color: rgba(144, 202, 249, 0.7);
}

.hover\:bg-blue-200\/70:hover {
  background-color: rgba(144, 202, 249, 0.7);
}

.bg-blue-200\/75 {
  background-color: rgba(144, 202, 249, 0.75);
}

.hover\:bg-blue-200\/75:hover {
  background-color: rgba(144, 202, 249, 0.75);
}

.bg-blue-200\/80 {
  background-color: rgba(144, 202, 249, 0.8);
}

.hover\:bg-blue-200\/80:hover {
  background-color: rgba(144, 202, 249, 0.8);
}

.bg-blue-200\/90 {
  background-color: rgba(144, 202, 249, 0.9);
}

.hover\:bg-blue-200\/90:hover {
  background-color: rgba(144, 202, 249, 0.9);
}

.bg-blue-200\/95 {
  background-color: rgba(144, 202, 249, 0.95);
}

.hover\:bg-blue-200\/95:hover {
  background-color: rgba(144, 202, 249, 0.95);
}

.bg-blue-200\/100 {
  background-color: #90caf9;
}

.hover\:bg-blue-200\/100:hover {
  background-color: #90caf9;
}

.bg-blue-300 {
  background-color: #64b5f6;
}

.hover\:bg-blue-300:hover {
  background-color: #64b5f6;
}

.bg-blue-300\/0 {
  background-color: rgba(100, 181, 246, 0);
}

.hover\:bg-blue-300\/0:hover {
  background-color: rgba(100, 181, 246, 0);
}

.bg-blue-300\/5 {
  background-color: rgba(100, 181, 246, 0.05);
}

.hover\:bg-blue-300\/5:hover {
  background-color: rgba(100, 181, 246, 0.05);
}

.bg-blue-300\/10 {
  background-color: rgba(100, 181, 246, 0.1);
}

.hover\:bg-blue-300\/10:hover {
  background-color: rgba(100, 181, 246, 0.1);
}

.bg-blue-300\/20 {
  background-color: rgba(100, 181, 246, 0.2);
}

.hover\:bg-blue-300\/20:hover {
  background-color: rgba(100, 181, 246, 0.2);
}

.bg-blue-300\/25 {
  background-color: rgba(100, 181, 246, 0.25);
}

.hover\:bg-blue-300\/25:hover {
  background-color: rgba(100, 181, 246, 0.25);
}

.bg-blue-300\/30 {
  background-color: rgba(100, 181, 246, 0.3);
}

.hover\:bg-blue-300\/30:hover {
  background-color: rgba(100, 181, 246, 0.3);
}

.bg-blue-300\/40 {
  background-color: rgba(100, 181, 246, 0.4);
}

.hover\:bg-blue-300\/40:hover {
  background-color: rgba(100, 181, 246, 0.4);
}

.bg-blue-300\/50 {
  background-color: rgba(100, 181, 246, 0.5);
}

.hover\:bg-blue-300\/50:hover {
  background-color: rgba(100, 181, 246, 0.5);
}

.bg-blue-300\/60 {
  background-color: rgba(100, 181, 246, 0.6);
}

.hover\:bg-blue-300\/60:hover {
  background-color: rgba(100, 181, 246, 0.6);
}

.bg-blue-300\/70 {
  background-color: rgba(100, 181, 246, 0.7);
}

.hover\:bg-blue-300\/70:hover {
  background-color: rgba(100, 181, 246, 0.7);
}

.bg-blue-300\/75 {
  background-color: rgba(100, 181, 246, 0.75);
}

.hover\:bg-blue-300\/75:hover {
  background-color: rgba(100, 181, 246, 0.75);
}

.bg-blue-300\/80 {
  background-color: rgba(100, 181, 246, 0.8);
}

.hover\:bg-blue-300\/80:hover {
  background-color: rgba(100, 181, 246, 0.8);
}

.bg-blue-300\/90 {
  background-color: rgba(100, 181, 246, 0.9);
}

.hover\:bg-blue-300\/90:hover {
  background-color: rgba(100, 181, 246, 0.9);
}

.bg-blue-300\/95 {
  background-color: rgba(100, 181, 246, 0.95);
}

.hover\:bg-blue-300\/95:hover {
  background-color: rgba(100, 181, 246, 0.95);
}

.bg-blue-300\/100 {
  background-color: #64b5f6;
}

.hover\:bg-blue-300\/100:hover {
  background-color: #64b5f6;
}

.bg-blue-400 {
  background-color: #42a5f5;
}

.hover\:bg-blue-400:hover {
  background-color: #42a5f5;
}

.bg-blue-400\/0 {
  background-color: rgba(66, 165, 245, 0);
}

.hover\:bg-blue-400\/0:hover {
  background-color: rgba(66, 165, 245, 0);
}

.bg-blue-400\/5 {
  background-color: rgba(66, 165, 245, 0.05);
}

.hover\:bg-blue-400\/5:hover {
  background-color: rgba(66, 165, 245, 0.05);
}

.bg-blue-400\/10 {
  background-color: rgba(66, 165, 245, 0.1);
}

.hover\:bg-blue-400\/10:hover {
  background-color: rgba(66, 165, 245, 0.1);
}

.bg-blue-400\/20 {
  background-color: rgba(66, 165, 245, 0.2);
}

.hover\:bg-blue-400\/20:hover {
  background-color: rgba(66, 165, 245, 0.2);
}

.bg-blue-400\/25 {
  background-color: rgba(66, 165, 245, 0.25);
}

.hover\:bg-blue-400\/25:hover {
  background-color: rgba(66, 165, 245, 0.25);
}

.bg-blue-400\/30 {
  background-color: rgba(66, 165, 245, 0.3);
}

.hover\:bg-blue-400\/30:hover {
  background-color: rgba(66, 165, 245, 0.3);
}

.bg-blue-400\/40 {
  background-color: rgba(66, 165, 245, 0.4);
}

.hover\:bg-blue-400\/40:hover {
  background-color: rgba(66, 165, 245, 0.4);
}

.bg-blue-400\/50 {
  background-color: rgba(66, 165, 245, 0.5);
}

.hover\:bg-blue-400\/50:hover {
  background-color: rgba(66, 165, 245, 0.5);
}

.bg-blue-400\/60 {
  background-color: rgba(66, 165, 245, 0.6);
}

.hover\:bg-blue-400\/60:hover {
  background-color: rgba(66, 165, 245, 0.6);
}

.bg-blue-400\/70 {
  background-color: rgba(66, 165, 245, 0.7);
}

.hover\:bg-blue-400\/70:hover {
  background-color: rgba(66, 165, 245, 0.7);
}

.bg-blue-400\/75 {
  background-color: rgba(66, 165, 245, 0.75);
}

.hover\:bg-blue-400\/75:hover {
  background-color: rgba(66, 165, 245, 0.75);
}

.bg-blue-400\/80 {
  background-color: rgba(66, 165, 245, 0.8);
}

.hover\:bg-blue-400\/80:hover {
  background-color: rgba(66, 165, 245, 0.8);
}

.bg-blue-400\/90 {
  background-color: rgba(66, 165, 245, 0.9);
}

.hover\:bg-blue-400\/90:hover {
  background-color: rgba(66, 165, 245, 0.9);
}

.bg-blue-400\/95 {
  background-color: rgba(66, 165, 245, 0.95);
}

.hover\:bg-blue-400\/95:hover {
  background-color: rgba(66, 165, 245, 0.95);
}

.bg-blue-400\/100 {
  background-color: #42a5f5;
}

.hover\:bg-blue-400\/100:hover {
  background-color: #42a5f5;
}

.bg-blue-500 {
  background-color: #2196f3;
}

.hover\:bg-blue-500:hover {
  background-color: #2196f3;
}

.bg-blue-500\/0 {
  background-color: rgba(33, 150, 243, 0);
}

.hover\:bg-blue-500\/0:hover {
  background-color: rgba(33, 150, 243, 0);
}

.bg-blue-500\/5 {
  background-color: rgba(33, 150, 243, 0.05);
}

.hover\:bg-blue-500\/5:hover {
  background-color: rgba(33, 150, 243, 0.05);
}

.bg-blue-500\/10 {
  background-color: rgba(33, 150, 243, 0.1);
}

.hover\:bg-blue-500\/10:hover {
  background-color: rgba(33, 150, 243, 0.1);
}

.bg-blue-500\/20 {
  background-color: rgba(33, 150, 243, 0.2);
}

.hover\:bg-blue-500\/20:hover {
  background-color: rgba(33, 150, 243, 0.2);
}

.bg-blue-500\/25 {
  background-color: rgba(33, 150, 243, 0.25);
}

.hover\:bg-blue-500\/25:hover {
  background-color: rgba(33, 150, 243, 0.25);
}

.bg-blue-500\/30 {
  background-color: rgba(33, 150, 243, 0.3);
}

.hover\:bg-blue-500\/30:hover {
  background-color: rgba(33, 150, 243, 0.3);
}

.bg-blue-500\/40 {
  background-color: rgba(33, 150, 243, 0.4);
}

.hover\:bg-blue-500\/40:hover {
  background-color: rgba(33, 150, 243, 0.4);
}

.bg-blue-500\/50 {
  background-color: rgba(33, 150, 243, 0.5);
}

.hover\:bg-blue-500\/50:hover {
  background-color: rgba(33, 150, 243, 0.5);
}

.bg-blue-500\/60 {
  background-color: rgba(33, 150, 243, 0.6);
}

.hover\:bg-blue-500\/60:hover {
  background-color: rgba(33, 150, 243, 0.6);
}

.bg-blue-500\/70 {
  background-color: rgba(33, 150, 243, 0.7);
}

.hover\:bg-blue-500\/70:hover {
  background-color: rgba(33, 150, 243, 0.7);
}

.bg-blue-500\/75 {
  background-color: rgba(33, 150, 243, 0.75);
}

.hover\:bg-blue-500\/75:hover {
  background-color: rgba(33, 150, 243, 0.75);
}

.bg-blue-500\/80 {
  background-color: rgba(33, 150, 243, 0.8);
}

.hover\:bg-blue-500\/80:hover {
  background-color: rgba(33, 150, 243, 0.8);
}

.bg-blue-500\/90 {
  background-color: rgba(33, 150, 243, 0.9);
}

.hover\:bg-blue-500\/90:hover {
  background-color: rgba(33, 150, 243, 0.9);
}

.bg-blue-500\/95 {
  background-color: rgba(33, 150, 243, 0.95);
}

.hover\:bg-blue-500\/95:hover {
  background-color: rgba(33, 150, 243, 0.95);
}

.bg-blue-500\/100 {
  background-color: #2196f3;
}

.hover\:bg-blue-500\/100:hover {
  background-color: #2196f3;
}

.bg-blue-600 {
  background-color: #1e88e5;
}

.hover\:bg-blue-600:hover {
  background-color: #1e88e5;
}

.bg-blue-600\/0 {
  background-color: rgba(30, 136, 229, 0);
}

.hover\:bg-blue-600\/0:hover {
  background-color: rgba(30, 136, 229, 0);
}

.bg-blue-600\/5 {
  background-color: rgba(30, 136, 229, 0.05);
}

.hover\:bg-blue-600\/5:hover {
  background-color: rgba(30, 136, 229, 0.05);
}

.bg-blue-600\/10 {
  background-color: rgba(30, 136, 229, 0.1);
}

.hover\:bg-blue-600\/10:hover {
  background-color: rgba(30, 136, 229, 0.1);
}

.bg-blue-600\/20 {
  background-color: rgba(30, 136, 229, 0.2);
}

.hover\:bg-blue-600\/20:hover {
  background-color: rgba(30, 136, 229, 0.2);
}

.bg-blue-600\/25 {
  background-color: rgba(30, 136, 229, 0.25);
}

.hover\:bg-blue-600\/25:hover {
  background-color: rgba(30, 136, 229, 0.25);
}

.bg-blue-600\/30 {
  background-color: rgba(30, 136, 229, 0.3);
}

.hover\:bg-blue-600\/30:hover {
  background-color: rgba(30, 136, 229, 0.3);
}

.bg-blue-600\/40 {
  background-color: rgba(30, 136, 229, 0.4);
}

.hover\:bg-blue-600\/40:hover {
  background-color: rgba(30, 136, 229, 0.4);
}

.bg-blue-600\/50 {
  background-color: rgba(30, 136, 229, 0.5);
}

.hover\:bg-blue-600\/50:hover {
  background-color: rgba(30, 136, 229, 0.5);
}

.bg-blue-600\/60 {
  background-color: rgba(30, 136, 229, 0.6);
}

.hover\:bg-blue-600\/60:hover {
  background-color: rgba(30, 136, 229, 0.6);
}

.bg-blue-600\/70 {
  background-color: rgba(30, 136, 229, 0.7);
}

.hover\:bg-blue-600\/70:hover {
  background-color: rgba(30, 136, 229, 0.7);
}

.bg-blue-600\/75 {
  background-color: rgba(30, 136, 229, 0.75);
}

.hover\:bg-blue-600\/75:hover {
  background-color: rgba(30, 136, 229, 0.75);
}

.bg-blue-600\/80 {
  background-color: rgba(30, 136, 229, 0.8);
}

.hover\:bg-blue-600\/80:hover {
  background-color: rgba(30, 136, 229, 0.8);
}

.bg-blue-600\/90 {
  background-color: rgba(30, 136, 229, 0.9);
}

.hover\:bg-blue-600\/90:hover {
  background-color: rgba(30, 136, 229, 0.9);
}

.bg-blue-600\/95 {
  background-color: rgba(30, 136, 229, 0.95);
}

.hover\:bg-blue-600\/95:hover {
  background-color: rgba(30, 136, 229, 0.95);
}

.bg-blue-600\/100 {
  background-color: #1e88e5;
}

.hover\:bg-blue-600\/100:hover {
  background-color: #1e88e5;
}

.bg-blue-700 {
  background-color: #1976d2;
}

.hover\:bg-blue-700:hover {
  background-color: #1976d2;
}

.bg-blue-700\/0 {
  background-color: rgba(25, 118, 210, 0);
}

.hover\:bg-blue-700\/0:hover {
  background-color: rgba(25, 118, 210, 0);
}

.bg-blue-700\/5 {
  background-color: rgba(25, 118, 210, 0.05);
}

.hover\:bg-blue-700\/5:hover {
  background-color: rgba(25, 118, 210, 0.05);
}

.bg-blue-700\/10 {
  background-color: rgba(25, 118, 210, 0.1);
}

.hover\:bg-blue-700\/10:hover {
  background-color: rgba(25, 118, 210, 0.1);
}

.bg-blue-700\/20 {
  background-color: rgba(25, 118, 210, 0.2);
}

.hover\:bg-blue-700\/20:hover {
  background-color: rgba(25, 118, 210, 0.2);
}

.bg-blue-700\/25 {
  background-color: rgba(25, 118, 210, 0.25);
}

.hover\:bg-blue-700\/25:hover {
  background-color: rgba(25, 118, 210, 0.25);
}

.bg-blue-700\/30 {
  background-color: rgba(25, 118, 210, 0.3);
}

.hover\:bg-blue-700\/30:hover {
  background-color: rgba(25, 118, 210, 0.3);
}

.bg-blue-700\/40 {
  background-color: rgba(25, 118, 210, 0.4);
}

.hover\:bg-blue-700\/40:hover {
  background-color: rgba(25, 118, 210, 0.4);
}

.bg-blue-700\/50 {
  background-color: rgba(25, 118, 210, 0.5);
}

.hover\:bg-blue-700\/50:hover {
  background-color: rgba(25, 118, 210, 0.5);
}

.bg-blue-700\/60 {
  background-color: rgba(25, 118, 210, 0.6);
}

.hover\:bg-blue-700\/60:hover {
  background-color: rgba(25, 118, 210, 0.6);
}

.bg-blue-700\/70 {
  background-color: rgba(25, 118, 210, 0.7);
}

.hover\:bg-blue-700\/70:hover {
  background-color: rgba(25, 118, 210, 0.7);
}

.bg-blue-700\/75 {
  background-color: rgba(25, 118, 210, 0.75);
}

.hover\:bg-blue-700\/75:hover {
  background-color: rgba(25, 118, 210, 0.75);
}

.bg-blue-700\/80 {
  background-color: rgba(25, 118, 210, 0.8);
}

.hover\:bg-blue-700\/80:hover {
  background-color: rgba(25, 118, 210, 0.8);
}

.bg-blue-700\/90 {
  background-color: rgba(25, 118, 210, 0.9);
}

.hover\:bg-blue-700\/90:hover {
  background-color: rgba(25, 118, 210, 0.9);
}

.bg-blue-700\/95 {
  background-color: rgba(25, 118, 210, 0.95);
}

.hover\:bg-blue-700\/95:hover {
  background-color: rgba(25, 118, 210, 0.95);
}

.bg-blue-700\/100 {
  background-color: #1976d2;
}

.hover\:bg-blue-700\/100:hover {
  background-color: #1976d2;
}

.bg-blue-800 {
  background-color: #1565c0;
}

.hover\:bg-blue-800:hover {
  background-color: #1565c0;
}

.bg-blue-800\/0 {
  background-color: rgba(21, 101, 192, 0);
}

.hover\:bg-blue-800\/0:hover {
  background-color: rgba(21, 101, 192, 0);
}

.bg-blue-800\/5 {
  background-color: rgba(21, 101, 192, 0.05);
}

.hover\:bg-blue-800\/5:hover {
  background-color: rgba(21, 101, 192, 0.05);
}

.bg-blue-800\/10 {
  background-color: rgba(21, 101, 192, 0.1);
}

.hover\:bg-blue-800\/10:hover {
  background-color: rgba(21, 101, 192, 0.1);
}

.bg-blue-800\/20 {
  background-color: rgba(21, 101, 192, 0.2);
}

.hover\:bg-blue-800\/20:hover {
  background-color: rgba(21, 101, 192, 0.2);
}

.bg-blue-800\/25 {
  background-color: rgba(21, 101, 192, 0.25);
}

.hover\:bg-blue-800\/25:hover {
  background-color: rgba(21, 101, 192, 0.25);
}

.bg-blue-800\/30 {
  background-color: rgba(21, 101, 192, 0.3);
}

.hover\:bg-blue-800\/30:hover {
  background-color: rgba(21, 101, 192, 0.3);
}

.bg-blue-800\/40 {
  background-color: rgba(21, 101, 192, 0.4);
}

.hover\:bg-blue-800\/40:hover {
  background-color: rgba(21, 101, 192, 0.4);
}

.bg-blue-800\/50 {
  background-color: rgba(21, 101, 192, 0.5);
}

.hover\:bg-blue-800\/50:hover {
  background-color: rgba(21, 101, 192, 0.5);
}

.bg-blue-800\/60 {
  background-color: rgba(21, 101, 192, 0.6);
}

.hover\:bg-blue-800\/60:hover {
  background-color: rgba(21, 101, 192, 0.6);
}

.bg-blue-800\/70 {
  background-color: rgba(21, 101, 192, 0.7);
}

.hover\:bg-blue-800\/70:hover {
  background-color: rgba(21, 101, 192, 0.7);
}

.bg-blue-800\/75 {
  background-color: rgba(21, 101, 192, 0.75);
}

.hover\:bg-blue-800\/75:hover {
  background-color: rgba(21, 101, 192, 0.75);
}

.bg-blue-800\/80 {
  background-color: rgba(21, 101, 192, 0.8);
}

.hover\:bg-blue-800\/80:hover {
  background-color: rgba(21, 101, 192, 0.8);
}

.bg-blue-800\/90 {
  background-color: rgba(21, 101, 192, 0.9);
}

.hover\:bg-blue-800\/90:hover {
  background-color: rgba(21, 101, 192, 0.9);
}

.bg-blue-800\/95 {
  background-color: rgba(21, 101, 192, 0.95);
}

.hover\:bg-blue-800\/95:hover {
  background-color: rgba(21, 101, 192, 0.95);
}

.bg-blue-800\/100 {
  background-color: #1565c0;
}

.hover\:bg-blue-800\/100:hover {
  background-color: #1565c0;
}

.bg-blue-900 {
  background-color: #0d47a1;
}

.hover\:bg-blue-900:hover {
  background-color: #0d47a1;
}

.bg-blue-900\/0 {
  background-color: rgba(13, 71, 161, 0);
}

.hover\:bg-blue-900\/0:hover {
  background-color: rgba(13, 71, 161, 0);
}

.bg-blue-900\/5 {
  background-color: rgba(13, 71, 161, 0.05);
}

.hover\:bg-blue-900\/5:hover {
  background-color: rgba(13, 71, 161, 0.05);
}

.bg-blue-900\/10 {
  background-color: rgba(13, 71, 161, 0.1);
}

.hover\:bg-blue-900\/10:hover {
  background-color: rgba(13, 71, 161, 0.1);
}

.bg-blue-900\/20 {
  background-color: rgba(13, 71, 161, 0.2);
}

.hover\:bg-blue-900\/20:hover {
  background-color: rgba(13, 71, 161, 0.2);
}

.bg-blue-900\/25 {
  background-color: rgba(13, 71, 161, 0.25);
}

.hover\:bg-blue-900\/25:hover {
  background-color: rgba(13, 71, 161, 0.25);
}

.bg-blue-900\/30 {
  background-color: rgba(13, 71, 161, 0.3);
}

.hover\:bg-blue-900\/30:hover {
  background-color: rgba(13, 71, 161, 0.3);
}

.bg-blue-900\/40 {
  background-color: rgba(13, 71, 161, 0.4);
}

.hover\:bg-blue-900\/40:hover {
  background-color: rgba(13, 71, 161, 0.4);
}

.bg-blue-900\/50 {
  background-color: rgba(13, 71, 161, 0.5);
}

.hover\:bg-blue-900\/50:hover {
  background-color: rgba(13, 71, 161, 0.5);
}

.bg-blue-900\/60 {
  background-color: rgba(13, 71, 161, 0.6);
}

.hover\:bg-blue-900\/60:hover {
  background-color: rgba(13, 71, 161, 0.6);
}

.bg-blue-900\/70 {
  background-color: rgba(13, 71, 161, 0.7);
}

.hover\:bg-blue-900\/70:hover {
  background-color: rgba(13, 71, 161, 0.7);
}

.bg-blue-900\/75 {
  background-color: rgba(13, 71, 161, 0.75);
}

.hover\:bg-blue-900\/75:hover {
  background-color: rgba(13, 71, 161, 0.75);
}

.bg-blue-900\/80 {
  background-color: rgba(13, 71, 161, 0.8);
}

.hover\:bg-blue-900\/80:hover {
  background-color: rgba(13, 71, 161, 0.8);
}

.bg-blue-900\/90 {
  background-color: rgba(13, 71, 161, 0.9);
}

.hover\:bg-blue-900\/90:hover {
  background-color: rgba(13, 71, 161, 0.9);
}

.bg-blue-900\/95 {
  background-color: rgba(13, 71, 161, 0.95);
}

.hover\:bg-blue-900\/95:hover {
  background-color: rgba(13, 71, 161, 0.95);
}

.bg-blue-900\/100 {
  background-color: #0d47a1;
}

.hover\:bg-blue-900\/100:hover {
  background-color: #0d47a1;
}

.bg-cyan-50 {
  background-color: #e0f7fa;
}

.hover\:bg-cyan-50:hover {
  background-color: #e0f7fa;
}

.bg-cyan-50\/0 {
  background-color: rgba(224, 247, 250, 0);
}

.hover\:bg-cyan-50\/0:hover {
  background-color: rgba(224, 247, 250, 0);
}

.bg-cyan-50\/5 {
  background-color: rgba(224, 247, 250, 0.05);
}

.hover\:bg-cyan-50\/5:hover {
  background-color: rgba(224, 247, 250, 0.05);
}

.bg-cyan-50\/10 {
  background-color: rgba(224, 247, 250, 0.1);
}

.hover\:bg-cyan-50\/10:hover {
  background-color: rgba(224, 247, 250, 0.1);
}

.bg-cyan-50\/20 {
  background-color: rgba(224, 247, 250, 0.2);
}

.hover\:bg-cyan-50\/20:hover {
  background-color: rgba(224, 247, 250, 0.2);
}

.bg-cyan-50\/25 {
  background-color: rgba(224, 247, 250, 0.25);
}

.hover\:bg-cyan-50\/25:hover {
  background-color: rgba(224, 247, 250, 0.25);
}

.bg-cyan-50\/30 {
  background-color: rgba(224, 247, 250, 0.3);
}

.hover\:bg-cyan-50\/30:hover {
  background-color: rgba(224, 247, 250, 0.3);
}

.bg-cyan-50\/40 {
  background-color: rgba(224, 247, 250, 0.4);
}

.hover\:bg-cyan-50\/40:hover {
  background-color: rgba(224, 247, 250, 0.4);
}

.bg-cyan-50\/50 {
  background-color: rgba(224, 247, 250, 0.5);
}

.hover\:bg-cyan-50\/50:hover {
  background-color: rgba(224, 247, 250, 0.5);
}

.bg-cyan-50\/60 {
  background-color: rgba(224, 247, 250, 0.6);
}

.hover\:bg-cyan-50\/60:hover {
  background-color: rgba(224, 247, 250, 0.6);
}

.bg-cyan-50\/70 {
  background-color: rgba(224, 247, 250, 0.7);
}

.hover\:bg-cyan-50\/70:hover {
  background-color: rgba(224, 247, 250, 0.7);
}

.bg-cyan-50\/75 {
  background-color: rgba(224, 247, 250, 0.75);
}

.hover\:bg-cyan-50\/75:hover {
  background-color: rgba(224, 247, 250, 0.75);
}

.bg-cyan-50\/80 {
  background-color: rgba(224, 247, 250, 0.8);
}

.hover\:bg-cyan-50\/80:hover {
  background-color: rgba(224, 247, 250, 0.8);
}

.bg-cyan-50\/90 {
  background-color: rgba(224, 247, 250, 0.9);
}

.hover\:bg-cyan-50\/90:hover {
  background-color: rgba(224, 247, 250, 0.9);
}

.bg-cyan-50\/95 {
  background-color: rgba(224, 247, 250, 0.95);
}

.hover\:bg-cyan-50\/95:hover {
  background-color: rgba(224, 247, 250, 0.95);
}

.bg-cyan-50\/100 {
  background-color: #e0f7fa;
}

.hover\:bg-cyan-50\/100:hover {
  background-color: #e0f7fa;
}

.bg-cyan-100 {
  background-color: #b2ebf2;
}

.hover\:bg-cyan-100:hover {
  background-color: #b2ebf2;
}

.bg-cyan-100\/0 {
  background-color: rgba(178, 235, 242, 0);
}

.hover\:bg-cyan-100\/0:hover {
  background-color: rgba(178, 235, 242, 0);
}

.bg-cyan-100\/5 {
  background-color: rgba(178, 235, 242, 0.05);
}

.hover\:bg-cyan-100\/5:hover {
  background-color: rgba(178, 235, 242, 0.05);
}

.bg-cyan-100\/10 {
  background-color: rgba(178, 235, 242, 0.1);
}

.hover\:bg-cyan-100\/10:hover {
  background-color: rgba(178, 235, 242, 0.1);
}

.bg-cyan-100\/20 {
  background-color: rgba(178, 235, 242, 0.2);
}

.hover\:bg-cyan-100\/20:hover {
  background-color: rgba(178, 235, 242, 0.2);
}

.bg-cyan-100\/25 {
  background-color: rgba(178, 235, 242, 0.25);
}

.hover\:bg-cyan-100\/25:hover {
  background-color: rgba(178, 235, 242, 0.25);
}

.bg-cyan-100\/30 {
  background-color: rgba(178, 235, 242, 0.3);
}

.hover\:bg-cyan-100\/30:hover {
  background-color: rgba(178, 235, 242, 0.3);
}

.bg-cyan-100\/40 {
  background-color: rgba(178, 235, 242, 0.4);
}

.hover\:bg-cyan-100\/40:hover {
  background-color: rgba(178, 235, 242, 0.4);
}

.bg-cyan-100\/50 {
  background-color: rgba(178, 235, 242, 0.5);
}

.hover\:bg-cyan-100\/50:hover {
  background-color: rgba(178, 235, 242, 0.5);
}

.bg-cyan-100\/60 {
  background-color: rgba(178, 235, 242, 0.6);
}

.hover\:bg-cyan-100\/60:hover {
  background-color: rgba(178, 235, 242, 0.6);
}

.bg-cyan-100\/70 {
  background-color: rgba(178, 235, 242, 0.7);
}

.hover\:bg-cyan-100\/70:hover {
  background-color: rgba(178, 235, 242, 0.7);
}

.bg-cyan-100\/75 {
  background-color: rgba(178, 235, 242, 0.75);
}

.hover\:bg-cyan-100\/75:hover {
  background-color: rgba(178, 235, 242, 0.75);
}

.bg-cyan-100\/80 {
  background-color: rgba(178, 235, 242, 0.8);
}

.hover\:bg-cyan-100\/80:hover {
  background-color: rgba(178, 235, 242, 0.8);
}

.bg-cyan-100\/90 {
  background-color: rgba(178, 235, 242, 0.9);
}

.hover\:bg-cyan-100\/90:hover {
  background-color: rgba(178, 235, 242, 0.9);
}

.bg-cyan-100\/95 {
  background-color: rgba(178, 235, 242, 0.95);
}

.hover\:bg-cyan-100\/95:hover {
  background-color: rgba(178, 235, 242, 0.95);
}

.bg-cyan-100\/100 {
  background-color: #b2ebf2;
}

.hover\:bg-cyan-100\/100:hover {
  background-color: #b2ebf2;
}

.bg-cyan-200 {
  background-color: #80deea;
}

.hover\:bg-cyan-200:hover {
  background-color: #80deea;
}

.bg-cyan-200\/0 {
  background-color: rgba(128, 222, 234, 0);
}

.hover\:bg-cyan-200\/0:hover {
  background-color: rgba(128, 222, 234, 0);
}

.bg-cyan-200\/5 {
  background-color: rgba(128, 222, 234, 0.05);
}

.hover\:bg-cyan-200\/5:hover {
  background-color: rgba(128, 222, 234, 0.05);
}

.bg-cyan-200\/10 {
  background-color: rgba(128, 222, 234, 0.1);
}

.hover\:bg-cyan-200\/10:hover {
  background-color: rgba(128, 222, 234, 0.1);
}

.bg-cyan-200\/20 {
  background-color: rgba(128, 222, 234, 0.2);
}

.hover\:bg-cyan-200\/20:hover {
  background-color: rgba(128, 222, 234, 0.2);
}

.bg-cyan-200\/25 {
  background-color: rgba(128, 222, 234, 0.25);
}

.hover\:bg-cyan-200\/25:hover {
  background-color: rgba(128, 222, 234, 0.25);
}

.bg-cyan-200\/30 {
  background-color: rgba(128, 222, 234, 0.3);
}

.hover\:bg-cyan-200\/30:hover {
  background-color: rgba(128, 222, 234, 0.3);
}

.bg-cyan-200\/40 {
  background-color: rgba(128, 222, 234, 0.4);
}

.hover\:bg-cyan-200\/40:hover {
  background-color: rgba(128, 222, 234, 0.4);
}

.bg-cyan-200\/50 {
  background-color: rgba(128, 222, 234, 0.5);
}

.hover\:bg-cyan-200\/50:hover {
  background-color: rgba(128, 222, 234, 0.5);
}

.bg-cyan-200\/60 {
  background-color: rgba(128, 222, 234, 0.6);
}

.hover\:bg-cyan-200\/60:hover {
  background-color: rgba(128, 222, 234, 0.6);
}

.bg-cyan-200\/70 {
  background-color: rgba(128, 222, 234, 0.7);
}

.hover\:bg-cyan-200\/70:hover {
  background-color: rgba(128, 222, 234, 0.7);
}

.bg-cyan-200\/75 {
  background-color: rgba(128, 222, 234, 0.75);
}

.hover\:bg-cyan-200\/75:hover {
  background-color: rgba(128, 222, 234, 0.75);
}

.bg-cyan-200\/80 {
  background-color: rgba(128, 222, 234, 0.8);
}

.hover\:bg-cyan-200\/80:hover {
  background-color: rgba(128, 222, 234, 0.8);
}

.bg-cyan-200\/90 {
  background-color: rgba(128, 222, 234, 0.9);
}

.hover\:bg-cyan-200\/90:hover {
  background-color: rgba(128, 222, 234, 0.9);
}

.bg-cyan-200\/95 {
  background-color: rgba(128, 222, 234, 0.95);
}

.hover\:bg-cyan-200\/95:hover {
  background-color: rgba(128, 222, 234, 0.95);
}

.bg-cyan-200\/100 {
  background-color: #80deea;
}

.hover\:bg-cyan-200\/100:hover {
  background-color: #80deea;
}

.bg-cyan-300 {
  background-color: #4dd0e1;
}

.hover\:bg-cyan-300:hover {
  background-color: #4dd0e1;
}

.bg-cyan-300\/0 {
  background-color: rgba(77, 208, 225, 0);
}

.hover\:bg-cyan-300\/0:hover {
  background-color: rgba(77, 208, 225, 0);
}

.bg-cyan-300\/5 {
  background-color: rgba(77, 208, 225, 0.05);
}

.hover\:bg-cyan-300\/5:hover {
  background-color: rgba(77, 208, 225, 0.05);
}

.bg-cyan-300\/10 {
  background-color: rgba(77, 208, 225, 0.1);
}

.hover\:bg-cyan-300\/10:hover {
  background-color: rgba(77, 208, 225, 0.1);
}

.bg-cyan-300\/20 {
  background-color: rgba(77, 208, 225, 0.2);
}

.hover\:bg-cyan-300\/20:hover {
  background-color: rgba(77, 208, 225, 0.2);
}

.bg-cyan-300\/25 {
  background-color: rgba(77, 208, 225, 0.25);
}

.hover\:bg-cyan-300\/25:hover {
  background-color: rgba(77, 208, 225, 0.25);
}

.bg-cyan-300\/30 {
  background-color: rgba(77, 208, 225, 0.3);
}

.hover\:bg-cyan-300\/30:hover {
  background-color: rgba(77, 208, 225, 0.3);
}

.bg-cyan-300\/40 {
  background-color: rgba(77, 208, 225, 0.4);
}

.hover\:bg-cyan-300\/40:hover {
  background-color: rgba(77, 208, 225, 0.4);
}

.bg-cyan-300\/50 {
  background-color: rgba(77, 208, 225, 0.5);
}

.hover\:bg-cyan-300\/50:hover {
  background-color: rgba(77, 208, 225, 0.5);
}

.bg-cyan-300\/60 {
  background-color: rgba(77, 208, 225, 0.6);
}

.hover\:bg-cyan-300\/60:hover {
  background-color: rgba(77, 208, 225, 0.6);
}

.bg-cyan-300\/70 {
  background-color: rgba(77, 208, 225, 0.7);
}

.hover\:bg-cyan-300\/70:hover {
  background-color: rgba(77, 208, 225, 0.7);
}

.bg-cyan-300\/75 {
  background-color: rgba(77, 208, 225, 0.75);
}

.hover\:bg-cyan-300\/75:hover {
  background-color: rgba(77, 208, 225, 0.75);
}

.bg-cyan-300\/80 {
  background-color: rgba(77, 208, 225, 0.8);
}

.hover\:bg-cyan-300\/80:hover {
  background-color: rgba(77, 208, 225, 0.8);
}

.bg-cyan-300\/90 {
  background-color: rgba(77, 208, 225, 0.9);
}

.hover\:bg-cyan-300\/90:hover {
  background-color: rgba(77, 208, 225, 0.9);
}

.bg-cyan-300\/95 {
  background-color: rgba(77, 208, 225, 0.95);
}

.hover\:bg-cyan-300\/95:hover {
  background-color: rgba(77, 208, 225, 0.95);
}

.bg-cyan-300\/100 {
  background-color: #4dd0e1;
}

.hover\:bg-cyan-300\/100:hover {
  background-color: #4dd0e1;
}

.bg-cyan-400 {
  background-color: #26c6da;
}

.hover\:bg-cyan-400:hover {
  background-color: #26c6da;
}

.bg-cyan-400\/0 {
  background-color: rgba(38, 198, 218, 0);
}

.hover\:bg-cyan-400\/0:hover {
  background-color: rgba(38, 198, 218, 0);
}

.bg-cyan-400\/5 {
  background-color: rgba(38, 198, 218, 0.05);
}

.hover\:bg-cyan-400\/5:hover {
  background-color: rgba(38, 198, 218, 0.05);
}

.bg-cyan-400\/10 {
  background-color: rgba(38, 198, 218, 0.1);
}

.hover\:bg-cyan-400\/10:hover {
  background-color: rgba(38, 198, 218, 0.1);
}

.bg-cyan-400\/20 {
  background-color: rgba(38, 198, 218, 0.2);
}

.hover\:bg-cyan-400\/20:hover {
  background-color: rgba(38, 198, 218, 0.2);
}

.bg-cyan-400\/25 {
  background-color: rgba(38, 198, 218, 0.25);
}

.hover\:bg-cyan-400\/25:hover {
  background-color: rgba(38, 198, 218, 0.25);
}

.bg-cyan-400\/30 {
  background-color: rgba(38, 198, 218, 0.3);
}

.hover\:bg-cyan-400\/30:hover {
  background-color: rgba(38, 198, 218, 0.3);
}

.bg-cyan-400\/40 {
  background-color: rgba(38, 198, 218, 0.4);
}

.hover\:bg-cyan-400\/40:hover {
  background-color: rgba(38, 198, 218, 0.4);
}

.bg-cyan-400\/50 {
  background-color: rgba(38, 198, 218, 0.5);
}

.hover\:bg-cyan-400\/50:hover {
  background-color: rgba(38, 198, 218, 0.5);
}

.bg-cyan-400\/60 {
  background-color: rgba(38, 198, 218, 0.6);
}

.hover\:bg-cyan-400\/60:hover {
  background-color: rgba(38, 198, 218, 0.6);
}

.bg-cyan-400\/70 {
  background-color: rgba(38, 198, 218, 0.7);
}

.hover\:bg-cyan-400\/70:hover {
  background-color: rgba(38, 198, 218, 0.7);
}

.bg-cyan-400\/75 {
  background-color: rgba(38, 198, 218, 0.75);
}

.hover\:bg-cyan-400\/75:hover {
  background-color: rgba(38, 198, 218, 0.75);
}

.bg-cyan-400\/80 {
  background-color: rgba(38, 198, 218, 0.8);
}

.hover\:bg-cyan-400\/80:hover {
  background-color: rgba(38, 198, 218, 0.8);
}

.bg-cyan-400\/90 {
  background-color: rgba(38, 198, 218, 0.9);
}

.hover\:bg-cyan-400\/90:hover {
  background-color: rgba(38, 198, 218, 0.9);
}

.bg-cyan-400\/95 {
  background-color: rgba(38, 198, 218, 0.95);
}

.hover\:bg-cyan-400\/95:hover {
  background-color: rgba(38, 198, 218, 0.95);
}

.bg-cyan-400\/100 {
  background-color: #26c6da;
}

.hover\:bg-cyan-400\/100:hover {
  background-color: #26c6da;
}

.bg-cyan-500 {
  background-color: #00bcd4;
}

.hover\:bg-cyan-500:hover {
  background-color: #00bcd4;
}

.bg-cyan-500\/0 {
  background-color: rgba(0, 188, 212, 0);
}

.hover\:bg-cyan-500\/0:hover {
  background-color: rgba(0, 188, 212, 0);
}

.bg-cyan-500\/5 {
  background-color: rgba(0, 188, 212, 0.05);
}

.hover\:bg-cyan-500\/5:hover {
  background-color: rgba(0, 188, 212, 0.05);
}

.bg-cyan-500\/10 {
  background-color: rgba(0, 188, 212, 0.1);
}

.hover\:bg-cyan-500\/10:hover {
  background-color: rgba(0, 188, 212, 0.1);
}

.bg-cyan-500\/20 {
  background-color: rgba(0, 188, 212, 0.2);
}

.hover\:bg-cyan-500\/20:hover {
  background-color: rgba(0, 188, 212, 0.2);
}

.bg-cyan-500\/25 {
  background-color: rgba(0, 188, 212, 0.25);
}

.hover\:bg-cyan-500\/25:hover {
  background-color: rgba(0, 188, 212, 0.25);
}

.bg-cyan-500\/30 {
  background-color: rgba(0, 188, 212, 0.3);
}

.hover\:bg-cyan-500\/30:hover {
  background-color: rgba(0, 188, 212, 0.3);
}

.bg-cyan-500\/40 {
  background-color: rgba(0, 188, 212, 0.4);
}

.hover\:bg-cyan-500\/40:hover {
  background-color: rgba(0, 188, 212, 0.4);
}

.bg-cyan-500\/50 {
  background-color: rgba(0, 188, 212, 0.5);
}

.hover\:bg-cyan-500\/50:hover {
  background-color: rgba(0, 188, 212, 0.5);
}

.bg-cyan-500\/60 {
  background-color: rgba(0, 188, 212, 0.6);
}

.hover\:bg-cyan-500\/60:hover {
  background-color: rgba(0, 188, 212, 0.6);
}

.bg-cyan-500\/70 {
  background-color: rgba(0, 188, 212, 0.7);
}

.hover\:bg-cyan-500\/70:hover {
  background-color: rgba(0, 188, 212, 0.7);
}

.bg-cyan-500\/75 {
  background-color: rgba(0, 188, 212, 0.75);
}

.hover\:bg-cyan-500\/75:hover {
  background-color: rgba(0, 188, 212, 0.75);
}

.bg-cyan-500\/80 {
  background-color: rgba(0, 188, 212, 0.8);
}

.hover\:bg-cyan-500\/80:hover {
  background-color: rgba(0, 188, 212, 0.8);
}

.bg-cyan-500\/90 {
  background-color: rgba(0, 188, 212, 0.9);
}

.hover\:bg-cyan-500\/90:hover {
  background-color: rgba(0, 188, 212, 0.9);
}

.bg-cyan-500\/95 {
  background-color: rgba(0, 188, 212, 0.95);
}

.hover\:bg-cyan-500\/95:hover {
  background-color: rgba(0, 188, 212, 0.95);
}

.bg-cyan-500\/100 {
  background-color: #00bcd4;
}

.hover\:bg-cyan-500\/100:hover {
  background-color: #00bcd4;
}

.bg-cyan-600 {
  background-color: #00acc1;
}

.hover\:bg-cyan-600:hover {
  background-color: #00acc1;
}

.bg-cyan-600\/0 {
  background-color: rgba(0, 172, 193, 0);
}

.hover\:bg-cyan-600\/0:hover {
  background-color: rgba(0, 172, 193, 0);
}

.bg-cyan-600\/5 {
  background-color: rgba(0, 172, 193, 0.05);
}

.hover\:bg-cyan-600\/5:hover {
  background-color: rgba(0, 172, 193, 0.05);
}

.bg-cyan-600\/10 {
  background-color: rgba(0, 172, 193, 0.1);
}

.hover\:bg-cyan-600\/10:hover {
  background-color: rgba(0, 172, 193, 0.1);
}

.bg-cyan-600\/20 {
  background-color: rgba(0, 172, 193, 0.2);
}

.hover\:bg-cyan-600\/20:hover {
  background-color: rgba(0, 172, 193, 0.2);
}

.bg-cyan-600\/25 {
  background-color: rgba(0, 172, 193, 0.25);
}

.hover\:bg-cyan-600\/25:hover {
  background-color: rgba(0, 172, 193, 0.25);
}

.bg-cyan-600\/30 {
  background-color: rgba(0, 172, 193, 0.3);
}

.hover\:bg-cyan-600\/30:hover {
  background-color: rgba(0, 172, 193, 0.3);
}

.bg-cyan-600\/40 {
  background-color: rgba(0, 172, 193, 0.4);
}

.hover\:bg-cyan-600\/40:hover {
  background-color: rgba(0, 172, 193, 0.4);
}

.bg-cyan-600\/50 {
  background-color: rgba(0, 172, 193, 0.5);
}

.hover\:bg-cyan-600\/50:hover {
  background-color: rgba(0, 172, 193, 0.5);
}

.bg-cyan-600\/60 {
  background-color: rgba(0, 172, 193, 0.6);
}

.hover\:bg-cyan-600\/60:hover {
  background-color: rgba(0, 172, 193, 0.6);
}

.bg-cyan-600\/70 {
  background-color: rgba(0, 172, 193, 0.7);
}

.hover\:bg-cyan-600\/70:hover {
  background-color: rgba(0, 172, 193, 0.7);
}

.bg-cyan-600\/75 {
  background-color: rgba(0, 172, 193, 0.75);
}

.hover\:bg-cyan-600\/75:hover {
  background-color: rgba(0, 172, 193, 0.75);
}

.bg-cyan-600\/80 {
  background-color: rgba(0, 172, 193, 0.8);
}

.hover\:bg-cyan-600\/80:hover {
  background-color: rgba(0, 172, 193, 0.8);
}

.bg-cyan-600\/90 {
  background-color: rgba(0, 172, 193, 0.9);
}

.hover\:bg-cyan-600\/90:hover {
  background-color: rgba(0, 172, 193, 0.9);
}

.bg-cyan-600\/95 {
  background-color: rgba(0, 172, 193, 0.95);
}

.hover\:bg-cyan-600\/95:hover {
  background-color: rgba(0, 172, 193, 0.95);
}

.bg-cyan-600\/100 {
  background-color: #00acc1;
}

.hover\:bg-cyan-600\/100:hover {
  background-color: #00acc1;
}

.bg-cyan-700 {
  background-color: #0097a7;
}

.hover\:bg-cyan-700:hover {
  background-color: #0097a7;
}

.bg-cyan-700\/0 {
  background-color: rgba(0, 151, 167, 0);
}

.hover\:bg-cyan-700\/0:hover {
  background-color: rgba(0, 151, 167, 0);
}

.bg-cyan-700\/5 {
  background-color: rgba(0, 151, 167, 0.05);
}

.hover\:bg-cyan-700\/5:hover {
  background-color: rgba(0, 151, 167, 0.05);
}

.bg-cyan-700\/10 {
  background-color: rgba(0, 151, 167, 0.1);
}

.hover\:bg-cyan-700\/10:hover {
  background-color: rgba(0, 151, 167, 0.1);
}

.bg-cyan-700\/20 {
  background-color: rgba(0, 151, 167, 0.2);
}

.hover\:bg-cyan-700\/20:hover {
  background-color: rgba(0, 151, 167, 0.2);
}

.bg-cyan-700\/25 {
  background-color: rgba(0, 151, 167, 0.25);
}

.hover\:bg-cyan-700\/25:hover {
  background-color: rgba(0, 151, 167, 0.25);
}

.bg-cyan-700\/30 {
  background-color: rgba(0, 151, 167, 0.3);
}

.hover\:bg-cyan-700\/30:hover {
  background-color: rgba(0, 151, 167, 0.3);
}

.bg-cyan-700\/40 {
  background-color: rgba(0, 151, 167, 0.4);
}

.hover\:bg-cyan-700\/40:hover {
  background-color: rgba(0, 151, 167, 0.4);
}

.bg-cyan-700\/50 {
  background-color: rgba(0, 151, 167, 0.5);
}

.hover\:bg-cyan-700\/50:hover {
  background-color: rgba(0, 151, 167, 0.5);
}

.bg-cyan-700\/60 {
  background-color: rgba(0, 151, 167, 0.6);
}

.hover\:bg-cyan-700\/60:hover {
  background-color: rgba(0, 151, 167, 0.6);
}

.bg-cyan-700\/70 {
  background-color: rgba(0, 151, 167, 0.7);
}

.hover\:bg-cyan-700\/70:hover {
  background-color: rgba(0, 151, 167, 0.7);
}

.bg-cyan-700\/75 {
  background-color: rgba(0, 151, 167, 0.75);
}

.hover\:bg-cyan-700\/75:hover {
  background-color: rgba(0, 151, 167, 0.75);
}

.bg-cyan-700\/80 {
  background-color: rgba(0, 151, 167, 0.8);
}

.hover\:bg-cyan-700\/80:hover {
  background-color: rgba(0, 151, 167, 0.8);
}

.bg-cyan-700\/90 {
  background-color: rgba(0, 151, 167, 0.9);
}

.hover\:bg-cyan-700\/90:hover {
  background-color: rgba(0, 151, 167, 0.9);
}

.bg-cyan-700\/95 {
  background-color: rgba(0, 151, 167, 0.95);
}

.hover\:bg-cyan-700\/95:hover {
  background-color: rgba(0, 151, 167, 0.95);
}

.bg-cyan-700\/100 {
  background-color: #0097a7;
}

.hover\:bg-cyan-700\/100:hover {
  background-color: #0097a7;
}

.bg-cyan-800 {
  background-color: #00838f;
}

.hover\:bg-cyan-800:hover {
  background-color: #00838f;
}

.bg-cyan-800\/0 {
  background-color: rgba(0, 131, 143, 0);
}

.hover\:bg-cyan-800\/0:hover {
  background-color: rgba(0, 131, 143, 0);
}

.bg-cyan-800\/5 {
  background-color: rgba(0, 131, 143, 0.05);
}

.hover\:bg-cyan-800\/5:hover {
  background-color: rgba(0, 131, 143, 0.05);
}

.bg-cyan-800\/10 {
  background-color: rgba(0, 131, 143, 0.1);
}

.hover\:bg-cyan-800\/10:hover {
  background-color: rgba(0, 131, 143, 0.1);
}

.bg-cyan-800\/20 {
  background-color: rgba(0, 131, 143, 0.2);
}

.hover\:bg-cyan-800\/20:hover {
  background-color: rgba(0, 131, 143, 0.2);
}

.bg-cyan-800\/25 {
  background-color: rgba(0, 131, 143, 0.25);
}

.hover\:bg-cyan-800\/25:hover {
  background-color: rgba(0, 131, 143, 0.25);
}

.bg-cyan-800\/30 {
  background-color: rgba(0, 131, 143, 0.3);
}

.hover\:bg-cyan-800\/30:hover {
  background-color: rgba(0, 131, 143, 0.3);
}

.bg-cyan-800\/40 {
  background-color: rgba(0, 131, 143, 0.4);
}

.hover\:bg-cyan-800\/40:hover {
  background-color: rgba(0, 131, 143, 0.4);
}

.bg-cyan-800\/50 {
  background-color: rgba(0, 131, 143, 0.5);
}

.hover\:bg-cyan-800\/50:hover {
  background-color: rgba(0, 131, 143, 0.5);
}

.bg-cyan-800\/60 {
  background-color: rgba(0, 131, 143, 0.6);
}

.hover\:bg-cyan-800\/60:hover {
  background-color: rgba(0, 131, 143, 0.6);
}

.bg-cyan-800\/70 {
  background-color: rgba(0, 131, 143, 0.7);
}

.hover\:bg-cyan-800\/70:hover {
  background-color: rgba(0, 131, 143, 0.7);
}

.bg-cyan-800\/75 {
  background-color: rgba(0, 131, 143, 0.75);
}

.hover\:bg-cyan-800\/75:hover {
  background-color: rgba(0, 131, 143, 0.75);
}

.bg-cyan-800\/80 {
  background-color: rgba(0, 131, 143, 0.8);
}

.hover\:bg-cyan-800\/80:hover {
  background-color: rgba(0, 131, 143, 0.8);
}

.bg-cyan-800\/90 {
  background-color: rgba(0, 131, 143, 0.9);
}

.hover\:bg-cyan-800\/90:hover {
  background-color: rgba(0, 131, 143, 0.9);
}

.bg-cyan-800\/95 {
  background-color: rgba(0, 131, 143, 0.95);
}

.hover\:bg-cyan-800\/95:hover {
  background-color: rgba(0, 131, 143, 0.95);
}

.bg-cyan-800\/100 {
  background-color: #00838f;
}

.hover\:bg-cyan-800\/100:hover {
  background-color: #00838f;
}

.bg-cyan-900 {
  background-color: #006064;
}

.hover\:bg-cyan-900:hover {
  background-color: #006064;
}

.bg-cyan-900\/0 {
  background-color: rgba(0, 96, 100, 0);
}

.hover\:bg-cyan-900\/0:hover {
  background-color: rgba(0, 96, 100, 0);
}

.bg-cyan-900\/5 {
  background-color: rgba(0, 96, 100, 0.05);
}

.hover\:bg-cyan-900\/5:hover {
  background-color: rgba(0, 96, 100, 0.05);
}

.bg-cyan-900\/10 {
  background-color: rgba(0, 96, 100, 0.1);
}

.hover\:bg-cyan-900\/10:hover {
  background-color: rgba(0, 96, 100, 0.1);
}

.bg-cyan-900\/20 {
  background-color: rgba(0, 96, 100, 0.2);
}

.hover\:bg-cyan-900\/20:hover {
  background-color: rgba(0, 96, 100, 0.2);
}

.bg-cyan-900\/25 {
  background-color: rgba(0, 96, 100, 0.25);
}

.hover\:bg-cyan-900\/25:hover {
  background-color: rgba(0, 96, 100, 0.25);
}

.bg-cyan-900\/30 {
  background-color: rgba(0, 96, 100, 0.3);
}

.hover\:bg-cyan-900\/30:hover {
  background-color: rgba(0, 96, 100, 0.3);
}

.bg-cyan-900\/40 {
  background-color: rgba(0, 96, 100, 0.4);
}

.hover\:bg-cyan-900\/40:hover {
  background-color: rgba(0, 96, 100, 0.4);
}

.bg-cyan-900\/50 {
  background-color: rgba(0, 96, 100, 0.5);
}

.hover\:bg-cyan-900\/50:hover {
  background-color: rgba(0, 96, 100, 0.5);
}

.bg-cyan-900\/60 {
  background-color: rgba(0, 96, 100, 0.6);
}

.hover\:bg-cyan-900\/60:hover {
  background-color: rgba(0, 96, 100, 0.6);
}

.bg-cyan-900\/70 {
  background-color: rgba(0, 96, 100, 0.7);
}

.hover\:bg-cyan-900\/70:hover {
  background-color: rgba(0, 96, 100, 0.7);
}

.bg-cyan-900\/75 {
  background-color: rgba(0, 96, 100, 0.75);
}

.hover\:bg-cyan-900\/75:hover {
  background-color: rgba(0, 96, 100, 0.75);
}

.bg-cyan-900\/80 {
  background-color: rgba(0, 96, 100, 0.8);
}

.hover\:bg-cyan-900\/80:hover {
  background-color: rgba(0, 96, 100, 0.8);
}

.bg-cyan-900\/90 {
  background-color: rgba(0, 96, 100, 0.9);
}

.hover\:bg-cyan-900\/90:hover {
  background-color: rgba(0, 96, 100, 0.9);
}

.bg-cyan-900\/95 {
  background-color: rgba(0, 96, 100, 0.95);
}

.hover\:bg-cyan-900\/95:hover {
  background-color: rgba(0, 96, 100, 0.95);
}

.bg-cyan-900\/100 {
  background-color: #006064;
}

.hover\:bg-cyan-900\/100:hover {
  background-color: #006064;
}

.bg-green-50 {
  background-color: #e8f5e9;
}

.hover\:bg-green-50:hover {
  background-color: #e8f5e9;
}

.bg-green-50\/0 {
  background-color: rgba(232, 245, 233, 0);
}

.hover\:bg-green-50\/0:hover {
  background-color: rgba(232, 245, 233, 0);
}

.bg-green-50\/5 {
  background-color: rgba(232, 245, 233, 0.05);
}

.hover\:bg-green-50\/5:hover {
  background-color: rgba(232, 245, 233, 0.05);
}

.bg-green-50\/10 {
  background-color: rgba(232, 245, 233, 0.1);
}

.hover\:bg-green-50\/10:hover {
  background-color: rgba(232, 245, 233, 0.1);
}

.bg-green-50\/20 {
  background-color: rgba(232, 245, 233, 0.2);
}

.hover\:bg-green-50\/20:hover {
  background-color: rgba(232, 245, 233, 0.2);
}

.bg-green-50\/25 {
  background-color: rgba(232, 245, 233, 0.25);
}

.hover\:bg-green-50\/25:hover {
  background-color: rgba(232, 245, 233, 0.25);
}

.bg-green-50\/30 {
  background-color: rgba(232, 245, 233, 0.3);
}

.hover\:bg-green-50\/30:hover {
  background-color: rgba(232, 245, 233, 0.3);
}

.bg-green-50\/40 {
  background-color: rgba(232, 245, 233, 0.4);
}

.hover\:bg-green-50\/40:hover {
  background-color: rgba(232, 245, 233, 0.4);
}

.bg-green-50\/50 {
  background-color: rgba(232, 245, 233, 0.5);
}

.hover\:bg-green-50\/50:hover {
  background-color: rgba(232, 245, 233, 0.5);
}

.bg-green-50\/60 {
  background-color: rgba(232, 245, 233, 0.6);
}

.hover\:bg-green-50\/60:hover {
  background-color: rgba(232, 245, 233, 0.6);
}

.bg-green-50\/70 {
  background-color: rgba(232, 245, 233, 0.7);
}

.hover\:bg-green-50\/70:hover {
  background-color: rgba(232, 245, 233, 0.7);
}

.bg-green-50\/75 {
  background-color: rgba(232, 245, 233, 0.75);
}

.hover\:bg-green-50\/75:hover {
  background-color: rgba(232, 245, 233, 0.75);
}

.bg-green-50\/80 {
  background-color: rgba(232, 245, 233, 0.8);
}

.hover\:bg-green-50\/80:hover {
  background-color: rgba(232, 245, 233, 0.8);
}

.bg-green-50\/90 {
  background-color: rgba(232, 245, 233, 0.9);
}

.hover\:bg-green-50\/90:hover {
  background-color: rgba(232, 245, 233, 0.9);
}

.bg-green-50\/95 {
  background-color: rgba(232, 245, 233, 0.95);
}

.hover\:bg-green-50\/95:hover {
  background-color: rgba(232, 245, 233, 0.95);
}

.bg-green-50\/100 {
  background-color: #e8f5e9;
}

.hover\:bg-green-50\/100:hover {
  background-color: #e8f5e9;
}

.bg-green-100 {
  background-color: #c8e6c9;
}

.hover\:bg-green-100:hover {
  background-color: #c8e6c9;
}

.bg-green-100\/0 {
  background-color: rgba(200, 230, 201, 0);
}

.hover\:bg-green-100\/0:hover {
  background-color: rgba(200, 230, 201, 0);
}

.bg-green-100\/5 {
  background-color: rgba(200, 230, 201, 0.05);
}

.hover\:bg-green-100\/5:hover {
  background-color: rgba(200, 230, 201, 0.05);
}

.bg-green-100\/10 {
  background-color: rgba(200, 230, 201, 0.1);
}

.hover\:bg-green-100\/10:hover {
  background-color: rgba(200, 230, 201, 0.1);
}

.bg-green-100\/20 {
  background-color: rgba(200, 230, 201, 0.2);
}

.hover\:bg-green-100\/20:hover {
  background-color: rgba(200, 230, 201, 0.2);
}

.bg-green-100\/25 {
  background-color: rgba(200, 230, 201, 0.25);
}

.hover\:bg-green-100\/25:hover {
  background-color: rgba(200, 230, 201, 0.25);
}

.bg-green-100\/30 {
  background-color: rgba(200, 230, 201, 0.3);
}

.hover\:bg-green-100\/30:hover {
  background-color: rgba(200, 230, 201, 0.3);
}

.bg-green-100\/40 {
  background-color: rgba(200, 230, 201, 0.4);
}

.hover\:bg-green-100\/40:hover {
  background-color: rgba(200, 230, 201, 0.4);
}

.bg-green-100\/50 {
  background-color: rgba(200, 230, 201, 0.5);
}

.hover\:bg-green-100\/50:hover {
  background-color: rgba(200, 230, 201, 0.5);
}

.bg-green-100\/60 {
  background-color: rgba(200, 230, 201, 0.6);
}

.hover\:bg-green-100\/60:hover {
  background-color: rgba(200, 230, 201, 0.6);
}

.bg-green-100\/70 {
  background-color: rgba(200, 230, 201, 0.7);
}

.hover\:bg-green-100\/70:hover {
  background-color: rgba(200, 230, 201, 0.7);
}

.bg-green-100\/75 {
  background-color: rgba(200, 230, 201, 0.75);
}

.hover\:bg-green-100\/75:hover {
  background-color: rgba(200, 230, 201, 0.75);
}

.bg-green-100\/80 {
  background-color: rgba(200, 230, 201, 0.8);
}

.hover\:bg-green-100\/80:hover {
  background-color: rgba(200, 230, 201, 0.8);
}

.bg-green-100\/90 {
  background-color: rgba(200, 230, 201, 0.9);
}

.hover\:bg-green-100\/90:hover {
  background-color: rgba(200, 230, 201, 0.9);
}

.bg-green-100\/95 {
  background-color: rgba(200, 230, 201, 0.95);
}

.hover\:bg-green-100\/95:hover {
  background-color: rgba(200, 230, 201, 0.95);
}

.bg-green-100\/100 {
  background-color: #c8e6c9;
}

.hover\:bg-green-100\/100:hover {
  background-color: #c8e6c9;
}

.bg-green-200 {
  background-color: #a5d6a7;
}

.hover\:bg-green-200:hover {
  background-color: #a5d6a7;
}

.bg-green-200\/0 {
  background-color: rgba(165, 214, 167, 0);
}

.hover\:bg-green-200\/0:hover {
  background-color: rgba(165, 214, 167, 0);
}

.bg-green-200\/5 {
  background-color: rgba(165, 214, 167, 0.05);
}

.hover\:bg-green-200\/5:hover {
  background-color: rgba(165, 214, 167, 0.05);
}

.bg-green-200\/10 {
  background-color: rgba(165, 214, 167, 0.1);
}

.hover\:bg-green-200\/10:hover {
  background-color: rgba(165, 214, 167, 0.1);
}

.bg-green-200\/20 {
  background-color: rgba(165, 214, 167, 0.2);
}

.hover\:bg-green-200\/20:hover {
  background-color: rgba(165, 214, 167, 0.2);
}

.bg-green-200\/25 {
  background-color: rgba(165, 214, 167, 0.25);
}

.hover\:bg-green-200\/25:hover {
  background-color: rgba(165, 214, 167, 0.25);
}

.bg-green-200\/30 {
  background-color: rgba(165, 214, 167, 0.3);
}

.hover\:bg-green-200\/30:hover {
  background-color: rgba(165, 214, 167, 0.3);
}

.bg-green-200\/40 {
  background-color: rgba(165, 214, 167, 0.4);
}

.hover\:bg-green-200\/40:hover {
  background-color: rgba(165, 214, 167, 0.4);
}

.bg-green-200\/50 {
  background-color: rgba(165, 214, 167, 0.5);
}

.hover\:bg-green-200\/50:hover {
  background-color: rgba(165, 214, 167, 0.5);
}

.bg-green-200\/60 {
  background-color: rgba(165, 214, 167, 0.6);
}

.hover\:bg-green-200\/60:hover {
  background-color: rgba(165, 214, 167, 0.6);
}

.bg-green-200\/70 {
  background-color: rgba(165, 214, 167, 0.7);
}

.hover\:bg-green-200\/70:hover {
  background-color: rgba(165, 214, 167, 0.7);
}

.bg-green-200\/75 {
  background-color: rgba(165, 214, 167, 0.75);
}

.hover\:bg-green-200\/75:hover {
  background-color: rgba(165, 214, 167, 0.75);
}

.bg-green-200\/80 {
  background-color: rgba(165, 214, 167, 0.8);
}

.hover\:bg-green-200\/80:hover {
  background-color: rgba(165, 214, 167, 0.8);
}

.bg-green-200\/90 {
  background-color: rgba(165, 214, 167, 0.9);
}

.hover\:bg-green-200\/90:hover {
  background-color: rgba(165, 214, 167, 0.9);
}

.bg-green-200\/95 {
  background-color: rgba(165, 214, 167, 0.95);
}

.hover\:bg-green-200\/95:hover {
  background-color: rgba(165, 214, 167, 0.95);
}

.bg-green-200\/100 {
  background-color: #a5d6a7;
}

.hover\:bg-green-200\/100:hover {
  background-color: #a5d6a7;
}

.bg-green-300 {
  background-color: #81c784;
}

.hover\:bg-green-300:hover {
  background-color: #81c784;
}

.bg-green-300\/0 {
  background-color: rgba(129, 199, 132, 0);
}

.hover\:bg-green-300\/0:hover {
  background-color: rgba(129, 199, 132, 0);
}

.bg-green-300\/5 {
  background-color: rgba(129, 199, 132, 0.05);
}

.hover\:bg-green-300\/5:hover {
  background-color: rgba(129, 199, 132, 0.05);
}

.bg-green-300\/10 {
  background-color: rgba(129, 199, 132, 0.1);
}

.hover\:bg-green-300\/10:hover {
  background-color: rgba(129, 199, 132, 0.1);
}

.bg-green-300\/20 {
  background-color: rgba(129, 199, 132, 0.2);
}

.hover\:bg-green-300\/20:hover {
  background-color: rgba(129, 199, 132, 0.2);
}

.bg-green-300\/25 {
  background-color: rgba(129, 199, 132, 0.25);
}

.hover\:bg-green-300\/25:hover {
  background-color: rgba(129, 199, 132, 0.25);
}

.bg-green-300\/30 {
  background-color: rgba(129, 199, 132, 0.3);
}

.hover\:bg-green-300\/30:hover {
  background-color: rgba(129, 199, 132, 0.3);
}

.bg-green-300\/40 {
  background-color: rgba(129, 199, 132, 0.4);
}

.hover\:bg-green-300\/40:hover {
  background-color: rgba(129, 199, 132, 0.4);
}

.bg-green-300\/50 {
  background-color: rgba(129, 199, 132, 0.5);
}

.hover\:bg-green-300\/50:hover {
  background-color: rgba(129, 199, 132, 0.5);
}

.bg-green-300\/60 {
  background-color: rgba(129, 199, 132, 0.6);
}

.hover\:bg-green-300\/60:hover {
  background-color: rgba(129, 199, 132, 0.6);
}

.bg-green-300\/70 {
  background-color: rgba(129, 199, 132, 0.7);
}

.hover\:bg-green-300\/70:hover {
  background-color: rgba(129, 199, 132, 0.7);
}

.bg-green-300\/75 {
  background-color: rgba(129, 199, 132, 0.75);
}

.hover\:bg-green-300\/75:hover {
  background-color: rgba(129, 199, 132, 0.75);
}

.bg-green-300\/80 {
  background-color: rgba(129, 199, 132, 0.8);
}

.hover\:bg-green-300\/80:hover {
  background-color: rgba(129, 199, 132, 0.8);
}

.bg-green-300\/90 {
  background-color: rgba(129, 199, 132, 0.9);
}

.hover\:bg-green-300\/90:hover {
  background-color: rgba(129, 199, 132, 0.9);
}

.bg-green-300\/95 {
  background-color: rgba(129, 199, 132, 0.95);
}

.hover\:bg-green-300\/95:hover {
  background-color: rgba(129, 199, 132, 0.95);
}

.bg-green-300\/100 {
  background-color: #81c784;
}

.hover\:bg-green-300\/100:hover {
  background-color: #81c784;
}

.bg-green-400 {
  background-color: #66bb6a;
}

.hover\:bg-green-400:hover {
  background-color: #66bb6a;
}

.bg-green-400\/0 {
  background-color: rgba(102, 187, 106, 0);
}

.hover\:bg-green-400\/0:hover {
  background-color: rgba(102, 187, 106, 0);
}

.bg-green-400\/5 {
  background-color: rgba(102, 187, 106, 0.05);
}

.hover\:bg-green-400\/5:hover {
  background-color: rgba(102, 187, 106, 0.05);
}

.bg-green-400\/10 {
  background-color: rgba(102, 187, 106, 0.1);
}

.hover\:bg-green-400\/10:hover {
  background-color: rgba(102, 187, 106, 0.1);
}

.bg-green-400\/20 {
  background-color: rgba(102, 187, 106, 0.2);
}

.hover\:bg-green-400\/20:hover {
  background-color: rgba(102, 187, 106, 0.2);
}

.bg-green-400\/25 {
  background-color: rgba(102, 187, 106, 0.25);
}

.hover\:bg-green-400\/25:hover {
  background-color: rgba(102, 187, 106, 0.25);
}

.bg-green-400\/30 {
  background-color: rgba(102, 187, 106, 0.3);
}

.hover\:bg-green-400\/30:hover {
  background-color: rgba(102, 187, 106, 0.3);
}

.bg-green-400\/40 {
  background-color: rgba(102, 187, 106, 0.4);
}

.hover\:bg-green-400\/40:hover {
  background-color: rgba(102, 187, 106, 0.4);
}

.bg-green-400\/50 {
  background-color: rgba(102, 187, 106, 0.5);
}

.hover\:bg-green-400\/50:hover {
  background-color: rgba(102, 187, 106, 0.5);
}

.bg-green-400\/60 {
  background-color: rgba(102, 187, 106, 0.6);
}

.hover\:bg-green-400\/60:hover {
  background-color: rgba(102, 187, 106, 0.6);
}

.bg-green-400\/70 {
  background-color: rgba(102, 187, 106, 0.7);
}

.hover\:bg-green-400\/70:hover {
  background-color: rgba(102, 187, 106, 0.7);
}

.bg-green-400\/75 {
  background-color: rgba(102, 187, 106, 0.75);
}

.hover\:bg-green-400\/75:hover {
  background-color: rgba(102, 187, 106, 0.75);
}

.bg-green-400\/80 {
  background-color: rgba(102, 187, 106, 0.8);
}

.hover\:bg-green-400\/80:hover {
  background-color: rgba(102, 187, 106, 0.8);
}

.bg-green-400\/90 {
  background-color: rgba(102, 187, 106, 0.9);
}

.hover\:bg-green-400\/90:hover {
  background-color: rgba(102, 187, 106, 0.9);
}

.bg-green-400\/95 {
  background-color: rgba(102, 187, 106, 0.95);
}

.hover\:bg-green-400\/95:hover {
  background-color: rgba(102, 187, 106, 0.95);
}

.bg-green-400\/100 {
  background-color: #66bb6a;
}

.hover\:bg-green-400\/100:hover {
  background-color: #66bb6a;
}

.bg-green-500 {
  background-color: #4caf50;
}

.hover\:bg-green-500:hover {
  background-color: #4caf50;
}

.bg-green-500\/0 {
  background-color: rgba(76, 175, 80, 0);
}

.hover\:bg-green-500\/0:hover {
  background-color: rgba(76, 175, 80, 0);
}

.bg-green-500\/5 {
  background-color: rgba(76, 175, 80, 0.05);
}

.hover\:bg-green-500\/5:hover {
  background-color: rgba(76, 175, 80, 0.05);
}

.bg-green-500\/10 {
  background-color: rgba(76, 175, 80, 0.1);
}

.hover\:bg-green-500\/10:hover {
  background-color: rgba(76, 175, 80, 0.1);
}

.bg-green-500\/20 {
  background-color: rgba(76, 175, 80, 0.2);
}

.hover\:bg-green-500\/20:hover {
  background-color: rgba(76, 175, 80, 0.2);
}

.bg-green-500\/25 {
  background-color: rgba(76, 175, 80, 0.25);
}

.hover\:bg-green-500\/25:hover {
  background-color: rgba(76, 175, 80, 0.25);
}

.bg-green-500\/30 {
  background-color: rgba(76, 175, 80, 0.3);
}

.hover\:bg-green-500\/30:hover {
  background-color: rgba(76, 175, 80, 0.3);
}

.bg-green-500\/40 {
  background-color: rgba(76, 175, 80, 0.4);
}

.hover\:bg-green-500\/40:hover {
  background-color: rgba(76, 175, 80, 0.4);
}

.bg-green-500\/50 {
  background-color: rgba(76, 175, 80, 0.5);
}

.hover\:bg-green-500\/50:hover {
  background-color: rgba(76, 175, 80, 0.5);
}

.bg-green-500\/60 {
  background-color: rgba(76, 175, 80, 0.6);
}

.hover\:bg-green-500\/60:hover {
  background-color: rgba(76, 175, 80, 0.6);
}

.bg-green-500\/70 {
  background-color: rgba(76, 175, 80, 0.7);
}

.hover\:bg-green-500\/70:hover {
  background-color: rgba(76, 175, 80, 0.7);
}

.bg-green-500\/75 {
  background-color: rgba(76, 175, 80, 0.75);
}

.hover\:bg-green-500\/75:hover {
  background-color: rgba(76, 175, 80, 0.75);
}

.bg-green-500\/80 {
  background-color: rgba(76, 175, 80, 0.8);
}

.hover\:bg-green-500\/80:hover {
  background-color: rgba(76, 175, 80, 0.8);
}

.bg-green-500\/90 {
  background-color: rgba(76, 175, 80, 0.9);
}

.hover\:bg-green-500\/90:hover {
  background-color: rgba(76, 175, 80, 0.9);
}

.bg-green-500\/95 {
  background-color: rgba(76, 175, 80, 0.95);
}

.hover\:bg-green-500\/95:hover {
  background-color: rgba(76, 175, 80, 0.95);
}

.bg-green-500\/100 {
  background-color: #4caf50;
}

.hover\:bg-green-500\/100:hover {
  background-color: #4caf50;
}

.bg-green-600 {
  background-color: #43a047;
}

.hover\:bg-green-600:hover {
  background-color: #43a047;
}

.bg-green-600\/0 {
  background-color: rgba(67, 160, 71, 0);
}

.hover\:bg-green-600\/0:hover {
  background-color: rgba(67, 160, 71, 0);
}

.bg-green-600\/5 {
  background-color: rgba(67, 160, 71, 0.05);
}

.hover\:bg-green-600\/5:hover {
  background-color: rgba(67, 160, 71, 0.05);
}

.bg-green-600\/10 {
  background-color: rgba(67, 160, 71, 0.1);
}

.hover\:bg-green-600\/10:hover {
  background-color: rgba(67, 160, 71, 0.1);
}

.bg-green-600\/20 {
  background-color: rgba(67, 160, 71, 0.2);
}

.hover\:bg-green-600\/20:hover {
  background-color: rgba(67, 160, 71, 0.2);
}

.bg-green-600\/25 {
  background-color: rgba(67, 160, 71, 0.25);
}

.hover\:bg-green-600\/25:hover {
  background-color: rgba(67, 160, 71, 0.25);
}

.bg-green-600\/30 {
  background-color: rgba(67, 160, 71, 0.3);
}

.hover\:bg-green-600\/30:hover {
  background-color: rgba(67, 160, 71, 0.3);
}

.bg-green-600\/40 {
  background-color: rgba(67, 160, 71, 0.4);
}

.hover\:bg-green-600\/40:hover {
  background-color: rgba(67, 160, 71, 0.4);
}

.bg-green-600\/50 {
  background-color: rgba(67, 160, 71, 0.5);
}

.hover\:bg-green-600\/50:hover {
  background-color: rgba(67, 160, 71, 0.5);
}

.bg-green-600\/60 {
  background-color: rgba(67, 160, 71, 0.6);
}

.hover\:bg-green-600\/60:hover {
  background-color: rgba(67, 160, 71, 0.6);
}

.bg-green-600\/70 {
  background-color: rgba(67, 160, 71, 0.7);
}

.hover\:bg-green-600\/70:hover {
  background-color: rgba(67, 160, 71, 0.7);
}

.bg-green-600\/75 {
  background-color: rgba(67, 160, 71, 0.75);
}

.hover\:bg-green-600\/75:hover {
  background-color: rgba(67, 160, 71, 0.75);
}

.bg-green-600\/80 {
  background-color: rgba(67, 160, 71, 0.8);
}

.hover\:bg-green-600\/80:hover {
  background-color: rgba(67, 160, 71, 0.8);
}

.bg-green-600\/90 {
  background-color: rgba(67, 160, 71, 0.9);
}

.hover\:bg-green-600\/90:hover {
  background-color: rgba(67, 160, 71, 0.9);
}

.bg-green-600\/95 {
  background-color: rgba(67, 160, 71, 0.95);
}

.hover\:bg-green-600\/95:hover {
  background-color: rgba(67, 160, 71, 0.95);
}

.bg-green-600\/100 {
  background-color: #43a047;
}

.hover\:bg-green-600\/100:hover {
  background-color: #43a047;
}

.bg-green-700 {
  background-color: #388e3c;
}

.hover\:bg-green-700:hover {
  background-color: #388e3c;
}

.bg-green-700\/0 {
  background-color: rgba(56, 142, 60, 0);
}

.hover\:bg-green-700\/0:hover {
  background-color: rgba(56, 142, 60, 0);
}

.bg-green-700\/5 {
  background-color: rgba(56, 142, 60, 0.05);
}

.hover\:bg-green-700\/5:hover {
  background-color: rgba(56, 142, 60, 0.05);
}

.bg-green-700\/10 {
  background-color: rgba(56, 142, 60, 0.1);
}

.hover\:bg-green-700\/10:hover {
  background-color: rgba(56, 142, 60, 0.1);
}

.bg-green-700\/20 {
  background-color: rgba(56, 142, 60, 0.2);
}

.hover\:bg-green-700\/20:hover {
  background-color: rgba(56, 142, 60, 0.2);
}

.bg-green-700\/25 {
  background-color: rgba(56, 142, 60, 0.25);
}

.hover\:bg-green-700\/25:hover {
  background-color: rgba(56, 142, 60, 0.25);
}

.bg-green-700\/30 {
  background-color: rgba(56, 142, 60, 0.3);
}

.hover\:bg-green-700\/30:hover {
  background-color: rgba(56, 142, 60, 0.3);
}

.bg-green-700\/40 {
  background-color: rgba(56, 142, 60, 0.4);
}

.hover\:bg-green-700\/40:hover {
  background-color: rgba(56, 142, 60, 0.4);
}

.bg-green-700\/50 {
  background-color: rgba(56, 142, 60, 0.5);
}

.hover\:bg-green-700\/50:hover {
  background-color: rgba(56, 142, 60, 0.5);
}

.bg-green-700\/60 {
  background-color: rgba(56, 142, 60, 0.6);
}

.hover\:bg-green-700\/60:hover {
  background-color: rgba(56, 142, 60, 0.6);
}

.bg-green-700\/70 {
  background-color: rgba(56, 142, 60, 0.7);
}

.hover\:bg-green-700\/70:hover {
  background-color: rgba(56, 142, 60, 0.7);
}

.bg-green-700\/75 {
  background-color: rgba(56, 142, 60, 0.75);
}

.hover\:bg-green-700\/75:hover {
  background-color: rgba(56, 142, 60, 0.75);
}

.bg-green-700\/80 {
  background-color: rgba(56, 142, 60, 0.8);
}

.hover\:bg-green-700\/80:hover {
  background-color: rgba(56, 142, 60, 0.8);
}

.bg-green-700\/90 {
  background-color: rgba(56, 142, 60, 0.9);
}

.hover\:bg-green-700\/90:hover {
  background-color: rgba(56, 142, 60, 0.9);
}

.bg-green-700\/95 {
  background-color: rgba(56, 142, 60, 0.95);
}

.hover\:bg-green-700\/95:hover {
  background-color: rgba(56, 142, 60, 0.95);
}

.bg-green-700\/100 {
  background-color: #388e3c;
}

.hover\:bg-green-700\/100:hover {
  background-color: #388e3c;
}

.bg-green-800 {
  background-color: #2e7d32;
}

.hover\:bg-green-800:hover {
  background-color: #2e7d32;
}

.bg-green-800\/0 {
  background-color: rgba(46, 125, 50, 0);
}

.hover\:bg-green-800\/0:hover {
  background-color: rgba(46, 125, 50, 0);
}

.bg-green-800\/5 {
  background-color: rgba(46, 125, 50, 0.05);
}

.hover\:bg-green-800\/5:hover {
  background-color: rgba(46, 125, 50, 0.05);
}

.bg-green-800\/10 {
  background-color: rgba(46, 125, 50, 0.1);
}

.hover\:bg-green-800\/10:hover {
  background-color: rgba(46, 125, 50, 0.1);
}

.bg-green-800\/20 {
  background-color: rgba(46, 125, 50, 0.2);
}

.hover\:bg-green-800\/20:hover {
  background-color: rgba(46, 125, 50, 0.2);
}

.bg-green-800\/25 {
  background-color: rgba(46, 125, 50, 0.25);
}

.hover\:bg-green-800\/25:hover {
  background-color: rgba(46, 125, 50, 0.25);
}

.bg-green-800\/30 {
  background-color: rgba(46, 125, 50, 0.3);
}

.hover\:bg-green-800\/30:hover {
  background-color: rgba(46, 125, 50, 0.3);
}

.bg-green-800\/40 {
  background-color: rgba(46, 125, 50, 0.4);
}

.hover\:bg-green-800\/40:hover {
  background-color: rgba(46, 125, 50, 0.4);
}

.bg-green-800\/50 {
  background-color: rgba(46, 125, 50, 0.5);
}

.hover\:bg-green-800\/50:hover {
  background-color: rgba(46, 125, 50, 0.5);
}

.bg-green-800\/60 {
  background-color: rgba(46, 125, 50, 0.6);
}

.hover\:bg-green-800\/60:hover {
  background-color: rgba(46, 125, 50, 0.6);
}

.bg-green-800\/70 {
  background-color: rgba(46, 125, 50, 0.7);
}

.hover\:bg-green-800\/70:hover {
  background-color: rgba(46, 125, 50, 0.7);
}

.bg-green-800\/75 {
  background-color: rgba(46, 125, 50, 0.75);
}

.hover\:bg-green-800\/75:hover {
  background-color: rgba(46, 125, 50, 0.75);
}

.bg-green-800\/80 {
  background-color: rgba(46, 125, 50, 0.8);
}

.hover\:bg-green-800\/80:hover {
  background-color: rgba(46, 125, 50, 0.8);
}

.bg-green-800\/90 {
  background-color: rgba(46, 125, 50, 0.9);
}

.hover\:bg-green-800\/90:hover {
  background-color: rgba(46, 125, 50, 0.9);
}

.bg-green-800\/95 {
  background-color: rgba(46, 125, 50, 0.95);
}

.hover\:bg-green-800\/95:hover {
  background-color: rgba(46, 125, 50, 0.95);
}

.bg-green-800\/100 {
  background-color: #2e7d32;
}

.hover\:bg-green-800\/100:hover {
  background-color: #2e7d32;
}

.bg-green-900 {
  background-color: #1b5e20;
}

.hover\:bg-green-900:hover {
  background-color: #1b5e20;
}

.bg-green-900\/0 {
  background-color: rgba(27, 94, 32, 0);
}

.hover\:bg-green-900\/0:hover {
  background-color: rgba(27, 94, 32, 0);
}

.bg-green-900\/5 {
  background-color: rgba(27, 94, 32, 0.05);
}

.hover\:bg-green-900\/5:hover {
  background-color: rgba(27, 94, 32, 0.05);
}

.bg-green-900\/10 {
  background-color: rgba(27, 94, 32, 0.1);
}

.hover\:bg-green-900\/10:hover {
  background-color: rgba(27, 94, 32, 0.1);
}

.bg-green-900\/20 {
  background-color: rgba(27, 94, 32, 0.2);
}

.hover\:bg-green-900\/20:hover {
  background-color: rgba(27, 94, 32, 0.2);
}

.bg-green-900\/25 {
  background-color: rgba(27, 94, 32, 0.25);
}

.hover\:bg-green-900\/25:hover {
  background-color: rgba(27, 94, 32, 0.25);
}

.bg-green-900\/30 {
  background-color: rgba(27, 94, 32, 0.3);
}

.hover\:bg-green-900\/30:hover {
  background-color: rgba(27, 94, 32, 0.3);
}

.bg-green-900\/40 {
  background-color: rgba(27, 94, 32, 0.4);
}

.hover\:bg-green-900\/40:hover {
  background-color: rgba(27, 94, 32, 0.4);
}

.bg-green-900\/50 {
  background-color: rgba(27, 94, 32, 0.5);
}

.hover\:bg-green-900\/50:hover {
  background-color: rgba(27, 94, 32, 0.5);
}

.bg-green-900\/60 {
  background-color: rgba(27, 94, 32, 0.6);
}

.hover\:bg-green-900\/60:hover {
  background-color: rgba(27, 94, 32, 0.6);
}

.bg-green-900\/70 {
  background-color: rgba(27, 94, 32, 0.7);
}

.hover\:bg-green-900\/70:hover {
  background-color: rgba(27, 94, 32, 0.7);
}

.bg-green-900\/75 {
  background-color: rgba(27, 94, 32, 0.75);
}

.hover\:bg-green-900\/75:hover {
  background-color: rgba(27, 94, 32, 0.75);
}

.bg-green-900\/80 {
  background-color: rgba(27, 94, 32, 0.8);
}

.hover\:bg-green-900\/80:hover {
  background-color: rgba(27, 94, 32, 0.8);
}

.bg-green-900\/90 {
  background-color: rgba(27, 94, 32, 0.9);
}

.hover\:bg-green-900\/90:hover {
  background-color: rgba(27, 94, 32, 0.9);
}

.bg-green-900\/95 {
  background-color: rgba(27, 94, 32, 0.95);
}

.hover\:bg-green-900\/95:hover {
  background-color: rgba(27, 94, 32, 0.95);
}

.bg-green-900\/100 {
  background-color: #1b5e20;
}

.hover\:bg-green-900\/100:hover {
  background-color: #1b5e20;
}

.bg-yellow-50 {
  background-color: #fffde7;
}

.hover\:bg-yellow-50:hover {
  background-color: #fffde7;
}

.bg-yellow-50\/0 {
  background-color: rgba(255, 253, 231, 0);
}

.hover\:bg-yellow-50\/0:hover {
  background-color: rgba(255, 253, 231, 0);
}

.bg-yellow-50\/5 {
  background-color: rgba(255, 253, 231, 0.05);
}

.hover\:bg-yellow-50\/5:hover {
  background-color: rgba(255, 253, 231, 0.05);
}

.bg-yellow-50\/10 {
  background-color: rgba(255, 253, 231, 0.1);
}

.hover\:bg-yellow-50\/10:hover {
  background-color: rgba(255, 253, 231, 0.1);
}

.bg-yellow-50\/20 {
  background-color: rgba(255, 253, 231, 0.2);
}

.hover\:bg-yellow-50\/20:hover {
  background-color: rgba(255, 253, 231, 0.2);
}

.bg-yellow-50\/25 {
  background-color: rgba(255, 253, 231, 0.25);
}

.hover\:bg-yellow-50\/25:hover {
  background-color: rgba(255, 253, 231, 0.25);
}

.bg-yellow-50\/30 {
  background-color: rgba(255, 253, 231, 0.3);
}

.hover\:bg-yellow-50\/30:hover {
  background-color: rgba(255, 253, 231, 0.3);
}

.bg-yellow-50\/40 {
  background-color: rgba(255, 253, 231, 0.4);
}

.hover\:bg-yellow-50\/40:hover {
  background-color: rgba(255, 253, 231, 0.4);
}

.bg-yellow-50\/50 {
  background-color: rgba(255, 253, 231, 0.5);
}

.hover\:bg-yellow-50\/50:hover {
  background-color: rgba(255, 253, 231, 0.5);
}

.bg-yellow-50\/60 {
  background-color: rgba(255, 253, 231, 0.6);
}

.hover\:bg-yellow-50\/60:hover {
  background-color: rgba(255, 253, 231, 0.6);
}

.bg-yellow-50\/70 {
  background-color: rgba(255, 253, 231, 0.7);
}

.hover\:bg-yellow-50\/70:hover {
  background-color: rgba(255, 253, 231, 0.7);
}

.bg-yellow-50\/75 {
  background-color: rgba(255, 253, 231, 0.75);
}

.hover\:bg-yellow-50\/75:hover {
  background-color: rgba(255, 253, 231, 0.75);
}

.bg-yellow-50\/80 {
  background-color: rgba(255, 253, 231, 0.8);
}

.hover\:bg-yellow-50\/80:hover {
  background-color: rgba(255, 253, 231, 0.8);
}

.bg-yellow-50\/90 {
  background-color: rgba(255, 253, 231, 0.9);
}

.hover\:bg-yellow-50\/90:hover {
  background-color: rgba(255, 253, 231, 0.9);
}

.bg-yellow-50\/95 {
  background-color: rgba(255, 253, 231, 0.95);
}

.hover\:bg-yellow-50\/95:hover {
  background-color: rgba(255, 253, 231, 0.95);
}

.bg-yellow-50\/100 {
  background-color: #fffde7;
}

.hover\:bg-yellow-50\/100:hover {
  background-color: #fffde7;
}

.bg-yellow-100 {
  background-color: #fff9c4;
}

.hover\:bg-yellow-100:hover {
  background-color: #fff9c4;
}

.bg-yellow-100\/0 {
  background-color: rgba(255, 249, 196, 0);
}

.hover\:bg-yellow-100\/0:hover {
  background-color: rgba(255, 249, 196, 0);
}

.bg-yellow-100\/5 {
  background-color: rgba(255, 249, 196, 0.05);
}

.hover\:bg-yellow-100\/5:hover {
  background-color: rgba(255, 249, 196, 0.05);
}

.bg-yellow-100\/10 {
  background-color: rgba(255, 249, 196, 0.1);
}

.hover\:bg-yellow-100\/10:hover {
  background-color: rgba(255, 249, 196, 0.1);
}

.bg-yellow-100\/20 {
  background-color: rgba(255, 249, 196, 0.2);
}

.hover\:bg-yellow-100\/20:hover {
  background-color: rgba(255, 249, 196, 0.2);
}

.bg-yellow-100\/25 {
  background-color: rgba(255, 249, 196, 0.25);
}

.hover\:bg-yellow-100\/25:hover {
  background-color: rgba(255, 249, 196, 0.25);
}

.bg-yellow-100\/30 {
  background-color: rgba(255, 249, 196, 0.3);
}

.hover\:bg-yellow-100\/30:hover {
  background-color: rgba(255, 249, 196, 0.3);
}

.bg-yellow-100\/40 {
  background-color: rgba(255, 249, 196, 0.4);
}

.hover\:bg-yellow-100\/40:hover {
  background-color: rgba(255, 249, 196, 0.4);
}

.bg-yellow-100\/50 {
  background-color: rgba(255, 249, 196, 0.5);
}

.hover\:bg-yellow-100\/50:hover {
  background-color: rgba(255, 249, 196, 0.5);
}

.bg-yellow-100\/60 {
  background-color: rgba(255, 249, 196, 0.6);
}

.hover\:bg-yellow-100\/60:hover {
  background-color: rgba(255, 249, 196, 0.6);
}

.bg-yellow-100\/70 {
  background-color: rgba(255, 249, 196, 0.7);
}

.hover\:bg-yellow-100\/70:hover {
  background-color: rgba(255, 249, 196, 0.7);
}

.bg-yellow-100\/75 {
  background-color: rgba(255, 249, 196, 0.75);
}

.hover\:bg-yellow-100\/75:hover {
  background-color: rgba(255, 249, 196, 0.75);
}

.bg-yellow-100\/80 {
  background-color: rgba(255, 249, 196, 0.8);
}

.hover\:bg-yellow-100\/80:hover {
  background-color: rgba(255, 249, 196, 0.8);
}

.bg-yellow-100\/90 {
  background-color: rgba(255, 249, 196, 0.9);
}

.hover\:bg-yellow-100\/90:hover {
  background-color: rgba(255, 249, 196, 0.9);
}

.bg-yellow-100\/95 {
  background-color: rgba(255, 249, 196, 0.95);
}

.hover\:bg-yellow-100\/95:hover {
  background-color: rgba(255, 249, 196, 0.95);
}

.bg-yellow-100\/100 {
  background-color: #fff9c4;
}

.hover\:bg-yellow-100\/100:hover {
  background-color: #fff9c4;
}

.bg-yellow-200 {
  background-color: #fff59d;
}

.hover\:bg-yellow-200:hover {
  background-color: #fff59d;
}

.bg-yellow-200\/0 {
  background-color: rgba(255, 245, 157, 0);
}

.hover\:bg-yellow-200\/0:hover {
  background-color: rgba(255, 245, 157, 0);
}

.bg-yellow-200\/5 {
  background-color: rgba(255, 245, 157, 0.05);
}

.hover\:bg-yellow-200\/5:hover {
  background-color: rgba(255, 245, 157, 0.05);
}

.bg-yellow-200\/10 {
  background-color: rgba(255, 245, 157, 0.1);
}

.hover\:bg-yellow-200\/10:hover {
  background-color: rgba(255, 245, 157, 0.1);
}

.bg-yellow-200\/20 {
  background-color: rgba(255, 245, 157, 0.2);
}

.hover\:bg-yellow-200\/20:hover {
  background-color: rgba(255, 245, 157, 0.2);
}

.bg-yellow-200\/25 {
  background-color: rgba(255, 245, 157, 0.25);
}

.hover\:bg-yellow-200\/25:hover {
  background-color: rgba(255, 245, 157, 0.25);
}

.bg-yellow-200\/30 {
  background-color: rgba(255, 245, 157, 0.3);
}

.hover\:bg-yellow-200\/30:hover {
  background-color: rgba(255, 245, 157, 0.3);
}

.bg-yellow-200\/40 {
  background-color: rgba(255, 245, 157, 0.4);
}

.hover\:bg-yellow-200\/40:hover {
  background-color: rgba(255, 245, 157, 0.4);
}

.bg-yellow-200\/50 {
  background-color: rgba(255, 245, 157, 0.5);
}

.hover\:bg-yellow-200\/50:hover {
  background-color: rgba(255, 245, 157, 0.5);
}

.bg-yellow-200\/60 {
  background-color: rgba(255, 245, 157, 0.6);
}

.hover\:bg-yellow-200\/60:hover {
  background-color: rgba(255, 245, 157, 0.6);
}

.bg-yellow-200\/70 {
  background-color: rgba(255, 245, 157, 0.7);
}

.hover\:bg-yellow-200\/70:hover {
  background-color: rgba(255, 245, 157, 0.7);
}

.bg-yellow-200\/75 {
  background-color: rgba(255, 245, 157, 0.75);
}

.hover\:bg-yellow-200\/75:hover {
  background-color: rgba(255, 245, 157, 0.75);
}

.bg-yellow-200\/80 {
  background-color: rgba(255, 245, 157, 0.8);
}

.hover\:bg-yellow-200\/80:hover {
  background-color: rgba(255, 245, 157, 0.8);
}

.bg-yellow-200\/90 {
  background-color: rgba(255, 245, 157, 0.9);
}

.hover\:bg-yellow-200\/90:hover {
  background-color: rgba(255, 245, 157, 0.9);
}

.bg-yellow-200\/95 {
  background-color: rgba(255, 245, 157, 0.95);
}

.hover\:bg-yellow-200\/95:hover {
  background-color: rgba(255, 245, 157, 0.95);
}

.bg-yellow-200\/100 {
  background-color: #fff59d;
}

.hover\:bg-yellow-200\/100:hover {
  background-color: #fff59d;
}

.bg-yellow-300 {
  background-color: #fff176;
}

.hover\:bg-yellow-300:hover {
  background-color: #fff176;
}

.bg-yellow-300\/0 {
  background-color: rgba(255, 241, 118, 0);
}

.hover\:bg-yellow-300\/0:hover {
  background-color: rgba(255, 241, 118, 0);
}

.bg-yellow-300\/5 {
  background-color: rgba(255, 241, 118, 0.05);
}

.hover\:bg-yellow-300\/5:hover {
  background-color: rgba(255, 241, 118, 0.05);
}

.bg-yellow-300\/10 {
  background-color: rgba(255, 241, 118, 0.1);
}

.hover\:bg-yellow-300\/10:hover {
  background-color: rgba(255, 241, 118, 0.1);
}

.bg-yellow-300\/20 {
  background-color: rgba(255, 241, 118, 0.2);
}

.hover\:bg-yellow-300\/20:hover {
  background-color: rgba(255, 241, 118, 0.2);
}

.bg-yellow-300\/25 {
  background-color: rgba(255, 241, 118, 0.25);
}

.hover\:bg-yellow-300\/25:hover {
  background-color: rgba(255, 241, 118, 0.25);
}

.bg-yellow-300\/30 {
  background-color: rgba(255, 241, 118, 0.3);
}

.hover\:bg-yellow-300\/30:hover {
  background-color: rgba(255, 241, 118, 0.3);
}

.bg-yellow-300\/40 {
  background-color: rgba(255, 241, 118, 0.4);
}

.hover\:bg-yellow-300\/40:hover {
  background-color: rgba(255, 241, 118, 0.4);
}

.bg-yellow-300\/50 {
  background-color: rgba(255, 241, 118, 0.5);
}

.hover\:bg-yellow-300\/50:hover {
  background-color: rgba(255, 241, 118, 0.5);
}

.bg-yellow-300\/60 {
  background-color: rgba(255, 241, 118, 0.6);
}

.hover\:bg-yellow-300\/60:hover {
  background-color: rgba(255, 241, 118, 0.6);
}

.bg-yellow-300\/70 {
  background-color: rgba(255, 241, 118, 0.7);
}

.hover\:bg-yellow-300\/70:hover {
  background-color: rgba(255, 241, 118, 0.7);
}

.bg-yellow-300\/75 {
  background-color: rgba(255, 241, 118, 0.75);
}

.hover\:bg-yellow-300\/75:hover {
  background-color: rgba(255, 241, 118, 0.75);
}

.bg-yellow-300\/80 {
  background-color: rgba(255, 241, 118, 0.8);
}

.hover\:bg-yellow-300\/80:hover {
  background-color: rgba(255, 241, 118, 0.8);
}

.bg-yellow-300\/90 {
  background-color: rgba(255, 241, 118, 0.9);
}

.hover\:bg-yellow-300\/90:hover {
  background-color: rgba(255, 241, 118, 0.9);
}

.bg-yellow-300\/95 {
  background-color: rgba(255, 241, 118, 0.95);
}

.hover\:bg-yellow-300\/95:hover {
  background-color: rgba(255, 241, 118, 0.95);
}

.bg-yellow-300\/100 {
  background-color: #fff176;
}

.hover\:bg-yellow-300\/100:hover {
  background-color: #fff176;
}

.bg-yellow-400 {
  background-color: #ffee58;
}

.hover\:bg-yellow-400:hover {
  background-color: #ffee58;
}

.bg-yellow-400\/0 {
  background-color: rgba(255, 238, 88, 0);
}

.hover\:bg-yellow-400\/0:hover {
  background-color: rgba(255, 238, 88, 0);
}

.bg-yellow-400\/5 {
  background-color: rgba(255, 238, 88, 0.05);
}

.hover\:bg-yellow-400\/5:hover {
  background-color: rgba(255, 238, 88, 0.05);
}

.bg-yellow-400\/10 {
  background-color: rgba(255, 238, 88, 0.1);
}

.hover\:bg-yellow-400\/10:hover {
  background-color: rgba(255, 238, 88, 0.1);
}

.bg-yellow-400\/20 {
  background-color: rgba(255, 238, 88, 0.2);
}

.hover\:bg-yellow-400\/20:hover {
  background-color: rgba(255, 238, 88, 0.2);
}

.bg-yellow-400\/25 {
  background-color: rgba(255, 238, 88, 0.25);
}

.hover\:bg-yellow-400\/25:hover {
  background-color: rgba(255, 238, 88, 0.25);
}

.bg-yellow-400\/30 {
  background-color: rgba(255, 238, 88, 0.3);
}

.hover\:bg-yellow-400\/30:hover {
  background-color: rgba(255, 238, 88, 0.3);
}

.bg-yellow-400\/40 {
  background-color: rgba(255, 238, 88, 0.4);
}

.hover\:bg-yellow-400\/40:hover {
  background-color: rgba(255, 238, 88, 0.4);
}

.bg-yellow-400\/50 {
  background-color: rgba(255, 238, 88, 0.5);
}

.hover\:bg-yellow-400\/50:hover {
  background-color: rgba(255, 238, 88, 0.5);
}

.bg-yellow-400\/60 {
  background-color: rgba(255, 238, 88, 0.6);
}

.hover\:bg-yellow-400\/60:hover {
  background-color: rgba(255, 238, 88, 0.6);
}

.bg-yellow-400\/70 {
  background-color: rgba(255, 238, 88, 0.7);
}

.hover\:bg-yellow-400\/70:hover {
  background-color: rgba(255, 238, 88, 0.7);
}

.bg-yellow-400\/75 {
  background-color: rgba(255, 238, 88, 0.75);
}

.hover\:bg-yellow-400\/75:hover {
  background-color: rgba(255, 238, 88, 0.75);
}

.bg-yellow-400\/80 {
  background-color: rgba(255, 238, 88, 0.8);
}

.hover\:bg-yellow-400\/80:hover {
  background-color: rgba(255, 238, 88, 0.8);
}

.bg-yellow-400\/90 {
  background-color: rgba(255, 238, 88, 0.9);
}

.hover\:bg-yellow-400\/90:hover {
  background-color: rgba(255, 238, 88, 0.9);
}

.bg-yellow-400\/95 {
  background-color: rgba(255, 238, 88, 0.95);
}

.hover\:bg-yellow-400\/95:hover {
  background-color: rgba(255, 238, 88, 0.95);
}

.bg-yellow-400\/100 {
  background-color: #ffee58;
}

.hover\:bg-yellow-400\/100:hover {
  background-color: #ffee58;
}

.bg-yellow-500 {
  background-color: #ffeb3b;
}

.hover\:bg-yellow-500:hover {
  background-color: #ffeb3b;
}

.bg-yellow-500\/0 {
  background-color: rgba(255, 235, 59, 0);
}

.hover\:bg-yellow-500\/0:hover {
  background-color: rgba(255, 235, 59, 0);
}

.bg-yellow-500\/5 {
  background-color: rgba(255, 235, 59, 0.05);
}

.hover\:bg-yellow-500\/5:hover {
  background-color: rgba(255, 235, 59, 0.05);
}

.bg-yellow-500\/10 {
  background-color: rgba(255, 235, 59, 0.1);
}

.hover\:bg-yellow-500\/10:hover {
  background-color: rgba(255, 235, 59, 0.1);
}

.bg-yellow-500\/20 {
  background-color: rgba(255, 235, 59, 0.2);
}

.hover\:bg-yellow-500\/20:hover {
  background-color: rgba(255, 235, 59, 0.2);
}

.bg-yellow-500\/25 {
  background-color: rgba(255, 235, 59, 0.25);
}

.hover\:bg-yellow-500\/25:hover {
  background-color: rgba(255, 235, 59, 0.25);
}

.bg-yellow-500\/30 {
  background-color: rgba(255, 235, 59, 0.3);
}

.hover\:bg-yellow-500\/30:hover {
  background-color: rgba(255, 235, 59, 0.3);
}

.bg-yellow-500\/40 {
  background-color: rgba(255, 235, 59, 0.4);
}

.hover\:bg-yellow-500\/40:hover {
  background-color: rgba(255, 235, 59, 0.4);
}

.bg-yellow-500\/50 {
  background-color: rgba(255, 235, 59, 0.5);
}

.hover\:bg-yellow-500\/50:hover {
  background-color: rgba(255, 235, 59, 0.5);
}

.bg-yellow-500\/60 {
  background-color: rgba(255, 235, 59, 0.6);
}

.hover\:bg-yellow-500\/60:hover {
  background-color: rgba(255, 235, 59, 0.6);
}

.bg-yellow-500\/70 {
  background-color: rgba(255, 235, 59, 0.7);
}

.hover\:bg-yellow-500\/70:hover {
  background-color: rgba(255, 235, 59, 0.7);
}

.bg-yellow-500\/75 {
  background-color: rgba(255, 235, 59, 0.75);
}

.hover\:bg-yellow-500\/75:hover {
  background-color: rgba(255, 235, 59, 0.75);
}

.bg-yellow-500\/80 {
  background-color: rgba(255, 235, 59, 0.8);
}

.hover\:bg-yellow-500\/80:hover {
  background-color: rgba(255, 235, 59, 0.8);
}

.bg-yellow-500\/90 {
  background-color: rgba(255, 235, 59, 0.9);
}

.hover\:bg-yellow-500\/90:hover {
  background-color: rgba(255, 235, 59, 0.9);
}

.bg-yellow-500\/95 {
  background-color: rgba(255, 235, 59, 0.95);
}

.hover\:bg-yellow-500\/95:hover {
  background-color: rgba(255, 235, 59, 0.95);
}

.bg-yellow-500\/100 {
  background-color: #ffeb3b;
}

.hover\:bg-yellow-500\/100:hover {
  background-color: #ffeb3b;
}

.bg-yellow-600 {
  background-color: #fdd835;
}

.hover\:bg-yellow-600:hover {
  background-color: #fdd835;
}

.bg-yellow-600\/0 {
  background-color: rgba(253, 216, 53, 0);
}

.hover\:bg-yellow-600\/0:hover {
  background-color: rgba(253, 216, 53, 0);
}

.bg-yellow-600\/5 {
  background-color: rgba(253, 216, 53, 0.05);
}

.hover\:bg-yellow-600\/5:hover {
  background-color: rgba(253, 216, 53, 0.05);
}

.bg-yellow-600\/10 {
  background-color: rgba(253, 216, 53, 0.1);
}

.hover\:bg-yellow-600\/10:hover {
  background-color: rgba(253, 216, 53, 0.1);
}

.bg-yellow-600\/20 {
  background-color: rgba(253, 216, 53, 0.2);
}

.hover\:bg-yellow-600\/20:hover {
  background-color: rgba(253, 216, 53, 0.2);
}

.bg-yellow-600\/25 {
  background-color: rgba(253, 216, 53, 0.25);
}

.hover\:bg-yellow-600\/25:hover {
  background-color: rgba(253, 216, 53, 0.25);
}

.bg-yellow-600\/30 {
  background-color: rgba(253, 216, 53, 0.3);
}

.hover\:bg-yellow-600\/30:hover {
  background-color: rgba(253, 216, 53, 0.3);
}

.bg-yellow-600\/40 {
  background-color: rgba(253, 216, 53, 0.4);
}

.hover\:bg-yellow-600\/40:hover {
  background-color: rgba(253, 216, 53, 0.4);
}

.bg-yellow-600\/50 {
  background-color: rgba(253, 216, 53, 0.5);
}

.hover\:bg-yellow-600\/50:hover {
  background-color: rgba(253, 216, 53, 0.5);
}

.bg-yellow-600\/60 {
  background-color: rgba(253, 216, 53, 0.6);
}

.hover\:bg-yellow-600\/60:hover {
  background-color: rgba(253, 216, 53, 0.6);
}

.bg-yellow-600\/70 {
  background-color: rgba(253, 216, 53, 0.7);
}

.hover\:bg-yellow-600\/70:hover {
  background-color: rgba(253, 216, 53, 0.7);
}

.bg-yellow-600\/75 {
  background-color: rgba(253, 216, 53, 0.75);
}

.hover\:bg-yellow-600\/75:hover {
  background-color: rgba(253, 216, 53, 0.75);
}

.bg-yellow-600\/80 {
  background-color: rgba(253, 216, 53, 0.8);
}

.hover\:bg-yellow-600\/80:hover {
  background-color: rgba(253, 216, 53, 0.8);
}

.bg-yellow-600\/90 {
  background-color: rgba(253, 216, 53, 0.9);
}

.hover\:bg-yellow-600\/90:hover {
  background-color: rgba(253, 216, 53, 0.9);
}

.bg-yellow-600\/95 {
  background-color: rgba(253, 216, 53, 0.95);
}

.hover\:bg-yellow-600\/95:hover {
  background-color: rgba(253, 216, 53, 0.95);
}

.bg-yellow-600\/100 {
  background-color: #fdd835;
}

.hover\:bg-yellow-600\/100:hover {
  background-color: #fdd835;
}

.bg-yellow-700 {
  background-color: #fbc02d;
}

.hover\:bg-yellow-700:hover {
  background-color: #fbc02d;
}

.bg-yellow-700\/0 {
  background-color: rgba(251, 192, 45, 0);
}

.hover\:bg-yellow-700\/0:hover {
  background-color: rgba(251, 192, 45, 0);
}

.bg-yellow-700\/5 {
  background-color: rgba(251, 192, 45, 0.05);
}

.hover\:bg-yellow-700\/5:hover {
  background-color: rgba(251, 192, 45, 0.05);
}

.bg-yellow-700\/10 {
  background-color: rgba(251, 192, 45, 0.1);
}

.hover\:bg-yellow-700\/10:hover {
  background-color: rgba(251, 192, 45, 0.1);
}

.bg-yellow-700\/20 {
  background-color: rgba(251, 192, 45, 0.2);
}

.hover\:bg-yellow-700\/20:hover {
  background-color: rgba(251, 192, 45, 0.2);
}

.bg-yellow-700\/25 {
  background-color: rgba(251, 192, 45, 0.25);
}

.hover\:bg-yellow-700\/25:hover {
  background-color: rgba(251, 192, 45, 0.25);
}

.bg-yellow-700\/30 {
  background-color: rgba(251, 192, 45, 0.3);
}

.hover\:bg-yellow-700\/30:hover {
  background-color: rgba(251, 192, 45, 0.3);
}

.bg-yellow-700\/40 {
  background-color: rgba(251, 192, 45, 0.4);
}

.hover\:bg-yellow-700\/40:hover {
  background-color: rgba(251, 192, 45, 0.4);
}

.bg-yellow-700\/50 {
  background-color: rgba(251, 192, 45, 0.5);
}

.hover\:bg-yellow-700\/50:hover {
  background-color: rgba(251, 192, 45, 0.5);
}

.bg-yellow-700\/60 {
  background-color: rgba(251, 192, 45, 0.6);
}

.hover\:bg-yellow-700\/60:hover {
  background-color: rgba(251, 192, 45, 0.6);
}

.bg-yellow-700\/70 {
  background-color: rgba(251, 192, 45, 0.7);
}

.hover\:bg-yellow-700\/70:hover {
  background-color: rgba(251, 192, 45, 0.7);
}

.bg-yellow-700\/75 {
  background-color: rgba(251, 192, 45, 0.75);
}

.hover\:bg-yellow-700\/75:hover {
  background-color: rgba(251, 192, 45, 0.75);
}

.bg-yellow-700\/80 {
  background-color: rgba(251, 192, 45, 0.8);
}

.hover\:bg-yellow-700\/80:hover {
  background-color: rgba(251, 192, 45, 0.8);
}

.bg-yellow-700\/90 {
  background-color: rgba(251, 192, 45, 0.9);
}

.hover\:bg-yellow-700\/90:hover {
  background-color: rgba(251, 192, 45, 0.9);
}

.bg-yellow-700\/95 {
  background-color: rgba(251, 192, 45, 0.95);
}

.hover\:bg-yellow-700\/95:hover {
  background-color: rgba(251, 192, 45, 0.95);
}

.bg-yellow-700\/100 {
  background-color: #fbc02d;
}

.hover\:bg-yellow-700\/100:hover {
  background-color: #fbc02d;
}

.bg-yellow-800 {
  background-color: #f9a825;
}

.hover\:bg-yellow-800:hover {
  background-color: #f9a825;
}

.bg-yellow-800\/0 {
  background-color: rgba(249, 168, 37, 0);
}

.hover\:bg-yellow-800\/0:hover {
  background-color: rgba(249, 168, 37, 0);
}

.bg-yellow-800\/5 {
  background-color: rgba(249, 168, 37, 0.05);
}

.hover\:bg-yellow-800\/5:hover {
  background-color: rgba(249, 168, 37, 0.05);
}

.bg-yellow-800\/10 {
  background-color: rgba(249, 168, 37, 0.1);
}

.hover\:bg-yellow-800\/10:hover {
  background-color: rgba(249, 168, 37, 0.1);
}

.bg-yellow-800\/20 {
  background-color: rgba(249, 168, 37, 0.2);
}

.hover\:bg-yellow-800\/20:hover {
  background-color: rgba(249, 168, 37, 0.2);
}

.bg-yellow-800\/25 {
  background-color: rgba(249, 168, 37, 0.25);
}

.hover\:bg-yellow-800\/25:hover {
  background-color: rgba(249, 168, 37, 0.25);
}

.bg-yellow-800\/30 {
  background-color: rgba(249, 168, 37, 0.3);
}

.hover\:bg-yellow-800\/30:hover {
  background-color: rgba(249, 168, 37, 0.3);
}

.bg-yellow-800\/40 {
  background-color: rgba(249, 168, 37, 0.4);
}

.hover\:bg-yellow-800\/40:hover {
  background-color: rgba(249, 168, 37, 0.4);
}

.bg-yellow-800\/50 {
  background-color: rgba(249, 168, 37, 0.5);
}

.hover\:bg-yellow-800\/50:hover {
  background-color: rgba(249, 168, 37, 0.5);
}

.bg-yellow-800\/60 {
  background-color: rgba(249, 168, 37, 0.6);
}

.hover\:bg-yellow-800\/60:hover {
  background-color: rgba(249, 168, 37, 0.6);
}

.bg-yellow-800\/70 {
  background-color: rgba(249, 168, 37, 0.7);
}

.hover\:bg-yellow-800\/70:hover {
  background-color: rgba(249, 168, 37, 0.7);
}

.bg-yellow-800\/75 {
  background-color: rgba(249, 168, 37, 0.75);
}

.hover\:bg-yellow-800\/75:hover {
  background-color: rgba(249, 168, 37, 0.75);
}

.bg-yellow-800\/80 {
  background-color: rgba(249, 168, 37, 0.8);
}

.hover\:bg-yellow-800\/80:hover {
  background-color: rgba(249, 168, 37, 0.8);
}

.bg-yellow-800\/90 {
  background-color: rgba(249, 168, 37, 0.9);
}

.hover\:bg-yellow-800\/90:hover {
  background-color: rgba(249, 168, 37, 0.9);
}

.bg-yellow-800\/95 {
  background-color: rgba(249, 168, 37, 0.95);
}

.hover\:bg-yellow-800\/95:hover {
  background-color: rgba(249, 168, 37, 0.95);
}

.bg-yellow-800\/100 {
  background-color: #f9a825;
}

.hover\:bg-yellow-800\/100:hover {
  background-color: #f9a825;
}

.bg-yellow-900 {
  background-color: #f57f17;
}

.hover\:bg-yellow-900:hover {
  background-color: #f57f17;
}

.bg-yellow-900\/0 {
  background-color: rgba(245, 127, 23, 0);
}

.hover\:bg-yellow-900\/0:hover {
  background-color: rgba(245, 127, 23, 0);
}

.bg-yellow-900\/5 {
  background-color: rgba(245, 127, 23, 0.05);
}

.hover\:bg-yellow-900\/5:hover {
  background-color: rgba(245, 127, 23, 0.05);
}

.bg-yellow-900\/10 {
  background-color: rgba(245, 127, 23, 0.1);
}

.hover\:bg-yellow-900\/10:hover {
  background-color: rgba(245, 127, 23, 0.1);
}

.bg-yellow-900\/20 {
  background-color: rgba(245, 127, 23, 0.2);
}

.hover\:bg-yellow-900\/20:hover {
  background-color: rgba(245, 127, 23, 0.2);
}

.bg-yellow-900\/25 {
  background-color: rgba(245, 127, 23, 0.25);
}

.hover\:bg-yellow-900\/25:hover {
  background-color: rgba(245, 127, 23, 0.25);
}

.bg-yellow-900\/30 {
  background-color: rgba(245, 127, 23, 0.3);
}

.hover\:bg-yellow-900\/30:hover {
  background-color: rgba(245, 127, 23, 0.3);
}

.bg-yellow-900\/40 {
  background-color: rgba(245, 127, 23, 0.4);
}

.hover\:bg-yellow-900\/40:hover {
  background-color: rgba(245, 127, 23, 0.4);
}

.bg-yellow-900\/50 {
  background-color: rgba(245, 127, 23, 0.5);
}

.hover\:bg-yellow-900\/50:hover {
  background-color: rgba(245, 127, 23, 0.5);
}

.bg-yellow-900\/60 {
  background-color: rgba(245, 127, 23, 0.6);
}

.hover\:bg-yellow-900\/60:hover {
  background-color: rgba(245, 127, 23, 0.6);
}

.bg-yellow-900\/70 {
  background-color: rgba(245, 127, 23, 0.7);
}

.hover\:bg-yellow-900\/70:hover {
  background-color: rgba(245, 127, 23, 0.7);
}

.bg-yellow-900\/75 {
  background-color: rgba(245, 127, 23, 0.75);
}

.hover\:bg-yellow-900\/75:hover {
  background-color: rgba(245, 127, 23, 0.75);
}

.bg-yellow-900\/80 {
  background-color: rgba(245, 127, 23, 0.8);
}

.hover\:bg-yellow-900\/80:hover {
  background-color: rgba(245, 127, 23, 0.8);
}

.bg-yellow-900\/90 {
  background-color: rgba(245, 127, 23, 0.9);
}

.hover\:bg-yellow-900\/90:hover {
  background-color: rgba(245, 127, 23, 0.9);
}

.bg-yellow-900\/95 {
  background-color: rgba(245, 127, 23, 0.95);
}

.hover\:bg-yellow-900\/95:hover {
  background-color: rgba(245, 127, 23, 0.95);
}

.bg-yellow-900\/100 {
  background-color: #f57f17;
}

.hover\:bg-yellow-900\/100:hover {
  background-color: #f57f17;
}

.bg-orange-50 {
  background-color: #fff3e0;
}

.hover\:bg-orange-50:hover {
  background-color: #fff3e0;
}

.bg-orange-50\/0 {
  background-color: rgba(255, 243, 224, 0);
}

.hover\:bg-orange-50\/0:hover {
  background-color: rgba(255, 243, 224, 0);
}

.bg-orange-50\/5 {
  background-color: rgba(255, 243, 224, 0.05);
}

.hover\:bg-orange-50\/5:hover {
  background-color: rgba(255, 243, 224, 0.05);
}

.bg-orange-50\/10 {
  background-color: rgba(255, 243, 224, 0.1);
}

.hover\:bg-orange-50\/10:hover {
  background-color: rgba(255, 243, 224, 0.1);
}

.bg-orange-50\/20 {
  background-color: rgba(255, 243, 224, 0.2);
}

.hover\:bg-orange-50\/20:hover {
  background-color: rgba(255, 243, 224, 0.2);
}

.bg-orange-50\/25 {
  background-color: rgba(255, 243, 224, 0.25);
}

.hover\:bg-orange-50\/25:hover {
  background-color: rgba(255, 243, 224, 0.25);
}

.bg-orange-50\/30 {
  background-color: rgba(255, 243, 224, 0.3);
}

.hover\:bg-orange-50\/30:hover {
  background-color: rgba(255, 243, 224, 0.3);
}

.bg-orange-50\/40 {
  background-color: rgba(255, 243, 224, 0.4);
}

.hover\:bg-orange-50\/40:hover {
  background-color: rgba(255, 243, 224, 0.4);
}

.bg-orange-50\/50 {
  background-color: rgba(255, 243, 224, 0.5);
}

.hover\:bg-orange-50\/50:hover {
  background-color: rgba(255, 243, 224, 0.5);
}

.bg-orange-50\/60 {
  background-color: rgba(255, 243, 224, 0.6);
}

.hover\:bg-orange-50\/60:hover {
  background-color: rgba(255, 243, 224, 0.6);
}

.bg-orange-50\/70 {
  background-color: rgba(255, 243, 224, 0.7);
}

.hover\:bg-orange-50\/70:hover {
  background-color: rgba(255, 243, 224, 0.7);
}

.bg-orange-50\/75 {
  background-color: rgba(255, 243, 224, 0.75);
}

.hover\:bg-orange-50\/75:hover {
  background-color: rgba(255, 243, 224, 0.75);
}

.bg-orange-50\/80 {
  background-color: rgba(255, 243, 224, 0.8);
}

.hover\:bg-orange-50\/80:hover {
  background-color: rgba(255, 243, 224, 0.8);
}

.bg-orange-50\/90 {
  background-color: rgba(255, 243, 224, 0.9);
}

.hover\:bg-orange-50\/90:hover {
  background-color: rgba(255, 243, 224, 0.9);
}

.bg-orange-50\/95 {
  background-color: rgba(255, 243, 224, 0.95);
}

.hover\:bg-orange-50\/95:hover {
  background-color: rgba(255, 243, 224, 0.95);
}

.bg-orange-50\/100 {
  background-color: #fff3e0;
}

.hover\:bg-orange-50\/100:hover {
  background-color: #fff3e0;
}

.bg-orange-100 {
  background-color: #ffe0b2;
}

.hover\:bg-orange-100:hover {
  background-color: #ffe0b2;
}

.bg-orange-100\/0 {
  background-color: rgba(255, 224, 178, 0);
}

.hover\:bg-orange-100\/0:hover {
  background-color: rgba(255, 224, 178, 0);
}

.bg-orange-100\/5 {
  background-color: rgba(255, 224, 178, 0.05);
}

.hover\:bg-orange-100\/5:hover {
  background-color: rgba(255, 224, 178, 0.05);
}

.bg-orange-100\/10 {
  background-color: rgba(255, 224, 178, 0.1);
}

.hover\:bg-orange-100\/10:hover {
  background-color: rgba(255, 224, 178, 0.1);
}

.bg-orange-100\/20 {
  background-color: rgba(255, 224, 178, 0.2);
}

.hover\:bg-orange-100\/20:hover {
  background-color: rgba(255, 224, 178, 0.2);
}

.bg-orange-100\/25 {
  background-color: rgba(255, 224, 178, 0.25);
}

.hover\:bg-orange-100\/25:hover {
  background-color: rgba(255, 224, 178, 0.25);
}

.bg-orange-100\/30 {
  background-color: rgba(255, 224, 178, 0.3);
}

.hover\:bg-orange-100\/30:hover {
  background-color: rgba(255, 224, 178, 0.3);
}

.bg-orange-100\/40 {
  background-color: rgba(255, 224, 178, 0.4);
}

.hover\:bg-orange-100\/40:hover {
  background-color: rgba(255, 224, 178, 0.4);
}

.bg-orange-100\/50 {
  background-color: rgba(255, 224, 178, 0.5);
}

.hover\:bg-orange-100\/50:hover {
  background-color: rgba(255, 224, 178, 0.5);
}

.bg-orange-100\/60 {
  background-color: rgba(255, 224, 178, 0.6);
}

.hover\:bg-orange-100\/60:hover {
  background-color: rgba(255, 224, 178, 0.6);
}

.bg-orange-100\/70 {
  background-color: rgba(255, 224, 178, 0.7);
}

.hover\:bg-orange-100\/70:hover {
  background-color: rgba(255, 224, 178, 0.7);
}

.bg-orange-100\/75 {
  background-color: rgba(255, 224, 178, 0.75);
}

.hover\:bg-orange-100\/75:hover {
  background-color: rgba(255, 224, 178, 0.75);
}

.bg-orange-100\/80 {
  background-color: rgba(255, 224, 178, 0.8);
}

.hover\:bg-orange-100\/80:hover {
  background-color: rgba(255, 224, 178, 0.8);
}

.bg-orange-100\/90 {
  background-color: rgba(255, 224, 178, 0.9);
}

.hover\:bg-orange-100\/90:hover {
  background-color: rgba(255, 224, 178, 0.9);
}

.bg-orange-100\/95 {
  background-color: rgba(255, 224, 178, 0.95);
}

.hover\:bg-orange-100\/95:hover {
  background-color: rgba(255, 224, 178, 0.95);
}

.bg-orange-100\/100 {
  background-color: #ffe0b2;
}

.hover\:bg-orange-100\/100:hover {
  background-color: #ffe0b2;
}

.bg-orange-200 {
  background-color: #ffcc80;
}

.hover\:bg-orange-200:hover {
  background-color: #ffcc80;
}

.bg-orange-200\/0 {
  background-color: rgba(255, 204, 128, 0);
}

.hover\:bg-orange-200\/0:hover {
  background-color: rgba(255, 204, 128, 0);
}

.bg-orange-200\/5 {
  background-color: rgba(255, 204, 128, 0.05);
}

.hover\:bg-orange-200\/5:hover {
  background-color: rgba(255, 204, 128, 0.05);
}

.bg-orange-200\/10 {
  background-color: rgba(255, 204, 128, 0.1);
}

.hover\:bg-orange-200\/10:hover {
  background-color: rgba(255, 204, 128, 0.1);
}

.bg-orange-200\/20 {
  background-color: rgba(255, 204, 128, 0.2);
}

.hover\:bg-orange-200\/20:hover {
  background-color: rgba(255, 204, 128, 0.2);
}

.bg-orange-200\/25 {
  background-color: rgba(255, 204, 128, 0.25);
}

.hover\:bg-orange-200\/25:hover {
  background-color: rgba(255, 204, 128, 0.25);
}

.bg-orange-200\/30 {
  background-color: rgba(255, 204, 128, 0.3);
}

.hover\:bg-orange-200\/30:hover {
  background-color: rgba(255, 204, 128, 0.3);
}

.bg-orange-200\/40 {
  background-color: rgba(255, 204, 128, 0.4);
}

.hover\:bg-orange-200\/40:hover {
  background-color: rgba(255, 204, 128, 0.4);
}

.bg-orange-200\/50 {
  background-color: rgba(255, 204, 128, 0.5);
}

.hover\:bg-orange-200\/50:hover {
  background-color: rgba(255, 204, 128, 0.5);
}

.bg-orange-200\/60 {
  background-color: rgba(255, 204, 128, 0.6);
}

.hover\:bg-orange-200\/60:hover {
  background-color: rgba(255, 204, 128, 0.6);
}

.bg-orange-200\/70 {
  background-color: rgba(255, 204, 128, 0.7);
}

.hover\:bg-orange-200\/70:hover {
  background-color: rgba(255, 204, 128, 0.7);
}

.bg-orange-200\/75 {
  background-color: rgba(255, 204, 128, 0.75);
}

.hover\:bg-orange-200\/75:hover {
  background-color: rgba(255, 204, 128, 0.75);
}

.bg-orange-200\/80 {
  background-color: rgba(255, 204, 128, 0.8);
}

.hover\:bg-orange-200\/80:hover {
  background-color: rgba(255, 204, 128, 0.8);
}

.bg-orange-200\/90 {
  background-color: rgba(255, 204, 128, 0.9);
}

.hover\:bg-orange-200\/90:hover {
  background-color: rgba(255, 204, 128, 0.9);
}

.bg-orange-200\/95 {
  background-color: rgba(255, 204, 128, 0.95);
}

.hover\:bg-orange-200\/95:hover {
  background-color: rgba(255, 204, 128, 0.95);
}

.bg-orange-200\/100 {
  background-color: #ffcc80;
}

.hover\:bg-orange-200\/100:hover {
  background-color: #ffcc80;
}

.bg-orange-300 {
  background-color: #ffb74d;
}

.hover\:bg-orange-300:hover {
  background-color: #ffb74d;
}

.bg-orange-300\/0 {
  background-color: rgba(255, 183, 77, 0);
}

.hover\:bg-orange-300\/0:hover {
  background-color: rgba(255, 183, 77, 0);
}

.bg-orange-300\/5 {
  background-color: rgba(255, 183, 77, 0.05);
}

.hover\:bg-orange-300\/5:hover {
  background-color: rgba(255, 183, 77, 0.05);
}

.bg-orange-300\/10 {
  background-color: rgba(255, 183, 77, 0.1);
}

.hover\:bg-orange-300\/10:hover {
  background-color: rgba(255, 183, 77, 0.1);
}

.bg-orange-300\/20 {
  background-color: rgba(255, 183, 77, 0.2);
}

.hover\:bg-orange-300\/20:hover {
  background-color: rgba(255, 183, 77, 0.2);
}

.bg-orange-300\/25 {
  background-color: rgba(255, 183, 77, 0.25);
}

.hover\:bg-orange-300\/25:hover {
  background-color: rgba(255, 183, 77, 0.25);
}

.bg-orange-300\/30 {
  background-color: rgba(255, 183, 77, 0.3);
}

.hover\:bg-orange-300\/30:hover {
  background-color: rgba(255, 183, 77, 0.3);
}

.bg-orange-300\/40 {
  background-color: rgba(255, 183, 77, 0.4);
}

.hover\:bg-orange-300\/40:hover {
  background-color: rgba(255, 183, 77, 0.4);
}

.bg-orange-300\/50 {
  background-color: rgba(255, 183, 77, 0.5);
}

.hover\:bg-orange-300\/50:hover {
  background-color: rgba(255, 183, 77, 0.5);
}

.bg-orange-300\/60 {
  background-color: rgba(255, 183, 77, 0.6);
}

.hover\:bg-orange-300\/60:hover {
  background-color: rgba(255, 183, 77, 0.6);
}

.bg-orange-300\/70 {
  background-color: rgba(255, 183, 77, 0.7);
}

.hover\:bg-orange-300\/70:hover {
  background-color: rgba(255, 183, 77, 0.7);
}

.bg-orange-300\/75 {
  background-color: rgba(255, 183, 77, 0.75);
}

.hover\:bg-orange-300\/75:hover {
  background-color: rgba(255, 183, 77, 0.75);
}

.bg-orange-300\/80 {
  background-color: rgba(255, 183, 77, 0.8);
}

.hover\:bg-orange-300\/80:hover {
  background-color: rgba(255, 183, 77, 0.8);
}

.bg-orange-300\/90 {
  background-color: rgba(255, 183, 77, 0.9);
}

.hover\:bg-orange-300\/90:hover {
  background-color: rgba(255, 183, 77, 0.9);
}

.bg-orange-300\/95 {
  background-color: rgba(255, 183, 77, 0.95);
}

.hover\:bg-orange-300\/95:hover {
  background-color: rgba(255, 183, 77, 0.95);
}

.bg-orange-300\/100 {
  background-color: #ffb74d;
}

.hover\:bg-orange-300\/100:hover {
  background-color: #ffb74d;
}

.bg-orange-400 {
  background-color: #ffa726;
}

.hover\:bg-orange-400:hover {
  background-color: #ffa726;
}

.bg-orange-400\/0 {
  background-color: rgba(255, 167, 38, 0);
}

.hover\:bg-orange-400\/0:hover {
  background-color: rgba(255, 167, 38, 0);
}

.bg-orange-400\/5 {
  background-color: rgba(255, 167, 38, 0.05);
}

.hover\:bg-orange-400\/5:hover {
  background-color: rgba(255, 167, 38, 0.05);
}

.bg-orange-400\/10 {
  background-color: rgba(255, 167, 38, 0.1);
}

.hover\:bg-orange-400\/10:hover {
  background-color: rgba(255, 167, 38, 0.1);
}

.bg-orange-400\/20 {
  background-color: rgba(255, 167, 38, 0.2);
}

.hover\:bg-orange-400\/20:hover {
  background-color: rgba(255, 167, 38, 0.2);
}

.bg-orange-400\/25 {
  background-color: rgba(255, 167, 38, 0.25);
}

.hover\:bg-orange-400\/25:hover {
  background-color: rgba(255, 167, 38, 0.25);
}

.bg-orange-400\/30 {
  background-color: rgba(255, 167, 38, 0.3);
}

.hover\:bg-orange-400\/30:hover {
  background-color: rgba(255, 167, 38, 0.3);
}

.bg-orange-400\/40 {
  background-color: rgba(255, 167, 38, 0.4);
}

.hover\:bg-orange-400\/40:hover {
  background-color: rgba(255, 167, 38, 0.4);
}

.bg-orange-400\/50 {
  background-color: rgba(255, 167, 38, 0.5);
}

.hover\:bg-orange-400\/50:hover {
  background-color: rgba(255, 167, 38, 0.5);
}

.bg-orange-400\/60 {
  background-color: rgba(255, 167, 38, 0.6);
}

.hover\:bg-orange-400\/60:hover {
  background-color: rgba(255, 167, 38, 0.6);
}

.bg-orange-400\/70 {
  background-color: rgba(255, 167, 38, 0.7);
}

.hover\:bg-orange-400\/70:hover {
  background-color: rgba(255, 167, 38, 0.7);
}

.bg-orange-400\/75 {
  background-color: rgba(255, 167, 38, 0.75);
}

.hover\:bg-orange-400\/75:hover {
  background-color: rgba(255, 167, 38, 0.75);
}

.bg-orange-400\/80 {
  background-color: rgba(255, 167, 38, 0.8);
}

.hover\:bg-orange-400\/80:hover {
  background-color: rgba(255, 167, 38, 0.8);
}

.bg-orange-400\/90 {
  background-color: rgba(255, 167, 38, 0.9);
}

.hover\:bg-orange-400\/90:hover {
  background-color: rgba(255, 167, 38, 0.9);
}

.bg-orange-400\/95 {
  background-color: rgba(255, 167, 38, 0.95);
}

.hover\:bg-orange-400\/95:hover {
  background-color: rgba(255, 167, 38, 0.95);
}

.bg-orange-400\/100 {
  background-color: #ffa726;
}

.hover\:bg-orange-400\/100:hover {
  background-color: #ffa726;
}

.bg-orange-500 {
  background-color: #ff9800;
}

.hover\:bg-orange-500:hover {
  background-color: #ff9800;
}

.bg-orange-500\/0 {
  background-color: rgba(255, 152, 0, 0);
}

.hover\:bg-orange-500\/0:hover {
  background-color: rgba(255, 152, 0, 0);
}

.bg-orange-500\/5 {
  background-color: rgba(255, 152, 0, 0.05);
}

.hover\:bg-orange-500\/5:hover {
  background-color: rgba(255, 152, 0, 0.05);
}

.bg-orange-500\/10 {
  background-color: rgba(255, 152, 0, 0.1);
}

.hover\:bg-orange-500\/10:hover {
  background-color: rgba(255, 152, 0, 0.1);
}

.bg-orange-500\/20 {
  background-color: rgba(255, 152, 0, 0.2);
}

.hover\:bg-orange-500\/20:hover {
  background-color: rgba(255, 152, 0, 0.2);
}

.bg-orange-500\/25 {
  background-color: rgba(255, 152, 0, 0.25);
}

.hover\:bg-orange-500\/25:hover {
  background-color: rgba(255, 152, 0, 0.25);
}

.bg-orange-500\/30 {
  background-color: rgba(255, 152, 0, 0.3);
}

.hover\:bg-orange-500\/30:hover {
  background-color: rgba(255, 152, 0, 0.3);
}

.bg-orange-500\/40 {
  background-color: rgba(255, 152, 0, 0.4);
}

.hover\:bg-orange-500\/40:hover {
  background-color: rgba(255, 152, 0, 0.4);
}

.bg-orange-500\/50 {
  background-color: rgba(255, 152, 0, 0.5);
}

.hover\:bg-orange-500\/50:hover {
  background-color: rgba(255, 152, 0, 0.5);
}

.bg-orange-500\/60 {
  background-color: rgba(255, 152, 0, 0.6);
}

.hover\:bg-orange-500\/60:hover {
  background-color: rgba(255, 152, 0, 0.6);
}

.bg-orange-500\/70 {
  background-color: rgba(255, 152, 0, 0.7);
}

.hover\:bg-orange-500\/70:hover {
  background-color: rgba(255, 152, 0, 0.7);
}

.bg-orange-500\/75 {
  background-color: rgba(255, 152, 0, 0.75);
}

.hover\:bg-orange-500\/75:hover {
  background-color: rgba(255, 152, 0, 0.75);
}

.bg-orange-500\/80 {
  background-color: rgba(255, 152, 0, 0.8);
}

.hover\:bg-orange-500\/80:hover {
  background-color: rgba(255, 152, 0, 0.8);
}

.bg-orange-500\/90 {
  background-color: rgba(255, 152, 0, 0.9);
}

.hover\:bg-orange-500\/90:hover {
  background-color: rgba(255, 152, 0, 0.9);
}

.bg-orange-500\/95 {
  background-color: rgba(255, 152, 0, 0.95);
}

.hover\:bg-orange-500\/95:hover {
  background-color: rgba(255, 152, 0, 0.95);
}

.bg-orange-500\/100 {
  background-color: #ff9800;
}

.hover\:bg-orange-500\/100:hover {
  background-color: #ff9800;
}

.bg-orange-600 {
  background-color: #fb8c00;
}

.hover\:bg-orange-600:hover {
  background-color: #fb8c00;
}

.bg-orange-600\/0 {
  background-color: rgba(251, 140, 0, 0);
}

.hover\:bg-orange-600\/0:hover {
  background-color: rgba(251, 140, 0, 0);
}

.bg-orange-600\/5 {
  background-color: rgba(251, 140, 0, 0.05);
}

.hover\:bg-orange-600\/5:hover {
  background-color: rgba(251, 140, 0, 0.05);
}

.bg-orange-600\/10 {
  background-color: rgba(251, 140, 0, 0.1);
}

.hover\:bg-orange-600\/10:hover {
  background-color: rgba(251, 140, 0, 0.1);
}

.bg-orange-600\/20 {
  background-color: rgba(251, 140, 0, 0.2);
}

.hover\:bg-orange-600\/20:hover {
  background-color: rgba(251, 140, 0, 0.2);
}

.bg-orange-600\/25 {
  background-color: rgba(251, 140, 0, 0.25);
}

.hover\:bg-orange-600\/25:hover {
  background-color: rgba(251, 140, 0, 0.25);
}

.bg-orange-600\/30 {
  background-color: rgba(251, 140, 0, 0.3);
}

.hover\:bg-orange-600\/30:hover {
  background-color: rgba(251, 140, 0, 0.3);
}

.bg-orange-600\/40 {
  background-color: rgba(251, 140, 0, 0.4);
}

.hover\:bg-orange-600\/40:hover {
  background-color: rgba(251, 140, 0, 0.4);
}

.bg-orange-600\/50 {
  background-color: rgba(251, 140, 0, 0.5);
}

.hover\:bg-orange-600\/50:hover {
  background-color: rgba(251, 140, 0, 0.5);
}

.bg-orange-600\/60 {
  background-color: rgba(251, 140, 0, 0.6);
}

.hover\:bg-orange-600\/60:hover {
  background-color: rgba(251, 140, 0, 0.6);
}

.bg-orange-600\/70 {
  background-color: rgba(251, 140, 0, 0.7);
}

.hover\:bg-orange-600\/70:hover {
  background-color: rgba(251, 140, 0, 0.7);
}

.bg-orange-600\/75 {
  background-color: rgba(251, 140, 0, 0.75);
}

.hover\:bg-orange-600\/75:hover {
  background-color: rgba(251, 140, 0, 0.75);
}

.bg-orange-600\/80 {
  background-color: rgba(251, 140, 0, 0.8);
}

.hover\:bg-orange-600\/80:hover {
  background-color: rgba(251, 140, 0, 0.8);
}

.bg-orange-600\/90 {
  background-color: rgba(251, 140, 0, 0.9);
}

.hover\:bg-orange-600\/90:hover {
  background-color: rgba(251, 140, 0, 0.9);
}

.bg-orange-600\/95 {
  background-color: rgba(251, 140, 0, 0.95);
}

.hover\:bg-orange-600\/95:hover {
  background-color: rgba(251, 140, 0, 0.95);
}

.bg-orange-600\/100 {
  background-color: #fb8c00;
}

.hover\:bg-orange-600\/100:hover {
  background-color: #fb8c00;
}

.bg-orange-700 {
  background-color: #f57c00;
}

.hover\:bg-orange-700:hover {
  background-color: #f57c00;
}

.bg-orange-700\/0 {
  background-color: rgba(245, 124, 0, 0);
}

.hover\:bg-orange-700\/0:hover {
  background-color: rgba(245, 124, 0, 0);
}

.bg-orange-700\/5 {
  background-color: rgba(245, 124, 0, 0.05);
}

.hover\:bg-orange-700\/5:hover {
  background-color: rgba(245, 124, 0, 0.05);
}

.bg-orange-700\/10 {
  background-color: rgba(245, 124, 0, 0.1);
}

.hover\:bg-orange-700\/10:hover {
  background-color: rgba(245, 124, 0, 0.1);
}

.bg-orange-700\/20 {
  background-color: rgba(245, 124, 0, 0.2);
}

.hover\:bg-orange-700\/20:hover {
  background-color: rgba(245, 124, 0, 0.2);
}

.bg-orange-700\/25 {
  background-color: rgba(245, 124, 0, 0.25);
}

.hover\:bg-orange-700\/25:hover {
  background-color: rgba(245, 124, 0, 0.25);
}

.bg-orange-700\/30 {
  background-color: rgba(245, 124, 0, 0.3);
}

.hover\:bg-orange-700\/30:hover {
  background-color: rgba(245, 124, 0, 0.3);
}

.bg-orange-700\/40 {
  background-color: rgba(245, 124, 0, 0.4);
}

.hover\:bg-orange-700\/40:hover {
  background-color: rgba(245, 124, 0, 0.4);
}

.bg-orange-700\/50 {
  background-color: rgba(245, 124, 0, 0.5);
}

.hover\:bg-orange-700\/50:hover {
  background-color: rgba(245, 124, 0, 0.5);
}

.bg-orange-700\/60 {
  background-color: rgba(245, 124, 0, 0.6);
}

.hover\:bg-orange-700\/60:hover {
  background-color: rgba(245, 124, 0, 0.6);
}

.bg-orange-700\/70 {
  background-color: rgba(245, 124, 0, 0.7);
}

.hover\:bg-orange-700\/70:hover {
  background-color: rgba(245, 124, 0, 0.7);
}

.bg-orange-700\/75 {
  background-color: rgba(245, 124, 0, 0.75);
}

.hover\:bg-orange-700\/75:hover {
  background-color: rgba(245, 124, 0, 0.75);
}

.bg-orange-700\/80 {
  background-color: rgba(245, 124, 0, 0.8);
}

.hover\:bg-orange-700\/80:hover {
  background-color: rgba(245, 124, 0, 0.8);
}

.bg-orange-700\/90 {
  background-color: rgba(245, 124, 0, 0.9);
}

.hover\:bg-orange-700\/90:hover {
  background-color: rgba(245, 124, 0, 0.9);
}

.bg-orange-700\/95 {
  background-color: rgba(245, 124, 0, 0.95);
}

.hover\:bg-orange-700\/95:hover {
  background-color: rgba(245, 124, 0, 0.95);
}

.bg-orange-700\/100 {
  background-color: #f57c00;
}

.hover\:bg-orange-700\/100:hover {
  background-color: #f57c00;
}

.bg-orange-800 {
  background-color: #ef6c00;
}

.hover\:bg-orange-800:hover {
  background-color: #ef6c00;
}

.bg-orange-800\/0 {
  background-color: rgba(239, 108, 0, 0);
}

.hover\:bg-orange-800\/0:hover {
  background-color: rgba(239, 108, 0, 0);
}

.bg-orange-800\/5 {
  background-color: rgba(239, 108, 0, 0.05);
}

.hover\:bg-orange-800\/5:hover {
  background-color: rgba(239, 108, 0, 0.05);
}

.bg-orange-800\/10 {
  background-color: rgba(239, 108, 0, 0.1);
}

.hover\:bg-orange-800\/10:hover {
  background-color: rgba(239, 108, 0, 0.1);
}

.bg-orange-800\/20 {
  background-color: rgba(239, 108, 0, 0.2);
}

.hover\:bg-orange-800\/20:hover {
  background-color: rgba(239, 108, 0, 0.2);
}

.bg-orange-800\/25 {
  background-color: rgba(239, 108, 0, 0.25);
}

.hover\:bg-orange-800\/25:hover {
  background-color: rgba(239, 108, 0, 0.25);
}

.bg-orange-800\/30 {
  background-color: rgba(239, 108, 0, 0.3);
}

.hover\:bg-orange-800\/30:hover {
  background-color: rgba(239, 108, 0, 0.3);
}

.bg-orange-800\/40 {
  background-color: rgba(239, 108, 0, 0.4);
}

.hover\:bg-orange-800\/40:hover {
  background-color: rgba(239, 108, 0, 0.4);
}

.bg-orange-800\/50 {
  background-color: rgba(239, 108, 0, 0.5);
}

.hover\:bg-orange-800\/50:hover {
  background-color: rgba(239, 108, 0, 0.5);
}

.bg-orange-800\/60 {
  background-color: rgba(239, 108, 0, 0.6);
}

.hover\:bg-orange-800\/60:hover {
  background-color: rgba(239, 108, 0, 0.6);
}

.bg-orange-800\/70 {
  background-color: rgba(239, 108, 0, 0.7);
}

.hover\:bg-orange-800\/70:hover {
  background-color: rgba(239, 108, 0, 0.7);
}

.bg-orange-800\/75 {
  background-color: rgba(239, 108, 0, 0.75);
}

.hover\:bg-orange-800\/75:hover {
  background-color: rgba(239, 108, 0, 0.75);
}

.bg-orange-800\/80 {
  background-color: rgba(239, 108, 0, 0.8);
}

.hover\:bg-orange-800\/80:hover {
  background-color: rgba(239, 108, 0, 0.8);
}

.bg-orange-800\/90 {
  background-color: rgba(239, 108, 0, 0.9);
}

.hover\:bg-orange-800\/90:hover {
  background-color: rgba(239, 108, 0, 0.9);
}

.bg-orange-800\/95 {
  background-color: rgba(239, 108, 0, 0.95);
}

.hover\:bg-orange-800\/95:hover {
  background-color: rgba(239, 108, 0, 0.95);
}

.bg-orange-800\/100 {
  background-color: #ef6c00;
}

.hover\:bg-orange-800\/100:hover {
  background-color: #ef6c00;
}

.bg-orange-900 {
  background-color: #e65100;
}

.hover\:bg-orange-900:hover {
  background-color: #e65100;
}

.bg-orange-900\/0 {
  background-color: rgba(230, 81, 0, 0);
}

.hover\:bg-orange-900\/0:hover {
  background-color: rgba(230, 81, 0, 0);
}

.bg-orange-900\/5 {
  background-color: rgba(230, 81, 0, 0.05);
}

.hover\:bg-orange-900\/5:hover {
  background-color: rgba(230, 81, 0, 0.05);
}

.bg-orange-900\/10 {
  background-color: rgba(230, 81, 0, 0.1);
}

.hover\:bg-orange-900\/10:hover {
  background-color: rgba(230, 81, 0, 0.1);
}

.bg-orange-900\/20 {
  background-color: rgba(230, 81, 0, 0.2);
}

.hover\:bg-orange-900\/20:hover {
  background-color: rgba(230, 81, 0, 0.2);
}

.bg-orange-900\/25 {
  background-color: rgba(230, 81, 0, 0.25);
}

.hover\:bg-orange-900\/25:hover {
  background-color: rgba(230, 81, 0, 0.25);
}

.bg-orange-900\/30 {
  background-color: rgba(230, 81, 0, 0.3);
}

.hover\:bg-orange-900\/30:hover {
  background-color: rgba(230, 81, 0, 0.3);
}

.bg-orange-900\/40 {
  background-color: rgba(230, 81, 0, 0.4);
}

.hover\:bg-orange-900\/40:hover {
  background-color: rgba(230, 81, 0, 0.4);
}

.bg-orange-900\/50 {
  background-color: rgba(230, 81, 0, 0.5);
}

.hover\:bg-orange-900\/50:hover {
  background-color: rgba(230, 81, 0, 0.5);
}

.bg-orange-900\/60 {
  background-color: rgba(230, 81, 0, 0.6);
}

.hover\:bg-orange-900\/60:hover {
  background-color: rgba(230, 81, 0, 0.6);
}

.bg-orange-900\/70 {
  background-color: rgba(230, 81, 0, 0.7);
}

.hover\:bg-orange-900\/70:hover {
  background-color: rgba(230, 81, 0, 0.7);
}

.bg-orange-900\/75 {
  background-color: rgba(230, 81, 0, 0.75);
}

.hover\:bg-orange-900\/75:hover {
  background-color: rgba(230, 81, 0, 0.75);
}

.bg-orange-900\/80 {
  background-color: rgba(230, 81, 0, 0.8);
}

.hover\:bg-orange-900\/80:hover {
  background-color: rgba(230, 81, 0, 0.8);
}

.bg-orange-900\/90 {
  background-color: rgba(230, 81, 0, 0.9);
}

.hover\:bg-orange-900\/90:hover {
  background-color: rgba(230, 81, 0, 0.9);
}

.bg-orange-900\/95 {
  background-color: rgba(230, 81, 0, 0.95);
}

.hover\:bg-orange-900\/95:hover {
  background-color: rgba(230, 81, 0, 0.95);
}

.bg-orange-900\/100 {
  background-color: #e65100;
}

.hover\:bg-orange-900\/100:hover {
  background-color: #e65100;
}

.bg-grey-50 {
  background-color: #fafafa;
}

.hover\:bg-grey-50:hover {
  background-color: #fafafa;
}

.bg-grey-50\/0 {
  background-color: rgba(250, 250, 250, 0);
}

.hover\:bg-grey-50\/0:hover {
  background-color: rgba(250, 250, 250, 0);
}

.bg-grey-50\/5 {
  background-color: rgba(250, 250, 250, 0.05);
}

.hover\:bg-grey-50\/5:hover {
  background-color: rgba(250, 250, 250, 0.05);
}

.bg-grey-50\/10 {
  background-color: rgba(250, 250, 250, 0.1);
}

.hover\:bg-grey-50\/10:hover {
  background-color: rgba(250, 250, 250, 0.1);
}

.bg-grey-50\/20 {
  background-color: rgba(250, 250, 250, 0.2);
}

.hover\:bg-grey-50\/20:hover {
  background-color: rgba(250, 250, 250, 0.2);
}

.bg-grey-50\/25 {
  background-color: rgba(250, 250, 250, 0.25);
}

.hover\:bg-grey-50\/25:hover {
  background-color: rgba(250, 250, 250, 0.25);
}

.bg-grey-50\/30 {
  background-color: rgba(250, 250, 250, 0.3);
}

.hover\:bg-grey-50\/30:hover {
  background-color: rgba(250, 250, 250, 0.3);
}

.bg-grey-50\/40 {
  background-color: rgba(250, 250, 250, 0.4);
}

.hover\:bg-grey-50\/40:hover {
  background-color: rgba(250, 250, 250, 0.4);
}

.bg-grey-50\/50 {
  background-color: rgba(250, 250, 250, 0.5);
}

.hover\:bg-grey-50\/50:hover {
  background-color: rgba(250, 250, 250, 0.5);
}

.bg-grey-50\/60 {
  background-color: rgba(250, 250, 250, 0.6);
}

.hover\:bg-grey-50\/60:hover {
  background-color: rgba(250, 250, 250, 0.6);
}

.bg-grey-50\/70 {
  background-color: rgba(250, 250, 250, 0.7);
}

.hover\:bg-grey-50\/70:hover {
  background-color: rgba(250, 250, 250, 0.7);
}

.bg-grey-50\/75 {
  background-color: rgba(250, 250, 250, 0.75);
}

.hover\:bg-grey-50\/75:hover {
  background-color: rgba(250, 250, 250, 0.75);
}

.bg-grey-50\/80 {
  background-color: rgba(250, 250, 250, 0.8);
}

.hover\:bg-grey-50\/80:hover {
  background-color: rgba(250, 250, 250, 0.8);
}

.bg-grey-50\/90 {
  background-color: rgba(250, 250, 250, 0.9);
}

.hover\:bg-grey-50\/90:hover {
  background-color: rgba(250, 250, 250, 0.9);
}

.bg-grey-50\/95 {
  background-color: rgba(250, 250, 250, 0.95);
}

.hover\:bg-grey-50\/95:hover {
  background-color: rgba(250, 250, 250, 0.95);
}

.bg-grey-50\/100 {
  background-color: #fafafa;
}

.hover\:bg-grey-50\/100:hover {
  background-color: #fafafa;
}

.bg-grey-100 {
  background-color: #f5f5f5;
}

.hover\:bg-grey-100:hover {
  background-color: #f5f5f5;
}

.bg-grey-100\/0 {
  background-color: rgba(245, 245, 245, 0);
}

.hover\:bg-grey-100\/0:hover {
  background-color: rgba(245, 245, 245, 0);
}

.bg-grey-100\/5 {
  background-color: rgba(245, 245, 245, 0.05);
}

.hover\:bg-grey-100\/5:hover {
  background-color: rgba(245, 245, 245, 0.05);
}

.bg-grey-100\/10 {
  background-color: rgba(245, 245, 245, 0.1);
}

.hover\:bg-grey-100\/10:hover {
  background-color: rgba(245, 245, 245, 0.1);
}

.bg-grey-100\/20 {
  background-color: rgba(245, 245, 245, 0.2);
}

.hover\:bg-grey-100\/20:hover {
  background-color: rgba(245, 245, 245, 0.2);
}

.bg-grey-100\/25 {
  background-color: rgba(245, 245, 245, 0.25);
}

.hover\:bg-grey-100\/25:hover {
  background-color: rgba(245, 245, 245, 0.25);
}

.bg-grey-100\/30 {
  background-color: rgba(245, 245, 245, 0.3);
}

.hover\:bg-grey-100\/30:hover {
  background-color: rgba(245, 245, 245, 0.3);
}

.bg-grey-100\/40 {
  background-color: rgba(245, 245, 245, 0.4);
}

.hover\:bg-grey-100\/40:hover {
  background-color: rgba(245, 245, 245, 0.4);
}

.bg-grey-100\/50 {
  background-color: rgba(245, 245, 245, 0.5);
}

.hover\:bg-grey-100\/50:hover {
  background-color: rgba(245, 245, 245, 0.5);
}

.bg-grey-100\/60 {
  background-color: rgba(245, 245, 245, 0.6);
}

.hover\:bg-grey-100\/60:hover {
  background-color: rgba(245, 245, 245, 0.6);
}

.bg-grey-100\/70 {
  background-color: rgba(245, 245, 245, 0.7);
}

.hover\:bg-grey-100\/70:hover {
  background-color: rgba(245, 245, 245, 0.7);
}

.bg-grey-100\/75 {
  background-color: rgba(245, 245, 245, 0.75);
}

.hover\:bg-grey-100\/75:hover {
  background-color: rgba(245, 245, 245, 0.75);
}

.bg-grey-100\/80 {
  background-color: rgba(245, 245, 245, 0.8);
}

.hover\:bg-grey-100\/80:hover {
  background-color: rgba(245, 245, 245, 0.8);
}

.bg-grey-100\/90 {
  background-color: rgba(245, 245, 245, 0.9);
}

.hover\:bg-grey-100\/90:hover {
  background-color: rgba(245, 245, 245, 0.9);
}

.bg-grey-100\/95 {
  background-color: rgba(245, 245, 245, 0.95);
}

.hover\:bg-grey-100\/95:hover {
  background-color: rgba(245, 245, 245, 0.95);
}

.bg-grey-100\/100 {
  background-color: whitesmoke;
}

.hover\:bg-grey-100\/100:hover {
  background-color: whitesmoke;
}

.bg-grey-200 {
  background-color: #eeeeee;
}

.hover\:bg-grey-200:hover {
  background-color: #eeeeee;
}

.bg-grey-200\/0 {
  background-color: rgba(238, 238, 238, 0);
}

.hover\:bg-grey-200\/0:hover {
  background-color: rgba(238, 238, 238, 0);
}

.bg-grey-200\/5 {
  background-color: rgba(238, 238, 238, 0.05);
}

.hover\:bg-grey-200\/5:hover {
  background-color: rgba(238, 238, 238, 0.05);
}

.bg-grey-200\/10 {
  background-color: rgba(238, 238, 238, 0.1);
}

.hover\:bg-grey-200\/10:hover {
  background-color: rgba(238, 238, 238, 0.1);
}

.bg-grey-200\/20 {
  background-color: rgba(238, 238, 238, 0.2);
}

.hover\:bg-grey-200\/20:hover {
  background-color: rgba(238, 238, 238, 0.2);
}

.bg-grey-200\/25 {
  background-color: rgba(238, 238, 238, 0.25);
}

.hover\:bg-grey-200\/25:hover {
  background-color: rgba(238, 238, 238, 0.25);
}

.bg-grey-200\/30 {
  background-color: rgba(238, 238, 238, 0.3);
}

.hover\:bg-grey-200\/30:hover {
  background-color: rgba(238, 238, 238, 0.3);
}

.bg-grey-200\/40 {
  background-color: rgba(238, 238, 238, 0.4);
}

.hover\:bg-grey-200\/40:hover {
  background-color: rgba(238, 238, 238, 0.4);
}

.bg-grey-200\/50 {
  background-color: rgba(238, 238, 238, 0.5);
}

.hover\:bg-grey-200\/50:hover {
  background-color: rgba(238, 238, 238, 0.5);
}

.bg-grey-200\/60 {
  background-color: rgba(238, 238, 238, 0.6);
}

.hover\:bg-grey-200\/60:hover {
  background-color: rgba(238, 238, 238, 0.6);
}

.bg-grey-200\/70 {
  background-color: rgba(238, 238, 238, 0.7);
}

.hover\:bg-grey-200\/70:hover {
  background-color: rgba(238, 238, 238, 0.7);
}

.bg-grey-200\/75 {
  background-color: rgba(238, 238, 238, 0.75);
}

.hover\:bg-grey-200\/75:hover {
  background-color: rgba(238, 238, 238, 0.75);
}

.bg-grey-200\/80 {
  background-color: rgba(238, 238, 238, 0.8);
}

.hover\:bg-grey-200\/80:hover {
  background-color: rgba(238, 238, 238, 0.8);
}

.bg-grey-200\/90 {
  background-color: rgba(238, 238, 238, 0.9);
}

.hover\:bg-grey-200\/90:hover {
  background-color: rgba(238, 238, 238, 0.9);
}

.bg-grey-200\/95 {
  background-color: rgba(238, 238, 238, 0.95);
}

.hover\:bg-grey-200\/95:hover {
  background-color: rgba(238, 238, 238, 0.95);
}

.bg-grey-200\/100 {
  background-color: #eeeeee;
}

.hover\:bg-grey-200\/100:hover {
  background-color: #eeeeee;
}

.bg-grey-300 {
  background-color: #e0e0e0;
}

.hover\:bg-grey-300:hover {
  background-color: #e0e0e0;
}

.bg-grey-300\/0 {
  background-color: rgba(224, 224, 224, 0);
}

.hover\:bg-grey-300\/0:hover {
  background-color: rgba(224, 224, 224, 0);
}

.bg-grey-300\/5 {
  background-color: rgba(224, 224, 224, 0.05);
}

.hover\:bg-grey-300\/5:hover {
  background-color: rgba(224, 224, 224, 0.05);
}

.bg-grey-300\/10 {
  background-color: rgba(224, 224, 224, 0.1);
}

.hover\:bg-grey-300\/10:hover {
  background-color: rgba(224, 224, 224, 0.1);
}

.bg-grey-300\/20 {
  background-color: rgba(224, 224, 224, 0.2);
}

.hover\:bg-grey-300\/20:hover {
  background-color: rgba(224, 224, 224, 0.2);
}

.bg-grey-300\/25 {
  background-color: rgba(224, 224, 224, 0.25);
}

.hover\:bg-grey-300\/25:hover {
  background-color: rgba(224, 224, 224, 0.25);
}

.bg-grey-300\/30 {
  background-color: rgba(224, 224, 224, 0.3);
}

.hover\:bg-grey-300\/30:hover {
  background-color: rgba(224, 224, 224, 0.3);
}

.bg-grey-300\/40 {
  background-color: rgba(224, 224, 224, 0.4);
}

.hover\:bg-grey-300\/40:hover {
  background-color: rgba(224, 224, 224, 0.4);
}

.bg-grey-300\/50 {
  background-color: rgba(224, 224, 224, 0.5);
}

.hover\:bg-grey-300\/50:hover {
  background-color: rgba(224, 224, 224, 0.5);
}

.bg-grey-300\/60 {
  background-color: rgba(224, 224, 224, 0.6);
}

.hover\:bg-grey-300\/60:hover {
  background-color: rgba(224, 224, 224, 0.6);
}

.bg-grey-300\/70 {
  background-color: rgba(224, 224, 224, 0.7);
}

.hover\:bg-grey-300\/70:hover {
  background-color: rgba(224, 224, 224, 0.7);
}

.bg-grey-300\/75 {
  background-color: rgba(224, 224, 224, 0.75);
}

.hover\:bg-grey-300\/75:hover {
  background-color: rgba(224, 224, 224, 0.75);
}

.bg-grey-300\/80 {
  background-color: rgba(224, 224, 224, 0.8);
}

.hover\:bg-grey-300\/80:hover {
  background-color: rgba(224, 224, 224, 0.8);
}

.bg-grey-300\/90 {
  background-color: rgba(224, 224, 224, 0.9);
}

.hover\:bg-grey-300\/90:hover {
  background-color: rgba(224, 224, 224, 0.9);
}

.bg-grey-300\/95 {
  background-color: rgba(224, 224, 224, 0.95);
}

.hover\:bg-grey-300\/95:hover {
  background-color: rgba(224, 224, 224, 0.95);
}

.bg-grey-300\/100 {
  background-color: #e0e0e0;
}

.hover\:bg-grey-300\/100:hover {
  background-color: #e0e0e0;
}

.bg-grey-400 {
  background-color: #bdbdbd;
}

.hover\:bg-grey-400:hover {
  background-color: #bdbdbd;
}

.bg-grey-400\/0 {
  background-color: rgba(189, 189, 189, 0);
}

.hover\:bg-grey-400\/0:hover {
  background-color: rgba(189, 189, 189, 0);
}

.bg-grey-400\/5 {
  background-color: rgba(189, 189, 189, 0.05);
}

.hover\:bg-grey-400\/5:hover {
  background-color: rgba(189, 189, 189, 0.05);
}

.bg-grey-400\/10 {
  background-color: rgba(189, 189, 189, 0.1);
}

.hover\:bg-grey-400\/10:hover {
  background-color: rgba(189, 189, 189, 0.1);
}

.bg-grey-400\/20 {
  background-color: rgba(189, 189, 189, 0.2);
}

.hover\:bg-grey-400\/20:hover {
  background-color: rgba(189, 189, 189, 0.2);
}

.bg-grey-400\/25 {
  background-color: rgba(189, 189, 189, 0.25);
}

.hover\:bg-grey-400\/25:hover {
  background-color: rgba(189, 189, 189, 0.25);
}

.bg-grey-400\/30 {
  background-color: rgba(189, 189, 189, 0.3);
}

.hover\:bg-grey-400\/30:hover {
  background-color: rgba(189, 189, 189, 0.3);
}

.bg-grey-400\/40 {
  background-color: rgba(189, 189, 189, 0.4);
}

.hover\:bg-grey-400\/40:hover {
  background-color: rgba(189, 189, 189, 0.4);
}

.bg-grey-400\/50 {
  background-color: rgba(189, 189, 189, 0.5);
}

.hover\:bg-grey-400\/50:hover {
  background-color: rgba(189, 189, 189, 0.5);
}

.bg-grey-400\/60 {
  background-color: rgba(189, 189, 189, 0.6);
}

.hover\:bg-grey-400\/60:hover {
  background-color: rgba(189, 189, 189, 0.6);
}

.bg-grey-400\/70 {
  background-color: rgba(189, 189, 189, 0.7);
}

.hover\:bg-grey-400\/70:hover {
  background-color: rgba(189, 189, 189, 0.7);
}

.bg-grey-400\/75 {
  background-color: rgba(189, 189, 189, 0.75);
}

.hover\:bg-grey-400\/75:hover {
  background-color: rgba(189, 189, 189, 0.75);
}

.bg-grey-400\/80 {
  background-color: rgba(189, 189, 189, 0.8);
}

.hover\:bg-grey-400\/80:hover {
  background-color: rgba(189, 189, 189, 0.8);
}

.bg-grey-400\/90 {
  background-color: rgba(189, 189, 189, 0.9);
}

.hover\:bg-grey-400\/90:hover {
  background-color: rgba(189, 189, 189, 0.9);
}

.bg-grey-400\/95 {
  background-color: rgba(189, 189, 189, 0.95);
}

.hover\:bg-grey-400\/95:hover {
  background-color: rgba(189, 189, 189, 0.95);
}

.bg-grey-400\/100 {
  background-color: #bdbdbd;
}

.hover\:bg-grey-400\/100:hover {
  background-color: #bdbdbd;
}

.bg-grey-500 {
  background-color: #9e9e9e;
}

.hover\:bg-grey-500:hover {
  background-color: #9e9e9e;
}

.bg-grey-500\/0 {
  background-color: rgba(158, 158, 158, 0);
}

.hover\:bg-grey-500\/0:hover {
  background-color: rgba(158, 158, 158, 0);
}

.bg-grey-500\/5 {
  background-color: rgba(158, 158, 158, 0.05);
}

.hover\:bg-grey-500\/5:hover {
  background-color: rgba(158, 158, 158, 0.05);
}

.bg-grey-500\/10 {
  background-color: rgba(158, 158, 158, 0.1);
}

.hover\:bg-grey-500\/10:hover {
  background-color: rgba(158, 158, 158, 0.1);
}

.bg-grey-500\/20 {
  background-color: rgba(158, 158, 158, 0.2);
}

.hover\:bg-grey-500\/20:hover {
  background-color: rgba(158, 158, 158, 0.2);
}

.bg-grey-500\/25 {
  background-color: rgba(158, 158, 158, 0.25);
}

.hover\:bg-grey-500\/25:hover {
  background-color: rgba(158, 158, 158, 0.25);
}

.bg-grey-500\/30 {
  background-color: rgba(158, 158, 158, 0.3);
}

.hover\:bg-grey-500\/30:hover {
  background-color: rgba(158, 158, 158, 0.3);
}

.bg-grey-500\/40 {
  background-color: rgba(158, 158, 158, 0.4);
}

.hover\:bg-grey-500\/40:hover {
  background-color: rgba(158, 158, 158, 0.4);
}

.bg-grey-500\/50 {
  background-color: rgba(158, 158, 158, 0.5);
}

.hover\:bg-grey-500\/50:hover {
  background-color: rgba(158, 158, 158, 0.5);
}

.bg-grey-500\/60 {
  background-color: rgba(158, 158, 158, 0.6);
}

.hover\:bg-grey-500\/60:hover {
  background-color: rgba(158, 158, 158, 0.6);
}

.bg-grey-500\/70 {
  background-color: rgba(158, 158, 158, 0.7);
}

.hover\:bg-grey-500\/70:hover {
  background-color: rgba(158, 158, 158, 0.7);
}

.bg-grey-500\/75 {
  background-color: rgba(158, 158, 158, 0.75);
}

.hover\:bg-grey-500\/75:hover {
  background-color: rgba(158, 158, 158, 0.75);
}

.bg-grey-500\/80 {
  background-color: rgba(158, 158, 158, 0.8);
}

.hover\:bg-grey-500\/80:hover {
  background-color: rgba(158, 158, 158, 0.8);
}

.bg-grey-500\/90 {
  background-color: rgba(158, 158, 158, 0.9);
}

.hover\:bg-grey-500\/90:hover {
  background-color: rgba(158, 158, 158, 0.9);
}

.bg-grey-500\/95 {
  background-color: rgba(158, 158, 158, 0.95);
}

.hover\:bg-grey-500\/95:hover {
  background-color: rgba(158, 158, 158, 0.95);
}

.bg-grey-500\/100 {
  background-color: #9e9e9e;
}

.hover\:bg-grey-500\/100:hover {
  background-color: #9e9e9e;
}

.bg-grey-600 {
  background-color: #757575;
}

.hover\:bg-grey-600:hover {
  background-color: #757575;
}

.bg-grey-600\/0 {
  background-color: rgba(117, 117, 117, 0);
}

.hover\:bg-grey-600\/0:hover {
  background-color: rgba(117, 117, 117, 0);
}

.bg-grey-600\/5 {
  background-color: rgba(117, 117, 117, 0.05);
}

.hover\:bg-grey-600\/5:hover {
  background-color: rgba(117, 117, 117, 0.05);
}

.bg-grey-600\/10 {
  background-color: rgba(117, 117, 117, 0.1);
}

.hover\:bg-grey-600\/10:hover {
  background-color: rgba(117, 117, 117, 0.1);
}

.bg-grey-600\/20 {
  background-color: rgba(117, 117, 117, 0.2);
}

.hover\:bg-grey-600\/20:hover {
  background-color: rgba(117, 117, 117, 0.2);
}

.bg-grey-600\/25 {
  background-color: rgba(117, 117, 117, 0.25);
}

.hover\:bg-grey-600\/25:hover {
  background-color: rgba(117, 117, 117, 0.25);
}

.bg-grey-600\/30 {
  background-color: rgba(117, 117, 117, 0.3);
}

.hover\:bg-grey-600\/30:hover {
  background-color: rgba(117, 117, 117, 0.3);
}

.bg-grey-600\/40 {
  background-color: rgba(117, 117, 117, 0.4);
}

.hover\:bg-grey-600\/40:hover {
  background-color: rgba(117, 117, 117, 0.4);
}

.bg-grey-600\/50 {
  background-color: rgba(117, 117, 117, 0.5);
}

.hover\:bg-grey-600\/50:hover {
  background-color: rgba(117, 117, 117, 0.5);
}

.bg-grey-600\/60 {
  background-color: rgba(117, 117, 117, 0.6);
}

.hover\:bg-grey-600\/60:hover {
  background-color: rgba(117, 117, 117, 0.6);
}

.bg-grey-600\/70 {
  background-color: rgba(117, 117, 117, 0.7);
}

.hover\:bg-grey-600\/70:hover {
  background-color: rgba(117, 117, 117, 0.7);
}

.bg-grey-600\/75 {
  background-color: rgba(117, 117, 117, 0.75);
}

.hover\:bg-grey-600\/75:hover {
  background-color: rgba(117, 117, 117, 0.75);
}

.bg-grey-600\/80 {
  background-color: rgba(117, 117, 117, 0.8);
}

.hover\:bg-grey-600\/80:hover {
  background-color: rgba(117, 117, 117, 0.8);
}

.bg-grey-600\/90 {
  background-color: rgba(117, 117, 117, 0.9);
}

.hover\:bg-grey-600\/90:hover {
  background-color: rgba(117, 117, 117, 0.9);
}

.bg-grey-600\/95 {
  background-color: rgba(117, 117, 117, 0.95);
}

.hover\:bg-grey-600\/95:hover {
  background-color: rgba(117, 117, 117, 0.95);
}

.bg-grey-600\/100 {
  background-color: #757575;
}

.hover\:bg-grey-600\/100:hover {
  background-color: #757575;
}

.bg-grey-700 {
  background-color: #616161;
}

.hover\:bg-grey-700:hover {
  background-color: #616161;
}

.bg-grey-700\/0 {
  background-color: rgba(97, 97, 97, 0);
}

.hover\:bg-grey-700\/0:hover {
  background-color: rgba(97, 97, 97, 0);
}

.bg-grey-700\/5 {
  background-color: rgba(97, 97, 97, 0.05);
}

.hover\:bg-grey-700\/5:hover {
  background-color: rgba(97, 97, 97, 0.05);
}

.bg-grey-700\/10 {
  background-color: rgba(97, 97, 97, 0.1);
}

.hover\:bg-grey-700\/10:hover {
  background-color: rgba(97, 97, 97, 0.1);
}

.bg-grey-700\/20 {
  background-color: rgba(97, 97, 97, 0.2);
}

.hover\:bg-grey-700\/20:hover {
  background-color: rgba(97, 97, 97, 0.2);
}

.bg-grey-700\/25 {
  background-color: rgba(97, 97, 97, 0.25);
}

.hover\:bg-grey-700\/25:hover {
  background-color: rgba(97, 97, 97, 0.25);
}

.bg-grey-700\/30 {
  background-color: rgba(97, 97, 97, 0.3);
}

.hover\:bg-grey-700\/30:hover {
  background-color: rgba(97, 97, 97, 0.3);
}

.bg-grey-700\/40 {
  background-color: rgba(97, 97, 97, 0.4);
}

.hover\:bg-grey-700\/40:hover {
  background-color: rgba(97, 97, 97, 0.4);
}

.bg-grey-700\/50 {
  background-color: rgba(97, 97, 97, 0.5);
}

.hover\:bg-grey-700\/50:hover {
  background-color: rgba(97, 97, 97, 0.5);
}

.bg-grey-700\/60 {
  background-color: rgba(97, 97, 97, 0.6);
}

.hover\:bg-grey-700\/60:hover {
  background-color: rgba(97, 97, 97, 0.6);
}

.bg-grey-700\/70 {
  background-color: rgba(97, 97, 97, 0.7);
}

.hover\:bg-grey-700\/70:hover {
  background-color: rgba(97, 97, 97, 0.7);
}

.bg-grey-700\/75 {
  background-color: rgba(97, 97, 97, 0.75);
}

.hover\:bg-grey-700\/75:hover {
  background-color: rgba(97, 97, 97, 0.75);
}

.bg-grey-700\/80 {
  background-color: rgba(97, 97, 97, 0.8);
}

.hover\:bg-grey-700\/80:hover {
  background-color: rgba(97, 97, 97, 0.8);
}

.bg-grey-700\/90 {
  background-color: rgba(97, 97, 97, 0.9);
}

.hover\:bg-grey-700\/90:hover {
  background-color: rgba(97, 97, 97, 0.9);
}

.bg-grey-700\/95 {
  background-color: rgba(97, 97, 97, 0.95);
}

.hover\:bg-grey-700\/95:hover {
  background-color: rgba(97, 97, 97, 0.95);
}

.bg-grey-700\/100 {
  background-color: #616161;
}

.hover\:bg-grey-700\/100:hover {
  background-color: #616161;
}

.bg-grey-800 {
  background-color: #424242;
}

.hover\:bg-grey-800:hover {
  background-color: #424242;
}

.bg-grey-800\/0 {
  background-color: rgba(66, 66, 66, 0);
}

.hover\:bg-grey-800\/0:hover {
  background-color: rgba(66, 66, 66, 0);
}

.bg-grey-800\/5 {
  background-color: rgba(66, 66, 66, 0.05);
}

.hover\:bg-grey-800\/5:hover {
  background-color: rgba(66, 66, 66, 0.05);
}

.bg-grey-800\/10 {
  background-color: rgba(66, 66, 66, 0.1);
}

.hover\:bg-grey-800\/10:hover {
  background-color: rgba(66, 66, 66, 0.1);
}

.bg-grey-800\/20 {
  background-color: rgba(66, 66, 66, 0.2);
}

.hover\:bg-grey-800\/20:hover {
  background-color: rgba(66, 66, 66, 0.2);
}

.bg-grey-800\/25 {
  background-color: rgba(66, 66, 66, 0.25);
}

.hover\:bg-grey-800\/25:hover {
  background-color: rgba(66, 66, 66, 0.25);
}

.bg-grey-800\/30 {
  background-color: rgba(66, 66, 66, 0.3);
}

.hover\:bg-grey-800\/30:hover {
  background-color: rgba(66, 66, 66, 0.3);
}

.bg-grey-800\/40 {
  background-color: rgba(66, 66, 66, 0.4);
}

.hover\:bg-grey-800\/40:hover {
  background-color: rgba(66, 66, 66, 0.4);
}

.bg-grey-800\/50 {
  background-color: rgba(66, 66, 66, 0.5);
}

.hover\:bg-grey-800\/50:hover {
  background-color: rgba(66, 66, 66, 0.5);
}

.bg-grey-800\/60 {
  background-color: rgba(66, 66, 66, 0.6);
}

.hover\:bg-grey-800\/60:hover {
  background-color: rgba(66, 66, 66, 0.6);
}

.bg-grey-800\/70 {
  background-color: rgba(66, 66, 66, 0.7);
}

.hover\:bg-grey-800\/70:hover {
  background-color: rgba(66, 66, 66, 0.7);
}

.bg-grey-800\/75 {
  background-color: rgba(66, 66, 66, 0.75);
}

.hover\:bg-grey-800\/75:hover {
  background-color: rgba(66, 66, 66, 0.75);
}

.bg-grey-800\/80 {
  background-color: rgba(66, 66, 66, 0.8);
}

.hover\:bg-grey-800\/80:hover {
  background-color: rgba(66, 66, 66, 0.8);
}

.bg-grey-800\/90 {
  background-color: rgba(66, 66, 66, 0.9);
}

.hover\:bg-grey-800\/90:hover {
  background-color: rgba(66, 66, 66, 0.9);
}

.bg-grey-800\/95 {
  background-color: rgba(66, 66, 66, 0.95);
}

.hover\:bg-grey-800\/95:hover {
  background-color: rgba(66, 66, 66, 0.95);
}

.bg-grey-800\/100 {
  background-color: #424242;
}

.hover\:bg-grey-800\/100:hover {
  background-color: #424242;
}

.bg-grey-900 {
  background-color: #212121;
}

.hover\:bg-grey-900:hover {
  background-color: #212121;
}

.bg-grey-900\/0 {
  background-color: rgba(33, 33, 33, 0);
}

.hover\:bg-grey-900\/0:hover {
  background-color: rgba(33, 33, 33, 0);
}

.bg-grey-900\/5 {
  background-color: rgba(33, 33, 33, 0.05);
}

.hover\:bg-grey-900\/5:hover {
  background-color: rgba(33, 33, 33, 0.05);
}

.bg-grey-900\/10 {
  background-color: rgba(33, 33, 33, 0.1);
}

.hover\:bg-grey-900\/10:hover {
  background-color: rgba(33, 33, 33, 0.1);
}

.bg-grey-900\/20 {
  background-color: rgba(33, 33, 33, 0.2);
}

.hover\:bg-grey-900\/20:hover {
  background-color: rgba(33, 33, 33, 0.2);
}

.bg-grey-900\/25 {
  background-color: rgba(33, 33, 33, 0.25);
}

.hover\:bg-grey-900\/25:hover {
  background-color: rgba(33, 33, 33, 0.25);
}

.bg-grey-900\/30 {
  background-color: rgba(33, 33, 33, 0.3);
}

.hover\:bg-grey-900\/30:hover {
  background-color: rgba(33, 33, 33, 0.3);
}

.bg-grey-900\/40 {
  background-color: rgba(33, 33, 33, 0.4);
}

.hover\:bg-grey-900\/40:hover {
  background-color: rgba(33, 33, 33, 0.4);
}

.bg-grey-900\/50 {
  background-color: rgba(33, 33, 33, 0.5);
}

.hover\:bg-grey-900\/50:hover {
  background-color: rgba(33, 33, 33, 0.5);
}

.bg-grey-900\/60 {
  background-color: rgba(33, 33, 33, 0.6);
}

.hover\:bg-grey-900\/60:hover {
  background-color: rgba(33, 33, 33, 0.6);
}

.bg-grey-900\/70 {
  background-color: rgba(33, 33, 33, 0.7);
}

.hover\:bg-grey-900\/70:hover {
  background-color: rgba(33, 33, 33, 0.7);
}

.bg-grey-900\/75 {
  background-color: rgba(33, 33, 33, 0.75);
}

.hover\:bg-grey-900\/75:hover {
  background-color: rgba(33, 33, 33, 0.75);
}

.bg-grey-900\/80 {
  background-color: rgba(33, 33, 33, 0.8);
}

.hover\:bg-grey-900\/80:hover {
  background-color: rgba(33, 33, 33, 0.8);
}

.bg-grey-900\/90 {
  background-color: rgba(33, 33, 33, 0.9);
}

.hover\:bg-grey-900\/90:hover {
  background-color: rgba(33, 33, 33, 0.9);
}

.bg-grey-900\/95 {
  background-color: rgba(33, 33, 33, 0.95);
}

.hover\:bg-grey-900\/95:hover {
  background-color: rgba(33, 33, 33, 0.95);
}

.bg-grey-900\/100 {
  background-color: #212121;
}

.hover\:bg-grey-900\/100:hover {
  background-color: #212121;
}

.opacity-0 {
  opacity: 0;
}

.opacity-5 {
  opacity: 0.05;
}

.opacity-10 {
  opacity: 0.1;
}

.opacity-20 {
  opacity: 0.2;
}

.opacity-25 {
  opacity: 0.25;
}

.opacity-30 {
  opacity: 0.3;
}

.opacity-40 {
  opacity: 0.4;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-60 {
  opacity: 0.6;
}

.opacity-70 {
  opacity: 0.7;
}

.opacity-75 {
  opacity: 0.75;
}

.opacity-80 {
  opacity: 0.8;
}

.opacity-90 {
  opacity: 0.9;
}

.opacity-95 {
  opacity: 0.95;
}

.opacity-100 {
  opacity: 1;
}

.border {
  border-width: 1px;
  border-style: solid;
  border-color: #cfcfcf;
}

.border-0 {
  border-width: 0;
  border-style: solid;
}

.border-1 {
  border-width: 1px;
  border-style: solid;
}

.border-2 {
  border-width: 2px;
  border-style: solid;
}

.border-4 {
  border-width: 4px;
  border-style: solid;
}

.border-8 {
  border-width: 8px;
  border-style: solid;
}

.border-solid {
  border-style: solid;
}

.border-dashed {
  border-style: dashed;
}

.border-dotted {
  border-style: dotted;
}

.border-none {
  border-style: none;
}

.rounded-none {
  border-radius: 0;
}

.rounded-sm {
  border-radius: 0.125rem;
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-md {
  border-radius: 0.375rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-3xl {
  border-radius: 1.5rem;
}

.rounded-full {
  border-radius: 9999px;
}

.border-white {
  border-color: #ffffff;
}

.border-black {
  border-color: #000000;
}

.border-red-50 {
  border-color: #ffebee;
}

.border-red-100 {
  border-color: #ffcdd2;
}

.border-red-200 {
  border-color: #ef9a9a;
}

.border-red-300 {
  border-color: #e57373;
}

.border-red-400 {
  border-color: #ef5350;
}

.border-red-500 {
  border-color: #f44336;
}

.border-red-600 {
  border-color: #e53935;
}

.border-red-700 {
  border-color: #d32f2f;
}

.border-red-800 {
  border-color: #c62828;
}

.border-red-900 {
  border-color: #b71c1c;
}

.border-pink-50 {
  border-color: #fce4ec;
}

.border-pink-100 {
  border-color: #f8bbd0;
}

.border-pink-200 {
  border-color: #f48fb1;
}

.border-pink-300 {
  border-color: #f06292;
}

.border-pink-400 {
  border-color: #ec407a;
}

.border-pink-500 {
  border-color: #e91e63;
}

.border-pink-600 {
  border-color: #d81b60;
}

.border-pink-700 {
  border-color: #c2185b;
}

.border-pink-800 {
  border-color: #ad1457;
}

.border-pink-900 {
  border-color: #880e4f;
}

.border-purple-50 {
  border-color: #f3e5f5;
}

.border-purple-100 {
  border-color: #e1bee7;
}

.border-purple-200 {
  border-color: #ce93d8;
}

.border-purple-300 {
  border-color: #ba68c8;
}

.border-purple-400 {
  border-color: #ab47bc;
}

.border-purple-500 {
  border-color: #9c27b0;
}

.border-purple-600 {
  border-color: #8e24aa;
}

.border-purple-700 {
  border-color: #7b1fa2;
}

.border-purple-800 {
  border-color: #6a1b9a;
}

.border-purple-900 {
  border-color: #4a148c;
}

.border-indigo-50 {
  border-color: #e8eaf6;
}

.border-indigo-100 {
  border-color: #c5cae9;
}

.border-indigo-200 {
  border-color: #9fa8da;
}

.border-indigo-300 {
  border-color: #7986cb;
}

.border-indigo-400 {
  border-color: #5c6bc0;
}

.border-indigo-500 {
  border-color: #3f51b5;
}

.border-indigo-600 {
  border-color: #3949ab;
}

.border-indigo-700 {
  border-color: #303f9f;
}

.border-indigo-800 {
  border-color: #283593;
}

.border-indigo-900 {
  border-color: #1a237e;
}

.border-blue-50 {
  border-color: #e3f2fd;
}

.border-blue-100 {
  border-color: #bbdefb;
}

.border-blue-200 {
  border-color: #90caf9;
}

.border-blue-300 {
  border-color: #64b5f6;
}

.border-blue-400 {
  border-color: #42a5f5;
}

.border-blue-500 {
  border-color: #2196f3;
}

.border-blue-600 {
  border-color: #1e88e5;
}

.border-blue-700 {
  border-color: #1976d2;
}

.border-blue-800 {
  border-color: #1565c0;
}

.border-blue-900 {
  border-color: #0d47a1;
}

.border-cyan-50 {
  border-color: #e0f7fa;
}

.border-cyan-100 {
  border-color: #b2ebf2;
}

.border-cyan-200 {
  border-color: #80deea;
}

.border-cyan-300 {
  border-color: #4dd0e1;
}

.border-cyan-400 {
  border-color: #26c6da;
}

.border-cyan-500 {
  border-color: #00bcd4;
}

.border-cyan-600 {
  border-color: #00acc1;
}

.border-cyan-700 {
  border-color: #0097a7;
}

.border-cyan-800 {
  border-color: #00838f;
}

.border-cyan-900 {
  border-color: #006064;
}

.border-green-50 {
  border-color: #e8f5e9;
}

.border-green-100 {
  border-color: #c8e6c9;
}

.border-green-200 {
  border-color: #a5d6a7;
}

.border-green-300 {
  border-color: #81c784;
}

.border-green-400 {
  border-color: #66bb6a;
}

.border-green-500 {
  border-color: #4caf50;
}

.border-green-600 {
  border-color: #43a047;
}

.border-green-700 {
  border-color: #388e3c;
}

.border-green-800 {
  border-color: #2e7d32;
}

.border-green-900 {
  border-color: #1b5e20;
}

.border-yellow-50 {
  border-color: #fffde7;
}

.border-yellow-100 {
  border-color: #fff9c4;
}

.border-yellow-200 {
  border-color: #fff59d;
}

.border-yellow-300 {
  border-color: #fff176;
}

.border-yellow-400 {
  border-color: #ffee58;
}

.border-yellow-500 {
  border-color: #ffeb3b;
}

.border-yellow-600 {
  border-color: #fdd835;
}

.border-yellow-700 {
  border-color: #fbc02d;
}

.border-yellow-800 {
  border-color: #f9a825;
}

.border-yellow-900 {
  border-color: #f57f17;
}

.border-orange-50 {
  border-color: #fff3e0;
}

.border-orange-100 {
  border-color: #ffe0b2;
}

.border-orange-200 {
  border-color: #ffcc80;
}

.border-orange-300 {
  border-color: #ffb74d;
}

.border-orange-400 {
  border-color: #ffa726;
}

.border-orange-500 {
  border-color: #ff9800;
}

.border-orange-600 {
  border-color: #fb8c00;
}

.border-orange-700 {
  border-color: #f57c00;
}

.border-orange-800 {
  border-color: #ef6c00;
}

.border-orange-900 {
  border-color: #e65100;
}

.border-grey-50 {
  border-color: #fafafa;
}

.border-grey-100 {
  border-color: #f5f5f5;
}

.border-grey-200 {
  border-color: #eeeeee;
}

.border-grey-300 {
  border-color: #e0e0e0;
}

.border-grey-400 {
  border-color: #bdbdbd;
}

.border-grey-500 {
  border-color: #9e9e9e;
}

.border-grey-600 {
  border-color: #757575;
}

.border-grey-700 {
  border-color: #616161;
}

.border-grey-800 {
  border-color: #424242;
}

.border-grey-900 {
  border-color: #212121;
}

.border-top {
  border-top-width: 1px;
  border-top-style: solid;
}

.border-right {
  border-right-width: 1px;
  border-right-style: solid;
}

.border-bottom {
  border-bottom-width: 1px;
  border-bottom-style: solid;
}

.border-left {
  border-left-width: 1px;
  border-left-style: solid;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.grid {
  display: grid;
}

.inline-grid {
  display: inline-grid;
}

.none {
  display: none;
}

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

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

.flex-column {
  flex-direction: column;
}

.flex-column-reverse {
  flex-direction: column-reverse;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

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

.justify-center {
  justify-content: center;
}

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

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-evenly {
  justify-content: space-evenly;
}

.items-start {
  align-items: flex-start;
}

.items-center {
  align-items: center;
}

.items-end {
  align-items: flex-end;
}

.items-baseline {
  align-items: baseline;
}

.items-stretch {
  align-items: stretch;
}

.content-start {
  align-content: flex-start;
}

.content-center {
  align-content: center;
}

.content-end {
  align-content: flex-end;
}

.content-between {
  align-content: space-between;
}

.content-around {
  align-content: space-around;
}

.content-stretch {
  align-content: stretch;
}

.self-auto {
  align-self: auto;
}

.self-start {
  align-self: start;
}

.self-center {
  align-self: center;
}

.self-end {
  align-self: end;
}

.self-stretch {
  align-self: stretch;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

.flex-1 {
  flex: 1;
}

.flex-grow {
  flex-grow: 1;
}

.flex-grow-0 {
  flex-grow: 0;
}

.flex-shrink {
  flex-shrink: 1;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.grid-cols-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.grid-cols-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.grid-cols-9 {
  grid-template-columns: repeat(9, minmax(0, 1fr));
}

.grid-cols-10 {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

.grid-cols-11 {
  grid-template-columns: repeat(11, minmax(0, 1fr));
}

.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.grid-rows-1 {
  grid-template-rows: repeat(1, minmax(0, 1fr));
}

.grid-rows-2 {
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.grid-rows-3 {
  grid-template-rows: repeat(3, minmax(0, 1fr));
}

.grid-rows-4 {
  grid-template-rows: repeat(4, minmax(0, 1fr));
}

.grid-rows-5 {
  grid-template-rows: repeat(5, minmax(0, 1fr));
}

.grid-rows-6 {
  grid-template-rows: repeat(6, minmax(0, 1fr));
}

.overflow-hidden {
  overflow: hidden !important;
}

@media (min-width: 640px) {
  .sm\\:overflow-hidden {
    overflow: hidden !important;
  }
}
@media (min-width: 768px) {
  .md\\:overflow-hidden {
    overflow: hidden !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:overflow-hidden {
    overflow: hidden !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:overflow-hidden {
    overflow: hidden !important;
  }
}
.overflow-scroll {
  overflow: scroll !important;
}

@media (min-width: 640px) {
  .sm\\:overflow-scroll {
    overflow: scroll !important;
  }
}
@media (min-width: 768px) {
  .md\\:overflow-scroll {
    overflow: scroll !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:overflow-scroll {
    overflow: scroll !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:overflow-scroll {
    overflow: scroll !important;
  }
}
.overflow-auto {
  overflow: auto !important;
}

@media (min-width: 640px) {
  .sm\\:overflow-auto {
    overflow: auto !important;
  }
}
@media (min-width: 768px) {
  .md\\:overflow-auto {
    overflow: auto !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:overflow-auto {
    overflow: auto !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:overflow-auto {
    overflow: auto !important;
  }
}
.overflow-x-hidden {
  overflow-x: hidden !important;
}

@media (min-width: 640px) {
  .sm\\:overflow-x-hidden {
    overflow-x: hidden !important;
  }
}
@media (min-width: 768px) {
  .md\\:overflow-x-hidden {
    overflow-x: hidden !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:overflow-x-hidden {
    overflow-x: hidden !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:overflow-x-hidden {
    overflow-x: hidden !important;
  }
}
.overflow-x-scroll {
  overflow-x: scroll !important;
}

@media (min-width: 640px) {
  .sm\\:overflow-x-scroll {
    overflow-x: scroll !important;
  }
}
@media (min-width: 768px) {
  .md\\:overflow-x-scroll {
    overflow-x: scroll !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:overflow-x-scroll {
    overflow-x: scroll !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:overflow-x-scroll {
    overflow-x: scroll !important;
  }
}
.overflow-x-auto {
  overflow-x: auto !important;
}

@media (min-width: 640px) {
  .sm\\:overflow-x-auto {
    overflow-x: auto !important;
  }
}
@media (min-width: 768px) {
  .md\\:overflow-x-auto {
    overflow-x: auto !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:overflow-x-auto {
    overflow-x: auto !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:overflow-x-auto {
    overflow-x: auto !important;
  }
}
.overflow-y-hidden {
  overflow-y: hidden !important;
}

@media (min-width: 640px) {
  .sm\\:overflow-y-hidden {
    overflow-y: hidden !important;
  }
}
@media (min-width: 768px) {
  .md\\:overflow-y-hidden {
    overflow-y: hidden !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:overflow-y-hidden {
    overflow-y: hidden !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:overflow-y-hidden {
    overflow-y: hidden !important;
  }
}
.overflow-y-scroll {
  overflow-y: scroll !important;
}

@media (min-width: 640px) {
  .sm\\:overflow-y-scroll {
    overflow-y: scroll !important;
  }
}
@media (min-width: 768px) {
  .md\\:overflow-y-scroll {
    overflow-y: scroll !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:overflow-y-scroll {
    overflow-y: scroll !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:overflow-y-scroll {
    overflow-y: scroll !important;
  }
}
.overflow-y-auto {
  overflow-y: auto !important;
}

@media (min-width: 640px) {
  .sm\\:overflow-y-auto {
    overflow-y: auto !important;
  }
}
@media (min-width: 768px) {
  .md\\:overflow-y-auto {
    overflow-y: auto !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:overflow-y-auto {
    overflow-y: auto !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:overflow-y-auto {
    overflow-y: auto !important;
  }
}
.cursor-auto {
  cursor: auto !important;
}

.cursor-default {
  cursor: default !important;
}

.cursor-pointer {
  cursor: pointer !important;
}

.cursor-wait {
  cursor: wait !important;
}

.cursor-text {
  cursor: text !important;
}

.cursor-move {
  cursor: move !important;
}

.cursor-help {
  cursor: help !important;
}

.cursor-not-allowed {
  cursor: not-allowed !important;
}

.cursor-grab {
  cursor: grab !important;
}

.cursor-grabbing {
  cursor: grabbing !important;
}

.backdrop-blur-sm {
  backdrop-filter: blur(4px) !important;
}

.backdrop-blur-md {
  backdrop-filter: blur(8px) !important;
}

.backdrop-blur-lg {
  backdrop-filter: blur(12px) !important;
}

.backdrop-blur-xl {
  backdrop-filter: blur(16px) !important;
}

.backdrop-blur-2xl {
  backdrop-filter: blur(24px) !important;
}

.backdrop-blur-3xl {
  backdrop-filter: blur(40px) !important;
}

.opacity-0 {
  opacity: 0;
}

.hover\:opacity-0:hover {
  opacity: 0;
}

@media (min-width: 640px) {
  .sm\:opacity-0 {
    opacity: 0;
  }
  .sm\:hover\:opacity-0:hover {
    opacity: 0;
  }
}
@media (min-width: 768px) {
  .md\:opacity-0 {
    opacity: 0;
  }
  .md\:hover\:opacity-0:hover {
    opacity: 0;
  }
}
@media (min-width: 1024px) {
  .lg\:opacity-0 {
    opacity: 0;
  }
  .lg\:hover\:opacity-0:hover {
    opacity: 0;
  }
}
@media (min-width: 1280px) {
  .xl\:opacity-0 {
    opacity: 0;
  }
  .xl\:hover\:opacity-0:hover {
    opacity: 0;
  }
}
.opacity-5 {
  opacity: 0.05;
}

.hover\:opacity-5:hover {
  opacity: 0.05;
}

@media (min-width: 640px) {
  .sm\:opacity-5 {
    opacity: 0.05;
  }
  .sm\:hover\:opacity-5:hover {
    opacity: 0.05;
  }
}
@media (min-width: 768px) {
  .md\:opacity-5 {
    opacity: 0.05;
  }
  .md\:hover\:opacity-5:hover {
    opacity: 0.05;
  }
}
@media (min-width: 1024px) {
  .lg\:opacity-5 {
    opacity: 0.05;
  }
  .lg\:hover\:opacity-5:hover {
    opacity: 0.05;
  }
}
@media (min-width: 1280px) {
  .xl\:opacity-5 {
    opacity: 0.05;
  }
  .xl\:hover\:opacity-5:hover {
    opacity: 0.05;
  }
}
.opacity-10 {
  opacity: 0.1;
}

.hover\:opacity-10:hover {
  opacity: 0.1;
}

@media (min-width: 640px) {
  .sm\:opacity-10 {
    opacity: 0.1;
  }
  .sm\:hover\:opacity-10:hover {
    opacity: 0.1;
  }
}
@media (min-width: 768px) {
  .md\:opacity-10 {
    opacity: 0.1;
  }
  .md\:hover\:opacity-10:hover {
    opacity: 0.1;
  }
}
@media (min-width: 1024px) {
  .lg\:opacity-10 {
    opacity: 0.1;
  }
  .lg\:hover\:opacity-10:hover {
    opacity: 0.1;
  }
}
@media (min-width: 1280px) {
  .xl\:opacity-10 {
    opacity: 0.1;
  }
  .xl\:hover\:opacity-10:hover {
    opacity: 0.1;
  }
}
.opacity-20 {
  opacity: 0.2;
}

.hover\:opacity-20:hover {
  opacity: 0.2;
}

@media (min-width: 640px) {
  .sm\:opacity-20 {
    opacity: 0.2;
  }
  .sm\:hover\:opacity-20:hover {
    opacity: 0.2;
  }
}
@media (min-width: 768px) {
  .md\:opacity-20 {
    opacity: 0.2;
  }
  .md\:hover\:opacity-20:hover {
    opacity: 0.2;
  }
}
@media (min-width: 1024px) {
  .lg\:opacity-20 {
    opacity: 0.2;
  }
  .lg\:hover\:opacity-20:hover {
    opacity: 0.2;
  }
}
@media (min-width: 1280px) {
  .xl\:opacity-20 {
    opacity: 0.2;
  }
  .xl\:hover\:opacity-20:hover {
    opacity: 0.2;
  }
}
.opacity-25 {
  opacity: 0.25;
}

.hover\:opacity-25:hover {
  opacity: 0.25;
}

@media (min-width: 640px) {
  .sm\:opacity-25 {
    opacity: 0.25;
  }
  .sm\:hover\:opacity-25:hover {
    opacity: 0.25;
  }
}
@media (min-width: 768px) {
  .md\:opacity-25 {
    opacity: 0.25;
  }
  .md\:hover\:opacity-25:hover {
    opacity: 0.25;
  }
}
@media (min-width: 1024px) {
  .lg\:opacity-25 {
    opacity: 0.25;
  }
  .lg\:hover\:opacity-25:hover {
    opacity: 0.25;
  }
}
@media (min-width: 1280px) {
  .xl\:opacity-25 {
    opacity: 0.25;
  }
  .xl\:hover\:opacity-25:hover {
    opacity: 0.25;
  }
}
.opacity-30 {
  opacity: 0.3;
}

.hover\:opacity-30:hover {
  opacity: 0.3;
}

@media (min-width: 640px) {
  .sm\:opacity-30 {
    opacity: 0.3;
  }
  .sm\:hover\:opacity-30:hover {
    opacity: 0.3;
  }
}
@media (min-width: 768px) {
  .md\:opacity-30 {
    opacity: 0.3;
  }
  .md\:hover\:opacity-30:hover {
    opacity: 0.3;
  }
}
@media (min-width: 1024px) {
  .lg\:opacity-30 {
    opacity: 0.3;
  }
  .lg\:hover\:opacity-30:hover {
    opacity: 0.3;
  }
}
@media (min-width: 1280px) {
  .xl\:opacity-30 {
    opacity: 0.3;
  }
  .xl\:hover\:opacity-30:hover {
    opacity: 0.3;
  }
}
.opacity-40 {
  opacity: 0.4;
}

.hover\:opacity-40:hover {
  opacity: 0.4;
}

@media (min-width: 640px) {
  .sm\:opacity-40 {
    opacity: 0.4;
  }
  .sm\:hover\:opacity-40:hover {
    opacity: 0.4;
  }
}
@media (min-width: 768px) {
  .md\:opacity-40 {
    opacity: 0.4;
  }
  .md\:hover\:opacity-40:hover {
    opacity: 0.4;
  }
}
@media (min-width: 1024px) {
  .lg\:opacity-40 {
    opacity: 0.4;
  }
  .lg\:hover\:opacity-40:hover {
    opacity: 0.4;
  }
}
@media (min-width: 1280px) {
  .xl\:opacity-40 {
    opacity: 0.4;
  }
  .xl\:hover\:opacity-40:hover {
    opacity: 0.4;
  }
}
.opacity-50 {
  opacity: 0.5;
}

.hover\:opacity-50:hover {
  opacity: 0.5;
}

@media (min-width: 640px) {
  .sm\:opacity-50 {
    opacity: 0.5;
  }
  .sm\:hover\:opacity-50:hover {
    opacity: 0.5;
  }
}
@media (min-width: 768px) {
  .md\:opacity-50 {
    opacity: 0.5;
  }
  .md\:hover\:opacity-50:hover {
    opacity: 0.5;
  }
}
@media (min-width: 1024px) {
  .lg\:opacity-50 {
    opacity: 0.5;
  }
  .lg\:hover\:opacity-50:hover {
    opacity: 0.5;
  }
}
@media (min-width: 1280px) {
  .xl\:opacity-50 {
    opacity: 0.5;
  }
  .xl\:hover\:opacity-50:hover {
    opacity: 0.5;
  }
}
.opacity-60 {
  opacity: 0.6;
}

.hover\:opacity-60:hover {
  opacity: 0.6;
}

@media (min-width: 640px) {
  .sm\:opacity-60 {
    opacity: 0.6;
  }
  .sm\:hover\:opacity-60:hover {
    opacity: 0.6;
  }
}
@media (min-width: 768px) {
  .md\:opacity-60 {
    opacity: 0.6;
  }
  .md\:hover\:opacity-60:hover {
    opacity: 0.6;
  }
}
@media (min-width: 1024px) {
  .lg\:opacity-60 {
    opacity: 0.6;
  }
  .lg\:hover\:opacity-60:hover {
    opacity: 0.6;
  }
}
@media (min-width: 1280px) {
  .xl\:opacity-60 {
    opacity: 0.6;
  }
  .xl\:hover\:opacity-60:hover {
    opacity: 0.6;
  }
}
.opacity-70 {
  opacity: 0.7;
}

.hover\:opacity-70:hover {
  opacity: 0.7;
}

@media (min-width: 640px) {
  .sm\:opacity-70 {
    opacity: 0.7;
  }
  .sm\:hover\:opacity-70:hover {
    opacity: 0.7;
  }
}
@media (min-width: 768px) {
  .md\:opacity-70 {
    opacity: 0.7;
  }
  .md\:hover\:opacity-70:hover {
    opacity: 0.7;
  }
}
@media (min-width: 1024px) {
  .lg\:opacity-70 {
    opacity: 0.7;
  }
  .lg\:hover\:opacity-70:hover {
    opacity: 0.7;
  }
}
@media (min-width: 1280px) {
  .xl\:opacity-70 {
    opacity: 0.7;
  }
  .xl\:hover\:opacity-70:hover {
    opacity: 0.7;
  }
}
.opacity-75 {
  opacity: 0.75;
}

.hover\:opacity-75:hover {
  opacity: 0.75;
}

@media (min-width: 640px) {
  .sm\:opacity-75 {
    opacity: 0.75;
  }
  .sm\:hover\:opacity-75:hover {
    opacity: 0.75;
  }
}
@media (min-width: 768px) {
  .md\:opacity-75 {
    opacity: 0.75;
  }
  .md\:hover\:opacity-75:hover {
    opacity: 0.75;
  }
}
@media (min-width: 1024px) {
  .lg\:opacity-75 {
    opacity: 0.75;
  }
  .lg\:hover\:opacity-75:hover {
    opacity: 0.75;
  }
}
@media (min-width: 1280px) {
  .xl\:opacity-75 {
    opacity: 0.75;
  }
  .xl\:hover\:opacity-75:hover {
    opacity: 0.75;
  }
}
.opacity-80 {
  opacity: 0.8;
}

.hover\:opacity-80:hover {
  opacity: 0.8;
}

@media (min-width: 640px) {
  .sm\:opacity-80 {
    opacity: 0.8;
  }
  .sm\:hover\:opacity-80:hover {
    opacity: 0.8;
  }
}
@media (min-width: 768px) {
  .md\:opacity-80 {
    opacity: 0.8;
  }
  .md\:hover\:opacity-80:hover {
    opacity: 0.8;
  }
}
@media (min-width: 1024px) {
  .lg\:opacity-80 {
    opacity: 0.8;
  }
  .lg\:hover\:opacity-80:hover {
    opacity: 0.8;
  }
}
@media (min-width: 1280px) {
  .xl\:opacity-80 {
    opacity: 0.8;
  }
  .xl\:hover\:opacity-80:hover {
    opacity: 0.8;
  }
}
.opacity-90 {
  opacity: 0.9;
}

.hover\:opacity-90:hover {
  opacity: 0.9;
}

@media (min-width: 640px) {
  .sm\:opacity-90 {
    opacity: 0.9;
  }
  .sm\:hover\:opacity-90:hover {
    opacity: 0.9;
  }
}
@media (min-width: 768px) {
  .md\:opacity-90 {
    opacity: 0.9;
  }
  .md\:hover\:opacity-90:hover {
    opacity: 0.9;
  }
}
@media (min-width: 1024px) {
  .lg\:opacity-90 {
    opacity: 0.9;
  }
  .lg\:hover\:opacity-90:hover {
    opacity: 0.9;
  }
}
@media (min-width: 1280px) {
  .xl\:opacity-90 {
    opacity: 0.9;
  }
  .xl\:hover\:opacity-90:hover {
    opacity: 0.9;
  }
}
.opacity-95 {
  opacity: 0.95;
}

.hover\:opacity-95:hover {
  opacity: 0.95;
}

@media (min-width: 640px) {
  .sm\:opacity-95 {
    opacity: 0.95;
  }
  .sm\:hover\:opacity-95:hover {
    opacity: 0.95;
  }
}
@media (min-width: 768px) {
  .md\:opacity-95 {
    opacity: 0.95;
  }
  .md\:hover\:opacity-95:hover {
    opacity: 0.95;
  }
}
@media (min-width: 1024px) {
  .lg\:opacity-95 {
    opacity: 0.95;
  }
  .lg\:hover\:opacity-95:hover {
    opacity: 0.95;
  }
}
@media (min-width: 1280px) {
  .xl\:opacity-95 {
    opacity: 0.95;
  }
  .xl\:hover\:opacity-95:hover {
    opacity: 0.95;
  }
}
.opacity-100 {
  opacity: 1;
}

.hover\:opacity-100:hover {
  opacity: 1;
}

@media (min-width: 640px) {
  .sm\:opacity-100 {
    opacity: 1;
  }
  .sm\:hover\:opacity-100:hover {
    opacity: 1;
  }
}
@media (min-width: 768px) {
  .md\:opacity-100 {
    opacity: 1;
  }
  .md\:hover\:opacity-100:hover {
    opacity: 1;
  }
}
@media (min-width: 1024px) {
  .lg\:opacity-100 {
    opacity: 1;
  }
  .lg\:hover\:opacity-100:hover {
    opacity: 1;
  }
}
@media (min-width: 1280px) {
  .xl\:opacity-100 {
    opacity: 1;
  }
  .xl\:hover\:opacity-100:hover {
    opacity: 1;
  }
}
.z-auto {
  z-index: auto;
}

.z-0 {
  z-index: 0;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.z-30 {
  z-index: 30;
}

.z-40 {
  z-index: 40;
}

.z-50 {
  z-index: 50;
}

.z-75 {
  z-index: 75;
}

.z-100 {
  z-index: 100;
}

.z-999 {
  z-index: 999;
}

.z-9999 {
  z-index: 9999;
}

.shadow-xxs {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px !important;
}

.hover\\:shadow-xxs:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px !important;
}

.shadow-xs {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px !important;
}

.hover\\:shadow-xs:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px !important;
}

.shadow-sm {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px !important;
}

.hover\\:shadow-sm:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px !important;
}

.shadow-md {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px !important;
}

.hover\\:shadow-md:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px !important;
}

.shadow-lg {
  box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px !important;
}

.hover\\:shadow-lg:hover {
  box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px !important;
}

.shadow-xl {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px !important;
}

.hover\\:shadow-xl:hover {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px !important;
}

.static {
  position: static !important;
}

.relative {
  position: relative !important;
}

.absolute {
  position: absolute !important;
}

.fixed {
  position: fixed !important;
}

.sticky {
  position: sticky !important;
}

.top-0 {
  top: 0rem !important;
}

@media (min-width: 640px) {
  .sm\\:top-0 {
    top: 0rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:top-0 {
    top: 0rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:top-0 {
    top: 0rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:top-0 {
    top: 0rem !important;
  }
}
.top-0-5 {
  top: 0.125rem !important;
}

@media (min-width: 640px) {
  .sm\\:top-0-5 {
    top: 0.125rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:top-0-5 {
    top: 0.125rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:top-0-5 {
    top: 0.125rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:top-0-5 {
    top: 0.125rem !important;
  }
}
.top-1 {
  top: 0.25rem !important;
}

@media (min-width: 640px) {
  .sm\\:top-1 {
    top: 0.25rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:top-1 {
    top: 0.25rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:top-1 {
    top: 0.25rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:top-1 {
    top: 0.25rem !important;
  }
}
.top-1-5 {
  top: 0.375rem !important;
}

@media (min-width: 640px) {
  .sm\\:top-1-5 {
    top: 0.375rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:top-1-5 {
    top: 0.375rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:top-1-5 {
    top: 0.375rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:top-1-5 {
    top: 0.375rem !important;
  }
}
.top-2 {
  top: 0.5rem !important;
}

@media (min-width: 640px) {
  .sm\\:top-2 {
    top: 0.5rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:top-2 {
    top: 0.5rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:top-2 {
    top: 0.5rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:top-2 {
    top: 0.5rem !important;
  }
}
.top-2-5 {
  top: 0.625rem !important;
}

@media (min-width: 640px) {
  .sm\\:top-2-5 {
    top: 0.625rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:top-2-5 {
    top: 0.625rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:top-2-5 {
    top: 0.625rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:top-2-5 {
    top: 0.625rem !important;
  }
}
.top-3 {
  top: 0.75rem !important;
}

@media (min-width: 640px) {
  .sm\\:top-3 {
    top: 0.75rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:top-3 {
    top: 0.75rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:top-3 {
    top: 0.75rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:top-3 {
    top: 0.75rem !important;
  }
}
.top-3-5 {
  top: 0.875rem !important;
}

@media (min-width: 640px) {
  .sm\\:top-3-5 {
    top: 0.875rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:top-3-5 {
    top: 0.875rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:top-3-5 {
    top: 0.875rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:top-3-5 {
    top: 0.875rem !important;
  }
}
.top-4 {
  top: 1rem !important;
}

@media (min-width: 640px) {
  .sm\\:top-4 {
    top: 1rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:top-4 {
    top: 1rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:top-4 {
    top: 1rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:top-4 {
    top: 1rem !important;
  }
}
.top-5 {
  top: 1.25rem !important;
}

@media (min-width: 640px) {
  .sm\\:top-5 {
    top: 1.25rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:top-5 {
    top: 1.25rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:top-5 {
    top: 1.25rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:top-5 {
    top: 1.25rem !important;
  }
}
.top-6 {
  top: 1.5rem !important;
}

@media (min-width: 640px) {
  .sm\\:top-6 {
    top: 1.5rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:top-6 {
    top: 1.5rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:top-6 {
    top: 1.5rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:top-6 {
    top: 1.5rem !important;
  }
}
.top-7 {
  top: 1.75rem !important;
}

@media (min-width: 640px) {
  .sm\\:top-7 {
    top: 1.75rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:top-7 {
    top: 1.75rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:top-7 {
    top: 1.75rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:top-7 {
    top: 1.75rem !important;
  }
}
.top-8 {
  top: 2rem !important;
}

@media (min-width: 640px) {
  .sm\\:top-8 {
    top: 2rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:top-8 {
    top: 2rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:top-8 {
    top: 2rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:top-8 {
    top: 2rem !important;
  }
}
.top-9 {
  top: 2.25rem !important;
}

@media (min-width: 640px) {
  .sm\\:top-9 {
    top: 2.25rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:top-9 {
    top: 2.25rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:top-9 {
    top: 2.25rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:top-9 {
    top: 2.25rem !important;
  }
}
.top-10 {
  top: 2.5rem !important;
}

@media (min-width: 640px) {
  .sm\\:top-10 {
    top: 2.5rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:top-10 {
    top: 2.5rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:top-10 {
    top: 2.5rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:top-10 {
    top: 2.5rem !important;
  }
}
.top-12 {
  top: 3rem !important;
}

@media (min-width: 640px) {
  .sm\\:top-12 {
    top: 3rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:top-12 {
    top: 3rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:top-12 {
    top: 3rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:top-12 {
    top: 3rem !important;
  }
}
.top-14 {
  top: 3.5rem !important;
}

@media (min-width: 640px) {
  .sm\\:top-14 {
    top: 3.5rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:top-14 {
    top: 3.5rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:top-14 {
    top: 3.5rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:top-14 {
    top: 3.5rem !important;
  }
}
.top-16 {
  top: 4rem !important;
}

@media (min-width: 640px) {
  .sm\\:top-16 {
    top: 4rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:top-16 {
    top: 4rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:top-16 {
    top: 4rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:top-16 {
    top: 4rem !important;
  }
}
.top-20 {
  top: 5rem !important;
}

@media (min-width: 640px) {
  .sm\\:top-20 {
    top: 5rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:top-20 {
    top: 5rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:top-20 {
    top: 5rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:top-20 {
    top: 5rem !important;
  }
}
.top-24 {
  top: 6rem !important;
}

@media (min-width: 640px) {
  .sm\\:top-24 {
    top: 6rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:top-24 {
    top: 6rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:top-24 {
    top: 6rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:top-24 {
    top: 6rem !important;
  }
}
.top-28 {
  top: 7rem !important;
}

@media (min-width: 640px) {
  .sm\\:top-28 {
    top: 7rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:top-28 {
    top: 7rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:top-28 {
    top: 7rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:top-28 {
    top: 7rem !important;
  }
}
.top-32 {
  top: 8rem !important;
}

@media (min-width: 640px) {
  .sm\\:top-32 {
    top: 8rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:top-32 {
    top: 8rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:top-32 {
    top: 8rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:top-32 {
    top: 8rem !important;
  }
}
.top-36 {
  top: 9rem !important;
}

@media (min-width: 640px) {
  .sm\\:top-36 {
    top: 9rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:top-36 {
    top: 9rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:top-36 {
    top: 9rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:top-36 {
    top: 9rem !important;
  }
}
.top-40 {
  top: 10rem !important;
}

@media (min-width: 640px) {
  .sm\\:top-40 {
    top: 10rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:top-40 {
    top: 10rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:top-40 {
    top: 10rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:top-40 {
    top: 10rem !important;
  }
}
.top-44 {
  top: 11rem !important;
}

@media (min-width: 640px) {
  .sm\\:top-44 {
    top: 11rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:top-44 {
    top: 11rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:top-44 {
    top: 11rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:top-44 {
    top: 11rem !important;
  }
}
.top-48 {
  top: 12rem !important;
}

@media (min-width: 640px) {
  .sm\\:top-48 {
    top: 12rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:top-48 {
    top: 12rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:top-48 {
    top: 12rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:top-48 {
    top: 12rem !important;
  }
}
.top-auto {
  top: auto !important;
}

@media (min-width: 640px) {
  .sm\\:top-auto {
    top: auto !important;
  }
}
@media (min-width: 768px) {
  .md\\:top-auto {
    top: auto !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:top-auto {
    top: auto !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:top-auto {
    top: auto !important;
  }
}
.right-0 {
  right: 0rem !important;
}

@media (min-width: 640px) {
  .sm\\:right-0 {
    right: 0rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:right-0 {
    right: 0rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:right-0 {
    right: 0rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:right-0 {
    right: 0rem !important;
  }
}
.right-0-5 {
  right: 0.125rem !important;
}

@media (min-width: 640px) {
  .sm\\:right-0-5 {
    right: 0.125rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:right-0-5 {
    right: 0.125rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:right-0-5 {
    right: 0.125rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:right-0-5 {
    right: 0.125rem !important;
  }
}
.right-1 {
  right: 0.25rem !important;
}

@media (min-width: 640px) {
  .sm\\:right-1 {
    right: 0.25rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:right-1 {
    right: 0.25rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:right-1 {
    right: 0.25rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:right-1 {
    right: 0.25rem !important;
  }
}
.right-1-5 {
  right: 0.375rem !important;
}

@media (min-width: 640px) {
  .sm\\:right-1-5 {
    right: 0.375rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:right-1-5 {
    right: 0.375rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:right-1-5 {
    right: 0.375rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:right-1-5 {
    right: 0.375rem !important;
  }
}
.right-2 {
  right: 0.5rem !important;
}

@media (min-width: 640px) {
  .sm\\:right-2 {
    right: 0.5rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:right-2 {
    right: 0.5rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:right-2 {
    right: 0.5rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:right-2 {
    right: 0.5rem !important;
  }
}
.right-2-5 {
  right: 0.625rem !important;
}

@media (min-width: 640px) {
  .sm\\:right-2-5 {
    right: 0.625rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:right-2-5 {
    right: 0.625rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:right-2-5 {
    right: 0.625rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:right-2-5 {
    right: 0.625rem !important;
  }
}
.right-3 {
  right: 0.75rem !important;
}

@media (min-width: 640px) {
  .sm\\:right-3 {
    right: 0.75rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:right-3 {
    right: 0.75rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:right-3 {
    right: 0.75rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:right-3 {
    right: 0.75rem !important;
  }
}
.right-3-5 {
  right: 0.875rem !important;
}

@media (min-width: 640px) {
  .sm\\:right-3-5 {
    right: 0.875rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:right-3-5 {
    right: 0.875rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:right-3-5 {
    right: 0.875rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:right-3-5 {
    right: 0.875rem !important;
  }
}
.right-4 {
  right: 1rem !important;
}

@media (min-width: 640px) {
  .sm\\:right-4 {
    right: 1rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:right-4 {
    right: 1rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:right-4 {
    right: 1rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:right-4 {
    right: 1rem !important;
  }
}
.right-5 {
  right: 1.25rem !important;
}

@media (min-width: 640px) {
  .sm\\:right-5 {
    right: 1.25rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:right-5 {
    right: 1.25rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:right-5 {
    right: 1.25rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:right-5 {
    right: 1.25rem !important;
  }
}
.right-6 {
  right: 1.5rem !important;
}

@media (min-width: 640px) {
  .sm\\:right-6 {
    right: 1.5rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:right-6 {
    right: 1.5rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:right-6 {
    right: 1.5rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:right-6 {
    right: 1.5rem !important;
  }
}
.right-7 {
  right: 1.75rem !important;
}

@media (min-width: 640px) {
  .sm\\:right-7 {
    right: 1.75rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:right-7 {
    right: 1.75rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:right-7 {
    right: 1.75rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:right-7 {
    right: 1.75rem !important;
  }
}
.right-8 {
  right: 2rem !important;
}

@media (min-width: 640px) {
  .sm\\:right-8 {
    right: 2rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:right-8 {
    right: 2rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:right-8 {
    right: 2rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:right-8 {
    right: 2rem !important;
  }
}
.right-9 {
  right: 2.25rem !important;
}

@media (min-width: 640px) {
  .sm\\:right-9 {
    right: 2.25rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:right-9 {
    right: 2.25rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:right-9 {
    right: 2.25rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:right-9 {
    right: 2.25rem !important;
  }
}
.right-10 {
  right: 2.5rem !important;
}

@media (min-width: 640px) {
  .sm\\:right-10 {
    right: 2.5rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:right-10 {
    right: 2.5rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:right-10 {
    right: 2.5rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:right-10 {
    right: 2.5rem !important;
  }
}
.right-12 {
  right: 3rem !important;
}

@media (min-width: 640px) {
  .sm\\:right-12 {
    right: 3rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:right-12 {
    right: 3rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:right-12 {
    right: 3rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:right-12 {
    right: 3rem !important;
  }
}
.right-14 {
  right: 3.5rem !important;
}

@media (min-width: 640px) {
  .sm\\:right-14 {
    right: 3.5rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:right-14 {
    right: 3.5rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:right-14 {
    right: 3.5rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:right-14 {
    right: 3.5rem !important;
  }
}
.right-16 {
  right: 4rem !important;
}

@media (min-width: 640px) {
  .sm\\:right-16 {
    right: 4rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:right-16 {
    right: 4rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:right-16 {
    right: 4rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:right-16 {
    right: 4rem !important;
  }
}
.right-20 {
  right: 5rem !important;
}

@media (min-width: 640px) {
  .sm\\:right-20 {
    right: 5rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:right-20 {
    right: 5rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:right-20 {
    right: 5rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:right-20 {
    right: 5rem !important;
  }
}
.right-24 {
  right: 6rem !important;
}

@media (min-width: 640px) {
  .sm\\:right-24 {
    right: 6rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:right-24 {
    right: 6rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:right-24 {
    right: 6rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:right-24 {
    right: 6rem !important;
  }
}
.right-28 {
  right: 7rem !important;
}

@media (min-width: 640px) {
  .sm\\:right-28 {
    right: 7rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:right-28 {
    right: 7rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:right-28 {
    right: 7rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:right-28 {
    right: 7rem !important;
  }
}
.right-32 {
  right: 8rem !important;
}

@media (min-width: 640px) {
  .sm\\:right-32 {
    right: 8rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:right-32 {
    right: 8rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:right-32 {
    right: 8rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:right-32 {
    right: 8rem !important;
  }
}
.right-36 {
  right: 9rem !important;
}

@media (min-width: 640px) {
  .sm\\:right-36 {
    right: 9rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:right-36 {
    right: 9rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:right-36 {
    right: 9rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:right-36 {
    right: 9rem !important;
  }
}
.right-40 {
  right: 10rem !important;
}

@media (min-width: 640px) {
  .sm\\:right-40 {
    right: 10rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:right-40 {
    right: 10rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:right-40 {
    right: 10rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:right-40 {
    right: 10rem !important;
  }
}
.right-44 {
  right: 11rem !important;
}

@media (min-width: 640px) {
  .sm\\:right-44 {
    right: 11rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:right-44 {
    right: 11rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:right-44 {
    right: 11rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:right-44 {
    right: 11rem !important;
  }
}
.right-48 {
  right: 12rem !important;
}

@media (min-width: 640px) {
  .sm\\:right-48 {
    right: 12rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:right-48 {
    right: 12rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:right-48 {
    right: 12rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:right-48 {
    right: 12rem !important;
  }
}
.right-auto {
  right: auto !important;
}

@media (min-width: 640px) {
  .sm\\:right-auto {
    right: auto !important;
  }
}
@media (min-width: 768px) {
  .md\\:right-auto {
    right: auto !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:right-auto {
    right: auto !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:right-auto {
    right: auto !important;
  }
}
.bottom-0 {
  bottom: 0rem !important;
}

@media (min-width: 640px) {
  .sm\\:bottom-0 {
    bottom: 0rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:bottom-0 {
    bottom: 0rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:bottom-0 {
    bottom: 0rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:bottom-0 {
    bottom: 0rem !important;
  }
}
.bottom-0-5 {
  bottom: 0.125rem !important;
}

@media (min-width: 640px) {
  .sm\\:bottom-0-5 {
    bottom: 0.125rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:bottom-0-5 {
    bottom: 0.125rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:bottom-0-5 {
    bottom: 0.125rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:bottom-0-5 {
    bottom: 0.125rem !important;
  }
}
.bottom-1 {
  bottom: 0.25rem !important;
}

@media (min-width: 640px) {
  .sm\\:bottom-1 {
    bottom: 0.25rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:bottom-1 {
    bottom: 0.25rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:bottom-1 {
    bottom: 0.25rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:bottom-1 {
    bottom: 0.25rem !important;
  }
}
.bottom-1-5 {
  bottom: 0.375rem !important;
}

@media (min-width: 640px) {
  .sm\\:bottom-1-5 {
    bottom: 0.375rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:bottom-1-5 {
    bottom: 0.375rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:bottom-1-5 {
    bottom: 0.375rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:bottom-1-5 {
    bottom: 0.375rem !important;
  }
}
.bottom-2 {
  bottom: 0.5rem !important;
}

@media (min-width: 640px) {
  .sm\\:bottom-2 {
    bottom: 0.5rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:bottom-2 {
    bottom: 0.5rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:bottom-2 {
    bottom: 0.5rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:bottom-2 {
    bottom: 0.5rem !important;
  }
}
.bottom-2-5 {
  bottom: 0.625rem !important;
}

@media (min-width: 640px) {
  .sm\\:bottom-2-5 {
    bottom: 0.625rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:bottom-2-5 {
    bottom: 0.625rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:bottom-2-5 {
    bottom: 0.625rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:bottom-2-5 {
    bottom: 0.625rem !important;
  }
}
.bottom-3 {
  bottom: 0.75rem !important;
}

@media (min-width: 640px) {
  .sm\\:bottom-3 {
    bottom: 0.75rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:bottom-3 {
    bottom: 0.75rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:bottom-3 {
    bottom: 0.75rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:bottom-3 {
    bottom: 0.75rem !important;
  }
}
.bottom-3-5 {
  bottom: 0.875rem !important;
}

@media (min-width: 640px) {
  .sm\\:bottom-3-5 {
    bottom: 0.875rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:bottom-3-5 {
    bottom: 0.875rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:bottom-3-5 {
    bottom: 0.875rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:bottom-3-5 {
    bottom: 0.875rem !important;
  }
}
.bottom-4 {
  bottom: 1rem !important;
}

@media (min-width: 640px) {
  .sm\\:bottom-4 {
    bottom: 1rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:bottom-4 {
    bottom: 1rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:bottom-4 {
    bottom: 1rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:bottom-4 {
    bottom: 1rem !important;
  }
}
.bottom-5 {
  bottom: 1.25rem !important;
}

@media (min-width: 640px) {
  .sm\\:bottom-5 {
    bottom: 1.25rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:bottom-5 {
    bottom: 1.25rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:bottom-5 {
    bottom: 1.25rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:bottom-5 {
    bottom: 1.25rem !important;
  }
}
.bottom-6 {
  bottom: 1.5rem !important;
}

@media (min-width: 640px) {
  .sm\\:bottom-6 {
    bottom: 1.5rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:bottom-6 {
    bottom: 1.5rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:bottom-6 {
    bottom: 1.5rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:bottom-6 {
    bottom: 1.5rem !important;
  }
}
.bottom-7 {
  bottom: 1.75rem !important;
}

@media (min-width: 640px) {
  .sm\\:bottom-7 {
    bottom: 1.75rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:bottom-7 {
    bottom: 1.75rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:bottom-7 {
    bottom: 1.75rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:bottom-7 {
    bottom: 1.75rem !important;
  }
}
.bottom-8 {
  bottom: 2rem !important;
}

@media (min-width: 640px) {
  .sm\\:bottom-8 {
    bottom: 2rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:bottom-8 {
    bottom: 2rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:bottom-8 {
    bottom: 2rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:bottom-8 {
    bottom: 2rem !important;
  }
}
.bottom-9 {
  bottom: 2.25rem !important;
}

@media (min-width: 640px) {
  .sm\\:bottom-9 {
    bottom: 2.25rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:bottom-9 {
    bottom: 2.25rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:bottom-9 {
    bottom: 2.25rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:bottom-9 {
    bottom: 2.25rem !important;
  }
}
.bottom-10 {
  bottom: 2.5rem !important;
}

@media (min-width: 640px) {
  .sm\\:bottom-10 {
    bottom: 2.5rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:bottom-10 {
    bottom: 2.5rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:bottom-10 {
    bottom: 2.5rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:bottom-10 {
    bottom: 2.5rem !important;
  }
}
.bottom-12 {
  bottom: 3rem !important;
}

@media (min-width: 640px) {
  .sm\\:bottom-12 {
    bottom: 3rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:bottom-12 {
    bottom: 3rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:bottom-12 {
    bottom: 3rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:bottom-12 {
    bottom: 3rem !important;
  }
}
.bottom-14 {
  bottom: 3.5rem !important;
}

@media (min-width: 640px) {
  .sm\\:bottom-14 {
    bottom: 3.5rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:bottom-14 {
    bottom: 3.5rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:bottom-14 {
    bottom: 3.5rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:bottom-14 {
    bottom: 3.5rem !important;
  }
}
.bottom-16 {
  bottom: 4rem !important;
}

@media (min-width: 640px) {
  .sm\\:bottom-16 {
    bottom: 4rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:bottom-16 {
    bottom: 4rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:bottom-16 {
    bottom: 4rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:bottom-16 {
    bottom: 4rem !important;
  }
}
.bottom-20 {
  bottom: 5rem !important;
}

@media (min-width: 640px) {
  .sm\\:bottom-20 {
    bottom: 5rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:bottom-20 {
    bottom: 5rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:bottom-20 {
    bottom: 5rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:bottom-20 {
    bottom: 5rem !important;
  }
}
.bottom-24 {
  bottom: 6rem !important;
}

@media (min-width: 640px) {
  .sm\\:bottom-24 {
    bottom: 6rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:bottom-24 {
    bottom: 6rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:bottom-24 {
    bottom: 6rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:bottom-24 {
    bottom: 6rem !important;
  }
}
.bottom-28 {
  bottom: 7rem !important;
}

@media (min-width: 640px) {
  .sm\\:bottom-28 {
    bottom: 7rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:bottom-28 {
    bottom: 7rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:bottom-28 {
    bottom: 7rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:bottom-28 {
    bottom: 7rem !important;
  }
}
.bottom-32 {
  bottom: 8rem !important;
}

@media (min-width: 640px) {
  .sm\\:bottom-32 {
    bottom: 8rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:bottom-32 {
    bottom: 8rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:bottom-32 {
    bottom: 8rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:bottom-32 {
    bottom: 8rem !important;
  }
}
.bottom-36 {
  bottom: 9rem !important;
}

@media (min-width: 640px) {
  .sm\\:bottom-36 {
    bottom: 9rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:bottom-36 {
    bottom: 9rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:bottom-36 {
    bottom: 9rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:bottom-36 {
    bottom: 9rem !important;
  }
}
.bottom-40 {
  bottom: 10rem !important;
}

@media (min-width: 640px) {
  .sm\\:bottom-40 {
    bottom: 10rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:bottom-40 {
    bottom: 10rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:bottom-40 {
    bottom: 10rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:bottom-40 {
    bottom: 10rem !important;
  }
}
.bottom-44 {
  bottom: 11rem !important;
}

@media (min-width: 640px) {
  .sm\\:bottom-44 {
    bottom: 11rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:bottom-44 {
    bottom: 11rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:bottom-44 {
    bottom: 11rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:bottom-44 {
    bottom: 11rem !important;
  }
}
.bottom-48 {
  bottom: 12rem !important;
}

@media (min-width: 640px) {
  .sm\\:bottom-48 {
    bottom: 12rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:bottom-48 {
    bottom: 12rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:bottom-48 {
    bottom: 12rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:bottom-48 {
    bottom: 12rem !important;
  }
}
.bottom-auto {
  bottom: auto !important;
}

@media (min-width: 640px) {
  .sm\\:bottom-auto {
    bottom: auto !important;
  }
}
@media (min-width: 768px) {
  .md\\:bottom-auto {
    bottom: auto !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:bottom-auto {
    bottom: auto !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:bottom-auto {
    bottom: auto !important;
  }
}
.left-0 {
  left: 0rem !important;
}

@media (min-width: 640px) {
  .sm\\:left-0 {
    left: 0rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:left-0 {
    left: 0rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:left-0 {
    left: 0rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:left-0 {
    left: 0rem !important;
  }
}
.left-0-5 {
  left: 0.125rem !important;
}

@media (min-width: 640px) {
  .sm\\:left-0-5 {
    left: 0.125rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:left-0-5 {
    left: 0.125rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:left-0-5 {
    left: 0.125rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:left-0-5 {
    left: 0.125rem !important;
  }
}
.left-1 {
  left: 0.25rem !important;
}

@media (min-width: 640px) {
  .sm\\:left-1 {
    left: 0.25rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:left-1 {
    left: 0.25rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:left-1 {
    left: 0.25rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:left-1 {
    left: 0.25rem !important;
  }
}
.left-1-5 {
  left: 0.375rem !important;
}

@media (min-width: 640px) {
  .sm\\:left-1-5 {
    left: 0.375rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:left-1-5 {
    left: 0.375rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:left-1-5 {
    left: 0.375rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:left-1-5 {
    left: 0.375rem !important;
  }
}
.left-2 {
  left: 0.5rem !important;
}

@media (min-width: 640px) {
  .sm\\:left-2 {
    left: 0.5rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:left-2 {
    left: 0.5rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:left-2 {
    left: 0.5rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:left-2 {
    left: 0.5rem !important;
  }
}
.left-2-5 {
  left: 0.625rem !important;
}

@media (min-width: 640px) {
  .sm\\:left-2-5 {
    left: 0.625rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:left-2-5 {
    left: 0.625rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:left-2-5 {
    left: 0.625rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:left-2-5 {
    left: 0.625rem !important;
  }
}
.left-3 {
  left: 0.75rem !important;
}

@media (min-width: 640px) {
  .sm\\:left-3 {
    left: 0.75rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:left-3 {
    left: 0.75rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:left-3 {
    left: 0.75rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:left-3 {
    left: 0.75rem !important;
  }
}
.left-3-5 {
  left: 0.875rem !important;
}

@media (min-width: 640px) {
  .sm\\:left-3-5 {
    left: 0.875rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:left-3-5 {
    left: 0.875rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:left-3-5 {
    left: 0.875rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:left-3-5 {
    left: 0.875rem !important;
  }
}
.left-4 {
  left: 1rem !important;
}

@media (min-width: 640px) {
  .sm\\:left-4 {
    left: 1rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:left-4 {
    left: 1rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:left-4 {
    left: 1rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:left-4 {
    left: 1rem !important;
  }
}
.left-5 {
  left: 1.25rem !important;
}

@media (min-width: 640px) {
  .sm\\:left-5 {
    left: 1.25rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:left-5 {
    left: 1.25rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:left-5 {
    left: 1.25rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:left-5 {
    left: 1.25rem !important;
  }
}
.left-6 {
  left: 1.5rem !important;
}

@media (min-width: 640px) {
  .sm\\:left-6 {
    left: 1.5rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:left-6 {
    left: 1.5rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:left-6 {
    left: 1.5rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:left-6 {
    left: 1.5rem !important;
  }
}
.left-7 {
  left: 1.75rem !important;
}

@media (min-width: 640px) {
  .sm\\:left-7 {
    left: 1.75rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:left-7 {
    left: 1.75rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:left-7 {
    left: 1.75rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:left-7 {
    left: 1.75rem !important;
  }
}
.left-8 {
  left: 2rem !important;
}

@media (min-width: 640px) {
  .sm\\:left-8 {
    left: 2rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:left-8 {
    left: 2rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:left-8 {
    left: 2rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:left-8 {
    left: 2rem !important;
  }
}
.left-9 {
  left: 2.25rem !important;
}

@media (min-width: 640px) {
  .sm\\:left-9 {
    left: 2.25rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:left-9 {
    left: 2.25rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:left-9 {
    left: 2.25rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:left-9 {
    left: 2.25rem !important;
  }
}
.left-10 {
  left: 2.5rem !important;
}

@media (min-width: 640px) {
  .sm\\:left-10 {
    left: 2.5rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:left-10 {
    left: 2.5rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:left-10 {
    left: 2.5rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:left-10 {
    left: 2.5rem !important;
  }
}
.left-12 {
  left: 3rem !important;
}

@media (min-width: 640px) {
  .sm\\:left-12 {
    left: 3rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:left-12 {
    left: 3rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:left-12 {
    left: 3rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:left-12 {
    left: 3rem !important;
  }
}
.left-14 {
  left: 3.5rem !important;
}

@media (min-width: 640px) {
  .sm\\:left-14 {
    left: 3.5rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:left-14 {
    left: 3.5rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:left-14 {
    left: 3.5rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:left-14 {
    left: 3.5rem !important;
  }
}
.left-16 {
  left: 4rem !important;
}

@media (min-width: 640px) {
  .sm\\:left-16 {
    left: 4rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:left-16 {
    left: 4rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:left-16 {
    left: 4rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:left-16 {
    left: 4rem !important;
  }
}
.left-20 {
  left: 5rem !important;
}

@media (min-width: 640px) {
  .sm\\:left-20 {
    left: 5rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:left-20 {
    left: 5rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:left-20 {
    left: 5rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:left-20 {
    left: 5rem !important;
  }
}
.left-24 {
  left: 6rem !important;
}

@media (min-width: 640px) {
  .sm\\:left-24 {
    left: 6rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:left-24 {
    left: 6rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:left-24 {
    left: 6rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:left-24 {
    left: 6rem !important;
  }
}
.left-28 {
  left: 7rem !important;
}

@media (min-width: 640px) {
  .sm\\:left-28 {
    left: 7rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:left-28 {
    left: 7rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:left-28 {
    left: 7rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:left-28 {
    left: 7rem !important;
  }
}
.left-32 {
  left: 8rem !important;
}

@media (min-width: 640px) {
  .sm\\:left-32 {
    left: 8rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:left-32 {
    left: 8rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:left-32 {
    left: 8rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:left-32 {
    left: 8rem !important;
  }
}
.left-36 {
  left: 9rem !important;
}

@media (min-width: 640px) {
  .sm\\:left-36 {
    left: 9rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:left-36 {
    left: 9rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:left-36 {
    left: 9rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:left-36 {
    left: 9rem !important;
  }
}
.left-40 {
  left: 10rem !important;
}

@media (min-width: 640px) {
  .sm\\:left-40 {
    left: 10rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:left-40 {
    left: 10rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:left-40 {
    left: 10rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:left-40 {
    left: 10rem !important;
  }
}
.left-44 {
  left: 11rem !important;
}

@media (min-width: 640px) {
  .sm\\:left-44 {
    left: 11rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:left-44 {
    left: 11rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:left-44 {
    left: 11rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:left-44 {
    left: 11rem !important;
  }
}
.left-48 {
  left: 12rem !important;
}

@media (min-width: 640px) {
  .sm\\:left-48 {
    left: 12rem !important;
  }
}
@media (min-width: 768px) {
  .md\\:left-48 {
    left: 12rem !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:left-48 {
    left: 12rem !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:left-48 {
    left: 12rem !important;
  }
}
.left-auto {
  left: auto !important;
}

@media (min-width: 640px) {
  .sm\\:left-auto {
    left: auto !important;
  }
}
@media (min-width: 768px) {
  .md\\:left-auto {
    left: auto !important;
  }
}
@media (min-width: 1024px) {
  .lg\\:left-auto {
    left: auto !important;
  }
}
@media (min-width: 1280px) {
  .xl\\:left-auto {
    left: auto !important;
  }
}
.inset-0 {
  top: 0rem !important;
  right: 0rem !important;
  bottom: 0rem !important;
  left: 0rem !important;
}

.inset-0-5 {
  top: 0.125rem !important;
  right: 0.125rem !important;
  bottom: 0.125rem !important;
  left: 0.125rem !important;
}

.inset-1 {
  top: 0.25rem !important;
  right: 0.25rem !important;
  bottom: 0.25rem !important;
  left: 0.25rem !important;
}

.inset-1-5 {
  top: 0.375rem !important;
  right: 0.375rem !important;
  bottom: 0.375rem !important;
  left: 0.375rem !important;
}

.inset-2 {
  top: 0.5rem !important;
  right: 0.5rem !important;
  bottom: 0.5rem !important;
  left: 0.5rem !important;
}

.inset-2-5 {
  top: 0.625rem !important;
  right: 0.625rem !important;
  bottom: 0.625rem !important;
  left: 0.625rem !important;
}

.inset-3 {
  top: 0.75rem !important;
  right: 0.75rem !important;
  bottom: 0.75rem !important;
  left: 0.75rem !important;
}

.inset-3-5 {
  top: 0.875rem !important;
  right: 0.875rem !important;
  bottom: 0.875rem !important;
  left: 0.875rem !important;
}

.inset-4 {
  top: 1rem !important;
  right: 1rem !important;
  bottom: 1rem !important;
  left: 1rem !important;
}

.inset-5 {
  top: 1.25rem !important;
  right: 1.25rem !important;
  bottom: 1.25rem !important;
  left: 1.25rem !important;
}

.inset-6 {
  top: 1.5rem !important;
  right: 1.5rem !important;
  bottom: 1.5rem !important;
  left: 1.5rem !important;
}

.inset-7 {
  top: 1.75rem !important;
  right: 1.75rem !important;
  bottom: 1.75rem !important;
  left: 1.75rem !important;
}

.inset-8 {
  top: 2rem !important;
  right: 2rem !important;
  bottom: 2rem !important;
  left: 2rem !important;
}

.inset-9 {
  top: 2.25rem !important;
  right: 2.25rem !important;
  bottom: 2.25rem !important;
  left: 2.25rem !important;
}

.inset-10 {
  top: 2.5rem !important;
  right: 2.5rem !important;
  bottom: 2.5rem !important;
  left: 2.5rem !important;
}

.inset-12 {
  top: 3rem !important;
  right: 3rem !important;
  bottom: 3rem !important;
  left: 3rem !important;
}

.inset-14 {
  top: 3.5rem !important;
  right: 3.5rem !important;
  bottom: 3.5rem !important;
  left: 3.5rem !important;
}

.inset-16 {
  top: 4rem !important;
  right: 4rem !important;
  bottom: 4rem !important;
  left: 4rem !important;
}

.inset-20 {
  top: 5rem !important;
  right: 5rem !important;
  bottom: 5rem !important;
  left: 5rem !important;
}

.inset-24 {
  top: 6rem !important;
  right: 6rem !important;
  bottom: 6rem !important;
  left: 6rem !important;
}

.inset-28 {
  top: 7rem !important;
  right: 7rem !important;
  bottom: 7rem !important;
  left: 7rem !important;
}

.inset-32 {
  top: 8rem !important;
  right: 8rem !important;
  bottom: 8rem !important;
  left: 8rem !important;
}

.inset-36 {
  top: 9rem !important;
  right: 9rem !important;
  bottom: 9rem !important;
  left: 9rem !important;
}

.inset-40 {
  top: 10rem !important;
  right: 10rem !important;
  bottom: 10rem !important;
  left: 10rem !important;
}

.inset-44 {
  top: 11rem !important;
  right: 11rem !important;
  bottom: 11rem !important;
  left: 11rem !important;
}

.inset-48 {
  top: 12rem !important;
  right: 12rem !important;
  bottom: 12rem !important;
  left: 12rem !important;
}

.inset-auto {
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
}

.button {
  padding: 0.5rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.button--disabled {
  opacity: 0.5;
  pointer-events: none;
}

.button-red {
  background-color: #f44336;
  color: #ffcdd2;
  border: none;
}
.button-red:hover {
  background-color: #e53935;
}
.button-red:active {
  background-color: #d32f2f;
}
.button-red:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.2);
}

.button-outline-red {
  background-color: transparent;
  border: 1px solid #f44336;
  color: #f44336;
}
.button-outline-red:hover {
  background-color: #ffcdd2;
}
.button-outline-red:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.2);
}

.button-pink {
  background-color: #e91e63;
  color: #f8bbd0;
  border: none;
}
.button-pink:hover {
  background-color: #d81b60;
}
.button-pink:active {
  background-color: #c2185b;
}
.button-pink:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.2);
}

.button-outline-pink {
  background-color: transparent;
  border: 1px solid #e91e63;
  color: #e91e63;
}
.button-outline-pink:hover {
  background-color: #f8bbd0;
}
.button-outline-pink:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.2);
}

.button-purple {
  background-color: #9c27b0;
  color: #e1bee7;
  border: none;
}
.button-purple:hover {
  background-color: #8e24aa;
}
.button-purple:active {
  background-color: #7b1fa2;
}
.button-purple:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(156, 39, 176, 0.2);
}

.button-outline-purple {
  background-color: transparent;
  border: 1px solid #9c27b0;
  color: #9c27b0;
}
.button-outline-purple:hover {
  background-color: #e1bee7;
}
.button-outline-purple:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(156, 39, 176, 0.2);
}

.button-indigo {
  background-color: #3f51b5;
  color: #c5cae9;
  border: none;
}
.button-indigo:hover {
  background-color: #3949ab;
}
.button-indigo:active {
  background-color: #303f9f;
}
.button-indigo:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(63, 81, 181, 0.2);
}

.button-outline-indigo {
  background-color: transparent;
  border: 1px solid #3f51b5;
  color: #3f51b5;
}
.button-outline-indigo:hover {
  background-color: #c5cae9;
}
.button-outline-indigo:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(63, 81, 181, 0.2);
}

.button-blue {
  background-color: #2196f3;
  color: #bbdefb;
  border: none;
}
.button-blue:hover {
  background-color: #1e88e5;
}
.button-blue:active {
  background-color: #1976d2;
}
.button-blue:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.2);
}

.button-outline-blue {
  background-color: transparent;
  border: 1px solid #2196f3;
  color: #2196f3;
}
.button-outline-blue:hover {
  background-color: #bbdefb;
}
.button-outline-blue:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.2);
}

.button-cyan {
  background-color: #00bcd4;
  color: #b2ebf2;
  border: none;
}
.button-cyan:hover {
  background-color: #00acc1;
}
.button-cyan:active {
  background-color: #0097a7;
}
.button-cyan:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.2);
}

.button-outline-cyan {
  background-color: transparent;
  border: 1px solid #00bcd4;
  color: #00bcd4;
}
.button-outline-cyan:hover {
  background-color: #b2ebf2;
}
.button-outline-cyan:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.2);
}

.button-green {
  background-color: #4caf50;
  color: #c8e6c9;
  border: none;
}
.button-green:hover {
  background-color: #43a047;
}
.button-green:active {
  background-color: #388e3c;
}
.button-green:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

.button-outline-green {
  background-color: transparent;
  border: 1px solid #4caf50;
  color: #4caf50;
}
.button-outline-green:hover {
  background-color: #c8e6c9;
}
.button-outline-green:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

.button-yellow {
  background-color: #ffeb3b;
  color: #fff9c4;
  border: none;
}
.button-yellow:hover {
  background-color: #fdd835;
}
.button-yellow:active {
  background-color: #fbc02d;
}
.button-yellow:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 235, 59, 0.2);
}

.button-outline-yellow {
  background-color: transparent;
  border: 1px solid #ffeb3b;
  color: #ffeb3b;
}
.button-outline-yellow:hover {
  background-color: #fff9c4;
}
.button-outline-yellow:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 235, 59, 0.2);
}

.button-orange {
  background-color: #ff9800;
  color: #ffe0b2;
  border: none;
}
.button-orange:hover {
  background-color: #fb8c00;
}
.button-orange:active {
  background-color: #f57c00;
}
.button-orange:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.2);
}

.button-outline-orange {
  background-color: transparent;
  border: 1px solid #ff9800;
  color: #ff9800;
}
.button-outline-orange:hover {
  background-color: #ffe0b2;
}
.button-outline-orange:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.2);
}

.button-grey {
  background-color: #9e9e9e;
  color: #f5f5f5;
  border: none;
}
.button-grey:hover {
  background-color: #757575;
}
.button-grey:active {
  background-color: #616161;
}
.button-grey:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(158, 158, 158, 0.2);
}

.button-outline-grey {
  background-color: transparent;
  border: 1px solid #9e9e9e;
  color: #9e9e9e;
}
.button-outline-grey:hover {
  background-color: #f5f5f5;
}
.button-outline-grey:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(158, 158, 158, 0.2);
}

input,
textarea,
select {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid #e0e0e0;
  border-radius: 0.25rem;
  background-color: #fff;
  color: #212121;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #2196f3;
  box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.2);
}
input:disabled,
textarea:disabled,
select:disabled {
  background-color: #f5f5f5;
  cursor: not-allowed;
  opacity: 0.6;
}

label {
  display: inline-block;
  margin-bottom: 0.25rem;
  font-weight: 500;
  color: #616161;
}

input[type=checkbox],
input[type=radio] {
  width: auto;
  margin-right: 0.5rem;
  vertical-align: middle;
}

a {
  all: unset;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.spinner {
  border: 4px solid rgba(255, 255, 255, 0.5);
  border-top: 4px solid #be09be;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
svg {
  display: block;
}

.translate-x-5 {
  transform: translateX(15px);
  transition: all ease-in 0.2s;
}

.translate-x-0 {
  transform: translateX(0);
  transition: all ease-in 0.2s;
}

.expand-collapse-enter-active,
.expand-collapse-leave-active {
  transition: max-height 0.3s ease, opacity 0.3s ease;
  overflow: hidden;
}

.expand-collapse-enter-from,
.expand-collapse-leave-to {
  max-height: 0;
  opacity: 0;
}

.expand-collapse-enter-to,
.expand-collapse-leave-from {
  max-height: 500px;
  opacity: 1;
}

.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.3s ease;
}

.fade-enter-from,
.fade-leave-to {
  opacity: 0;
}

.fade-enter-to,
.fade-leave-from {
  opacity: 1;
}

.slide-down-enter-active,
.slide-down-leave-active {
  transition: all 0.3s ease;
}

.slide-down-enter-from,
.slide-down-leave-to {
  transform: translateY(-10px);
  opacity: 0;
}

.slide-down-enter-to,
.slide-down-leave-from {
  transform: translateY(0);
  opacity: 1;
}

.slide-up-enter-active,
.slide-up-leave-active {
  transition: all 0.3s ease;
}

.slide-up-enter-from,
.slide-up-leave-to {
  transform: translateY(10px);
  opacity: 0;
}

.slide-up-enter-to,
.slide-up-leave-from {
  transform: translateY(0);
  opacity: 1;
}

.scale-in-enter-active,
.scale-in-leave-active {
  transition: all 0.3s ease;
}

.scale-in-enter-from,
.scale-in-leave-to {
  transform: scale(0.95);
  opacity: 0;
}

.scale-in-enter-to,
.scale-in-leave-from {
  transform: scale(1);
  opacity: 1;
}
